Merge tag 'platform-drivers-x86-v5.7-1' of git://git.infradead.org/linux-platform...
[linux-2.6-microblaze.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries
81 -------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         W: *Web-page* with status/info
88         B: URI for where to file *bugs*. A web-page with detailed bug
89            filing info, a direct bug tracker link, or a mailto: URI.
90         C: URI for *chat* protocol, server and channel where developers
91            usually hang out, for example irc://server/channel.
92         Q: *Patchwork* web based patch tracking system site
93         T: *SCM* tree type and location.
94            Type is one of: git, hg, quilt, stgit, topgit
95         S: *Status*, one of the following:
96            Supported:   Someone is actually paid to look after this.
97            Maintained:  Someone actually looks after it.
98            Odd Fixes:   It has a maintainer but they don't have time to do
99                         much other than throw the odd patch in. See below..
100            Orphan:      No current maintainer [but maybe you could take the
101                         role as you write your new code].
102            Obsolete:    Old code. Something tagged obsolete generally means
103                         it has been replaced by a better system and you
104                         should be using that.
105         P: Subsystem Profile document for more details submitting
106            patches to the given subsystem. This is either an in-tree file,
107            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
108            for details.
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         N: Files and directories *Regex* patterns.
116            N:   [^a-z]tegra     all files whose path contains the word tegra
117            One pattern per line.  Multiple N: lines acceptable.
118            scripts/get_maintainer.pl has different behavior for files that
119            match F: pattern and matches of N: patterns.  By default,
120            get_maintainer will not look at git log history when an F: pattern
121            match occurs.  When an N: match occurs, git log history is used
122            to also notify the people that have git commit signatures.
123         X: *Excluded* files and directories that are NOT maintained, same
124            rules as F:. Files exclusions are tested before file matches.
125            Can be useful for excluding a specific subdirectory, for instance:
126            F:   net/
127            X:   net/ipv6/
128            matches all files in and below net excluding net/ipv6/
129         K: *Content regex* (perl extended) pattern match in a patch or file.
130            For instance:
131            K: of_get_profile
132               matches patches or files that contain "of_get_profile"
133            K: \b(printk|pr_(info|err))\b
134               matches patches or files that contain one or more of the words
135               printk, pr_info or pr_err
136            One regex pattern per line.  Multiple K: lines acceptable.
137
138 Maintainers List
139 ----------------
140
141 .. note:: When reading this list, please look for the most precise areas
142           first. When adding to this list, please keep the entries in
143           alphabetical order.
144
145 3C59X NETWORK DRIVER
146 M:      Steffen Klassert <klassert@kernel.org>
147 L:      netdev@vger.kernel.org
148 S:      Odd Fixes
149 F:      Documentation/networking/device_drivers/3com/vortex.txt
150 F:      drivers/net/ethernet/3com/3c59x.c
151
152 3CR990 NETWORK DRIVER
153 M:      David Dillow <dave@thedillows.org>
154 L:      netdev@vger.kernel.org
155 S:      Maintained
156 F:      drivers/net/ethernet/3com/typhoon*
157
158 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
159 M:      Adam Radford <aradford@gmail.com>
160 L:      linux-scsi@vger.kernel.org
161 W:      http://www.lsi.com
162 S:      Supported
163 F:      drivers/scsi/3w-*
164
165 53C700 AND 53C700-66 SCSI DRIVER
166 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
167 L:      linux-scsi@vger.kernel.org
168 S:      Maintained
169 F:      drivers/scsi/53c700*
170
171 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
172 M:      Alexander Aring <alex.aring@gmail.com>
173 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
174 L:      linux-bluetooth@vger.kernel.org
175 L:      linux-wpan@vger.kernel.org
176 S:      Maintained
177 F:      net/6lowpan/
178 F:      include/net/6lowpan.h
179 F:      Documentation/networking/6lowpan.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.rst
218 F:      fs/9p/
219 F:      net/9p/
220 F:      include/net/9p/
221 F:      include/uapi/linux/virtio_9p.h
222 F:      include/trace/events/9p.h
223
224 A8293 MEDIA DRIVER
225 M:      Antti Palosaari <crope@iki.fi>
226 L:      linux-media@vger.kernel.org
227 W:      https://linuxtv.org
228 W:      http://palosaari.fi/linux/
229 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
230 T:      git git://linuxtv.org/anttip/media_tree.git
231 S:      Maintained
232 F:      drivers/media/dvb-frontends/a8293*
233
234 AACRAID SCSI RAID DRIVER
235 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
236 L:      linux-scsi@vger.kernel.org
237 W:      http://www.adaptec.com/
238 S:      Supported
239 F:      Documentation/scsi/aacraid.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 S:      Maintained
307 W:      http://piie.net/?section=acerhdf
308 F:      drivers/platform/x86/acerhdf.c
309
310 ACER WMI LAPTOP EXTRAS
311 M:      "Lee, Chun-Yi" <jlee@suse.com>
312 L:      platform-driver-x86@vger.kernel.org
313 S:      Maintained
314 F:      drivers/platform/x86/acer-wmi.c
315
316 ACPI
317 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
318 M:      Len Brown <lenb@kernel.org>
319 L:      linux-acpi@vger.kernel.org
320 S:      Supported
321 W:      https://01.org/linux-acpi
322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
323 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
324 B:      https://bugzilla.kernel.org
325 F:      Documentation/ABI/testing/configfs-acpi
326 F:      Documentation/ABI/testing/sysfs-bus-acpi
327 F:      Documentation/firmware-guide/acpi/
328 F:      drivers/acpi/
329 F:      drivers/pci/*/*acpi*
330 F:      drivers/pci/*acpi*
331 F:      drivers/pnp/pnpacpi/
332 F:      include/acpi/
333 F:      include/linux/acpi.h
334 F:      include/linux/fwnode.h
335 F:      tools/power/acpi/
336
337 ACPI APEI
338 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
339 M:      Len Brown <lenb@kernel.org>
340 R:      James Morse <james.morse@arm.com>
341 R:      Tony Luck <tony.luck@intel.com>
342 R:      Borislav Petkov <bp@alien8.de>
343 L:      linux-acpi@vger.kernel.org
344 F:      drivers/acpi/apei/
345
346 ACPI COMPONENT ARCHITECTURE (ACPICA)
347 M:      Robert Moore <robert.moore@intel.com>
348 M:      Erik Kaneda <erik.kaneda@intel.com>
349 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
350 L:      linux-acpi@vger.kernel.org
351 L:      devel@acpica.org
352 S:      Supported
353 W:      https://acpica.org/
354 W:      https://github.com/acpica/acpica/
355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
356 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
357 B:      https://bugzilla.kernel.org
358 B:      https://bugs.acpica.org
359 F:      drivers/acpi/acpica/
360 F:      include/acpi/
361 F:      tools/power/acpi/
362
363 ACPI FAN DRIVER
364 M:      Zhang Rui <rui.zhang@intel.com>
365 L:      linux-acpi@vger.kernel.org
366 S:      Supported
367 W:      https://01.org/linux-acpi
368 B:      https://bugzilla.kernel.org
369 F:      drivers/acpi/fan.c
370
371 ACPI FOR ARM64 (ACPI/arm64)
372 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
373 M:      Hanjun Guo <guohanjun@huawei.com>
374 M:      Sudeep Holla <sudeep.holla@arm.com>
375 L:      linux-acpi@vger.kernel.org
376 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
377 S:      Maintained
378 F:      drivers/acpi/arm64
379
380 ACPI I2C MULTI INSTANTIATE DRIVER
381 M:      Hans de Goede <hdegoede@redhat.com>
382 L:      platform-driver-x86@vger.kernel.org
383 S:      Maintained
384 F:      drivers/platform/x86/i2c-multi-instantiate.c
385
386 ACPI PMIC DRIVERS
387 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
388 M:      Len Brown <lenb@kernel.org>
389 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
390 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
391 L:      linux-acpi@vger.kernel.org
392 S:      Supported
393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
394 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
395 B:      https://bugzilla.kernel.org
396 F:      drivers/acpi/pmic/
397
398 ACPI THERMAL DRIVER
399 M:      Zhang Rui <rui.zhang@intel.com>
400 L:      linux-acpi@vger.kernel.org
401 S:      Supported
402 W:      https://01.org/linux-acpi
403 B:      https://bugzilla.kernel.org
404 F:      drivers/acpi/*thermal*
405
406 ACPI VIDEO DRIVER
407 M:      Zhang Rui <rui.zhang@intel.com>
408 L:      linux-acpi@vger.kernel.org
409 S:      Supported
410 W:      https://01.org/linux-acpi
411 B:      https://bugzilla.kernel.org
412 F:      drivers/acpi/acpi_video.c
413
414 ACPI WMI DRIVER
415 L:      platform-driver-x86@vger.kernel.org
416 S:      Orphan
417 F:      drivers/platform/x86/wmi.c
418 F:      include/uapi/linux/wmi.h
419
420 AD1889 ALSA SOUND DRIVER
421 W:      https://parisc.wiki.kernel.org/index.php/AD1889
422 L:      linux-parisc@vger.kernel.org
423 S:      Maintained
424 F:      sound/pci/ad1889.*
425
426 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
427 M:      Michael Hennerich <michael.hennerich@analog.com>
428 W:      http://wiki.analog.com/AD5254
429 W:      http://ez.analog.com/community/linux-device-drivers
430 S:      Supported
431 F:      drivers/misc/ad525x_dpot.c
432
433 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
434 M:      Michael Hennerich <michael.hennerich@analog.com>
435 W:      http://wiki.analog.com/AD5398
436 W:      http://ez.analog.com/community/linux-device-drivers
437 S:      Supported
438 F:      drivers/regulator/ad5398.c
439
440 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
441 M:      Michael Hennerich <michael.hennerich@analog.com>
442 W:      http://wiki.analog.com/AD7142
443 W:      http://ez.analog.com/community/linux-device-drivers
444 S:      Supported
445 F:      drivers/input/misc/ad714x.c
446
447 AD7877 TOUCHSCREEN DRIVER
448 M:      Michael Hennerich <michael.hennerich@analog.com>
449 W:      http://wiki.analog.com/AD7877
450 W:      http://ez.analog.com/community/linux-device-drivers
451 S:      Supported
452 F:      drivers/input/touchscreen/ad7877.c
453
454 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
455 M:      Michael Hennerich <michael.hennerich@analog.com>
456 W:      http://wiki.analog.com/AD7879
457 W:      http://ez.analog.com/community/linux-device-drivers
458 S:      Supported
459 F:      drivers/input/touchscreen/ad7879.c
460
461 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
462 M:      Jiri Kosina <jikos@kernel.org>
463 S:      Maintained
464
465 ADF7242 IEEE 802.15.4 RADIO DRIVER
466 M:      Michael Hennerich <michael.hennerich@analog.com>
467 W:      https://wiki.analog.com/ADF7242
468 W:      http://ez.analog.com/community/linux-device-drivers
469 L:      linux-wpan@vger.kernel.org
470 S:      Supported
471 F:      drivers/net/ieee802154/adf7242.c
472 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
473
474 ADM1025 HARDWARE MONITOR DRIVER
475 M:      Jean Delvare <jdelvare@suse.com>
476 L:      linux-hwmon@vger.kernel.org
477 S:      Maintained
478 F:      Documentation/hwmon/adm1025.rst
479 F:      drivers/hwmon/adm1025.c
480
481 ADM1029 HARDWARE MONITOR DRIVER
482 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
483 L:      linux-hwmon@vger.kernel.org
484 S:      Maintained
485 F:      drivers/hwmon/adm1029.c
486
487 ADM8211 WIRELESS DRIVER
488 L:      linux-wireless@vger.kernel.org
489 W:      http://wireless.kernel.org/
490 S:      Orphan
491 F:      drivers/net/wireless/admtek/adm8211.*
492
493 ADP1653 FLASH CONTROLLER DRIVER
494 M:      Sakari Ailus <sakari.ailus@iki.fi>
495 L:      linux-media@vger.kernel.org
496 S:      Maintained
497 F:      drivers/media/i2c/adp1653.c
498 F:      include/media/i2c/adp1653.h
499
500 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
501 M:      Michael Hennerich <michael.hennerich@analog.com>
502 W:      http://wiki.analog.com/ADP5520
503 W:      http://ez.analog.com/community/linux-device-drivers
504 S:      Supported
505 F:      drivers/mfd/adp5520.c
506 F:      drivers/video/backlight/adp5520_bl.c
507 F:      drivers/leds/leds-adp5520.c
508 F:      drivers/gpio/gpio-adp5520.c
509 F:      drivers/input/keyboard/adp5520-keys.c
510
511 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
512 M:      Michael Hennerich <michael.hennerich@analog.com>
513 W:      http://wiki.analog.com/ADP5588
514 W:      http://ez.analog.com/community/linux-device-drivers
515 S:      Supported
516 F:      drivers/input/keyboard/adp5588-keys.c
517 F:      drivers/gpio/gpio-adp5588.c
518
519 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
520 M:      Michael Hennerich <michael.hennerich@analog.com>
521 W:      http://wiki.analog.com/ADP8860
522 W:      http://ez.analog.com/community/linux-device-drivers
523 S:      Supported
524 F:      drivers/video/backlight/adp8860_bl.c
525
526 ADT746X FAN DRIVER
527 M:      Colin Leroy <colin@colino.net>
528 S:      Maintained
529 F:      drivers/macintosh/therm_adt746x.c
530
531 ADT7475 HARDWARE MONITOR DRIVER
532 M:      Jean Delvare <jdelvare@suse.com>
533 L:      linux-hwmon@vger.kernel.org
534 S:      Maintained
535 F:      Documentation/hwmon/adt7475.rst
536 F:      drivers/hwmon/adt7475.c
537
538 ADVANSYS SCSI DRIVER
539 M:      Matthew Wilcox <willy@infradead.org>
540 M:      Hannes Reinecke <hare@suse.com>
541 L:      linux-scsi@vger.kernel.org
542 S:      Maintained
543 F:      Documentation/scsi/advansys.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.rst
588 F:      fs/affs/
589
590 AFS FILESYSTEM
591 M:      David Howells <dhowells@redhat.com>
592 L:      linux-afs@lists.infradead.org
593 S:      Supported
594 F:      fs/afs/
595 F:      include/trace/events/afs.h
596 F:      Documentation/filesystems/afs.rst
597 W:      https://www.infradead.org/~dhowells/kafs/
598
599 AGPGART DRIVER
600 M:      David Airlie <airlied@linux.ie>
601 T:      git git://anongit.freedesktop.org/drm/drm
602 S:      Maintained
603 F:      drivers/char/agp/
604 F:      include/linux/agp*
605 F:      include/uapi/linux/agp*
606
607 AHA152X SCSI DRIVER
608 M:      "Juergen E. Fischer" <fischer@norbit.de>
609 L:      linux-scsi@vger.kernel.org
610 S:      Maintained
611 F:      drivers/scsi/aha152x*
612 F:      drivers/scsi/pcmcia/aha152x*
613
614 AIC7XXX / AIC79XX SCSI DRIVER
615 M:      Hannes Reinecke <hare@suse.com>
616 L:      linux-scsi@vger.kernel.org
617 S:      Maintained
618 F:      drivers/scsi/aic7xxx/
619
620 AIMSLAB FM RADIO RECEIVER DRIVER
621 M:      Hans Verkuil <hverkuil@xs4all.nl>
622 L:      linux-media@vger.kernel.org
623 T:      git git://linuxtv.org/media_tree.git
624 W:      https://linuxtv.org
625 S:      Maintained
626 F:      drivers/media/radio/radio-aimslab*
627
628 AIO
629 M:      Benjamin LaHaise <bcrl@kvack.org>
630 L:      linux-aio@kvack.org
631 S:      Supported
632 F:      fs/aio.c
633 F:      include/linux/*aio*.h
634
635 AIRSPY MEDIA DRIVER
636 M:      Antti Palosaari <crope@iki.fi>
637 L:      linux-media@vger.kernel.org
638 W:      https://linuxtv.org
639 W:      http://palosaari.fi/linux/
640 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
641 T:      git git://linuxtv.org/anttip/media_tree.git
642 S:      Maintained
643 F:      drivers/media/usb/airspy/
644
645 ALACRITECH GIGABIT ETHERNET DRIVER
646 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
647 S:      Maintained
648 F:      drivers/net/ethernet/alacritech/*
649
650 FORCEDETH GIGABIT ETHERNET DRIVER
651 M:      Rain River <rain.1986.08.12@gmail.com>
652 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
653 L:      netdev@vger.kernel.org
654 S:      Maintained
655 F:      drivers/net/ethernet/nvidia/*
656
657 ALCATEL SPEEDTOUCH USB DRIVER
658 M:      Duncan Sands <duncan.sands@free.fr>
659 L:      linux-usb@vger.kernel.org
660 W:      http://www.linux-usb.org/SpeedTouch/
661 S:      Maintained
662 F:      drivers/usb/atm/speedtch.c
663 F:      drivers/usb/atm/usbatm.c
664
665 ALCHEMY AU1XX0 MMC DRIVER
666 M:      Manuel Lauss <manuel.lauss@gmail.com>
667 S:      Maintained
668 F:      drivers/mmc/host/au1xmmc.c
669
670 ALI1563 I2C DRIVER
671 M:      Rudolf Marek <r.marek@assembler.cz>
672 L:      linux-i2c@vger.kernel.org
673 S:      Maintained
674 F:      Documentation/i2c/busses/i2c-ali1563.rst
675 F:      drivers/i2c/busses/i2c-ali1563.c
676
677 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
678 M:      Tomislav Denis <tomislav.denis@avl.com>
679 W:      http://www.allsensors.com/
680 S:      Maintained
681 L:      linux-iio@vger.kernel.org
682 F:      drivers/iio/pressure/dlhl60d.c
683 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
684
685 ALLEGRO DVT VIDEO IP CORE DRIVER
686 M:      Michael Tretter <m.tretter@pengutronix.de>
687 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
688 L:      linux-media@vger.kernel.org
689 S:      Maintained
690 F:      drivers/staging/media/allegro-dvt/
691
692 ALLWINNER CPUFREQ DRIVER
693 M:      Yangtao Li <tiny.windzz@gmail.com>
694 L:      linux-pm@vger.kernel.org
695 S:      Maintained
696 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
697 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
698
699 ALLWINNER CRYPTO DRIVERS
700 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
701 L:      linux-crypto@vger.kernel.org
702 S:      Maintained
703 F:      drivers/crypto/allwinner/
704
705 ALLWINNER THERMAL DRIVER
706 M:      Vasily Khoruzhick <anarsoul@gmail.com>
707 M:      Yangtao Li <tiny.windzz@gmail.com>
708 L:      linux-pm@vger.kernel.org
709 S:      Maintained
710 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
711 F:      drivers/thermal/sun8i_thermal.c
712
713 ALLWINNER VPU DRIVER
714 M:      Maxime Ripard <mripard@kernel.org>
715 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
716 L:      linux-media@vger.kernel.org
717 S:      Maintained
718 F:      drivers/staging/media/sunxi/cedrus/
719
720 ALPHA PORT
721 M:      Richard Henderson <rth@twiddle.net>
722 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
723 M:      Matt Turner <mattst88@gmail.com>
724 S:      Odd Fixes
725 L:      linux-alpha@vger.kernel.org
726 F:      arch/alpha/
727
728 ALPS PS/2 TOUCHPAD DRIVER
729 R:      Pali Rohár <pali.rohar@gmail.com>
730 F:      drivers/input/mouse/alps.*
731
732 ALTERA I2C CONTROLLER DRIVER
733 M:      Thor Thayer <thor.thayer@linux.intel.com>
734 S:      Maintained
735 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
736 F:      drivers/i2c/busses/i2c-altera.c
737
738 ALTERA MAILBOX DRIVER
739 M:      Ley Foon Tan <ley.foon.tan@intel.com>
740 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
741 S:      Maintained
742 F:      drivers/mailbox/mailbox-altera.c
743
744 ALTERA PIO DRIVER
745 M:      Joyce Ooi <joyce.ooi@intel.com>
746 L:      linux-gpio@vger.kernel.org
747 S:      Maintained
748 F:      drivers/gpio/gpio-altera.c
749
750 ALTERA SYSTEM MANAGER DRIVER
751 M:      Thor Thayer <thor.thayer@linux.intel.com>
752 S:      Maintained
753 F:      drivers/mfd/altera-sysmgr.c
754 F:      include/linux/mfd/altera-sysmgr.h
755
756 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
757 M:      Thor Thayer <thor.thayer@linux.intel.com>
758 S:      Maintained
759 F:      drivers/gpio/gpio-altera-a10sr.c
760 F:      drivers/mfd/altera-a10sr.c
761 F:      drivers/reset/reset-a10sr.c
762 F:      include/linux/mfd/altera-a10sr.h
763 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
764
765 ALTERA TRIPLE SPEED ETHERNET DRIVER
766 M:      Thor Thayer <thor.thayer@linux.intel.com>
767 L:      netdev@vger.kernel.org
768 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
769 S:      Maintained
770 F:      drivers/net/ethernet/altera/
771
772 ALTERA UART/JTAG UART SERIAL DRIVERS
773 M:      Tobias Klauser <tklauser@distanz.ch>
774 L:      linux-serial@vger.kernel.org
775 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
776 S:      Maintained
777 F:      drivers/tty/serial/altera_uart.c
778 F:      drivers/tty/serial/altera_jtaguart.c
779 F:      include/linux/altera_uart.h
780 F:      include/linux/altera_jtaguart.h
781
782 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
783 M:      Talel Shenhar <talel@amazon.com>
784 S:      Maintained
785 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
786 F:      drivers/thermal/thermal_mmio.c
787
788 AMAZON ETHERNET DRIVERS
789 M:      Netanel Belgazal <netanel@amazon.com>
790 M:      Arthur Kiyanovski <akiyano@amazon.com>
791 R:      Guy Tzalik <gtzalik@amazon.com>
792 R:      Saeed Bishara <saeedb@amazon.com>
793 R:      Zorik Machulsky <zorik@amazon.com>
794 L:      netdev@vger.kernel.org
795 S:      Supported
796 F:      Documentation/networking/device_drivers/amazon/ena.txt
797 F:      drivers/net/ethernet/amazon/
798
799 AMAZON RDMA EFA DRIVER
800 M:      Gal Pressman <galpress@amazon.com>
801 R:      Yossi Leybovich <sleybo@amazon.com>
802 L:      linux-rdma@vger.kernel.org
803 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
804 S:      Supported
805 F:      drivers/infiniband/hw/efa/
806 F:      include/uapi/rdma/efa-abi.h
807
808 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
809 M:      Tom Lendacky <thomas.lendacky@amd.com>
810 L:      linux-crypto@vger.kernel.org
811 S:      Supported
812 F:      drivers/crypto/ccp/
813 F:      include/linux/ccp.h
814
815 AMD DISPLAY CORE
816 M:      Harry Wentland <harry.wentland@amd.com>
817 M:      Leo Li <sunpeng.li@amd.com>
818 L:      amd-gfx@lists.freedesktop.org
819 T:      git git://people.freedesktop.org/~agd5f/linux
820 S:      Supported
821 F:      drivers/gpu/drm/amd/display/
822
823 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
824 M:      Huang Rui <ray.huang@amd.com>
825 L:      linux-hwmon@vger.kernel.org
826 S:      Supported
827 F:      Documentation/hwmon/fam15h_power.rst
828 F:      drivers/hwmon/fam15h_power.c
829
830 AMD FCH GPIO DRIVER
831 M:      Enrico Weigelt, metux IT consult <info@metux.net>
832 L:      linux-gpio@vger.kernel.org
833 S:      Maintained
834 F:      drivers/gpio/gpio-amd-fch.c
835 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
836
837 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
838 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
839 S:      Orphan
840 F:      drivers/usb/gadget/udc/amd5536udc.*
841
842 AMD GEODE PROCESSOR/CHIPSET SUPPORT
843 M:      Andres Salomon <dilinger@queued.net>
844 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
845 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
846 S:      Supported
847 F:      drivers/char/hw_random/geode-rng.c
848 F:      drivers/crypto/geode*
849 F:      drivers/video/fbdev/geode/
850 F:      arch/x86/include/asm/geode.h
851
852 AMD IOMMU (AMD-VI)
853 M:      Joerg Roedel <joro@8bytes.org>
854 L:      iommu@lists.linux-foundation.org
855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
856 S:      Maintained
857 F:      drivers/iommu/amd_iommu*.[ch]
858 F:      include/linux/amd-iommu.h
859
860 AMD KFD
861 M:      Felix Kuehling <Felix.Kuehling@amd.com>
862 L:      amd-gfx@lists.freedesktop.org
863 T:      git git://people.freedesktop.org/~agd5f/linux
864 S:      Supported
865 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
866 F:      drivers/gpu/drm/amd/amdkfd/
867 F:      drivers/gpu/drm/amd/include/cik_structs.h
868 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
869 F:      drivers/gpu/drm/amd/include/vi_structs.h
870 F:      drivers/gpu/drm/amd/include/v9_structs.h
871 F:      include/uapi/linux/kfd_ioctl.h
872
873 AMD MP2 I2C DRIVER
874 M:      Elie Morisse <syniurge@gmail.com>
875 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
876 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
877 L:      linux-i2c@vger.kernel.org
878 S:      Maintained
879 F:      drivers/i2c/busses/i2c-amd-mp2*
880
881 AMD POWERPLAY
882 M:      Evan Quan <evan.quan@amd.com>
883 L:      amd-gfx@lists.freedesktop.org
884 S:      Supported
885 F:      drivers/gpu/drm/amd/powerplay/
886 T:      git git://people.freedesktop.org/~agd5f/linux
887
888 AMD SEATTLE DEVICE TREE SUPPORT
889 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
890 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
891 M:      Tom Lendacky <thomas.lendacky@amd.com>
892 S:      Supported
893 F:      arch/arm64/boot/dts/amd/
894
895 AMD XGBE DRIVER
896 M:      Tom Lendacky <thomas.lendacky@amd.com>
897 L:      netdev@vger.kernel.org
898 S:      Supported
899 F:      drivers/net/ethernet/amd/xgbe/
900 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
901
902 ANALOG DEVICES INC AD5686 DRIVER
903 M:      Stefan Popa <stefan.popa@analog.com>
904 L:      linux-pm@vger.kernel.org
905 W:      http://ez.analog.com/community/linux-device-drivers
906 S:      Supported
907 F:      drivers/iio/dac/ad5686*
908 F:      drivers/iio/dac/ad5696*
909
910 ANALOG DEVICES INC AD5758 DRIVER
911 M:      Stefan Popa <stefan.popa@analog.com>
912 L:      linux-iio@vger.kernel.org
913 W:      http://ez.analog.com/community/linux-device-drivers
914 S:      Supported
915 F:      drivers/iio/dac/ad5758.c
916 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
917
918 ANALOG DEVICES INC AD7091R5 DRIVER
919 M:      Beniamin Bia <beniamin.bia@analog.com>
920 L:      linux-iio@vger.kernel.org
921 W:      http://ez.analog.com/community/linux-device-drivers
922 S:      Supported
923 F:      drivers/iio/adc/ad7091r5.c
924 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7091r5.yaml
925
926 ANALOG DEVICES INC AD7124 DRIVER
927 M:      Stefan Popa <stefan.popa@analog.com>
928 L:      linux-iio@vger.kernel.org
929 W:      http://ez.analog.com/community/linux-device-drivers
930 S:      Supported
931 F:      drivers/iio/adc/ad7124.c
932 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7124.yaml
933
934 ANALOG DEVICES INC AD7192 DRIVER
935 M:      Alexandru Tachici <alexandru.tachici@analog.com>
936 L:      linux-iio@vger.kernel.org
937 W:      http://ez.analog.com/community/linux-device-drivers
938 S:      Supported
939 F:      drivers/iio/adc/ad7192.c
940 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
941
942 ANALOG DEVICES INC AD7292 DRIVER
943 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
944 L:      linux-iio@vger.kernel.org
945 W:      http://ez.analog.com/community/linux-device-drivers
946 S:      Supported
947 F:      drivers/iio/adc/ad7292.c
948 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
949
950 ANALOG DEVICES INC AD7606 DRIVER
951 M:      Stefan Popa <stefan.popa@analog.com>
952 M:      Beniamin Bia <beniamin.bia@analog.com>
953 L:      linux-iio@vger.kernel.org
954 W:      http://ez.analog.com/community/linux-device-drivers
955 S:      Supported
956 F:      drivers/iio/adc/ad7606.c
957 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
958
959 ANALOG DEVICES INC AD7768-1 DRIVER
960 M:      Stefan Popa <stefan.popa@analog.com>
961 L:      linux-iio@vger.kernel.org
962 W:      http://ez.analog.com/community/linux-device-drivers
963 S:      Supported
964 F:      drivers/iio/adc/ad7768-1.c
965 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.txt
966
967 ANALOG DEVICES INC AD7780 DRIVER
968 M:      Michael Hennerich <Michael.Hennerich@analog.com>
969 M:      Renato Lui Geh <renatogeh@gmail.com>
970 L:      linux-iio@vger.kernel.org
971 W:      http://ez.analog.com/community/linux-device-drivers
972 S:      Supported
973 F:      drivers/iio/adc/ad7780.c
974 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
975
976 ANALOG DEVICES INC AD9389B DRIVER
977 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
978 L:      linux-media@vger.kernel.org
979 S:      Maintained
980 F:      drivers/media/i2c/ad9389b*
981
982 ANALOG DEVICES INC ADGS1408 DRIVER
983 M:      Mircea Caprioru <mircea.caprioru@analog.com>
984 S:      Supported
985 F:      drivers/mux/adgs1408.c
986 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
987
988 ANALOG DEVICES INC ADIN DRIVER
989 M:      Alexandru Ardelean <alexaundru.ardelean@analog.com>
990 L:      netdev@vger.kernel.org
991 W:      http://ez.analog.com/community/linux-device-drivers
992 S:      Supported
993 F:      drivers/net/phy/adin.c
994 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
995
996 ANALOG DEVICES INC ADIS DRIVER LIBRARY
997 M:      Alexandru Ardelean <alexandru.ardelean@analog.com>
998 S:      Supported
999 L:      linux-iio@vger.kernel.org
1000 F:      include/linux/iio/imu/adis.h
1001 F:      drivers/iio/imu/adis.c
1002
1003 ANALOG DEVICES INC ADIS16460 DRIVER
1004 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1005 S:      Supported
1006 L:      linux-iio@vger.kernel.org
1007 W:      http://ez.analog.com/community/linux-device-drivers
1008 F:      drivers/iio/imu/adis16460.c
1009 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1010
1011 ANALOG DEVICES INC ADM1177 DRIVER
1012 M:      Beniamin Bia <beniamin.bia@analog.com>
1013 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1014 L:      linux-hwmon@vger.kernel.org
1015 W:      http://ez.analog.com/community/linux-device-drivers
1016 S:      Supported
1017 F:      drivers/hwmon/adm1177.c
1018 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1019
1020 ANALOG DEVICES INC ADP5061 DRIVER
1021 M:      Stefan Popa <stefan.popa@analog.com>
1022 L:      linux-pm@vger.kernel.org
1023 W:      http://ez.analog.com/community/linux-device-drivers
1024 S:      Supported
1025 F:      drivers/power/supply/adp5061.c
1026
1027 ANALOG DEVICES INC ADV7180 DRIVER
1028 M:      Lars-Peter Clausen <lars@metafoo.de>
1029 L:      linux-media@vger.kernel.org
1030 W:      http://ez.analog.com/community/linux-device-drivers
1031 S:      Supported
1032 F:      drivers/media/i2c/adv7180.c
1033
1034 ANALOG DEVICES INC ADV748X DRIVER
1035 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1036 L:      linux-media@vger.kernel.org
1037 S:      Maintained
1038 F:      drivers/media/i2c/adv748x/*
1039
1040 ANALOG DEVICES INC ADV7511 DRIVER
1041 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1042 L:      linux-media@vger.kernel.org
1043 S:      Maintained
1044 F:      drivers/media/i2c/adv7511*
1045
1046 ANALOG DEVICES INC ADV7604 DRIVER
1047 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1048 L:      linux-media@vger.kernel.org
1049 S:      Maintained
1050 F:      drivers/media/i2c/adv7604*
1051
1052 ANALOG DEVICES INC ADV7842 DRIVER
1053 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1054 L:      linux-media@vger.kernel.org
1055 S:      Maintained
1056 F:      drivers/media/i2c/adv7842*
1057
1058 ANALOG DEVICES INC ASOC CODEC DRIVERS
1059 M:      Lars-Peter Clausen <lars@metafoo.de>
1060 M:      Nuno Sá <nuno.sa@analog.com>
1061 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1062 W:      http://wiki.analog.com/
1063 W:      http://ez.analog.com/community/linux-device-drivers
1064 S:      Supported
1065 F:      sound/soc/codecs/adau*
1066 F:      sound/soc/codecs/adav*
1067 F:      sound/soc/codecs/ad1*
1068 F:      sound/soc/codecs/ad7*
1069 F:      sound/soc/codecs/ssm*
1070 F:      sound/soc/codecs/sigmadsp.*
1071
1072 ANALOG DEVICES INC DMA DRIVERS
1073 M:      Lars-Peter Clausen <lars@metafoo.de>
1074 W:      http://ez.analog.com/community/linux-device-drivers
1075 S:      Supported
1076 F:      drivers/dma/dma-axi-dmac.c
1077
1078 ANALOG DEVICES INC IIO DRIVERS
1079 M:      Lars-Peter Clausen <lars@metafoo.de>
1080 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1081 M:      Stefan Popa <stefan.popa@analog.com>
1082 W:      http://wiki.analog.com/
1083 W:      http://ez.analog.com/community/linux-device-drivers
1084 S:      Supported
1085 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1086 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1087 F:      drivers/iio/*/ad*
1088 F:      drivers/iio/adc/ltc249*
1089 X:      drivers/iio/*/adjd*
1090 F:      drivers/staging/iio/*/ad*
1091
1092 ANALOG DEVICES INC HMC425A DRIVER
1093 M:      Beniamin Bia <beniamin.bia@analog.com>
1094 M:      Michael Hennerich <michael.hennerich@analog.com>
1095 L:      linux-iio@vger.kernel.org
1096 S:      Supported
1097 W:      http://ez.analog.com/community/linux-device-drivers
1098 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,hmc425a.yaml
1099 F:      drivers/iio/amplifiers/hmc425a.c
1100
1101 ANALOGBITS PLL LIBRARIES
1102 M:      Paul Walmsley <paul.walmsley@sifive.com>
1103 S:      Supported
1104 F:      drivers/clk/analogbits/*
1105 F:      include/linux/clk/analogbits*
1106
1107 ANDES ARCHITECTURE
1108 M:      Nick Hu <nickhu@andestech.com>
1109 M:      Greentime Hu <green.hu@gmail.com>
1110 M:      Vincent Chen <deanbo422@gmail.com>
1111 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1112 S:      Supported
1113 F:      arch/nds32/
1114 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1115 F:      Documentation/devicetree/bindings/nds32/
1116 K:      nds32
1117 N:      nds32
1118
1119 ANDROID CONFIG FRAGMENTS
1120 M:      Rob Herring <robh@kernel.org>
1121 S:      Supported
1122 F:      kernel/configs/android*
1123
1124 ANDROID DRIVERS
1125 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1126 M:      Arve Hjønnevåg <arve@android.com>
1127 M:      Todd Kjos <tkjos@android.com>
1128 M:      Martijn Coenen <maco@android.com>
1129 M:      Joel Fernandes <joel@joelfernandes.org>
1130 M:      Christian Brauner <christian@brauner.io>
1131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1132 L:      devel@driverdev.osuosl.org
1133 S:      Supported
1134 F:      drivers/android/
1135 F:      drivers/staging/android/
1136
1137 ANDROID GOLDFISH PIC DRIVER
1138 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1139 S:      Supported
1140 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1141 F:      drivers/irqchip/irq-goldfish-pic.c
1142
1143 ANDROID GOLDFISH RTC DRIVER
1144 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1145 S:      Supported
1146 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1147 F:      drivers/rtc/rtc-goldfish.c
1148
1149 ANDROID ION DRIVER
1150 M:      Laura Abbott <labbott@redhat.com>
1151 M:      Sumit Semwal <sumit.semwal@linaro.org>
1152 L:      devel@driverdev.osuosl.org
1153 L:      dri-devel@lists.freedesktop.org
1154 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
1155 S:      Supported
1156 F:      drivers/staging/android/ion
1157 F:      drivers/staging/android/uapi/ion.h
1158
1159 AOA (Apple Onboard Audio) ALSA DRIVER
1160 M:      Johannes Berg <johannes@sipsolutions.net>
1161 L:      linuxppc-dev@lists.ozlabs.org
1162 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1163 S:      Maintained
1164 F:      sound/aoa/
1165
1166 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1167 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1168 L:      linux-iio@vger.kernel.org
1169 S:      Maintained
1170 F:      drivers/iio/adc/stx104.c
1171
1172 APM DRIVER
1173 M:      Jiri Kosina <jikos@kernel.org>
1174 S:      Odd fixes
1175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1176 F:      arch/x86/kernel/apm_32.c
1177 F:      include/linux/apm_bios.h
1178 F:      include/uapi/linux/apm_bios.h
1179 F:      drivers/char/apm-emulation.c
1180
1181 APPARMOR SECURITY MODULE
1182 M:      John Johansen <john.johansen@canonical.com>
1183 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1184 W:      wiki.apparmor.net
1185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1186 S:      Supported
1187 F:      security/apparmor/
1188 F:      Documentation/admin-guide/LSM/apparmor.rst
1189
1190 APPLE BCM5974 MULTITOUCH DRIVER
1191 M:      Henrik Rydberg <rydberg@bitmath.org>
1192 L:      linux-input@vger.kernel.org
1193 S:      Odd fixes
1194 F:      drivers/input/mouse/bcm5974.c
1195
1196 APPLE SMC DRIVER
1197 M:      Henrik Rydberg <rydberg@bitmath.org>
1198 L:      linux-hwmon@vger.kernel.org
1199 S:      Odd fixes
1200 F:      drivers/hwmon/applesmc.c
1201
1202 APPLETALK NETWORK LAYER
1203 L:      netdev@vger.kernel.org
1204 S:      Odd fixes
1205 F:      drivers/net/appletalk/
1206 F:      net/appletalk/
1207 F:      include/linux/atalk.h
1208 F:      include/uapi/linux/atalk.h
1209
1210 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1211 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1212 S:      Supported
1213 F:      arch/arm64/boot/dts/apm/
1214
1215 APPLIED MICRO (APM) X-GENE SOC EDAC
1216 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1217 S:      Supported
1218 F:      drivers/edac/xgene_edac.c
1219 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1220
1221 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1222 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1223 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1224 S:      Supported
1225 F:      drivers/net/ethernet/apm/xgene-v2/
1226
1227 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1228 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1229 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1230 M:      Quan Nguyen <quan@os.amperecomputing.com>
1231 S:      Supported
1232 F:      drivers/net/ethernet/apm/xgene/
1233 F:      drivers/net/phy/mdio-xgene.c
1234 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1235 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1236
1237 APPLIED MICRO (APM) X-GENE SOC PMU
1238 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1239 S:      Supported
1240 F:      drivers/perf/xgene_pmu.c
1241 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1242 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1243
1244 APTINA CAMERA SENSOR PLL
1245 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1246 L:      linux-media@vger.kernel.org
1247 S:      Maintained
1248 F:      drivers/media/i2c/aptina-pll.*
1249
1250 AQUANTIA ETHERNET DRIVER (atlantic)
1251 M:      Igor Russkikh <irusskikh@marvell.com>
1252 L:      netdev@vger.kernel.org
1253 S:      Supported
1254 W:      https://www.marvell.com/
1255 Q:      http://patchwork.ozlabs.org/project/netdev/list/
1256 F:      drivers/net/ethernet/aquantia/atlantic/
1257 F:      Documentation/networking/device_drivers/aquantia/atlantic.txt
1258
1259 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1260 M:      Egor Pomozov <epomozov@marvell.com>
1261 L:      netdev@vger.kernel.org
1262 S:      Supported
1263 W:      http://www.aquantia.com
1264 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1265
1266 ARC FRAMEBUFFER DRIVER
1267 M:      Jaya Kumar <jayalk@intworks.biz>
1268 S:      Maintained
1269 F:      drivers/video/fbdev/arcfb.c
1270 F:      drivers/video/fbdev/core/fb_defio.c
1271
1272 ARC PGU DRM DRIVER
1273 M:      Alexey Brodkin <abrodkin@synopsys.com>
1274 S:      Supported
1275 F:      drivers/gpu/drm/arc/
1276 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1277
1278 ARCNET NETWORK LAYER
1279 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1280 L:      netdev@vger.kernel.org
1281 S:      Maintained
1282 F:      drivers/net/arcnet/
1283 F:      include/uapi/linux/if_arcnet.h
1284
1285 ARM ARCHITECTED TIMER DRIVER
1286 M:      Mark Rutland <mark.rutland@arm.com>
1287 M:      Marc Zyngier <maz@kernel.org>
1288 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1289 S:      Maintained
1290 F:      arch/arm/include/asm/arch_timer.h
1291 F:      arch/arm64/include/asm/arch_timer.h
1292 F:      drivers/clocksource/arm_arch_timer.c
1293
1294 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1295 M:      Linus Walleij <linus.walleij@linaro.org>
1296 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1297 S:      Maintained
1298 F:      Documentation/devicetree/bindings/arm/arm-boards
1299 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1300 F:      Documentation/devicetree/bindings/clock/arm-integrator.txt
1301 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1302 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1303 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1304 F:      arch/arm/mach-integrator/
1305 F:      arch/arm/mach-realview/
1306 F:      arch/arm/mach-versatile/
1307 F:      arch/arm/plat-versatile/
1308 F:      arch/arm/boot/dts/arm-realview-*
1309 F:      arch/arm/boot/dts/integrator*
1310 F:      arch/arm/boot/dts/versatile*
1311 F:      drivers/clk/versatile/
1312 F:      drivers/i2c/busses/i2c-versatile.c
1313 F:      drivers/irqchip/irq-versatile-fpga.c
1314 F:      drivers/mtd/maps/physmap_of_versatile.c
1315 F:      drivers/power/reset/arm-versatile-reboot.c
1316 F:      drivers/soc/versatile/
1317
1318 ARM HDLCD DRM DRIVER
1319 M:      Liviu Dudau <liviu.dudau@arm.com>
1320 S:      Supported
1321 F:      drivers/gpu/drm/arm/hdlcd_*
1322 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1323
1324 ARM KOMEDA DRM-KMS DRIVER
1325 M:      James (Qian) Wang <james.qian.wang@arm.com>
1326 M:      Liviu Dudau <liviu.dudau@arm.com>
1327 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1328 L:      Mali DP Maintainers <malidp@foss.arm.com>
1329 S:      Supported
1330 T:      git git://anongit.freedesktop.org/drm/drm-misc
1331 F:      drivers/gpu/drm/arm/display/include/
1332 F:      drivers/gpu/drm/arm/display/komeda/
1333 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1334 F:      Documentation/gpu/komeda-kms.rst
1335
1336 ARM MALI-DP DRM DRIVER
1337 M:      Liviu Dudau <liviu.dudau@arm.com>
1338 M:      Brian Starkey <brian.starkey@arm.com>
1339 L:      Mali DP Maintainers <malidp@foss.arm.com>
1340 S:      Supported
1341 T:      git git://anongit.freedesktop.org/drm/drm-misc
1342 F:      drivers/gpu/drm/arm/
1343 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1344 F:      Documentation/gpu/afbc.rst
1345
1346 ARM MALI PANFROST DRM DRIVER
1347 M:      Rob Herring <robh@kernel.org>
1348 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1349 R:      Steven Price <steven.price@arm.com>
1350 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1351 L:      dri-devel@lists.freedesktop.org
1352 S:      Supported
1353 T:      git git://anongit.freedesktop.org/drm/drm-misc
1354 F:      drivers/gpu/drm/panfrost/
1355 F:      include/uapi/drm/panfrost_drm.h
1356
1357 ARM MFM AND FLOPPY DRIVERS
1358 M:      Ian Molton <spyro@f2s.com>
1359 S:      Maintained
1360 F:      arch/arm/mach-rpc/floppydma.S
1361 F:      arch/arm/include/asm/floppy.h
1362
1363 ARM PMU PROFILING AND DEBUGGING
1364 M:      Will Deacon <will@kernel.org>
1365 M:      Mark Rutland <mark.rutland@arm.com>
1366 S:      Maintained
1367 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1368 F:      arch/arm*/kernel/perf_*
1369 F:      arch/arm/oprofile/common.c
1370 F:      arch/arm*/kernel/hw_breakpoint.c
1371 F:      arch/arm*/include/asm/hw_breakpoint.h
1372 F:      arch/arm*/include/asm/perf_event.h
1373 F:      drivers/perf/*
1374 F:      include/linux/perf/arm_pmu.h
1375 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1376 F:      Documentation/devicetree/bindings/perf/
1377
1378 ARM PORT
1379 M:      Russell King <linux@armlinux.org.uk>
1380 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1381 W:      http://www.armlinux.org.uk/
1382 S:      Odd Fixes
1383 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1384 F:      arch/arm/
1385 X:      arch/arm/boot/dts/
1386
1387 ARM PRIMECELL AACI PL041 DRIVER
1388 M:      Russell King <linux@armlinux.org.uk>
1389 S:      Odd Fixes
1390 F:      sound/arm/aaci.*
1391
1392 ARM PRIMECELL BUS SUPPORT
1393 M:      Russell King <linux@armlinux.org.uk>
1394 S:      Odd Fixes
1395 F:      drivers/amba/
1396 F:      include/linux/amba/bus.h
1397
1398 ARM PRIMECELL CLCD PL110 DRIVER
1399 M:      Russell King <linux@armlinux.org.uk>
1400 S:      Odd Fixes
1401 F:      drivers/video/fbdev/amba-clcd.*
1402
1403 ARM PRIMECELL KMI PL050 DRIVER
1404 M:      Russell King <linux@armlinux.org.uk>
1405 S:      Odd Fixes
1406 F:      drivers/input/serio/ambakmi.*
1407 F:      include/linux/amba/kmi.h
1408
1409 ARM PRIMECELL MMCI PL180/1 DRIVER
1410 M:      Russell King <linux@armlinux.org.uk>
1411 S:      Odd Fixes
1412 F:      drivers/mmc/host/mmci.*
1413 F:      include/linux/amba/mmci.h
1414
1415 ARM PRIMECELL SSP PL022 SPI DRIVER
1416 M:      Linus Walleij <linus.walleij@linaro.org>
1417 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1418 S:      Maintained
1419 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1420 F:      drivers/spi/spi-pl022.c
1421
1422 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1423 M:      Russell King <linux@armlinux.org.uk>
1424 S:      Odd Fixes
1425 F:      drivers/tty/serial/amba-pl01*.c
1426 F:      include/linux/amba/serial.h
1427
1428 ARM PRIMECELL VIC PL190/PL192 DRIVER
1429 M:      Linus Walleij <linus.walleij@linaro.org>
1430 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1431 S:      Maintained
1432 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1433 F:      drivers/irqchip/irq-vic.c
1434
1435 AMAZON ANNAPURNA LABS FIC DRIVER
1436 M:      Talel Shenhar <talel@amazon.com>
1437 S:      Maintained
1438 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
1439 F:      drivers/irqchip/irq-al-fic.c
1440
1441 ARM SMMU DRIVERS
1442 M:      Will Deacon <will@kernel.org>
1443 R:      Robin Murphy <robin.murphy@arm.com>
1444 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1445 S:      Maintained
1446 F:      drivers/iommu/arm-smmu*
1447 F:      drivers/iommu/io-pgtable-arm.c
1448 F:      drivers/iommu/io-pgtable-arm-v7s.c
1449
1450 ARM SUB-ARCHITECTURES
1451 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1452 S:      Maintained
1453 F:      arch/arm/mach-*/
1454 F:      arch/arm/plat-*/
1455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1456
1457 ARM/ACTIONS SEMI ARCHITECTURE
1458 M:      Andreas Färber <afaerber@suse.de>
1459 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1460 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1461 S:      Maintained
1462 N:      owl
1463 F:      arch/arm/mach-actions/
1464 F:      arch/arm/boot/dts/owl-*
1465 F:      arch/arm64/boot/dts/actions/
1466 F:      drivers/clk/actions/
1467 F:      drivers/clocksource/timer-owl*
1468 F:      drivers/dma/owl-dma.c
1469 F:      drivers/i2c/busses/i2c-owl.c
1470 F:      drivers/mmc/host/owl-mmc.c
1471 F:      drivers/pinctrl/actions/*
1472 F:      drivers/soc/actions/
1473 F:      include/dt-bindings/power/owl-*
1474 F:      include/linux/soc/actions/
1475 F:      Documentation/devicetree/bindings/arm/actions.yaml
1476 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1477 F:      Documentation/devicetree/bindings/dma/owl-dma.txt
1478 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1479 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1480 F:      Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
1481 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1482 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1483
1484 ARM/ADS SPHERE MACHINE SUPPORT
1485 M:      Lennert Buytenhek <kernel@wantstofly.org>
1486 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1487 S:      Maintained
1488
1489 ARM/AFEB9260 MACHINE SUPPORT
1490 M:      Sergey Lapin <slapin@ossfans.org>
1491 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1492 S:      Maintained
1493
1494 ARM/AJECO 1ARM MACHINE SUPPORT
1495 M:      Lennert Buytenhek <kernel@wantstofly.org>
1496 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1497 S:      Maintained
1498
1499 ARM/Allwinner SoC Clock Support
1500 M:      Emilio López <emilio@elopez.com.ar>
1501 S:      Maintained
1502 F:      drivers/clk/sunxi/
1503
1504 ARM/Allwinner sunXi SoC support
1505 M:      Maxime Ripard <mripard@kernel.org>
1506 M:      Chen-Yu Tsai <wens@csie.org>
1507 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1508 S:      Maintained
1509 N:      sun[x456789]i
1510 N:      sun50i
1511 F:      arch/arm/mach-sunxi/
1512 F:      arch/arm64/boot/dts/allwinner/
1513 F:      drivers/clk/sunxi-ng/
1514 F:      drivers/pinctrl/sunxi/
1515 F:      drivers/soc/sunxi/
1516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1517
1518 Allwinner A10 CSI driver
1519 M:      Maxime Ripard <mripard@kernel.org>
1520 L:      linux-media@vger.kernel.org
1521 T:      git git://linuxtv.org/media_tree.git
1522 F:      drivers/media/platform/sunxi/sun4i-csi/
1523 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
1524 S:      Maintained
1525
1526 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1527 M:      Neil Armstrong <narmstrong@baylibre.com>
1528 M:      Jerome Brunet <jbrunet@baylibre.com>
1529 L:      linux-amlogic@lists.infradead.org
1530 S:      Maintained
1531 F:      drivers/clk/meson/
1532 F:      include/dt-bindings/clock/meson*
1533 F:      include/dt-bindings/clock/gxbb*
1534 F:      Documentation/devicetree/bindings/clock/amlogic*
1535
1536 ARM/Amlogic Meson SoC support
1537 M:      Kevin Hilman <khilman@baylibre.com>
1538 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1539 L:      linux-amlogic@lists.infradead.org
1540 W:      http://linux-meson.com/
1541 S:      Maintained
1542 F:      arch/arm/mach-meson/
1543 F:      arch/arm/boot/dts/meson*
1544 F:      arch/arm64/boot/dts/amlogic/
1545 F:      drivers/pinctrl/meson/
1546 F:      drivers/mmc/host/meson*
1547 F:      drivers/soc/amlogic/
1548 F:      drivers/rtc/rtc-meson*
1549 N:      meson
1550
1551 ARM/Amlogic Meson SoC Crypto Drivers
1552 M:      Corentin Labbe <clabbe@baylibre.com>
1553 L:      linux-crypto@vger.kernel.org
1554 L:      linux-amlogic@lists.infradead.org
1555 S:      Maintained
1556 F:      drivers/crypto/amlogic/
1557 F:      Documentation/devicetree/bindings/crypto/amlogic*
1558
1559 ARM/Amlogic Meson SoC Sound Drivers
1560 M:      Jerome Brunet <jbrunet@baylibre.com>
1561 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1562 S:      Maintained
1563 F:      sound/soc/meson/
1564 F:      Documentation/devicetree/bindings/sound/amlogic*
1565
1566 ARM/Annapurna Labs ALPINE ARCHITECTURE
1567 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1568 M:      Antoine Tenart <antoine.tenart@bootlin.com>
1569 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1570 S:      Maintained
1571 F:      arch/arm/mach-alpine/
1572 F:      arch/arm/boot/dts/alpine*
1573 F:      arch/arm64/boot/dts/al/
1574 F:      drivers/*/*alpine*
1575
1576 ARM/ARTPEC MACHINE SUPPORT
1577 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1578 M:      Lars Persson <lars.persson@axis.com>
1579 S:      Maintained
1580 L:      linux-arm-kernel@axis.com
1581 F:      arch/arm/mach-artpec
1582 F:      arch/arm/boot/dts/artpec6*
1583 F:      drivers/clk/axis
1584 F:      drivers/crypto/axis
1585 F:      drivers/mmc/host/usdhi6rol0.c
1586 F:      drivers/pinctrl/pinctrl-artpec*
1587 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1588
1589 ARM/ASPEED I2C DRIVER
1590 M:      Brendan Higgins <brendanhiggins@google.com>
1591 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1592 R:      Joel Stanley <joel@jms.id.au>
1593 L:      linux-i2c@vger.kernel.org
1594 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1595 S:      Maintained
1596 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1597 F:      drivers/i2c/busses/i2c-aspeed.c
1598 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1599 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1600
1601 ARM/ASPEED MACHINE SUPPORT
1602 M:      Joel Stanley <joel@jms.id.au>
1603 R:      Andrew Jeffery <andrew@aj.id.au>
1604 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1605 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1606 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1607 S:      Supported
1608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1609 F:      arch/arm/mach-aspeed/
1610 F:      arch/arm/boot/dts/aspeed-*
1611 N:      aspeed
1612
1613 ARM/BITMAIN ARCHITECTURE
1614 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1615 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1616 S:      Maintained
1617 F:      arch/arm64/boot/dts/bitmain/
1618 F:      drivers/clk/clk-bm1880.c
1619 F:      drivers/pinctrl/pinctrl-bm1880.c
1620 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1621 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1622 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1623
1624 ARM/CALXEDA HIGHBANK ARCHITECTURE
1625 M:      Rob Herring <robh@kernel.org>
1626 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1627 S:      Maintained
1628 F:      arch/arm/mach-highbank/
1629 F:      arch/arm/boot/dts/highbank.dts
1630 F:      arch/arm/boot/dts/ecx-*.dts*
1631
1632 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1633 M:      Krzysztof Halasa <khalasa@piap.pl>
1634 S:      Maintained
1635 F:      arch/arm/mach-cns3xxx/
1636
1637 ARM/CAVIUM THUNDER NETWORK DRIVER
1638 M:      Sunil Goutham <sgoutham@marvell.com>
1639 M:      Robert Richter <rrichter@marvell.com>
1640 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1641 S:      Supported
1642 F:      drivers/net/ethernet/cavium/thunder/
1643
1644 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1645 M:      Lukasz Majewski <lukma@denx.de>
1646 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1647 S:      Maintained
1648 F:      arch/arm/mach-ep93xx/ts72xx.c
1649
1650 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1651 M:      Alexander Shiyan <shc_work@mail.ru>
1652 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1653 S:      Odd Fixes
1654 N:      clps711x
1655
1656 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1657 M:      Lennert Buytenhek <kernel@wantstofly.org>
1658 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1659 S:      Maintained
1660
1661 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1662 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1663 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1664 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1665 S:      Maintained
1666 F:      arch/arm/mach-ep93xx/
1667 F:      arch/arm/mach-ep93xx/include/mach/
1668
1669 ARM/CLKDEV SUPPORT
1670 M:      Russell King <linux@armlinux.org.uk>
1671 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1672 S:      Maintained
1673 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1674 F:      drivers/clk/clkdev.c
1675
1676 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1677 M:      Mike Rapoport <mike@compulab.co.il>
1678 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1679 S:      Maintained
1680
1681 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1682 M:      Baruch Siach <baruch@tkos.co.il>
1683 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1684 S:      Maintained
1685 F:      arch/arm/boot/dts/cx92755*
1686 N:      digicolor
1687
1688 ARM/CONTEC MICRO9 MACHINE SUPPORT
1689 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1690 S:      Maintained
1691 F:      arch/arm/mach-ep93xx/micro9.c
1692
1693 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1694 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1695 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
1696 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1697 S:      Maintained
1698 F:      drivers/hwtracing/coresight/*
1699 F:      Documentation/trace/coresight/*
1700 F:      Documentation/devicetree/bindings/arm/coresight.txt
1701 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1702 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1703 F:      tools/perf/arch/arm/util/pmu.c
1704 F:      tools/perf/arch/arm/util/auxtrace.c
1705 F:      tools/perf/arch/arm/util/cs-etm.c
1706 F:      tools/perf/arch/arm/util/cs-etm.h
1707 F:      tools/perf/util/cs-etm.*
1708 F:      tools/perf/util/cs-etm-decoder/*
1709
1710 ARM/CORGI MACHINE SUPPORT
1711 M:      Richard Purdie <rpurdie@rpsys.net>
1712 S:      Maintained
1713
1714 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1715 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1716 M:      Linus Walleij <linus.walleij@linaro.org>
1717 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1718 T:      git git://github.com/ulli-kroll/linux.git
1719 S:      Maintained
1720 F:      Documentation/devicetree/bindings/arm/gemini.txt
1721 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1722 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1723 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1724 F:      arch/arm/mach-gemini/
1725 F:      drivers/net/ethernet/cortina/
1726 F:      drivers/pinctrl/pinctrl-gemini.c
1727 F:      drivers/rtc/rtc-ftrtc010.c
1728
1729 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1730 M:      Barry Song <baohua@kernel.org>
1731 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1733 S:      Maintained
1734 F:      arch/arm/boot/dts/prima2*
1735 F:      arch/arm/mach-prima2/
1736 F:      drivers/clk/sirf/
1737 F:      drivers/clocksource/timer-prima2.c
1738 F:      drivers/clocksource/timer-atlas7.c
1739 N:      [^a-z]sirf
1740 X:      drivers/gnss
1741
1742 ARM/CZ.NIC TURRIS MOX SUPPORT
1743 M:      Marek Behun <marek.behun@nic.cz>
1744 W:      http://mox.turris.cz
1745 S:      Maintained
1746 F:      Documentation/ABI/testing/debugfs-moxtet
1747 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1748 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1749 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1750 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1751 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1752 F:      include/linux/moxtet.h
1753 F:      drivers/bus/moxtet.c
1754 F:      drivers/firmware/turris-mox-rwtm.c
1755 F:      drivers/gpio/gpio-moxtet.c
1756
1757 ARM/EBSA110 MACHINE SUPPORT
1758 M:      Russell King <linux@armlinux.org.uk>
1759 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1760 W:      http://www.armlinux.org.uk/
1761 S:      Maintained
1762 F:      arch/arm/mach-ebsa110/
1763 F:      drivers/net/ethernet/amd/am79c961a.*
1764
1765 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1766 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1767 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1768 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1769 S:      Maintained
1770 N:      efm32
1771
1772 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1773 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1774 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1775 S:      Maintained
1776 F:      arch/arm/mach-pxa/ezx.c
1777
1778 ARM/FARADAY FA526 PORT
1779 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1780 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1781 S:      Maintained
1782 T:      git git://git.berlios.de/gemini-board
1783 F:      arch/arm/mm/*-fa*
1784
1785 ARM/FOOTBRIDGE ARCHITECTURE
1786 M:      Russell King <linux@armlinux.org.uk>
1787 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1788 W:      http://www.armlinux.org.uk/
1789 S:      Maintained
1790 F:      arch/arm/include/asm/hardware/dec21285.h
1791 F:      arch/arm/mach-footbridge/
1792
1793 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1794 M:      Shawn Guo <shawnguo@kernel.org>
1795 M:      Sascha Hauer <s.hauer@pengutronix.de>
1796 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1797 R:      Fabio Estevam <festevam@gmail.com>
1798 R:      NXP Linux Team <linux-imx@nxp.com>
1799 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1800 S:      Maintained
1801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1802 N:      imx
1803 N:      mxs
1804 X:      drivers/media/i2c/
1805
1806 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1807 M:      Shawn Guo <shawnguo@kernel.org>
1808 M:      Sascha Hauer <s.hauer@pengutronix.de>
1809 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1810 R:      Stefan Agner <stefan@agner.ch>
1811 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1812 S:      Maintained
1813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1814 F:      arch/arm/mach-imx/*vf610*
1815 F:      arch/arm/boot/dts/vf*
1816
1817 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1818 M:      Shawn Guo <shawnguo@kernel.org>
1819 M:      Li Yang <leoyang.li@nxp.com>
1820 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1821 S:      Maintained
1822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1823 F:      arch/arm/boot/dts/ls1021a*
1824 F:      arch/arm64/boot/dts/freescale/fsl-*
1825 F:      arch/arm64/boot/dts/freescale/qoriq-*
1826
1827 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1828 M:      Lennert Buytenhek <kernel@wantstofly.org>
1829 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1830 S:      Maintained
1831
1832 ARM/GUMSTIX MACHINE SUPPORT
1833 M:      Steve Sakoman <sakoman@gmail.com>
1834 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1835 S:      Maintained
1836
1837 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1838 M:      Philipp Zabel <philipp.zabel@gmail.com>
1839 M:      Paul Parsons <lost.distance@yahoo.com>
1840 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1841 S:      Maintained
1842 F:      arch/arm/mach-pxa/hx4700.c
1843 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1844 F:      sound/soc/pxa/hx4700.c
1845
1846 ARM/HISILICON SOC SUPPORT
1847 M:      Wei Xu <xuwei5@hisilicon.com>
1848 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1849 W:      http://www.hisilicon.com
1850 S:      Supported
1851 T:      git git://github.com/hisilicon/linux-hisi.git
1852 F:      arch/arm/mach-hisi/
1853 F:      arch/arm/boot/dts/hi3*
1854 F:      arch/arm/boot/dts/hip*
1855 F:      arch/arm/boot/dts/hisi*
1856 F:      arch/arm64/boot/dts/hisilicon/
1857
1858 ARM/HP JORNADA 7XX MACHINE SUPPORT
1859 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1860 W:      www.jlime.com
1861 S:      Maintained
1862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1863 F:      arch/arm/mach-sa1100/jornada720.c
1864 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1865
1866 ARM/IGEP MACHINE SUPPORT
1867 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1868 M:      Javier Martinez Canillas <javier@dowhile0.org>
1869 L:      linux-omap@vger.kernel.org
1870 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1871 S:      Maintained
1872 F:      arch/arm/boot/dts/omap3-igep*
1873
1874 ARM/INCOME PXA270 SUPPORT
1875 M:      Marek Vasut <marek.vasut@gmail.com>
1876 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1877 S:      Maintained
1878 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1879
1880 ARM/INTEL IOP32X ARM ARCHITECTURE
1881 M:      Lennert Buytenhek <kernel@wantstofly.org>
1882 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1883 S:      Maintained
1884
1885 ARM/INTEL IQ81342EX 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/INTEL IXDP2850 MACHINE SUPPORT
1891 M:      Lennert Buytenhek <kernel@wantstofly.org>
1892 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1893 S:      Maintained
1894
1895 ARM/INTEL IXP4XX ARM ARCHITECTURE
1896 M:      Linus Walleij <linusw@kernel.org>
1897 M:      Imre Kaloz <kaloz@openwrt.org>
1898 M:      Krzysztof Halasa <khalasa@piap.pl>
1899 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1900 S:      Maintained
1901 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1902 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1903 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1904 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1905 F:      arch/arm/mach-ixp4xx/
1906 F:      drivers/clocksource/timer-ixp4xx.c
1907 F:      drivers/gpio/gpio-ixp4xx.c
1908 F:      drivers/irqchip/irq-ixp4xx.c
1909 F:      include/linux/irqchip/irq-ixp4xx.h
1910 F:      include/linux/platform_data/timer-ixp4xx.h
1911
1912 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1913 M:      Jonathan Cameron <jic23@cam.ac.uk>
1914 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1915 S:      Maintained
1916 F:      arch/arm/mach-pxa/stargate2.c
1917 F:      drivers/pcmcia/pxa2xx_stargate2.c
1918
1919 ARM/INTEL XSC3 (MANZANO) ARM CORE
1920 M:      Lennert Buytenhek <kernel@wantstofly.org>
1921 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1922 S:      Maintained
1923
1924 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1925 M:      Lennert Buytenhek <kernel@wantstofly.org>
1926 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1927 S:      Maintained
1928
1929 ARM/LG1K ARCHITECTURE
1930 M:      Chanho Min <chanho.min@lge.com>
1931 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1932 S:      Maintained
1933 F:      arch/arm64/boot/dts/lg/
1934
1935 ARM/LOGICPD PXA270 MACHINE SUPPORT
1936 M:      Lennert Buytenhek <kernel@wantstofly.org>
1937 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1938 S:      Maintained
1939
1940 ARM/LPC18XX ARCHITECTURE
1941 M:      Vladimir Zapolskiy <vz@mleia.com>
1942 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1943 S:      Maintained
1944 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1945 F:      arch/arm/boot/dts/lpc43*
1946 F:      drivers/i2c/busses/i2c-lpc2k.c
1947 F:      drivers/memory/pl172.c
1948 F:      drivers/mtd/spi-nor/nxp-spifi.c
1949 F:      drivers/rtc/rtc-lpc24xx.c
1950 N:      lpc18xx
1951
1952 ARM/LPC32XX SOC SUPPORT
1953 M:      Vladimir Zapolskiy <vz@mleia.com>
1954 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
1955 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1956 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1957 S:      Maintained
1958 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
1959 F:      arch/arm/boot/dts/lpc32*
1960 F:      arch/arm/mach-lpc32xx/
1961 F:      drivers/i2c/busses/i2c-pnx.c
1962 F:      drivers/net/ethernet/nxp/lpc_eth.c
1963 F:      drivers/usb/host/ohci-nxp.c
1964 F:      drivers/watchdog/pnx4008_wdt.c
1965 N:      lpc32xx
1966
1967 ARM/MAGICIAN MACHINE SUPPORT
1968 M:      Philipp Zabel <philipp.zabel@gmail.com>
1969 S:      Maintained
1970
1971 ARM/Marvell Dove/MV78xx0/Orion SOC support
1972 M:      Jason Cooper <jason@lakedaemon.net>
1973 M:      Andrew Lunn <andrew@lunn.ch>
1974 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1975 M:      Gregory Clement <gregory.clement@bootlin.com>
1976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1977 S:      Maintained
1978 F:      Documentation/devicetree/bindings/soc/dove/
1979 F:      arch/arm/mach-dove/
1980 F:      arch/arm/mach-mv78xx0/
1981 F:      arch/arm/mach-orion5x/
1982 F:      arch/arm/plat-orion/
1983 F:      arch/arm/boot/dts/dove*
1984 F:      arch/arm/boot/dts/orion5x*
1985 T:      git git://git.infradead.org/linux-mvebu.git
1986
1987 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
1988 M:      Jason Cooper <jason@lakedaemon.net>
1989 M:      Andrew Lunn <andrew@lunn.ch>
1990 M:      Gregory Clement <gregory.clement@bootlin.com>
1991 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1992 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1993 S:      Maintained
1994 F:      arch/arm/boot/dts/armada*
1995 F:      arch/arm/boot/dts/kirkwood*
1996 F:      arch/arm/configs/mvebu_*_defconfig
1997 F:      arch/arm/mach-mvebu/
1998 F:      arch/arm64/boot/dts/marvell/armada*
1999 F:      arch/arm64/boot/dts/marvell/cn913*
2000 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2001 F:      drivers/cpufreq/armada-8k-cpufreq.c
2002 F:      drivers/cpufreq/mvebu-cpufreq.c
2003 F:      drivers/irqchip/irq-armada-370-xp.c
2004 F:      drivers/irqchip/irq-mvebu-*
2005 F:      drivers/pinctrl/mvebu/
2006 F:      drivers/rtc/rtc-armada38x.c
2007 T:      git git://git.infradead.org/linux-mvebu.git
2008
2009 ARM/Mediatek RTC DRIVER
2010 M:      Eddie Huang <eddie.huang@mediatek.com>
2011 M:      Sean Wang <sean.wang@mediatek.com>
2012 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2013 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2014 S:      Maintained
2015 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2016 F:      drivers/rtc/rtc-mt6397.c
2017 F:      drivers/rtc/rtc-mt7622.c
2018
2019 ARM/Mediatek SoC support
2020 M:      Matthias Brugger <matthias.bgg@gmail.com>
2021 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2022 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2023 W:      https://mtk.bcnfs.org/
2024 C:      irc://chat.freenode.net/linux-mediatek
2025 S:      Maintained
2026 F:      arch/arm/boot/dts/mt6*
2027 F:      arch/arm/boot/dts/mt7*
2028 F:      arch/arm/boot/dts/mt8*
2029 F:      arch/arm/mach-mediatek/
2030 F:      arch/arm64/boot/dts/mediatek/
2031 F:      drivers/soc/mediatek/
2032 N:      mtk
2033 N:      mt[678]
2034 K:      mediatek
2035
2036 ARM/Mediatek USB3 PHY DRIVER
2037 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2038 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2039 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2040 S:      Maintained
2041 F:      drivers/phy/mediatek/
2042 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
2043
2044 ARM/Microchip (AT91) SoC support
2045 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2046 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2047 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2048 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2049 W:      http://www.linux4sam.org
2050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2051 S:      Supported
2052 N:      at91
2053 N:      atmel
2054 F:      arch/arm/mach-at91/
2055 F:      include/soc/at91/
2056 F:      arch/arm/boot/dts/at91*.dts
2057 F:      arch/arm/boot/dts/at91*.dtsi
2058 F:      arch/arm/boot/dts/sama*.dts
2059 F:      arch/arm/boot/dts/sama*.dtsi
2060 F:      arch/arm/include/debug/at91.S
2061 F:      drivers/memory/atmel*
2062 F:      drivers/watchdog/sama5d4_wdt.c
2063 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2064 X:      drivers/net/wireless/atmel/
2065
2066 ARM/MIOA701 MACHINE SUPPORT
2067 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2068 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2069 F:      arch/arm/mach-pxa/mioa701.c
2070 S:      Maintained
2071
2072 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2073 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2074 S:      Maintained
2075
2076 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2077 M:      Linus Walleij <linus.walleij@linaro.org>
2078 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2079 S:      Maintained
2080 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2081 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2082 F:      arch/arm/mach-nomadik/
2083 F:      arch/arm/mach-u300/
2084 F:      arch/arm/mach-ux500/
2085 F:      drivers/soc/ux500/
2086 F:      arch/arm/boot/dts/ste-*
2087 F:      drivers/clk/clk-nomadik.c
2088 F:      drivers/clk/clk-u300.c
2089 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2090 F:      drivers/clocksource/timer-u300.c
2091 F:      drivers/dma/coh901318*
2092 F:      drivers/dma/ste_dma40*
2093 F:      drivers/hwspinlock/u8500_hsem.c
2094 F:      drivers/i2c/busses/i2c-nomadik.c
2095 F:      drivers/i2c/busses/i2c-stu300.c
2096 F:      drivers/iio/adc/ab8500-gpadc.c
2097 F:      drivers/mfd/ab3100*
2098 F:      drivers/mfd/ab8500*
2099 F:      drivers/mfd/abx500*
2100 F:      drivers/mfd/dbx500*
2101 F:      drivers/mfd/db8500*
2102 F:      drivers/pinctrl/nomadik/
2103 F:      drivers/pinctrl/pinctrl-coh901*
2104 F:      drivers/pinctrl/pinctrl-u300.c
2105 F:      drivers/rtc/rtc-ab3100.c
2106 F:      drivers/rtc/rtc-ab8500.c
2107 F:      drivers/rtc/rtc-coh901331.c
2108 F:      drivers/rtc/rtc-pl031.c
2109 F:      drivers/watchdog/coh901327_wdt.c
2110 F:      Documentation/devicetree/bindings/arm/ste-*
2111 F:      Documentation/devicetree/bindings/arm/ux500/
2112 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2114
2115 ARM/NUVOTON NPCM ARCHITECTURE
2116 M:      Avi Fishman <avifishman70@gmail.com>
2117 M:      Tomer Maimon <tmaimon77@gmail.com>
2118 M:      Tali Perry <tali.perry1@gmail.com>
2119 R:      Patrick Venture <venture@google.com>
2120 R:      Nancy Yuen <yuenn@google.com>
2121 R:      Benjamin Fair <benjaminfair@google.com>
2122 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2123 S:      Supported
2124 F:      arch/arm/mach-npcm/
2125 F:      arch/arm/boot/dts/nuvoton-npcm*
2126 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2127 F:      drivers/*/*npcm*
2128 F:      Documentation/devicetree/bindings/*/*npcm*
2129 F:      Documentation/devicetree/bindings/*/*/*npcm*
2130
2131 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2132 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2133 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2134 S:      Orphan
2135 F:      arch/arm/mach-s3c24xx/mach-gta02.c
2136 F:      arch/arm/mach-s3c24xx/gta02.h
2137
2138 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2139 M:      Alexander Clouter <alex@digriz.org.uk>
2140 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2141 W:      http://www.digriz.org.uk/ts78xx/kernel
2142 S:      Maintained
2143 F:      arch/arm/mach-orion5x/ts78xx-*
2144
2145 ARM/OXNAS platform support
2146 M:      Neil Armstrong <narmstrong@baylibre.com>
2147 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2148 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2149 S:      Maintained
2150 F:      arch/arm/mach-oxnas/
2151 F:      arch/arm/boot/dts/ox8*.dts*
2152 N:      oxnas
2153
2154 ARM/PALM TREO SUPPORT
2155 M:      Tomas Cech <sleep_walker@suse.com>
2156 L:      linux-arm-kernel@lists.infradead.org
2157 W:      http://hackndev.com
2158 S:      Maintained
2159 F:      arch/arm/mach-pxa/palmtreo.*
2160
2161 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2162 M:      Marek Vasut <marek.vasut@gmail.com>
2163 L:      linux-arm-kernel@lists.infradead.org
2164 W:      http://hackndev.com
2165 S:      Maintained
2166 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2167 F:      arch/arm/mach-pxa/palmtx.c
2168 F:      arch/arm/mach-pxa/palmt5.*
2169 F:      arch/arm/mach-pxa/include/mach/palmld.h
2170 F:      arch/arm/mach-pxa/palmld.c
2171 F:      arch/arm/mach-pxa/palmte2.*
2172 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2173 F:      arch/arm/mach-pxa/palmtc.c
2174
2175 ARM/PALMZ72 SUPPORT
2176 M:      Sergey Lapin <slapin@ossfans.org>
2177 L:      linux-arm-kernel@lists.infradead.org
2178 W:      http://hackndev.com
2179 S:      Maintained
2180 F:      arch/arm/mach-pxa/palmz72.*
2181
2182 ARM/PLEB SUPPORT
2183 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2184 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2185 S:      Maintained
2186
2187 ARM/PT DIGITAL BOARD PORT
2188 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2189 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2190 W:      http://www.armlinux.org.uk/
2191 S:      Maintained
2192
2193 ARM/QUALCOMM SUPPORT
2194 M:      Andy Gross <agross@kernel.org>
2195 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2196 L:      linux-arm-msm@vger.kernel.org
2197 S:      Maintained
2198 F:      Documentation/devicetree/bindings/soc/qcom/
2199 F:      Documentation/devicetree/bindings/*/qcom*
2200 F:      arch/arm/boot/dts/qcom-*.dts
2201 F:      arch/arm/boot/dts/qcom-*.dtsi
2202 F:      arch/arm/mach-qcom/
2203 F:      arch/arm64/boot/dts/qcom/
2204 F:      drivers/*/qcom/
2205 F:      drivers/*/qcom*
2206 F:      drivers/*/*/qcom/
2207 F:      drivers/*/*/qcom*
2208 F:      drivers/*/pm8???-*
2209 F:      drivers/bluetooth/btqcomsmd.c
2210 F:      drivers/clocksource/timer-qcom.c
2211 F:      drivers/extcon/extcon-qcom*
2212 F:      drivers/iommu/msm*
2213 F:      drivers/i2c/busses/i2c-qup.c
2214 F:      drivers/i2c/busses/i2c-qcom-geni.c
2215 F:      drivers/mfd/ssbi.c
2216 F:      drivers/mmc/host/mmci_qcom*
2217 F:      drivers/mmc/host/sdhci-msm.c
2218 F:      drivers/pci/controller/dwc/pcie-qcom.c
2219 F:      drivers/phy/qualcomm/
2220 F:      drivers/power/*/msm*
2221 F:      drivers/reset/reset-qcom-*
2222 F:      drivers/scsi/ufs/ufs-qcom.*
2223 F:      drivers/spi/spi-qup.c
2224 F:      drivers/spi/spi-geni-qcom.c
2225 F:      drivers/spi/spi-qcom-qspi.c
2226 F:      drivers/tty/serial/msm_serial.c
2227 F:      drivers/usb/dwc3/dwc3-qcom.c
2228 F:      include/dt-bindings/*/qcom*
2229 F:      include/linux/*/qcom*
2230 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2231
2232 ARM/RADISYS ENP2611 MACHINE SUPPORT
2233 M:      Lennert Buytenhek <kernel@wantstofly.org>
2234 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2235 S:      Maintained
2236
2237 ARM/RDA MICRO ARCHITECTURE
2238 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2239 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2240 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2241 S:      Maintained
2242 F:      arch/arm/boot/dts/rda8810pl-*
2243 F:      drivers/clocksource/timer-rda.c
2244 F:      drivers/gpio/gpio-rda.c
2245 F:      drivers/irqchip/irq-rda-intc.c
2246 F:      drivers/tty/serial/rda-uart.c
2247 F:      Documentation/devicetree/bindings/arm/rda.yaml
2248 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2249 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2250 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2251 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2252
2253 ARM/REALTEK ARCHITECTURE
2254 M:      Andreas Färber <afaerber@suse.de>
2255 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2256 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2257 S:      Maintained
2258 F:      arch/arm64/boot/dts/realtek/
2259 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2260
2261 ARM/RENESAS ARM64 ARCHITECTURE
2262 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2263 M:      Magnus Damm <magnus.damm@gmail.com>
2264 L:      linux-renesas-soc@vger.kernel.org
2265 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2267 S:      Supported
2268 F:      arch/arm64/boot/dts/renesas/
2269 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2270 F:      drivers/soc/renesas/
2271 F:      include/linux/soc/renesas/
2272
2273 ARM/RISCPC ARCHITECTURE
2274 M:      Russell King <linux@armlinux.org.uk>
2275 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2276 W:      http://www.armlinux.org.uk/
2277 S:      Maintained
2278 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2279 F:      arch/arm/include/asm/hardware/ioc.h
2280 F:      arch/arm/include/asm/hardware/iomd.h
2281 F:      arch/arm/include/asm/hardware/memc.h
2282 F:      arch/arm/mach-rpc/
2283 F:      drivers/net/ethernet/8390/etherh.c
2284 F:      drivers/net/ethernet/i825xx/ether1*
2285 F:      drivers/net/ethernet/seeq/ether3*
2286 F:      drivers/scsi/arm/
2287
2288 ARM/Rockchip SoC support
2289 M:      Heiko Stuebner <heiko@sntech.de>
2290 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2291 L:      linux-rockchip@lists.infradead.org
2292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2293 S:      Maintained
2294 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.txt
2295 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2296 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2297 F:      arch/arm/boot/dts/rk3*
2298 F:      arch/arm/boot/dts/rv1108*
2299 F:      arch/arm/mach-rockchip/
2300 F:      drivers/clk/rockchip/
2301 F:      drivers/i2c/busses/i2c-rk3x.c
2302 F:      drivers/*/*rockchip*
2303 F:      drivers/*/*/*rockchip*
2304 F:      sound/soc/rockchip/
2305 N:      rockchip
2306
2307 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2308 M:      Kukjin Kim <kgene@kernel.org>
2309 M:      Krzysztof Kozlowski <krzk@kernel.org>
2310 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2311 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2312 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2313 S:      Maintained
2314 F:      arch/arm/boot/dts/s3c*
2315 F:      arch/arm/boot/dts/s5p*
2316 F:      arch/arm/boot/dts/exynos*
2317 F:      arch/arm64/boot/dts/exynos/
2318 F:      arch/arm/plat-samsung/
2319 F:      arch/arm/mach-s3c24*/
2320 F:      arch/arm/mach-s3c64xx/
2321 F:      arch/arm/mach-s5p*/
2322 F:      arch/arm/mach-exynos*/
2323 F:      drivers/*/*s3c24*
2324 F:      drivers/*/*/*s3c24*
2325 F:      drivers/*/*s3c64xx*
2326 F:      drivers/*/*s5pv210*
2327 F:      drivers/memory/samsung/
2328 F:      drivers/soc/samsung/
2329 F:      drivers/tty/serial/samsung*
2330 F:      include/linux/soc/samsung/
2331 F:      Documentation/arm/samsung/
2332 F:      Documentation/devicetree/bindings/arm/samsung/
2333 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2334 N:      exynos
2335
2336 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2337 M:      Kyungmin Park <kyungmin.park@samsung.com>
2338 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2339 S:      Maintained
2340 F:      arch/arm/mach-s5pv210/
2341
2342 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2343 M:      Kyungmin Park <kyungmin.park@samsung.com>
2344 M:      Kamil Debski <kamil@wypas.org>
2345 M:      Andrzej Hajda <a.hajda@samsung.com>
2346 L:      linux-arm-kernel@lists.infradead.org
2347 L:      linux-media@vger.kernel.org
2348 S:      Maintained
2349 F:      drivers/media/platform/s5p-g2d/
2350
2351 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2352 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2353 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2354 L:      linux-media@vger.kernel.org
2355 S:      Maintained
2356 F:      drivers/media/platform/s5p-cec/
2357 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2358
2359 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2360 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2361 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2362 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2363 L:      linux-arm-kernel@lists.infradead.org
2364 L:      linux-media@vger.kernel.org
2365 S:      Maintained
2366 F:      drivers/media/platform/s5p-jpeg/
2367
2368 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2369 M:      Kyungmin Park <kyungmin.park@samsung.com>
2370 M:      Kamil Debski <kamil@wypas.org>
2371 M:      Jeongtae Park <jtp.park@samsung.com>
2372 M:      Andrzej Hajda <a.hajda@samsung.com>
2373 L:      linux-arm-kernel@lists.infradead.org
2374 L:      linux-media@vger.kernel.org
2375 S:      Maintained
2376 F:      drivers/media/platform/s5p-mfc/
2377
2378 ARM/SHMOBILE ARM ARCHITECTURE
2379 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2380 M:      Magnus Damm <magnus.damm@gmail.com>
2381 L:      linux-renesas-soc@vger.kernel.org
2382 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2384 S:      Supported
2385 F:      arch/arm/boot/dts/emev2*
2386 F:      arch/arm/boot/dts/gr-peach*
2387 F:      arch/arm/boot/dts/iwg20d-q7*
2388 F:      arch/arm/boot/dts/r7s*
2389 F:      arch/arm/boot/dts/r8a*
2390 F:      arch/arm/boot/dts/r9a*
2391 F:      arch/arm/boot/dts/sh*
2392 F:      arch/arm/configs/shmobile_defconfig
2393 F:      arch/arm/include/debug/renesas-scif.S
2394 F:      arch/arm/mach-shmobile/
2395 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2396 F:      drivers/soc/renesas/
2397 F:      include/linux/soc/renesas/
2398
2399 ARM/SOCFPGA ARCHITECTURE
2400 M:      Dinh Nguyen <dinguyen@kernel.org>
2401 S:      Maintained
2402 F:      arch/arm/mach-socfpga/
2403 F:      arch/arm/boot/dts/socfpga*
2404 F:      arch/arm/configs/socfpga_defconfig
2405 F:      arch/arm64/boot/dts/altera/
2406 F:      arch/arm64/boot/dts/intel/
2407 W:      http://www.rocketboards.org
2408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2409
2410 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2411 M:      Dinh Nguyen <dinguyen@kernel.org>
2412 S:      Maintained
2413 F:      drivers/clk/socfpga/
2414
2415 ARM/SOCFPGA EDAC SUPPORT
2416 M:      Thor Thayer <thor.thayer@linux.intel.com>
2417 S:      Maintained
2418 F:      drivers/edac/altera_edac.
2419
2420 ARM/SPREADTRUM SoC SUPPORT
2421 M:      Orson Zhai <orsonzhai@gmail.com>
2422 M:      Baolin Wang <baolin.wang7@gmail.com>
2423 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2424 S:      Maintained
2425 F:      arch/arm64/boot/dts/sprd
2426 N:      sprd
2427 N:      sc27xx
2428 N:      sc2731
2429
2430 ARM/STI ARCHITECTURE
2431 M:      Patrice Chotard <patrice.chotard@st.com>
2432 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2433 W:      http://www.stlinux.com
2434 S:      Maintained
2435 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2436 F:      arch/arm/mach-sti/
2437 F:      arch/arm/boot/dts/sti*
2438 F:      drivers/char/hw_random/st-rng.c
2439 F:      drivers/clocksource/arm_global_timer.c
2440 F:      drivers/clocksource/clksrc_st_lpc.c
2441 F:      drivers/cpufreq/sti-cpufreq.c
2442 F:      drivers/dma/st_fdma*
2443 F:      drivers/i2c/busses/i2c-st.c
2444 F:      drivers/media/rc/st_rc.c
2445 F:      drivers/media/platform/sti/c8sectpfe/
2446 F:      drivers/mmc/host/sdhci-st.c
2447 F:      drivers/phy/st/phy-miphy28lp.c
2448 F:      drivers/phy/st/phy-stih407-usb.c
2449 F:      drivers/pinctrl/pinctrl-st.c
2450 F:      drivers/remoteproc/st_remoteproc.c
2451 F:      drivers/remoteproc/st_slim_rproc.c
2452 F:      drivers/reset/sti/
2453 F:      drivers/rtc/rtc-st-lpc.c
2454 F:      drivers/tty/serial/st-asc.c
2455 F:      drivers/usb/dwc3/dwc3-st.c
2456 F:      drivers/usb/host/ehci-st.c
2457 F:      drivers/usb/host/ohci-st.c
2458 F:      drivers/watchdog/st_lpc_wdt.c
2459 F:      drivers/ata/ahci_st.c
2460 F:      include/linux/remoteproc/st_slim_rproc.h
2461
2462 ARM/STM32 ARCHITECTURE
2463 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2464 M:      Alexandre Torgue <alexandre.torgue@st.com>
2465 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2466 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2467 S:      Maintained
2468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2469 N:      stm32
2470 N:      stm
2471 F:      arch/arm/boot/dts/stm32*
2472 F:      arch/arm/mach-stm32/
2473 F:      drivers/clocksource/armv7m_systick.c
2474
2475 ARM/Synaptics SoC support
2476 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2477 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2478 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2479 S:      Maintained
2480 F:      arch/arm/mach-berlin/
2481 F:      arch/arm/boot/dts/berlin*
2482 F:      arch/arm64/boot/dts/synaptics/
2483
2484 ARM/TANGO ARCHITECTURE
2485 M:      Marc Gonzalez <marc.w.gonzalez@free.fr>
2486 M:      Mans Rullgard <mans@mansr.com>
2487 L:      linux-arm-kernel@lists.infradead.org
2488 S:      Odd Fixes
2489 N:      tango
2490
2491 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2492 M:      Lennert Buytenhek <kernel@wantstofly.org>
2493 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2494 S:      Maintained
2495
2496 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2497 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2498 L:      linux-tegra@vger.kernel.org
2499 L:      linux-media@vger.kernel.org
2500 S:      Maintained
2501 F:      drivers/media/platform/tegra-cec/
2502 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2503
2504 ARM/TETON BGA MACHINE SUPPORT
2505 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2506 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2507 S:      Maintained
2508
2509 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2510 M:      Santosh Shilimkar <ssantosh@kernel.org>
2511 L:      linux-kernel@vger.kernel.org
2512 S:      Maintained
2513 F:      drivers/memory/*emif*
2514
2515 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2516 M:      Tero Kristo <t-kristo@ti.com>
2517 M:      Nishanth Menon <nm@ti.com>
2518 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2519 S:      Supported
2520 F:      Documentation/devicetree/bindings/arm/ti/k3.txt
2521 F:      arch/arm64/boot/dts/ti/Makefile
2522 F:      arch/arm64/boot/dts/ti/k3-*
2523 F:      include/dt-bindings/pinctrl/k3.h
2524
2525 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2526 M:      Santosh Shilimkar <ssantosh@kernel.org>
2527 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2528 S:      Maintained
2529 F:      arch/arm/mach-keystone/
2530 F:      arch/arm/boot/dts/keystone-*
2531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2532
2533 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2534 M:      Santosh Shilimkar <ssantosh@kernel.org>
2535 L:      linux-kernel@vger.kernel.org
2536 S:      Maintained
2537 F:      drivers/clk/keystone/
2538
2539 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2540 M:      Santosh Shilimkar <ssantosh@kernel.org>
2541 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2542 L:      linux-kernel@vger.kernel.org
2543 S:      Maintained
2544 F:      drivers/clocksource/timer-keystone.c
2545
2546 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2547 M:      Santosh Shilimkar <ssantosh@kernel.org>
2548 L:      linux-kernel@vger.kernel.org
2549 S:      Maintained
2550 F:      drivers/power/reset/keystone-reset.c
2551
2552 ARM/THECUS N2100 MACHINE SUPPORT
2553 M:      Lennert Buytenhek <kernel@wantstofly.org>
2554 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2555 S:      Maintained
2556
2557 ARM/TOSA MACHINE SUPPORT
2558 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2559 M:      Dirk Opfer <dirk@opfer-online.de>
2560 S:      Maintained
2561
2562 ARM/UNIPHIER ARCHITECTURE
2563 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
2564 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2565 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2566 S:      Maintained
2567 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.txt
2568 F:      Documentation/devicetree/bindings/gpio/gpio-uniphier.txt
2569 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.txt
2570 F:      arch/arm/boot/dts/uniphier*
2571 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2572 F:      arch/arm/mach-uniphier/
2573 F:      arch/arm/mm/cache-uniphier.c
2574 F:      arch/arm64/boot/dts/socionext/uniphier*
2575 F:      drivers/bus/uniphier-system-bus.c
2576 F:      drivers/clk/uniphier/
2577 F:      drivers/dma/uniphier-mdmac.c
2578 F:      drivers/gpio/gpio-uniphier.c
2579 F:      drivers/i2c/busses/i2c-uniphier*
2580 F:      drivers/irqchip/irq-uniphier-aidet.c
2581 F:      drivers/mmc/host/uniphier-sd.c
2582 F:      drivers/pinctrl/uniphier/
2583 F:      drivers/reset/reset-uniphier.c
2584 F:      drivers/tty/serial/8250/8250_uniphier.c
2585 N:      uniphier
2586
2587 Ux500 CLOCK DRIVERS
2588 M:      Ulf Hansson <ulf.hansson@linaro.org>
2589 L:      linux-clk@vger.kernel.org
2590 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2591 S:      Maintained
2592 F:      drivers/clk/ux500/
2593
2594 ARM/VERSATILE EXPRESS PLATFORM
2595 M:      Liviu Dudau <liviu.dudau@arm.com>
2596 M:      Sudeep Holla <sudeep.holla@arm.com>
2597 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2598 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2599 S:      Maintained
2600 F:      arch/arm/boot/dts/vexpress*
2601 F:      arch/arm64/boot/dts/arm/
2602 F:      arch/arm/mach-vexpress/
2603 F:      */*/vexpress*
2604 F:      */*/*/vexpress*
2605 F:      drivers/clk/versatile/clk-vexpress-osc.c
2606 F:      drivers/clocksource/timer-versatile.c
2607 N:      mps2
2608
2609 ARM/VFP SUPPORT
2610 M:      Russell King <linux@armlinux.org.uk>
2611 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2612 W:      http://www.armlinux.org.uk/
2613 S:      Maintained
2614 F:      arch/arm/vfp/
2615
2616 ARM/VOIPAC PXA270 SUPPORT
2617 M:      Marek Vasut <marek.vasut@gmail.com>
2618 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2619 S:      Maintained
2620 F:      arch/arm/mach-pxa/vpac270.c
2621 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2622
2623 ARM/VT8500 ARM ARCHITECTURE
2624 M:      Tony Prisk <linux@prisktech.co.nz>
2625 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2626 S:      Maintained
2627 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2628 F:      arch/arm/mach-vt8500/
2629 F:      drivers/clocksource/timer-vt8500.c
2630 F:      drivers/i2c/busses/i2c-wmt.c
2631 F:      drivers/mmc/host/wmt-sdmmc.c
2632 F:      drivers/pwm/pwm-vt8500.c
2633 F:      drivers/rtc/rtc-vt8500.c
2634 F:      drivers/tty/serial/vt8500_serial.c
2635 F:      drivers/usb/host/ehci-platform.c
2636 F:      drivers/usb/host/uhci-platform.c
2637 F:      drivers/video/fbdev/vt8500lcdfb.*
2638 F:      drivers/video/fbdev/wm8505fb*
2639 F:      drivers/video/fbdev/wmt_ge_rops.*
2640
2641 ARM/ZIPIT Z2 SUPPORT
2642 M:      Marek Vasut <marek.vasut@gmail.com>
2643 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2644 S:      Maintained
2645 F:      arch/arm/mach-pxa/z2.c
2646 F:      arch/arm/mach-pxa/include/mach/z2.h
2647
2648 ARM/ZTE ARCHITECTURE
2649 M:      Jun Nie <jun.nie@linaro.org>
2650 M:      Shawn Guo <shawnguo@kernel.org>
2651 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2652 S:      Maintained
2653 F:      arch/arm/boot/dts/zx2967*
2654 F:      arch/arm/mach-zx/
2655 F:      arch/arm64/boot/dts/zte/
2656 F:      drivers/clk/zte/
2657 F:      drivers/dma/zx_dma.c
2658 F:      drivers/gpio/gpio-zx.c
2659 F:      drivers/i2c/busses/i2c-zx2967.c
2660 F:      drivers/mmc/host/dw_mmc-zx.*
2661 F:      drivers/pinctrl/zte/
2662 F:      drivers/soc/zte/
2663 F:      drivers/thermal/zx2967_thermal.c
2664 F:      drivers/watchdog/zx2967_wdt.c
2665 F:      Documentation/devicetree/bindings/arm/zte.yaml
2666 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2667 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2668 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2669 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2670 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2671 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2672 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2673 F:      Documentation/devicetree/bindings/soc/zte/
2674 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2675 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2676 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2677 F:      include/dt-bindings/clock/zx2967*.h
2678 F:      include/dt-bindings/soc/zte,*.h
2679 F:      sound/soc/codecs/zx_aud96p22.c
2680 F:      sound/soc/zte/
2681
2682 ARM/ZYNQ ARCHITECTURE
2683 M:      Michal Simek <michal.simek@xilinx.com>
2684 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2685 W:      http://wiki.xilinx.com
2686 T:      git https://github.com/Xilinx/linux-xlnx.git
2687 S:      Supported
2688 F:      arch/arm/mach-zynq/
2689 F:      drivers/cpuidle/cpuidle-zynq.c
2690 F:      drivers/block/xsysace.c
2691 N:      zynq
2692 N:      xilinx
2693 F:      Documentation/devicetree/bindings/i2c/i2c-cadence.txt
2694 F:      Documentation/devicetree/bindings/i2c/i2c-xiic.txt
2695 F:      drivers/clocksource/timer-cadence-ttc.c
2696 F:      drivers/i2c/busses/i2c-cadence.c
2697 F:      drivers/mmc/host/sdhci-of-arasan.c
2698 F:      drivers/edac/synopsys_edac.c
2699 F:      drivers/i2c/busses/i2c-xiic.c
2700
2701 ARM64 PORT (AARCH64 ARCHITECTURE)
2702 M:      Catalin Marinas <catalin.marinas@arm.com>
2703 M:      Will Deacon <will@kernel.org>
2704 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2706 S:      Maintained
2707 F:      arch/arm64/
2708 X:      arch/arm64/boot/dts/
2709 F:      Documentation/arm64/
2710 F:      tools/testing/selftests/arm64/
2711
2712 AS3645A LED FLASH CONTROLLER DRIVER
2713 M:      Sakari Ailus <sakari.ailus@iki.fi>
2714 L:      linux-leds@vger.kernel.org
2715 S:      Maintained
2716 F:      drivers/leds/leds-as3645a.c
2717
2718 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2719 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2720 L:      linux-media@vger.kernel.org
2721 T:      git git://linuxtv.org/media_tree.git
2722 S:      Maintained
2723 F:      drivers/media/i2c/ak7375.c
2724 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2725
2726 ASAHI KASEI AK8974 DRIVER
2727 M:      Linus Walleij <linus.walleij@linaro.org>
2728 L:      linux-iio@vger.kernel.org
2729 W:      http://www.akm.com/
2730 S:      Supported
2731 F:      drivers/iio/magnetometer/ak8974.c
2732
2733 ASC7621 HARDWARE MONITOR DRIVER
2734 M:      George Joseph <george.joseph@fairview5.com>
2735 L:      linux-hwmon@vger.kernel.org
2736 S:      Maintained
2737 F:      Documentation/hwmon/asc7621.rst
2738 F:      drivers/hwmon/asc7621.c
2739
2740 ASPEED PINCTRL DRIVERS
2741 M:      Andrew Jeffery <andrew@aj.id.au>
2742 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2743 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2744 L:      linux-gpio@vger.kernel.org
2745 S:      Maintained
2746 F:      drivers/pinctrl/aspeed/
2747 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2748
2749 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2750 M:      Eddie James <eajames@linux.ibm.com>
2751 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2752 S:      Maintained
2753 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2754 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2755 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2756
2757 ASPEED VIDEO ENGINE DRIVER
2758 M:      Eddie James <eajames@linux.ibm.com>
2759 L:      linux-media@vger.kernel.org
2760 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2761 S:      Maintained
2762 F:      drivers/media/platform/aspeed-video.c
2763 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2764
2765 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2766 M:      Corentin Chary <corentin.chary@gmail.com>
2767 L:      acpi4asus-user@lists.sourceforge.net
2768 L:      platform-driver-x86@vger.kernel.org
2769 S:      Maintained
2770 W:      http://acpi4asus.sf.net
2771 F:      drivers/platform/x86/asus*.c
2772 F:      drivers/platform/x86/eeepc*.c
2773
2774 ASUS WIRELESS RADIO CONTROL DRIVER
2775 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2776 L:      platform-driver-x86@vger.kernel.org
2777 S:      Maintained
2778 F:      drivers/platform/x86/asus-wireless.c
2779
2780 ASYMMETRIC KEYS
2781 M:      David Howells <dhowells@redhat.com>
2782 L:      keyrings@vger.kernel.org
2783 S:      Maintained
2784 F:      Documentation/crypto/asymmetric-keys.txt
2785 F:      include/linux/verification.h
2786 F:      include/crypto/public_key.h
2787 F:      include/crypto/pkcs7.h
2788 F:      crypto/asymmetric_keys/
2789
2790 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2791 R:      Dan Williams <dan.j.williams@intel.com>
2792 W:      http://sourceforge.net/projects/xscaleiop
2793 S:      Odd fixes
2794 F:      Documentation/crypto/async-tx-api.txt
2795 F:      crypto/async_tx/
2796 F:      drivers/dma/
2797 F:      include/linux/dmaengine.h
2798 F:      include/linux/async_tx.h
2799
2800 AT24 EEPROM DRIVER
2801 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2802 L:      linux-i2c@vger.kernel.org
2803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2804 S:      Maintained
2805 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2806 F:      drivers/misc/eeprom/at24.c
2807
2808 ATA OVER ETHERNET (AOE) DRIVER
2809 M:      "Justin Sanders" <justin@coraid.com>
2810 W:      http://www.openaoe.org/
2811 S:      Supported
2812 F:      Documentation/admin-guide/aoe/
2813 F:      drivers/block/aoe/
2814
2815 ATHEROS 71XX/9XXX GPIO DRIVER
2816 M:      Alban Bedel <albeu@free.fr>
2817 S:      Maintained
2818 W:      https://github.com/AlbanBedel/linux
2819 T:      git git://github.com/AlbanBedel/linux
2820 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2821 F:      drivers/gpio/gpio-ath79.c
2822
2823 ATHEROS 71XX/9XXX USB PHY DRIVER
2824 M:      Alban Bedel <albeu@free.fr>
2825 W:      https://github.com/AlbanBedel/linux
2826 T:      git git://github.com/AlbanBedel/linux
2827 S:      Maintained
2828 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2829 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2830
2831 ATHEROS ATH GENERIC UTILITIES
2832 M:      Kalle Valo <kvalo@codeaurora.org>
2833 L:      linux-wireless@vger.kernel.org
2834 S:      Supported
2835 F:      drivers/net/wireless/ath/*
2836
2837 ATHEROS ATH5K WIRELESS DRIVER
2838 M:      Jiri Slaby <jirislaby@gmail.com>
2839 M:      Nick Kossifidis <mickflemm@gmail.com>
2840 M:      Luis Chamberlain <mcgrof@kernel.org>
2841 L:      linux-wireless@vger.kernel.org
2842 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
2843 S:      Maintained
2844 F:      drivers/net/wireless/ath/ath5k/
2845
2846 ATHEROS ATH6KL WIRELESS DRIVER
2847 M:      Kalle Valo <kvalo@codeaurora.org>
2848 L:      linux-wireless@vger.kernel.org
2849 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
2850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2851 S:      Supported
2852 F:      drivers/net/wireless/ath/ath6kl/
2853
2854 ATI_REMOTE2 DRIVER
2855 M:      Ville Syrjala <syrjala@sci.fi>
2856 S:      Maintained
2857 F:      drivers/input/misc/ati_remote2.c
2858
2859 ATK0110 HWMON DRIVER
2860 M:      Luca Tettamanti <kronos.it@gmail.com>
2861 L:      linux-hwmon@vger.kernel.org
2862 S:      Maintained
2863 F:      drivers/hwmon/asus_atk0110.c
2864
2865 ATLX ETHERNET DRIVERS
2866 M:      Jay Cliburn <jcliburn@gmail.com>
2867 M:      Chris Snook <chris.snook@gmail.com>
2868 L:      netdev@vger.kernel.org
2869 W:      http://sourceforge.net/projects/atl1
2870 W:      http://atl1.sourceforge.net
2871 S:      Maintained
2872 F:      drivers/net/ethernet/atheros/
2873
2874 ATM
2875 M:      Chas Williams <3chas3@gmail.com>
2876 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2877 L:      netdev@vger.kernel.org
2878 W:      http://linux-atm.sourceforge.net
2879 S:      Maintained
2880 F:      drivers/atm/
2881 F:      include/linux/atm*
2882 F:      include/uapi/linux/atm*
2883
2884 ATMEL MACB ETHERNET DRIVER
2885 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2886 S:      Supported
2887 F:      drivers/net/ethernet/cadence/
2888
2889 ATMEL MAXTOUCH DRIVER
2890 M:      Nick Dyer <nick@shmanahar.org>
2891 T:      git git://github.com/ndyer/linux.git
2892 S:      Maintained
2893 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2894 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2895
2896 ATMEL WIRELESS DRIVER
2897 M:      Simon Kelley <simon@thekelleys.org.uk>
2898 L:      linux-wireless@vger.kernel.org
2899 W:      http://www.thekelleys.org.uk/atmel
2900 W:      http://atmelwlandriver.sourceforge.net/
2901 S:      Maintained
2902 F:      drivers/net/wireless/atmel/atmel*
2903
2904 ATOMIC INFRASTRUCTURE
2905 M:      Will Deacon <will@kernel.org>
2906 M:      Peter Zijlstra <peterz@infradead.org>
2907 R:      Boqun Feng <boqun.feng@gmail.com>
2908 L:      linux-kernel@vger.kernel.org
2909 S:      Maintained
2910 F:      arch/*/include/asm/atomic*.h
2911 F:      include/*/atomic*.h
2912 F:      scripts/atomic/
2913
2914 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2915 M:      Bradley Grove <linuxdrivers@attotech.com>
2916 L:      linux-scsi@vger.kernel.org
2917 W:      http://www.attotech.com
2918 S:      Supported
2919 F:      drivers/scsi/esas2r
2920
2921 ATUSB IEEE 802.15.4 RADIO DRIVER
2922 M:      Stefan Schmidt <stefan@datenfreihafen.org>
2923 L:      linux-wpan@vger.kernel.org
2924 S:      Maintained
2925 F:      drivers/net/ieee802154/atusb.c
2926 F:      drivers/net/ieee802154/atusb.h
2927 F:      drivers/net/ieee802154/at86rf230.h
2928
2929 AUDIT SUBSYSTEM
2930 M:      Paul Moore <paul@paul-moore.com>
2931 M:      Eric Paris <eparis@redhat.com>
2932 L:      linux-audit@redhat.com (moderated for non-subscribers)
2933 W:      https://github.com/linux-audit
2934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2935 S:      Supported
2936 F:      include/linux/audit.h
2937 F:      include/uapi/linux/audit.h
2938 F:      kernel/audit*
2939
2940 AUXILIARY DISPLAY DRIVERS
2941 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2942 S:      Maintained
2943 F:      drivers/auxdisplay/
2944 F:      include/linux/cfag12864b.h
2945
2946 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
2947 M:      Andreas Klinger <ak@it-klinger.de>
2948 L:      linux-iio@vger.kernel.org
2949 S:      Maintained
2950 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
2951 F:      drivers/iio/adc/hx711.c
2952
2953 AX.25 NETWORK LAYER
2954 M:      Ralf Baechle <ralf@linux-mips.org>
2955 L:      linux-hams@vger.kernel.org
2956 W:      http://www.linux-ax25.org/
2957 S:      Maintained
2958 F:      include/uapi/linux/ax25.h
2959 F:      include/net/ax25.h
2960 F:      net/ax25/
2961
2962 AXENTIA ARM DEVICES
2963 M:      Peter Rosin <peda@axentia.se>
2964 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2965 S:      Maintained
2966 F:      arch/arm/boot/dts/at91-linea.dtsi
2967 F:      arch/arm/boot/dts/at91-natte.dtsi
2968 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
2969 F:      arch/arm/boot/dts/at91-tse850-3.dts
2970
2971 AXENTIA ASOC DRIVERS
2972 M:      Peter Rosin <peda@axentia.se>
2973 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2974 S:      Maintained
2975 F:      Documentation/devicetree/bindings/sound/axentia,*
2976 F:      sound/soc/atmel/tse850-pcm5142.c
2977
2978 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
2979 M:      Nuno Sá <nuno.sa@analog.com>
2980 W:      http://ez.analog.com/community/linux-device-drivers
2981 L:      linux-hwmon@vger.kernel.org
2982 S:      Supported
2983 F:      drivers/hwmon/axi-fan-control.c
2984 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
2985
2986 AXXIA I2C CONTROLLER
2987 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
2988 L:      linux-i2c@vger.kernel.org
2989 S:      Maintained
2990 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
2991 F:      drivers/i2c/busses/i2c-axxia.c
2992
2993 AZ6007 DVB DRIVER
2994 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
2995 L:      linux-media@vger.kernel.org
2996 W:      https://linuxtv.org
2997 T:      git git://linuxtv.org/media_tree.git
2998 S:      Maintained
2999 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3000
3001 AZTECH FM RADIO RECEIVER DRIVER
3002 M:      Hans Verkuil <hverkuil@xs4all.nl>
3003 L:      linux-media@vger.kernel.org
3004 T:      git git://linuxtv.org/media_tree.git
3005 W:      https://linuxtv.org
3006 S:      Maintained
3007 F:      drivers/media/radio/radio-aztech*
3008
3009 B43 WIRELESS DRIVER
3010 L:      linux-wireless@vger.kernel.org
3011 L:      b43-dev@lists.infradead.org
3012 W:      http://wireless.kernel.org/en/users/Drivers/b43
3013 S:      Odd Fixes
3014 F:      drivers/net/wireless/broadcom/b43/
3015
3016 B43LEGACY WIRELESS DRIVER
3017 M:      Larry Finger <Larry.Finger@lwfinger.net>
3018 L:      linux-wireless@vger.kernel.org
3019 L:      b43-dev@lists.infradead.org
3020 W:      http://wireless.kernel.org/en/users/Drivers/b43
3021 S:      Maintained
3022 F:      drivers/net/wireless/broadcom/b43legacy/
3023
3024 BACKLIGHT CLASS/SUBSYSTEM
3025 M:      Lee Jones <lee.jones@linaro.org>
3026 M:      Daniel Thompson <daniel.thompson@linaro.org>
3027 M:      Jingoo Han <jingoohan1@gmail.com>
3028 L:      dri-devel@lists.freedesktop.org
3029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3030 S:      Maintained
3031 F:      drivers/video/backlight/
3032 F:      include/linux/backlight.h
3033 F:      include/linux/pwm_backlight.h
3034 F:      Documentation/devicetree/bindings/leds/backlight
3035 F:      Documentation/ABI/stable/sysfs-class-backlight
3036 F:      Documentation/ABI/testing/sysfs-class-backlight
3037
3038 BATMAN ADVANCED
3039 M:      Marek Lindner <mareklindner@neomailbox.ch>
3040 M:      Simon Wunderlich <sw@simonwunderlich.de>
3041 M:      Antonio Quartulli <a@unstable.cc>
3042 M:      Sven Eckelmann <sven@narfation.org>
3043 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3044 W:      https://www.open-mesh.org/
3045 B:      https://www.open-mesh.org/projects/batman-adv/issues
3046 C:      irc://chat.freenode.net/batman
3047 Q:      https://patchwork.open-mesh.org/project/batman/list/
3048 T:      git https://git.open-mesh.org/linux-merge.git
3049 S:      Maintained
3050 F:      Documentation/ABI/obsolete/sysfs-class-net-batman-adv
3051 F:      Documentation/ABI/obsolete/sysfs-class-net-mesh
3052 F:      Documentation/networking/batman-adv.rst
3053 F:      include/uapi/linux/batadv_packet.h
3054 F:      include/uapi/linux/batman_adv.h
3055 F:      net/batman-adv/
3056
3057 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3058 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3059 L:      linux-hams@vger.kernel.org
3060 W:      http://www.baycom.org/~tom/ham/ham.html
3061 S:      Maintained
3062 F:      drivers/net/hamradio/baycom*
3063
3064 BCACHE (BLOCK LAYER CACHE)
3065 M:      Coly Li <colyli@suse.de>
3066 M:      Kent Overstreet <kent.overstreet@gmail.com>
3067 L:      linux-bcache@vger.kernel.org
3068 W:      http://bcache.evilpiepirate.org
3069 C:      irc://irc.oftc.net/bcache
3070 S:      Maintained
3071 F:      drivers/md/bcache/
3072
3073 BDISP ST MEDIA DRIVER
3074 M:      Fabien Dessenne <fabien.dessenne@st.com>
3075 L:      linux-media@vger.kernel.org
3076 T:      git git://linuxtv.org/media_tree.git
3077 W:      https://linuxtv.org
3078 S:      Supported
3079 F:      drivers/media/platform/sti/bdisp
3080
3081 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3082 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3083 L:      netdev@vger.kernel.org
3084 S:      Maintained
3085 F:      drivers/net/ethernet/ec_bhf.c
3086
3087 BEFS FILE SYSTEM
3088 M:      Luis de Bethencourt <luisbg@kernel.org>
3089 M:      Salah Triki <salah.triki@gmail.com>
3090 S:      Maintained
3091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3092 F:      Documentation/filesystems/befs.rst
3093 F:      fs/befs/
3094
3095 BFQ I/O SCHEDULER
3096 M:      Paolo Valente <paolo.valente@linaro.org>
3097 M:      Jens Axboe <axboe@kernel.dk>
3098 L:      linux-block@vger.kernel.org
3099 S:      Maintained
3100 F:      block/bfq-*
3101 F:      Documentation/block/bfq-iosched.rst
3102
3103 BFS FILE SYSTEM
3104 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3105 S:      Maintained
3106 F:      Documentation/filesystems/bfs.rst
3107 F:      fs/bfs/
3108 F:      include/uapi/linux/bfs_fs.h
3109
3110 BLINKM RGB LED DRIVER
3111 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3112 S:      Maintained
3113 F:      drivers/leds/leds-blinkm.c
3114
3115 BLOCK LAYER
3116 M:      Jens Axboe <axboe@kernel.dk>
3117 L:      linux-block@vger.kernel.org
3118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3119 S:      Maintained
3120 F:      block/
3121 F:      drivers/block/
3122 F:      kernel/trace/blktrace.c
3123 F:      lib/sbitmap.c
3124
3125 BLOCK2MTD DRIVER
3126 M:      Joern Engel <joern@lazybastard.org>
3127 L:      linux-mtd@lists.infradead.org
3128 S:      Maintained
3129 F:      drivers/mtd/devices/block2mtd.c
3130
3131 BLUETOOTH DRIVERS
3132 M:      Marcel Holtmann <marcel@holtmann.org>
3133 M:      Johan Hedberg <johan.hedberg@gmail.com>
3134 L:      linux-bluetooth@vger.kernel.org
3135 W:      http://www.bluez.org/
3136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3138 S:      Maintained
3139 F:      drivers/bluetooth/
3140
3141 BLUETOOTH SUBSYSTEM
3142 M:      Marcel Holtmann <marcel@holtmann.org>
3143 M:      Johan Hedberg <johan.hedberg@gmail.com>
3144 L:      linux-bluetooth@vger.kernel.org
3145 W:      http://www.bluez.org/
3146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3148 S:      Maintained
3149 F:      net/bluetooth/
3150 F:      include/net/bluetooth/
3151
3152 BONDING DRIVER
3153 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3154 M:      Veaceslav Falico <vfalico@gmail.com>
3155 M:      Andy Gospodarek <andy@greyhouse.net>
3156 L:      netdev@vger.kernel.org
3157 W:      http://sourceforge.net/projects/bonding/
3158 S:      Supported
3159 F:      drivers/net/bonding/
3160 F:      include/uapi/linux/if_bonding.h
3161
3162 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3163 M:      Dan Robertson <dan@dlrobertson.com>
3164 L:      linux-iio@vger.kernel.org
3165 S:      Maintained
3166 F:      drivers/iio/accel/bma400*
3167 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3168
3169 BPF (Safe dynamic programs and tools)
3170 M:      Alexei Starovoitov <ast@kernel.org>
3171 M:      Daniel Borkmann <daniel@iogearbox.net>
3172 R:      Martin KaFai Lau <kafai@fb.com>
3173 R:      Song Liu <songliubraving@fb.com>
3174 R:      Yonghong Song <yhs@fb.com>
3175 R:      Andrii Nakryiko <andriin@fb.com>
3176 L:      netdev@vger.kernel.org
3177 L:      bpf@vger.kernel.org
3178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3180 Q:      https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
3181 S:      Supported
3182 F:      arch/*/net/*
3183 F:      Documentation/networking/filter.txt
3184 F:      Documentation/bpf/
3185 F:      include/linux/bpf*
3186 F:      include/linux/filter.h
3187 F:      include/trace/events/xdp.h
3188 F:      include/uapi/linux/bpf*
3189 F:      include/uapi/linux/filter.h
3190 F:      kernel/bpf/
3191 F:      kernel/trace/bpf_trace.c
3192 F:      lib/test_bpf.c
3193 F:      net/bpf/
3194 F:      net/core/filter.c
3195 F:      net/sched/act_bpf.c
3196 F:      net/sched/cls_bpf.c
3197 F:      samples/bpf/
3198 F:      tools/bpf/
3199 F:      tools/lib/bpf/
3200 F:      tools/testing/selftests/bpf/
3201 K:      bpf
3202 N:      bpf
3203
3204 BPF JIT for ARM
3205 M:      Shubham Bansal <illusionist.neo@gmail.com>
3206 L:      netdev@vger.kernel.org
3207 L:      bpf@vger.kernel.org
3208 S:      Maintained
3209 F:      arch/arm/net/
3210
3211 BPF JIT for ARM64
3212 M:      Daniel Borkmann <daniel@iogearbox.net>
3213 M:      Alexei Starovoitov <ast@kernel.org>
3214 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3215 L:      netdev@vger.kernel.org
3216 L:      bpf@vger.kernel.org
3217 S:      Supported
3218 F:      arch/arm64/net/
3219
3220 BPF JIT for MIPS (32-BIT AND 64-BIT)
3221 M:      Paul Burton <paulburton@kernel.org>
3222 L:      netdev@vger.kernel.org
3223 L:      bpf@vger.kernel.org
3224 S:      Maintained
3225 F:      arch/mips/net/
3226
3227 BPF JIT for NFP NICs
3228 M:      Jakub Kicinski <kuba@kernel.org>
3229 L:      netdev@vger.kernel.org
3230 L:      bpf@vger.kernel.org
3231 S:      Supported
3232 F:      drivers/net/ethernet/netronome/nfp/bpf/
3233
3234 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3235 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3236 M:      Sandipan Das <sandipan@linux.ibm.com>
3237 L:      netdev@vger.kernel.org
3238 L:      bpf@vger.kernel.org
3239 S:      Maintained
3240 F:      arch/powerpc/net/
3241
3242 BPF JIT for RISC-V (RV64G)
3243 M:      Björn Töpel <bjorn.topel@gmail.com>
3244 L:      netdev@vger.kernel.org
3245 S:      Maintained
3246 F:      arch/riscv/net/
3247
3248 BPF JIT for S390
3249 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3250 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
3251 M:      Vasily Gorbik <gor@linux.ibm.com>
3252 L:      netdev@vger.kernel.org
3253 L:      bpf@vger.kernel.org
3254 S:      Maintained
3255 F:      arch/s390/net/
3256 X:      arch/s390/net/pnet.c
3257
3258 BPF JIT for SPARC (32-BIT AND 64-BIT)
3259 M:      David S. Miller <davem@davemloft.net>
3260 L:      netdev@vger.kernel.org
3261 L:      bpf@vger.kernel.org
3262 S:      Maintained
3263 F:      arch/sparc/net/
3264
3265 BPF JIT for X86 32-BIT
3266 M:      Wang YanQing <udknight@gmail.com>
3267 L:      netdev@vger.kernel.org
3268 L:      bpf@vger.kernel.org
3269 S:      Maintained
3270 F:      arch/x86/net/bpf_jit_comp32.c
3271
3272 BPF JIT for X86 64-BIT
3273 M:      Alexei Starovoitov <ast@kernel.org>
3274 M:      Daniel Borkmann <daniel@iogearbox.net>
3275 L:      netdev@vger.kernel.org
3276 L:      bpf@vger.kernel.org
3277 S:      Supported
3278 F:      arch/x86/net/
3279 X:      arch/x86/net/bpf_jit_comp32.c
3280
3281 BROADCOM B44 10/100 ETHERNET DRIVER
3282 M:      Michael Chan <michael.chan@broadcom.com>
3283 L:      netdev@vger.kernel.org
3284 S:      Supported
3285 F:      drivers/net/ethernet/broadcom/b44.*
3286
3287 BROADCOM B53 ETHERNET SWITCH DRIVER
3288 M:      Florian Fainelli <f.fainelli@gmail.com>
3289 L:      netdev@vger.kernel.org
3290 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3291 S:      Supported
3292 F:      drivers/net/dsa/b53/*
3293 F:      include/linux/platform_data/b53.h
3294
3295 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3296 M:      Florian Fainelli <f.fainelli@gmail.com>
3297 M:      Ray Jui <rjui@broadcom.com>
3298 M:      Scott Branden <sbranden@broadcom.com>
3299 M:      bcm-kernel-feedback-list@broadcom.com
3300 T:      git git://github.com/broadcom/mach-bcm
3301 S:      Maintained
3302 N:      bcm281*
3303 N:      bcm113*
3304 N:      bcm216*
3305 N:      kona
3306 F:      arch/arm/mach-bcm/
3307
3308 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3309 M:      Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
3310 L:      bcm-kernel-feedback-list@broadcom.com
3311 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3312 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3313 T:      git git://github.com/anholt/linux
3314 S:      Maintained
3315 N:      bcm2711
3316 N:      bcm2835
3317 F:      drivers/staging/vc04_services
3318 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3319 F:      drivers/pci/controller/pcie-brcmstb.c
3320
3321 BROADCOM BCM47XX MIPS ARCHITECTURE
3322 M:      Hauke Mehrtens <hauke@hauke-m.de>
3323 M:      Rafał Miłecki <zajec5@gmail.com>
3324 L:      linux-mips@vger.kernel.org
3325 S:      Maintained
3326 F:      Documentation/devicetree/bindings/mips/brcm/
3327 F:      arch/mips/bcm47xx/*
3328 F:      arch/mips/include/asm/mach-bcm47xx/*
3329
3330 BROADCOM BCM5301X ARM ARCHITECTURE
3331 M:      Hauke Mehrtens <hauke@hauke-m.de>
3332 M:      Rafał Miłecki <zajec5@gmail.com>
3333 M:      bcm-kernel-feedback-list@broadcom.com
3334 L:      linux-arm-kernel@lists.infradead.org
3335 S:      Maintained
3336 F:      arch/arm/mach-bcm/bcm_5301x.c
3337 F:      arch/arm/boot/dts/bcm5301x*.dtsi
3338 F:      arch/arm/boot/dts/bcm470*
3339 F:      arch/arm/boot/dts/bcm953012*
3340
3341 BROADCOM BCM53573 ARM ARCHITECTURE
3342 M:      Rafał Miłecki <rafal@milecki.pl>
3343 L:      bcm-kernel-feedback-list@broadcom.com
3344 L:      linux-arm-kernel@lists.infradead.org
3345 S:      Maintained
3346 F:      arch/arm/boot/dts/bcm53573*
3347 F:      arch/arm/boot/dts/bcm47189*
3348
3349 BROADCOM BCM63XX ARM ARCHITECTURE
3350 M:      Florian Fainelli <f.fainelli@gmail.com>
3351 M:      bcm-kernel-feedback-list@broadcom.com
3352 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3353 T:      git git://github.com/broadcom/stblinux.git
3354 S:      Maintained
3355 N:      bcm63xx
3356
3357 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3358 M:      Kevin Cernekee <cernekee@gmail.com>
3359 L:      linux-usb@vger.kernel.org
3360 S:      Maintained
3361 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3362
3363 BROADCOM BCM7XXX ARM ARCHITECTURE
3364 M:      Florian Fainelli <f.fainelli@gmail.com>
3365 M:      bcm-kernel-feedback-list@broadcom.com
3366 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3367 T:      git git://github.com/broadcom/stblinux.git
3368 S:      Maintained
3369 F:      arch/arm/mach-bcm/*brcmstb*
3370 F:      arch/arm/boot/dts/bcm7*.dts*
3371 F:      drivers/bus/brcmstb_gisb.c
3372 F:      arch/arm/mm/cache-b15-rac.c
3373 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3374 N:      brcmstb
3375 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3376 F:      drivers/pci/controller/pcie-brcmstb.c
3377
3378 BROADCOM BMIPS CPUFREQ DRIVER
3379 M:      Markus Mayer <mmayer@broadcom.com>
3380 M:      bcm-kernel-feedback-list@broadcom.com
3381 L:      linux-pm@vger.kernel.org
3382 S:      Maintained
3383 F:      drivers/cpufreq/bmips-cpufreq.c
3384
3385 BROADCOM BMIPS MIPS ARCHITECTURE
3386 M:      Florian Fainelli <f.fainelli@gmail.com>
3387 L:      bcm-kernel-feedback-list@broadcom.com
3388 L:      linux-mips@vger.kernel.org
3389 T:      git git://github.com/broadcom/stblinux.git
3390 S:      Maintained
3391 F:      arch/mips/bmips/*
3392 F:      arch/mips/include/asm/mach-bmips/*
3393 F:      arch/mips/kernel/*bmips*
3394 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3395 F:      drivers/irqchip/irq-bcm63*
3396 F:      drivers/irqchip/irq-bcm7*
3397 F:      drivers/irqchip/irq-brcmstb*
3398 F:      include/linux/bcm963xx_nvram.h
3399 F:      include/linux/bcm963xx_tag.h
3400
3401 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3402 M:      Rasesh Mody <rmody@marvell.com>
3403 M:      GR-Linux-NIC-Dev@marvell.com
3404 L:      netdev@vger.kernel.org
3405 S:      Supported
3406 F:      drivers/net/ethernet/broadcom/bnx2.*
3407 F:      drivers/net/ethernet/broadcom/bnx2_*
3408
3409 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3410 M:      QLogic-Storage-Upstream@qlogic.com
3411 L:      linux-scsi@vger.kernel.org
3412 S:      Supported
3413 F:      drivers/scsi/bnx2fc/
3414
3415 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3416 M:      QLogic-Storage-Upstream@qlogic.com
3417 L:      linux-scsi@vger.kernel.org
3418 S:      Supported
3419 F:      drivers/scsi/bnx2i/
3420
3421 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3422 M:      Ariel Elior <aelior@marvell.com>
3423 M:      Sudarsana Kalluru <skalluru@marvell.com>
3424 M:      GR-everest-linux-l2@marvell.com
3425 L:      netdev@vger.kernel.org
3426 S:      Supported
3427 F:      drivers/net/ethernet/broadcom/bnx2x/
3428
3429 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3430 M:      Michael Chan <michael.chan@broadcom.com>
3431 L:      netdev@vger.kernel.org
3432 S:      Supported
3433 F:      drivers/net/ethernet/broadcom/bnxt/
3434
3435 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3436 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
3437 M:      Franky Lin <franky.lin@broadcom.com>
3438 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3439 M:      Chi-Hsien Lin <chi-hsien.lin@cypress.com>
3440 M:      Wright Feng <wright.feng@cypress.com>
3441 L:      linux-wireless@vger.kernel.org
3442 L:      brcm80211-dev-list.pdl@broadcom.com
3443 L:      brcm80211-dev-list@cypress.com
3444 S:      Supported
3445 F:      drivers/net/wireless/broadcom/brcm80211/
3446
3447 BROADCOM BRCMSTB GPIO DRIVER
3448 M:      Gregory Fong <gregory.0xf0@gmail.com>
3449 L:      bcm-kernel-feedback-list@broadcom.com
3450 S:      Supported
3451 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3452 F:      drivers/gpio/gpio-brcmstb.c
3453
3454 BROADCOM BRCMSTB I2C DRIVER
3455 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3456 L:      linux-i2c@vger.kernel.org
3457 L:      bcm-kernel-feedback-list@broadcom.com
3458 S:      Supported
3459 F:      drivers/i2c/busses/i2c-brcmstb.c
3460 F:      Documentation/devicetree/bindings/i2c/i2c-brcmstb.txt
3461
3462 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3463 M:      Al Cooper <alcooperx@gmail.com>
3464 L:      linux-kernel@vger.kernel.org
3465 L:      bcm-kernel-feedback-list@broadcom.com
3466 S:      Maintained
3467 F:      drivers/phy/broadcom/phy-brcm-usb*
3468
3469 BROADCOM GENET ETHERNET DRIVER
3470 M:      Doug Berger <opendmb@gmail.com>
3471 M:      Florian Fainelli <f.fainelli@gmail.com>
3472 L:      bcm-kernel-feedback-list@broadcom.com
3473 L:      netdev@vger.kernel.org
3474 S:      Supported
3475 F:      drivers/net/ethernet/broadcom/genet/
3476
3477 BROADCOM IPROC ARM ARCHITECTURE
3478 M:      Ray Jui <rjui@broadcom.com>
3479 M:      Scott Branden <sbranden@broadcom.com>
3480 M:      bcm-kernel-feedback-list@broadcom.com
3481 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3482 T:      git git://github.com/broadcom/cygnus-linux.git
3483 S:      Maintained
3484 N:      iproc
3485 N:      cygnus
3486 N:      bcm[-_]nsp
3487 N:      bcm9113*
3488 N:      bcm9583*
3489 N:      bcm9585*
3490 N:      bcm9586*
3491 N:      bcm988312
3492 N:      bcm113*
3493 N:      bcm583*
3494 N:      bcm585*
3495 N:      bcm586*
3496 N:      bcm88312
3497 N:      hr2
3498 N:      stingray
3499 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3500 F:      arch/arm64/boot/dts/broadcom/stingray/*
3501 F:      drivers/clk/bcm/clk-ns*
3502 F:      drivers/clk/bcm/clk-sr*
3503 F:      drivers/pinctrl/bcm/pinctrl-ns*
3504 F:      include/dt-bindings/clock/bcm-sr*
3505
3506 BROADCOM KONA GPIO DRIVER
3507 M:      Ray Jui <rjui@broadcom.com>
3508 L:      bcm-kernel-feedback-list@broadcom.com
3509 S:      Supported
3510 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3511 F:      drivers/gpio/gpio-bcm-kona.c
3512
3513 BROADCOM NETXTREME-E ROCE DRIVER
3514 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3515 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3516 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3517 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3518 L:      linux-rdma@vger.kernel.org
3519 W:      http://www.broadcom.com
3520 S:      Supported
3521 F:      drivers/infiniband/hw/bnxt_re/
3522 F:      include/uapi/rdma/bnxt_re-abi.h
3523
3524 BROADCOM NVRAM DRIVER
3525 M:      Rafał Miłecki <zajec5@gmail.com>
3526 L:      linux-mips@vger.kernel.org
3527 S:      Maintained
3528 F:      drivers/firmware/broadcom/*
3529
3530 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3531 M:      Rafał Miłecki <zajec5@gmail.com>
3532 L:      linux-wireless@vger.kernel.org
3533 S:      Maintained
3534 F:      drivers/bcma/
3535 F:      include/linux/bcma/
3536
3537 BROADCOM STB AVS CPUFREQ DRIVER
3538 M:      Markus Mayer <mmayer@broadcom.com>
3539 M:      bcm-kernel-feedback-list@broadcom.com
3540 L:      linux-pm@vger.kernel.org
3541 S:      Maintained
3542 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3543 F:      drivers/cpufreq/brcmstb*
3544
3545 BROADCOM STB AVS TMON DRIVER
3546 M:      Markus Mayer <mmayer@broadcom.com>
3547 M:      bcm-kernel-feedback-list@broadcom.com
3548 L:      linux-pm@vger.kernel.org
3549 S:      Maintained
3550 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3551 F:      drivers/thermal/broadcom/brcmstb*
3552
3553 BROADCOM STB NAND FLASH DRIVER
3554 M:      Brian Norris <computersforpeace@gmail.com>
3555 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3556 L:      linux-mtd@lists.infradead.org
3557 L:      bcm-kernel-feedback-list@broadcom.com
3558 S:      Maintained
3559 F:      drivers/mtd/nand/raw/brcmnand/
3560
3561 BROADCOM STB DPFE DRIVER
3562 M:      Markus Mayer <mmayer@broadcom.com>
3563 M:      bcm-kernel-feedback-list@broadcom.com
3564 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3565 S:      Maintained
3566 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3567 F:      drivers/memory/brcmstb_dpfe.c
3568
3569 BROADCOM SPI DRIVER
3570 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3571 M:      bcm-kernel-feedback-list@broadcom.com
3572 S:      Maintained
3573 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3574 F:      drivers/spi/spi-bcm-qspi.*
3575 F:      drivers/spi/spi-brcmstb-qspi.c
3576 F:      drivers/spi/spi-iproc-qspi.c
3577
3578 BROADCOM SYSTEMPORT ETHERNET DRIVER
3579 M:      Florian Fainelli <f.fainelli@gmail.com>
3580 L:      bcm-kernel-feedback-list@broadcom.com
3581 L:      netdev@vger.kernel.org
3582 S:      Supported
3583 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3584
3585 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3586 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3587 M:      Prashant Sreedharan <prashant@broadcom.com>
3588 M:      Michael Chan <mchan@broadcom.com>
3589 L:      netdev@vger.kernel.org
3590 S:      Supported
3591 F:      drivers/net/ethernet/broadcom/tg3.*
3592
3593 BROCADE BFA FC SCSI DRIVER
3594 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3595 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3596 L:      linux-scsi@vger.kernel.org
3597 S:      Supported
3598 F:      drivers/scsi/bfa/
3599
3600 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3601 M:      Rasesh Mody <rmody@marvell.com>
3602 M:      Sudarsana Kalluru <skalluru@marvell.com>
3603 M:      GR-Linux-NIC-Dev@marvell.com
3604 L:      netdev@vger.kernel.org
3605 S:      Supported
3606 F:      drivers/net/ethernet/brocade/bna/
3607
3608 BSG (block layer generic sg v4 driver)
3609 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3610 L:      linux-scsi@vger.kernel.org
3611 S:      Supported
3612 F:      block/bsg.c
3613 F:      include/linux/bsg.h
3614 F:      include/uapi/linux/bsg.h
3615
3616 BT87X AUDIO DRIVER
3617 M:      Clemens Ladisch <clemens@ladisch.de>
3618 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3620 S:      Maintained
3621 F:      Documentation/sound/cards/bt87x.rst
3622 F:      sound/pci/bt87x.c
3623
3624 BT8XXGPIO DRIVER
3625 M:      Michael Buesch <m@bues.ch>
3626 S:      Maintained
3627 W:      http://bu3sch.de/btgpio.php
3628 F:      drivers/gpio/gpio-bt8xx.c
3629
3630 BTRFS FILE SYSTEM
3631 M:      Chris Mason <clm@fb.com>
3632 M:      Josef Bacik <josef@toxicpanda.com>
3633 M:      David Sterba <dsterba@suse.com>
3634 L:      linux-btrfs@vger.kernel.org
3635 W:      http://btrfs.wiki.kernel.org/
3636 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
3638 S:      Maintained
3639 F:      Documentation/filesystems/btrfs.rst
3640 F:      fs/btrfs/
3641 F:      include/linux/btrfs*
3642 F:      include/uapi/linux/btrfs*
3643
3644 BTTV VIDEO4LINUX DRIVER
3645 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3646 L:      linux-media@vger.kernel.org
3647 W:      https://linuxtv.org
3648 T:      git git://linuxtv.org/media_tree.git
3649 S:      Odd fixes
3650 F:      Documentation/media/v4l-drivers/bttv*
3651 F:      drivers/media/pci/bt8xx/bttv*
3652
3653 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3654 M:      Chanwoo Choi <cw00.choi@samsung.com>
3655 L:      linux-pm@vger.kernel.org
3656 L:      linux-samsung-soc@vger.kernel.org
3657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3658 S:      Maintained
3659 F:      drivers/devfreq/exynos-bus.c
3660 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3661
3662 BUSLOGIC SCSI DRIVER
3663 M:      Khalid Aziz <khalid@gonehiking.org>
3664 L:      linux-scsi@vger.kernel.org
3665 S:      Maintained
3666 F:      drivers/scsi/BusLogic.*
3667 F:      drivers/scsi/FlashPoint.*
3668
3669 C-MEDIA CMI8788 DRIVER
3670 M:      Clemens Ladisch <clemens@ladisch.de>
3671 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3673 S:      Maintained
3674 F:      sound/pci/oxygen/
3675
3676 C-SKY ARCHITECTURE
3677 M:      Guo Ren <guoren@kernel.org>
3678 L:      linux-csky@vger.kernel.org
3679 T:      git https://github.com/c-sky/csky-linux.git
3680 S:      Supported
3681 F:      arch/csky/
3682 F:      Documentation/devicetree/bindings/csky/
3683 F:      drivers/irqchip/irq-csky-*
3684 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3685 F:      drivers/clocksource/timer-gx6605s.c
3686 F:      drivers/clocksource/timer-mp-csky.c
3687 F:      Documentation/devicetree/bindings/timer/csky,*
3688 K:      csky
3689 N:      csky
3690
3691 C6X ARCHITECTURE
3692 M:      Mark Salter <msalter@redhat.com>
3693 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3694 L:      linux-c6x-dev@linux-c6x.org
3695 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3696 S:      Maintained
3697 F:      arch/c6x/
3698
3699 CA8210 IEEE-802.15.4 RADIO DRIVER
3700 M:      Harry Morris <h.morris@cascoda.com>
3701 L:      linux-wpan@vger.kernel.org
3702 W:      https://github.com/Cascoda/ca8210-linux.git
3703 S:      Maintained
3704 F:      drivers/net/ieee802154/ca8210.c
3705 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3706
3707 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3708 M:      David Howells <dhowells@redhat.com>
3709 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3710 S:      Supported
3711 F:      Documentation/filesystems/caching/cachefiles.txt
3712 F:      fs/cachefiles/
3713
3714 CADENCE MIPI-CSI2 BRIDGES
3715 M:      Maxime Ripard <mripard@kernel.org>
3716 L:      linux-media@vger.kernel.org
3717 S:      Maintained
3718 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3719 F:      drivers/media/platform/cadence/cdns-csi2*
3720
3721 CADENCE NAND DRIVER
3722 M:      Piotr Sroka <piotrs@cadence.com>
3723 L:      linux-mtd@lists.infradead.org
3724 S:      Maintained
3725 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3726 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3727
3728 CADET FM/AM RADIO RECEIVER DRIVER
3729 M:      Hans Verkuil <hverkuil@xs4all.nl>
3730 L:      linux-media@vger.kernel.org
3731 T:      git git://linuxtv.org/media_tree.git
3732 W:      https://linuxtv.org
3733 S:      Maintained
3734 F:      drivers/media/radio/radio-cadet*
3735
3736 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3737 M:      Jonathan Corbet <corbet@lwn.net>
3738 L:      linux-media@vger.kernel.org
3739 T:      git git://linuxtv.org/media_tree.git
3740 S:      Maintained
3741 F:      Documentation/media/v4l-drivers/cafe_ccic*
3742 F:      drivers/media/platform/marvell-ccic/
3743
3744 CAIF NETWORK LAYER
3745 L:      netdev@vger.kernel.org
3746 S:      Orphan
3747 F:      Documentation/networking/caif/
3748 F:      drivers/net/caif/
3749 F:      include/uapi/linux/caif/
3750 F:      include/net/caif/
3751 F:      net/caif/
3752
3753 CAKE QDISC
3754 M:      Toke Høiland-Jørgensen <toke@toke.dk>
3755 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
3756 S:      Maintained
3757 F:      net/sched/sch_cake.c
3758
3759 CAN NETWORK DRIVERS
3760 M:      Wolfgang Grandegger <wg@grandegger.com>
3761 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3762 L:      linux-can@vger.kernel.org
3763 W:      https://github.com/linux-can
3764 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3765 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3766 S:      Maintained
3767 F:      Documentation/devicetree/bindings/net/can/
3768 F:      drivers/net/can/
3769 F:      include/linux/can/dev.h
3770 F:      include/linux/can/led.h
3771 F:      include/linux/can/rx-offload.h
3772 F:      include/linux/can/platform/
3773 F:      include/uapi/linux/can/error.h
3774 F:      include/uapi/linux/can/netlink.h
3775 F:      include/uapi/linux/can/vxcan.h
3776
3777 CAN NETWORK LAYER
3778 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3779 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3780 L:      linux-can@vger.kernel.org
3781 W:      https://github.com/linux-can
3782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3784 S:      Maintained
3785 F:      Documentation/networking/can.rst
3786 F:      net/can/
3787 F:      include/linux/can/core.h
3788 F:      include/linux/can/skb.h
3789 F:      include/net/netns/can.h
3790 F:      include/uapi/linux/can.h
3791 F:      include/uapi/linux/can/bcm.h
3792 F:      include/uapi/linux/can/raw.h
3793 F:      include/uapi/linux/can/gw.h
3794
3795 CAN-J1939 NETWORK LAYER
3796 M:      Robin van der Gracht <robin@protonic.nl>
3797 M:      Oleksij Rempel <o.rempel@pengutronix.de>
3798 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
3799 L:      linux-can@vger.kernel.org
3800 S:      Maintained
3801 F:      Documentation/networking/j1939.rst
3802 F:      net/can/j1939/
3803 F:      include/uapi/linux/can/j1939.h
3804
3805 CAPABILITIES
3806 M:      Serge Hallyn <serge@hallyn.com>
3807 L:      linux-security-module@vger.kernel.org
3808 S:      Supported
3809 F:      include/linux/capability.h
3810 F:      include/uapi/linux/capability.h
3811 F:      security/commoncap.c
3812 F:      kernel/capability.c
3813
3814 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3815 M:      Kevin Tsai <ktsai@capellamicro.com>
3816 S:      Maintained
3817 F:      drivers/iio/light/cm*
3818
3819 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3820 M:      Christian Lamparter <chunkeey@googlemail.com>
3821 L:      linux-wireless@vger.kernel.org
3822 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
3823 S:      Maintained
3824 F:      drivers/net/wireless/ath/carl9170/
3825
3826 CAVIUM I2C DRIVER
3827 M:      Robert Richter <rrichter@marvell.com>
3828 W:      http://www.marvell.com
3829 S:      Supported
3830 F:      drivers/i2c/busses/i2c-octeon*
3831 F:      drivers/i2c/busses/i2c-thunderx*
3832
3833 CAVIUM LIQUIDIO NETWORK DRIVER
3834 M:      Derek Chickles <dchickles@marvell.com>
3835 M:      Satanand Burla <sburla@marvell.com>
3836 M:      Felix Manlunas <fmanlunas@marvell.com>
3837 L:      netdev@vger.kernel.org
3838 W:      http://www.marvell.com
3839 S:      Supported
3840 F:      drivers/net/ethernet/cavium/liquidio/
3841
3842 CAVIUM MMC DRIVER
3843 M:      Robert Richter <rrichter@marvell.com>
3844 W:      http://www.marvell.com
3845 S:      Supported
3846 F:      drivers/mmc/host/cavium*
3847
3848 CAVIUM OCTEON-TX CRYPTO DRIVER
3849 M:      George Cherian <gcherian@marvell.com>
3850 L:      linux-crypto@vger.kernel.org
3851 W:      http://www.marvell.com
3852 S:      Supported
3853 F:      drivers/crypto/cavium/cpt/
3854
3855 CAVIUM THUNDERX2 ARM64 SOC
3856 M:      Robert Richter <rrichter@marvell.com>
3857 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3858 S:      Maintained
3859 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3860 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3861
3862 CC2520 IEEE-802.15.4 RADIO DRIVER
3863 M:      Varka Bhadram <varkabhadram@gmail.com>
3864 L:      linux-wpan@vger.kernel.org
3865 S:      Maintained
3866 F:      drivers/net/ieee802154/cc2520.c
3867 F:      include/linux/spi/cc2520.h
3868 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3869
3870 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3871 M:      Gilad Ben-Yossef <gilad@benyossef.com>
3872 L:      linux-crypto@vger.kernel.org
3873 S:      Supported
3874 F:      drivers/crypto/ccree/
3875 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3876
3877 CEC FRAMEWORK
3878 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3879 L:      linux-media@vger.kernel.org
3880 T:      git git://linuxtv.org/media_tree.git
3881 W:      http://linuxtv.org
3882 S:      Supported
3883 F:      Documentation/media/kapi/cec-core.rst
3884 F:      Documentation/media/uapi/cec
3885 F:      drivers/media/cec/
3886 F:      drivers/media/rc/keymaps/rc-cec.c
3887 F:      include/media/cec.h
3888 F:      include/media/cec-notifier.h
3889 F:      include/uapi/linux/cec.h
3890 F:      include/uapi/linux/cec-funcs.h
3891 F:      Documentation/devicetree/bindings/media/cec.txt
3892 F:      Documentation/ABI/testing/debugfs-cec-error-inj
3893
3894 CEC GPIO DRIVER
3895 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3896 L:      linux-media@vger.kernel.org
3897 T:      git git://linuxtv.org/media_tree.git
3898 W:      http://linuxtv.org
3899 S:      Supported
3900 F:      drivers/media/platform/cec-gpio/
3901 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
3902
3903 CELL BROADBAND ENGINE ARCHITECTURE
3904 M:      Arnd Bergmann <arnd@arndb.de>
3905 L:      linuxppc-dev@lists.ozlabs.org
3906 W:      http://www.ibm.com/developerworks/power/cell/
3907 S:      Supported
3908 F:      arch/powerpc/include/asm/cell*.h
3909 F:      arch/powerpc/include/asm/spu*.h
3910 F:      arch/powerpc/include/uapi/asm/spu*.h
3911 F:      arch/powerpc/oprofile/*cell*
3912 F:      arch/powerpc/platforms/cell/
3913
3914 CEPH COMMON CODE (LIBCEPH)
3915 M:      Ilya Dryomov <idryomov@gmail.com>
3916 M:      Jeff Layton <jlayton@kernel.org>
3917 M:      Sage Weil <sage@redhat.com>
3918 L:      ceph-devel@vger.kernel.org
3919 W:      http://ceph.com/
3920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3921 T:      git git://github.com/ceph/ceph-client.git
3922 S:      Supported
3923 F:      net/ceph/
3924 F:      include/linux/ceph/
3925 F:      include/linux/crush/
3926
3927 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3928 M:      Jeff Layton <jlayton@kernel.org>
3929 M:      Sage Weil <sage@redhat.com>
3930 M:      Ilya Dryomov <idryomov@gmail.com>
3931 L:      ceph-devel@vger.kernel.org
3932 W:      http://ceph.com/
3933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3934 T:      git git://github.com/ceph/ceph-client.git
3935 S:      Supported
3936 F:      Documentation/filesystems/ceph.rst
3937 F:      fs/ceph/
3938
3939 CERTIFICATE HANDLING
3940 M:      David Howells <dhowells@redhat.com>
3941 M:      David Woodhouse <dwmw2@infradead.org>
3942 L:      keyrings@vger.kernel.org
3943 S:      Maintained
3944 F:      Documentation/admin-guide/module-signing.rst
3945 F:      certs/
3946 F:      scripts/sign-file.c
3947 F:      scripts/extract-cert.c
3948
3949 CFAG12864B LCD DRIVER
3950 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3951 S:      Maintained
3952 F:      drivers/auxdisplay/cfag12864b.c
3953 F:      include/linux/cfag12864b.h
3954
3955 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3956 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3957 S:      Maintained
3958 F:      drivers/auxdisplay/cfag12864bfb.c
3959 F:      include/linux/cfag12864b.h
3960
3961 802.11 (including CFG80211/NL80211)
3962 M:      Johannes Berg <johannes@sipsolutions.net>
3963 L:      linux-wireless@vger.kernel.org
3964 W:      http://wireless.kernel.org/
3965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3967 S:      Maintained
3968 F:      net/wireless/
3969 F:      include/uapi/linux/nl80211.h
3970 F:      include/linux/ieee80211.h
3971 F:      include/net/wext.h
3972 F:      include/net/cfg80211.h
3973 F:      include/net/iw_handler.h
3974 F:      include/net/ieee80211_radiotap.h
3975 F:      Documentation/driver-api/80211/cfg80211.rst
3976 F:      Documentation/networking/regulatory.txt
3977
3978 CHAR and MISC DRIVERS
3979 M:      Arnd Bergmann <arnd@arndb.de>
3980 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
3982 S:      Supported
3983 F:      drivers/char/
3984 F:      drivers/misc/
3985 F:      include/linux/miscdevice.h
3986
3987 CHECKPATCH
3988 M:      Andy Whitcroft <apw@canonical.com>
3989 M:      Joe Perches <joe@perches.com>
3990 S:      Maintained
3991 F:      scripts/checkpatch.pl
3992
3993 CHINESE DOCUMENTATION
3994 M:      Harry Wei <harryxiyou@gmail.com>
3995 M:      Alex Shi <alex.shi@linux.alibaba.com>
3996 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
3997 S:      Maintained
3998 F:      Documentation/translations/zh_CN/
3999
4000 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4001 M:      Peter Chen <Peter.Chen@nxp.com>
4002 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4003 L:      linux-usb@vger.kernel.org
4004 S:      Maintained
4005 F:      drivers/usb/chipidea/
4006
4007 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4008 M:      Hans de Goede <hdegoede@redhat.com>
4009 L:      linux-input@vger.kernel.org
4010 S:      Maintained
4011 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4012 F:      drivers/input/touchscreen/chipone_icn8318.c
4013
4014 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4015 M:      Hans de Goede <hdegoede@redhat.com>
4016 L:      linux-input@vger.kernel.org
4017 S:      Maintained
4018 F:      drivers/input/touchscreen/chipone_icn8505.c
4019
4020 CHROME HARDWARE PLATFORM SUPPORT
4021 M:      Benson Leung <bleung@chromium.org>
4022 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4023 S:      Maintained
4024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4025 F:      drivers/platform/chrome/
4026
4027 CHROMEOS EC SUBDRIVERS
4028 M:      Benson Leung <bleung@chromium.org>
4029 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4030 R:      Guenter Roeck <groeck@chromium.org>
4031 S:      Maintained
4032 N:      cros_ec
4033 N:      cros-ec
4034 F:      drivers/power/supply/cros_usbpd-charger.c
4035
4036 CHROMEOS EC CODEC DRIVER
4037 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4038 S:      Maintained
4039 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4040 R:      Guenter Roeck <groeck@chromium.org>
4041 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4042 F:      sound/soc/codecs/cros_ec_codec.*
4043
4044 CIRRUS LOGIC AUDIO CODEC DRIVERS
4045 M:      Brian Austin <brian.austin@cirrus.com>
4046 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
4047 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4048 S:      Maintained
4049 F:      sound/soc/codecs/cs*
4050
4051 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4052 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4053 L:      netdev@vger.kernel.org
4054 S:      Maintained
4055 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4056
4057 CIRRUS LOGIC LOCHNAGAR DRIVER
4058 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4059 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4060 L:      patches@opensource.cirrus.com
4061 S:      Supported
4062 F:      drivers/clk/clk-lochnagar.c
4063 F:      drivers/hwmon/lochnagar-hwmon.c
4064 F:      drivers/mfd/lochnagar-i2c.c
4065 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4066 F:      drivers/regulator/lochnagar-regulator.c
4067 F:      sound/soc/codecs/lochnagar-sc.c
4068 F:      include/dt-bindings/clk/lochnagar.h
4069 F:      include/dt-bindings/pinctrl/lochnagar.h
4070 F:      include/linux/mfd/lochnagar*
4071 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.txt
4072 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.txt
4073 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.txt
4074 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.txt
4075 F:      Documentation/devicetree/bindings/regulator/cirrus,lochnagar.txt
4076 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.txt
4077 F:      Documentation/hwmon/lochnagar.rst
4078
4079 CISCO FCOE HBA DRIVER
4080 M:      Satish Kharat <satishkh@cisco.com>
4081 M:      Sesidhar Baddela <sebaddel@cisco.com>
4082 M:      Karan Tilak Kumar <kartilak@cisco.com>
4083 L:      linux-scsi@vger.kernel.org
4084 S:      Supported
4085 F:      drivers/scsi/fnic/
4086
4087 CISCO SCSI HBA DRIVER
4088 M:      Karan Tilak Kumar <kartilak@cisco.com>
4089 M:      Sesidhar Baddela <sebaddel@cisco.com>
4090 L:      linux-scsi@vger.kernel.org
4091 S:      Supported
4092 F:      drivers/scsi/snic/
4093
4094 CISCO VIC ETHERNET NIC DRIVER
4095 M:      Christian Benvenuti <benve@cisco.com>
4096 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4097 S:      Supported
4098 F:      drivers/net/ethernet/cisco/enic/
4099
4100 CISCO VIC LOW LATENCY NIC DRIVER
4101 M:      Christian Benvenuti <benve@cisco.com>
4102 M:      Nelson Escobar <neescoba@cisco.com>
4103 M:      Parvi Kaustubhi <pkaustub@cisco.com>
4104 S:      Supported
4105 F:      drivers/infiniband/hw/usnic/
4106
4107 CIRRUS LOGIC MADERA CODEC DRIVERS
4108 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4109 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4110 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4111 L:      patches@opensource.cirrus.com
4112 T:      git https://github.com/CirrusLogic/linux-drivers.git
4113 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4114 S:      Supported
4115 F:      Documentation/devicetree/bindings/mfd/madera.txt
4116 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera-pinctrl.txt
4117 F:      Documentation/devicetree/bindings/sound/madera.txt
4118 F:      include/dt-bindings/sound/madera*
4119 F:      include/linux/irqchip/irq-madera*
4120 F:      include/linux/mfd/madera/*
4121 F:      include/sound/madera*
4122 F:      drivers/gpio/gpio-madera*
4123 F:      drivers/irqchip/irq-madera*
4124 F:      drivers/mfd/madera*
4125 F:      drivers/mfd/cs47l*
4126 F:      drivers/pinctrl/cirrus/*
4127 F:      sound/soc/codecs/cs47l*
4128 F:      sound/soc/codecs/madera*
4129
4130 CLANG-FORMAT FILE
4131 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4132 S:      Maintained
4133 F:      .clang-format
4134
4135 CLANG/LLVM BUILD SUPPORT
4136 L:      clang-built-linux@googlegroups.com
4137 W:      https://clangbuiltlinux.github.io/
4138 B:      https://github.com/ClangBuiltLinux/linux/issues
4139 C:      irc://chat.freenode.net/clangbuiltlinux
4140 S:      Supported
4141 K:      \b(?i:clang|llvm)\b
4142 F:      Documentation/kbuild/llvm.rst
4143
4144 CLEANCACHE API
4145 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4146 L:      linux-kernel@vger.kernel.org
4147 S:      Maintained
4148 F:      mm/cleancache.c
4149 F:      include/linux/cleancache.h
4150
4151 CLK API
4152 M:      Russell King <linux@armlinux.org.uk>
4153 L:      linux-clk@vger.kernel.org
4154 S:      Maintained
4155 F:      include/linux/clk.h
4156
4157 CLOCKSOURCE, CLOCKEVENT DRIVERS
4158 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4159 M:      Thomas Gleixner <tglx@linutronix.de>
4160 L:      linux-kernel@vger.kernel.org
4161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4162 S:      Supported
4163 F:      drivers/clocksource/
4164 F:      Documentation/devicetree/bindings/timer/
4165
4166 CMPC ACPI DRIVER
4167 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4168 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4169 L:      platform-driver-x86@vger.kernel.org
4170 S:      Supported
4171 F:      drivers/platform/x86/classmate-laptop.c
4172
4173 COBALT MEDIA DRIVER
4174 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4175 L:      linux-media@vger.kernel.org
4176 T:      git git://linuxtv.org/media_tree.git
4177 W:      https://linuxtv.org
4178 S:      Supported
4179 F:      drivers/media/pci/cobalt/
4180
4181 COCCINELLE/Semantic Patches (SmPL)
4182 M:      Julia Lawall <Julia.Lawall@lip6.fr>
4183 M:      Gilles Muller <Gilles.Muller@lip6.fr>
4184 M:      Nicolas Palix <nicolas.palix@imag.fr>
4185 M:      Michal Marek <michal.lkml@markovi.net>
4186 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4188 W:      http://coccinelle.lip6.fr/
4189 S:      Supported
4190 F:      Documentation/dev-tools/coccinelle.rst
4191 F:      scripts/coccinelle/
4192 F:      scripts/coccicheck
4193
4194 CODA FILE SYSTEM
4195 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4196 M:      coda@cs.cmu.edu
4197 L:      codalist@coda.cs.cmu.edu
4198 W:      http://www.coda.cs.cmu.edu/
4199 S:      Maintained
4200 F:      Documentation/filesystems/coda.txt
4201 F:      fs/coda/
4202 F:      include/linux/coda*.h
4203 F:      include/uapi/linux/coda*.h
4204
4205 CODA V4L2 MEM2MEM DRIVER
4206 M:      Philipp Zabel <p.zabel@pengutronix.de>
4207 L:      linux-media@vger.kernel.org
4208 S:      Maintained
4209 F:      Documentation/devicetree/bindings/media/coda.txt
4210 F:      drivers/media/platform/coda/
4211
4212 CODE OF CONDUCT
4213 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4214 S:      Supported
4215 F:      Documentation/process/code-of-conduct.rst
4216 F:      Documentation/process/code-of-conduct-interpretation.rst
4217
4218 COMMON CLK FRAMEWORK
4219 M:      Michael Turquette <mturquette@baylibre.com>
4220 M:      Stephen Boyd <sboyd@kernel.org>
4221 L:      linux-clk@vger.kernel.org
4222 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4224 S:      Maintained
4225 F:      Documentation/devicetree/bindings/clock/
4226 F:      drivers/clk/
4227 X:      drivers/clk/clkdev.c
4228 F:      include/linux/clk-pr*
4229 F:      include/linux/clk/
4230 F:      include/linux/of_clk.h
4231
4232 COMMON INTERNET FILE SYSTEM (CIFS)
4233 M:      Steve French <sfrench@samba.org>
4234 L:      linux-cifs@vger.kernel.org
4235 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4236 W:      http://linux-cifs.samba.org/
4237 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4238 S:      Supported
4239 F:      Documentation/admin-guide/cifs/
4240 F:      fs/cifs/
4241
4242 COMPACTPCI HOTPLUG CORE
4243 M:      Scott Murray <scott@spiteful.org>
4244 L:      linux-pci@vger.kernel.org
4245 S:      Maintained
4246 F:      drivers/pci/hotplug/cpci_hotplug*
4247
4248 COMPACTPCI HOTPLUG GENERIC DRIVER
4249 M:      Scott Murray <scott@spiteful.org>
4250 L:      linux-pci@vger.kernel.org
4251 S:      Maintained
4252 F:      drivers/pci/hotplug/cpcihp_generic.c
4253
4254 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4255 M:      Scott Murray <scott@spiteful.org>
4256 L:      linux-pci@vger.kernel.org
4257 S:      Maintained
4258 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4259
4260 COMPAL LAPTOP SUPPORT
4261 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4262 L:      platform-driver-x86@vger.kernel.org
4263 S:      Maintained
4264 F:      drivers/platform/x86/compal-laptop.c
4265
4266 COMPILER ATTRIBUTES
4267 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4268 S:      Maintained
4269 F:      include/linux/compiler_attributes.h
4270
4271 CONEXANT ACCESSRUNNER USB DRIVER
4272 L:      accessrunner-general@lists.sourceforge.net
4273 W:      http://accessrunner.sourceforge.net/
4274 S:      Orphan
4275 F:      drivers/usb/atm/cxacru.c
4276
4277 CONFIGFS
4278 M:      Joel Becker <jlbec@evilplan.org>
4279 M:      Christoph Hellwig <hch@lst.de>
4280 T:      git git://git.infradead.org/users/hch/configfs.git
4281 S:      Supported
4282 F:      fs/configfs/
4283 F:      include/linux/configfs.h
4284
4285 CONNECTOR
4286 M:      Evgeniy Polyakov <zbr@ioremap.net>
4287 L:      netdev@vger.kernel.org
4288 S:      Maintained
4289 F:      drivers/connector/
4290
4291 CONTROL GROUP (CGROUP)
4292 M:      Tejun Heo <tj@kernel.org>
4293 M:      Li Zefan <lizefan@huawei.com>
4294 M:      Johannes Weiner <hannes@cmpxchg.org>
4295 L:      cgroups@vger.kernel.org
4296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4297 S:      Maintained
4298 F:      Documentation/admin-guide/cgroup-v2.rst
4299 F:      Documentation/admin-guide/cgroup-v1/
4300 F:      include/linux/cgroup*
4301 F:      kernel/cgroup/
4302
4303 CONTROL GROUP - CPUSET
4304 M:      Li Zefan <lizefan@huawei.com>
4305 L:      cgroups@vger.kernel.org
4306 W:      http://www.bullopensource.org/cpuset/
4307 W:      http://oss.sgi.com/projects/cpusets/
4308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4309 S:      Maintained
4310 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4311 F:      include/linux/cpuset.h
4312 F:      kernel/cgroup/cpuset.c
4313
4314 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4315 M:      Johannes Weiner <hannes@cmpxchg.org>
4316 M:      Michal Hocko <mhocko@kernel.org>
4317 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4318 L:      cgroups@vger.kernel.org
4319 L:      linux-mm@kvack.org
4320 S:      Maintained
4321 F:      mm/memcontrol.c
4322 F:      mm/swap_cgroup.c
4323
4324 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4325 M:      Tejun Heo <tj@kernel.org>
4326 M:      Jens Axboe <axboe@kernel.dk>
4327 L:      cgroups@vger.kernel.org
4328 L:      linux-block@vger.kernel.org
4329 T:      git git://git.kernel.dk/linux-block
4330 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4331 F:      block/blk-cgroup.c
4332 F:      include/linux/blk-cgroup.h
4333 F:      block/blk-throttle.c
4334 F:      block/blk-iolatency.c
4335 F:      block/bfq-cgroup.c
4336
4337 CORETEMP HARDWARE MONITORING DRIVER
4338 M:      Fenghua Yu <fenghua.yu@intel.com>
4339 L:      linux-hwmon@vger.kernel.org
4340 S:      Maintained
4341 F:      Documentation/hwmon/coretemp.rst
4342 F:      drivers/hwmon/coretemp.c
4343
4344 COSA/SRP SYNC SERIAL DRIVER
4345 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4346 W:      http://www.fi.muni.cz/~kas/cosa/
4347 S:      Maintained
4348 F:      drivers/net/wan/cosa*
4349
4350 COUNTER SUBSYSTEM
4351 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4352 L:      linux-iio@vger.kernel.org
4353 S:      Maintained
4354 F:      Documentation/ABI/testing/sysfs-bus-counter*
4355 F:      Documentation/driver-api/generic-counter.rst
4356 F:      drivers/counter/
4357 F:      include/linux/counter.h
4358 F:      include/linux/counter_enum.h
4359
4360 CPMAC ETHERNET DRIVER
4361 M:      Florian Fainelli <f.fainelli@gmail.com>
4362 L:      netdev@vger.kernel.org
4363 S:      Maintained
4364 F:      drivers/net/ethernet/ti/cpmac.c
4365
4366 CPU FREQUENCY SCALING FRAMEWORK
4367 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4368 M:      Viresh Kumar <viresh.kumar@linaro.org>
4369 L:      linux-pm@vger.kernel.org
4370 S:      Maintained
4371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4373 B:      https://bugzilla.kernel.org
4374 F:      Documentation/admin-guide/pm/cpufreq.rst
4375 F:      Documentation/admin-guide/pm/intel_pstate.rst
4376 F:      Documentation/cpu-freq/
4377 F:      Documentation/devicetree/bindings/cpufreq/
4378 F:      drivers/cpufreq/
4379 F:      kernel/sched/cpufreq*.c
4380 F:      include/linux/cpufreq.h
4381 F:      include/linux/sched/cpufreq.h
4382 F:      tools/testing/selftests/cpufreq/
4383
4384 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4385 M:      Viresh Kumar <viresh.kumar@linaro.org>
4386 M:      Sudeep Holla <sudeep.holla@arm.com>
4387 L:      linux-pm@vger.kernel.org
4388 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4389 S:      Maintained
4390 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4391
4392 CPU POWER MONITORING SUBSYSTEM
4393 M:      Thomas Renninger <trenn@suse.com>
4394 M:      Shuah Khan <shuah@kernel.org>
4395 M:      Shuah Khan <skhan@linuxfoundation.org>
4396 L:      linux-pm@vger.kernel.org
4397 S:      Maintained
4398 F:      tools/power/cpupower/
4399
4400 CPUID/MSR DRIVER
4401 M:      "H. Peter Anvin" <hpa@zytor.com>
4402 S:      Maintained
4403 F:      arch/x86/kernel/cpuid.c
4404 F:      arch/x86/kernel/msr.c
4405
4406 CPUIDLE DRIVER - ARM BIG LITTLE
4407 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4408 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4409 L:      linux-pm@vger.kernel.org
4410 L:      linux-arm-kernel@lists.infradead.org
4411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4412 S:      Maintained
4413 F:      drivers/cpuidle/cpuidle-big_little.c
4414
4415 CPUIDLE DRIVER - ARM EXYNOS
4416 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4417 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4418 M:      Kukjin Kim <kgene@kernel.org>
4419 L:      linux-pm@vger.kernel.org
4420 L:      linux-samsung-soc@vger.kernel.org
4421 S:      Supported
4422 F:      drivers/cpuidle/cpuidle-exynos.c
4423 F:      arch/arm/mach-exynos/pm.c
4424
4425 CPUIDLE DRIVER - ARM PSCI
4426 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4427 M:      Sudeep Holla <sudeep.holla@arm.com>
4428 L:      linux-pm@vger.kernel.org
4429 L:      linux-arm-kernel@lists.infradead.org
4430 S:      Supported
4431 F:      drivers/cpuidle/cpuidle-psci.c
4432
4433 CPU IDLE TIME MANAGEMENT FRAMEWORK
4434 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4435 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4436 L:      linux-pm@vger.kernel.org
4437 S:      Maintained
4438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4439 B:      https://bugzilla.kernel.org
4440 F:      Documentation/admin-guide/pm/cpuidle.rst
4441 F:      Documentation/driver-api/pm/cpuidle.rst
4442 F:      drivers/cpuidle/*
4443 F:      include/linux/cpuidle.h
4444
4445 CRAMFS FILESYSTEM
4446 M:      Nicolas Pitre <nico@fluxnic.net>
4447 S:      Maintained
4448 F:      Documentation/filesystems/cramfs.rst
4449 F:      fs/cramfs/
4450
4451 CREATIVE SB0540
4452 M:      Bastien Nocera <hadess@hadess.net>
4453 L:      linux-input@vger.kernel.org
4454 S:      Maintained
4455 F:      drivers/hid/hid-creative-sb0540.c
4456
4457 CRYPTO API
4458 M:      Herbert Xu <herbert@gondor.apana.org.au>
4459 M:      "David S. Miller" <davem@davemloft.net>
4460 L:      linux-crypto@vger.kernel.org
4461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4463 S:      Maintained
4464 F:      Documentation/crypto/
4465 F:      Documentation/devicetree/bindings/crypto/
4466 F:      arch/*/crypto/
4467 F:      crypto/
4468 F:      drivers/crypto/
4469 F:      include/crypto/
4470 F:      include/linux/crypto*
4471 F:      lib/crypto/
4472
4473 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4474 M:      Neil Horman <nhorman@tuxdriver.com>
4475 L:      linux-crypto@vger.kernel.org
4476 S:      Maintained
4477 F:      crypto/ansi_cprng.c
4478 F:      crypto/rng.c
4479
4480 CS3308 MEDIA DRIVER
4481 M:      Hans Verkuil <hverkuil@xs4all.nl>
4482 L:      linux-media@vger.kernel.org
4483 T:      git git://linuxtv.org/media_tree.git
4484 W:      http://linuxtv.org
4485 S:      Odd Fixes
4486 F:      drivers/media/i2c/cs3308.c
4487
4488 CS5535 Audio ALSA driver
4489 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4490 S:      Maintained
4491 F:      sound/pci/cs5535audio/
4492
4493 CSI DRIVERS FOR ALLWINNER V3s
4494 M:      Yong Deng <yong.deng@magewell.com>
4495 L:      linux-media@vger.kernel.org
4496 T:      git git://linuxtv.org/media_tree.git
4497 S:      Maintained
4498 F:      drivers/media/platform/sunxi/sun6i-csi/
4499 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4500
4501 CW1200 WLAN driver
4502 M:      Solomon Peachy <pizza@shaftnet.org>
4503 S:      Maintained
4504 F:      drivers/net/wireless/st/cw1200/
4505
4506 CX18 VIDEO4LINUX DRIVER
4507 M:      Andy Walls <awalls@md.metrocast.net>
4508 L:      linux-media@vger.kernel.org
4509 T:      git git://linuxtv.org/media_tree.git
4510 W:      https://linuxtv.org
4511 S:      Maintained
4512 F:      drivers/media/pci/cx18/
4513 F:      include/uapi/linux/ivtv*
4514
4515 CX2341X MPEG ENCODER HELPER MODULE
4516 M:      Hans Verkuil <hverkuil@xs4all.nl>
4517 L:      linux-media@vger.kernel.org
4518 T:      git git://linuxtv.org/media_tree.git
4519 W:      https://linuxtv.org
4520 S:      Maintained
4521 F:      drivers/media/common/cx2341x*
4522 F:      include/media/drv-intf/cx2341x.h
4523
4524 CX24120 MEDIA DRIVER
4525 M:      Jemma Denson <jdenson@gmail.com>
4526 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4527 L:      linux-media@vger.kernel.org
4528 W:      https://linuxtv.org
4529 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4530 S:      Maintained
4531 F:      drivers/media/dvb-frontends/cx24120*
4532
4533 CX88 VIDEO4LINUX DRIVER
4534 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4535 L:      linux-media@vger.kernel.org
4536 W:      https://linuxtv.org
4537 T:      git git://linuxtv.org/media_tree.git
4538 S:      Odd fixes
4539 F:      Documentation/media/v4l-drivers/cx88*
4540 F:      drivers/media/pci/cx88/
4541
4542 CXD2820R MEDIA DRIVER
4543 M:      Antti Palosaari <crope@iki.fi>
4544 L:      linux-media@vger.kernel.org
4545 W:      https://linuxtv.org
4546 W:      http://palosaari.fi/linux/
4547 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4548 T:      git git://linuxtv.org/anttip/media_tree.git
4549 S:      Maintained
4550 F:      drivers/media/dvb-frontends/cxd2820r*
4551
4552 CXGB3 ETHERNET DRIVER (CXGB3)
4553 M:      Vishal Kulkarni <vishal@chelsio.com>
4554 L:      netdev@vger.kernel.org
4555 W:      http://www.chelsio.com
4556 S:      Supported
4557 F:      drivers/net/ethernet/chelsio/cxgb3/
4558
4559 CXGB3 ISCSI DRIVER (CXGB3I)
4560 M:      Karen Xie <kxie@chelsio.com>
4561 L:      linux-scsi@vger.kernel.org
4562 W:      http://www.chelsio.com
4563 S:      Supported
4564 F:      drivers/scsi/cxgbi/cxgb3i
4565
4566 CXGB4 CRYPTO DRIVER (chcr)
4567 M:      Atul Gupta <atul.gupta@chelsio.com>
4568 L:      linux-crypto@vger.kernel.org
4569 W:      http://www.chelsio.com
4570 S:      Supported
4571 F:      drivers/crypto/chelsio
4572
4573 CXGB4 ETHERNET DRIVER (CXGB4)
4574 M:      Vishal Kulkarni <vishal@chelsio.com>
4575 L:      netdev@vger.kernel.org
4576 W:      http://www.chelsio.com
4577 S:      Supported
4578 F:      drivers/net/ethernet/chelsio/cxgb4/
4579
4580 CXGB4 ISCSI DRIVER (CXGB4I)
4581 M:      Karen Xie <kxie@chelsio.com>
4582 L:      linux-scsi@vger.kernel.org
4583 W:      http://www.chelsio.com
4584 S:      Supported
4585 F:      drivers/scsi/cxgbi/cxgb4i
4586
4587 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4588 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4589 L:      linux-rdma@vger.kernel.org
4590 W:      http://www.openfabrics.org
4591 S:      Supported
4592 F:      drivers/infiniband/hw/cxgb4/
4593 F:      include/uapi/rdma/cxgb4-abi.h
4594
4595 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4596 M:      Vishal Kulkarni <vishal@gmail.com>
4597 L:      netdev@vger.kernel.org
4598 W:      http://www.chelsio.com
4599 S:      Supported
4600 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4601
4602 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4603 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4604 M:      Andrew Donnellan <ajd@linux.ibm.com>
4605 L:      linuxppc-dev@lists.ozlabs.org
4606 S:      Supported
4607 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4608 F:      drivers/misc/cxl/
4609 F:      include/misc/cxl*
4610 F:      include/uapi/misc/cxl.h
4611 F:      Documentation/powerpc/cxl.rst
4612 F:      Documentation/ABI/testing/sysfs-class-cxl
4613
4614 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4615 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4616 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4617 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4618 L:      linux-scsi@vger.kernel.org
4619 S:      Supported
4620 F:      drivers/scsi/cxlflash/
4621 F:      include/uapi/scsi/cxlflash_ioctl.h
4622 F:      Documentation/powerpc/cxlflash.rst
4623
4624 CYBERPRO FB DRIVER
4625 M:      Russell King <linux@armlinux.org.uk>
4626 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4627 W:      http://www.armlinux.org.uk/
4628 S:      Maintained
4629 F:      drivers/video/fbdev/cyber2000fb.*
4630
4631 CYCLADES ASYNC MUX DRIVER
4632 W:      http://www.cyclades.com/
4633 S:      Orphan
4634 F:      drivers/tty/cyclades.c
4635 F:      include/linux/cyclades.h
4636 F:      include/uapi/linux/cyclades.h
4637
4638 CYCLADES PC300 DRIVER
4639 W:      http://www.cyclades.com/
4640 S:      Orphan
4641 F:      drivers/net/wan/pc300*
4642
4643 CYPRESS_FIRMWARE MEDIA DRIVER
4644 M:      Antti Palosaari <crope@iki.fi>
4645 L:      linux-media@vger.kernel.org
4646 W:      https://linuxtv.org
4647 W:      http://palosaari.fi/linux/
4648 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4649 T:      git git://linuxtv.org/anttip/media_tree.git
4650 S:      Maintained
4651 F:      drivers/media/common/cypress_firmware*
4652
4653 CYTTSP TOUCHSCREEN DRIVER
4654 M:      Ferruh Yigit <fery@cypress.com>
4655 L:      linux-input@vger.kernel.org
4656 S:      Supported
4657 F:      drivers/input/touchscreen/cyttsp*
4658 F:      include/linux/input/cyttsp.h
4659
4660 D-LINK DIR-685 TOUCHKEYS DRIVER
4661 M:      Linus Walleij <linus.walleij@linaro.org>
4662 L:      linux-input@vger.kernel.org
4663 S:      Supported
4664 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4665
4666 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4667 M:      Joshua Kinard <kumba@gentoo.org>
4668 S:      Maintained
4669 F:      drivers/rtc/rtc-ds1685.c
4670 F:      include/linux/rtc/ds1685.h
4671
4672 DAMA SLAVE for AX.25
4673 M:      Joerg Reuter <jreuter@yaina.de>
4674 W:      http://yaina.de/jreuter/
4675 W:      http://www.qsl.net/dl1bke/
4676 L:      linux-hams@vger.kernel.org
4677 S:      Maintained
4678 F:      net/ax25/af_ax25.c
4679 F:      net/ax25/ax25_dev.c
4680 F:      net/ax25/ax25_ds_*
4681 F:      net/ax25/ax25_in.c
4682 F:      net/ax25/ax25_out.c
4683 F:      net/ax25/ax25_timer.c
4684 F:      net/ax25/sysctl_net_ax25.c
4685
4686 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4687 L:      netdev@vger.kernel.org
4688 S:      Orphan
4689 F:      Documentation/networking/device_drivers/dec/dmfe.txt
4690 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4691
4692 DC390/AM53C974 SCSI driver
4693 M:      Hannes Reinecke <hare@suse.com>
4694 L:      linux-scsi@vger.kernel.org
4695 S:      Maintained
4696 F:      drivers/scsi/am53c974.c
4697
4698 DC395x SCSI driver
4699 M:      Oliver Neukum <oliver@neukum.org>
4700 M:      Ali Akcaagac <aliakc@web.de>
4701 M:      Jamie Lenehan <lenehan@twibble.org>
4702 L:      dc395x@twibble.org
4703 W:      http://twibble.org/dist/dc395x/
4704 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4705 S:      Maintained
4706 F:      Documentation/scsi/dc395x.txt
4707 F:      drivers/scsi/dc395x.*
4708
4709 DCCP PROTOCOL
4710 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
4711 L:      dccp@vger.kernel.org
4712 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4713 S:      Maintained
4714 F:      include/linux/dccp.h
4715 F:      include/uapi/linux/dccp.h
4716 F:      include/linux/tfrc.h
4717 F:      net/dccp/
4718
4719 DECnet NETWORK LAYER
4720 W:      http://linux-decnet.sourceforge.net
4721 L:      linux-decnet-user@lists.sourceforge.net
4722 S:      Orphan
4723 F:      Documentation/networking/decnet.txt
4724 F:      net/decnet/
4725
4726 DECSTATION PLATFORM SUPPORT
4727 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4728 L:      linux-mips@vger.kernel.org
4729 W:      http://www.linux-mips.org/wiki/DECstation
4730 S:      Maintained
4731 F:      arch/mips/dec/
4732 F:      arch/mips/include/asm/dec/
4733 F:      arch/mips/include/asm/mach-dec/
4734
4735 DEFXX FDDI NETWORK DRIVER
4736 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4737 S:      Maintained
4738 F:      drivers/net/fddi/defxx.*
4739
4740 DEINTERLACE DRIVERS FOR ALLWINNER H3
4741 M:      Jernej Skrabec <jernej.skrabec@siol.net>
4742 L:      linux-media@vger.kernel.org
4743 T:      git git://linuxtv.org/media_tree.git
4744 S:      Maintained
4745 F:      drivers/media/platform/sunxi/sun8i-di/
4746 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4747
4748 DEFZA FDDI NETWORK DRIVER
4749 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4750 S:      Maintained
4751 F:      drivers/net/fddi/defza.*
4752
4753 DELL LAPTOP DRIVER
4754 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4755 M:      Pali Rohár <pali.rohar@gmail.com>
4756 L:      platform-driver-x86@vger.kernel.org
4757 S:      Maintained
4758 F:      drivers/platform/x86/dell-laptop.c
4759
4760 DELL LAPTOP FREEFALL DRIVER
4761 M:      Pali Rohár <pali.rohar@gmail.com>
4762 S:      Maintained
4763 F:      drivers/platform/x86/dell-smo8800.c
4764
4765 DELL LAPTOP RBTN DRIVER
4766 M:      Pali Rohár <pali.rohar@gmail.com>
4767 S:      Maintained
4768 F:      drivers/platform/x86/dell-rbtn.*
4769
4770 DELL LAPTOP SMM DRIVER
4771 M:      Pali Rohár <pali.rohar@gmail.com>
4772 S:      Maintained
4773 F:      drivers/hwmon/dell-smm-hwmon.c
4774 F:      include/uapi/linux/i8k.h
4775
4776 DELL REMOTE BIOS UPDATE DRIVER
4777 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4778 L:      platform-driver-x86@vger.kernel.org
4779 S:      Maintained
4780 F:      drivers/platform/x86/dell_rbu.c
4781
4782 DELL SMBIOS DRIVER
4783 M:      Pali Rohár <pali.rohar@gmail.com>
4784 M:      Mario Limonciello <mario.limonciello@dell.com>
4785 L:      platform-driver-x86@vger.kernel.org
4786 S:      Maintained
4787 F:      drivers/platform/x86/dell-smbios.*
4788
4789 DELL SMBIOS SMM DRIVER
4790 M:      Mario Limonciello <mario.limonciello@dell.com>
4791 L:      platform-driver-x86@vger.kernel.org
4792 S:      Maintained
4793 F:      drivers/platform/x86/dell-smbios-smm.c
4794
4795 DELL SMBIOS WMI DRIVER
4796 M:      Mario Limonciello <mario.limonciello@dell.com>
4797 L:      platform-driver-x86@vger.kernel.org
4798 S:      Maintained
4799 F:      drivers/platform/x86/dell-smbios-wmi.c
4800 F:      tools/wmi/dell-smbios-example.c
4801
4802 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4803 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4804 L:      platform-driver-x86@vger.kernel.org
4805 S:      Maintained
4806 F:      Documentation/driver-api/dcdbas.rst
4807 F:      drivers/platform/x86/dcdbas.*
4808
4809 DELL WMI DESCRIPTOR DRIVER
4810 M:      Mario Limonciello <mario.limonciello@dell.com>
4811 S:      Maintained
4812 F:      drivers/platform/x86/dell-wmi-descriptor.c
4813
4814 DELL WMI NOTIFICATIONS DRIVER
4815 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4816 M:      Pali Rohár <pali.rohar@gmail.com>
4817 S:      Maintained
4818 F:      drivers/platform/x86/dell-wmi.c
4819
4820 DELTA ST MEDIA DRIVER
4821 M:      Hugues Fruchet <hugues.fruchet@st.com>
4822 L:      linux-media@vger.kernel.org
4823 T:      git git://linuxtv.org/media_tree.git
4824 W:      https://linuxtv.org
4825 S:      Supported
4826 F:      drivers/media/platform/sti/delta
4827
4828 DENALI NAND DRIVER
4829 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
4830 L:      linux-mtd@lists.infradead.org
4831 S:      Supported
4832 F:      drivers/mtd/nand/raw/denali*
4833
4834 DESIGNWARE EDMA CORE IP DRIVER
4835 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
4836 L:      dmaengine@vger.kernel.org
4837 S:      Maintained
4838 F:      drivers/dma/dw-edma/
4839 F:      include/linux/dma/edma.h
4840
4841 DESIGNWARE USB2 DRD IP DRIVER
4842 M:      Minas Harutyunyan <hminas@synopsys.com>
4843 L:      linux-usb@vger.kernel.org
4844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4845 S:      Maintained
4846 F:      drivers/usb/dwc2/
4847
4848 DESIGNWARE USB3 DRD IP DRIVER
4849 M:      Felipe Balbi <balbi@kernel.org>
4850 L:      linux-usb@vger.kernel.org
4851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4852 S:      Maintained
4853 F:      drivers/usb/dwc3/
4854
4855 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4856 M:      Andreas Klinger <ak@it-klinger.de>
4857 L:      linux-iio@vger.kernel.org
4858 S:      Maintained
4859 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4860 F:      drivers/iio/proximity/srf*.c
4861
4862 DEVICE COREDUMP (DEV_COREDUMP)
4863 M:      Johannes Berg <johannes@sipsolutions.net>
4864 L:      linux-kernel@vger.kernel.org
4865 S:      Maintained
4866 F:      drivers/base/devcoredump.c
4867 F:      include/linux/devcoredump.h
4868
4869 DEVICE FREQUENCY (DEVFREQ)
4870 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4871 M:      Kyungmin Park <kyungmin.park@samsung.com>
4872 M:      Chanwoo Choi <cw00.choi@samsung.com>
4873 L:      linux-pm@vger.kernel.org
4874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4875 S:      Maintained
4876 F:      drivers/devfreq/
4877 F:      include/linux/devfreq.h
4878 F:      Documentation/devicetree/bindings/devfreq/
4879 F:      include/trace/events/devfreq.h
4880
4881 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4882 M:      Chanwoo Choi <cw00.choi@samsung.com>
4883 L:      linux-pm@vger.kernel.org
4884 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4885 S:      Supported
4886 F:      drivers/devfreq/event/
4887 F:      drivers/devfreq/devfreq-event.c
4888 F:      include/dt-bindings/pmu/exynos_ppmu.h
4889 F:      include/linux/devfreq-event.h
4890 F:      Documentation/devicetree/bindings/devfreq/event/
4891
4892 DEVICE NUMBER REGISTRY
4893 M:      Torben Mathiasen <device@lanana.org>
4894 W:      http://lanana.org/docs/device-list/index.html
4895 S:      Maintained
4896
4897 DEVICE-MAPPER  (LVM)
4898 M:      Alasdair Kergon <agk@redhat.com>
4899 M:      Mike Snitzer <snitzer@redhat.com>
4900 M:      dm-devel@redhat.com
4901 L:      dm-devel@redhat.com
4902 W:      http://sources.redhat.com/dm
4903 Q:      http://patchwork.kernel.org/project/dm-devel/list/
4904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4905 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
4906 S:      Maintained
4907 F:      Documentation/admin-guide/device-mapper/
4908 F:      drivers/md/Makefile
4909 F:      drivers/md/Kconfig
4910 F:      drivers/md/dm*
4911 F:      drivers/md/persistent-data/
4912 F:      include/linux/device-mapper.h
4913 F:      include/linux/dm-*.h
4914 F:      include/uapi/linux/dm-*.h
4915
4916 DEVLINK
4917 M:      Jiri Pirko <jiri@mellanox.com>
4918 L:      netdev@vger.kernel.org
4919 S:      Supported
4920 F:      net/core/devlink.c
4921 F:      include/net/devlink.h
4922 F:      include/uapi/linux/devlink.h
4923 F:      Documentation/networking/devlink
4924
4925 DIALOG SEMICONDUCTOR DRIVERS
4926 M:      Support Opensource <support.opensource@diasemi.com>
4927 W:      http://www.dialog-semiconductor.com/products
4928 S:      Supported
4929 F:      Documentation/hwmon/da90??.rst
4930 F:      Documentation/devicetree/bindings/mfd/da90*.txt
4931 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
4932 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4933 F:      Documentation/devicetree/bindings/regulator/da92*.txt
4934 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
4935 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
4936 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
4937 F:      drivers/gpio/gpio-da90??.c
4938 F:      drivers/hwmon/da90??-hwmon.c
4939 F:      drivers/iio/adc/da91??-*.c
4940 F:      drivers/input/misc/da90??_onkey.c
4941 F:      drivers/input/touchscreen/da9052_tsi.c
4942 F:      drivers/leds/leds-da90??.c
4943 F:      drivers/mfd/da903x.c
4944 F:      drivers/mfd/da90??-*.c
4945 F:      drivers/mfd/da91??-*.c
4946 F:      drivers/power/supply/da9052-battery.c
4947 F:      drivers/power/supply/da91??-*.c
4948 F:      drivers/regulator/da903x.c
4949 F:      drivers/regulator/da9???-regulator.[ch]
4950 F:      drivers/regulator/slg51000-regulator.[ch]
4951 F:      drivers/thermal/da90??-thermal.c
4952 F:      drivers/rtc/rtc-da90??.c
4953 F:      drivers/video/backlight/da90??_bl.c
4954 F:      drivers/watchdog/da90??_wdt.c
4955 F:      include/linux/mfd/da903x.h
4956 F:      include/linux/mfd/da9052/
4957 F:      include/linux/mfd/da9055/
4958 F:      include/linux/mfd/da9062/
4959 F:      include/linux/mfd/da9063/
4960 F:      include/linux/mfd/da9150/
4961 F:      include/linux/regulator/da9211.h
4962 F:      include/sound/da[79]*.h
4963 F:      sound/soc/codecs/da[79]*.[ch]
4964
4965 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
4966 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4967 L:      linux-gpio@vger.kernel.org
4968 S:      Maintained
4969 F:      drivers/gpio/gpio-gpio-mm.c
4970
4971 DIOLAN U2C-12 I2C DRIVER
4972 M:      Guenter Roeck <linux@roeck-us.net>
4973 L:      linux-i2c@vger.kernel.org
4974 S:      Maintained
4975 F:      drivers/i2c/busses/i2c-diolan-u2c.c
4976
4977 FILESYSTEM DIRECT ACCESS (DAX)
4978 M:      Dan Williams <dan.j.williams@intel.com>
4979 R:      Matthew Wilcox <willy@infradead.org>
4980 R:      Jan Kara <jack@suse.cz>
4981 L:      linux-fsdevel@vger.kernel.org
4982 L:      linux-nvdimm@lists.01.org
4983 S:      Supported
4984 F:      fs/dax.c
4985 F:      include/linux/dax.h
4986 F:      include/trace/events/fs_dax.h
4987
4988 DEVICE DIRECT ACCESS (DAX)
4989 M:      Dan Williams <dan.j.williams@intel.com>
4990 M:      Vishal Verma <vishal.l.verma@intel.com>
4991 M:      Dave Jiang <dave.jiang@intel.com>
4992 L:      linux-nvdimm@lists.01.org
4993 S:      Supported
4994 F:      drivers/dax/
4995
4996 DIRECTORY NOTIFICATION (DNOTIFY)
4997 M:      Jan Kara <jack@suse.cz>
4998 R:      Amir Goldstein <amir73il@gmail.com>
4999 L:      linux-fsdevel@vger.kernel.org
5000 S:      Maintained
5001 F:      Documentation/filesystems/dnotify.txt
5002 F:      fs/notify/dnotify/
5003 F:      include/linux/dnotify.h
5004
5005 DISK GEOMETRY AND PARTITION HANDLING
5006 M:      Andries Brouwer <aeb@cwi.nl>
5007 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5008 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5009 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5010 S:      Maintained
5011
5012 DISKQUOTA
5013 M:      Jan Kara <jack@suse.com>
5014 S:      Maintained
5015 F:      Documentation/filesystems/quota.txt
5016 F:      fs/quota/
5017 F:      include/linux/quota*.h
5018 F:      include/uapi/linux/quota*.h
5019
5020 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5021 M:      Bernie Thompson <bernie@plugable.com>
5022 L:      linux-fbdev@vger.kernel.org
5023 S:      Maintained
5024 W:      http://plugable.com/category/projects/udlfb/
5025 F:      drivers/video/fbdev/udlfb.c
5026 F:      include/video/udlfb.h
5027 F:      Documentation/fb/udlfb.rst
5028
5029 DISTRIBUTED LOCK MANAGER (DLM)
5030 M:      Christine Caulfield <ccaulfie@redhat.com>
5031 M:      David Teigland <teigland@redhat.com>
5032 L:      cluster-devel@redhat.com
5033 W:      http://sources.redhat.com/cluster/
5034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5035 S:      Supported
5036 F:      fs/dlm/
5037
5038 DMA BUFFER SHARING FRAMEWORK
5039 M:      Sumit Semwal <sumit.semwal@linaro.org>
5040 S:      Maintained
5041 L:      linux-media@vger.kernel.org
5042 L:      dri-devel@lists.freedesktop.org
5043 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5044 F:      drivers/dma-buf/
5045 F:      include/linux/dma-buf*
5046 F:      include/linux/reservation.h
5047 F:      include/linux/*fence.h
5048 F:      Documentation/driver-api/dma-buf.rst
5049 K:      dma_(buf|fence|resv)
5050 T:      git git://anongit.freedesktop.org/drm/drm-misc
5051
5052 DMA-BUF HEAPS FRAMEWORK
5053 M:      Sumit Semwal <sumit.semwal@linaro.org>
5054 R:      Andrew F. Davis <afd@ti.com>
5055 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5056 R:      Liam Mark <lmark@codeaurora.org>
5057 R:      Laura Abbott <labbott@redhat.com>
5058 R:      Brian Starkey <Brian.Starkey@arm.com>
5059 R:      John Stultz <john.stultz@linaro.org>
5060 S:      Maintained
5061 L:      linux-media@vger.kernel.org
5062 L:      dri-devel@lists.freedesktop.org
5063 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5064 F:      include/uapi/linux/dma-heap.h
5065 F:      include/linux/dma-heap.h
5066 F:      drivers/dma-buf/dma-heap.c
5067 F:      drivers/dma-buf/heaps/*
5068 T:      git git://anongit.freedesktop.org/drm/drm-misc
5069
5070 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5071 M:      Vinod Koul <vkoul@kernel.org>
5072 L:      dmaengine@vger.kernel.org
5073 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5074 S:      Maintained
5075 F:      drivers/dma/
5076 F:      include/linux/dmaengine.h
5077 F:      include/linux/of_dma.h
5078 F:      Documentation/devicetree/bindings/dma/
5079 F:      Documentation/driver-api/dmaengine/
5080 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
5081
5082 DMA MAPPING HELPERS
5083 M:      Christoph Hellwig <hch@lst.de>
5084 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5085 R:      Robin Murphy <robin.murphy@arm.com>
5086 L:      iommu@lists.linux-foundation.org
5087 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5088 W:      http://git.infradead.org/users/hch/dma-mapping.git
5089 S:      Supported
5090 F:      kernel/dma/
5091 F:      include/asm-generic/dma-mapping.h
5092 F:      include/linux/dma-direct.h
5093 F:      include/linux/dma-mapping.h
5094 F:      include/linux/dma-noncoherent.h
5095
5096 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5097 M:      Lukasz Luba <lukasz.luba@arm.com>
5098 L:      linux-pm@vger.kernel.org
5099 L:      linux-samsung-soc@vger.kernel.org
5100 S:      Maintained
5101 F:      drivers/memory/samsung/exynos5422-dmc.c
5102 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5103
5104 DME1737 HARDWARE MONITOR DRIVER
5105 M:      Juerg Haefliger <juergh@gmail.com>
5106 L:      linux-hwmon@vger.kernel.org
5107 S:      Maintained
5108 F:      Documentation/hwmon/dme1737.rst
5109 F:      drivers/hwmon/dme1737.c
5110
5111 DMI/SMBIOS SUPPORT
5112 M:      Jean Delvare <jdelvare@suse.com>
5113 S:      Maintained
5114 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5115 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5116 F:      drivers/firmware/dmi-id.c
5117 F:      drivers/firmware/dmi_scan.c
5118 F:      include/linux/dmi.h
5119
5120 DOCUMENTATION
5121 M:      Jonathan Corbet <corbet@lwn.net>
5122 L:      linux-doc@vger.kernel.org
5123 S:      Maintained
5124 F:      Documentation/
5125 F:      scripts/documentation-file-ref-check
5126 F:      scripts/kernel-doc
5127 F:      scripts/sphinx-pre-install
5128 X:      Documentation/ABI/
5129 X:      Documentation/firmware-guide/acpi/
5130 X:      Documentation/devicetree/
5131 X:      Documentation/i2c/
5132 X:      Documentation/media/
5133 X:      Documentation/power/
5134 X:      Documentation/spi/
5135 T:      git git://git.lwn.net/linux.git docs-next
5136
5137 DOCUMENTATION/ITALIAN
5138 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5139 L:      linux-doc@vger.kernel.org
5140 S:      Maintained
5141 F:      Documentation/translations/it_IT
5142
5143 DOCUMENTATION SCRIPTS
5144 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5145 L:      linux-doc@vger.kernel.org
5146 S:      Maintained
5147 F:      scripts/documentation-file-ref-check
5148 F:      scripts/sphinx-pre-install
5149 F:      Documentation/sphinx/parse-headers.pl
5150
5151 DONGWOON DW9714 LENS VOICE COIL DRIVER
5152 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5153 L:      linux-media@vger.kernel.org
5154 T:      git git://linuxtv.org/media_tree.git
5155 S:      Maintained
5156 F:      drivers/media/i2c/dw9714.c
5157 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5158
5159 DONGWOON DW9807 LENS VOICE COIL DRIVER
5160 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5161 L:      linux-media@vger.kernel.org
5162 T:      git git://linuxtv.org/media_tree.git
5163 S:      Maintained
5164 F:      drivers/media/i2c/dw9807-vcm.c
5165 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5166
5167 DOUBLETALK DRIVER
5168 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5169 L:      blinux-list@redhat.com
5170 S:      Maintained
5171 F:      drivers/char/dtlk.c
5172 F:      include/linux/dtlk.h
5173
5174 DPAA2 DATAPATH I/O (DPIO) DRIVER
5175 M:      Roy Pledge <Roy.Pledge@nxp.com>
5176 L:      linux-kernel@vger.kernel.org
5177 S:      Maintained
5178 F:      drivers/soc/fsl/dpio
5179
5180 DPAA2 ETHERNET DRIVER
5181 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5182 L:      netdev@vger.kernel.org
5183 S:      Maintained
5184 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5185 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5186 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5187 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5188 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5189 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5190 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5191 F:      Documentation/networking/device_drivers/freescale/dpaa2/ethernet-driver.rst
5192 F:      Documentation/networking/device_drivers/freescale/dpaa2/mac-phy-support.rst
5193
5194 DPAA2 ETHERNET SWITCH DRIVER
5195 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5196 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5197 L:      linux-kernel@vger.kernel.org
5198 S:      Maintained
5199 F:      drivers/staging/fsl-dpaa2/ethsw
5200
5201 DPT_I2O SCSI RAID DRIVER
5202 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5203 L:      linux-scsi@vger.kernel.org
5204 W:      http://www.adaptec.com/
5205 S:      Maintained
5206 F:      drivers/scsi/dpt*
5207 F:      drivers/scsi/dpt/
5208
5209 DRBD DRIVER
5210 M:      Philipp Reisner <philipp.reisner@linbit.com>
5211 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5212 L:      drbd-dev@lists.linbit.com
5213 W:      http://www.drbd.org
5214 T:      git git://git.linbit.com/linux-drbd.git
5215 T:      git git://git.linbit.com/drbd-8.4.git
5216 S:      Supported
5217 F:      drivers/block/drbd/
5218 F:      lib/lru_cache.c
5219 F:      Documentation/admin-guide/blockdev/
5220
5221 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5222 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5223 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5225 S:      Supported
5226 F:      Documentation/core-api/kobject.rst
5227 F:      drivers/base/
5228 F:      fs/debugfs/
5229 F:      fs/sysfs/
5230 F:      include/linux/debugfs.h
5231 F:      include/linux/kobj*
5232 F:      lib/kobj*
5233
5234 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
5235 M:      Kevin Hilman <khilman@kernel.org>
5236 M:      Nishanth Menon <nm@ti.com>
5237 S:      Maintained
5238 F:      drivers/power/avs/
5239 F:      include/linux/power/smartreflex.h
5240 L:      linux-pm@vger.kernel.org
5241
5242 DRM DRIVER FOR ARM PL111 CLCD
5243 M:      Eric Anholt <eric@anholt.net>
5244 T:      git git://anongit.freedesktop.org/drm/drm-misc
5245 S:      Supported
5246 F:      drivers/gpu/drm/pl111/
5247
5248 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5249 M:      Linus Walleij <linus.walleij@linaro.org>
5250 T:      git git://anongit.freedesktop.org/drm/drm-misc
5251 S:      Maintained
5252 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5253 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.txt
5254
5255 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5256 M:      Dave Airlie <airlied@redhat.com>
5257 S:      Odd Fixes
5258 F:      drivers/gpu/drm/ast/
5259
5260 DRM DRIVER FOR ASPEED BMC GFX
5261 M:      Joel Stanley <joel@jms.id.au>
5262 L:      linux-aspeed@lists.ozlabs.org
5263 T:      git git://anongit.freedesktop.org/drm/drm-misc
5264 S:      Supported
5265 F:      drivers/gpu/drm/aspeed/
5266 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5267
5268 DRM DRIVER FOR BOCHS VIRTUAL GPU
5269 M:      Gerd Hoffmann <kraxel@redhat.com>
5270 L:      virtualization@lists.linux-foundation.org
5271 T:      git git://anongit.freedesktop.org/drm/drm-misc
5272 S:      Maintained
5273 F:      drivers/gpu/drm/bochs/
5274
5275 DRM DRIVER FOR BOE HIMAX8279D PANELS
5276 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5277 S:      Maintained
5278 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5279 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.txt
5280
5281 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5282 M:      Linus Walleij <linus.walleij@linaro.org>
5283 T:      git git://anongit.freedesktop.org/drm/drm-misc
5284 S:      Maintained
5285 F:      drivers/gpu/drm/tve200/
5286
5287 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5288 M:      Jagan Teki <jagan@amarulasolutions.com>
5289 S:      Maintained
5290 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5291 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.txt
5292
5293 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5294 M:      Hans de Goede <hdegoede@redhat.com>
5295 T:      git git://anongit.freedesktop.org/drm/drm-misc
5296 S:      Maintained
5297 F:      drivers/gpu/drm/tiny/gm12u320.c
5298
5299 DRM DRIVER FOR ILITEK ILI9225 PANELS
5300 M:      David Lechner <david@lechnology.com>
5301 T:      git git://anongit.freedesktop.org/drm/drm-misc
5302 S:      Maintained
5303 F:      drivers/gpu/drm/tiny/ili9225.c
5304 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5305
5306 DRM DRIVER FOR HX8357D PANELS
5307 M:      Eric Anholt <eric@anholt.net>
5308 T:      git git://anongit.freedesktop.org/drm/drm-misc
5309 S:      Maintained
5310 F:      drivers/gpu/drm/tiny/hx8357d.c
5311 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5312
5313 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5314 S:      Orphan / Obsolete
5315 F:      drivers/gpu/drm/i810/
5316 F:      include/uapi/drm/i810_drm.h
5317
5318 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5319 S:      Orphan / Obsolete
5320 F:      drivers/gpu/drm/mga/
5321 F:      include/uapi/drm/mga_drm.h
5322
5323 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
5324 M:      Dave Airlie <airlied@redhat.com>
5325 S:      Odd Fixes
5326 F:      drivers/gpu/drm/mgag200/
5327
5328 DRM DRIVER FOR MI0283QT
5329 M:      Noralf Trønnes <noralf@tronnes.org>
5330 T:      git git://anongit.freedesktop.org/drm/drm-misc
5331 S:      Maintained
5332 F:      drivers/gpu/drm/tiny/mi0283qt.c
5333 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5334
5335 DRM DRIVER FOR MSM ADRENO GPU
5336 M:      Rob Clark <robdclark@gmail.com>
5337 M:      Sean Paul <sean@poorly.run>
5338 L:      linux-arm-msm@vger.kernel.org
5339 L:      dri-devel@lists.freedesktop.org
5340 L:      freedreno@lists.freedesktop.org
5341 T:      git https://gitlab.freedesktop.org/drm/msm.git
5342 S:      Maintained
5343 F:      drivers/gpu/drm/msm/
5344 F:      include/uapi/drm/msm_drm.h
5345 F:      Documentation/devicetree/bindings/display/msm/
5346
5347 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5348 M:      Ben Skeggs <bskeggs@redhat.com>
5349 L:      dri-devel@lists.freedesktop.org
5350 L:      nouveau@lists.freedesktop.org
5351 T:      git git://github.com/skeggsb/linux
5352 S:      Supported
5353 F:      drivers/gpu/drm/nouveau/
5354 F:      include/uapi/drm/nouveau_drm.h
5355
5356 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5357 M:      Stefan Mavrodiev <stefan@olimex.com>
5358 S:      Maintained
5359 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5360 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.txt
5361
5362 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5363 M:      Noralf Trønnes <noralf@tronnes.org>
5364 T:      git git://anongit.freedesktop.org/drm/drm-misc
5365 S:      Maintained
5366 F:      drivers/gpu/drm/tiny/repaper.c
5367 F:      Documentation/devicetree/bindings/display/repaper.txt
5368
5369 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5370 M:      Dave Airlie <airlied@redhat.com>
5371 M:      Gerd Hoffmann <kraxel@redhat.com>
5372 L:      virtualization@lists.linux-foundation.org
5373 T:      git git://anongit.freedesktop.org/drm/drm-misc
5374 S:      Obsolete
5375 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5376 F:      drivers/gpu/drm/cirrus/
5377
5378 DRM DRIVER FOR QXL VIRTUAL GPU
5379 M:      Dave Airlie <airlied@redhat.com>
5380 M:      Gerd Hoffmann <kraxel@redhat.com>
5381 L:      virtualization@lists.linux-foundation.org
5382 L:      spice-devel@lists.freedesktop.org
5383 T:      git git://anongit.freedesktop.org/drm/drm-misc
5384 S:      Maintained
5385 F:      drivers/gpu/drm/qxl/
5386 F:      include/uapi/drm/qxl_drm.h
5387
5388 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5389 M:      Robert Chiras <robert.chiras@nxp.com>
5390 S:      Maintained
5391 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5392 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.txt
5393
5394 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5395 S:      Orphan / Obsolete
5396 F:      drivers/gpu/drm/r128/
5397 F:      include/uapi/drm/r128_drm.h
5398
5399 DRM DRIVER FOR ROCKTECH JH057N00900 PANELS
5400 M:      Guido Günther <agx@sigxcpu.org>
5401 R:      Purism Kernel Team <kernel@puri.sm>
5402 S:      Maintained
5403 F:      drivers/gpu/drm/panel/panel-rocktech-jh057n00900.c
5404 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.txt
5405
5406 DRM DRIVER FOR SAVAGE VIDEO CARDS
5407 S:      Orphan / Obsolete
5408 F:      drivers/gpu/drm/savage/
5409 F:      include/uapi/drm/savage_drm.h
5410
5411 DRM DRIVER FOR SIS VIDEO CARDS
5412 S:      Orphan / Obsolete
5413 F:      drivers/gpu/drm/sis/
5414 F:      include/uapi/drm/sis_drm.h
5415
5416 DRM DRIVER FOR SITRONIX ST7701 PANELS
5417 M:      Jagan Teki <jagan@amarulasolutions.com>
5418 S:      Maintained
5419 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5420 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.txt
5421
5422 DRM DRIVER FOR SITRONIX ST7586 PANELS
5423 M:      David Lechner <david@lechnology.com>
5424 T:      git git://anongit.freedesktop.org/drm/drm-misc
5425 S:      Maintained
5426 F:      drivers/gpu/drm/tiny/st7586.c
5427 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5428
5429 DRM DRIVER FOR SITRONIX ST7735R PANELS
5430 M:      David Lechner <david@lechnology.com>
5431 T:      git git://anongit.freedesktop.org/drm/drm-misc
5432 S:      Maintained
5433 F:      drivers/gpu/drm/tiny/st7735r.c
5434 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.txt
5435
5436 DRM DRIVER FOR SONY ACX424AKP PANELS
5437 M:      Linus Walleij <linus.walleij@linaro.org>
5438 T:      git git://anongit.freedesktop.org/drm/drm-misc
5439 S:      Maintained
5440 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5441
5442 DRM DRIVER FOR ST-ERICSSON MCDE
5443 M:      Linus Walleij <linus.walleij@linaro.org>
5444 T:      git git://anongit.freedesktop.org/drm/drm-misc
5445 S:      Maintained
5446 F:      drivers/gpu/drm/mcde/
5447 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5448
5449 DRM DRIVER FOR TDFX VIDEO CARDS
5450 S:      Orphan / Obsolete
5451 F:      drivers/gpu/drm/tdfx/
5452
5453 DRM DRIVER FOR TPO TPG110 PANELS
5454 M:      Linus Walleij <linus.walleij@linaro.org>
5455 T:      git git://anongit.freedesktop.org/drm/drm-misc
5456 S:      Maintained
5457 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5458 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5459
5460 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5461 M:      Dave Airlie <airlied@redhat.com>
5462 R:      Sean Paul <sean@poorly.run>
5463 L:      dri-devel@lists.freedesktop.org
5464 S:      Odd Fixes
5465 F:      drivers/gpu/drm/udl/
5466 T:      git git://anongit.freedesktop.org/drm/drm-misc
5467
5468 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5469 M:      Hans de Goede <hdegoede@redhat.com>
5470 L:      dri-devel@lists.freedesktop.org
5471 S:      Maintained
5472 F:      drivers/gpu/drm/vboxvideo/
5473 T:      git git://anongit.freedesktop.org/drm/drm-misc
5474
5475 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5476 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5477 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5478 R:      Daniel Vetter <daniel@ffwll.ch>
5479 T:      git git://anongit.freedesktop.org/drm/drm-misc
5480 S:      Maintained
5481 L:      dri-devel@lists.freedesktop.org
5482 F:      drivers/gpu/drm/vkms/
5483 F:      Documentation/gpu/vkms.rst
5484
5485 DRM DRIVER FOR VMWARE VIRTUAL GPU
5486 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5487 M:      Thomas Hellstrom <thellstrom@vmware.com>
5488 L:      dri-devel@lists.freedesktop.org
5489 T:      git git://people.freedesktop.org/~thomash/linux
5490 S:      Supported
5491 F:      drivers/gpu/drm/vmwgfx/
5492 F:      include/uapi/drm/vmwgfx_drm.h
5493
5494 DRM DRIVERS
5495 M:      David Airlie <airlied@linux.ie>
5496 M:      Daniel Vetter <daniel@ffwll.ch>
5497 L:      dri-devel@lists.freedesktop.org
5498 T:      git git://anongit.freedesktop.org/drm/drm
5499 B:      https://bugs.freedesktop.org/
5500 C:      irc://chat.freenode.net/dri-devel
5501 S:      Maintained
5502 F:      drivers/gpu/drm/
5503 F:      drivers/gpu/vga/
5504 F:      Documentation/devicetree/bindings/display/
5505 F:      Documentation/devicetree/bindings/gpu/
5506 F:      Documentation/gpu/
5507 F:      include/drm/
5508 F:      include/uapi/drm/
5509 F:      include/linux/vga*
5510
5511 DRM DRIVERS AND MISC GPU PATCHES
5512 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5513 M:      Maxime Ripard <mripard@kernel.org>
5514 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5515 S:      Maintained
5516 T:      git git://anongit.freedesktop.org/drm/drm-misc
5517 F:      Documentation/gpu/
5518 F:      drivers/gpu/vga/
5519 F:      drivers/gpu/drm/*
5520 F:      include/drm/drm*
5521 F:      include/uapi/drm/drm*
5522 F:      include/linux/vga*
5523
5524 DRM DRIVERS FOR ALLWINNER A10
5525 M:      Maxime Ripard <mripard@kernel.org>
5526 M:      Chen-Yu Tsai <wens@csie.org>
5527 L:      dri-devel@lists.freedesktop.org
5528 S:      Supported
5529 F:      drivers/gpu/drm/sun4i/
5530 F:      Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
5531 T:      git git://anongit.freedesktop.org/drm/drm-misc
5532
5533 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5534 M:      Maxime Ripard <mripard@kernel.org>
5535 M:      Chen-Yu Tsai <wens@csie.org>
5536 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5537 L:      dri-devel@lists.freedesktop.org
5538 S:      Supported
5539 F:      drivers/gpu/drm/sun4i/sun8i*
5540 T:      git git://anongit.freedesktop.org/drm/drm-misc
5541
5542 DRM DRIVERS FOR AMLOGIC SOCS
5543 M:      Neil Armstrong <narmstrong@baylibre.com>
5544 L:      dri-devel@lists.freedesktop.org
5545 L:      linux-amlogic@lists.infradead.org
5546 W:      http://linux-meson.com/
5547 S:      Supported
5548 F:      drivers/gpu/drm/meson/
5549 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5550 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5551 F:      Documentation/gpu/meson.rst
5552 T:      git git://anongit.freedesktop.org/drm/drm-misc
5553
5554 DRM DRIVERS FOR ATMEL HLCDC
5555 M:      Sam Ravnborg <sam@ravnborg.org>
5556 M:      Boris Brezillon <bbrezillon@kernel.org>
5557 L:      dri-devel@lists.freedesktop.org
5558 S:      Supported
5559 F:      drivers/gpu/drm/atmel-hlcdc/
5560 F:      Documentation/devicetree/bindings/display/atmel/
5561 T:      git git://anongit.freedesktop.org/drm/drm-misc
5562
5563 DRM DRIVERS FOR BRIDGE CHIPS
5564 M:      Andrzej Hajda <a.hajda@samsung.com>
5565 M:      Neil Armstrong <narmstrong@baylibre.com>
5566 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5567 R:      Jonas Karlman <jonas@kwiboo.se>
5568 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5569 S:      Maintained
5570 T:      git git://anongit.freedesktop.org/drm/drm-misc
5571 F:      drivers/gpu/drm/bridge/
5572
5573 DRM DRIVERS FOR EXYNOS
5574 M:      Inki Dae <inki.dae@samsung.com>
5575 M:      Joonyoung Shim <jy0922.shim@samsung.com>
5576 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
5577 M:      Kyungmin Park <kyungmin.park@samsung.com>
5578 L:      dri-devel@lists.freedesktop.org
5579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5580 S:      Supported
5581 F:      drivers/gpu/drm/exynos/
5582 F:      include/uapi/drm/exynos_drm.h
5583 F:      Documentation/devicetree/bindings/display/exynos/
5584
5585 DRM DRIVERS FOR FREESCALE DCU
5586 M:      Stefan Agner <stefan@agner.ch>
5587 M:      Alison Wang <alison.wang@nxp.com>
5588 L:      dri-devel@lists.freedesktop.org
5589 S:      Supported
5590 F:      drivers/gpu/drm/fsl-dcu/
5591 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5592 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5593 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19-05b.txt
5594 T:      git git://anongit.freedesktop.org/drm/drm-misc
5595
5596 DRM DRIVERS FOR FREESCALE IMX
5597 M:      Philipp Zabel <p.zabel@pengutronix.de>
5598 L:      dri-devel@lists.freedesktop.org
5599 S:      Maintained
5600 F:      drivers/gpu/drm/imx/
5601 F:      drivers/gpu/ipu-v3/
5602 F:      Documentation/devicetree/bindings/display/imx/
5603
5604 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5605 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5606 L:      dri-devel@lists.freedesktop.org
5607 T:      git git://github.com/patjak/drm-gma500
5608 S:      Maintained
5609 F:      drivers/gpu/drm/gma500/
5610
5611 DRM DRIVERS FOR HISILICON
5612 M:      Xinliang Liu <z.liuxinliang@hisilicon.com>
5613 M:      Rongrong Zou <zourongrong@gmail.com>
5614 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
5615 R:      Chen Feng <puck.chen@hisilicon.com>
5616 L:      dri-devel@lists.freedesktop.org
5617 T:      git git://github.com/xin3liang/linux.git
5618 S:      Maintained
5619 F:      drivers/gpu/drm/hisilicon/
5620 F:      Documentation/devicetree/bindings/display/hisilicon/
5621
5622 DRM DRIVERS FOR LIMA
5623 M:      Qiang Yu <yuq825@gmail.com>
5624 L:      dri-devel@lists.freedesktop.org
5625 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
5626 S:      Maintained
5627 F:      drivers/gpu/drm/lima/
5628 F:      include/uapi/drm/lima_drm.h
5629 T:      git git://anongit.freedesktop.org/drm/drm-misc
5630
5631 DRM DRIVERS FOR MEDIATEK
5632 M:      CK Hu <ck.hu@mediatek.com>
5633 M:      Philipp Zabel <p.zabel@pengutronix.de>
5634 L:      dri-devel@lists.freedesktop.org
5635 S:      Supported
5636 F:      drivers/gpu/drm/mediatek/
5637 F:      Documentation/devicetree/bindings/display/mediatek/
5638
5639 DRM DRIVERS FOR NVIDIA TEGRA
5640 M:      Thierry Reding <thierry.reding@gmail.com>
5641 L:      dri-devel@lists.freedesktop.org
5642 L:      linux-tegra@vger.kernel.org
5643 T:      git git://anongit.freedesktop.org/tegra/linux.git
5644 S:      Supported
5645 F:      drivers/gpu/drm/tegra/
5646 F:      drivers/gpu/host1x/
5647 F:      include/linux/host1x.h
5648 F:      include/uapi/drm/tegra_drm.h
5649 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5650
5651 DRM DRIVERS FOR RENESAS
5652 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5653 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5654 L:      dri-devel@lists.freedesktop.org
5655 L:      linux-renesas-soc@vger.kernel.org
5656 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5657 S:      Supported
5658 F:      drivers/gpu/drm/rcar-du/
5659 F:      drivers/gpu/drm/shmobile/
5660 F:      include/linux/platform_data/shmob_drm.h
5661 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5662 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
5663 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5664
5665 DRM DRIVERS FOR ROCKCHIP
5666 M:      Sandy Huang <hjc@rock-chips.com>
5667 M:      Heiko Stübner <heiko@sntech.de>
5668 L:      dri-devel@lists.freedesktop.org
5669 S:      Maintained
5670 F:      drivers/gpu/drm/rockchip/
5671 F:      Documentation/devicetree/bindings/display/rockchip/
5672 T:      git git://anongit.freedesktop.org/drm/drm-misc
5673
5674 DRM DRIVERS FOR STI
5675 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5676 M:      Vincent Abriou <vincent.abriou@st.com>
5677 L:      dri-devel@lists.freedesktop.org
5678 T:      git git://anongit.freedesktop.org/drm/drm-misc
5679 S:      Maintained
5680 F:      drivers/gpu/drm/sti
5681 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5682
5683 DRM DRIVERS FOR STM
5684 M:      Yannick Fertre <yannick.fertre@st.com>
5685 M:      Philippe Cornu <philippe.cornu@st.com>
5686 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5687 M:      Vincent Abriou <vincent.abriou@st.com>
5688 L:      dri-devel@lists.freedesktop.org
5689 T:      git git://anongit.freedesktop.org/drm/drm-misc
5690 S:      Maintained
5691 F:      drivers/gpu/drm/stm
5692 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5693
5694 DRM DRIVERS FOR TI LCDC
5695 M:      Jyri Sarha <jsarha@ti.com>
5696 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5697 L:      dri-devel@lists.freedesktop.org
5698 S:      Maintained
5699 F:      drivers/gpu/drm/tilcdc/
5700 F:      Documentation/devicetree/bindings/display/tilcdc/
5701
5702 DRM DRIVERS FOR TI OMAP
5703 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5704 L:      dri-devel@lists.freedesktop.org
5705 S:      Maintained
5706 F:      drivers/gpu/drm/omapdrm/
5707 F:      Documentation/devicetree/bindings/display/ti/
5708
5709 DRM DRIVERS FOR V3D
5710 M:      Eric Anholt <eric@anholt.net>
5711 S:      Supported
5712 F:      drivers/gpu/drm/v3d/
5713 F:      include/uapi/drm/v3d_drm.h
5714 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5715 T:      git git://anongit.freedesktop.org/drm/drm-misc
5716
5717 DRM DRIVERS FOR VC4
5718 M:      Eric Anholt <eric@anholt.net>
5719 T:      git git://github.com/anholt/linux
5720 S:      Supported
5721 F:      drivers/gpu/drm/vc4/
5722 F:      include/uapi/drm/vc4_drm.h
5723 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
5724 T:      git git://anongit.freedesktop.org/drm/drm-misc
5725
5726 DRM DRIVERS FOR VIVANTE GPU IP
5727 M:      Lucas Stach <l.stach@pengutronix.de>
5728 R:      Russell King <linux+etnaviv@armlinux.org.uk>
5729 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
5730 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
5731 L:      dri-devel@lists.freedesktop.org
5732 S:      Maintained
5733 F:      drivers/gpu/drm/etnaviv/
5734 F:      include/uapi/drm/etnaviv_drm.h
5735 F:      Documentation/devicetree/bindings/display/etnaviv/
5736
5737 DRM DRIVERS FOR ZTE ZX
5738 M:      Shawn Guo <shawnguo@kernel.org>
5739 L:      dri-devel@lists.freedesktop.org
5740 S:      Maintained
5741 F:      drivers/gpu/drm/zte/
5742 F:      Documentation/devicetree/bindings/display/zte,vou.txt
5743 T:      git git://anongit.freedesktop.org/drm/drm-misc
5744
5745 DRM PANEL DRIVERS
5746 M:      Thierry Reding <thierry.reding@gmail.com>
5747 R:      Sam Ravnborg <sam@ravnborg.org>
5748 L:      dri-devel@lists.freedesktop.org
5749 T:      git git://anongit.freedesktop.org/drm/drm-misc
5750 S:      Maintained
5751 F:      drivers/gpu/drm/drm_panel.c
5752 F:      drivers/gpu/drm/panel/
5753 F:      include/drm/drm_panel.h
5754 F:      Documentation/devicetree/bindings/display/panel/
5755
5756 DRM DRIVERS FOR XEN
5757 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
5758 T:      git git://anongit.freedesktop.org/drm/drm-misc
5759 L:      dri-devel@lists.freedesktop.org
5760 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
5761 S:      Supported
5762 F:      drivers/gpu/drm/xen/
5763 F:      Documentation/gpu/xen-front.rst
5764
5765 DRM TTM SUBSYSTEM
5766 M:      Christian Koenig <christian.koenig@amd.com>
5767 M:      Huang Rui <ray.huang@amd.com>
5768 T:      git git://people.freedesktop.org/~agd5f/linux
5769 S:      Maintained
5770 L:      dri-devel@lists.freedesktop.org
5771 F:      include/drm/ttm/
5772 F:      drivers/gpu/drm/ttm/
5773
5774 DSBR100 USB FM RADIO DRIVER
5775 M:      Alexey Klimov <klimov.linux@gmail.com>
5776 L:      linux-media@vger.kernel.org
5777 T:      git git://linuxtv.org/media_tree.git
5778 S:      Maintained
5779 F:      drivers/media/radio/dsbr100.c
5780
5781 DT3155 MEDIA DRIVER
5782 M:      Hans Verkuil <hverkuil@xs4all.nl>
5783 L:      linux-media@vger.kernel.org
5784 T:      git git://linuxtv.org/media_tree.git
5785 W:      https://linuxtv.org
5786 S:      Odd Fixes
5787 F:      drivers/media/pci/dt3155/
5788
5789 DVB_USB_AF9015 MEDIA DRIVER
5790 M:      Antti Palosaari <crope@iki.fi>
5791 L:      linux-media@vger.kernel.org
5792 W:      https://linuxtv.org
5793 W:      http://palosaari.fi/linux/
5794 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5795 T:      git git://linuxtv.org/anttip/media_tree.git
5796 S:      Maintained
5797 F:      drivers/media/usb/dvb-usb-v2/af9015*
5798
5799 DVB_USB_AF9035 MEDIA DRIVER
5800 M:      Antti Palosaari <crope@iki.fi>
5801 L:      linux-media@vger.kernel.org
5802 W:      https://linuxtv.org
5803 W:      http://palosaari.fi/linux/
5804 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5805 T:      git git://linuxtv.org/anttip/media_tree.git
5806 S:      Maintained
5807 F:      drivers/media/usb/dvb-usb-v2/af9035*
5808
5809 DVB_USB_ANYSEE MEDIA DRIVER
5810 M:      Antti Palosaari <crope@iki.fi>
5811 L:      linux-media@vger.kernel.org
5812 W:      https://linuxtv.org
5813 W:      http://palosaari.fi/linux/
5814 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5815 T:      git git://linuxtv.org/anttip/media_tree.git
5816 S:      Maintained
5817 F:      drivers/media/usb/dvb-usb-v2/anysee*
5818
5819 DVB_USB_AU6610 MEDIA DRIVER
5820 M:      Antti Palosaari <crope@iki.fi>
5821 L:      linux-media@vger.kernel.org
5822 W:      https://linuxtv.org
5823 W:      http://palosaari.fi/linux/
5824 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5825 T:      git git://linuxtv.org/anttip/media_tree.git
5826 S:      Maintained
5827 F:      drivers/media/usb/dvb-usb-v2/au6610*
5828
5829 DVB_USB_CE6230 MEDIA DRIVER
5830 M:      Antti Palosaari <crope@iki.fi>
5831 L:      linux-media@vger.kernel.org
5832 W:      https://linuxtv.org
5833 W:      http://palosaari.fi/linux/
5834 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5835 T:      git git://linuxtv.org/anttip/media_tree.git
5836 S:      Maintained
5837 F:      drivers/media/usb/dvb-usb-v2/ce6230*
5838
5839 DVB_USB_CXUSB MEDIA DRIVER
5840 M:      Michael Krufky <mkrufky@linuxtv.org>
5841 L:      linux-media@vger.kernel.org
5842 W:      https://linuxtv.org
5843 W:      http://github.com/mkrufky
5844 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5845 T:      git git://linuxtv.org/media_tree.git
5846 S:      Maintained
5847 F:      drivers/media/usb/dvb-usb/cxusb*
5848
5849 DVB_USB_EC168 MEDIA DRIVER
5850 M:      Antti Palosaari <crope@iki.fi>
5851 L:      linux-media@vger.kernel.org
5852 W:      https://linuxtv.org
5853 W:      http://palosaari.fi/linux/
5854 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5855 T:      git git://linuxtv.org/anttip/media_tree.git
5856 S:      Maintained
5857 F:      drivers/media/usb/dvb-usb-v2/ec168*
5858
5859 DVB_USB_GL861 MEDIA DRIVER
5860 M:      Antti Palosaari <crope@iki.fi>
5861 L:      linux-media@vger.kernel.org
5862 W:      https://linuxtv.org
5863 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5864 T:      git git://linuxtv.org/anttip/media_tree.git
5865 S:      Maintained
5866 F:      drivers/media/usb/dvb-usb-v2/gl861*
5867
5868 DVB_USB_MXL111SF MEDIA DRIVER
5869 M:      Michael Krufky <mkrufky@linuxtv.org>
5870 L:      linux-media@vger.kernel.org
5871 W:      https://linuxtv.org
5872 W:      http://github.com/mkrufky
5873 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5874 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
5875 S:      Maintained
5876 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
5877
5878 DVB_USB_RTL28XXU MEDIA DRIVER
5879 M:      Antti Palosaari <crope@iki.fi>
5880 L:      linux-media@vger.kernel.org
5881 W:      https://linuxtv.org
5882 W:      http://palosaari.fi/linux/
5883 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5884 T:      git git://linuxtv.org/anttip/media_tree.git
5885 S:      Maintained
5886 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
5887
5888 DVB_USB_V2 MEDIA DRIVER
5889 M:      Antti Palosaari <crope@iki.fi>
5890 L:      linux-media@vger.kernel.org
5891 W:      https://linuxtv.org
5892 W:      http://palosaari.fi/linux/
5893 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5894 T:      git git://linuxtv.org/anttip/media_tree.git
5895 S:      Maintained
5896 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
5897 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
5898
5899 DYNAMIC DEBUG
5900 M:      Jason Baron <jbaron@akamai.com>
5901 S:      Maintained
5902 F:      lib/dynamic_debug.c
5903 F:      include/linux/dynamic_debug.h
5904
5905 DYNAMIC INTERRUPT MODERATION
5906 M:      Tal Gilboa <talgi@mellanox.com>
5907 S:      Maintained
5908 F:      include/linux/dim.h
5909 F:      lib/dim/
5910
5911 DZ DECSTATION DZ11 SERIAL DRIVER
5912 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
5913 S:      Maintained
5914 F:      drivers/tty/serial/dz.*
5915
5916 E3X0 POWER BUTTON DRIVER
5917 M:      Moritz Fischer <moritz.fischer@ettus.com>
5918 L:      usrp-users@lists.ettus.com
5919 W:      http://www.ettus.com
5920 S:      Supported
5921 F:      drivers/input/misc/e3x0-button.c
5922 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
5923
5924 E4000 MEDIA DRIVER
5925 M:      Antti Palosaari <crope@iki.fi>
5926 L:      linux-media@vger.kernel.org
5927 W:      https://linuxtv.org
5928 W:      http://palosaari.fi/linux/
5929 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5930 T:      git git://linuxtv.org/anttip/media_tree.git
5931 S:      Maintained
5932 F:      drivers/media/tuners/e4000*
5933
5934 EARTH_PT1 MEDIA DRIVER
5935 M:      Akihiro Tsukada <tskd08@gmail.com>
5936 L:      linux-media@vger.kernel.org
5937 S:      Odd Fixes
5938 F:      drivers/media/pci/pt1/
5939
5940 EARTH_PT3 MEDIA DRIVER
5941 M:      Akihiro Tsukada <tskd08@gmail.com>
5942 L:      linux-media@vger.kernel.org
5943 S:      Odd Fixes
5944 F:      drivers/media/pci/pt3/
5945
5946 EC100 MEDIA DRIVER
5947 M:      Antti Palosaari <crope@iki.fi>
5948 L:      linux-media@vger.kernel.org
5949 W:      https://linuxtv.org
5950 W:      http://palosaari.fi/linux/
5951 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5952 T:      git git://linuxtv.org/anttip/media_tree.git
5953 S:      Maintained
5954 F:      drivers/media/dvb-frontends/ec100*
5955
5956 ECRYPT FILE SYSTEM
5957 M:      Tyler Hicks <code@tyhicks.com>
5958 L:      ecryptfs@vger.kernel.org
5959 W:      http://ecryptfs.org
5960 W:      https://launchpad.net/ecryptfs
5961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
5962 S:      Odd Fixes
5963 F:      Documentation/filesystems/ecryptfs.rst
5964 F:      fs/ecryptfs/
5965
5966 EDAC-AMD64
5967 M:      Borislav Petkov <bp@alien8.de>
5968 L:      linux-edac@vger.kernel.org
5969 S:      Maintained
5970 F:      drivers/edac/amd64_edac*
5971
5972 EDAC-ARMADA
5973 M:      Jan Luebbe <jlu@pengutronix.de>
5974 L:      linux-edac@vger.kernel.org
5975 S:      Maintained
5976 F:      drivers/edac/armada_xp_*
5977
5978 EDAC-AST2500
5979 M:      Stefan Schaeckeler <sschaeck@cisco.com>
5980 S:      Supported
5981 F:      drivers/edac/aspeed_edac.c
5982 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
5983
5984 EDAC-BLUEFIELD
5985 M:      Shravan Kumar Ramani <sramani@mellanox.com>
5986 S:      Supported
5987 F:      drivers/edac/bluefield_edac.c
5988
5989 EDAC-CALXEDA
5990 M:      Robert Richter <rric@kernel.org>
5991 L:      linux-edac@vger.kernel.org
5992 S:      Maintained
5993 F:      drivers/edac/highbank*
5994
5995 EDAC-CAVIUM OCTEON
5996 M:      Ralf Baechle <ralf@linux-mips.org>
5997 M:      Robert Richter <rrichter@marvell.com>
5998 L:      linux-edac@vger.kernel.org
5999 L:      linux-mips@vger.kernel.org
6000 S:      Supported
6001 F:      drivers/edac/octeon_edac*
6002
6003 EDAC-CAVIUM THUNDERX
6004 M:      Robert Richter <rrichter@marvell.com>
6005 L:      linux-edac@vger.kernel.org
6006 S:      Supported
6007 F:      drivers/edac/thunderx_edac*
6008
6009 EDAC-CORE
6010 M:      Borislav Petkov <bp@alien8.de>
6011 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6012 M:      Tony Luck <tony.luck@intel.com>
6013 R:      James Morse <james.morse@arm.com>
6014 R:      Robert Richter <rrichter@marvell.com>
6015 L:      linux-edac@vger.kernel.org
6016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6017 S:      Supported
6018 F:      Documentation/admin-guide/ras.rst
6019 F:      Documentation/driver-api/edac.rst
6020 F:      drivers/edac/
6021 F:      include/linux/edac.h
6022
6023 EDAC-DMC520
6024 M:      Lei Wang <lewan@microsoft.com>
6025 L:      linux-edac@vger.kernel.org
6026 S:      Supported
6027 F:      drivers/edac/dmc520_edac.c
6028
6029 EDAC-E752X
6030 M:      Mark Gross <mark.gross@intel.com>
6031 L:      linux-edac@vger.kernel.org
6032 S:      Maintained
6033 F:      drivers/edac/e752x_edac.c
6034
6035 EDAC-E7XXX
6036 L:      linux-edac@vger.kernel.org
6037 S:      Maintained
6038 F:      drivers/edac/e7xxx_edac.c
6039
6040 EDAC-FSL_DDR
6041 M:      York Sun <york.sun@nxp.com>
6042 L:      linux-edac@vger.kernel.org
6043 S:      Maintained
6044 F:      drivers/edac/fsl_ddr_edac.*
6045
6046 EDAC-GHES
6047 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6048 L:      linux-edac@vger.kernel.org
6049 S:      Maintained
6050 F:      drivers/edac/ghes_edac.c
6051
6052 EDAC-I10NM
6053 M:      Tony Luck <tony.luck@intel.com>
6054 L:      linux-edac@vger.kernel.org
6055 S:      Maintained
6056 F:      drivers/edac/i10nm_base.c
6057
6058 EDAC-I3000
6059 L:      linux-edac@vger.kernel.org
6060 S:      Orphan
6061 F:      drivers/edac/i3000_edac.c
6062
6063 EDAC-I5000
6064 L:      linux-edac@vger.kernel.org
6065 S:      Maintained
6066 F:      drivers/edac/i5000_edac.c
6067
6068 EDAC-I5400
6069 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6070 L:      linux-edac@vger.kernel.org
6071 S:      Maintained
6072 F:      drivers/edac/i5400_edac.c
6073
6074 EDAC-I7300
6075 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6076 L:      linux-edac@vger.kernel.org
6077 S:      Maintained
6078 F:      drivers/edac/i7300_edac.c
6079
6080 EDAC-I7CORE
6081 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6082 L:      linux-edac@vger.kernel.org
6083 S:      Maintained
6084 F:      drivers/edac/i7core_edac.c
6085
6086 EDAC-I82443BXGX
6087 M:      Tim Small <tim@buttersideup.com>
6088 L:      linux-edac@vger.kernel.org
6089 S:      Maintained
6090 F:      drivers/edac/i82443bxgx_edac.c
6091
6092 EDAC-I82975X
6093 M:      "Arvind R." <arvino55@gmail.com>
6094 L:      linux-edac@vger.kernel.org
6095 S:      Maintained
6096 F:      drivers/edac/i82975x_edac.c
6097
6098 EDAC-IE31200
6099 M:      Jason Baron <jbaron@akamai.com>
6100 L:      linux-edac@vger.kernel.org
6101 S:      Maintained
6102 F:      drivers/edac/ie31200_edac.c
6103
6104 EDAC-MPC85XX
6105 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6106 L:      linux-edac@vger.kernel.org
6107 S:      Maintained
6108 F:      drivers/edac/mpc85xx_edac.[ch]
6109
6110 EDAC-PASEMI
6111 M:      Egor Martovetsky <egor@pasemi.com>
6112 L:      linux-edac@vger.kernel.org
6113 S:      Maintained
6114 F:      drivers/edac/pasemi_edac.c
6115
6116 EDAC-PND2
6117 M:      Tony Luck <tony.luck@intel.com>
6118 L:      linux-edac@vger.kernel.org
6119 S:      Maintained
6120 F:      drivers/edac/pnd2_edac.[ch]
6121
6122 EDAC-R82600
6123 M:      Tim Small <tim@buttersideup.com>
6124 L:      linux-edac@vger.kernel.org
6125 S:      Maintained
6126 F:      drivers/edac/r82600_edac.c
6127
6128 EDAC-SBRIDGE
6129 M:      Tony Luck <tony.luck@intel.com>
6130 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6131 L:      linux-edac@vger.kernel.org
6132 S:      Maintained
6133 F:      drivers/edac/sb_edac.c
6134
6135 EDAC-SIFIVE
6136 M:      Yash Shah <yash.shah@sifive.com>
6137 L:      linux-edac@vger.kernel.org
6138 S:      Supported
6139 F:      drivers/edac/sifive_edac.c
6140 F:      drivers/soc/sifive_l2_cache.c
6141
6142 EDAC-SKYLAKE
6143 M:      Tony Luck <tony.luck@intel.com>
6144 L:      linux-edac@vger.kernel.org
6145 S:      Maintained
6146 F:      drivers/edac/skx_*.c
6147
6148 EDAC-TI
6149 M:      Tero Kristo <t-kristo@ti.com>
6150 L:      linux-edac@vger.kernel.org
6151 S:      Maintained
6152 F:      drivers/edac/ti_edac.c
6153
6154 EDAC-QCOM
6155 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6156 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6157 L:      linux-arm-msm@vger.kernel.org
6158 L:      linux-edac@vger.kernel.org
6159 S:      Maintained
6160 F:      drivers/edac/qcom_edac.c
6161
6162 EDIROL UA-101/UA-1000 DRIVER
6163 M:      Clemens Ladisch <clemens@ladisch.de>
6164 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6166 S:      Maintained
6167 F:      sound/usb/misc/ua101.c
6168
6169 EFI TEST DRIVER
6170 L:      linux-efi@vger.kernel.org
6171 M:      Ivan Hu <ivan.hu@canonical.com>
6172 M:      Ard Biesheuvel <ardb@kernel.org>
6173 S:      Maintained
6174 F:      drivers/firmware/efi/test/
6175
6176 EFI VARIABLE FILESYSTEM
6177 M:      Matthew Garrett <matthew.garrett@nebula.com>
6178 M:      Jeremy Kerr <jk@ozlabs.org>
6179 M:      Ard Biesheuvel <ardb@kernel.org>
6180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6181 L:      linux-efi@vger.kernel.org
6182 S:      Maintained
6183 F:      fs/efivarfs/
6184
6185 EFIFB FRAMEBUFFER DRIVER
6186 L:      linux-fbdev@vger.kernel.org
6187 M:      Peter Jones <pjones@redhat.com>
6188 S:      Maintained
6189 F:      drivers/video/fbdev/efifb.c
6190
6191 EFS FILESYSTEM
6192 W:      http://aeschi.ch.eu.org/efs/
6193 S:      Orphan
6194 F:      fs/efs/
6195
6196 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6197 M:      Douglas Miller <dougmill@linux.ibm.com>
6198 L:      netdev@vger.kernel.org
6199 S:      Maintained
6200 F:      drivers/net/ethernet/ibm/ehea/
6201
6202 EM28XX VIDEO4LINUX DRIVER
6203 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6204 L:      linux-media@vger.kernel.org
6205 W:      https://linuxtv.org
6206 T:      git git://linuxtv.org/media_tree.git
6207 S:      Maintained
6208 F:      drivers/media/usb/em28xx/
6209 F:      Documentation/media/v4l-drivers/em28xx*
6210
6211 EMBEDDED LINUX
6212 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6213 M:      Matt Mackall <mpm@selenic.com>
6214 M:      David Woodhouse <dwmw2@infradead.org>
6215 L:      linux-embedded@vger.kernel.org
6216 S:      Maintained
6217
6218 Emulex 10Gbps iSCSI - OneConnect DRIVER
6219 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6220 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6221 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6222 L:      linux-scsi@vger.kernel.org
6223 W:      http://www.broadcom.com
6224 S:      Supported
6225 F:      drivers/scsi/be2iscsi/
6226
6227 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6228 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6229 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6230 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6231 L:      netdev@vger.kernel.org
6232 W:      http://www.emulex.com
6233 S:      Supported
6234 F:      drivers/net/ethernet/emulex/benet/
6235
6236 EMULEX ONECONNECT ROCE DRIVER
6237 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6238 M:      Devesh Sharma <devesh.sharma@broadcom.com>
6239 L:      linux-rdma@vger.kernel.org
6240 W:      http://www.broadcom.com
6241 S:      Odd Fixes
6242 F:      drivers/infiniband/hw/ocrdma/
6243 F:      include/uapi/rdma/ocrdma-abi.h
6244
6245 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6246 M:      James Smart <james.smart@broadcom.com>
6247 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6248 L:      linux-scsi@vger.kernel.org
6249 W:      http://www.broadcom.com
6250 S:      Supported
6251 F:      drivers/scsi/lpfc/
6252
6253 ENE CB710 FLASH CARD READER DRIVER
6254 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6255 S:      Maintained
6256 F:      drivers/misc/cb710/
6257 F:      drivers/mmc/host/cb710-mmc.*
6258 F:      include/linux/cb710.h
6259
6260 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6261 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6262 S:      Maintained
6263 F:      drivers/media/rc/ene_ir.*
6264
6265 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6266 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6267 L:      linuxppc-dev@lists.ozlabs.org
6268 S:      Maintained
6269 F:      drivers/tty/ehv_bytechan.c
6270
6271 EPSON S1D13XXX FRAMEBUFFER DRIVER
6272 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6273 S:      Maintained
6274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6275 F:      drivers/video/fbdev/s1d13xxxfb.c
6276 F:      include/video/s1d13xxxfb.h
6277
6278 EROFS FILE SYSTEM
6279 M:      Gao Xiang <xiang@kernel.org>
6280 M:      Chao Yu <yuchao0@huawei.com>
6281 L:      linux-erofs@lists.ozlabs.org
6282 S:      Maintained
6283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6284 F:      Documentation/filesystems/erofs.rst
6285 F:      fs/erofs/
6286 F:      include/trace/events/erofs.h
6287
6288 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6289 M:      Jeff Layton <jlayton@kernel.org>
6290 S:      Maintained
6291 F:      lib/errseq.c
6292 F:      include/linux/errseq.h
6293
6294 ET131X NETWORK DRIVER
6295 M:      Mark Einon <mark.einon@gmail.com>
6296 S:      Odd Fixes
6297 F:      drivers/net/ethernet/agere/
6298
6299 ETHERNET BRIDGE
6300 M:      Roopa Prabhu <roopa@cumulusnetworks.com>
6301 M:      Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
6302 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6303 L:      netdev@vger.kernel.org
6304 W:      http://www.linuxfoundation.org/en/Net:Bridge
6305 S:      Maintained
6306 F:      include/linux/netfilter_bridge/
6307 F:      net/bridge/
6308
6309 ETHERNET PHY LIBRARY
6310 M:      Andrew Lunn <andrew@lunn.ch>
6311 M:      Florian Fainelli <f.fainelli@gmail.com>
6312 M:      Heiner Kallweit <hkallweit1@gmail.com>
6313 R:      Russell King <linux@armlinux.org.uk>
6314 L:      netdev@vger.kernel.org
6315 S:      Maintained
6316 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6317 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6318 F:      Documentation/devicetree/bindings/net/mdio*
6319 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6320 F:      Documentation/networking/phy.rst
6321 F:      drivers/net/phy/
6322 F:      drivers/of/of_mdio.c
6323 F:      drivers/of/of_net.c
6324 F:      include/dt-bindings/net/qca-ar803x.h
6325 F:      include/linux/*mdio*.h
6326 F:      include/linux/of_net.h
6327 F:      include/linux/phy.h
6328 F:      include/linux/phy_fixed.h
6329 F:      include/linux/platform_data/mdio-bcm-unimac.h
6330 F:      include/linux/platform_data/mdio-gpio.h
6331 F:      include/trace/events/mdio.h
6332 F:      include/uapi/linux/mdio.h
6333 F:      include/uapi/linux/mii.h
6334
6335 EXT2 FILE SYSTEM
6336 M:      Jan Kara <jack@suse.com>
6337 L:      linux-ext4@vger.kernel.org
6338 S:      Maintained
6339 F:      Documentation/filesystems/ext2.rst
6340 F:      fs/ext2/
6341 F:      include/linux/ext2*
6342
6343 EXT4 FILE SYSTEM
6344 M:      "Theodore Ts'o" <tytso@mit.edu>
6345 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6346 L:      linux-ext4@vger.kernel.org
6347 W:      http://ext4.wiki.kernel.org
6348 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6350 S:      Maintained
6351 F:      Documentation/filesystems/ext4/
6352 F:      fs/ext4/
6353
6354 Extended Verification Module (EVM)
6355 M:      Mimi Zohar <zohar@linux.ibm.com>
6356 L:      linux-integrity@vger.kernel.org
6357 S:      Supported
6358 F:      security/integrity/evm/
6359
6360 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6361 M:      Ard Biesheuvel <ardb@kernel.org>
6362 L:      linux-efi@vger.kernel.org
6363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6364 S:      Maintained
6365 F:      Documentation/admin-guide/efi-stub.rst
6366 F:      arch/*/kernel/efi.c
6367 F:      arch/*/include/asm/efi.h
6368 F:      arch/x86/platform/efi/
6369 F:      drivers/firmware/efi/
6370 F:      include/linux/efi*.h
6371 F:      arch/arm/boot/compressed/efi-header.S
6372 F:      arch/arm64/kernel/efi-entry.S
6373
6374 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6375 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6376 M:      Chanwoo Choi <cw00.choi@samsung.com>
6377 L:      linux-kernel@vger.kernel.org
6378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6379 S:      Maintained
6380 F:      drivers/extcon/
6381 F:      include/linux/extcon/
6382 F:      include/linux/extcon.h
6383 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6384 F:      Documentation/devicetree/bindings/extcon/
6385
6386 EXYNOS DP DRIVER
6387 M:      Jingoo Han <jingoohan1@gmail.com>
6388 L:      dri-devel@lists.freedesktop.org
6389 S:      Maintained
6390 F:      drivers/gpu/drm/exynos/exynos_dp*
6391
6392 EXYNOS SYSMMU (IOMMU) driver
6393 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6394 L:      iommu@lists.linux-foundation.org
6395 S:      Maintained
6396 F:      drivers/iommu/exynos-iommu.c
6397
6398 EZchip NPS platform support
6399 M:      Vineet Gupta <vgupta@synopsys.com>
6400 M:      Ofer Levi <oferle@mellanox.com>
6401 S:      Supported
6402 F:      arch/arc/plat-eznps
6403 F:      arch/arc/boot/dts/eznps.dts
6404
6405 F2FS FILE SYSTEM
6406 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6407 M:      Chao Yu <yuchao0@huawei.com>
6408 L:      linux-f2fs-devel@lists.sourceforge.net
6409 W:      https://f2fs.wiki.kernel.org/
6410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6411 S:      Maintained
6412 F:      Documentation/filesystems/f2fs.rst
6413 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6414 F:      fs/f2fs/
6415 F:      include/linux/f2fs_fs.h
6416 F:      include/trace/events/f2fs.h
6417
6418 F71805F HARDWARE MONITORING DRIVER
6419 M:      Jean Delvare <jdelvare@suse.com>
6420 L:      linux-hwmon@vger.kernel.org
6421 S:      Maintained
6422 F:      Documentation/hwmon/f71805f.rst
6423 F:      drivers/hwmon/f71805f.c
6424
6425 FADDR2LINE
6426 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6427 S:      Maintained
6428 F:      scripts/faddr2line
6429
6430 FAILOVER MODULE
6431 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
6432 L:      netdev@vger.kernel.org
6433 S:      Supported
6434 F:      net/core/failover.c
6435 F:      include/net/failover.h
6436 F:      Documentation/networking/failover.rst
6437
6438 FANOTIFY
6439 M:      Jan Kara <jack@suse.cz>
6440 R:      Amir Goldstein <amir73il@gmail.com>
6441 L:      linux-fsdevel@vger.kernel.org
6442 S:      Maintained
6443 F:      fs/notify/fanotify/
6444 F:      include/linux/fanotify.h
6445 F:      include/uapi/linux/fanotify.h
6446
6447 FARSYNC SYNCHRONOUS DRIVER
6448 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
6449 W:      http://www.farsite.co.uk/
6450 S:      Supported
6451 F:      drivers/net/wan/farsync.*
6452
6453 FAULT INJECTION SUPPORT
6454 M:      Akinobu Mita <akinobu.mita@gmail.com>
6455 S:      Supported
6456 F:      Documentation/fault-injection/
6457 F:      lib/fault-inject.c
6458
6459 FBTFT Framebuffer drivers
6460 S:      Orphan
6461 L:      dri-devel@lists.freedesktop.org
6462 L:      linux-fbdev@vger.kernel.org
6463 F:      drivers/staging/fbtft/
6464
6465 FC0011 TUNER DRIVER
6466 M:      Michael Buesch <m@bues.ch>
6467 L:      linux-media@vger.kernel.org
6468 S:      Maintained
6469 F:      drivers/media/tuners/fc0011.h
6470 F:      drivers/media/tuners/fc0011.c
6471
6472 FC2580 MEDIA DRIVER
6473 M:      Antti Palosaari <crope@iki.fi>
6474 L:      linux-media@vger.kernel.org
6475 W:      https://linuxtv.org
6476 W:      http://palosaari.fi/linux/
6477 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6478 T:      git git://linuxtv.org/anttip/media_tree.git
6479 S:      Maintained
6480 F:      drivers/media/tuners/fc2580*
6481
6482 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6483 M:      Hannes Reinecke <hare@suse.de>
6484 L:      linux-scsi@vger.kernel.org
6485 W:      www.Open-FCoE.org
6486 S:      Supported
6487 F:      drivers/scsi/libfc/
6488 F:      drivers/scsi/fcoe/
6489 F:      include/scsi/fc/
6490 F:      include/scsi/libfc.h
6491 F:      include/scsi/libfcoe.h
6492 F:      include/uapi/scsi/fc/
6493
6494 FILE LOCKING (flock() and fcntl()/lockf())
6495 M:      Jeff Layton <jlayton@kernel.org>
6496 M:      "J. Bruce Fields" <bfields@fieldses.org>
6497 L:      linux-fsdevel@vger.kernel.org
6498 S:      Maintained
6499 F:      include/linux/fcntl.h
6500 F:      include/uapi/linux/fcntl.h
6501 F:      fs/fcntl.c
6502 F:      fs/locks.c
6503
6504 FILESYSTEMS (VFS and infrastructure)
6505 M:      Alexander Viro <viro@zeniv.linux.org.uk>
6506 L:      linux-fsdevel@vger.kernel.org
6507 S:      Maintained
6508 F:      fs/*
6509 F:      include/linux/fs.h
6510 F:      include/linux/fs_types.h
6511 F:      include/uapi/linux/fs.h
6512 F:      include/uapi/linux/openat2.h
6513
6514 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6515 M:      Riku Voipio <riku.voipio@iki.fi>
6516 L:      linux-hwmon@vger.kernel.org
6517 S:      Maintained
6518 F:      drivers/hwmon/f75375s.c
6519 F:      include/linux/f75375s.h
6520
6521 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6522 M:      Clemens Ladisch <clemens@ladisch.de>
6523 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
6524 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6526 S:      Maintained
6527 F:      sound/firewire/
6528 F:      include/uapi/sound/firewire.h
6529
6530 FIREWIRE MEDIA DRIVERS (firedtv)
6531 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6532 L:      linux-media@vger.kernel.org
6533 L:      linux1394-devel@lists.sourceforge.net
6534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6535 S:      Maintained
6536 F:      drivers/media/firewire/
6537
6538 FIREWIRE SBP-2 TARGET
6539 M:      Chris Boot <bootc@bootc.net>
6540 L:      linux-scsi@vger.kernel.org
6541 L:      target-devel@vger.kernel.org
6542 L:      linux1394-devel@lists.sourceforge.net
6543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6544 S:      Maintained
6545 F:      drivers/target/sbp/
6546
6547 FIREWIRE SUBSYSTEM
6548 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6549 L:      linux1394-devel@lists.sourceforge.net
6550 W:      http://ieee1394.wiki.kernel.org/
6551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6552 S:      Maintained
6553 F:      drivers/firewire/
6554 F:      include/linux/firewire.h
6555 F:      include/uapi/linux/firewire*.h
6556 F:      tools/firewire/
6557
6558 FIRMWARE LOADER (request_firmware)
6559 M:      Luis Chamberlain <mcgrof@kernel.org>
6560 L:      linux-kernel@vger.kernel.org
6561 S:      Maintained
6562 F:      Documentation/firmware_class/
6563 F:      drivers/base/firmware_loader/
6564 F:      include/linux/firmware.h
6565
6566 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6567 M:      Joshua Morris <josh.h.morris@us.ibm.com>
6568 M:      Philip Kelleher <pjk1939@linux.ibm.com>
6569 S:      Maintained
6570 F:      drivers/block/rsxx/
6571
6572 FLEXTIMER FTM-QUADDEC DRIVER
6573 M:      Patrick Havelange <patrick.havelange@essensium.com>
6574 L:      linux-iio@vger.kernel.org
6575 S:      Maintained
6576 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6577 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6578 F:      drivers/counter/ftm-quaddec.c
6579
6580 FLOPPY DRIVER
6581 M:      Denis Efremov <efremov@linux.com>
6582 S:      Odd Fixes
6583 L:      linux-block@vger.kernel.org
6584 F:      drivers/block/floppy.c
6585
6586 FPGA MANAGER FRAMEWORK
6587 M:      Moritz Fischer <mdf@kernel.org>
6588 L:      linux-fpga@vger.kernel.org
6589 S:      Maintained
6590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6591 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6592 F:      Documentation/fpga/
6593 F:      Documentation/driver-api/fpga/
6594 F:      Documentation/devicetree/bindings/fpga/
6595 F:      drivers/fpga/
6596 F:      include/linux/fpga/
6597 W:      http://www.rocketboards.org
6598
6599 FPGA DFL DRIVERS
6600 M:      Wu Hao <hao.wu@intel.com>
6601 L:      linux-fpga@vger.kernel.org
6602 S:      Maintained
6603 F:      Documentation/fpga/dfl.rst
6604 F:      include/uapi/linux/fpga-dfl.h
6605 F:      drivers/fpga/dfl*
6606
6607 FPU EMULATOR
6608 M:      Bill Metzenthen <billm@melbpc.org.au>
6609 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6610 S:      Maintained
6611 F:      arch/x86/math-emu/
6612
6613 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6614 L:      netdev@vger.kernel.org
6615 S:      Orphan
6616 F:      drivers/net/wan/dlci.c
6617 F:      drivers/net/wan/sdla.c
6618
6619 FRAMEBUFFER LAYER
6620 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6621 L:      dri-devel@lists.freedesktop.org
6622 L:      linux-fbdev@vger.kernel.org
6623 T:      git git://anongit.freedesktop.org/drm/drm-misc
6624 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6625 S:      Maintained
6626 F:      Documentation/fb/
6627 F:      drivers/video/
6628 F:      include/video/
6629 F:      include/linux/fb.h
6630 F:      include/uapi/video/
6631 F:      include/uapi/linux/fb.h
6632
6633 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6634 M:      Horia Geantă <horia.geanta@nxp.com>
6635 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
6636 L:      linux-crypto@vger.kernel.org
6637 S:      Maintained
6638 F:      drivers/crypto/caam/
6639 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6640
6641 FREESCALE DIU FRAMEBUFFER DRIVER
6642 M:      Timur Tabi <timur@kernel.org>
6643 L:      linux-fbdev@vger.kernel.org
6644 S:      Maintained
6645 F:      drivers/video/fbdev/fsl-diu-fb.*
6646
6647 FREESCALE DMA DRIVER
6648 M:      Li Yang <leoyang.li@nxp.com>
6649 M:      Zhang Wei <zw@zh-kernel.org>
6650 L:      linuxppc-dev@lists.ozlabs.org
6651 S:      Maintained
6652 F:      drivers/dma/fsldma.*
6653
6654 FREESCALE ENETC ETHERNET DRIVERS
6655 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6656 L:      netdev@vger.kernel.org
6657 S:      Maintained
6658 F:      drivers/net/ethernet/freescale/enetc/
6659
6660 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6661 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6662 L:      netdev@vger.kernel.org
6663 S:      Maintained
6664 F:      drivers/net/ethernet/freescale/gianfar*
6665 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6666
6667 FREESCALE GPMI NAND DRIVER
6668 M:      Han Xu <han.xu@nxp.com>
6669 L:      linux-mtd@lists.infradead.org
6670 S:      Maintained
6671 F:      drivers/mtd/nand/raw/gpmi-nand/*
6672
6673 FREESCALE I2C CPM DRIVER
6674 M:      Jochen Friedrich <jochen@scram.de>
6675 L:      linuxppc-dev@lists.ozlabs.org
6676 L:      linux-i2c@vger.kernel.org
6677 S:      Maintained
6678 F:      drivers/i2c/busses/i2c-cpm.c
6679
6680 FREESCALE IMX DDR PMU DRIVER
6681 M:      Frank Li <Frank.li@nxp.com>
6682 L:      linux-arm-kernel@lists.infradead.org
6683 S:      Maintained
6684 F:      drivers/perf/fsl_imx8_ddr_perf.c
6685 F:      Documentation/admin-guide/perf/imx-ddr.rst
6686 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.txt
6687
6688 FREESCALE IMX I2C DRIVER
6689 M:      Oleksij Rempel <o.rempel@pengutronix.de>
6690 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6691 L:      linux-i2c@vger.kernel.org
6692 S:      Maintained
6693 F:      drivers/i2c/busses/i2c-imx.c
6694 F:      Documentation/devicetree/bindings/i2c/i2c-imx.txt
6695
6696 FREESCALE IMX LPI2C DRIVER
6697 M:      Dong Aisheng <aisheng.dong@nxp.com>
6698 L:      linux-i2c@vger.kernel.org
6699 L:      linux-imx@nxp.com
6700 S:      Maintained
6701 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
6702 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.txt
6703
6704 FREESCALE IMX / MXC FEC DRIVER
6705 M:      Fugang Duan <fugang.duan@nxp.com>
6706 L:      netdev@vger.kernel.org
6707 S:      Maintained
6708 F:      drivers/net/ethernet/freescale/fec_main.c
6709 F:      drivers/net/ethernet/freescale/fec_ptp.c
6710 F:      drivers/net/ethernet/freescale/fec.h
6711 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
6712
6713 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
6714 M:      Sascha Hauer <s.hauer@pengutronix.de>
6715 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6716 L:      linux-fbdev@vger.kernel.org
6717 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6718 S:      Maintained
6719 F:      include/linux/platform_data/video-imxfb.h
6720 F:      drivers/video/fbdev/imxfb.c
6721
6722 FREESCALE QORIQ DPAA ETHERNET DRIVER
6723 M:      Madalin Bucur <madalin.bucur@nxp.com>
6724 L:      netdev@vger.kernel.org
6725 S:      Maintained
6726 F:      drivers/net/ethernet/freescale/dpaa
6727
6728 FREESCALE QORIQ DPAA FMAN DRIVER
6729 M:      Madalin Bucur <madalin.bucur@nxp.com>
6730 L:      netdev@vger.kernel.org
6731 S:      Maintained
6732 F:      drivers/net/ethernet/freescale/fman
6733 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
6734
6735 FREESCALE QORIQ PTP CLOCK DRIVER
6736 M:      Yangbo Lu <yangbo.lu@nxp.com>
6737 L:      netdev@vger.kernel.org
6738 S:      Maintained
6739 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
6740 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
6741 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
6742 F:      drivers/ptp/ptp_qoriq.c
6743 F:      drivers/ptp/ptp_qoriq_debugfs.c
6744 F:      include/linux/fsl/ptp_qoriq.h
6745 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
6746
6747 FREESCALE QUAD SPI DRIVER
6748 M:      Han Xu <han.xu@nxp.com>
6749 L:      linux-spi@vger.kernel.org
6750 S:      Maintained
6751 F:      drivers/spi/spi-fsl-qspi.c
6752
6753 FREESCALE QUICC ENGINE LIBRARY
6754 M:      Qiang Zhao <qiang.zhao@nxp.com>
6755 L:      linuxppc-dev@lists.ozlabs.org
6756 S:      Maintained
6757 F:      drivers/soc/fsl/qe/
6758 F:      include/soc/fsl/*qe*.h
6759 F:      include/soc/fsl/*ucc*.h
6760
6761 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
6762 M:      Li Yang <leoyang.li@nxp.com>
6763 L:      netdev@vger.kernel.org
6764 L:      linuxppc-dev@lists.ozlabs.org
6765 S:      Maintained
6766 F:      drivers/net/ethernet/freescale/ucc_geth*
6767
6768 FREESCALE QUICC ENGINE UCC HDLC DRIVER
6769 M:      Zhao Qiang <qiang.zhao@nxp.com>
6770 L:      netdev@vger.kernel.org
6771 L:      linuxppc-dev@lists.ozlabs.org
6772 S:      Maintained
6773 F:      drivers/net/wan/fsl_ucc_hdlc*
6774
6775 FREESCALE QUICC ENGINE UCC UART DRIVER
6776 M:      Timur Tabi <timur@kernel.org>
6777 L:      linuxppc-dev@lists.ozlabs.org
6778 S:      Maintained
6779 F:      drivers/tty/serial/ucc_uart.c
6780
6781 FREESCALE SOC DRIVERS
6782 M:      Li Yang <leoyang.li@nxp.com>
6783 L:      linuxppc-dev@lists.ozlabs.org
6784 L:      linux-arm-kernel@lists.infradead.org
6785 S:      Maintained
6786 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
6787 F:      Documentation/devicetree/bindings/soc/fsl/
6788 F:      drivers/soc/fsl/
6789 F:      include/linux/fsl/
6790
6791 FREESCALE SOC FS_ENET DRIVER
6792 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
6793 L:      linuxppc-dev@lists.ozlabs.org
6794 L:      netdev@vger.kernel.org
6795 S:      Maintained
6796 F:      drivers/net/ethernet/freescale/fs_enet/
6797 F:      include/linux/fs_enet_pd.h
6798
6799 FREESCALE SOC SOUND DRIVERS
6800 M:      Timur Tabi <timur@kernel.org>
6801 M:      Nicolin Chen <nicoleotsuka@gmail.com>
6802 M:      Xiubo Li <Xiubo.Lee@gmail.com>
6803 R:      Fabio Estevam <festevam@gmail.com>
6804 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6805 L:      linuxppc-dev@lists.ozlabs.org
6806 S:      Maintained
6807 F:      sound/soc/fsl/fsl*
6808 F:      sound/soc/fsl/imx*
6809 F:      sound/soc/fsl/mpc8610_hpcd.c
6810
6811 FREESCALE USB PERIPHERAL DRIVERS
6812 M:      Li Yang <leoyang.li@nxp.com>
6813 L:      linux-usb@vger.kernel.org
6814 L:      linuxppc-dev@lists.ozlabs.org
6815 S:      Maintained
6816 F:      drivers/usb/gadget/udc/fsl*
6817
6818 FREEVXFS FILESYSTEM
6819 M:      Christoph Hellwig <hch@infradead.org>
6820 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
6821 S:      Maintained
6822 F:      fs/freevxfs/
6823
6824 FREEZER
6825 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6826 M:      Pavel Machek <pavel@ucw.cz>
6827 L:      linux-pm@vger.kernel.org
6828 S:      Supported
6829 F:      Documentation/power/freezing-of-tasks.rst
6830 F:      include/linux/freezer.h
6831 F:      kernel/freezer.c
6832
6833 FRONTSWAP API
6834 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
6835 L:      linux-kernel@vger.kernel.org
6836 S:      Maintained
6837 F:      mm/frontswap.c
6838 F:      include/linux/frontswap.h
6839
6840 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
6841 M:      David Howells <dhowells@redhat.com>
6842 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
6843 S:      Supported
6844 F:      Documentation/filesystems/caching/
6845 F:      fs/fscache/
6846 F:      include/linux/fscache*.h
6847
6848 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
6849 M:      Theodore Y. Ts'o <tytso@mit.edu>
6850 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6851 M:      Eric Biggers <ebiggers@kernel.org>
6852 L:      linux-fscrypt@vger.kernel.org
6853 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6854 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
6855 S:      Supported
6856 F:      fs/crypto/
6857 F:      include/linux/fscrypt*.h
6858 F:      include/uapi/linux/fscrypt.h
6859 F:      Documentation/filesystems/fscrypt.rst
6860
6861 FSI SUBSYSTEM
6862 M:      Jeremy Kerr <jk@ozlabs.org>
6863 M:      Joel Stanley <joel@jms.id.au>
6864 R:      Alistar Popple <alistair@popple.id.au>
6865 R:      Eddie James <eajames@linux.ibm.com>
6866 L:      linux-fsi@lists.ozlabs.org
6867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
6868 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
6869 S:      Supported
6870 F:      drivers/fsi/
6871 F:      include/linux/fsi*.h
6872 F:      include/trace/events/fsi*.h
6873
6874 FSI-ATTACHED I2C DRIVER
6875 M:      Eddie James <eajames@linux.ibm.com>
6876 L:      linux-i2c@vger.kernel.org
6877 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
6878 S:      Maintained
6879 F:      drivers/i2c/busses/i2c-fsi.c
6880 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
6881
6882 FSI-ATTACHED SPI DRIVER
6883 M:      Eddie James <eajames@linux.ibm.com>
6884 L:      linux-spi@vger.kernel.org
6885 S:      Maintained
6886 F:      drivers/spi/spi-fsi.c
6887 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
6888
6889 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
6890 M:      Jan Kara <jack@suse.cz>
6891 R:      Amir Goldstein <amir73il@gmail.com>
6892 L:      linux-fsdevel@vger.kernel.org
6893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
6894 S:      Maintained
6895 F:      fs/notify/
6896 F:      include/linux/fsnotify*.h
6897
6898 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
6899 M:      Eric Biggers <ebiggers@kernel.org>
6900 M:      Theodore Y. Ts'o <tytso@mit.edu>
6901 L:      linux-fscrypt@vger.kernel.org
6902 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6903 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
6904 S:      Supported
6905 F:      fs/verity/
6906 F:      include/linux/fsverity.h
6907 F:      include/uapi/linux/fsverity.h
6908 F:      Documentation/filesystems/fsverity.rst
6909
6910 FUJITSU LAPTOP EXTRAS
6911 M:      Jonathan Woithe <jwoithe@just42.net>
6912 L:      platform-driver-x86@vger.kernel.org
6913 S:      Maintained
6914 F:      drivers/platform/x86/fujitsu-laptop.c
6915
6916 FUJITSU M-5MO LS CAMERA ISP DRIVER
6917 M:      Kyungmin Park <kyungmin.park@samsung.com>
6918 M:      Heungjun Kim <riverful.kim@samsung.com>
6919 L:      linux-media@vger.kernel.org
6920 S:      Maintained
6921 F:      drivers/media/i2c/m5mols/
6922 F:      include/media/i2c/m5mols.h
6923
6924 FUJITSU TABLET EXTRAS
6925 M:      Robert Gerlach <khnz@gmx.de>
6926 L:      platform-driver-x86@vger.kernel.org
6927 S:      Maintained
6928 F:      drivers/platform/x86/fujitsu-tablet.c
6929
6930 FUSE: FILESYSTEM IN USERSPACE
6931 M:      Miklos Szeredi <miklos@szeredi.hu>
6932 L:      linux-fsdevel@vger.kernel.org
6933 W:      http://fuse.sourceforge.net/
6934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
6935 S:      Maintained
6936 F:      fs/fuse/
6937 F:      include/uapi/linux/fuse.h
6938 F:      Documentation/filesystems/fuse.rst
6939
6940 FUTEX SUBSYSTEM
6941 M:      Thomas Gleixner <tglx@linutronix.de>
6942 M:      Ingo Molnar <mingo@redhat.com>
6943 R:      Peter Zijlstra <peterz@infradead.org>
6944 R:      Darren Hart <dvhart@infradead.org>
6945 L:      linux-kernel@vger.kernel.org
6946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
6947 S:      Maintained
6948 F:      kernel/futex.c
6949 F:      include/asm-generic/futex.h
6950 F:      include/linux/futex.h
6951 F:      include/uapi/linux/futex.h
6952 F:      tools/testing/selftests/futex/
6953 F:      tools/perf/bench/futex*
6954 F:      Documentation/*futex*
6955
6956 GCC PLUGINS
6957 M:      Kees Cook <keescook@chromium.org>
6958 R:      Emese Revfy <re.emese@gmail.com>
6959 L:      kernel-hardening@lists.openwall.com
6960 S:      Maintained
6961 F:      scripts/gcc-plugins/
6962 F:      scripts/gcc-plugin.sh
6963 F:      scripts/Makefile.gcc-plugins
6964 F:      Documentation/kbuild/gcc-plugins.rst
6965
6966 GASKET DRIVER FRAMEWORK
6967 M:      Rob Springer <rspringer@google.com>
6968 M:      Todd Poynor <toddpoynor@google.com>
6969 M:      Ben Chan <benchan@chromium.org>
6970 S:      Maintained
6971 F:      drivers/staging/gasket/
6972
6973 GCOV BASED KERNEL PROFILING
6974 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
6975 S:      Maintained
6976 F:      kernel/gcov/
6977 F:      Documentation/dev-tools/gcov.rst
6978
6979 GDB KERNEL DEBUGGING HELPER SCRIPTS
6980 M:      Jan Kiszka <jan.kiszka@siemens.com>
6981 M:      Kieran Bingham <kbingham@kernel.org>
6982 S:      Supported
6983 F:      scripts/gdb/
6984
6985 GDT SCSI DISK ARRAY CONTROLLER DRIVER
6986 M:      Achim Leubner <achim_leubner@adaptec.com>
6987 L:      linux-scsi@vger.kernel.org
6988 W:      http://www.icp-vortex.com/
6989 S:      Supported
6990 F:      drivers/scsi/gdt*
6991
6992 GEMTEK FM RADIO RECEIVER DRIVER
6993 M:      Hans Verkuil <hverkuil@xs4all.nl>
6994 L:      linux-media@vger.kernel.org
6995 T:      git git://linuxtv.org/media_tree.git
6996 W:      https://linuxtv.org
6997 S:      Maintained
6998 F:      drivers/media/radio/radio-gemtek*
6999
7000 GENERIC ARCHITECTURE TOPOLOGY
7001 M:      Sudeep Holla <sudeep.holla@arm.com>
7002 L:      linux-kernel@vger.kernel.org
7003 S:      Maintained
7004 F:      drivers/base/arch_topology.c
7005 F:      include/linux/arch_topology.h
7006
7007 GENERIC GPIO I2C DRIVER
7008 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7009 S:      Supported
7010 F:      drivers/i2c/busses/i2c-gpio.c
7011 F:      include/linux/platform_data/i2c-gpio.h
7012
7013 GENERIC GPIO I2C MULTIPLEXER DRIVER
7014 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7015 L:      linux-i2c@vger.kernel.org
7016 S:      Supported
7017 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7018 F:      include/linux/platform_data/i2c-mux-gpio.h
7019 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7020
7021 GENERIC HDLC (WAN) DRIVERS
7022 M:      Krzysztof Halasa <khc@pm.waw.pl>
7023 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7024 S:      Maintained
7025 F:      drivers/net/wan/c101.c
7026 F:      drivers/net/wan/hd6457*
7027 F:      drivers/net/wan/hdlc*
7028 F:      drivers/net/wan/n2.c
7029 F:      drivers/net/wan/pc300too.c
7030 F:      drivers/net/wan/pci200syn.c
7031 F:      drivers/net/wan/wanxl*
7032
7033 GENERIC INCLUDE/ASM HEADER FILES
7034 M:      Arnd Bergmann <arnd@arndb.de>
7035 L:      linux-arch@vger.kernel.org
7036 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7037 S:      Maintained
7038 F:      include/asm-generic/
7039 F:      include/uapi/asm-generic/
7040
7041 GENERIC PHY FRAMEWORK
7042 M:      Kishon Vijay Abraham I <kishon@ti.com>
7043 L:      linux-kernel@vger.kernel.org
7044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
7045 S:      Supported
7046 F:      drivers/phy/
7047 F:      include/linux/phy/
7048 F:      Documentation/devicetree/bindings/phy/
7049
7050 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7051 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7052 S:      Supported
7053 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7054
7055 GENERIC PM DOMAINS
7056 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7057 M:      Kevin Hilman <khilman@kernel.org>
7058 M:      Ulf Hansson <ulf.hansson@linaro.org>
7059 L:      linux-pm@vger.kernel.org
7060 S:      Supported
7061 F:      drivers/base/power/domain*.c
7062 F:      include/linux/pm_domain.h
7063 F:      Documentation/devicetree/bindings/power/power?domain*
7064
7065 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7066 M:      Eugen Hristev <eugen.hristev@microchip.com>
7067 L:      linux-input@vger.kernel.org
7068 S:      Maintained
7069 F:      drivers/input/touchscreen/resistive-adc-touch.c
7070
7071 GENERIC UIO DRIVER FOR PCI DEVICES
7072 M:      "Michael S. Tsirkin" <mst@redhat.com>
7073 L:      kvm@vger.kernel.org
7074 S:      Supported
7075 F:      drivers/uio/uio_pci_generic.c
7076
7077 GENERIC VDSO LIBRARY
7078 M:      Andy Lutomirski <luto@kernel.org>
7079 M:      Thomas Gleixner <tglx@linutronix.de>
7080 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7081 L:      linux-kernel@vger.kernel.org
7082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7083 S:      Maintained
7084 F:      lib/vdso/
7085 F:      kernel/time/vsyscall.c
7086 F:      include/vdso/
7087 F:      include/asm-generic/vdso/vsyscall.h
7088
7089 GENWQE (IBM Generic Workqueue Card)
7090 M:      Frank Haverkamp <haver@linux.ibm.com>
7091 S:      Supported
7092 F:      drivers/misc/genwqe/
7093
7094 GET_MAINTAINER SCRIPT
7095 M:      Joe Perches <joe@perches.com>
7096 S:      Maintained
7097 F:      scripts/get_maintainer.pl
7098
7099 GFS2 FILE SYSTEM
7100 M:      Bob Peterson <rpeterso@redhat.com>
7101 M:      Andreas Gruenbacher <agruenba@redhat.com>
7102 L:      cluster-devel@redhat.com
7103 W:      http://sources.redhat.com/cluster/
7104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7105 S:      Supported
7106 F:      Documentation/filesystems/gfs2*.txt
7107 F:      fs/gfs2/
7108 F:      include/uapi/linux/gfs2_ondisk.h
7109
7110 GNSS SUBSYSTEM
7111 M:      Johan Hovold <johan@kernel.org>
7112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7113 S:      Maintained
7114 F:      Documentation/ABI/testing/sysfs-class-gnss
7115 F:      Documentation/devicetree/bindings/gnss/
7116 F:      drivers/gnss/
7117 F:      include/linux/gnss.h
7118
7119 GO7007 MPEG CODEC
7120 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7121 L:      linux-media@vger.kernel.org
7122 S:      Maintained
7123 F:      drivers/media/usb/go7007/
7124
7125 GOODIX TOUCHSCREEN
7126 M:      Bastien Nocera <hadess@hadess.net>
7127 L:      linux-input@vger.kernel.org
7128 S:      Maintained
7129 F:      drivers/input/touchscreen/goodix.c
7130
7131 GOOGLE ETHERNET DRIVERS
7132 M:      Catherine Sullivan <csully@google.com>
7133 R:      Sagi Shahar <sagis@google.com>
7134 R:      Jon Olson <jonolson@google.com>
7135 L:      netdev@vger.kernel.org
7136 S:      Supported
7137 F:      Documentation/networking/device_drivers/google/gve.rst
7138 F:      drivers/net/ethernet/google
7139
7140 GPD POCKET FAN DRIVER
7141 M:      Hans de Goede <hdegoede@redhat.com>
7142 L:      platform-driver-x86@vger.kernel.org
7143 S:      Maintained
7144 F:      drivers/platform/x86/gpd-pocket-fan.c
7145
7146 GPIO ACPI SUPPORT
7147 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7148 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7149 L:      linux-gpio@vger.kernel.org
7150 L:      linux-acpi@vger.kernel.org
7151 S:      Maintained
7152 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7153 F:      drivers/gpio/gpiolib-acpi.c
7154 F:      drivers/gpio/gpiolib-acpi.h
7155
7156 GPIO IR Transmitter
7157 M:      Sean Young <sean@mess.org>
7158 L:      linux-media@vger.kernel.org
7159 S:      Maintained
7160 F:      drivers/media/rc/gpio-ir-tx.c
7161
7162 GPIO MOCKUP DRIVER
7163 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7164 L:      linux-gpio@vger.kernel.org
7165 S:      Maintained
7166 F:      drivers/gpio/gpio-mockup.c
7167 F:      tools/testing/selftests/gpio/
7168
7169 GPIO SUBSYSTEM
7170 M:      Linus Walleij <linus.walleij@linaro.org>
7171 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7172 L:      linux-gpio@vger.kernel.org
7173 S:      Maintained
7174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7175 F:      Documentation/ABI/obsolete/sysfs-gpio
7176 F:      Documentation/ABI/testing/gpio-cdev
7177 F:      Documentation/admin-guide/gpio/
7178 F:      Documentation/devicetree/bindings/gpio/
7179 F:      Documentation/driver-api/gpio/
7180 F:      drivers/gpio/
7181 F:      include/asm-generic/gpio.h
7182 F:      include/linux/gpio/
7183 F:      include/linux/gpio.h
7184 F:      include/linux/of_gpio.h
7185 F:      include/uapi/linux/gpio.h
7186 F:      tools/gpio/
7187
7188 GRE DEMULTIPLEXER DRIVER
7189 M:      Dmitry Kozlov <xeb@mail.ru>
7190 L:      netdev@vger.kernel.org
7191 S:      Maintained
7192 F:      net/ipv4/gre_demux.c
7193 F:      net/ipv4/gre_offload.c
7194 F:      include/net/gre.h
7195
7196 GRETH 10/100/1G Ethernet MAC device driver
7197 M:      Andreas Larsson <andreas@gaisler.com>
7198 L:      netdev@vger.kernel.org
7199 S:      Maintained
7200 F:      drivers/net/ethernet/aeroflex/
7201
7202 GREYBUS AUDIO PROTOCOLS DRIVERS
7203 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7204 M:      Mark Greer <mgreer@animalcreek.com>
7205 S:      Maintained
7206 F:      drivers/staging/greybus/audio_apbridgea.c
7207 F:      drivers/staging/greybus/audio_apbridgea.h
7208 F:      drivers/staging/greybus/audio_codec.c
7209 F:      drivers/staging/greybus/audio_codec.h
7210 F:      drivers/staging/greybus/audio_gb.c
7211 F:      drivers/staging/greybus/audio_manager.c
7212 F:      drivers/staging/greybus/audio_manager.h
7213 F:      drivers/staging/greybus/audio_manager_module.c
7214 F:      drivers/staging/greybus/audio_manager_private.h
7215 F:      drivers/staging/greybus/audio_manager_sysfs.c
7216 F:      drivers/staging/greybus/audio_module.c
7217 F:      drivers/staging/greybus/audio_topology.c
7218
7219 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7220 M:      Viresh Kumar <vireshk@kernel.org>
7221 S:      Maintained
7222 F:      drivers/staging/greybus/authentication.c
7223 F:      drivers/staging/greybus/bootrom.c
7224 F:      drivers/staging/greybus/firmware.h
7225 F:      drivers/staging/greybus/fw-core.c
7226 F:      drivers/staging/greybus/fw-download.c
7227 F:      drivers/staging/greybus/fw-management.c
7228 F:      drivers/staging/greybus/greybus_authentication.h
7229 F:      drivers/staging/greybus/greybus_firmware.h
7230 F:      drivers/staging/greybus/hid.c
7231 F:      drivers/staging/greybus/i2c.c
7232 F:      drivers/staging/greybus/spi.c
7233 F:      drivers/staging/greybus/spilib.c
7234 F:      drivers/staging/greybus/spilib.h
7235
7236 GREYBUS LOOPBACK DRIVER
7237 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7238 S:      Maintained
7239 F:      drivers/staging/greybus/loopback.c
7240
7241 GREYBUS PLATFORM DRIVERS
7242 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7243 S:      Maintained
7244 F:      drivers/staging/greybus/arche-platform.c
7245 F:      drivers/staging/greybus/arche-apb-ctrl.c
7246 F:      drivers/staging/greybus/arche_platform.h
7247
7248 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7249 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7250 S:      Maintained
7251 F:      drivers/staging/greybus/sdio.c
7252 F:      drivers/staging/greybus/light.c
7253 F:      drivers/staging/greybus/gpio.c
7254 F:      drivers/staging/greybus/power_supply.c
7255 F:      drivers/staging/greybus/spi.c
7256 F:      drivers/staging/greybus/spilib.c
7257
7258 GREYBUS SUBSYSTEM
7259 M:      Johan Hovold <johan@kernel.org>
7260 M:      Alex Elder <elder@kernel.org>
7261 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7262 S:      Maintained
7263 F:      drivers/staging/greybus/
7264 F:      drivers/greybus/
7265 F:      include/linux/greybus.h
7266 F:      include/linux/greybus/
7267 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7268
7269 GREYBUS UART PROTOCOLS DRIVERS
7270 M:      David Lin <dtwlin@gmail.com>
7271 S:      Maintained
7272 F:      drivers/staging/greybus/uart.c
7273 F:      drivers/staging/greybus/log.c
7274
7275 GS1662 VIDEO SERIALIZER
7276 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7277 L:      linux-media@vger.kernel.org
7278 T:      git git://linuxtv.org/media_tree.git
7279 S:      Maintained
7280 F:      drivers/media/spi/gs1662.c
7281
7282 GSPCA FINEPIX SUBDRIVER
7283 M:      Frank Zago <frank@zago.net>
7284 L:      linux-media@vger.kernel.org
7285 T:      git git://linuxtv.org/media_tree.git
7286 S:      Maintained
7287 F:      drivers/media/usb/gspca/finepix.c
7288
7289 GSPCA GL860 SUBDRIVER
7290 M:      Olivier Lorin <o.lorin@laposte.net>
7291 L:      linux-media@vger.kernel.org
7292 T:      git git://linuxtv.org/media_tree.git
7293 S:      Maintained
7294 F:      drivers/media/usb/gspca/gl860/
7295
7296 GSPCA M5602 SUBDRIVER
7297 M:      Erik Andren <erik.andren@gmail.com>
7298 L:      linux-media@vger.kernel.org
7299 T:      git git://linuxtv.org/media_tree.git
7300 S:      Maintained
7301 F:      drivers/media/usb/gspca/m5602/
7302
7303 GSPCA PAC207 SONIXB SUBDRIVER
7304 M:      Hans Verkuil <hverkuil@xs4all.nl>
7305 L:      linux-media@vger.kernel.org
7306 T:      git git://linuxtv.org/media_tree.git
7307 S:      Odd Fixes
7308 F:      drivers/media/usb/gspca/pac207.c
7309
7310 GSPCA SN9C20X SUBDRIVER
7311 M:      Brian Johnson <brijohn@gmail.com>
7312 L:      linux-media@vger.kernel.org
7313 T:      git git://linuxtv.org/media_tree.git
7314 S:      Maintained
7315 F:      drivers/media/usb/gspca/sn9c20x.c
7316
7317 GSPCA T613 SUBDRIVER
7318 M:      Leandro Costantino <lcostantino@gmail.com>
7319 L:      linux-media@vger.kernel.org
7320 T:      git git://linuxtv.org/media_tree.git
7321 S:      Maintained
7322 F:      drivers/media/usb/gspca/t613.c
7323
7324 GSPCA USB WEBCAM DRIVER
7325 M:      Hans Verkuil <hverkuil@xs4all.nl>
7326 L:      linux-media@vger.kernel.org
7327 T:      git git://linuxtv.org/media_tree.git
7328 S:      Odd Fixes
7329 F:      drivers/media/usb/gspca/
7330
7331 GTP (GPRS Tunneling Protocol)
7332 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7333 M:      Harald Welte <laforge@gnumonks.org>
7334 L:      osmocom-net-gprs@lists.osmocom.org
7335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7336 S:      Maintained
7337 F:      drivers/net/gtp.c
7338
7339 GUID PARTITION TABLE (GPT)
7340 M:      Davidlohr Bueso <dave@stgolabs.net>
7341 L:      linux-efi@vger.kernel.org
7342 S:      Maintained
7343 F:      block/partitions/efi.*
7344
7345 H8/300 ARCHITECTURE
7346 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
7347 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7348 W:      http://uclinux-h8.sourceforge.jp
7349 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7350 S:      Maintained
7351 F:      arch/h8300/
7352 F:      drivers/clocksource/h8300_*.c
7353 F:      drivers/clk/h8300/
7354 F:      drivers/irqchip/irq-renesas-h8*.c
7355
7356 HABANALABS PCI DRIVER
7357 M:      Oded Gabbay <oded.gabbay@gmail.com>
7358 T:      git https://github.com/HabanaAI/linux.git
7359 S:      Supported
7360 F:      drivers/misc/habanalabs/
7361 F:      include/uapi/misc/habanalabs.h
7362 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7363 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7364
7365 HACKRF MEDIA DRIVER
7366 M:      Antti Palosaari <crope@iki.fi>
7367 L:      linux-media@vger.kernel.org
7368 W:      https://linuxtv.org
7369 W:      http://palosaari.fi/linux/
7370 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7371 T:      git git://linuxtv.org/anttip/media_tree.git
7372 S:      Maintained
7373 F:      drivers/media/usb/hackrf/
7374
7375 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7376 M:      Frank Seidel <frank@f-seidel.de>
7377 L:      platform-driver-x86@vger.kernel.org
7378 S:      Maintained
7379 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7380 F:      drivers/platform/x86/hdaps.c
7381
7382 HARDWARE MONITORING
7383 M:      Jean Delvare <jdelvare@suse.com>
7384 M:      Guenter Roeck <linux@roeck-us.net>
7385 L:      linux-hwmon@vger.kernel.org
7386 W:      http://hwmon.wiki.kernel.org/
7387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7388 S:      Maintained
7389 F:      Documentation/devicetree/bindings/hwmon/
7390 F:      Documentation/hwmon/
7391 F:      drivers/hwmon/
7392 F:      include/linux/hwmon*.h
7393 F:      include/trace/events/hwmon*.h
7394
7395 HARDWARE RANDOM NUMBER GENERATOR CORE
7396 M:      Matt Mackall <mpm@selenic.com>
7397 M:      Herbert Xu <herbert@gondor.apana.org.au>
7398 L:      linux-crypto@vger.kernel.org
7399 S:      Odd fixes
7400 F:      Documentation/devicetree/bindings/rng/
7401 F:      Documentation/admin-guide/hw_random.rst
7402 F:      drivers/char/hw_random/
7403 F:      include/linux/hw_random.h
7404
7405 HARDWARE TRACING FACILITIES
7406 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7407 S:      Maintained
7408 F:      drivers/hwtracing/
7409
7410 HARDWARE SPINLOCK CORE
7411 M:      Ohad Ben-Cohen <ohad@wizery.com>
7412 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
7413 R:      Baolin Wang <baolin.wang7@gmail.com>
7414 L:      linux-remoteproc@vger.kernel.org
7415 S:      Maintained
7416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7417 F:      Documentation/devicetree/bindings/hwlock/
7418 F:      Documentation/hwspinlock.txt
7419 F:      drivers/hwspinlock/
7420 F:      include/linux/hwspinlock.h
7421
7422 HARMONY SOUND DRIVER
7423 L:      linux-parisc@vger.kernel.org
7424 S:      Maintained
7425 F:      sound/parisc/harmony.*
7426
7427 HDPVR USB VIDEO ENCODER DRIVER
7428 M:      Hans Verkuil <hverkuil@xs4all.nl>
7429 L:      linux-media@vger.kernel.org
7430 T:      git git://linuxtv.org/media_tree.git
7431 W:      https://linuxtv.org
7432 S:      Odd Fixes
7433 F:      drivers/media/usb/hdpvr/
7434
7435 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7436 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
7437 S:      Supported
7438 F:      Documentation/watchdog/hpwdt.rst
7439 F:      drivers/watchdog/hpwdt.c
7440
7441 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7442 M:      Don Brace <don.brace@microsemi.com>
7443 L:      esc.storagedev@microsemi.com
7444 L:      linux-scsi@vger.kernel.org
7445 S:      Supported
7446 F:      Documentation/scsi/hpsa.txt
7447 F:      drivers/scsi/hpsa*.[ch]
7448 F:      include/linux/cciss*.h
7449 F:      include/uapi/linux/cciss*.h
7450
7451 HFI1 DRIVER
7452 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
7453 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
7454 L:      linux-rdma@vger.kernel.org
7455 S:      Supported
7456 F:      drivers/infiniband/hw/hfi1
7457
7458 HFS FILESYSTEM
7459 L:      linux-fsdevel@vger.kernel.org
7460 S:      Orphan
7461 F:      Documentation/filesystems/hfs.rst
7462 F:      fs/hfs/
7463
7464 HFSPLUS FILESYSTEM
7465 L:      linux-fsdevel@vger.kernel.org
7466 S:      Orphan
7467 F:      Documentation/filesystems/hfsplus.rst
7468 F:      fs/hfsplus/
7469
7470 HGA FRAMEBUFFER DRIVER
7471 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7472 L:      linux-nvidia@lists.surfsouth.com
7473 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7474 S:      Maintained
7475 F:      drivers/video/fbdev/hgafb.c
7476
7477 HIBERNATION (aka Software Suspend, aka swsusp)
7478 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7479 M:      Pavel Machek <pavel@ucw.cz>
7480 L:      linux-pm@vger.kernel.org
7481 B:      https://bugzilla.kernel.org
7482 S:      Supported
7483 F:      arch/x86/power/
7484 F:      drivers/base/power/
7485 F:      kernel/power/
7486 F:      include/linux/suspend.h
7487 F:      include/linux/freezer.h
7488 F:      include/linux/pm.h
7489 F:      arch/*/include/asm/suspend*.h
7490
7491 HID CORE LAYER
7492 M:      Jiri Kosina <jikos@kernel.org>
7493 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
7494 L:      linux-input@vger.kernel.org
7495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7496 S:      Maintained
7497 F:      drivers/hid/
7498 F:      include/linux/hid*
7499 F:      include/uapi/linux/hid*
7500
7501 HID SENSOR HUB DRIVERS
7502 M:      Jiri Kosina <jikos@kernel.org>
7503 M:      Jonathan Cameron <jic23@kernel.org>
7504 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7505 L:      linux-input@vger.kernel.org
7506 L:      linux-iio@vger.kernel.org
7507 S:      Maintained
7508 F:      Documentation/hid/hid-sensor*
7509 F:      drivers/hid/hid-sensor-*
7510 F:      drivers/iio/*/hid-*
7511 F:      include/linux/hid-sensor-*
7512
7513 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7514 M:      Thomas Gleixner <tglx@linutronix.de>
7515 L:      linux-kernel@vger.kernel.org
7516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7517 S:      Maintained
7518 F:      Documentation/timers/
7519 F:      kernel/time/hrtimer.c
7520 F:      kernel/time/clockevents.c
7521 F:      kernel/time/timer_*.c
7522 F:      include/linux/clockchips.h
7523 F:      include/linux/hrtimer.h
7524
7525 HIGH-SPEED SCC DRIVER FOR AX.25
7526 L:      linux-hams@vger.kernel.org
7527 S:      Orphan
7528 F:      drivers/net/hamradio/dmascc.c
7529 F:      drivers/net/hamradio/scc.c
7530
7531 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7532 M:      HighPoint Linux Team <linux@highpoint-tech.com>
7533 W:      http://www.highpoint-tech.com
7534 S:      Supported
7535 F:      Documentation/scsi/hptiop.txt
7536 F:      drivers/scsi/hptiop.c
7537
7538 HIPPI
7539 M:      Jes Sorensen <jes@trained-monkey.org>
7540 L:      linux-hippi@sunsite.dk
7541 S:      Maintained
7542 F:      include/linux/hippidevice.h
7543 F:      include/uapi/linux/if_hippi.h
7544 F:      net/802/hippi.c
7545 F:      drivers/net/hippi/
7546
7547 HISILICON DMA DRIVER
7548 M:      Zhou Wang <wangzhou1@hisilicon.com>
7549 L:      dmaengine@vger.kernel.org
7550 S:      Maintained
7551 F:      drivers/dma/hisi_dma.c
7552
7553 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
7554 M:      Zaibo Xu <xuzaibo@huawei.com>
7555 L:      linux-crypto@vger.kernel.org
7556 S:      Maintained
7557 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
7558 F:      drivers/crypto/hisilicon/sec2/sec_main.c
7559 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
7560 F:      drivers/crypto/hisilicon/sec2/sec.h
7561 F:      Documentation/ABI/testing/debugfs-hisi-sec
7562
7563 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7564 M:      Zaibo Xu <xuzaibo@huawei.com>
7565 L:      linux-crypto@vger.kernel.org
7566 S:      Maintained
7567 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
7568 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
7569 F:      drivers/crypto/hisilicon/hpre/hpre.h
7570 F:      Documentation/ABI/testing/debugfs-hisi-hpre
7571
7572 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7573 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7574 M:      Salil Mehta <salil.mehta@huawei.com>
7575 L:      netdev@vger.kernel.org
7576 W:      http://www.hisilicon.com
7577 S:      Maintained
7578 F:      drivers/net/ethernet/hisilicon/hns3/
7579
7580 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
7581 M:      Zaibo Xu <xuzaibo@huawei.com>
7582 S:      Maintained
7583 F:      drivers/char/hw_random/hisi-trng-v2.c
7584
7585 HISILICON LPC BUS DRIVER
7586 M:      john.garry@huawei.com
7587 W:      http://www.hisilicon.com
7588 S:      Maintained
7589 F:      drivers/bus/hisi_lpc.c
7590 F:      Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
7591
7592 HISILICON NETWORK SUBSYSTEM DRIVER
7593 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7594 M:      Salil Mehta <salil.mehta@huawei.com>
7595 L:      netdev@vger.kernel.org
7596 W:      http://www.hisilicon.com
7597 S:      Maintained
7598 F:      drivers/net/ethernet/hisilicon/
7599 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7600
7601 HISILICON PMU DRIVER
7602 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
7603 W:      http://www.hisilicon.com
7604 S:      Supported
7605 F:      drivers/perf/hisilicon
7606 F:      Documentation/admin-guide/perf/hisi-pmu.rst
7607
7608 HISILICON ROCE DRIVER
7609 M:      Lijun Ou <oulijun@huawei.com>
7610 M:      Wei Hu(Xavier) <huwei87@hisilicon.com>
7611 M:      Weihang Li <liweihang@huawei.com>
7612 L:      linux-rdma@vger.kernel.org
7613 S:      Maintained
7614 F:      drivers/infiniband/hw/hns/
7615 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7616
7617 HISILICON SAS Controller
7618 M:      John Garry <john.garry@huawei.com>
7619 W:      http://www.hisilicon.com
7620 S:      Supported
7621 F:      drivers/scsi/hisi_sas/
7622 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7623
7624 HISILICON V3XX SPI NOR FLASH Controller Driver
7625 M:      John Garry <john.garry@huawei.com>
7626 W:      http://www.hisilicon.com
7627 S:      Maintained
7628 F:      drivers/spi/spi-hisi-sfc-v3xx.c
7629
7630 HISILICON QM AND ZIP Controller DRIVER
7631 M:      Zhou Wang <wangzhou1@hisilicon.com>
7632 L:      linux-crypto@vger.kernel.org
7633 S:      Maintained
7634 F:      drivers/crypto/hisilicon/qm.c
7635 F:      drivers/crypto/hisilicon/qm.h
7636 F:      drivers/crypto/hisilicon/sgl.c
7637 F:      drivers/crypto/hisilicon/zip/
7638 F:      Documentation/ABI/testing/debugfs-hisi-zip
7639
7640 HMM - Heterogeneous Memory Management
7641 M:      Jérôme Glisse <jglisse@redhat.com>
7642 L:      linux-mm@kvack.org
7643 S:      Maintained
7644 F:      mm/hmm*
7645 F:      include/linux/hmm*
7646 F:      Documentation/vm/hmm.rst
7647
7648 HOST AP DRIVER
7649 M:      Jouni Malinen <j@w1.fi>
7650 L:      linux-wireless@vger.kernel.org
7651 W:      http://w1.fi/hostap-driver.html
7652 S:      Obsolete
7653 F:      drivers/net/wireless/intersil/hostap/
7654
7655 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
7656 L:      platform-driver-x86@vger.kernel.org
7657 S:      Orphan
7658 F:      drivers/platform/x86/tc1100-wmi.c
7659
7660 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
7661 M:      Jaroslav Kysela <perex@perex.cz>
7662 S:      Obsolete
7663 F:      drivers/staging/hp/hp100.*
7664
7665 HPET:   High Precision Event Timers driver
7666 M:      Clemens Ladisch <clemens@ladisch.de>
7667 S:      Maintained
7668 F:      Documentation/timers/hpet.rst
7669 F:      drivers/char/hpet.c
7670 F:      include/linux/hpet.h
7671 F:      include/uapi/linux/hpet.h
7672
7673 HPET:   x86
7674 S:      Orphan
7675 F:      arch/x86/kernel/hpet.c
7676 F:      arch/x86/include/asm/hpet.h
7677
7678 HPFS FILESYSTEM
7679 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
7680 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
7681 S:      Maintained
7682 F:      fs/hpfs/
7683
7684 HSI SUBSYSTEM
7685 M:      Sebastian Reichel <sre@kernel.org>
7686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
7687 S:      Maintained
7688 F:      Documentation/ABI/testing/sysfs-bus-hsi
7689 F:      Documentation/driver-api/hsi.rst
7690 F:      drivers/hsi/
7691 F:      include/linux/hsi/
7692 F:      include/uapi/linux/hsi/
7693
7694 HSO 3G MODEM DRIVER
7695 L:      linux-usb@vger.kernel.org
7696 S:      Orphan
7697 F:      drivers/net/usb/hso.c
7698
7699 HSR NETWORK PROTOCOL
7700 L:      netdev@vger.kernel.org
7701 S:      Orphan
7702 F:      net/hsr/
7703
7704 HT16K33 LED CONTROLLER DRIVER
7705 M:      Robin van der Gracht <robin@protonic.nl>
7706 S:      Maintained
7707 F:      drivers/auxdisplay/ht16k33.c
7708 F:      Documentation/devicetree/bindings/display/ht16k33.txt
7709
7710 HTCPEN TOUCHSCREEN DRIVER
7711 M:      Pau Oliva Fora <pof@eslack.org>
7712 L:      linux-input@vger.kernel.org
7713 S:      Maintained
7714 F:      drivers/input/touchscreen/htcpen.c
7715
7716 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
7717 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
7718 L:      linux-iio@vger.kernel.org
7719 W:      http://www.st.com/
7720 S:      Maintained
7721 F:      drivers/iio/humidity/hts221*
7722 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
7723
7724 HUAWEI ETHERNET DRIVER
7725 M:      Aviad Krawczyk <aviad.krawczyk@huawei.com>
7726 L:      netdev@vger.kernel.org
7727 S:      Supported
7728 F:      Documentation/networking/hinic.txt
7729 F:      drivers/net/ethernet/huawei/hinic/
7730
7731 HUGETLB FILESYSTEM
7732 M:      Mike Kravetz <mike.kravetz@oracle.com>
7733 L:      linux-mm@kvack.org
7734 S:      Maintained
7735 F:      fs/hugetlbfs/
7736 F:      mm/hugetlb.c
7737 F:      include/linux/hugetlb.h
7738 F:      Documentation/admin-guide/mm/hugetlbpage.rst
7739 F:      Documentation/vm/hugetlbfs_reserv.rst
7740 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
7741
7742 HVA ST MEDIA DRIVER
7743 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
7744 L:      linux-media@vger.kernel.org
7745 T:      git git://linuxtv.org/media_tree.git
7746 W:      https://linuxtv.org
7747 S:      Supported
7748 F:      drivers/media/platform/sti/hva
7749
7750 HWPOISON MEMORY FAILURE HANDLING
7751 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
7752 L:      linux-mm@kvack.org
7753 S:      Maintained
7754 F:      mm/memory-failure.c
7755 F:      mm/hwpoison-inject.c
7756
7757 HYGON PROCESSOR SUPPORT
7758 M:      Pu Wen <puwen@hygon.cn>
7759 L:      linux-kernel@vger.kernel.org
7760 S:      Maintained
7761 F:      arch/x86/kernel/cpu/hygon.c
7762
7763 HYNIX HI556 SENSOR DRIVER
7764 M:      Shawn Tu <shawnx.tu@intel.com>
7765 L:      linux-media@vger.kernel.org
7766 T:      git git://linuxtv.org/media_tree.git
7767 S:      Maintained
7768 F:      drivers/media/i2c/hi556.c
7769
7770 Hyper-V CORE AND DRIVERS
7771 M:      "K. Y. Srinivasan" <kys@microsoft.com>
7772 M:      Haiyang Zhang <haiyangz@microsoft.com>
7773 M:      Stephen Hemminger <sthemmin@microsoft.com>
7774 M:      Wei Liu <wei.liu@kernel.org>
7775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
7776 L:      linux-hyperv@vger.kernel.org
7777 S:      Supported
7778 F:      Documentation/networking/device_drivers/microsoft/netvsc.txt
7779 F:      arch/x86/include/asm/mshyperv.h
7780 F:      arch/x86/include/asm/trace/hyperv.h
7781 F:      arch/x86/include/asm/hyperv-tlfs.h
7782 F:      arch/x86/kernel/cpu/mshyperv.c
7783 F:      arch/x86/hyperv
7784 F:      drivers/clocksource/hyperv_timer.c
7785 F:      drivers/hid/hid-hyperv.c
7786 F:      drivers/hv/
7787 F:      drivers/input/serio/hyperv-keyboard.c
7788 F:      drivers/pci/controller/pci-hyperv.c
7789 F:      drivers/pci/controller/pci-hyperv-intf.c
7790 F:      drivers/net/hyperv/
7791 F:      drivers/scsi/storvsc_drv.c
7792 F:      drivers/uio/uio_hv_generic.c
7793 F:      drivers/video/fbdev/hyperv_fb.c
7794 F:      drivers/iommu/hyperv-iommu.c
7795 F:      net/vmw_vsock/hyperv_transport.c
7796 F:      include/clocksource/hyperv_timer.h
7797 F:      include/linux/hyperv.h
7798 F:      include/uapi/linux/hyperv.h
7799 F:      include/asm-generic/mshyperv.h
7800 F:      tools/hv/
7801 F:      Documentation/ABI/stable/sysfs-bus-vmbus
7802 F:      Documentation/ABI/testing/debugfs-hyperv
7803
7804 HYPERBUS SUPPORT
7805 M:      Vignesh Raghavendra <vigneshr@ti.com>
7806 S:      Supported
7807 F:      drivers/mtd/hyperbus/
7808 F:      include/linux/mtd/hyperbus.h
7809 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
7810 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
7811
7812 HYPERVISOR VIRTUAL CONSOLE DRIVER
7813 L:      linuxppc-dev@lists.ozlabs.org
7814 S:      Odd Fixes
7815 F:      drivers/tty/hvc/
7816
7817 I2C ACPI SUPPORT
7818 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7819 L:      linux-i2c@vger.kernel.org
7820 L:      linux-acpi@vger.kernel.org
7821 S:      Maintained
7822 F:      drivers/i2c/i2c-core-acpi.c
7823
7824 I2C CONTROLLER DRIVER FOR NVIDIA GPU
7825 M:      Ajay Gupta <ajayg@nvidia.com>
7826 L:      linux-i2c@vger.kernel.org
7827 S:      Maintained
7828 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
7829 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
7830
7831 I2C MUXES
7832 M:      Peter Rosin <peda@axentia.se>
7833 L:      linux-i2c@vger.kernel.org
7834 S:      Maintained
7835 F:      Documentation/i2c/i2c-topology.rst
7836 F:      Documentation/i2c/muxes/
7837 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
7838 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
7839 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
7840 F:      drivers/i2c/i2c-mux.c
7841 F:      drivers/i2c/muxes/
7842 F:      include/linux/i2c-mux.h
7843
7844 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
7845 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
7846 L:      linux-i2c@vger.kernel.org
7847 S:      Maintained
7848 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
7849 F:      drivers/i2c/busses/i2c-mv64xxx.c
7850
7851 I2C OVER PARALLEL PORT
7852 M:      Jean Delvare <jdelvare@suse.com>
7853 L:      linux-i2c@vger.kernel.org
7854 S:      Maintained
7855 F:      Documentation/i2c/busses/i2c-parport.rst
7856 F:      drivers/i2c/busses/i2c-parport.c
7857
7858 I2C SUBSYSTEM
7859 M:      Wolfram Sang <wsa@the-dreams.de>
7860 L:      linux-i2c@vger.kernel.org
7861 W:      https://i2c.wiki.kernel.org/
7862 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7864 S:      Maintained
7865 F:      Documentation/devicetree/bindings/i2c/i2c.txt
7866 F:      Documentation/i2c/
7867 F:      drivers/i2c/*
7868 F:      include/linux/i2c.h
7869 F:      include/linux/i2c-dev.h
7870 F:      include/linux/i2c-smbus.h
7871 F:      include/uapi/linux/i2c.h
7872 F:      include/uapi/linux/i2c-*.h
7873
7874 I2C SUBSYSTEM HOST DRIVERS
7875 L:      linux-i2c@vger.kernel.org
7876 W:      https://i2c.wiki.kernel.org/
7877 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7879 S:      Odd Fixes
7880 F:      Documentation/devicetree/bindings/i2c/
7881 F:      drivers/i2c/algos/
7882 F:      drivers/i2c/busses/
7883
7884 I2C-TAOS-EVM DRIVER
7885 M:      Jean Delvare <jdelvare@suse.com>
7886 L:      linux-i2c@vger.kernel.org
7887 S:      Maintained
7888 F:      Documentation/i2c/busses/i2c-taos-evm.rst
7889 F:      drivers/i2c/busses/i2c-taos-evm.c
7890
7891 I2C-TINY-USB DRIVER
7892 M:      Till Harbaum <till@harbaum.org>
7893 L:      linux-i2c@vger.kernel.org
7894 W:      http://www.harbaum.org/till/i2c_tiny_usb
7895 S:      Maintained
7896 F:      drivers/i2c/busses/i2c-tiny-usb.c
7897
7898 I2C/SMBUS CONTROLLER DRIVERS FOR PC
7899 M:      Jean Delvare <jdelvare@suse.com>
7900 L:      linux-i2c@vger.kernel.org
7901 S:      Maintained
7902 F:      Documentation/i2c/busses/i2c-ali1535.rst
7903 F:      Documentation/i2c/busses/i2c-ali1563.rst
7904 F:      Documentation/i2c/busses/i2c-ali15x3.rst
7905 F:      Documentation/i2c/busses/i2c-amd756.rst
7906 F:      Documentation/i2c/busses/i2c-amd8111.rst
7907 F:      Documentation/i2c/busses/i2c-i801.rst
7908 F:      Documentation/i2c/busses/i2c-nforce2.rst
7909 F:      Documentation/i2c/busses/i2c-piix4.rst
7910 F:      Documentation/i2c/busses/i2c-sis5595.rst
7911 F:      Documentation/i2c/busses/i2c-sis630.rst
7912 F:      Documentation/i2c/busses/i2c-sis96x.rst
7913 F:      Documentation/i2c/busses/i2c-via.rst
7914 F:      Documentation/i2c/busses/i2c-viapro.rst
7915 F:      drivers/i2c/busses/i2c-ali1535.c
7916 F:      drivers/i2c/busses/i2c-ali1563.c
7917 F:      drivers/i2c/busses/i2c-ali15x3.c
7918 F:      drivers/i2c/busses/i2c-amd756.c
7919 F:      drivers/i2c/busses/i2c-amd756-s4882.c
7920 F:      drivers/i2c/busses/i2c-amd8111.c
7921 F:      drivers/i2c/busses/i2c-i801.c
7922 F:      drivers/i2c/busses/i2c-isch.c
7923 F:      drivers/i2c/busses/i2c-nforce2.c
7924 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
7925 F:      drivers/i2c/busses/i2c-piix4.c
7926 F:      drivers/i2c/busses/i2c-sis5595.c
7927 F:      drivers/i2c/busses/i2c-sis630.c
7928 F:      drivers/i2c/busses/i2c-sis96x.c
7929 F:      drivers/i2c/busses/i2c-via.c
7930 F:      drivers/i2c/busses/i2c-viapro.c
7931
7932 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
7933 M:      Hans de Goede <hdegoede@redhat.com>
7934 L:      linux-i2c@vger.kernel.org
7935 S:      Maintained
7936 F:      drivers/i2c/busses/i2c-cht-wc.c
7937
7938 I2C/SMBUS ISMT DRIVER
7939 M:      Seth Heasley <seth.heasley@intel.com>
7940 M:      Neil Horman <nhorman@tuxdriver.com>
7941 L:      linux-i2c@vger.kernel.org
7942 F:      drivers/i2c/busses/i2c-ismt.c
7943 F:      Documentation/i2c/busses/i2c-ismt.rst
7944
7945 I2C/SMBUS STUB DRIVER
7946 M:      Jean Delvare <jdelvare@suse.com>
7947 L:      linux-i2c@vger.kernel.org
7948 S:      Maintained
7949 F:      drivers/i2c/i2c-stub.c
7950
7951 I3C SUBSYSTEM
7952 M:      Boris Brezillon <bbrezillon@kernel.org>
7953 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
7954 C:      irc://chat.freenode.net/linux-i3c
7955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
7956 S:      Maintained
7957 F:      Documentation/ABI/testing/sysfs-bus-i3c
7958 F:      Documentation/devicetree/bindings/i3c/
7959 F:      Documentation/driver-api/i3c
7960 F:      drivers/i3c/
7961 F:      include/linux/i3c/
7962
7963 I3C DRIVER FOR SYNOPSYS DESIGNWARE
7964 M:      Vitor Soares <vitor.soares@synopsys.com>
7965 S:      Maintained
7966 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
7967 F:      drivers/i3c/master/dw*
7968
7969 I3C DRIVER FOR CADENCE I3C MASTER IP
7970 M:      Przemysław Gaj <pgaj@cadence.com>
7971 S:      Maintained
7972 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
7973 F:      drivers/i3c/master/i3c-master-cdns.c
7974
7975 IA64 (Itanium) PLATFORM
7976 M:      Tony Luck <tony.luck@intel.com>
7977 M:      Fenghua Yu <fenghua.yu@intel.com>
7978 L:      linux-ia64@vger.kernel.org
7979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
7980 S:      Maintained
7981 F:      arch/ia64/
7982 F:      Documentation/ia64/
7983
7984 IBM Power 842 compression accelerator
7985 M:      Haren Myneni <haren@us.ibm.com>
7986 S:      Supported
7987 F:      drivers/crypto/nx/Makefile
7988 F:      drivers/crypto/nx/Kconfig
7989 F:      drivers/crypto/nx/nx-842*
7990 F:      include/linux/sw842.h
7991 F:      crypto/842.c
7992 F:      lib/842/
7993
7994 IBM Power in-Nest Crypto Acceleration
7995 M:      Breno Leitão <leitao@debian.org>
7996 M:      Nayna Jain <nayna@linux.ibm.com>
7997 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
7998 L:      linux-crypto@vger.kernel.org
7999 S:      Supported
8000 F:      drivers/crypto/nx/Makefile
8001 F:      drivers/crypto/nx/Kconfig
8002 F:      drivers/crypto/nx/nx-aes*
8003 F:      drivers/crypto/nx/nx-sha*
8004 F:      drivers/crypto/nx/nx.*
8005 F:      drivers/crypto/nx/nx_csbcpb.h
8006 F:      drivers/crypto/nx/nx_debugfs.c
8007
8008 IBM Power Linux RAID adapter
8009 M:      Brian King <brking@us.ibm.com>
8010 S:      Supported
8011 F:      drivers/scsi/ipr.*
8012
8013 IBM Power SRIOV Virtual NIC Device Driver
8014 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
8015 M:      John Allen <jallen@linux.ibm.com>
8016 L:      netdev@vger.kernel.org
8017 S:      Supported
8018 F:      drivers/net/ethernet/ibm/ibmvnic.*
8019
8020 IBM Power Virtual Accelerator Switchboard
8021 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8022 L:      linuxppc-dev@lists.ozlabs.org
8023 S:      Supported
8024 F:      arch/powerpc/platforms/powernv/vas*
8025 F:      arch/powerpc/platforms/powernv/copy-paste.h
8026 F:      arch/powerpc/include/asm/vas.h
8027
8028 IBM Power Virtual Ethernet Device Driver
8029 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
8030 L:      netdev@vger.kernel.org
8031 S:      Supported
8032 F:      drivers/net/ethernet/ibm/ibmveth.*
8033
8034 IBM Power Virtual FC Device Drivers
8035 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8036 L:      linux-scsi@vger.kernel.org
8037 S:      Supported
8038 F:      drivers/scsi/ibmvscsi/ibmvfc*
8039
8040 IBM Power Virtual Management Channel Driver
8041 M:      Steven Royer <seroyer@linux.ibm.com>
8042 S:      Supported
8043 F:      drivers/misc/ibmvmc.*
8044
8045 IBM Power Virtual SCSI Device Drivers
8046 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8047 L:      linux-scsi@vger.kernel.org
8048 S:      Supported
8049 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8050 F:      include/scsi/viosrp.h
8051
8052 IBM Power Virtual SCSI Device Target Driver
8053 M:      Michael Cyr <mikecyr@linux.ibm.com>
8054 L:      linux-scsi@vger.kernel.org
8055 L:      target-devel@vger.kernel.org
8056 S:      Supported
8057 F:      drivers/scsi/ibmvscsi_tgt/
8058
8059 IBM Power VMX Cryptographic instructions
8060 M:      Breno Leitão <leitao@debian.org>
8061 M:      Nayna Jain <nayna@linux.ibm.com>
8062 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8063 L:      linux-crypto@vger.kernel.org
8064 S:      Supported
8065 F:      drivers/crypto/vmx/Makefile
8066 F:      drivers/crypto/vmx/Kconfig
8067 F:      drivers/crypto/vmx/vmx.c
8068 F:      drivers/crypto/vmx/aes*
8069 F:      drivers/crypto/vmx/ghash*
8070 F:      drivers/crypto/vmx/ppc-xlate.pl
8071
8072 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8073 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8074 L:      linux-pci@vger.kernel.org
8075 L:      linuxppc-dev@lists.ozlabs.org
8076 S:      Supported
8077 F:      drivers/pci/hotplug/rpaphp*
8078
8079 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8080 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8081 L:      linux-pci@vger.kernel.org
8082 L:      linuxppc-dev@lists.ozlabs.org
8083 S:      Supported
8084 F:      drivers/pci/hotplug/rpadlpar*
8085
8086 IBM ServeRAID RAID DRIVER
8087 S:      Orphan
8088 F:      drivers/scsi/ips.*
8089
8090 ICH LPC AND GPIO DRIVER
8091 M:      Peter Tyser <ptyser@xes-inc.com>
8092 S:      Maintained
8093 F:      drivers/gpio/gpio-ich.c
8094 F:      drivers/mfd/lpc_ich.c
8095
8096 ICY I2C DRIVER
8097 M:      Max Staudt <max@enpas.org>
8098 L:      linux-i2c@vger.kernel.org
8099 S:      Maintained
8100 F:      drivers/i2c/busses/i2c-icy.c
8101
8102 IDE SUBSYSTEM
8103 M:      "David S. Miller" <davem@davemloft.net>
8104 L:      linux-ide@vger.kernel.org
8105 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8106 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8107 S:      Maintained
8108 F:      Documentation/ide/
8109 F:      drivers/ide/
8110 F:      include/linux/ide.h
8111
8112 IDE/ATAPI DRIVERS
8113 M:      Borislav Petkov <bp@alien8.de>
8114 L:      linux-ide@vger.kernel.org
8115 S:      Maintained
8116 F:      Documentation/cdrom/ide-cd.rst
8117 F:      drivers/ide/ide-cd*
8118
8119 IDEAPAD LAPTOP EXTRAS DRIVER
8120 M:      Ike Panhc <ike.pan@canonical.com>
8121 L:      platform-driver-x86@vger.kernel.org
8122 S:      Maintained
8123 W:      http://launchpad.net/ideapad-laptop
8124 F:      drivers/platform/x86/ideapad-laptop.c
8125
8126 IDEAPAD LAPTOP SLIDEBAR DRIVER
8127 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
8128 L:      linux-input@vger.kernel.org
8129 S:      Maintained
8130 W:      https://github.com/o2genum/ideapad-slidebar
8131 F:      drivers/input/misc/ideapad_slidebar.c
8132
8133 IDT VersaClock 5 CLOCK DRIVER
8134 M:      Marek Vasut <marek.vasut@gmail.com>
8135 S:      Maintained
8136 F:      drivers/clk/clk-versaclock5.c
8137
8138 IEEE 802.15.4 SUBSYSTEM
8139 M:      Alexander Aring <alex.aring@gmail.com>
8140 M:      Stefan Schmidt <stefan@datenfreihafen.org>
8141 L:      linux-wpan@vger.kernel.org
8142 W:      http://wpan.cakelab.org/
8143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8145 S:      Maintained
8146 F:      net/ieee802154/
8147 F:      net/mac802154/
8148 F:      drivers/net/ieee802154/
8149 F:      include/linux/nl802154.h
8150 F:      include/linux/ieee802154.h
8151 F:      include/net/nl802154.h
8152 F:      include/net/mac802154.h
8153 F:      include/net/af_ieee802154.h
8154 F:      include/net/cfg802154.h
8155 F:      include/net/ieee802154_netdev.h
8156 F:      Documentation/networking/ieee802154.rst
8157
8158 IFE PROTOCOL
8159 M:      Yotam Gigi <yotam.gi@gmail.com>
8160 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8161 F:      net/ife
8162 F:      include/net/ife.h
8163 F:      include/uapi/linux/ife.h
8164
8165 IGORPLUG-USB IR RECEIVER
8166 M:      Sean Young <sean@mess.org>
8167 L:      linux-media@vger.kernel.org
8168 S:      Maintained
8169 F:      drivers/media/rc/igorplugusb.c
8170
8171 IGUANAWORKS USB IR TRANSCEIVER
8172 M:      Sean Young <sean@mess.org>
8173 L:      linux-media@vger.kernel.org
8174 S:      Maintained
8175 F:      drivers/media/rc/iguanair.c
8176
8177 IIO DIGITAL POTENTIOMETER DAC
8178 M:      Peter Rosin <peda@axentia.se>
8179 L:      linux-iio@vger.kernel.org
8180 S:      Maintained
8181 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8182 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8183 F:      drivers/iio/dac/dpot-dac.c
8184
8185 IIO ENVELOPE DETECTOR
8186 M:      Peter Rosin <peda@axentia.se>
8187 L:      linux-iio@vger.kernel.org
8188 S:      Maintained
8189 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8190 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8191 F:      drivers/iio/adc/envelope-detector.c
8192
8193 IIO MULTIPLEXER
8194 M:      Peter Rosin <peda@axentia.se>
8195 L:      linux-iio@vger.kernel.org
8196 S:      Maintained
8197 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8198 F:      drivers/iio/multiplexer/iio-mux.c
8199
8200 IIO SUBSYSTEM AND DRIVERS
8201 M:      Jonathan Cameron <jic23@kernel.org>
8202 R:      Hartmut Knaack <knaack.h@gmx.de>
8203 R:      Lars-Peter Clausen <lars@metafoo.de>
8204 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
8205 L:      linux-iio@vger.kernel.org
8206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8207 S:      Maintained
8208 F:      Documentation/ABI/testing/configfs-iio*
8209 F:      Documentation/ABI/testing/sysfs-bus-iio*
8210 F:      Documentation/devicetree/bindings/iio/
8211 F:      drivers/iio/
8212 F:      drivers/staging/iio/
8213 F:      include/linux/iio/
8214 F:      tools/iio/
8215
8216 IIO UNIT CONVERTER
8217 M:      Peter Rosin <peda@axentia.se>
8218 L:      linux-iio@vger.kernel.org
8219 S:      Maintained
8220 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8221 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8222 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8223 F:      drivers/iio/afe/iio-rescale.c
8224
8225 IKANOS/ADI EAGLE ADSL USB DRIVER
8226 M:      Matthieu Castet <castet.matthieu@free.fr>
8227 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8228 S:      Maintained
8229 F:      drivers/usb/atm/ueagle-atm.c
8230
8231 IMGTEC ASCII LCD DRIVER
8232 M:      Paul Burton <paulburton@kernel.org>
8233 S:      Maintained
8234 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8235 F:      drivers/auxdisplay/img-ascii-lcd.c
8236
8237 IMGTEC IR DECODER DRIVER
8238 S:      Orphan
8239 F:      drivers/media/rc/img-ir/
8240
8241 IMON SOUNDGRAPH USB IR RECEIVER
8242 M:      Sean Young <sean@mess.org>
8243 L:      linux-media@vger.kernel.org
8244 S:      Maintained
8245 F:      drivers/media/rc/imon_raw.c
8246 F:      drivers/media/rc/imon.c
8247
8248 IMS TWINTURBO FRAMEBUFFER DRIVER
8249 L:      linux-fbdev@vger.kernel.org
8250 S:      Orphan
8251 F:      drivers/video/fbdev/imsttfb.c
8252
8253 INA209 HARDWARE MONITOR DRIVER
8254 M:      Guenter Roeck <linux@roeck-us.net>
8255 L:      linux-hwmon@vger.kernel.org
8256 S:      Maintained
8257 F:      Documentation/hwmon/ina209.rst
8258 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
8259 F:      drivers/hwmon/ina209.c
8260
8261 INA2XX HARDWARE MONITOR DRIVER
8262 M:      Guenter Roeck <linux@roeck-us.net>
8263 L:      linux-hwmon@vger.kernel.org
8264 S:      Maintained
8265 F:      Documentation/hwmon/ina2xx.rst
8266 F:      drivers/hwmon/ina2xx.c
8267 F:      include/linux/platform_data/ina2xx.h
8268
8269 INDUSTRY PACK SUBSYSTEM (IPACK)
8270 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8271 M:      Jens Taprogge <jens.taprogge@taprogge.org>
8272 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8273 L:      industrypack-devel@lists.sourceforge.net
8274 W:      http://industrypack.sourceforge.net
8275 S:      Maintained
8276 F:      drivers/ipack/
8277
8278 INFINEON DPS310 Driver
8279 M:      Eddie James <eajames@linux.ibm.com>
8280 L:      linux-iio@vger.kernel.org
8281 F:      drivers/iio/pressure/dps310.c
8282 S:      Maintained
8283
8284 INFINIBAND SUBSYSTEM
8285 M:      Doug Ledford <dledford@redhat.com>
8286 M:      Jason Gunthorpe <jgg@mellanox.com>
8287 L:      linux-rdma@vger.kernel.org
8288 W:      https://github.com/linux-rdma/rdma-core
8289 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8291 S:      Supported
8292 F:      Documentation/devicetree/bindings/infiniband/
8293 F:      Documentation/infiniband/
8294 F:      drivers/infiniband/
8295 F:      include/uapi/linux/if_infiniband.h
8296 F:      include/uapi/rdma/
8297 F:      include/rdma/
8298 F:      include/trace/events/ib_mad.h
8299 F:      include/trace/events/ib_umad.h
8300 F:      samples/bpf/ibumad_kern.c
8301 F:      samples/bpf/ibumad_user.c
8302
8303 INGENIC JZ4780 DMA Driver
8304 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
8305 S:      Maintained
8306 F:      drivers/dma/dma-jz4780.c
8307
8308 INGENIC JZ4780 NAND DRIVER
8309 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
8310 L:      linux-mtd@lists.infradead.org
8311 S:      Maintained
8312 F:      drivers/mtd/nand/raw/ingenic/
8313
8314 INGENIC JZ47xx SoCs
8315 M:      Paul Cercueil <paul@crapouillou.net>
8316 S:      Maintained
8317 F:      arch/mips/boot/dts/ingenic/
8318 F:      arch/mips/include/asm/mach-jz4740/
8319 F:      arch/mips/jz4740/
8320 F:      drivers/clk/ingenic/
8321 F:      drivers/dma/dma-jz4780.c
8322 F:      drivers/gpu/drm/ingenic/
8323 F:      drivers/i2c/busses/i2c-jz4780.c
8324 F:      drivers/iio/adc/ingenic-adc.c
8325 F:      drivers/irqchip/irq-ingenic.c
8326 F:      drivers/memory/jz4780-nemc.c
8327 F:      drivers/mmc/host/jz4740_mmc.c
8328 F:      drivers/mtd/nand/raw/ingenic/
8329 F:      drivers/pinctrl/pinctrl-ingenic.c
8330 F:      drivers/power/supply/ingenic-battery.c
8331 F:      drivers/pwm/pwm-jz4740.c
8332 F:      drivers/rtc/rtc-jz4740.c
8333 F:      drivers/tty/serial/8250/8250_ingenic.c
8334 F:      drivers/usb/musb/jz4740.c
8335 F:      drivers/watchdog/jz4740_wdt.c
8336 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8337 F:      include/linux/mfd/ingenic-tcu.h
8338 F:      sound/soc/jz4740/
8339 F:      sound/soc/codecs/jz47*
8340
8341 INOTIFY
8342 M:      Jan Kara <jack@suse.cz>
8343 R:      Amir Goldstein <amir73il@gmail.com>
8344 L:      linux-fsdevel@vger.kernel.org
8345 S:      Maintained
8346 F:      Documentation/filesystems/inotify.rst
8347 F:      fs/notify/inotify/
8348 F:      include/linux/inotify.h
8349 F:      include/uapi/linux/inotify.h
8350
8351 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8352 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
8353 L:      linux-input@vger.kernel.org
8354 Q:      http://patchwork.kernel.org/project/linux-input/list/
8355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8356 S:      Maintained
8357 F:      drivers/input/
8358 F:      include/linux/input.h
8359 F:      include/uapi/linux/input.h
8360 F:      include/uapi/linux/input-event-codes.h
8361 F:      include/linux/input/
8362 F:      Documentation/devicetree/bindings/input/
8363 F:      Documentation/devicetree/bindings/serio/
8364 F:      Documentation/input/
8365
8366 INPUT MULTITOUCH (MT) PROTOCOL
8367 M:      Henrik Rydberg <rydberg@bitmath.org>
8368 L:      linux-input@vger.kernel.org
8369 S:      Odd fixes
8370 F:      Documentation/input/multi-touch-protocol.rst
8371 F:      drivers/input/input-mt.c
8372 K:      \b(ABS|SYN)_MT_
8373
8374 INSIDE SECURE CRYPTO DRIVER
8375 M:      Antoine Tenart <antoine.tenart@bootlin.com>
8376 F:      drivers/crypto/inside-secure/
8377 S:      Maintained
8378 L:      linux-crypto@vger.kernel.org
8379
8380 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8381 M:      Mimi Zohar <zohar@linux.ibm.com>
8382 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
8383 L:      linux-integrity@vger.kernel.org
8384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8385 S:      Supported
8386 F:      security/integrity/ima/
8387
8388 INTEL 810/815 FRAMEBUFFER DRIVER
8389 M:      Antonino Daplas <adaplas@gmail.com>
8390 L:      linux-fbdev@vger.kernel.org
8391 S:      Maintained
8392 F:      drivers/video/fbdev/i810/
8393
8394 INTEL ASoC DRIVERS
8395 M:      Cezary Rojewski <cezary.rojewski@intel.com>
8396 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
8397 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
8398 M:      Jie Yang <yang.jie@linux.intel.com>
8399 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8400 S:      Supported
8401 F:      sound/soc/intel/
8402
8403 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8404 M:      Hans de Goede <hdegoede@redhat.com>
8405 L:      platform-driver-x86@vger.kernel.org
8406 S:      Maintained
8407 F:      drivers/platform/x86/intel_atomisp2_pm.c
8408
8409 INTEL C600 SERIES SAS CONTROLLER DRIVER
8410 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
8411 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
8412 L:      linux-scsi@vger.kernel.org
8413 T:      git git://git.code.sf.net/p/intel-sas/isci
8414 S:      Supported
8415 F:      drivers/scsi/isci/
8416
8417 INTEL CPU family model numbers
8418 M:      Tony Luck <tony.luck@intel.com>
8419 M:      x86@kernel.org
8420 L:      linux-kernel@vger.kernel.org
8421 S:      Supported
8422 F:      arch/x86/include/asm/intel-family.h
8423
8424 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8425 M:      Jani Nikula <jani.nikula@linux.intel.com>
8426 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
8427 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
8428 L:      intel-gfx@lists.freedesktop.org
8429 W:      https://01.org/linuxgraphics/
8430 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8431 C:      irc://chat.freenode.net/intel-gfx
8432 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8433 T:      git git://anongit.freedesktop.org/drm-intel
8434 S:      Supported
8435 F:      drivers/gpu/drm/i915/
8436 F:      include/drm/i915*
8437 F:      include/uapi/drm/i915_drm.h
8438 F:      Documentation/gpu/i915.rst
8439
8440 INTEL ETHERNET DRIVERS
8441 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
8442 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
8443 W:      http://www.intel.com/support/feedback.htm
8444 W:      http://e1000.sourceforge.net/
8445 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
8447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
8448 S:      Supported
8449 F:      Documentation/networking/device_drivers/intel/e100.rst
8450 F:      Documentation/networking/device_drivers/intel/e1000.rst
8451 F:      Documentation/networking/device_drivers/intel/e1000e.rst
8452 F:      Documentation/networking/device_drivers/intel/fm10k.rst
8453 F:      Documentation/networking/device_drivers/intel/igb.rst
8454 F:      Documentation/networking/device_drivers/intel/igbvf.rst
8455 F:      Documentation/networking/device_drivers/intel/ixgb.rst
8456 F:      Documentation/networking/device_drivers/intel/ixgbe.rst
8457 F:      Documentation/networking/device_drivers/intel/ixgbevf.rst
8458 F:      Documentation/networking/device_drivers/intel/i40e.rst
8459 F:      Documentation/networking/device_drivers/intel/iavf.rst
8460 F:      Documentation/networking/device_drivers/intel/ice.rst
8461 F:      drivers/net/ethernet/intel/
8462 F:      drivers/net/ethernet/intel/*/
8463 F:      include/linux/avf/virtchnl.h
8464
8465 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8466 M:      Maik Broemme <mbroemme@libmpq.org>
8467 L:      linux-fbdev@vger.kernel.org
8468 S:      Maintained
8469 F:      Documentation/fb/intelfb.rst
8470 F:      drivers/video/fbdev/intelfb/
8471
8472 INTEL GPIO DRIVERS
8473 M:      Andy Shevchenko <andy@kernel.org>
8474 L:      linux-gpio@vger.kernel.org
8475 S:      Maintained
8476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8477 F:      drivers/gpio/gpio-ich.c
8478 F:      drivers/gpio/gpio-intel-mid.c
8479 F:      drivers/gpio/gpio-merrifield.c
8480 F:      drivers/gpio/gpio-ml-ioh.c
8481 F:      drivers/gpio/gpio-pch.c
8482 F:      drivers/gpio/gpio-sch.c
8483 F:      drivers/gpio/gpio-sodaville.c
8484
8485 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8486 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
8487 M:      Zhi Wang <zhi.a.wang@intel.com>
8488 L:      intel-gvt-dev@lists.freedesktop.org
8489 L:      intel-gfx@lists.freedesktop.org
8490 W:      https://01.org/igvt-g
8491 T:      git https://github.com/intel/gvt-linux.git
8492 S:      Supported
8493 F:      drivers/gpu/drm/i915/gvt/
8494
8495 INTEL HID EVENT DRIVER
8496 M:      Alex Hung <alex.hung@canonical.com>
8497 L:      platform-driver-x86@vger.kernel.org
8498 S:      Maintained
8499 F:      drivers/platform/x86/intel-hid.c
8500
8501 INTEL I/OAT DMA DRIVER
8502 M:      Dave Jiang <dave.jiang@intel.com>
8503 R:      Dan Williams <dan.j.williams@intel.com>
8504 L:      dmaengine@vger.kernel.org
8505 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8506 S:      Supported
8507 F:      drivers/dma/ioat*
8508
8509 INTEL IADX DRIVER
8510 M:      Dave Jiang <dave.jiang@intel.com>
8511 L:      dmaengine@vger.kernel.org
8512 S:      Supported
8513 F:      drivers/dma/idxd/*
8514 F:      include/uapi/linux/idxd.h
8515
8516 INTEL IDLE DRIVER
8517 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
8518 M:      Len Brown <lenb@kernel.org>
8519 L:      linux-pm@vger.kernel.org
8520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8521 B:      https://bugzilla.kernel.org
8522 S:      Supported
8523 F:      drivers/idle/intel_idle.c
8524
8525 INTEL INTEGRATED SENSOR HUB DRIVER
8526 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8527 M:      Jiri Kosina <jikos@kernel.org>
8528 L:      linux-input@vger.kernel.org
8529 S:      Maintained
8530 F:      drivers/hid/intel-ish-hid/
8531
8532 INTEL IOMMU (VT-d)
8533 M:      David Woodhouse <dwmw2@infradead.org>
8534 M:      Lu Baolu <baolu.lu@linux.intel.com>
8535 L:      iommu@lists.linux-foundation.org
8536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8537 S:      Supported
8538 F:      drivers/iommu/dmar.c
8539 F:      drivers/iommu/intel*.[ch]
8540 F:      include/linux/intel-iommu.h
8541 F:      include/linux/intel-svm.h
8542
8543 INTEL IOP-ADMA DMA DRIVER
8544 R:      Dan Williams <dan.j.williams@intel.com>
8545 S:      Odd fixes
8546 F:      drivers/dma/iop-adma.c
8547
8548 INTEL IPU3 CSI-2 CIO2 DRIVER
8549 M:      Yong Zhi <yong.zhi@intel.com>
8550 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8551 M:      Bingbu Cao <bingbu.cao@intel.com>
8552 R:      Tian Shu Qiu <tian.shu.qiu@intel.com>
8553 L:      linux-media@vger.kernel.org
8554 S:      Maintained
8555 F:      drivers/media/pci/intel/ipu3/
8556 F:      Documentation/media/uapi/v4l/pixfmt-srggb10-ipu3.rst
8557
8558 INTEL IPU3 CSI-2 IMGU DRIVER
8559 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8560 L:      linux-media@vger.kernel.org
8561 S:      Maintained
8562 F:      drivers/staging/media/ipu3/
8563 F:      Documentation/media/uapi/v4l/pixfmt-meta-intel-ipu3.rst
8564 F:      Documentation/media/v4l-drivers/ipu3.rst
8565 F:      Documentation/media/v4l-drivers/ipu3_rcb.svg
8566
8567 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8568 M:      Krzysztof Halasa <khalasa@piap.pl>
8569 S:      Maintained
8570 F:      include/linux/soc/ixp4xx/qmgr.h
8571 F:      include/linux/soc/ixp4xx/npe.h
8572 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
8573 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
8574 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
8575 F:      drivers/net/wan/ixp4xx_hss.c
8576
8577 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8578 M:      Deepak Saxena <dsaxena@plexity.net>
8579 S:      Maintained
8580 F:      drivers/char/hw_random/ixp4xx-rng.c
8581
8582 INTEL MANAGEMENT ENGINE (mei)
8583 M:      Tomas Winkler <tomas.winkler@intel.com>
8584 L:      linux-kernel@vger.kernel.org
8585 S:      Supported
8586 F:      include/uapi/linux/mei.h
8587 F:      include/linux/mei_cl_bus.h
8588 F:      drivers/misc/mei/*
8589 F:      drivers/watchdog/mei_wdt.c
8590 F:      Documentation/driver-api/mei/*
8591 F:      samples/mei/*
8592
8593 INTEL MENLOW THERMAL DRIVER
8594 M:      Sujith Thomas <sujith.thomas@intel.com>
8595 L:      platform-driver-x86@vger.kernel.org
8596 S:      Supported
8597 W:      https://01.org/linux-acpi
8598 F:      drivers/platform/x86/intel_menlow.c
8599
8600 INTEL MIC DRIVERS (mic)
8601 M:      Sudeep Dutt <sudeep.dutt@intel.com>
8602 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
8603 S:      Supported
8604 W:      https://github.com/sudeepdutt/mic
8605 W:      http://software.intel.com/en-us/mic-developer
8606 F:      Documentation/misc-devices/mic/
8607 F:      drivers/dma/mic_x100_dma.c
8608 F:      drivers/dma/mic_x100_dma.h
8609 F:      drivers/misc/mic/
8610 F:      include/linux/mic_bus.h
8611 F:      include/linux/scif.h
8612 F:      include/uapi/linux/mic_common.h
8613 F:      include/uapi/linux/mic_ioctl.h
8614 F:      include/uapi/linux/scif_ioctl.h
8615
8616 INTEL PMC CORE DRIVER
8617 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
8618 M:      Vishwanath Somayaji <vishwanath.somayaji@intel.com>
8619 L:      platform-driver-x86@vger.kernel.org
8620 S:      Maintained
8621 F:      drivers/platform/x86/intel_pmc_core*
8622
8623 INTEL PMC/P-Unit IPC DRIVER
8624 M:      Zha Qipeng<qipeng.zha@intel.com>
8625 L:      platform-driver-x86@vger.kernel.org
8626 S:      Maintained
8627 F:      arch/x86/include/asm/intel_pmc_ipc.h
8628 F:      arch/x86/include/asm/intel_punit_ipc.h
8629 F:      drivers/platform/x86/intel_pmc_ipc.c
8630 F:      drivers/platform/x86/intel_punit_ipc.c
8631
8632 INTEL PMIC GPIO DRIVERS
8633 M:      Andy Shevchenko <andy@kernel.org>
8634 S:      Maintained
8635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8636 F:      drivers/gpio/gpio-*cove.c
8637 F:      drivers/gpio/gpio-msic.c
8638
8639 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
8640 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8641 S:      Maintained
8642 F:      drivers/mfd/intel_msic.c
8643 F:      drivers/mfd/intel_soc_pmic*
8644 F:      include/linux/mfd/intel_msic.h
8645 F:      include/linux/mfd/intel_soc_pmic*
8646
8647 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
8648 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
8649 L:      linux-wireless@vger.kernel.org
8650 S:      Maintained
8651 F:      Documentation/networking/device_drivers/intel/ipw2100.txt
8652 F:      Documentation/networking/device_drivers/intel/ipw2200.txt
8653 F:      drivers/net/wireless/intel/ipw2x00/
8654
8655 INTEL PSTATE DRIVER
8656 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8657 M:      Len Brown <lenb@kernel.org>
8658 L:      linux-pm@vger.kernel.org
8659 S:      Supported
8660 F:      drivers/cpufreq/intel_pstate.c
8661
8662 INTEL RDMA RNIC DRIVER
8663 M:      Faisal Latif <faisal.latif@intel.com>
8664 M:      Shiraz Saleem <shiraz.saleem@intel.com>
8665 L:      linux-rdma@vger.kernel.org
8666 S:      Supported
8667 F:      drivers/infiniband/hw/i40iw/
8668 F:      include/uapi/rdma/i40iw-abi.h
8669
8670 INTEL SPEED SELECT TECHNOLOGY
8671 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8672 L:      platform-driver-x86@vger.kernel.org
8673 S:      Maintained
8674 F:      drivers/platform/x86/intel_speed_select_if/
8675 F:      include/uapi/linux/isst_if.h
8676 F:      tools/power/x86/intel-speed-select/
8677
8678 INTEL STRATIX10 FIRMWARE DRIVERS
8679 M:      Richard Gong <richard.gong@linux.intel.com>
8680 L:      linux-kernel@vger.kernel.org
8681 S:      Maintained
8682 F:      drivers/firmware/stratix10-rsu.c
8683 F:      drivers/firmware/stratix10-svc.c
8684 F:      include/linux/firmware/intel/stratix10-smc.h
8685 F:      include/linux/firmware/intel/stratix10-svc-client.h
8686 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
8687 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
8688
8689 INTEL TELEMETRY DRIVER
8690 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
8691 M:      "David E. Box" <david.e.box@linux.intel.com>
8692 L:      platform-driver-x86@vger.kernel.org
8693 S:      Maintained
8694 F:      arch/x86/include/asm/intel_telemetry.h
8695 F:      drivers/platform/x86/intel_telemetry*
8696
8697 INTEL UNCORE FREQUENCY CONTROL
8698 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8699 L:      platform-driver-x86@vger.kernel.org
8700 S:      Maintained
8701 F:      drivers/platform/x86/intel-uncore-frequency.c
8702
8703 INTEL VIRTUAL BUTTON DRIVER
8704 M:      AceLan Kao <acelan.kao@canonical.com>
8705 L:      platform-driver-x86@vger.kernel.org
8706 S:      Maintained
8707 F:      drivers/platform/x86/intel-vbtn.c
8708
8709 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
8710 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8711 L:      linux-wireless@vger.kernel.org
8712 S:      Supported
8713 F:      drivers/net/wireless/intel/iwlegacy/
8714
8715 INTEL WIRELESS WIFI LINK (iwlwifi)
8716 M:      Johannes Berg <johannes.berg@intel.com>
8717 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
8718 M:      Luca Coelho <luciano.coelho@intel.com>
8719 M:      Intel Linux Wireless <linuxwifi@intel.com>
8720 L:      linux-wireless@vger.kernel.org
8721 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
8722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
8723 S:      Supported
8724 F:      drivers/net/wireless/intel/iwlwifi/
8725
8726 INTEL WIRELESS WIMAX CONNECTION 2400
8727 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
8728 M:      linux-wimax@intel.com
8729 L:      wimax@linuxwimax.org (subscribers-only)
8730 S:      Supported
8731 W:      http://linuxwimax.org
8732 F:      Documentation/admin-guide/wimax/i2400m.rst
8733 F:      drivers/net/wimax/i2400m/
8734 F:      include/uapi/linux/wimax/i2400m.h
8735
8736 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
8737 M:      Mario Limonciello <mario.limonciello@dell.com>
8738 S:      Maintained
8739 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
8740
8741 INTEL(R) TRACE HUB
8742 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8743 S:      Supported
8744 F:      Documentation/trace/intel_th.rst
8745 F:      drivers/hwtracing/intel_th/
8746 F:      include/linux/intel_th.h
8747
8748 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
8749 M:      Ning Sun <ning.sun@intel.com>
8750 L:      tboot-devel@lists.sourceforge.net
8751 W:      http://tboot.sourceforge.net
8752 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
8753 S:      Supported
8754 F:      Documentation/x86/intel_txt.rst
8755 F:      include/linux/tboot.h
8756 F:      arch/x86/kernel/tboot.c
8757
8758 INTERCONNECT API
8759 M:      Georgi Djakov <georgi.djakov@linaro.org>
8760 L:      linux-pm@vger.kernel.org
8761 S:      Maintained
8762 F:      Documentation/driver-api/interconnect.rst
8763 F:      Documentation/devicetree/bindings/interconnect/
8764 F:      drivers/interconnect/
8765 F:      include/dt-bindings/interconnect/
8766 F:      include/linux/interconnect-provider.h
8767 F:      include/linux/interconnect.h
8768
8769 INVENSENSE MPU-3050 GYROSCOPE DRIVER
8770 M:      Linus Walleij <linus.walleij@linaro.org>
8771 L:      linux-iio@vger.kernel.org
8772 S:      Maintained
8773 F:      drivers/iio/gyro/mpu3050*
8774 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
8775
8776 IOC3 ETHERNET DRIVER
8777 M:      Ralf Baechle <ralf@linux-mips.org>
8778 L:      linux-mips@vger.kernel.org
8779 S:      Maintained
8780 F:      drivers/net/ethernet/sgi/ioc3-eth.c
8781
8782 IOMAP FILESYSTEM LIBRARY
8783 M:      Christoph Hellwig <hch@infradead.org>
8784 M:      Darrick J. Wong <darrick.wong@oracle.com>
8785 M:      linux-xfs@vger.kernel.org
8786 M:      linux-fsdevel@vger.kernel.org
8787 L:      linux-xfs@vger.kernel.org
8788 L:      linux-fsdevel@vger.kernel.org
8789 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
8790 S:      Supported
8791 F:      fs/iomap/
8792 F:      include/linux/iomap.h
8793
8794 IOMMU DRIVERS
8795 M:      Joerg Roedel <joro@8bytes.org>
8796 L:      iommu@lists.linux-foundation.org
8797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8798 S:      Maintained
8799 F:      Documentation/devicetree/bindings/iommu/
8800 F:      drivers/iommu/
8801 F:      include/linux/iommu.h
8802 F:      include/linux/of_iommu.h
8803 F:      include/linux/iova.h
8804
8805 IO_URING
8806 M:      Jens Axboe <axboe@kernel.dk>
8807 L:      io-uring@vger.kernel.org
8808 T:      git git://git.kernel.dk/linux-block
8809 T:      git git://git.kernel.dk/liburing
8810 S:      Maintained
8811 F:      fs/io_uring.c
8812 F:      fs/io-wq.c
8813 F:      fs/io-wq.h
8814 F:      include/uapi/linux/io_uring.h
8815
8816 IPMI SUBSYSTEM
8817 M:      Corey Minyard <minyard@acm.org>
8818 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
8819 W:      http://openipmi.sourceforge.net/
8820 S:      Supported
8821 F:      Documentation/devicetree/bindings/ipmi/
8822 F:      Documentation/IPMI.txt
8823 F:      drivers/char/ipmi/
8824 F:      include/linux/ipmi*
8825 F:      include/uapi/linux/ipmi*
8826
8827 IPS SCSI RAID DRIVER
8828 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
8829 L:      linux-scsi@vger.kernel.org
8830 W:      http://www.adaptec.com/
8831 S:      Maintained
8832 F:      drivers/scsi/ips*
8833
8834 IPVS
8835 M:      Wensong Zhang <wensong@linux-vs.org>
8836 M:      Simon Horman <horms@verge.net.au>
8837 M:      Julian Anastasov <ja@ssi.bg>
8838 L:      netdev@vger.kernel.org
8839 L:      lvs-devel@vger.kernel.org
8840 S:      Maintained
8841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
8842 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
8843 F:      Documentation/networking/ipvs-sysctl.txt
8844 F:      include/net/ip_vs.h
8845 F:      include/uapi/linux/ip_vs.h
8846 F:      net/netfilter/ipvs/
8847
8848 IPWIRELESS DRIVER
8849 M:      Jiri Kosina <jikos@kernel.org>
8850 M:      David Sterba <dsterba@suse.com>
8851 S:      Odd Fixes
8852 F:      drivers/tty/ipwireless/
8853
8854 IPX NETWORK LAYER
8855 L:      netdev@vger.kernel.org
8856 S:      Obsolete
8857 F:      include/uapi/linux/ipx.h
8858
8859 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
8860 M:      Marc Zyngier <maz@kernel.org>
8861 S:      Maintained
8862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8863 F:      Documentation/IRQ-domain.txt
8864 F:      include/linux/irqdomain.h
8865 F:      kernel/irq/irqdomain.c
8866 F:      kernel/irq/msi.c
8867
8868 IRQ SUBSYSTEM
8869 M:      Thomas Gleixner <tglx@linutronix.de>
8870 L:      linux-kernel@vger.kernel.org
8871 S:      Maintained
8872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8873 F:      kernel/irq/
8874
8875 IRQCHIP DRIVERS
8876 M:      Thomas Gleixner <tglx@linutronix.de>
8877 M:      Jason Cooper <jason@lakedaemon.net>
8878 M:      Marc Zyngier <maz@kernel.org>
8879 L:      linux-kernel@vger.kernel.org
8880 S:      Maintained
8881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8882 F:      Documentation/devicetree/bindings/interrupt-controller/
8883 F:      drivers/irqchip/
8884
8885 ISA
8886 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
8887 S:      Maintained
8888 F:      Documentation/driver-api/isa.rst
8889 F:      drivers/base/isa.c
8890 F:      include/linux/isa.h
8891
8892 ISA RADIO MODULE
8893 M:      Hans Verkuil <hverkuil@xs4all.nl>
8894 L:      linux-media@vger.kernel.org
8895 T:      git git://linuxtv.org/media_tree.git
8896 W:      https://linuxtv.org
8897 S:      Maintained
8898 F:      drivers/media/radio/radio-isa*
8899
8900 ISAPNP
8901 M:      Jaroslav Kysela <perex@perex.cz>
8902 S:      Maintained
8903 F:      Documentation/driver-api/isapnp.rst
8904 F:      drivers/pnp/isapnp/
8905 F:      include/linux/isapnp.h
8906
8907 ISCSI
8908 M:      Lee Duncan <lduncan@suse.com>
8909 M:      Chris Leech <cleech@redhat.com>
8910 L:      open-iscsi@googlegroups.com
8911 L:      linux-scsi@vger.kernel.org
8912 W:      www.open-iscsi.com
8913 S:      Maintained
8914 F:      drivers/scsi/*iscsi*
8915 F:      include/scsi/*iscsi*
8916
8917 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
8918 M:      Peter Jones <pjones@redhat.com>
8919 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
8920 S:      Maintained
8921 F:      drivers/firmware/iscsi_ibft*
8922
8923 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
8924 M:      Sagi Grimberg <sagi@grimberg.me>
8925 M:      Max Gurtovoy <maxg@mellanox.com>
8926 L:      linux-rdma@vger.kernel.org
8927 S:      Supported
8928 W:      http://www.openfabrics.org
8929 W:      www.open-iscsi.org
8930 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8931 F:      drivers/infiniband/ulp/iser/
8932
8933 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
8934 M:      Sagi Grimberg <sagi@grimberg.me>
8935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
8936 L:      linux-rdma@vger.kernel.org
8937 L:      target-devel@vger.kernel.org
8938 S:      Supported
8939 W:      http://www.linux-iscsi.org
8940 F:      drivers/infiniband/ulp/isert
8941
8942 ISDN/mISDN SUBSYSTEM
8943 M:      Karsten Keil <isdn@linux-pingi.de>
8944 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
8945 L:      netdev@vger.kernel.org
8946 W:      http://www.isdn4linux.de
8947 S:      Maintained
8948 F:      drivers/isdn/mISDN/
8949 F:      drivers/isdn/hardware/
8950 F:      drivers/isdn/Kconfig
8951 F:      drivers/isdn/Makefile
8952
8953 ISDN/CMTP OVER BLUETOOTH
8954 M:      Karsten Keil <isdn@linux-pingi.de>
8955 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
8956 L:      netdev@vger.kernel.org
8957 W:      http://www.isdn4linux.de
8958 S:      Odd Fixes
8959 F:      Documentation/isdn/
8960 F:      drivers/isdn/capi/
8961 F:      net/bluetooth/cmtp/
8962 F:      include/linux/isdn/
8963 F:      include/uapi/linux/isdn/
8964
8965 IT87 HARDWARE MONITORING DRIVER
8966 M:      Jean Delvare <jdelvare@suse.com>
8967 L:      linux-hwmon@vger.kernel.org
8968 S:      Maintained
8969 F:      Documentation/hwmon/it87.rst
8970 F:      drivers/hwmon/it87.c
8971
8972 IT913X MEDIA DRIVER
8973 M:      Antti Palosaari <crope@iki.fi>
8974 L:      linux-media@vger.kernel.org
8975 W:      https://linuxtv.org
8976 W:      http://palosaari.fi/linux/
8977 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8978 T:      git git://linuxtv.org/anttip/media_tree.git
8979 S:      Maintained
8980 F:      drivers/media/tuners/it913x*
8981
8982 IVTV VIDEO4LINUX DRIVER
8983 M:      Andy Walls <awalls@md.metrocast.net>
8984 L:      linux-media@vger.kernel.org
8985 T:      git git://linuxtv.org/media_tree.git
8986 W:      https://linuxtv.org
8987 S:      Maintained
8988 F:      Documentation/media/v4l-drivers/ivtv*
8989 F:      drivers/media/pci/ivtv/
8990 F:      include/uapi/linux/ivtv*
8991
8992 IX2505V MEDIA DRIVER
8993 M:      Malcolm Priestley <tvboxspy@gmail.com>
8994 L:      linux-media@vger.kernel.org
8995 W:      https://linuxtv.org
8996 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8997 S:      Maintained
8998 F:      drivers/media/dvb-frontends/ix2505v*
8999
9000 JAILHOUSE HYPERVISOR INTERFACE
9001 M:      Jan Kiszka <jan.kiszka@siemens.com>
9002 L:      jailhouse-dev@googlegroups.com
9003 S:      Maintained
9004 F:      arch/x86/kernel/jailhouse.c
9005 F:      arch/x86/include/asm/jailhouse_para.h
9006
9007 JC42.4 TEMPERATURE SENSOR DRIVER
9008 M:      Guenter Roeck <linux@roeck-us.net>
9009 L:      linux-hwmon@vger.kernel.org
9010 S:      Maintained
9011 F:      drivers/hwmon/jc42.c
9012 F:      Documentation/hwmon/jc42.rst
9013
9014 JFS FILESYSTEM
9015 M:      Dave Kleikamp <shaggy@kernel.org>
9016 L:      jfs-discussion@lists.sourceforge.net
9017 W:      http://jfs.sourceforge.net/
9018 T:      git git://github.com/kleikamp/linux-shaggy.git
9019 S:      Maintained
9020 F:      Documentation/admin-guide/jfs.rst
9021 F:      fs/jfs/
9022
9023 JME NETWORK DRIVER
9024 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
9025 L:      netdev@vger.kernel.org
9026 S:      Maintained
9027 F:      drivers/net/ethernet/jme.*
9028
9029 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9030 M:      David Woodhouse <dwmw2@infradead.org>
9031 M:      Richard Weinberger <richard@nod.at>
9032 L:      linux-mtd@lists.infradead.org
9033 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9034 T:      git git://git.infradead.org/ubifs-2.6.git
9035 S:      Odd Fixes
9036 F:      fs/jffs2/
9037 F:      include/uapi/linux/jffs2.h
9038
9039 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9040 M:      "Theodore Ts'o" <tytso@mit.edu>
9041 M:      Jan Kara <jack@suse.com>
9042 L:      linux-ext4@vger.kernel.org
9043 S:      Maintained
9044 F:      fs/jbd2/
9045 F:      include/linux/jbd2.h
9046
9047 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9048 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9049 L:      linux-media@vger.kernel.org
9050 S:      Maintained
9051 F:      drivers/media/platform/rcar_jpu.c
9052
9053 JSM Neo PCI based serial card
9054 L:      linux-serial@vger.kernel.org
9055 S:      Orphan
9056 F:      drivers/tty/serial/jsm/
9057
9058 K10TEMP HARDWARE MONITORING DRIVER
9059 M:      Clemens Ladisch <clemens@ladisch.de>
9060 L:      linux-hwmon@vger.kernel.org
9061 S:      Maintained
9062 F:      Documentation/hwmon/k10temp.rst
9063 F:      drivers/hwmon/k10temp.c
9064
9065 K8TEMP HARDWARE MONITORING DRIVER
9066 M:      Rudolf Marek <r.marek@assembler.cz>
9067 L:      linux-hwmon@vger.kernel.org
9068 S:      Maintained
9069 F:      Documentation/hwmon/k8temp.rst
9070 F:      drivers/hwmon/k8temp.c
9071
9072 KASAN
9073 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
9074 R:      Alexander Potapenko <glider@google.com>
9075 R:      Dmitry Vyukov <dvyukov@google.com>
9076 L:      kasan-dev@googlegroups.com
9077 S:      Maintained
9078 F:      arch/*/include/asm/kasan.h
9079 F:      arch/*/mm/kasan_init*
9080 F:      Documentation/dev-tools/kasan.rst
9081 F:      include/linux/kasan*.h
9082 F:      lib/test_kasan.c
9083 F:      mm/kasan/
9084 F:      scripts/Makefile.kasan
9085
9086 KCONFIG
9087 M:      Masahiro Yamada <masahiroy@kernel.org>
9088 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9089 L:      linux-kbuild@vger.kernel.org
9090 S:      Maintained
9091 F:      Documentation/kbuild/kconfig*
9092 F:      scripts/kconfig/
9093 F:      scripts/Kconfig.include
9094
9095 KDUMP
9096 M:      Dave Young <dyoung@redhat.com>
9097 M:      Baoquan He <bhe@redhat.com>
9098 R:      Vivek Goyal <vgoyal@redhat.com>
9099 L:      kexec@lists.infradead.org
9100 W:      http://lse.sourceforge.net/kdump/
9101 S:      Maintained
9102 F:      Documentation/admin-guide/kdump/
9103
9104 KEENE FM RADIO TRANSMITTER DRIVER
9105 M:      Hans Verkuil <hverkuil@xs4all.nl>
9106 L:      linux-media@vger.kernel.org
9107 T:      git git://linuxtv.org/media_tree.git
9108 W:      https://linuxtv.org
9109 S:      Maintained
9110 F:      drivers/media/radio/radio-keene*
9111
9112 KERNEL AUTOMOUNTER
9113 M:      Ian Kent <raven@themaw.net>
9114 L:      autofs@vger.kernel.org
9115 S:      Maintained
9116 F:      fs/autofs/
9117
9118 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9119 M:      Masahiro Yamada <masahiroy@kernel.org>
9120 M:      Michal Marek <michal.lkml@markovi.net>
9121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9122 L:      linux-kbuild@vger.kernel.org
9123 S:      Maintained
9124 F:      Documentation/kbuild/
9125 F:      Makefile
9126 F:      scripts/Kbuild*
9127 F:      scripts/Makefile*
9128 F:      scripts/basic/
9129 F:      scripts/mk*
9130 F:      scripts/*vmlinux*
9131 F:      scripts/mod/
9132 F:      scripts/package/
9133
9134 KERNEL JANITORS
9135 L:      kernel-janitors@vger.kernel.org
9136 W:      http://kernelnewbies.org/KernelJanitors
9137 S:      Odd Fixes
9138
9139 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9140 M:      "J. Bruce Fields" <bfields@fieldses.org>
9141 M:      Chuck Lever <chuck.lever@oracle.com>
9142 L:      linux-nfs@vger.kernel.org
9143 W:      http://nfs.sourceforge.net/
9144 T:      git git://linux-nfs.org/~bfields/linux.git
9145 S:      Supported
9146 F:      fs/nfsd/
9147 F:      include/uapi/linux/nfsd/
9148 F:      fs/lockd/
9149 F:      fs/nfs_common/
9150 F:      net/sunrpc/
9151 F:      include/linux/lockd/
9152 F:      include/linux/sunrpc/
9153 F:      include/uapi/linux/sunrpc/
9154
9155 KERNEL SELFTEST FRAMEWORK
9156 M:      Shuah Khan <shuah@kernel.org>
9157 M:      Shuah Khan <skhan@linuxfoundation.org>
9158 L:      linux-kselftest@vger.kernel.org
9159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9160 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9161 S:      Maintained
9162 F:      tools/testing/selftests/
9163 F:      Documentation/dev-tools/kselftest*
9164
9165 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9166 M:      Brendan Higgins <brendanhiggins@google.com>
9167 L:      linux-kselftest@vger.kernel.org
9168 L:      kunit-dev@googlegroups.com
9169 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9170 S:      Maintained
9171 F:      Documentation/dev-tools/kunit/
9172 F:      include/kunit/
9173 F:      lib/kunit/
9174 F:      tools/testing/kunit/
9175
9176 KERNEL USERMODE HELPER
9177 M:      Luis Chamberlain <mcgrof@kernel.org>
9178 L:      linux-kernel@vger.kernel.org
9179 S:      Maintained
9180 F:      kernel/umh.c
9181 F:      include/linux/umh.h
9182
9183 KERNEL VIRTUAL MACHINE (KVM)
9184 M:      Paolo Bonzini <pbonzini@redhat.com>
9185 L:      kvm@vger.kernel.org
9186 W:      http://www.linux-kvm.org
9187 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9188 S:      Supported
9189 F:      Documentation/virt/kvm/
9190 F:      include/trace/events/kvm.h
9191 F:      include/uapi/asm-generic/kvm*
9192 F:      include/uapi/linux/kvm*
9193 F:      include/asm-generic/kvm*
9194 F:      include/linux/kvm*
9195 F:      include/kvm/iodev.h
9196 F:      virt/kvm/*
9197 F:      tools/kvm/
9198 F:      tools/testing/selftests/kvm/
9199
9200 KERNEL VIRTUAL MACHINE FOR ARM/ARM64 (KVM/arm, KVM/arm64)
9201 M:      Marc Zyngier <maz@kernel.org>
9202 R:      James Morse <james.morse@arm.com>
9203 R:      Julien Thierry <julien.thierry.kdev@gmail.com>
9204 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
9205 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9206 L:      kvmarm@lists.cs.columbia.edu
9207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9208 S:      Maintained
9209 F:      arch/arm/include/uapi/asm/kvm*
9210 F:      arch/arm/include/asm/kvm*
9211 F:      arch/arm/kvm/
9212 F:      arch/arm64/include/uapi/asm/kvm*
9213 F:      arch/arm64/include/asm/kvm*
9214 F:      arch/arm64/kvm/
9215 F:      virt/kvm/arm/
9216 F:      include/kvm/arm_*
9217
9218 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9219 L:      linux-mips@vger.kernel.org
9220 L:      kvm@vger.kernel.org
9221 S:      Orphan
9222 F:      arch/mips/include/uapi/asm/kvm*
9223 F:      arch/mips/include/asm/kvm*
9224 F:      arch/mips/kvm/
9225
9226 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9227 M:      Paul Mackerras <paulus@ozlabs.org>
9228 L:      kvm-ppc@vger.kernel.org
9229 W:      http://www.linux-kvm.org/
9230 T:      git git://github.com/agraf/linux-2.6.git
9231 S:      Supported
9232 F:      arch/powerpc/include/uapi/asm/kvm*
9233 F:      arch/powerpc/include/asm/kvm*
9234 F:      arch/powerpc/kvm/
9235 F:      arch/powerpc/kernel/kvm*
9236
9237 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9238 M:      Christian Borntraeger <borntraeger@de.ibm.com>
9239 M:      Janosch Frank <frankja@linux.ibm.com>
9240 R:      David Hildenbrand <david@redhat.com>
9241 R:      Cornelia Huck <cohuck@redhat.com>
9242 L:      kvm@vger.kernel.org
9243 W:      http://www.ibm.com/developerworks/linux/linux390/
9244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9245 S:      Supported
9246 F:      arch/s390/include/uapi/asm/kvm*
9247 F:      arch/s390/include/asm/gmap.h
9248 F:      arch/s390/include/asm/kvm*
9249 F:      arch/s390/kvm/
9250 F:      arch/s390/mm/gmap.c
9251 F:      tools/testing/selftests/kvm/s390x/
9252 F:      tools/testing/selftests/kvm/*/s390x/
9253
9254 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9255 M:      Paolo Bonzini <pbonzini@redhat.com>
9256 R:      Sean Christopherson <sean.j.christopherson@intel.com>
9257 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
9258 R:      Wanpeng Li <wanpengli@tencent.com>
9259 R:      Jim Mattson <jmattson@google.com>
9260 R:      Joerg Roedel <joro@8bytes.org>
9261 L:      kvm@vger.kernel.org
9262 W:      http://www.linux-kvm.org
9263 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9264 S:      Supported
9265 F:      arch/x86/kvm/
9266 F:      arch/x86/kvm/*/
9267 F:      arch/x86/include/uapi/asm/kvm*
9268 F:      arch/x86/include/uapi/asm/vmx.h
9269 F:      arch/x86/include/uapi/asm/svm.h
9270 F:      arch/x86/include/asm/kvm*
9271 F:      arch/x86/include/asm/pvclock-abi.h
9272 F:      arch/x86/include/asm/svm.h
9273 F:      arch/x86/include/asm/vmx*.h
9274 F:      arch/x86/kernel/kvm.c
9275 F:      arch/x86/kernel/kvmclock.c
9276
9277 KERNFS
9278 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9279 M:      Tejun Heo <tj@kernel.org>
9280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9281 S:      Supported
9282 F:      include/linux/kernfs.h
9283 F:      fs/kernfs/
9284
9285 KEXEC
9286 M:      Eric Biederman <ebiederm@xmission.com>
9287 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9288 L:      kexec@lists.infradead.org
9289 S:      Maintained
9290 F:      include/linux/kexec.h
9291 F:      include/uapi/linux/kexec.h
9292 F:      kernel/kexec*
9293
9294 KEYS-ENCRYPTED
9295 M:      Mimi Zohar <zohar@linux.ibm.com>
9296 L:      linux-integrity@vger.kernel.org
9297 L:      keyrings@vger.kernel.org
9298 S:      Supported
9299 F:      Documentation/security/keys/trusted-encrypted.rst
9300 F:      include/keys/encrypted-type.h
9301 F:      security/keys/encrypted-keys/
9302
9303 KEYS-TRUSTED
9304 M:      James Bottomley <jejb@linux.ibm.com>
9305 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9306 M:      Mimi Zohar <zohar@linux.ibm.com>
9307 L:      linux-integrity@vger.kernel.org
9308 L:      keyrings@vger.kernel.org
9309 S:      Supported
9310 F:      Documentation/security/keys/trusted-encrypted.rst
9311 F:      include/keys/trusted-type.h
9312 F:      include/keys/trusted_tpm.h
9313 F:      security/keys/trusted-keys/
9314
9315 KEYS/KEYRINGS
9316 M:      David Howells <dhowells@redhat.com>
9317 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9318 L:      keyrings@vger.kernel.org
9319 S:      Maintained
9320 F:      Documentation/security/keys/core.rst
9321 F:      include/linux/key.h
9322 F:      include/linux/key-type.h
9323 F:      include/linux/keyctl.h
9324 F:      include/uapi/linux/keyctl.h
9325 F:      include/keys/
9326 F:      security/keys/
9327
9328 KGDB / KDB /debug_core
9329 M:      Jason Wessel <jason.wessel@windriver.com>
9330 M:      Daniel Thompson <daniel.thompson@linaro.org>
9331 R:      Douglas Anderson <dianders@chromium.org>
9332 W:      http://kgdb.wiki.kernel.org/
9333 L:      kgdb-bugreport@lists.sourceforge.net
9334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9335 S:      Maintained
9336 F:      Documentation/dev-tools/kgdb.rst
9337 F:      drivers/misc/kgdbts.c
9338 F:      drivers/tty/serial/kgdboc.c
9339 F:      include/linux/kdb.h
9340 F:      include/linux/kgdb.h
9341 F:      kernel/debug/
9342
9343 KMEMLEAK
9344 M:      Catalin Marinas <catalin.marinas@arm.com>
9345 S:      Maintained
9346 F:      Documentation/dev-tools/kmemleak.rst
9347 F:      include/linux/kmemleak.h
9348 F:      mm/kmemleak.c
9349 F:      mm/kmemleak-test.c
9350
9351 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9352 M:      Luis Chamberlain <mcgrof@kernel.org>
9353 L:      linux-kernel@vger.kernel.org
9354 S:      Maintained
9355 F:      kernel/kmod.c
9356 F:      include/linux/kmod.h
9357 F:      lib/test_kmod.c
9358 F:      tools/testing/selftests/kmod/
9359
9360 KPROBES
9361 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
9362 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9363 M:      "David S. Miller" <davem@davemloft.net>
9364 M:      Masami Hiramatsu <mhiramat@kernel.org>
9365 S:      Maintained
9366 F:      Documentation/kprobes.txt
9367 F:      include/linux/kprobes.h
9368 F:      include/asm-generic/kprobes.h
9369 F:      kernel/kprobes.c
9370
9371 KS0108 LCD CONTROLLER DRIVER
9372 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
9373 S:      Maintained
9374 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9375 F:      drivers/auxdisplay/ks0108.c
9376 F:      include/linux/ks0108.h
9377
9378 L3MDEV
9379 M:      David Ahern <dsahern@kernel.org>
9380 L:      netdev@vger.kernel.org
9381 S:      Maintained
9382 F:      net/l3mdev
9383 F:      include/net/l3mdev.h
9384
9385 L7 BPF FRAMEWORK
9386 M:      John Fastabend <john.fastabend@gmail.com>
9387 M:      Daniel Borkmann <daniel@iogearbox.net>
9388 L:      netdev@vger.kernel.org
9389 L:      bpf@vger.kernel.org
9390 S:      Maintained
9391 F:      include/linux/skmsg.h
9392 F:      net/core/skmsg.c
9393 F:      net/core/sock_map.c
9394 F:      net/ipv4/tcp_bpf.c
9395
9396 LANTIQ / INTEL Ethernet drivers
9397 M:      Hauke Mehrtens <hauke@hauke-m.de>
9398 L:      netdev@vger.kernel.org
9399 S:      Maintained
9400 F:      net/dsa/tag_gswip.c
9401 F:      drivers/net/ethernet/lantiq_xrx200.c
9402 F:      drivers/net/dsa/lantiq_pce.h
9403 F:      drivers/net/dsa/lantiq_gswip.c
9404
9405 LANTIQ MIPS ARCHITECTURE
9406 M:      John Crispin <john@phrozen.org>
9407 L:      linux-mips@vger.kernel.org
9408 S:      Maintained
9409 F:      arch/mips/lantiq
9410 F:      drivers/soc/lantiq
9411
9412 LAPB module
9413 L:      linux-x25@vger.kernel.org
9414 S:      Orphan
9415 F:      Documentation/networking/lapb-module.txt
9416 F:      include/*/lapb.h
9417 F:      net/lapb/
9418
9419 LASI 53c700 driver for PARISC
9420 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9421 L:      linux-scsi@vger.kernel.org
9422 S:      Maintained
9423 F:      Documentation/scsi/53c700.txt
9424 F:      drivers/scsi/53c700*
9425
9426 LEAKING_ADDRESSES
9427 M:      Tobin C. Harding <me@tobin.cc>
9428 M:      Tycho Andersen <tycho@tycho.ws>
9429 L:      kernel-hardening@lists.openwall.com
9430 S:      Maintained
9431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9432 F:      scripts/leaking_addresses.pl
9433
9434 LED SUBSYSTEM
9435 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
9436 M:      Pavel Machek <pavel@ucw.cz>
9437 R:      Dan Murphy <dmurphy@ti.com>
9438 L:      linux-leds@vger.kernel.org
9439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
9440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9441 S:      Maintained
9442 F:      Documentation/devicetree/bindings/leds/
9443 F:      drivers/leds/
9444 F:      include/linux/leds.h
9445
9446 LEGACY EEPROM DRIVER
9447 M:      Jean Delvare <jdelvare@suse.com>
9448 S:      Maintained
9449 F:      Documentation/misc-devices/eeprom.rst
9450 F:      drivers/misc/eeprom/eeprom.c
9451
9452 LEGO MINDSTORMS EV3
9453 R:      David Lechner <david@lechnology.com>
9454 S:      Maintained
9455 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9456 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9457 F:      drivers/power/supply/lego_ev3_battery.c
9458
9459 LEGO USB Tower driver
9460 M:      Juergen Stuber <starblue@users.sourceforge.net>
9461 L:      legousb-devel@lists.sourceforge.net
9462 W:      http://legousb.sourceforge.net/
9463 S:      Maintained
9464 F:      drivers/usb/misc/legousbtower.c
9465
9466 LG LAPTOP EXTRAS
9467 M:      Matan Ziv-Av <matan@svgalib.org>
9468 L:      platform-driver-x86@vger.kernel.org
9469 S:      Maintained
9470 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9471 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9472 F:      drivers/platform/x86/lg-laptop.c
9473
9474 LG2160 MEDIA DRIVER
9475 M:      Michael Krufky <mkrufky@linuxtv.org>
9476 L:      linux-media@vger.kernel.org
9477 W:      https://linuxtv.org
9478 W:      http://github.com/mkrufky
9479 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9480 T:      git git://linuxtv.org/mkrufky/tuners.git
9481 S:      Maintained
9482 F:      drivers/media/dvb-frontends/lg2160.*
9483
9484 LGDT3305 MEDIA DRIVER
9485 M:      Michael Krufky <mkrufky@linuxtv.org>
9486 L:      linux-media@vger.kernel.org
9487 W:      https://linuxtv.org
9488 W:      http://github.com/mkrufky
9489 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9490 T:      git git://linuxtv.org/mkrufky/tuners.git
9491 S:      Maintained
9492 F:      drivers/media/dvb-frontends/lgdt3305.*
9493
9494 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9495 M:      Viresh Kumar <vireshk@kernel.org>
9496 L:      linux-ide@vger.kernel.org
9497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9498 S:      Maintained
9499 F:      include/linux/pata_arasan_cf_data.h
9500 F:      drivers/ata/pata_arasan_cf.c
9501
9502 LIBATA PATA DRIVERS
9503 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9504 M:      Jens Axboe <axboe@kernel.dk>
9505 L:      linux-ide@vger.kernel.org
9506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9507 S:      Maintained
9508 F:      drivers/ata/pata_*.c
9509 F:      drivers/ata/ata_generic.c
9510
9511 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9512 M:      Linus Walleij <linus.walleij@linaro.org>
9513 L:      linux-ide@vger.kernel.org
9514 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9515 S:      Maintained
9516 F:      drivers/ata/pata_ftide010.c
9517 F:      drivers/ata/sata_gemini.c
9518 F:      drivers/ata/sata_gemini.h
9519
9520 LIBATA SATA AHCI PLATFORM devices support
9521 M:      Hans de Goede <hdegoede@redhat.com>
9522 M:      Jens Axboe <axboe@kernel.dk>
9523 L:      linux-ide@vger.kernel.org
9524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9525 S:      Maintained
9526 F:      drivers/ata/ahci_platform.c
9527 F:      drivers/ata/libahci_platform.c
9528 F:      include/linux/ahci_platform.h
9529
9530 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
9531 M:      Mikael Pettersson <mikpelinux@gmail.com>
9532 L:      linux-ide@vger.kernel.org
9533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9534 S:      Maintained
9535 F:      drivers/ata/sata_promise.*
9536
9537 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
9538 M:      Jens Axboe <axboe@kernel.dk>
9539 L:      linux-ide@vger.kernel.org
9540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9541 S:      Maintained
9542 F:      drivers/ata/
9543 F:      include/linux/ata.h
9544 F:      include/linux/libata.h
9545 F:      Documentation/devicetree/bindings/ata/
9546
9547 LIBLOCKDEP
9548 M:      Sasha Levin <alexander.levin@microsoft.com>
9549 S:      Maintained
9550 F:      tools/lib/lockdep/
9551
9552 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
9553 M:      Dan Williams <dan.j.williams@intel.com>
9554 M:      Vishal Verma <vishal.l.verma@intel.com>
9555 M:      Dave Jiang <dave.jiang@intel.com>
9556 L:      linux-nvdimm@lists.01.org
9557 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9558 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9559 S:      Supported
9560 F:      drivers/nvdimm/blk.c
9561 F:      drivers/nvdimm/region_devs.c
9562
9563 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
9564 M:      Vishal Verma <vishal.l.verma@intel.com>
9565 M:      Dan Williams <dan.j.williams@intel.com>
9566 M:      Dave Jiang <dave.jiang@intel.com>
9567 L:      linux-nvdimm@lists.01.org
9568 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9569 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9570 S:      Supported
9571 F:      drivers/nvdimm/btt*
9572
9573 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
9574 M:      Dan Williams <dan.j.williams@intel.com>
9575 M:      Vishal Verma <vishal.l.verma@intel.com>
9576 M:      Dave Jiang <dave.jiang@intel.com>
9577 L:      linux-nvdimm@lists.01.org
9578 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9579 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9580 S:      Supported
9581 F:      drivers/nvdimm/pmem*
9582
9583 LIBNVDIMM: DEVICETREE BINDINGS
9584 M:      Oliver O'Halloran <oohall@gmail.com>
9585 L:      linux-nvdimm@lists.01.org
9586 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9587 S:      Supported
9588 F:      drivers/nvdimm/of_pmem.c
9589 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
9590
9591 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
9592 M:      Dan Williams <dan.j.williams@intel.com>
9593 M:      Vishal Verma <vishal.l.verma@intel.com>
9594 M:      Dave Jiang <dave.jiang@intel.com>
9595 M:      Ira Weiny <ira.weiny@intel.com>
9596 L:      linux-nvdimm@lists.01.org
9597 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9598 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
9600 S:      Supported
9601 F:      drivers/nvdimm/*
9602 F:      drivers/acpi/nfit/*
9603 F:      include/linux/nd.h
9604 F:      include/linux/libnvdimm.h
9605 F:      include/uapi/linux/ndctl.h
9606
9607 LICENSES and SPDX stuff
9608 M:      Thomas Gleixner <tglx@linutronix.de>
9609 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9610 L:      linux-spdx@vger.kernel.org
9611 S:      Maintained
9612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
9613 F:      COPYING
9614 F:      Documentation/process/license-rules.rst
9615 F:      LICENSES/
9616 F:      scripts/spdxcheck-test.sh
9617 F:      scripts/spdxcheck.py
9618
9619 LIGHTNVM PLATFORM SUPPORT
9620 M:      Matias Bjorling <mb@lightnvm.io>
9621 W:      http://github/OpenChannelSSD
9622 L:      linux-block@vger.kernel.org
9623 S:      Maintained
9624 F:      drivers/lightnvm/
9625 F:      include/linux/lightnvm.h
9626 F:      include/uapi/linux/lightnvm.h
9627
9628 LINUX FOR POWER MACINTOSH
9629 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9630 W:      http://www.penguinppc.org/
9631 L:      linuxppc-dev@lists.ozlabs.org
9632 S:      Maintained
9633 F:      arch/powerpc/platforms/powermac/
9634 F:      drivers/macintosh/
9635
9636 LINUX FOR POWERPC (32-BIT AND 64-BIT)
9637 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9638 M:      Paul Mackerras <paulus@samba.org>
9639 M:      Michael Ellerman <mpe@ellerman.id.au>
9640 W:      https://github.com/linuxppc/linux/wiki
9641 L:      linuxppc-dev@lists.ozlabs.org
9642 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
9643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
9644 S:      Supported
9645 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
9646 F:      Documentation/devicetree/bindings/powerpc/
9647 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
9648 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
9649 F:      Documentation/powerpc/
9650 F:      arch/powerpc/
9651 F:      drivers/char/tpm/tpm_ibmvtpm*
9652 F:      drivers/crypto/nx/
9653 F:      drivers/crypto/vmx/
9654 F:      drivers/i2c/busses/i2c-opal.c
9655 F:      drivers/net/ethernet/ibm/ibmveth.*
9656 F:      drivers/net/ethernet/ibm/ibmvnic.*
9657 F:      drivers/pci/hotplug/pnv_php.c
9658 F:      drivers/pci/hotplug/rpa*
9659 F:      drivers/rtc/rtc-opal.c
9660 F:      drivers/scsi/ibmvscsi/
9661 F:      drivers/tty/hvc/hvc_opal.c
9662 F:      drivers/watchdog/wdrtas.c
9663 F:      tools/testing/selftests/powerpc
9664 N:      /pmac
9665 N:      powermac
9666 N:      powernv
9667 N:      [^a-z0-9]ps3
9668 N:      pseries
9669
9670 LINUX FOR POWERPC EMBEDDED MPC5XXX
9671 M:      Anatolij Gustschin <agust@denx.de>
9672 L:      linuxppc-dev@lists.ozlabs.org
9673 T:      git git://git.denx.de/linux-denx-agust.git
9674 S:      Maintained
9675 F:      arch/powerpc/platforms/512x/
9676 F:      arch/powerpc/platforms/52xx/
9677
9678 LINUX FOR POWERPC EMBEDDED PPC4XX
9679 M:      Alistair Popple <alistair@popple.id.au>
9680 M:      Matt Porter <mporter@kernel.crashing.org>
9681 W:      http://www.penguinppc.org/
9682 L:      linuxppc-dev@lists.ozlabs.org
9683 S:      Maintained
9684 F:      arch/powerpc/platforms/40x/
9685 F:      arch/powerpc/platforms/44x/
9686
9687 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
9688 M:      Scott Wood <oss@buserror.net>
9689 M:      Kumar Gala <galak@kernel.crashing.org>
9690 W:      http://www.penguinppc.org/
9691 L:      linuxppc-dev@lists.ozlabs.org
9692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
9693 S:      Maintained
9694 F:      arch/powerpc/platforms/83xx/
9695 F:      arch/powerpc/platforms/85xx/
9696 F:      Documentation/devicetree/bindings/powerpc/fsl/
9697
9698 LINUX FOR POWERPC EMBEDDED PPC8XX
9699 M:      Vitaly Bordug <vitb@kernel.crashing.org>
9700 W:      http://www.penguinppc.org/
9701 L:      linuxppc-dev@lists.ozlabs.org
9702 S:      Maintained
9703 F:      arch/powerpc/platforms/8xx/
9704
9705 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
9706 L:      linuxppc-dev@lists.ozlabs.org
9707 S:      Orphan
9708 F:      arch/powerpc/*/*virtex*
9709 F:      arch/powerpc/*/*/*virtex*
9710
9711 LINUX FOR POWERPC PA SEMI PWRFICIENT
9712 L:      linuxppc-dev@lists.ozlabs.org
9713 S:      Orphan
9714 F:      arch/powerpc/platforms/pasemi/
9715 F:      drivers/*/*pasemi*
9716 F:      drivers/*/*/*pasemi*
9717
9718 LINUX KERNEL DUMP TEST MODULE (LKDTM)
9719 M:      Kees Cook <keescook@chromium.org>
9720 S:      Maintained
9721 F:      drivers/misc/lkdtm/*
9722 F:      tools/testing/selftests/lkdtm/*
9723
9724 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
9725 M:      Alan Stern <stern@rowland.harvard.edu>
9726 M:      Andrea Parri <parri.andrea@gmail.com>
9727 M:      Will Deacon <will@kernel.org>
9728 M:      Peter Zijlstra <peterz@infradead.org>
9729 M:      Boqun Feng <boqun.feng@gmail.com>
9730 M:      Nicholas Piggin <npiggin@gmail.com>
9731 M:      David Howells <dhowells@redhat.com>
9732 M:      Jade Alglave <j.alglave@ucl.ac.uk>
9733 M:      Luc Maranget <luc.maranget@inria.fr>
9734 M:      "Paul E. McKenney" <paulmck@kernel.org>
9735 R:      Akira Yokosawa <akiyks@gmail.com>
9736 R:      Daniel Lustig <dlustig@nvidia.com>
9737 L:      linux-kernel@vger.kernel.org
9738 L:      linux-arch@vger.kernel.org
9739 S:      Supported
9740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
9741 F:      tools/memory-model/
9742 F:      Documentation/atomic_bitops.txt
9743 F:      Documentation/atomic_t.txt
9744 F:      Documentation/core-api/atomic_ops.rst
9745 F:      Documentation/core-api/refcount-vs-atomic.rst
9746 F:      Documentation/memory-barriers.txt
9747
9748 LIS3LV02D ACCELEROMETER DRIVER
9749 M:      Eric Piel <eric.piel@tremplin-utc.net>
9750 S:      Maintained
9751 F:      Documentation/misc-devices/lis3lv02d.rst
9752 F:      drivers/misc/lis3lv02d/
9753 F:      drivers/platform/x86/hp_accel.c
9754
9755 LIST KUNIT TEST
9756 M:      David Gow <davidgow@google.com>
9757 L:      linux-kselftest@vger.kernel.org
9758 L:      kunit-dev@googlegroups.com
9759 S:      Maintained
9760 F:      lib/list-test.c
9761
9762 LIVE PATCHING
9763 M:      Josh Poimboeuf <jpoimboe@redhat.com>
9764 M:      Jiri Kosina <jikos@kernel.org>
9765 M:      Miroslav Benes <mbenes@suse.cz>
9766 M:      Petr Mladek <pmladek@suse.com>
9767 R:      Joe Lawrence <joe.lawrence@redhat.com>
9768 S:      Maintained
9769 F:      kernel/livepatch/
9770 F:      include/linux/livepatch.h
9771 F:      arch/x86/include/asm/livepatch.h
9772 F:      arch/x86/kernel/livepatch.c
9773 F:      Documentation/livepatch/
9774 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
9775 F:      samples/livepatch/
9776 F:      tools/testing/selftests/livepatch/
9777 L:      live-patching@vger.kernel.org
9778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
9779
9780 LLC (802.2)
9781 L:      netdev@vger.kernel.org
9782 S:      Odd fixes
9783 F:      include/linux/llc.h
9784 F:      include/uapi/linux/llc.h
9785 F:      include/net/llc*
9786 F:      net/llc/
9787
9788 LM73 HARDWARE MONITOR DRIVER
9789 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
9790 L:      linux-hwmon@vger.kernel.org
9791 S:      Maintained
9792 F:      drivers/hwmon/lm73.c
9793
9794 LM78 HARDWARE MONITOR DRIVER
9795 M:      Jean Delvare <jdelvare@suse.com>
9796 L:      linux-hwmon@vger.kernel.org
9797 S:      Maintained
9798 F:      Documentation/hwmon/lm78.rst
9799 F:      drivers/hwmon/lm78.c
9800
9801 LM83 HARDWARE MONITOR DRIVER
9802 M:      Jean Delvare <jdelvare@suse.com>
9803 L:      linux-hwmon@vger.kernel.org
9804 S:      Maintained
9805 F:      Documentation/hwmon/lm83.rst
9806 F:      drivers/hwmon/lm83.c
9807
9808 LM90 HARDWARE MONITOR DRIVER
9809 M:      Jean Delvare <jdelvare@suse.com>
9810 L:      linux-hwmon@vger.kernel.org
9811 S:      Maintained
9812 F:      Documentation/hwmon/lm90.rst
9813 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
9814 F:      drivers/hwmon/lm90.c
9815 F:      include/dt-bindings/thermal/lm90.h
9816
9817 LM95234 HARDWARE MONITOR DRIVER
9818 M:      Guenter Roeck <linux@roeck-us.net>
9819 L:      linux-hwmon@vger.kernel.org
9820 S:      Maintained
9821 F:      Documentation/hwmon/lm95234.rst
9822 F:      drivers/hwmon/lm95234.c
9823
9824 LME2510 MEDIA DRIVER
9825 M:      Malcolm Priestley <tvboxspy@gmail.com>
9826 L:      linux-media@vger.kernel.org
9827 W:      https://linuxtv.org
9828 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9829 S:      Maintained
9830 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
9831
9832 LOADPIN SECURITY MODULE
9833 M:      Kees Cook <keescook@chromium.org>
9834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
9835 S:      Supported
9836 F:      security/loadpin/
9837 F:      Documentation/admin-guide/LSM/LoadPin.rst
9838
9839 LOCKING PRIMITIVES
9840 M:      Peter Zijlstra <peterz@infradead.org>
9841 M:      Ingo Molnar <mingo@redhat.com>
9842 M:      Will Deacon <will@kernel.org>
9843 L:      linux-kernel@vger.kernel.org
9844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
9845 S:      Maintained
9846 F:      Documentation/locking/
9847 F:      include/linux/lockdep.h
9848 F:      include/linux/spinlock*.h
9849 F:      arch/*/include/asm/spinlock*.h
9850 F:      include/linux/rwlock*.h
9851 F:      include/linux/mutex*.h
9852 F:      include/linux/rwsem*.h
9853 F:      include/linux/seqlock.h
9854 F:      lib/locking*.[ch]
9855 F:      kernel/locking/
9856 X:      kernel/locking/locktorture.c
9857
9858 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
9859 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
9860 L:      linux-ntfs-dev@lists.sourceforge.net
9861 W:      http://www.linux-ntfs.org/content/view/19/37/
9862 S:      Maintained
9863 F:      Documentation/admin-guide/ldm.rst
9864 F:      block/partitions/ldm.*
9865
9866 LOGITECH HID GAMING KEYBOARDS
9867 M:      Hans de Goede <hdegoede@redhat.com>
9868 L:      linux-input@vger.kernel.org
9869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
9870 S:      Maintained
9871 F:      drivers/hid/hid-lg-g15.c
9872
9873 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
9874 M:      Sathya Prakash <sathya.prakash@broadcom.com>
9875 M:      Chaitra P B <chaitra.basappa@broadcom.com>
9876 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
9877 L:      MPT-FusionLinux.pdl@broadcom.com
9878 L:      linux-scsi@vger.kernel.org
9879 W:      http://www.avagotech.com/support/
9880 S:      Supported
9881 F:      drivers/message/fusion/
9882 F:      drivers/scsi/mpt3sas/
9883
9884 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
9885 M:      Matthew Wilcox <willy@infradead.org>
9886 L:      linux-scsi@vger.kernel.org
9887 S:      Maintained
9888 F:      drivers/scsi/sym53c8xx_2/
9889
9890 LTC1660 DAC DRIVER
9891 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
9892 L:      linux-iio@vger.kernel.org
9893 S:      Maintained
9894 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
9895 F:      drivers/iio/dac/ltc1660.c
9896
9897 LTC2983 IIO TEMPERATURE DRIVER
9898 M:      Nuno Sá <nuno.sa@analog.com>
9899 W:      http://ez.analog.com/community/linux-device-drivers
9900 L:      linux-iio@vger.kernel.org
9901 S:      Supported
9902 F:      drivers/iio/temperature/ltc2983.c
9903 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
9904
9905 LTC4261 HARDWARE MONITOR DRIVER
9906 M:      Guenter Roeck <linux@roeck-us.net>
9907 L:      linux-hwmon@vger.kernel.org
9908 S:      Maintained
9909 F:      Documentation/hwmon/ltc4261.rst
9910 F:      drivers/hwmon/ltc4261.c
9911
9912 LTC2947 HARDWARE MONITOR DRIVER
9913 M:      Nuno Sá <nuno.sa@analog.com>
9914 W:      http://ez.analog.com/community/linux-device-drivers
9915 L:      linux-hwmon@vger.kernel.org
9916 S:      Supported
9917 F:      drivers/hwmon/ltc2947-core.c
9918 F:      drivers/hwmon/ltc2947-spi.c
9919 F:      drivers/hwmon/ltc2947-i2c.c
9920 F:      drivers/hwmon/ltc2947.h
9921 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
9922
9923 LTC4306 I2C MULTIPLEXER DRIVER
9924 M:      Michael Hennerich <michael.hennerich@analog.com>
9925 W:      http://ez.analog.com/community/linux-device-drivers
9926 L:      linux-i2c@vger.kernel.org
9927 S:      Supported
9928 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
9929 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
9930
9931 LTP (Linux Test Project)
9932 M:      Mike Frysinger <vapier@gentoo.org>
9933 M:      Cyril Hrubis <chrubis@suse.cz>
9934 M:      Wanlong Gao <wanlong.gao@gmail.com>
9935 M:      Jan Stancek <jstancek@redhat.com>
9936 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
9937 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
9938 L:      ltp@lists.linux.it (subscribers-only)
9939 W:      http://linux-test-project.github.io/
9940 T:      git git://github.com/linux-test-project/ltp.git
9941 S:      Maintained
9942
9943 M68K ARCHITECTURE
9944 M:      Geert Uytterhoeven <geert@linux-m68k.org>
9945 L:      linux-m68k@lists.linux-m68k.org
9946 W:      http://www.linux-m68k.org/
9947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
9948 S:      Maintained
9949 F:      arch/m68k/
9950 F:      drivers/zorro/
9951
9952 M68K ON APPLE MACINTOSH
9953 M:      Joshua Thompson <funaho@jurai.org>
9954 W:      http://www.mac.linux-m68k.org/
9955 L:      linux-m68k@lists.linux-m68k.org
9956 S:      Maintained
9957 F:      arch/m68k/mac/
9958
9959 M68K ON HP9000/300
9960 M:      Philip Blundell <philb@gnu.org>
9961 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
9962 S:      Maintained
9963 F:      arch/m68k/hp300/
9964
9965 M88DS3103 MEDIA DRIVER
9966 M:      Antti Palosaari <crope@iki.fi>
9967 L:      linux-media@vger.kernel.org
9968 W:      https://linuxtv.org
9969 W:      http://palosaari.fi/linux/
9970 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9971 T:      git git://linuxtv.org/anttip/media_tree.git
9972 S:      Maintained
9973 F:      drivers/media/dvb-frontends/m88ds3103*
9974
9975 M88RS2000 MEDIA DRIVER
9976 M:      Malcolm Priestley <tvboxspy@gmail.com>
9977 L:      linux-media@vger.kernel.org
9978 W:      https://linuxtv.org
9979 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9980 S:      Maintained
9981 F:      drivers/media/dvb-frontends/m88rs2000*
9982
9983 MA901 MASTERKIT USB FM RADIO DRIVER
9984 M:      Alexey Klimov <klimov.linux@gmail.com>
9985 L:      linux-media@vger.kernel.org
9986 T:      git git://linuxtv.org/media_tree.git
9987 S:      Maintained
9988 F:      drivers/media/radio/radio-ma901.c
9989
9990 MAC80211
9991 M:      Johannes Berg <johannes@sipsolutions.net>
9992 L:      linux-wireless@vger.kernel.org
9993 W:      http://wireless.kernel.org/
9994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
9996 S:      Maintained
9997 F:      Documentation/networking/mac80211-injection.txt
9998 F:      include/net/mac80211.h
9999 F:      net/mac80211/
10000 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10001 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10002
10003 MAILBOX API
10004 M:      Jassi Brar <jassisinghbrar@gmail.com>
10005 L:      linux-kernel@vger.kernel.org
10006 S:      Maintained
10007 F:      drivers/mailbox/
10008 F:      include/linux/mailbox_client.h
10009 F:      include/linux/mailbox_controller.h
10010
10011 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10012 M:      Michael Kerrisk <mtk.manpages@gmail.com>
10013 W:      http://www.kernel.org/doc/man-pages
10014 L:      linux-man@vger.kernel.org
10015 S:      Maintained
10016
10017 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10018 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
10019 L:      linux-mips@vger.kernel.org
10020 S:      Maintained
10021 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10022
10023 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10024 M:      Andrew Lunn <andrew@lunn.ch>
10025 M:      Vivien Didelot <vivien.didelot@gmail.com>
10026 L:      netdev@vger.kernel.org
10027 S:      Maintained
10028 F:      drivers/net/dsa/mv88e6xxx/
10029 F:      include/linux/platform_data/mv88e6xxx.h
10030 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10031 F:      Documentation/networking/devlink/mv88e6xxx.rst
10032
10033 MARVELL ARMADA DRM SUPPORT
10034 M:      Russell King <linux@armlinux.org.uk>
10035 S:      Maintained
10036 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10037 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10038 F:      drivers/gpu/drm/armada/
10039 F:      include/uapi/drm/armada_drm.h
10040 F:      Documentation/devicetree/bindings/display/armada/
10041
10042 MARVELL ARMADA 3700 PHY DRIVERS
10043 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10044 S:      Maintained
10045 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10046 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10047 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10048 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10049
10050 MARVELL CRYPTO DRIVER
10051 M:      Boris Brezillon <bbrezillon@kernel.org>
10052 M:      Arnaud Ebalard <arno@natisbad.org>
10053 F:      drivers/crypto/marvell/
10054 S:      Maintained
10055 L:      linux-crypto@vger.kernel.org
10056
10057 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10058 M:      Mirko Lindner <mlindner@marvell.com>
10059 M:      Stephen Hemminger <stephen@networkplumber.org>
10060 L:      netdev@vger.kernel.org
10061 S:      Maintained
10062 F:      drivers/net/ethernet/marvell/sk*
10063
10064 MARVELL LIBERTAS WIRELESS DRIVER
10065 L:      libertas-dev@lists.infradead.org
10066 S:      Orphan
10067 F:      drivers/net/wireless/marvell/libertas/
10068
10069 MARVELL MACCHIATOBIN SUPPORT
10070 M:      Russell King <linux@armlinux.org.uk>
10071 L:      linux-arm-kernel@lists.infradead.org
10072 S:      Maintained
10073 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10074
10075 MARVELL MV643XX ETHERNET DRIVER
10076 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
10077 L:      netdev@vger.kernel.org
10078 S:      Maintained
10079 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10080 F:      include/linux/mv643xx.h
10081
10082 MARVELL MV88X3310 PHY DRIVER
10083 M:      Russell King <linux@armlinux.org.uk>
10084 L:      netdev@vger.kernel.org
10085 S:      Maintained
10086 F:      drivers/net/phy/marvell10g.c
10087
10088 MARVELL MVEBU THERMAL DRIVER
10089 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10090 S:      Maintained
10091 F:      drivers/thermal/armada_thermal.c
10092
10093 MARVELL MVNETA ETHERNET DRIVER
10094 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
10095 L:      netdev@vger.kernel.org
10096 S:      Maintained
10097 F:      drivers/net/ethernet/marvell/mvneta.*
10098
10099 MARVELL MWIFIEX WIRELESS DRIVER
10100 M:      Amitkumar Karwar <amitkarwar@gmail.com>
10101 M:      Ganapathi Bhat <ganapathi.bhat@nxp.com>
10102 M:      Xinming Hu <huxinming820@gmail.com>
10103 L:      linux-wireless@vger.kernel.org
10104 S:      Maintained
10105 F:      drivers/net/wireless/marvell/mwifiex/
10106
10107 MARVELL MWL8K WIRELESS DRIVER
10108 M:      Lennert Buytenhek <buytenh@wantstofly.org>
10109 L:      linux-wireless@vger.kernel.org
10110 S:      Odd Fixes
10111 F:      drivers/net/wireless/marvell/mwl8k.c
10112
10113 MARVELL NAND CONTROLLER DRIVER
10114 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10115 L:      linux-mtd@lists.infradead.org
10116 S:      Maintained
10117 F:      drivers/mtd/nand/raw/marvell_nand.c
10118 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10119
10120 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10121 M:      Nicolas Pitre <nico@fluxnic.net>
10122 S:      Odd Fixes
10123 F:      drivers/mmc/host/mvsdio.*
10124
10125 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10126 M:      Hu Ziji <huziji@marvell.com>
10127 L:      linux-mmc@vger.kernel.org
10128 S:      Supported
10129 F:      drivers/mmc/host/sdhci-xenon*
10130 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10131
10132 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10133 M:      Sunil Goutham <sgoutham@marvell.com>
10134 M:      Linu Cherian <lcherian@marvell.com>
10135 M:      Geetha sowjanya <gakula@marvell.com>
10136 M:      Jerin Jacob <jerinj@marvell.com>
10137 L:      netdev@vger.kernel.org
10138 S:      Supported
10139 F:      drivers/net/ethernet/marvell/octeontx2/af/
10140 F:      Documentation/networking/device_drivers/marvell/octeontx2.rst
10141
10142 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10143 M:      Sunil Goutham <sgoutham@marvell.com>
10144 M:      Geetha sowjanya <gakula@marvell.com>
10145 M:      Subbaraya Sundeep <sbhatta@marvell.com>
10146 M:      hariprasad <hkelam@marvell.com>
10147 L:      netdev@vger.kernel.org
10148 S:      Supported
10149 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10150
10151 MATROX FRAMEBUFFER DRIVER
10152 L:      linux-fbdev@vger.kernel.org
10153 S:      Orphan
10154 F:      drivers/video/fbdev/matrox/matroxfb_*
10155 F:      include/uapi/linux/matroxfb.h
10156
10157 MAX16065 HARDWARE MONITOR DRIVER
10158 M:      Guenter Roeck <linux@roeck-us.net>
10159 L:      linux-hwmon@vger.kernel.org
10160 S:      Maintained
10161 F:      Documentation/hwmon/max16065.rst
10162 F:      drivers/hwmon/max16065.c
10163
10164 MAX2175 SDR TUNER DRIVER
10165 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10166 L:      linux-media@vger.kernel.org
10167 T:      git git://linuxtv.org/media_tree.git
10168 S:      Maintained
10169 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10170 F:      Documentation/media/v4l-drivers/max2175.rst
10171 F:      drivers/media/i2c/max2175*
10172 F:      include/uapi/linux/max2175.h
10173
10174 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10175 L:      linux-hwmon@vger.kernel.org
10176 S:      Orphan
10177 F:      Documentation/hwmon/max6650.rst
10178 F:      drivers/hwmon/max6650.c
10179
10180 MAX6697 HARDWARE MONITOR DRIVER
10181 M:      Guenter Roeck <linux@roeck-us.net>
10182 L:      linux-hwmon@vger.kernel.org
10183 S:      Maintained
10184 F:      Documentation/hwmon/max6697.rst
10185 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10186 F:      drivers/hwmon/max6697.c
10187 F:      include/linux/platform_data/max6697.h
10188
10189 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10190 M:      Peter Rosin <peda@axentia.se>
10191 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10192 S:      Maintained
10193 F:      Documentation/devicetree/bindings/sound/max9860.txt
10194 F:      sound/soc/codecs/max9860.*
10195
10196 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10197 M:      Andreas Klinger <ak@it-klinger.de>
10198 L:      linux-iio@vger.kernel.org
10199 S:      Maintained
10200 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10201 F:      drivers/iio/proximity/mb1232.c
10202
10203 MAXIM MAX77650 PMIC MFD DRIVER
10204 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
10205 L:      linux-kernel@vger.kernel.org
10206 S:      Maintained
10207 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10208 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10209 F:      include/linux/mfd/max77650.h
10210 F:      drivers/mfd/max77650.c
10211 F:      drivers/regulator/max77650-regulator.c
10212 F:      drivers/power/supply/max77650-charger.c
10213 F:      drivers/input/misc/max77650-onkey.c
10214 F:      drivers/leds/leds-max77650.c
10215 F:      drivers/gpio/gpio-max77650.c
10216
10217 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10218 M:      Javier Martinez Canillas <javier@dowhile0.org>
10219 L:      linux-kernel@vger.kernel.org
10220 S:      Supported
10221 F:      drivers/regulator/max77802-regulator.c
10222 F:      Documentation/devicetree/bindings/*/*max77802.txt
10223 F:      include/dt-bindings/*/*max77802.h
10224
10225 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10226 M:      Krzysztof Kozlowski <krzk@kernel.org>
10227 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10228 L:      linux-pm@vger.kernel.org
10229 S:      Supported
10230 F:      drivers/power/supply/max14577_charger.c
10231 F:      drivers/power/supply/max77693_charger.c
10232
10233 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10234 M:      Chanwoo Choi <cw00.choi@samsung.com>
10235 M:      Krzysztof Kozlowski <krzk@kernel.org>
10236 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10237 L:      linux-kernel@vger.kernel.org
10238 S:      Supported
10239 F:      drivers/*/max14577*.c
10240 F:      drivers/*/max77686*.c
10241 F:      drivers/*/max77693*.c
10242 F:      drivers/extcon/extcon-max14577.c
10243 F:      drivers/extcon/extcon-max77693.c
10244 F:      drivers/rtc/rtc-max77686.c
10245 F:      drivers/clk/clk-max77686.c
10246 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10247 F:      Documentation/devicetree/bindings/*/max77686.txt
10248 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10249 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10250 F:      include/linux/mfd/max14577*.h
10251 F:      include/linux/mfd/max77686*.h
10252 F:      include/linux/mfd/max77693*.h
10253
10254 MAXIRADIO FM RADIO RECEIVER DRIVER
10255 M:      Hans Verkuil <hverkuil@xs4all.nl>
10256 L:      linux-media@vger.kernel.org
10257 T:      git git://linuxtv.org/media_tree.git
10258 W:      https://linuxtv.org
10259 S:      Maintained
10260 F:      drivers/media/radio/radio-maxiradio*
10261
10262 MCAN MMIO DEVICE DRIVER
10263 M:      Dan Murphy <dmurphy@ti.com>
10264 M:      Sriram Dash <sriram.dash@samsung.com>
10265 L:      linux-can@vger.kernel.org
10266 S:      Maintained
10267 F:      Documentation/devicetree/bindings/net/can/m_can.txt
10268 F:      drivers/net/can/m_can/m_can.c
10269 F:      drivers/net/can/m_can/m_can.h
10270 F:      drivers/net/can/m_can/m_can_platform.c
10271
10272 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10273 M:      Peter Rosin <peda@axentia.se>
10274 L:      linux-iio@vger.kernel.org
10275 S:      Maintained
10276 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10277 F:      drivers/iio/potentiometer/mcp4018.c
10278 F:      drivers/iio/potentiometer/mcp4531.c
10279
10280 MCR20A IEEE-802.15.4 RADIO DRIVER
10281 M:      Xue Liu <liuxuenetmail@gmail.com>
10282 L:      linux-wpan@vger.kernel.org
10283 W:      https://github.com/xueliu/mcr20a-linux
10284 S:      Maintained
10285 F:      drivers/net/ieee802154/mcr20a.c
10286 F:      drivers/net/ieee802154/mcr20a.h
10287 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10288
10289 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10290 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10291 L:      linux-iio@vger.kernel.org
10292 S:      Maintained
10293 F:      drivers/iio/dac/cio-dac.c
10294
10295 MEDIA CONTROLLER FRAMEWORK
10296 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10297 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10298 L:      linux-media@vger.kernel.org
10299 W:      https://www.linuxtv.org
10300 T:      git git://linuxtv.org/media_tree.git
10301 S:      Supported
10302 F:      drivers/media/mc/
10303 F:      include/media/media-*.h
10304 F:      include/uapi/linux/media.h
10305
10306 MEDIA DRIVERS FOR ASCOT2E
10307 M:      Sergey Kozlov <serjk@netup.ru>
10308 M:      Abylay Ospan <aospan@netup.ru>
10309 L:      linux-media@vger.kernel.org
10310 W:      https://linuxtv.org
10311 W:      http://netup.tv/
10312 T:      git git://linuxtv.org/media_tree.git
10313 S:      Supported
10314 F:      drivers/media/dvb-frontends/ascot2e*
10315
10316 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10317 M:      Jasmin Jessich <jasmin@anw.at>
10318 L:      linux-media@vger.kernel.org
10319 W:      https://linuxtv.org
10320 T:      git git://linuxtv.org/media_tree.git
10321 S:      Maintained
10322 F:      drivers/media/dvb-frontends/cxd2099*
10323
10324 MEDIA DRIVERS FOR CXD2841ER
10325 M:      Sergey Kozlov <serjk@netup.ru>
10326 M:      Abylay Ospan <aospan@netup.ru>
10327 L:      linux-media@vger.kernel.org
10328 W:      https://linuxtv.org
10329 W:      http://netup.tv/
10330 T:      git git://linuxtv.org/media_tree.git
10331 S:      Supported
10332 F:      drivers/media/dvb-frontends/cxd2841er*
10333
10334 MEDIA DRIVERS FOR CXD2880
10335 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
10336 L:      linux-media@vger.kernel.org
10337 W:      http://linuxtv.org/
10338 T:      git git://linuxtv.org/media_tree.git
10339 S:      Supported
10340 F:      drivers/media/dvb-frontends/cxd2880/*
10341 F:      drivers/media/spi/cxd2880*
10342
10343 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10344 L:      linux-media@vger.kernel.org
10345 W:      https://linuxtv.org
10346 T:      git git://linuxtv.org/media_tree.git
10347 S:      Orphan
10348 F:      drivers/media/pci/ddbridge/*
10349
10350 MEDIA DRIVERS FOR FREESCALE IMX
10351 M:      Steve Longerbeam <slongerbeam@gmail.com>
10352 M:      Philipp Zabel <p.zabel@pengutronix.de>
10353 L:      linux-media@vger.kernel.org
10354 T:      git git://linuxtv.org/media_tree.git
10355 S:      Maintained
10356 F:      Documentation/devicetree/bindings/media/imx.txt
10357 F:      Documentation/media/v4l-drivers/imx.rst
10358 F:      drivers/staging/media/imx/
10359 F:      include/linux/imx-media.h
10360 F:      include/media/imx.h
10361
10362 MEDIA DRIVER FOR FREESCALE IMX PXP
10363 M:      Philipp Zabel <p.zabel@pengutronix.de>
10364 L:      linux-media@vger.kernel.org
10365 T:      git git://linuxtv.org/media_tree.git
10366 S:      Maintained
10367 F:      drivers/media/platform/imx-pxp.[ch]
10368
10369 MEDIA DRIVERS FOR FREESCALE IMX7
10370 M:      Rui Miguel Silva <rmfrfs@gmail.com>
10371 L:      linux-media@vger.kernel.org
10372 T:      git git://linuxtv.org/media_tree.git
10373 S:      Maintained
10374 F:      Documentation/devicetree/bindings/media/imx7-csi.txt
10375 F:      Documentation/devicetree/bindings/media/imx7-mipi-csi2.txt
10376 F:      Documentation/media/v4l-drivers/imx7.rst
10377 F:      drivers/staging/media/imx/imx7-media-csi.c
10378 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10379
10380 MEDIA DRIVERS FOR HELENE
10381 M:      Abylay Ospan <aospan@netup.ru>
10382 L:      linux-media@vger.kernel.org
10383 W:      https://linuxtv.org
10384 W:      http://netup.tv/
10385 T:      git git://linuxtv.org/media_tree.git
10386 S:      Supported
10387 F:      drivers/media/dvb-frontends/helene*
10388
10389 MEDIA DRIVERS FOR HORUS3A
10390 M:      Sergey Kozlov <serjk@netup.ru>
10391 M:      Abylay Ospan <aospan@netup.ru>
10392 L:      linux-media@vger.kernel.org
10393 W:      https://linuxtv.org
10394 W:      http://netup.tv/
10395 T:      git git://linuxtv.org/media_tree.git
10396 S:      Supported
10397 F:      drivers/media/dvb-frontends/horus3a*
10398
10399 MEDIA DRIVERS FOR LNBH25
10400 M:      Sergey Kozlov <serjk@netup.ru>
10401 M:      Abylay Ospan <aospan@netup.ru>
10402 L:      linux-media@vger.kernel.org
10403 W:      https://linuxtv.org
10404 W:      http://netup.tv/
10405 T:      git git://linuxtv.org/media_tree.git
10406 S:      Supported
10407 F:      drivers/media/dvb-frontends/lnbh25*
10408
10409 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10410 L:      linux-media@vger.kernel.org
10411 W:      https://linuxtv.org
10412 T:      git git://linuxtv.org/media_tree.git
10413 S:      Orphan
10414 F:      drivers/media/dvb-frontends/mxl5xx*
10415
10416 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10417 M:      Sergey Kozlov <serjk@netup.ru>
10418 M:      Abylay Ospan <aospan@netup.ru>
10419 L:      linux-media@vger.kernel.org
10420 W:      https://linuxtv.org
10421 W:      http://netup.tv/
10422 T:      git git://linuxtv.org/media_tree.git
10423 S:      Supported
10424 F:      drivers/media/pci/netup_unidvb/*
10425
10426 MEDIA DRIVERS FOR RENESAS - CEU
10427 M:      Jacopo Mondi <jacopo@jmondi.org>
10428 L:      linux-media@vger.kernel.org
10429 L:      linux-renesas-soc@vger.kernel.org
10430 T:      git git://linuxtv.org/media_tree.git
10431 S:      Supported
10432 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
10433 F:      drivers/media/platform/renesas-ceu.c
10434 F:      include/media/drv-intf/renesas-ceu.h
10435
10436 MEDIA DRIVERS FOR RENESAS - DRIF
10437 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10438 L:      linux-media@vger.kernel.org
10439 L:      linux-renesas-soc@vger.kernel.org
10440 T:      git git://linuxtv.org/media_tree.git
10441 S:      Supported
10442 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10443 F:      drivers/media/platform/rcar_drif.c
10444
10445 MEDIA DRIVERS FOR RENESAS - FCP
10446 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10447 L:      linux-media@vger.kernel.org
10448 L:      linux-renesas-soc@vger.kernel.org
10449 T:      git git://linuxtv.org/media_tree.git
10450 S:      Supported
10451 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
10452 F:      drivers/media/platform/rcar-fcp.c
10453 F:      include/media/rcar-fcp.h
10454
10455 MEDIA DRIVERS FOR RENESAS - FDP1
10456 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10457 L:      linux-media@vger.kernel.org
10458 L:      linux-renesas-soc@vger.kernel.org
10459 T:      git git://linuxtv.org/media_tree.git
10460 S:      Supported
10461 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
10462 F:      drivers/media/platform/rcar_fdp1.c
10463
10464 MEDIA DRIVERS FOR RENESAS - VIN
10465 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
10466 L:      linux-media@vger.kernel.org
10467 L:      linux-renesas-soc@vger.kernel.org
10468 T:      git git://linuxtv.org/media_tree.git
10469 S:      Supported
10470 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
10471 F:      Documentation/devicetree/bindings/media/renesas,vin.txt
10472 F:      drivers/media/platform/rcar-vin/
10473
10474 MEDIA DRIVERS FOR RENESAS - VSP1
10475 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10476 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10477 L:      linux-media@vger.kernel.org
10478 L:      linux-renesas-soc@vger.kernel.org
10479 T:      git git://linuxtv.org/media_tree.git
10480 S:      Supported
10481 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
10482 F:      drivers/media/platform/vsp1/
10483
10484 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
10485 L:      linux-media@vger.kernel.org
10486 W:      https://linuxtv.org
10487 T:      git git://linuxtv.org/media_tree.git
10488 S:      Orphan
10489 F:      drivers/media/dvb-frontends/stv0910*
10490
10491 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10492 L:      linux-media@vger.kernel.org
10493 W:      https://linuxtv.org
10494 T:      git git://linuxtv.org/media_tree.git
10495 S:      Orphan
10496 F:      drivers/media/dvb-frontends/stv6111*
10497
10498 MEDIA DRIVERS FOR STM32 - DCMI
10499 M:      Hugues Fruchet <hugues.fruchet@st.com>
10500 L:      linux-media@vger.kernel.org
10501 T:      git git://linuxtv.org/media_tree.git
10502 S:      Supported
10503 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
10504 F:      drivers/media/platform/stm32/stm32-dcmi.c
10505
10506 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10507 M:      Dmitry Osipenko <digetx@gmail.com>
10508 L:      linux-media@vger.kernel.org
10509 L:      linux-tegra@vger.kernel.org
10510 T:      git git://linuxtv.org/media_tree.git
10511 S:      Maintained
10512 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10513 F:      drivers/staging/media/tegra-vde/
10514
10515 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
10516 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
10517 L:      linux-media@vger.kernel.org
10518 W:      https://linuxtv.org
10519 Q:      http://patchwork.kernel.org/project/linux-media/list/
10520 T:      git git://linuxtv.org/media_tree.git
10521 S:      Maintained
10522 F:      Documentation/devicetree/bindings/media/
10523 F:      Documentation/media/
10524 F:      drivers/media/
10525 F:      drivers/staging/media/
10526 F:      include/linux/platform_data/media/
10527 F:      include/media/
10528 F:      include/uapi/linux/dvb/
10529 F:      include/uapi/linux/videodev2.h
10530 F:      include/uapi/linux/media.h
10531 F:      include/uapi/linux/v4l2-*
10532 F:      include/uapi/linux/meye.h
10533 F:      include/uapi/linux/ivtv*
10534 F:      include/uapi/linux/uvcvideo.h
10535
10536 MEDIATEK BLUETOOTH DRIVER
10537 M:      Sean Wang <sean.wang@mediatek.com>
10538 L:      linux-bluetooth@vger.kernel.org
10539 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10540 S:      Maintained
10541 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
10542 F:      drivers/bluetooth/btmtkuart.c
10543
10544 MEDIATEK CIR DRIVER
10545 M:      Sean Wang <sean.wang@mediatek.com>
10546 S:      Maintained
10547 F:      drivers/media/rc/mtk-cir.c
10548
10549 MEDIATEK DMA DRIVER
10550 M:      Sean Wang <sean.wang@mediatek.com>
10551 L:      dmaengine@vger.kernel.org
10552 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10553 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10554 S:      Maintained
10555 F:      Documentation/devicetree/bindings/dma/mtk-*
10556 F:      drivers/dma/mediatek/
10557
10558 MEDIATEK PMIC LED DRIVER
10559 M:      Sean Wang <sean.wang@mediatek.com>
10560 S:      Maintained
10561 F:      drivers/leds/leds-mt6323.c
10562 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
10563
10564 MEDIATEK ETHERNET DRIVER
10565 M:      Felix Fietkau <nbd@openwrt.org>
10566 M:      John Crispin <john@phrozen.org>
10567 M:      Sean Wang <sean.wang@mediatek.com>
10568 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
10569 L:      netdev@vger.kernel.org
10570 S:      Maintained
10571 F:      drivers/net/ethernet/mediatek/
10572
10573 MEDIATEK SWITCH DRIVER
10574 M:      Sean Wang <sean.wang@mediatek.com>
10575 L:      netdev@vger.kernel.org
10576 S:      Maintained
10577 F:      drivers/net/dsa/mt7530.*
10578 F:      net/dsa/tag_mtk.c
10579
10580 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
10581 M:      Sean Wang <sean.wang@mediatek.com>
10582 L:      linux-pm@vger.kernel.org
10583 S:      Maintained
10584 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
10585 F:      drivers/power/reset/mt6323-poweroff.c
10586
10587 MEDIATEK JPEG DRIVER
10588 M:      Rick Chang <rick.chang@mediatek.com>
10589 M:      Bin Liu <bin.liu@mediatek.com>
10590 S:      Supported
10591 F:      drivers/media/platform/mtk-jpeg/
10592 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
10593
10594 MEDIATEK MDP DRIVER
10595 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
10596 M:      Houlong Wei <houlong.wei@mediatek.com>
10597 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10598 S:      Supported
10599 F:      drivers/media/platform/mtk-mdp/
10600 F:      drivers/media/platform/mtk-vpu/
10601 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
10602
10603 MEDIATEK MEDIA DRIVER
10604 M:      Tiffany Lin <tiffany.lin@mediatek.com>
10605 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10606 S:      Supported
10607 F:      drivers/media/platform/mtk-vcodec/
10608 F:      drivers/media/platform/mtk-vpu/
10609 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
10610 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
10611
10612 MEDIATEK MMC/SD/SDIO DRIVER
10613 M:      Chaotian Jing <chaotian.jing@mediatek.com>
10614 S:      Maintained
10615 F:      drivers/mmc/host/mtk-sd.c
10616 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
10617
10618 MEDIATEK MT76 WIRELESS LAN DRIVER
10619 M:      Felix Fietkau <nbd@nbd.name>
10620 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
10621 R:      Ryder Lee <ryder.lee@mediatek.com>
10622 R:      Roy Luo <royluo@google.com>
10623 L:      linux-wireless@vger.kernel.org
10624 S:      Maintained
10625 F:      drivers/net/wireless/mediatek/mt76/
10626
10627 MEDIATEK MT7601U WIRELESS LAN DRIVER
10628 M:      Jakub Kicinski <kubakici@wp.pl>
10629 L:      linux-wireless@vger.kernel.org
10630 S:      Maintained
10631 F:      drivers/net/wireless/mediatek/mt7601u/
10632
10633 MEDIATEK MT7621/28/88 I2C DRIVER
10634 M:      Stefan Roese <sr@denx.de>
10635 L:      linux-i2c@vger.kernel.org
10636 S:      Maintained
10637 F:      drivers/i2c/busses/i2c-mt7621.c
10638 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
10639
10640 MEDIATEK NAND CONTROLLER DRIVER
10641 M:      Xiaolei Li <xiaolei.li@mediatek.com>
10642 L:      linux-mtd@lists.infradead.org
10643 S:      Maintained
10644 F:      drivers/mtd/nand/raw/mtk_*
10645 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
10646
10647 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
10648 M:      Sean Wang <sean.wang@mediatek.com>
10649 S:      Maintained
10650 F:      drivers/char/hw_random/mtk-rng.c
10651
10652 MEDIATEK USB3 DRD IP DRIVER
10653 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
10654 L:      linux-usb@vger.kernel.org (moderated for non-subscribers)
10655 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10656 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10657 S:      Maintained
10658 F:      drivers/usb/mtu3/
10659
10660 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
10661 M:      Peter Senna Tschudin <peter.senna@gmail.com>
10662 M:      Martin Donnelly <martin.donnelly@ge.com>
10663 M:      Martyn Welch <martyn.welch@collabora.co.uk>
10664 S:      Maintained
10665 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
10666 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
10667
10668 MEGARAID SCSI/SAS DRIVERS
10669 M:      Kashyap Desai <kashyap.desai@broadcom.com>
10670 M:      Sumit Saxena <sumit.saxena@broadcom.com>
10671 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
10672 L:      megaraidlinux.pdl@broadcom.com
10673 L:      linux-scsi@vger.kernel.org
10674 W:      http://www.avagotech.com/support/
10675 S:      Maintained
10676 F:      Documentation/scsi/megaraid.txt
10677 F:      drivers/scsi/megaraid.*
10678 F:      drivers/scsi/megaraid/
10679
10680 MELEXIS MLX90614 DRIVER
10681 M:      Crt Mori <cmo@melexis.com>
10682 L:      linux-iio@vger.kernel.org
10683 W:      http://www.melexis.com
10684 S:      Supported
10685 F:      drivers/iio/temperature/mlx90614.c
10686
10687 MELEXIS MLX90632 DRIVER
10688 M:      Crt Mori <cmo@melexis.com>
10689 L:      linux-iio@vger.kernel.org
10690 W:      http://www.melexis.com
10691 S:      Supported
10692 F:      drivers/iio/temperature/mlx90632.c
10693
10694 MELFAS MIP4 TOUCHSCREEN DRIVER
10695 M:      Sangwon Jee <jeesw@melfas.com>
10696 W:      http://www.melfas.com
10697 S:      Supported
10698 F:      drivers/input/touchscreen/melfas_mip4.c
10699 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
10700
10701 MELLANOX ETHERNET DRIVER (mlx4_en)
10702 M:      Tariq Toukan <tariqt@mellanox.com>
10703 L:      netdev@vger.kernel.org
10704 S:      Supported
10705 W:      http://www.mellanox.com
10706 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10707 F:      drivers/net/ethernet/mellanox/mlx4/en_*
10708
10709 MELLANOX ETHERNET DRIVER (mlx5e)
10710 M:      Saeed Mahameed <saeedm@mellanox.com>
10711 L:      netdev@vger.kernel.org
10712 S:      Supported
10713 W:      http://www.mellanox.com
10714 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10715 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
10716
10717 MELLANOX ETHERNET INNOVA DRIVERS
10718 R:      Boris Pismenny <borisp@mellanox.com>
10719 L:      netdev@vger.kernel.org
10720 S:      Supported
10721 W:      http://www.mellanox.com
10722 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10723 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
10724 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
10725 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
10726 F:      include/linux/mlx5/mlx5_ifc_fpga.h
10727
10728 MELLANOX ETHERNET SWITCH DRIVERS
10729 M:      Jiri Pirko <jiri@mellanox.com>
10730 M:      Ido Schimmel <idosch@mellanox.com>
10731 L:      netdev@vger.kernel.org
10732 S:      Supported
10733 W:      http://www.mellanox.com
10734 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10735 F:      drivers/net/ethernet/mellanox/mlxsw/
10736 F:      tools/testing/selftests/drivers/net/mlxsw/
10737
10738 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
10739 M:      mlxsw@mellanox.com
10740 L:      netdev@vger.kernel.org
10741 S:      Supported
10742 W:      http://www.mellanox.com
10743 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10744 F:      drivers/net/ethernet/mellanox/mlxfw/
10745
10746 MELLANOX HARDWARE PLATFORM SUPPORT
10747 M:      Andy Shevchenko <andy@infradead.org>
10748 M:      Darren Hart <dvhart@infradead.org>
10749 M:      Vadim Pasternak <vadimp@mellanox.com>
10750 L:      platform-driver-x86@vger.kernel.org
10751 S:      Supported
10752 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
10753 F:      drivers/platform/mellanox/
10754 F:      include/linux/platform_data/mlxreg.h
10755
10756 MELLANOX MLX4 core VPI driver
10757 M:      Tariq Toukan <tariqt@mellanox.com>
10758 L:      netdev@vger.kernel.org
10759 L:      linux-rdma@vger.kernel.org
10760 W:      http://www.mellanox.com
10761 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10762 S:      Supported
10763 F:      drivers/net/ethernet/mellanox/mlx4/
10764 F:      include/linux/mlx4/
10765
10766 MELLANOX MLX4 IB driver
10767 M:      Yishai Hadas <yishaih@mellanox.com>
10768 L:      linux-rdma@vger.kernel.org
10769 W:      http://www.mellanox.com
10770 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10771 S:      Supported
10772 F:      drivers/infiniband/hw/mlx4/
10773 F:      include/linux/mlx4/
10774 F:      include/uapi/rdma/mlx4-abi.h
10775
10776 MELLANOX MLX5 core VPI driver
10777 M:      Saeed Mahameed <saeedm@mellanox.com>
10778 M:      Leon Romanovsky <leonro@mellanox.com>
10779 L:      netdev@vger.kernel.org
10780 L:      linux-rdma@vger.kernel.org
10781 W:      http://www.mellanox.com
10782 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10783 S:      Supported
10784 F:      drivers/net/ethernet/mellanox/mlx5/core/
10785 F:      include/linux/mlx5/
10786 F:      Documentation/networking/device_drivers/mellanox/
10787
10788 MELLANOX MLX5 IB driver
10789 M:      Leon Romanovsky <leonro@mellanox.com>
10790 L:      linux-rdma@vger.kernel.org
10791 W:      http://www.mellanox.com
10792 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10793 S:      Supported
10794 F:      drivers/infiniband/hw/mlx5/
10795 F:      include/linux/mlx5/
10796 F:      include/uapi/rdma/mlx5-abi.h
10797
10798 MELLANOX MLXCPLD I2C AND MUX DRIVER
10799 M:      Vadim Pasternak <vadimp@mellanox.com>
10800 M:      Michael Shych <michaelsh@mellanox.com>
10801 L:      linux-i2c@vger.kernel.org
10802 S:      Supported
10803 F:      drivers/i2c/busses/i2c-mlxcpld.c
10804 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
10805 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
10806
10807 MELLANOX MLXCPLD LED DRIVER
10808 M:      Vadim Pasternak <vadimp@mellanox.com>
10809 L:      linux-leds@vger.kernel.org
10810 S:      Supported
10811 F:      drivers/leds/leds-mlxcpld.c
10812 F:      drivers/leds/leds-mlxreg.c
10813 F:      Documentation/leds/leds-mlxcpld.rst
10814
10815 MELLANOX PLATFORM DRIVER
10816 M:      Vadim Pasternak <vadimp@mellanox.com>
10817 L:      platform-driver-x86@vger.kernel.org
10818 S:      Supported
10819 F:      drivers/platform/x86/mlx-platform.c
10820
10821 MEMBARRIER SUPPORT
10822 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10823 M:      "Paul E. McKenney" <paulmck@kernel.org>
10824 L:      linux-kernel@vger.kernel.org
10825 S:      Supported
10826 F:      kernel/sched/membarrier.c
10827 F:      include/uapi/linux/membarrier.h
10828 F:      arch/powerpc/include/asm/membarrier.h
10829
10830 MEMBLOCK
10831 M:      Mike Rapoport <rppt@linux.ibm.com>
10832 L:      linux-mm@kvack.org
10833 S:      Maintained
10834 F:      include/linux/memblock.h
10835 F:      mm/memblock.c
10836 F:      Documentation/core-api/boot-time-mm.rst
10837
10838 MEMORY MANAGEMENT
10839 M:      Andrew Morton <akpm@linux-foundation.org>
10840 L:      linux-mm@kvack.org
10841 W:      http://www.linux-mm.org
10842 T:      quilt https://ozlabs.org/~akpm/mmotm/
10843 T:      quilt https://ozlabs.org/~akpm/mmots/
10844 T:      git git://github.com/hnaz/linux-mm.git
10845 S:      Maintained
10846 F:      include/linux/mm.h
10847 F:      include/linux/gfp.h
10848 F:      include/linux/mmzone.h
10849 F:      include/linux/memory_hotplug.h
10850 F:      include/linux/vmalloc.h
10851 F:      mm/
10852
10853 MEMORY TECHNOLOGY DEVICES (MTD)
10854 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10855 M:      Richard Weinberger <richard@nod.at>
10856 M:      Vignesh Raghavendra <vigneshr@ti.com>
10857 L:      linux-mtd@lists.infradead.org
10858 W:      http://www.linux-mtd.infradead.org/
10859 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
10860 C:      irc://irc.oftc.net/mtd
10861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
10862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
10863 S:      Maintained
10864 F:      Documentation/devicetree/bindings/mtd/
10865 F:      drivers/mtd/
10866 F:      include/linux/mtd/
10867 F:      include/uapi/mtd/
10868
10869 MEN A21 WATCHDOG DRIVER
10870 M:      Johannes Thumshirn <morbidrsa@gmail.com>
10871 L:      linux-watchdog@vger.kernel.org
10872 S:      Maintained
10873 F:      drivers/watchdog/mena21_wdt.c
10874
10875 MEN CHAMELEON BUS (mcb)
10876 M:      Johannes Thumshirn <morbidrsa@gmail.com>
10877 S:      Maintained
10878 F:      drivers/mcb/
10879 F:      include/linux/mcb.h
10880 F:      Documentation/driver-api/men-chameleon-bus.rst
10881
10882 MEN F21BMC (Board Management Controller)
10883 M:      Andreas Werner <andreas.werner@men.de>
10884 S:      Supported
10885 F:      drivers/mfd/menf21bmc.c
10886 F:      drivers/watchdog/menf21bmc_wdt.c
10887 F:      drivers/leds/leds-menf21bmc.c
10888 F:      drivers/hwmon/menf21bmc_hwmon.c
10889 F:      Documentation/hwmon/menf21bmc.rst
10890
10891 MEN Z069 WATCHDOG DRIVER
10892 M:      Johannes Thumshirn <jth@kernel.org>
10893 L:      linux-watchdog@vger.kernel.org
10894 S:      Maintained
10895 F:      drivers/watchdog/menz69_wdt.c
10896
10897 MESON AO CEC DRIVER FOR AMLOGIC SOCS
10898 M:      Neil Armstrong <narmstrong@baylibre.com>
10899 L:      linux-media@vger.kernel.org
10900 L:      linux-amlogic@lists.infradead.org
10901 W:      http://linux-meson.com/
10902 S:      Supported
10903 F:      drivers/media/platform/meson/ao-cec.c
10904 F:      drivers/media/platform/meson/ao-cec-g12a.c
10905 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
10906 T:      git git://linuxtv.org/media_tree.git
10907
10908 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
10909 M:      Liang Yang <liang.yang@amlogic.com>
10910 L:      linux-mtd@lists.infradead.org
10911 S:      Maintained
10912 F:      drivers/mtd/nand/raw/meson_*
10913 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
10914
10915 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
10916 M:      Maxime Jourdan <mjourdan@baylibre.com>
10917 L:      linux-media@vger.kernel.org
10918 L:      linux-amlogic@lists.infradead.org
10919 S:      Supported
10920 F:      drivers/staging/media/meson/vdec/
10921 T:      git git://linuxtv.org/media_tree.git
10922
10923 METHODE UDPU SUPPORT
10924 M:      Vladimir Vid <vladimir.vid@sartura.hr>
10925 S:      Maintained
10926 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
10927
10928 MICROBLAZE ARCHITECTURE
10929 M:      Michal Simek <monstr@monstr.eu>
10930 W:      http://www.monstr.eu/fdt/
10931 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
10932 S:      Supported
10933 F:      arch/microblaze/
10934
10935 MICROCHIP AT91 SERIAL DRIVER
10936 M:      Richard Genoud <richard.genoud@gmail.com>
10937 S:      Maintained
10938 F:      drivers/tty/serial/atmel_serial.c
10939 F:      drivers/tty/serial/atmel_serial.h
10940 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
10941
10942 MICROCHIP AUDIO ASOC DRIVERS
10943 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
10944 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10945 S:      Supported
10946 F:      sound/soc/atmel
10947
10948 MICROCHIP DMA DRIVER
10949 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10950 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10951 L:      dmaengine@vger.kernel.org
10952 S:      Supported
10953 F:      drivers/dma/at_hdmac.c
10954 F:      drivers/dma/at_hdmac_regs.h
10955 F:      include/linux/platform_data/dma-atmel.h
10956 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
10957 F:      include/dt-bindings/dma/at91.h
10958
10959 MICROCHIP ECC DRIVER
10960 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
10961 L:      linux-crypto@vger.kernel.org
10962 S:      Maintained
10963 F:      drivers/crypto/atmel-ecc.*
10964
10965 MICROCHIP I2C DRIVER
10966 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10967 L:      linux-i2c@vger.kernel.org
10968 S:      Supported
10969 F:      drivers/i2c/busses/i2c-at91.h
10970 F:      drivers/i2c/busses/i2c-at91-*.c
10971
10972 MICROCHIP ISC DRIVER
10973 M:      Eugen Hristev <eugen.hristev@microchip.com>
10974 L:      linux-media@vger.kernel.org
10975 S:      Supported
10976 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
10977 F:      drivers/media/platform/atmel/atmel-isc.h
10978 F:      drivers/media/platform/atmel/atmel-isc-base.c
10979 F:      drivers/media/platform/atmel/atmel-isc-regs.h
10980 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
10981 F:      include/linux/atmel-isc-media.h
10982
10983 MICROCHIP ISI DRIVER
10984 M:      Eugen Hristev <eugen.hristev@microchip.com>
10985 L:      linux-media@vger.kernel.org
10986 S:      Supported
10987 F:      drivers/media/platform/atmel/atmel-isi.c
10988 F:      drivers/media/platform/atmel/atmel-isi.h
10989
10990 MICROCHIP AT91 USART MFD DRIVER
10991 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
10992 L:      linux-kernel@vger.kernel.org
10993 S:      Supported
10994 F:      drivers/mfd/at91-usart.c
10995 F:      include/dt-bindings/mfd/at91-usart.h
10996 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
10997
10998 MICROCHIP AT91 USART SPI DRIVER
10999 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11000 L:      linux-spi@vger.kernel.org
11001 S:      Supported
11002 F:      drivers/spi/spi-at91-usart.c
11003 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11004
11005 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11006 M:      Woojung Huh <woojung.huh@microchip.com>
11007 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11008 L:      netdev@vger.kernel.org
11009 S:      Maintained
11010 F:      net/dsa/tag_ksz.c
11011 F:      drivers/net/dsa/microchip/*
11012 F:      include/linux/platform_data/microchip-ksz.h
11013 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
11014
11015 MICROCHIP LAN743X ETHERNET DRIVER
11016 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
11017 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11018 L:      netdev@vger.kernel.org
11019 S:      Maintained
11020 F:      drivers/net/ethernet/microchip/lan743x_*
11021
11022 MICROCHIP LCDFB DRIVER
11023 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11024 L:      linux-fbdev@vger.kernel.org
11025 S:      Maintained
11026 F:      drivers/video/fbdev/atmel_lcdfb.c
11027 F:      include/video/atmel_lcdc.h
11028
11029 MICROCHIP MMC/SD/SDIO MCI DRIVER
11030 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11031 S:      Maintained
11032 F:      drivers/mmc/host/atmel-mci.c
11033
11034 MICROCHIP MCP16502 PMIC DRIVER
11035 M:      Andrei Stefanescu <andrei.stefanescu@microchip.com>
11036 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11037 S:      Maintained
11038 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11039 F:      drivers/regulator/mcp16502.c
11040
11041 MICROCHIP MCP3911 ADC DRIVER
11042 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11043 M:      Kent Gustavsson <kent@minoris.se>
11044 L:      linux-iio@vger.kernel.org
11045 S:      Supported
11046 F:      drivers/iio/adc/mcp3911.c
11047 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11048
11049 MICROCHIP NAND DRIVER
11050 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11051 L:      linux-mtd@lists.infradead.org
11052 S:      Supported
11053 F:      drivers/mtd/nand/raw/atmel/*
11054 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11055
11056 MICROCHIP PWM DRIVER
11057 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11058 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11059 L:      linux-pwm@vger.kernel.org
11060 S:      Supported
11061 F:      drivers/pwm/pwm-atmel.c
11062 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11063
11064 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11065 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11066 M:      Eugen Hristev <eugen.hristev@microchip.com>
11067 L:      linux-iio@vger.kernel.org
11068 S:      Supported
11069 F:      drivers/iio/adc/at91-sama5d2_adc.c
11070 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11071 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11072
11073 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11074 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11075 S:      Supported
11076 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11077
11078 MICROCHIP SPI DRIVER
11079 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11080 S:      Supported
11081 F:      drivers/spi/spi-atmel.*
11082
11083 MICROCHIP SSC DRIVER
11084 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11085 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11086 S:      Supported
11087 F:      drivers/misc/atmel-ssc.c
11088 F:      include/linux/atmel-ssc.h
11089
11090 MICROCHIP USBA UDC DRIVER
11091 M:      Cristian Birsan <cristian.birsan@microchip.com>
11092 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11093 S:      Supported
11094 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
11095
11096 MICROCHIP USB251XB DRIVER
11097 M:      Richard Leitner <richard.leitner@skidata.com>
11098 L:      linux-usb@vger.kernel.org
11099 S:      Maintained
11100 F:      drivers/usb/misc/usb251xb.c
11101 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
11102
11103 MICROCHIP XDMA DRIVER
11104 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11105 L:      linux-arm-kernel@lists.infradead.org
11106 L:      dmaengine@vger.kernel.org
11107 S:      Supported
11108 F:      drivers/dma/at_xdmac.c
11109
11110 MICROSEMI MIPS SOCS
11111 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
11112 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11113 L:      linux-mips@vger.kernel.org
11114 S:      Supported
11115 F:      arch/mips/generic/board-ocelot.c
11116 F:      arch/mips/configs/generic/board-ocelot.config
11117 F:      arch/mips/boot/dts/mscc/
11118 F:      Documentation/devicetree/bindings/mips/mscc.txt
11119
11120 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11121 M:      Don Brace <don.brace@microsemi.com>
11122 L:      esc.storagedev@microsemi.com
11123 L:      linux-scsi@vger.kernel.org
11124 S:      Supported
11125 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
11126 F:      drivers/scsi/smartpqi/Kconfig
11127 F:      drivers/scsi/smartpqi/Makefile
11128 F:      include/linux/cciss*.h
11129 F:      include/uapi/linux/cciss*.h
11130 F:      Documentation/scsi/smartpqi.txt
11131
11132 MICROSEMI ETHERNET SWITCH DRIVER
11133 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
11134 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11135 L:      netdev@vger.kernel.org
11136 S:      Supported
11137 F:      drivers/net/ethernet/mscc/
11138 F:      include/soc/mscc/ocelot*
11139
11140 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11141 M:      Chen Yu <yu.c.chen@intel.com>
11142 L:      platform-driver-x86@vger.kernel.org
11143 S:      Supported
11144 F:      drivers/platform/x86/surfacepro3_button.c
11145
11146 MICROTEK X6 SCANNER
11147 M:      Oliver Neukum <oliver@neukum.org>
11148 S:      Maintained
11149 F:      drivers/usb/image/microtek.*
11150
11151 MIPS
11152 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11153 L:      linux-mips@vger.kernel.org
11154 W:      http://www.linux-mips.org/
11155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11156 Q:      https://patchwork.kernel.org/project/linux-mips/list/
11157 S:      Maintained
11158 F:      Documentation/devicetree/bindings/mips/
11159 F:      Documentation/mips/
11160 F:      arch/mips/
11161 F:      drivers/platform/mips/
11162
11163 MIPS BOSTON DEVELOPMENT BOARD
11164 M:      Paul Burton <paulburton@kernel.org>
11165 L:      linux-mips@vger.kernel.org
11166 S:      Maintained
11167 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11168 F:      arch/mips/boot/dts/img/boston.dts
11169 F:      arch/mips/configs/generic/board-boston.config
11170 F:      drivers/clk/imgtec/clk-boston.c
11171 F:      include/dt-bindings/clock/boston-clock.h
11172
11173 MIPS GENERIC PLATFORM
11174 M:      Paul Burton <paulburton@kernel.org>
11175 L:      linux-mips@vger.kernel.org
11176 S:      Supported
11177 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
11178 F:      arch/mips/generic/
11179 F:      arch/mips/tools/generic-board-config.sh
11180
11181 MIPS/LOONGSON1 ARCHITECTURE
11182 M:      Keguang Zhang <keguang.zhang@gmail.com>
11183 L:      linux-mips@vger.kernel.org
11184 S:      Maintained
11185 F:      arch/mips/loongson32/
11186 F:      arch/mips/include/asm/mach-loongson32/
11187 F:      drivers/*/*loongson1*
11188 F:      drivers/*/*/*loongson1*
11189
11190 MIPS/LOONGSON2EF ARCHITECTURE
11191 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11192 L:      linux-mips@vger.kernel.org
11193 S:      Maintained
11194 F:      arch/mips/loongson2ef/
11195 F:      arch/mips/include/asm/mach-loongson2ef/
11196 F:      drivers/*/*loongson2*
11197 F:      drivers/*/*/*loongson2*
11198
11199 MIPS/LOONGSON64 ARCHITECTURE
11200 M:      Huacai Chen <chenhc@lemote.com>
11201 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11202 L:      linux-mips@vger.kernel.org
11203 S:      Maintained
11204 F:      arch/mips/loongson64/
11205 F:      arch/mips/include/asm/mach-loongson64/
11206 F:      drivers/platform/mips/cpu_hwmon.c
11207 F:      drivers/irqchip/irq-loongson*
11208 F:      drivers/*/*loongson3*
11209 F:      drivers/*/*/*loongson3*
11210
11211 MIPS RINT INSTRUCTION EMULATION
11212 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
11213 L:      linux-mips@vger.kernel.org
11214 S:      Supported
11215 F:      arch/mips/math-emu/sp_rint.c
11216 F:      arch/mips/math-emu/dp_rint.c
11217
11218 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11219 M:      Hans Verkuil <hverkuil@xs4all.nl>
11220 L:      linux-media@vger.kernel.org
11221 T:      git git://linuxtv.org/media_tree.git
11222 W:      https://linuxtv.org
11223 S:      Odd Fixes
11224 F:      drivers/media/radio/radio-miropcm20*
11225
11226 MMP SUPPORT
11227 R:      Lubomir Rintel <lkundrak@v3.sk>
11228 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11230 S:      Odd Fixes
11231 F:      arch/arm/boot/dts/mmp*
11232 F:      arch/arm/mach-mmp/
11233 F:      linux/soc/mmp/
11234
11235 MMP USB PHY DRIVERS
11236 R:      Lubomir Rintel <lkundrak@v3.sk>
11237 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11238 S:      Maintained
11239 F:      drivers/phy/marvell/phy-mmp3-usb.c
11240 F:      drivers/phy/marvell/phy-pxa-usb.c
11241
11242 MMU GATHER AND TLB INVALIDATION
11243 M:      Will Deacon <will@kernel.org>
11244 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
11245 M:      Andrew Morton <akpm@linux-foundation.org>
11246 M:      Nick Piggin <npiggin@gmail.com>
11247 M:      Peter Zijlstra <peterz@infradead.org>
11248 L:      linux-arch@vger.kernel.org
11249 L:      linux-mm@kvack.org
11250 S:      Maintained
11251 F:      arch/*/include/asm/tlb.h
11252 F:      include/asm-generic/tlb.h
11253 F:      mm/mmu_gather.c
11254
11255 MN88472 MEDIA DRIVER
11256 M:      Antti Palosaari <crope@iki.fi>
11257 L:      linux-media@vger.kernel.org
11258 W:      https://linuxtv.org
11259 W:      http://palosaari.fi/linux/
11260 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11261 S:      Maintained
11262 F:      drivers/media/dvb-frontends/mn88472*
11263
11264 MN88473 MEDIA DRIVER
11265 M:      Antti Palosaari <crope@iki.fi>
11266 L:      linux-media@vger.kernel.org
11267 W:      https://linuxtv.org
11268 W:      http://palosaari.fi/linux/
11269 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11270 S:      Maintained
11271 F:      drivers/media/dvb-frontends/mn88473*
11272
11273 MODULE SUPPORT
11274 M:      Jessica Yu <jeyu@kernel.org>
11275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11276 S:      Maintained
11277 F:      include/linux/module.h
11278 F:      kernel/module.c
11279
11280 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11281 W:      http://popies.net/meye/
11282 S:      Orphan
11283 F:      Documentation/media/v4l-drivers/meye*
11284 F:      drivers/media/pci/meye/
11285 F:      include/uapi/linux/meye.h
11286
11287 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11288 M:      Jiri Slaby <jirislaby@gmail.com>
11289 S:      Maintained
11290 F:      Documentation/driver-api/serial/moxa-smartio.rst
11291 F:      drivers/tty/mxser.*
11292
11293 MONOLITHIC POWER SYSTEM PMIC DRIVER
11294 M:      Saravanan Sekar <sravanhome@gmail.com>
11295 S:      Maintained
11296 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11297 F:      drivers/regulator/mp5416.c
11298 F:      drivers/regulator/mpq7920.c
11299 F:      drivers/regulator/mpq7920.h
11300
11301 MR800 AVERMEDIA USB FM RADIO DRIVER
11302 M:      Alexey Klimov <klimov.linux@gmail.com>
11303 L:      linux-media@vger.kernel.org
11304 T:      git git://linuxtv.org/media_tree.git
11305 S:      Maintained
11306 F:      drivers/media/radio/radio-mr800.c
11307
11308 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11309 M:      Alan Ott <alan@signal11.us>
11310 L:      linux-wpan@vger.kernel.org
11311 S:      Maintained
11312 F:      drivers/net/ieee802154/mrf24j40.c
11313 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11314
11315 MSI LAPTOP SUPPORT
11316 M:      "Lee, Chun-Yi" <jlee@suse.com>
11317 L:      platform-driver-x86@vger.kernel.org
11318 S:      Maintained
11319 F:      drivers/platform/x86/msi-laptop.c
11320
11321 MSI WMI SUPPORT
11322 L:      platform-driver-x86@vger.kernel.org
11323 S:      Orphan
11324 F:      drivers/platform/x86/msi-wmi.c
11325
11326 MSI001 MEDIA DRIVER
11327 M:      Antti Palosaari <crope@iki.fi>
11328 L:      linux-media@vger.kernel.org
11329 W:      https://linuxtv.org
11330 W:      http://palosaari.fi/linux/
11331 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11332 T:      git git://linuxtv.org/anttip/media_tree.git
11333 S:      Maintained
11334 F:      drivers/media/tuners/msi001*
11335
11336 MSI2500 MEDIA DRIVER
11337 M:      Antti Palosaari <crope@iki.fi>
11338 L:      linux-media@vger.kernel.org
11339 W:      https://linuxtv.org
11340 W:      http://palosaari.fi/linux/
11341 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11342 T:      git git://linuxtv.org/anttip/media_tree.git
11343 S:      Maintained
11344 F:      drivers/media/usb/msi2500/
11345
11346 MSYSTEMS DISKONCHIP G3 MTD DRIVER
11347 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11348 L:      linux-mtd@lists.infradead.org
11349 S:      Maintained
11350 F:      drivers/mtd/devices/docg3*
11351
11352 MT9M032 APTINA SENSOR DRIVER
11353 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11354 L:      linux-media@vger.kernel.org
11355 T:      git git://linuxtv.org/media_tree.git
11356 S:      Maintained
11357 F:      drivers/media/i2c/mt9m032.c
11358 F:      include/media/i2c/mt9m032.h
11359
11360 MT9P031 APTINA CAMERA SENSOR
11361 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11362 L:      linux-media@vger.kernel.org
11363 T:      git git://linuxtv.org/media_tree.git
11364 S:      Maintained
11365 F:      drivers/media/i2c/mt9p031.c
11366 F:      include/media/i2c/mt9p031.h
11367
11368 MT9T001 APTINA CAMERA SENSOR
11369 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11370 L:      linux-media@vger.kernel.org
11371 T:      git git://linuxtv.org/media_tree.git
11372 S:      Maintained
11373 F:      drivers/media/i2c/mt9t001.c
11374 F:      include/media/i2c/mt9t001.h
11375
11376 MT9T112 APTINA CAMERA SENSOR
11377 M:      Jacopo Mondi <jacopo@jmondi.org>
11378 L:      linux-media@vger.kernel.org
11379 T:      git git://linuxtv.org/media_tree.git
11380 S:      Odd Fixes
11381 F:      drivers/media/i2c/mt9t112.c
11382 F:      include/media/i2c/mt9t112.h
11383
11384 MT9V032 APTINA CAMERA SENSOR
11385 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11386 L:      linux-media@vger.kernel.org
11387 T:      git git://linuxtv.org/media_tree.git
11388 S:      Maintained
11389 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11390 F:      drivers/media/i2c/mt9v032.c
11391 F:      include/media/i2c/mt9v032.h
11392
11393 MT9V111 APTINA CAMERA SENSOR
11394 M:      Jacopo Mondi <jacopo@jmondi.org>
11395 L:      linux-media@vger.kernel.org
11396 T:      git git://linuxtv.org/media_tree.git
11397 S:      Maintained
11398 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
11399 F:      drivers/media/i2c/mt9v111.c
11400
11401 MULTIFUNCTION DEVICES (MFD)
11402 M:      Lee Jones <lee.jones@linaro.org>
11403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11404 S:      Supported
11405 F:      Documentation/devicetree/bindings/mfd/
11406 F:      drivers/mfd/
11407 F:      include/linux/mfd/
11408 F:      include/dt-bindings/mfd/
11409
11410 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11411 S:      Orphan
11412 F:      drivers/mmc/host/mmc_spi.c
11413 F:      include/linux/spi/mmc_spi.h
11414
11415 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11416 M:      Ulf Hansson <ulf.hansson@linaro.org>
11417 L:      linux-mmc@vger.kernel.org
11418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11419 S:      Maintained
11420 F:      Documentation/devicetree/bindings/mmc/
11421 F:      drivers/mmc/
11422 F:      include/linux/mmc/
11423 F:      include/uapi/linux/mmc/
11424
11425 MULTIPLEXER SUBSYSTEM
11426 M:      Peter Rosin <peda@axentia.se>
11427 S:      Maintained
11428 F:      Documentation/ABI/testing/sysfs-class-mux*
11429 F:      Documentation/devicetree/bindings/mux/
11430 F:      include/dt-bindings/mux/
11431 F:      include/linux/mux/
11432 F:      drivers/mux/
11433
11434 MULTITECH MULTIPORT CARD (ISICOM)
11435 S:      Orphan
11436 F:      drivers/tty/isicom.c
11437 F:      include/linux/isicom.h
11438
11439 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
11440 M:      Bin Liu <b-liu@ti.com>
11441 L:      linux-usb@vger.kernel.org
11442 S:      Maintained
11443 F:      drivers/usb/musb/
11444
11445 MXL301RF MEDIA DRIVER
11446 M:      Akihiro Tsukada <tskd08@gmail.com>
11447 L:      linux-media@vger.kernel.org
11448 S:      Odd Fixes
11449 F:      drivers/media/tuners/mxl301rf*
11450
11451 MXL5007T MEDIA DRIVER
11452 M:      Michael Krufky <mkrufky@linuxtv.org>
11453 L:      linux-media@vger.kernel.org
11454 W:      https://linuxtv.org
11455 W:      http://github.com/mkrufky
11456 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11457 T:      git git://linuxtv.org/mkrufky/tuners.git
11458 S:      Maintained
11459 F:      drivers/media/tuners/mxl5007t.*
11460
11461 MXSFB DRM DRIVER
11462 M:      Marek Vasut <marex@denx.de>
11463 M:      Stefan Agner <stefan@agner.ch>
11464 L:      dri-devel@lists.freedesktop.org
11465 S:      Supported
11466 F:      drivers/gpu/drm/mxsfb/
11467 F:      Documentation/devicetree/bindings/display/mxsfb.txt
11468 T:      git git://anongit.freedesktop.org/drm/drm-misc
11469
11470 MYLEX DAC960 PCI RAID Controller
11471 M:      Hannes Reinecke <hare@kernel.org>
11472 L:      linux-scsi@vger.kernel.org
11473 S:      Supported
11474 F:      drivers/scsi/myrb.*
11475 F:      drivers/scsi/myrs.*
11476
11477 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
11478 M:      Chris Lee <christopher.lee@cspi.com>
11479 L:      netdev@vger.kernel.org
11480 W:      https://www.cspi.com/ethernet-products/support/downloads/
11481 S:      Supported
11482 F:      drivers/net/ethernet/myricom/myri10ge/
11483
11484 NAND FLASH SUBSYSTEM
11485 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11486 R:      Richard Weinberger <richard@nod.at>
11487 L:      linux-mtd@lists.infradead.org
11488 W:      http://www.linux-mtd.infradead.org/
11489 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11490 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
11491 S:      Maintained
11492 F:      drivers/mtd/nand/
11493 F:      include/linux/mtd/*nand*.h
11494
11495 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
11496 M:      Daniel Mack <zonque@gmail.com>
11497 S:      Maintained
11498 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11499 W:      http://www.native-instruments.com
11500 F:      sound/usb/caiaq/
11501
11502 NATSEMI ETHERNET DRIVER (DP8381x)
11503 S:      Orphan
11504 F:      drivers/net/ethernet/natsemi/natsemi.c
11505
11506 NCR 5380 SCSI DRIVERS
11507 M:      Finn Thain <fthain@telegraphics.com.au>
11508 M:      Michael Schmitz <schmitzmic@gmail.com>
11509 L:      linux-scsi@vger.kernel.org
11510 S:      Maintained
11511 F:      Documentation/scsi/g_NCR5380.txt
11512 F:      drivers/scsi/NCR5380.*
11513 F:      drivers/scsi/arm/cumana_1.c
11514 F:      drivers/scsi/arm/oak.c
11515 F:      drivers/scsi/atari_scsi.*
11516 F:      drivers/scsi/dmx3191d.c
11517 F:      drivers/scsi/g_NCR5380.*
11518 F:      drivers/scsi/mac_scsi.*
11519 F:      drivers/scsi/sun3_scsi.*
11520 F:      drivers/scsi/sun3_scsi_vme.c
11521
11522 NCSI LIBRARY
11523 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
11524 S:      Maintained
11525 F:      net/ncsi/
11526
11527 NCT6775 HARDWARE MONITOR DRIVER
11528 M:      Guenter Roeck <linux@roeck-us.net>
11529 L:      linux-hwmon@vger.kernel.org
11530 S:      Maintained
11531 F:      Documentation/hwmon/nct6775.rst
11532 F:      drivers/hwmon/nct6775.c
11533
11534 NET_FAILOVER MODULE
11535 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
11536 L:      netdev@vger.kernel.org
11537 S:      Supported
11538 F:      drivers/net/net_failover.c
11539 F:      include/net/net_failover.h
11540 F:      Documentation/networking/net_failover.rst
11541
11542 NETEM NETWORK EMULATOR
11543 M:      Stephen Hemminger <stephen@networkplumber.org>
11544 L:      netdev@vger.kernel.org
11545 S:      Maintained
11546 F:      net/sched/sch_netem.c
11547
11548 NETERION 10GbE DRIVERS (s2io/vxge)
11549 M:      Jon Mason <jdmason@kudzu.us>
11550 L:      netdev@vger.kernel.org
11551 S:      Supported
11552 F:      Documentation/networking/device_drivers/neterion/s2io.txt
11553 F:      Documentation/networking/device_drivers/neterion/vxge.txt
11554 F:      drivers/net/ethernet/neterion/
11555
11556 NETFILTER
11557 M:      Pablo Neira Ayuso <pablo@netfilter.org>
11558 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
11559 M:      Florian Westphal <fw@strlen.de>
11560 L:      netfilter-devel@vger.kernel.org
11561 L:      coreteam@netfilter.org
11562 W:      http://www.netfilter.org/
11563 W:      http://www.iptables.org/
11564 W:      http://www.nftables.org/
11565 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
11566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
11567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
11568 S:      Maintained
11569 F:      include/linux/netfilter*
11570 F:      include/linux/netfilter/
11571 F:      include/net/netfilter/
11572 F:      include/uapi/linux/netfilter*
11573 F:      include/uapi/linux/netfilter/
11574 F:      net/*/netfilter.c
11575 F:      net/*/netfilter/
11576 F:      net/netfilter/
11577 F:      net/bridge/br_netfilter*.c
11578
11579 NETROM NETWORK LAYER
11580 M:      Ralf Baechle <ralf@linux-mips.org>
11581 L:      linux-hams@vger.kernel.org
11582 W:      http://www.linux-ax25.org/
11583 S:      Maintained
11584 F:      include/net/netrom.h
11585 F:      include/uapi/linux/netrom.h
11586 F:      net/netrom/
11587
11588 NETRONOME ETHERNET DRIVERS
11589 M:      Jakub Kicinski <kuba@kernel.org>
11590 L:      oss-drivers@netronome.com
11591 S:      Maintained
11592 F:      drivers/net/ethernet/netronome/
11593
11594 NETWORK BLOCK DEVICE (NBD)
11595 M:      Josef Bacik <josef@toxicpanda.com>
11596 S:      Maintained
11597 L:      linux-block@vger.kernel.org
11598 L:      nbd@other.debian.org
11599 F:      Documentation/admin-guide/blockdev/nbd.rst
11600 F:      drivers/block/nbd.c
11601 F:      include/trace/events/nbd.h
11602 F:      include/uapi/linux/nbd.h
11603
11604 NETWORK DROP MONITOR
11605 M:      Neil Horman <nhorman@tuxdriver.com>
11606 L:      netdev@vger.kernel.org
11607 S:      Maintained
11608 W:      https://fedorahosted.org/dropwatch/
11609 F:      net/core/drop_monitor.c
11610 F:      include/uapi/linux/net_dropmon.h
11611 F:      include/net/drop_monitor.h
11612
11613 NETWORKING DRIVERS
11614 M:      "David S. Miller" <davem@davemloft.net>
11615 L:      netdev@vger.kernel.org
11616 W:      http://www.linuxfoundation.org/en/Net
11617 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11620 S:      Odd Fixes
11621 F:      Documentation/devicetree/bindings/net/
11622 F:      drivers/net/
11623 F:      include/linux/if_*
11624 F:      include/linux/netdevice.h
11625 F:      include/linux/etherdevice.h
11626 F:      include/linux/fcdevice.h
11627 F:      include/linux/fddidevice.h
11628 F:      include/linux/hippidevice.h
11629 F:      include/linux/inetdevice.h
11630 F:      include/uapi/linux/if_*
11631 F:      include/uapi/linux/netdevice.h
11632
11633 NETWORKING DRIVERS (WIRELESS)
11634 M:      Kalle Valo <kvalo@codeaurora.org>
11635 L:      linux-wireless@vger.kernel.org
11636 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
11638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
11639 S:      Maintained
11640 F:      Documentation/devicetree/bindings/net/wireless/
11641 F:      drivers/net/wireless/
11642
11643 NETWORKING [DSA]
11644 M:      Andrew Lunn <andrew@lunn.ch>
11645 M:      Vivien Didelot <vivien.didelot@gmail.com>
11646 M:      Florian Fainelli <f.fainelli@gmail.com>
11647 S:      Maintained
11648 F:      Documentation/devicetree/bindings/net/dsa/
11649 F:      net/dsa/
11650 F:      include/net/dsa.h
11651 F:      include/linux/dsa/
11652 F:      include/linux/platform_data/dsa.h
11653 F:      drivers/net/dsa/
11654
11655 NETWORKING [GENERAL]
11656 M:      "David S. Miller" <davem@davemloft.net>
11657 M:      Jakub Kicinski <kuba@kernel.org>
11658 L:      netdev@vger.kernel.org
11659 W:      http://www.linuxfoundation.org/en/Net
11660 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11663 B:      mailto:netdev@vger.kernel.org
11664 S:      Maintained
11665 F:      net/
11666 F:      include/net/
11667 F:      include/linux/in.h
11668 F:      include/linux/net.h
11669 F:      include/linux/netdevice.h
11670 F:      include/uapi/linux/in.h
11671 F:      include/uapi/linux/net.h
11672 F:      include/uapi/linux/netdevice.h
11673 F:      include/uapi/linux/net_namespace.h
11674 F:      tools/testing/selftests/net/
11675 F:      lib/net_utils.c
11676 F:      lib/random32.c
11677 F:      Documentation/networking/
11678
11679 NETWORKING [IPSEC]
11680 M:      Steffen Klassert <steffen.klassert@secunet.com>
11681 M:      Herbert Xu <herbert@gondor.apana.org.au>
11682 M:      "David S. Miller" <davem@davemloft.net>
11683 L:      netdev@vger.kernel.org
11684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
11685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
11686 S:      Maintained
11687 F:      net/xfrm/
11688 F:      net/key/
11689 F:      net/ipv4/xfrm*
11690 F:      net/ipv4/esp4*
11691 F:      net/ipv4/ah4.c
11692 F:      net/ipv4/ipcomp.c
11693 F:      net/ipv4/ip_vti.c
11694 F:      net/ipv6/xfrm*
11695 F:      net/ipv6/esp6*
11696 F:      net/ipv6/ah6.c
11697 F:      net/ipv6/ipcomp6.c
11698 F:      net/ipv6/ip6_vti.c
11699 F:      include/uapi/linux/xfrm.h
11700 F:      include/net/xfrm.h
11701
11702 NETWORKING [IPv4/IPv6]
11703 M:      "David S. Miller" <davem@davemloft.net>
11704 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
11705 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
11706 L:      netdev@vger.kernel.org
11707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11708 S:      Maintained
11709 F:      net/ipv4/
11710 F:      net/ipv6/
11711 F:      include/net/ip*
11712 F:      arch/x86/net/*
11713
11714 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
11715 M:      Paul Moore <paul@paul-moore.com>
11716 W:      https://github.com/netlabel
11717 L:      netdev@vger.kernel.org
11718 L:      linux-security-module@vger.kernel.org
11719 S:      Maintained
11720 F:      Documentation/netlabel/
11721 F:      include/net/calipso.h
11722 F:      include/net/cipso_ipv4.h
11723 F:      include/net/netlabel.h
11724 F:      include/uapi/linux/netfilter/xt_SECMARK.h
11725 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
11726 F:      net/netlabel/
11727 F:      net/ipv4/cipso_ipv4.c
11728 F:      net/ipv6/calipso.c
11729 F:      net/netfilter/xt_CONNSECMARK.c
11730 F:      net/netfilter/xt_SECMARK.c
11731
11732 NETWORKING [MPTCP]
11733 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
11734 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
11735 L:      netdev@vger.kernel.org
11736 L:      mptcp@lists.01.org
11737 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
11738 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
11739 S:      Maintained
11740 F:      include/net/mptcp.h
11741 F:      net/mptcp/
11742 F:      tools/testing/selftests/net/mptcp/
11743
11744 NETWORKING [TCP]
11745 M:      Eric Dumazet <edumazet@google.com>
11746 L:      netdev@vger.kernel.org
11747 S:      Maintained
11748 F:      net/ipv4/tcp*.c
11749 F:      net/ipv4/syncookies.c
11750 F:      net/ipv6/tcp*.c
11751 F:      net/ipv6/syncookies.c
11752 F:      include/uapi/linux/tcp.h
11753 F:      include/net/tcp.h
11754 F:      include/linux/tcp.h
11755 F:      include/trace/events/tcp.h
11756
11757 NETWORKING [TLS]
11758 M:      Boris Pismenny <borisp@mellanox.com>
11759 M:      Aviad Yehezkel <aviadye@mellanox.com>
11760 M:      John Fastabend <john.fastabend@gmail.com>
11761 M:      Daniel Borkmann <daniel@iogearbox.net>
11762 M:      Jakub Kicinski <kuba@kernel.org>
11763 L:      netdev@vger.kernel.org
11764 S:      Maintained
11765 F:      net/tls/*
11766 F:      include/uapi/linux/tls.h
11767 F:      include/net/tls.h
11768
11769 NETWORKING [WIRELESS]
11770 L:      linux-wireless@vger.kernel.org
11771 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11772
11773 NETDEVSIM
11774 M:      Jakub Kicinski <kuba@kernel.org>
11775 S:      Maintained
11776 F:      drivers/net/netdevsim/*
11777
11778 NETXEN (1/10) GbE SUPPORT
11779 M:      Manish Chopra <manishc@marvell.com>
11780 M:      Rahul Verma <rahulv@marvell.com>
11781 M:      GR-Linux-NIC-Dev@marvell.com
11782 L:      netdev@vger.kernel.org
11783 S:      Supported
11784 F:      drivers/net/ethernet/qlogic/netxen/
11785
11786 NEXTHOP
11787 M:      David Ahern <dsahern@kernel.org>
11788 L:      netdev@vger.kernel.org
11789 S:      Maintained
11790 F:      include/net/nexthop.h
11791 F:      include/uapi/linux/nexthop.h
11792 F:      include/net/netns/nexthop.h
11793 F:      net/ipv4/nexthop.c
11794
11795 NFC SUBSYSTEM
11796 L:      netdev@vger.kernel.org
11797 S:      Orphan
11798 F:      net/nfc/
11799 F:      include/net/nfc/
11800 F:      include/uapi/linux/nfc.h
11801 F:      drivers/nfc/
11802 F:      include/linux/platform_data/nfcmrvl.h
11803 F:      Documentation/devicetree/bindings/net/nfc/
11804
11805 NFS, SUNRPC, AND LOCKD CLIENTS
11806 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
11807 M:      Anna Schumaker <anna.schumaker@netapp.com>
11808 L:      linux-nfs@vger.kernel.org
11809 W:      http://client.linux-nfs.org
11810 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
11811 S:      Maintained
11812 F:      fs/lockd/
11813 F:      fs/nfs/
11814 F:      fs/nfs_common/
11815 F:      net/sunrpc/
11816 F:      include/linux/lockd/
11817 F:      include/linux/nfs*
11818 F:      include/linux/sunrpc/
11819 F:      include/uapi/linux/nfs*
11820 F:      include/uapi/linux/sunrpc/
11821
11822 NILFS2 FILESYSTEM
11823 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
11824 L:      linux-nilfs@vger.kernel.org
11825 W:      https://nilfs.sourceforge.io/
11826 W:      https://nilfs.osdn.jp/
11827 T:      git git://github.com/konis/nilfs2.git
11828 S:      Supported
11829 F:      Documentation/filesystems/nilfs2.rst
11830 F:      fs/nilfs2/
11831 F:      include/trace/events/nilfs2.h
11832 F:      include/uapi/linux/nilfs2_api.h
11833 F:      include/uapi/linux/nilfs2_ondisk.h
11834
11835 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
11836 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
11837 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11838 S:      Maintained
11839 F:      Documentation/scsi/NinjaSCSI.txt
11840 F:      drivers/scsi/pcmcia/nsp_*
11841
11842 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
11843 M:      GOTO Masanori <gotom@debian.or.jp>
11844 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
11845 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11846 S:      Maintained
11847 F:      Documentation/scsi/NinjaSCSI.txt
11848 F:      drivers/scsi/nsp32*
11849
11850 NIOS2 ARCHITECTURE
11851 M:      Ley Foon Tan <ley.foon.tan@intel.com>
11852 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
11853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
11854 S:      Maintained
11855 F:      arch/nios2/
11856
11857 NOHZ, DYNTICKS SUPPORT
11858 M:      Frederic Weisbecker <fweisbec@gmail.com>
11859 M:      Thomas Gleixner <tglx@linutronix.de>
11860 M:      Ingo Molnar <mingo@kernel.org>
11861 L:      linux-kernel@vger.kernel.org
11862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
11863 S:      Maintained
11864 F:      kernel/time/tick*.*
11865 F:      include/linux/tick.h
11866 F:      include/linux/sched/nohz.h
11867
11868 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
11869 M:      Pavel Machek <pavel@ucw.cz>
11870 M:      Sakari Ailus <sakari.ailus@iki.fi>
11871 L:      linux-media@vger.kernel.org
11872 S:      Maintained
11873 F:      drivers/media/i2c/et8ek8
11874 F:      drivers/media/i2c/ad5820.c
11875
11876 NOKIA N900 POWER SUPPLY DRIVERS
11877 R:      Pali Rohár <pali.rohar@gmail.com>
11878 F:      include/linux/power/bq2415x_charger.h
11879 F:      include/linux/power/bq27xxx_battery.h
11880 F:      drivers/power/supply/bq2415x_charger.c
11881 F:      drivers/power/supply/bq27xxx_battery.c
11882 F:      drivers/power/supply/bq27xxx_battery_i2c.c
11883 F:      drivers/power/supply/isp1704_charger.c
11884 F:      drivers/power/supply/rx51_battery.c
11885
11886 NOLIBC HEADER FILE
11887 M:      Willy Tarreau <w@1wt.eu>
11888 S:      Maintained
11889 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
11890 F:      tools/include/nolibc/
11891
11892 NSDEPS
11893 M:      Matthias Maennich <maennich@google.com>
11894 S:      Maintained
11895 F:      scripts/nsdeps
11896 F:      Documentation/core-api/symbol-namespaces.rst
11897
11898 NTB AMD DRIVER
11899 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
11900 L:      linux-ntb@googlegroups.com
11901 S:      Supported
11902 F:      drivers/ntb/hw/amd/
11903
11904 NTB DRIVER CORE
11905 M:      Jon Mason <jdmason@kudzu.us>
11906 M:      Dave Jiang <dave.jiang@intel.com>
11907 M:      Allen Hubbe <allenbh@gmail.com>
11908 L:      linux-ntb@googlegroups.com
11909 S:      Supported
11910 W:      https://github.com/jonmason/ntb/wiki
11911 T:      git git://github.com/jonmason/ntb.git
11912 F:      drivers/ntb/
11913 F:      drivers/net/ntb_netdev.c
11914 F:      include/linux/ntb.h
11915 F:      include/linux/ntb_transport.h
11916 F:      tools/testing/selftests/ntb/
11917
11918 NTB IDT DRIVER
11919 M:      Serge Semin <fancer.lancer@gmail.com>
11920 L:      linux-ntb@googlegroups.com
11921 S:      Supported
11922 F:      drivers/ntb/hw/idt/
11923
11924 NTB INTEL DRIVER
11925 M:      Dave Jiang <dave.jiang@intel.com>
11926 L:      linux-ntb@googlegroups.com
11927 S:      Supported
11928 W:      https://github.com/davejiang/linux/wiki
11929 T:      git https://github.com/davejiang/linux.git
11930 F:      drivers/ntb/hw/intel/
11931
11932 NTFS FILESYSTEM
11933 M:      Anton Altaparmakov <anton@tuxera.com>
11934 L:      linux-ntfs-dev@lists.sourceforge.net
11935 W:      http://www.tuxera.com/
11936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
11937 S:      Supported
11938 F:      Documentation/filesystems/ntfs.rst
11939 F:      fs/ntfs/
11940
11941 NUBUS SUBSYSTEM
11942 M:      Finn Thain <fthain@telegraphics.com.au>
11943 L:      linux-m68k@lists.linux-m68k.org
11944 S:      Maintained
11945 F:      arch/*/include/asm/nubus.h
11946 F:      drivers/nubus/
11947 F:      include/linux/nubus.h
11948 F:      include/uapi/linux/nubus.h
11949
11950 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
11951 M:      Antonino Daplas <adaplas@gmail.com>
11952 L:      linux-fbdev@vger.kernel.org
11953 S:      Maintained
11954 F:      drivers/video/fbdev/riva/
11955 F:      drivers/video/fbdev/nvidia/
11956
11957 NVM EXPRESS DRIVER
11958 M:      Keith Busch <kbusch@kernel.org>
11959 M:      Jens Axboe <axboe@fb.com>
11960 M:      Christoph Hellwig <hch@lst.de>
11961 M:      Sagi Grimberg <sagi@grimberg.me>
11962 L:      linux-nvme@lists.infradead.org
11963 T:      git://git.infradead.org/nvme.git
11964 W:      http://git.infradead.org/nvme.git
11965 S:      Supported
11966 F:      drivers/nvme/host/
11967 F:      include/linux/nvme.h
11968 F:      include/uapi/linux/nvme_ioctl.h
11969
11970 NVM EXPRESS FC TRANSPORT DRIVERS
11971 M:      James Smart <james.smart@broadcom.com>
11972 L:      linux-nvme@lists.infradead.org
11973 S:      Supported
11974 F:      include/linux/nvme-fc.h
11975 F:      include/linux/nvme-fc-driver.h
11976 F:      drivers/nvme/host/fc.c
11977 F:      drivers/nvme/target/fc.c
11978 F:      drivers/nvme/target/fcloop.c
11979
11980 NVM EXPRESS TARGET DRIVER
11981 M:      Christoph Hellwig <hch@lst.de>
11982 M:      Sagi Grimberg <sagi@grimberg.me>
11983 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
11984 L:      linux-nvme@lists.infradead.org
11985 T:      git://git.infradead.org/nvme.git
11986 W:      http://git.infradead.org/nvme.git
11987 S:      Supported
11988 F:      drivers/nvme/target/
11989
11990 NVMEM FRAMEWORK
11991 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
11992 S:      Maintained
11993 F:      drivers/nvmem/
11994 F:      Documentation/devicetree/bindings/nvmem/
11995 F:      Documentation/ABI/stable/sysfs-bus-nvmem
11996 F:      include/linux/nvmem-consumer.h
11997 F:      include/linux/nvmem-provider.h
11998
11999 NXP FXAS21002C DRIVER
12000 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12001 L:      linux-iio@vger.kernel.org
12002 S:      Maintained
12003 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
12004 F:      drivers/iio/gyro/fxas21002c_core.c
12005 F:      drivers/iio/gyro/fxas21002c.h
12006 F:      drivers/iio/gyro/fxas21002c_i2c.c
12007 F:      drivers/iio/gyro/fxas21002c_spi.c
12008
12009 NXP SGTL5000 DRIVER
12010 M:      Fabio Estevam <festevam@gmail.com>
12011 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12012 S:      Maintained
12013 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
12014 F:      sound/soc/codecs/sgtl5000*
12015
12016 NXP SJA1105 ETHERNET SWITCH DRIVER
12017 M:      Vladimir Oltean <olteanv@gmail.com>
12018 L:      linux-kernel@vger.kernel.org
12019 S:      Maintained
12020 F:      drivers/net/dsa/sja1105
12021
12022 NXP TDA998X DRM DRIVER
12023 M:      Russell King <linux@armlinux.org.uk>
12024 S:      Maintained
12025 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12026 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12027 F:      drivers/gpu/drm/i2c/tda998x_drv.c
12028 F:      include/drm/i2c/tda998x.h
12029 F:      include/dt-bindings/display/tda998x.h
12030 K:      "nxp,tda998x"
12031
12032 NXP TFA9879 DRIVER
12033 M:      Peter Rosin <peda@axentia.se>
12034 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12035 S:      Maintained
12036 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
12037 F:      sound/soc/codecs/tfa9879*
12038
12039 NXP-NCI NFC DRIVER
12040 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
12041 R:      Charles Gorand <charles.gorand@effinnov.com>
12042 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12043 S:      Supported
12044 F:      drivers/nfc/nxp-nci
12045
12046 OBJAGG
12047 M:      Jiri Pirko <jiri@mellanox.com>
12048 L:      netdev@vger.kernel.org
12049 S:      Supported
12050 F:      lib/objagg.c
12051 F:      lib/test_objagg.c
12052 F:      include/linux/objagg.h
12053
12054 NXP FSPI DRIVER
12055 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
12056 M:      Ashish Kumar <ashish.kumar@nxp.com>
12057 L:      linux-spi@vger.kernel.org
12058 S:      Maintained
12059 F:      drivers/spi/spi-nxp-fspi.c
12060 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12061
12062 OBJTOOL
12063 M:      Josh Poimboeuf <jpoimboe@redhat.com>
12064 M:      Peter Zijlstra <peterz@infradead.org>
12065 S:      Supported
12066 F:      tools/objtool/
12067
12068 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12069 M:      Frederic Barrat <fbarrat@linux.ibm.com>
12070 M:      Andrew Donnellan <ajd@linux.ibm.com>
12071 L:      linuxppc-dev@lists.ozlabs.org
12072 S:      Supported
12073 F:      arch/powerpc/platforms/powernv/ocxl.c
12074 F:      arch/powerpc/include/asm/pnv-ocxl.h
12075 F:      drivers/misc/ocxl/
12076 F:      include/misc/ocxl*
12077 F:      include/uapi/misc/ocxl.h
12078 F:      Documentation/userspace-api/accelerators/ocxl.rst
12079
12080 OMAP AUDIO SUPPORT
12081 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
12082 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
12083 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12084 L:      linux-omap@vger.kernel.org
12085 S:      Maintained
12086 F:      sound/soc/ti/omap*
12087 F:      sound/soc/ti/rx51.c
12088 F:      sound/soc/ti/n810.c
12089 F:      sound/soc/ti/sdma-pcm.*
12090
12091 OMAP CLOCK FRAMEWORK SUPPORT
12092 M:      Paul Walmsley <paul@pwsan.com>
12093 L:      linux-omap@vger.kernel.org
12094 S:      Maintained
12095 F:      arch/arm/*omap*/*clock*
12096
12097 OMAP DEVICE TREE SUPPORT
12098 M:      Benoît Cousson <bcousson@baylibre.com>
12099 M:      Tony Lindgren <tony@atomide.com>
12100 L:      linux-omap@vger.kernel.org
12101 L:      devicetree@vger.kernel.org
12102 S:      Maintained
12103 F:      arch/arm/boot/dts/*omap*
12104 F:      arch/arm/boot/dts/*am3*
12105 F:      arch/arm/boot/dts/*am4*
12106 F:      arch/arm/boot/dts/*am5*
12107 F:      arch/arm/boot/dts/*dra7*
12108 F:      arch/arm/boot/dts/logicpd-som-lv*
12109 F:      arch/arm/boot/dts/logicpd-torpedo*
12110
12111 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12112 L:      linux-omap@vger.kernel.org
12113 L:      linux-fbdev@vger.kernel.org
12114 S:      Orphan
12115 F:      drivers/video/fbdev/omap2/
12116 F:      Documentation/arm/omap/dss.rst
12117
12118 OMAP FRAMEBUFFER SUPPORT
12119 L:      linux-fbdev@vger.kernel.org
12120 L:      linux-omap@vger.kernel.org
12121 S:      Orphan
12122 F:      drivers/video/fbdev/omap/
12123
12124 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12125 M:      Roger Quadros <rogerq@ti.com>
12126 M:      Tony Lindgren <tony@atomide.com>
12127 L:      linux-omap@vger.kernel.org
12128 S:      Maintained
12129 F:      drivers/memory/omap-gpmc.c
12130 F:      arch/arm/mach-omap2/*gpmc*
12131
12132 OMAP GPIO DRIVER
12133 M:      Grygorii Strashko <grygorii.strashko@ti.com>
12134 M:      Santosh Shilimkar <ssantosh@kernel.org>
12135 M:      Kevin Hilman <khilman@kernel.org>
12136 L:      linux-omap@vger.kernel.org
12137 S:      Maintained
12138 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
12139 F:      drivers/gpio/gpio-omap.c
12140
12141 OMAP HARDWARE SPINLOCK SUPPORT
12142 M:      Ohad Ben-Cohen <ohad@wizery.com>
12143 L:      linux-omap@vger.kernel.org
12144 S:      Maintained
12145 F:      drivers/hwspinlock/omap_hwspinlock.c
12146
12147 OMAP HS MMC SUPPORT
12148 L:      linux-mmc@vger.kernel.org
12149 L:      linux-omap@vger.kernel.org
12150 S:      Orphan
12151 F:      drivers/mmc/host/omap_hsmmc.c
12152
12153 OMAP HWMOD DATA
12154 M:      Paul Walmsley <paul@pwsan.com>
12155 L:      linux-omap@vger.kernel.org
12156 S:      Maintained
12157 F:      arch/arm/mach-omap2/omap_hwmod*data*
12158
12159 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12160 M:      Benoît Cousson <bcousson@baylibre.com>
12161 L:      linux-omap@vger.kernel.org
12162 S:      Maintained
12163 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12164
12165 OMAP HWMOD SUPPORT
12166 M:      Benoît Cousson <bcousson@baylibre.com>
12167 M:      Paul Walmsley <paul@pwsan.com>
12168 L:      linux-omap@vger.kernel.org
12169 S:      Maintained
12170 F:      arch/arm/mach-omap2/omap_hwmod.*
12171
12172 OMAP I2C DRIVER
12173 M:      Vignesh R <vigneshr@ti.com>
12174 L:      linux-omap@vger.kernel.org
12175 L:      linux-i2c@vger.kernel.org
12176 S:      Maintained
12177 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
12178 F:      drivers/i2c/busses/i2c-omap.c
12179
12180 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12181 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12182 L:      linux-media@vger.kernel.org
12183 S:      Maintained
12184 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
12185 F:      drivers/media/platform/omap3isp/
12186 F:      drivers/staging/media/omap4iss/
12187
12188 OMAP MMC SUPPORT
12189 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12190 L:      linux-omap@vger.kernel.org
12191 S:      Odd Fixes
12192 F:      drivers/mmc/host/omap.c
12193
12194 OMAP POWER MANAGEMENT SUPPORT
12195 M:      Kevin Hilman <khilman@kernel.org>
12196 L:      linux-omap@vger.kernel.org
12197 S:      Maintained
12198 F:      arch/arm/*omap*/*pm*
12199 F:      drivers/cpufreq/omap-cpufreq.c
12200
12201 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12202 M:      Rajendra Nayak <rnayak@codeaurora.org>
12203 M:      Paul Walmsley <paul@pwsan.com>
12204 L:      linux-omap@vger.kernel.org
12205 S:      Maintained
12206 F:      arch/arm/mach-omap2/prm*
12207
12208 OMAP RANDOM NUMBER GENERATOR SUPPORT
12209 M:      Deepak Saxena <dsaxena@plexity.net>
12210 S:      Maintained
12211 F:      drivers/char/hw_random/omap-rng.c
12212
12213 OMAP USB SUPPORT
12214 L:      linux-usb@vger.kernel.org
12215 L:      linux-omap@vger.kernel.org
12216 S:      Orphan
12217 F:      drivers/usb/*/*omap*
12218 F:      arch/arm/*omap*/usb*
12219
12220 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12221 M:      Mark Jackson <mpfj@newflow.co.uk>
12222 L:      linux-omap@vger.kernel.org
12223 S:      Maintained
12224 F:      arch/arm/boot/dts/am335x-nano.dts
12225
12226 OMAP1 SUPPORT
12227 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12228 M:      Tony Lindgren <tony@atomide.com>
12229 L:      linux-omap@vger.kernel.org
12230 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12232 S:      Maintained
12233 F:      arch/arm/mach-omap1/
12234 F:      arch/arm/plat-omap/
12235 F:      arch/arm/configs/omap1_defconfig
12236 F:      drivers/i2c/busses/i2c-omap.c
12237 F:      include/linux/platform_data/i2c-omap.h
12238 F:      include/linux/platform_data/ams-delta-fiq.h
12239
12240 OMAP2+ SUPPORT
12241 M:      Tony Lindgren <tony@atomide.com>
12242 L:      linux-omap@vger.kernel.org
12243 W:      http://www.muru.com/linux/omap/
12244 W:      http://linux.omap.com/
12245 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12247 S:      Maintained
12248 F:      arch/arm/mach-omap2/
12249 F:      arch/arm/plat-omap/
12250 F:      arch/arm/configs/omap2plus_defconfig
12251 F:      drivers/bus/ti-sysc.c
12252 F:      drivers/i2c/busses/i2c-omap.c
12253 F:      drivers/irqchip/irq-omap-intc.c
12254 F:      drivers/mfd/*omap*.c
12255 F:      drivers/mfd/menelaus.c
12256 F:      drivers/mfd/palmas.c
12257 F:      drivers/mfd/tps65217.c
12258 F:      drivers/mfd/tps65218.c
12259 F:      drivers/mfd/tps65910.c
12260 F:      drivers/mfd/twl-core.[ch]
12261 F:      drivers/mfd/twl4030*.c
12262 F:      drivers/mfd/twl6030*.c
12263 F:      drivers/mfd/twl6040*.c
12264 F:      drivers/regulator/palmas-regulator*.c
12265 F:      drivers/regulator/pbias-regulator.c
12266 F:      drivers/regulator/tps65217-regulator.c
12267 F:      drivers/regulator/tps65218-regulator.c
12268 F:      drivers/regulator/tps65910-regulator.c
12269 F:      drivers/regulator/twl-regulator.c
12270 F:      drivers/regulator/twl6030-regulator.c
12271 F:      include/linux/platform_data/i2c-omap.h
12272 F:      include/linux/platform_data/ti-sysc.h
12273
12274 ONION OMEGA2+ BOARD
12275 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
12276 L:      linux-mips@vger.kernel.org
12277 S:      Maintained
12278 F:      arch/mips/boot/dts/ralink/omega2p.dts
12279
12280 OMFS FILESYSTEM
12281 M:      Bob Copeland <me@bobcopeland.com>
12282 L:      linux-karma-devel@lists.sourceforge.net
12283 S:      Maintained
12284 F:      Documentation/filesystems/omfs.rst
12285 F:      fs/omfs/
12286
12287 OMNIKEY CARDMAN 4000 DRIVER
12288 M:      Harald Welte <laforge@gnumonks.org>
12289 S:      Maintained
12290 F:      drivers/char/pcmcia/cm4000_cs.c
12291 F:      include/linux/cm4000_cs.h
12292 F:      include/uapi/linux/cm4000_cs.h
12293
12294 OMNIKEY CARDMAN 4040 DRIVER
12295 M:      Harald Welte <laforge@gnumonks.org>
12296 S:      Maintained
12297 F:      drivers/char/pcmcia/cm4040_cs.*
12298
12299 OMNIVISION OV13858 SENSOR DRIVER
12300 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12301 L:      linux-media@vger.kernel.org
12302 T:      git git://linuxtv.org/media_tree.git
12303 S:      Maintained
12304 F:      drivers/media/i2c/ov13858.c
12305
12306 OMNIVISION OV2680 SENSOR DRIVER
12307 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12308 L:      linux-media@vger.kernel.org
12309 T:      git git://linuxtv.org/media_tree.git
12310 S:      Maintained
12311 F:      drivers/media/i2c/ov2680.c
12312 F:      Documentation/devicetree/bindings/media/i2c/ov2680.txt
12313
12314 OMNIVISION OV2685 SENSOR DRIVER
12315 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12316 L:      linux-media@vger.kernel.org
12317 T:      git git://linuxtv.org/media_tree.git
12318 S:      Maintained
12319 F:      drivers/media/i2c/ov2685.c
12320
12321 OMNIVISION OV5640 SENSOR DRIVER
12322 M:      Steve Longerbeam <slongerbeam@gmail.com>
12323 L:      linux-media@vger.kernel.org
12324 T:      git git://linuxtv.org/media_tree.git
12325 S:      Maintained
12326 F:      drivers/media/i2c/ov5640.c
12327
12328 OMNIVISION OV5647 SENSOR DRIVER
12329 M:      Luis Oliveira <lolivei@synopsys.com>
12330 L:      linux-media@vger.kernel.org
12331 T:      git git://linuxtv.org/media_tree.git
12332 S:      Maintained
12333 F:      drivers/media/i2c/ov5647.c
12334
12335 OMNIVISION OV5670 SENSOR DRIVER
12336 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
12337 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
12338 L:      linux-media@vger.kernel.org
12339 T:      git git://linuxtv.org/media_tree.git
12340 S:      Maintained
12341 F:      drivers/media/i2c/ov5670.c
12342
12343 OMNIVISION OV5675 SENSOR DRIVER
12344 M:      Shawn Tu <shawnx.tu@intel.com>
12345 L:      linux-media@vger.kernel.org
12346 T:      git git://linuxtv.org/media_tree.git
12347 S:      Maintained
12348 F:      drivers/media/i2c/ov5675.c
12349
12350 OMNIVISION OV5695 SENSOR DRIVER
12351 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12352 L:      linux-media@vger.kernel.org
12353 T:      git git://linuxtv.org/media_tree.git
12354 S:      Maintained
12355 F:      drivers/media/i2c/ov5695.c
12356
12357 OMNIVISION OV7670 SENSOR DRIVER
12358 M:      Jonathan Corbet <corbet@lwn.net>
12359 L:      linux-media@vger.kernel.org
12360 T:      git git://linuxtv.org/media_tree.git
12361 S:      Maintained
12362 F:      drivers/media/i2c/ov7670.c
12363 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
12364
12365 OMNIVISION OV772x SENSOR DRIVER
12366 M:      Jacopo Mondi <jacopo@jmondi.org>
12367 L:      linux-media@vger.kernel.org
12368 T:      git git://linuxtv.org/media_tree.git
12369 S:      Odd fixes
12370 F:      drivers/media/i2c/ov772x.c
12371 F:      include/media/i2c/ov772x.h
12372 F:      Documentation/devicetree/bindings/media/i2c/ov772x.txt
12373
12374 OMNIVISION OV7740 SENSOR DRIVER
12375 M:      Wenyou Yang <wenyou.yang@microchip.com>
12376 L:      linux-media@vger.kernel.org
12377 T:      git git://linuxtv.org/media_tree.git
12378 S:      Maintained
12379 F:      drivers/media/i2c/ov7740.c
12380 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
12381
12382 OMNIVISION OV9640 SENSOR DRIVER
12383 M:      Petr Cvek <petrcvekcz@gmail.com>
12384 L:      linux-media@vger.kernel.org
12385 S:      Maintained
12386 F:      drivers/media/i2c/ov9640.*
12387
12388 OMNIVISION OV8856 SENSOR DRIVER
12389 M:      Ben Kao <ben.kao@intel.com>
12390 L:      linux-media@vger.kernel.org
12391 T:      git git://linuxtv.org/media_tree.git
12392 S:      Maintained
12393 F:      drivers/media/i2c/ov8856.c
12394
12395 OMNIVISION OV9650 SENSOR DRIVER
12396 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12397 R:      Akinobu Mita <akinobu.mita@gmail.com>
12398 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12399 L:      linux-media@vger.kernel.org
12400 T:      git git://linuxtv.org/media_tree.git
12401 S:      Maintained
12402 F:      drivers/media/i2c/ov9650.c
12403 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
12404
12405 ONENAND FLASH DRIVER
12406 M:      Kyungmin Park <kyungmin.park@samsung.com>
12407 L:      linux-mtd@lists.infradead.org
12408 S:      Maintained
12409 F:      drivers/mtd/nand/onenand/
12410 F:      include/linux/mtd/onenand*.h
12411
12412 OP-TEE DRIVER
12413 M:      Jens Wiklander <jens.wiklander@linaro.org>
12414 L:      tee-dev@lists.linaro.org
12415 S:      Maintained
12416 F:      drivers/tee/optee/
12417
12418 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
12419 M:      Sumit Garg <sumit.garg@linaro.org>
12420 L:      tee-dev@lists.linaro.org
12421 S:      Maintained
12422 F:      drivers/char/hw_random/optee-rng.c
12423
12424 OPA-VNIC DRIVER
12425 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
12426 M:      Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
12427 L:      linux-rdma@vger.kernel.org
12428 S:      Supported
12429 F:      drivers/infiniband/ulp/opa_vnic
12430
12431 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
12432 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
12433 M:      Frank Rowand <frowand.list@gmail.com>
12434 L:      devicetree@vger.kernel.org
12435 S:      Maintained
12436 F:      Documentation/devicetree/dynamic-resolution-notes.txt
12437 F:      Documentation/devicetree/overlay-notes.txt
12438 F:      drivers/of/overlay.c
12439 F:      drivers/of/resolver.c
12440 K:      of_overlay_notifier_
12441
12442 OPEN FIRMWARE AND FLATTENED DEVICE TREE
12443 M:      Rob Herring <robh+dt@kernel.org>
12444 M:      Frank Rowand <frowand.list@gmail.com>
12445 L:      devicetree@vger.kernel.org
12446 W:      http://www.devicetree.org/
12447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12448 S:      Maintained
12449 F:      drivers/of/
12450 F:      include/linux/of*.h
12451 F:      scripts/dtc/
12452 F:      Documentation/ABI/testing/sysfs-firmware-ofw
12453
12454 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
12455 M:      Rob Herring <robh+dt@kernel.org>
12456 M:      Mark Rutland <mark.rutland@arm.com>
12457 L:      devicetree@vger.kernel.org
12458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12459 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
12460 S:      Maintained
12461 F:      Documentation/devicetree/
12462 F:      arch/*/boot/dts/
12463 F:      include/dt-bindings/
12464
12465 OPENCORES I2C BUS DRIVER
12466 M:      Peter Korsgaard <peter@korsgaard.com>
12467 M:      Andrew Lunn <andrew@lunn.ch>
12468 L:      linux-i2c@vger.kernel.org
12469 S:      Maintained
12470 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
12471 F:      Documentation/i2c/busses/i2c-ocores.rst
12472 F:      drivers/i2c/busses/i2c-ocores.c
12473 F:      include/linux/platform_data/i2c-ocores.h
12474
12475 OPENRISC ARCHITECTURE
12476 M:      Jonas Bonn <jonas@southpole.se>
12477 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
12478 M:      Stafford Horne <shorne@gmail.com>
12479 T:      git git://github.com/openrisc/linux.git
12480 L:      openrisc@lists.librecores.org
12481 W:      http://openrisc.io
12482 S:      Maintained
12483 F:      Documentation/devicetree/bindings/openrisc/
12484 F:      Documentation/openrisc/
12485 F:      arch/openrisc/
12486 F:      drivers/irqchip/irq-ompic.c
12487 F:      drivers/irqchip/irq-or1k-*
12488
12489 OPENVSWITCH
12490 M:      Pravin B Shelar <pshelar@ovn.org>
12491 L:      netdev@vger.kernel.org
12492 L:      dev@openvswitch.org
12493 W:      http://openvswitch.org
12494 S:      Maintained
12495 F:      net/openvswitch/
12496 F:      include/uapi/linux/openvswitch.h
12497
12498 OPERATING PERFORMANCE POINTS (OPP)
12499 M:      Viresh Kumar <vireshk@kernel.org>
12500 M:      Nishanth Menon <nm@ti.com>
12501 M:      Stephen Boyd <sboyd@kernel.org>
12502 L:      linux-pm@vger.kernel.org
12503 S:      Maintained
12504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
12505 F:      drivers/opp/
12506 F:      include/linux/pm_opp.h
12507 F:      Documentation/power/opp.rst
12508 F:      Documentation/devicetree/bindings/opp/
12509
12510 OPL4 DRIVER
12511 M:      Clemens Ladisch <clemens@ladisch.de>
12512 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12514 S:      Maintained
12515 F:      sound/drivers/opl4/
12516
12517 OPROFILE
12518 M:      Robert Richter <rric@kernel.org>
12519 L:      oprofile-list@lists.sf.net
12520 S:      Maintained
12521 F:      arch/*/include/asm/oprofile*.h
12522 F:      arch/*/oprofile/
12523 F:      drivers/oprofile/
12524 F:      include/linux/oprofile.h
12525
12526 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
12527 M:      Mark Fasheh <mark@fasheh.com>
12528 M:      Joel Becker <jlbec@evilplan.org>
12529 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
12530 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
12531 W:      http://ocfs2.wiki.kernel.org
12532 S:      Supported
12533 F:      Documentation/filesystems/ocfs2.rst
12534 F:      Documentation/filesystems/dlmfs.rst
12535 F:      fs/ocfs2/
12536
12537 ORANGEFS FILESYSTEM
12538 M:      Mike Marshall <hubcap@omnibond.com>
12539 R:      Martin Brandenburg <martin@omnibond.com>
12540 L:      devel@lists.orangefs.org
12541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
12542 S:      Supported
12543 F:      fs/orangefs/
12544 F:      Documentation/filesystems/orangefs.rst
12545
12546 ORINOCO DRIVER
12547 L:      linux-wireless@vger.kernel.org
12548 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
12549 W:      http://www.nongnu.org/orinoco/
12550 S:      Orphan
12551 F:      drivers/net/wireless/intersil/orinoco/
12552
12553 OV2659 OMNIVISION SENSOR DRIVER
12554 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
12555 L:      linux-media@vger.kernel.org
12556 W:      https://linuxtv.org
12557 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12558 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12559 S:      Maintained
12560 F:      drivers/media/i2c/ov2659.c
12561 F:      include/media/i2c/ov2659.h
12562
12563 OVERLAY FILESYSTEM
12564 M:      Miklos Szeredi <miklos@szeredi.hu>
12565 L:      linux-unionfs@vger.kernel.org
12566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
12567 S:      Supported
12568 F:      fs/overlayfs/
12569 F:      Documentation/filesystems/overlayfs.rst
12570
12571 P54 WIRELESS DRIVER
12572 M:      Christian Lamparter <chunkeey@googlemail.com>
12573 L:      linux-wireless@vger.kernel.org
12574 W:      http://wireless.kernel.org/en/users/Drivers/p54
12575 S:      Maintained
12576 F:      drivers/net/wireless/intersil/p54/
12577
12578 PA SEMI ETHERNET DRIVER
12579 L:      netdev@vger.kernel.org
12580 S:      Orphan
12581 F:      drivers/net/ethernet/pasemi/*
12582
12583 PA SEMI SMBUS DRIVER
12584 L:      linux-i2c@vger.kernel.org
12585 S:      Orphan
12586 F:      drivers/i2c/busses/i2c-pasemi.c
12587
12588 PACKING
12589 M:      Vladimir Oltean <olteanv@gmail.com>
12590 L:      netdev@vger.kernel.org
12591 S:      Supported
12592 F:      lib/packing.c
12593 F:      include/linux/packing.h
12594 F:      Documentation/core-api/packing.rst
12595
12596 PADATA PARALLEL EXECUTION MECHANISM
12597 M:      Steffen Klassert <steffen.klassert@secunet.com>
12598 L:      linux-crypto@vger.kernel.org
12599 S:      Maintained
12600 F:      kernel/padata.c
12601 F:      include/linux/padata.h
12602 F:      Documentation/core-api/padata.rst
12603
12604 PAGE POOL
12605 M:      Jesper Dangaard Brouer <hawk@kernel.org>
12606 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
12607 L:      netdev@vger.kernel.org
12608 S:      Supported
12609 F:      net/core/page_pool.c
12610 F:      include/net/page_pool.h
12611
12612 PANASONIC LAPTOP ACPI EXTRAS DRIVER
12613 M:      Harald Welte <laforge@gnumonks.org>
12614 L:      platform-driver-x86@vger.kernel.org
12615 S:      Maintained
12616 F:      drivers/platform/x86/panasonic-laptop.c
12617
12618 PARALLAX PING IIO SENSOR DRIVER
12619 M:      Andreas Klinger <ak@it-klinger.de>
12620 L:      linux-iio@vger.kernel.org
12621 S:      Maintained
12622 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
12623 F:      drivers/iio/proximity/ping.c
12624
12625 PARALLEL LCD/KEYPAD PANEL DRIVER
12626 M:      Willy Tarreau <willy@haproxy.com>
12627 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
12628 S:      Odd Fixes
12629 F:      Documentation/admin-guide/lcd-panel-cgram.rst
12630 F:      drivers/auxdisplay/panel.c
12631
12632 PARALLEL PORT SUBSYSTEM
12633 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12634 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12635 L:      linux-parport@lists.infradead.org (subscribers-only)
12636 S:      Maintained
12637 F:      drivers/parport/
12638 F:      include/linux/parport*.h
12639 F:      drivers/char/ppdev.c
12640 F:      include/uapi/linux/ppdev.h
12641 F:      Documentation/driver-api/parport*.rst
12642
12643 PARAVIRT_OPS INTERFACE
12644 M:      Juergen Gross <jgross@suse.com>
12645 M:      Thomas Hellstrom <thellstrom@vmware.com>
12646 M:      "VMware, Inc." <pv-drivers@vmware.com>
12647 L:      virtualization@lists.linux-foundation.org
12648 S:      Supported
12649 F:      Documentation/virt/paravirt_ops.rst
12650 F:      arch/*/kernel/paravirt*
12651 F:      arch/*/include/asm/paravirt*.h
12652 F:      include/linux/hypervisor.h
12653
12654 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
12655 M:      Tim Waugh <tim@cyberelk.net>
12656 L:      linux-parport@lists.infradead.org (subscribers-only)
12657 S:      Maintained
12658 F:      Documentation/admin-guide/blockdev/paride.rst
12659 F:      drivers/block/paride/
12660
12661 PARISC ARCHITECTURE
12662 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
12663 M:      Helge Deller <deller@gmx.de>
12664 L:      linux-parisc@vger.kernel.org
12665 W:      http://www.parisc-linux.org/
12666 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
12667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
12668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
12669 S:      Maintained
12670 F:      arch/parisc/
12671 F:      Documentation/parisc/
12672 F:      drivers/parisc/
12673 F:      drivers/char/agp/parisc-agp.c
12674 F:      drivers/input/misc/hp_sdc_rtc.c
12675 F:      drivers/input/serio/gscps2.c
12676 F:      drivers/input/serio/hp_sdc*
12677 F:      drivers/parport/parport_gsc.*
12678 F:      drivers/tty/serial/8250/8250_gsc.c
12679 F:      drivers/video/fbdev/sti*
12680 F:      drivers/video/console/sti*
12681 F:      drivers/video/logo/logo_parisc*
12682 F:      include/linux/hp_sdc.h
12683
12684 PARMAN
12685 M:      Jiri Pirko <jiri@mellanox.com>
12686 L:      netdev@vger.kernel.org
12687 S:      Supported
12688 F:      lib/parman.c
12689 F:      lib/test_parman.c
12690 F:      include/linux/parman.h
12691
12692 PC ENGINES APU BOARD DRIVER
12693 M:      Enrico Weigelt, metux IT consult <info@metux.net>
12694 S:      Maintained
12695 F:      drivers/platform/x86/pcengines-apuv2.c
12696
12697 PC87360 HARDWARE MONITORING DRIVER
12698 M:      Jim Cromie <jim.cromie@gmail.com>
12699 L:      linux-hwmon@vger.kernel.org
12700 S:      Maintained
12701 F:      Documentation/hwmon/pc87360.rst
12702 F:      drivers/hwmon/pc87360.c
12703
12704 PC8736x GPIO DRIVER
12705 M:      Jim Cromie <jim.cromie@gmail.com>
12706 S:      Maintained
12707 F:      drivers/char/pc8736x_gpio.c
12708
12709 PC87427 HARDWARE MONITORING DRIVER
12710 M:      Jean Delvare <jdelvare@suse.com>
12711 L:      linux-hwmon@vger.kernel.org
12712 S:      Maintained
12713 F:      Documentation/hwmon/pc87427.rst
12714 F:      drivers/hwmon/pc87427.c
12715
12716 PCA9532 LED DRIVER
12717 M:      Riku Voipio <riku.voipio@iki.fi>
12718 S:      Maintained
12719 F:      drivers/leds/leds-pca9532.c
12720 F:      include/linux/leds-pca9532.h
12721
12722 PCA9541 I2C BUS MASTER SELECTOR DRIVER
12723 M:      Guenter Roeck <linux@roeck-us.net>
12724 L:      linux-i2c@vger.kernel.org
12725 S:      Maintained
12726 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
12727
12728 PCDP - PRIMARY CONSOLE AND DEBUG PORT
12729 M:      Khalid Aziz <khalid@gonehiking.org>
12730 S:      Maintained
12731 F:      drivers/firmware/pcdp.*
12732
12733 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
12734 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12735 L:      linux-pci@vger.kernel.org
12736 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12737 S:      Maintained
12738 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
12739 F:      drivers/pci/controller/pci-aardvark.c
12740
12741 PCI DRIVER FOR ALTERA PCIE IP
12742 M:      Ley Foon Tan <ley.foon.tan@intel.com>
12743 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
12744 L:      linux-pci@vger.kernel.org
12745 S:      Supported
12746 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
12747 F:      drivers/pci/controller/pcie-altera.c
12748
12749 PCI DRIVER FOR APPLIEDMICRO XGENE
12750 M:      Toan Le <toan@os.amperecomputing.com>
12751 L:      linux-pci@vger.kernel.org
12752 L:      linux-arm-kernel@lists.infradead.org
12753 S:      Maintained
12754 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
12755 F:      drivers/pci/controller/pci-xgene.c
12756
12757 PCI DRIVER FOR ARM VERSATILE PLATFORM
12758 M:      Rob Herring <robh@kernel.org>
12759 L:      linux-pci@vger.kernel.org
12760 L:      linux-arm-kernel@lists.infradead.org
12761 S:      Maintained
12762 F:      Documentation/devicetree/bindings/pci/versatile.yaml
12763 F:      drivers/pci/controller/pci-versatile.c
12764
12765 PCI DRIVER FOR ARMADA 8K
12766 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12767 L:      linux-pci@vger.kernel.org
12768 L:      linux-arm-kernel@lists.infradead.org
12769 S:      Maintained
12770 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
12771 F:      drivers/pci/controller/dwc/pcie-armada8k.c
12772
12773 PCI DRIVER FOR CADENCE PCIE IP
12774 M:      Tom Joseph <tjoseph@cadence.com>
12775 L:      linux-pci@vger.kernel.org
12776 S:      Maintained
12777 F:      Documentation/devicetree/bindings/pci/cdns,*.txt
12778 F:      drivers/pci/controller/cadence/
12779
12780 PCI DRIVER FOR FREESCALE LAYERSCAPE
12781 M:      Minghuan Lian <minghuan.Lian@nxp.com>
12782 M:      Mingkai Hu <mingkai.hu@nxp.com>
12783 M:      Roy Zang <roy.zang@nxp.com>
12784 L:      linuxppc-dev@lists.ozlabs.org
12785 L:      linux-pci@vger.kernel.org
12786 L:      linux-arm-kernel@lists.infradead.org
12787 S:      Maintained
12788 F:      drivers/pci/controller/dwc/*layerscape*
12789
12790 PCI DRIVER FOR GENERIC OF HOSTS
12791 M:      Will Deacon <will@kernel.org>
12792 L:      linux-pci@vger.kernel.org
12793 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12794 S:      Maintained
12795 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
12796 F:      drivers/pci/controller/pci-host-common.c
12797 F:      drivers/pci/controller/pci-host-generic.c
12798
12799 PCI DRIVER FOR IMX6
12800 M:      Richard Zhu <hongxing.zhu@nxp.com>
12801 M:      Lucas Stach <l.stach@pengutronix.de>
12802 L:      linux-pci@vger.kernel.org
12803 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12804 S:      Maintained
12805 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
12806 F:      drivers/pci/controller/dwc/*imx6*
12807
12808 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
12809 M:      Jonathan Derrick <jonathan.derrick@intel.com>
12810 L:      linux-pci@vger.kernel.org
12811 S:      Supported
12812 F:      drivers/pci/controller/vmd.c
12813
12814 PCI DRIVER FOR MICROSEMI SWITCHTEC
12815 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
12816 M:      Logan Gunthorpe <logang@deltatee.com>
12817 L:      linux-pci@vger.kernel.org
12818 S:      Maintained
12819 F:      Documentation/driver-api/switchtec.rst
12820 F:      Documentation/ABI/testing/sysfs-class-switchtec
12821 F:      drivers/pci/switch/switchtec*
12822 F:      include/uapi/linux/switchtec_ioctl.h
12823 F:      include/linux/switchtec.h
12824 F:      drivers/ntb/hw/mscc/
12825
12826 PCI DRIVER FOR MOBIVEIL PCIE IP
12827 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
12828 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
12829 L:      linux-pci@vger.kernel.org
12830 S:      Supported
12831 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
12832 F:      drivers/pci/controller/pcie-mobiveil.c
12833
12834 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
12835 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12836 M:      Jason Cooper <jason@lakedaemon.net>
12837 L:      linux-pci@vger.kernel.org
12838 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12839 S:      Maintained
12840 F:      drivers/pci/controller/*mvebu*
12841
12842 PCI DRIVER FOR NVIDIA TEGRA
12843 M:      Thierry Reding <thierry.reding@gmail.com>
12844 L:      linux-tegra@vger.kernel.org
12845 L:      linux-pci@vger.kernel.org
12846 S:      Supported
12847 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
12848 F:      drivers/pci/controller/pci-tegra.c
12849
12850 PCI DRIVER FOR RENESAS R-CAR
12851 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
12852 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
12853 L:      linux-pci@vger.kernel.org
12854 L:      linux-renesas-soc@vger.kernel.org
12855 S:      Maintained
12856 F:      drivers/pci/controller/*rcar*
12857
12858 PCI DRIVER FOR SAMSUNG EXYNOS
12859 M:      Jingoo Han <jingoohan1@gmail.com>
12860 L:      linux-pci@vger.kernel.org
12861 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12862 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12863 S:      Maintained
12864 F:      drivers/pci/controller/dwc/pci-exynos.c
12865
12866 PCI DRIVER FOR SYNOPSYS DESIGNWARE
12867 M:      Jingoo Han <jingoohan1@gmail.com>
12868 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
12869 L:      linux-pci@vger.kernel.org
12870 S:      Maintained
12871 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
12872 F:      drivers/pci/controller/dwc/*designware*
12873
12874 PCI DRIVER FOR TI DRA7XX
12875 M:      Kishon Vijay Abraham I <kishon@ti.com>
12876 L:      linux-omap@vger.kernel.org
12877 L:      linux-pci@vger.kernel.org
12878 S:      Supported
12879 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
12880 F:      drivers/pci/controller/dwc/pci-dra7xx.c
12881
12882 PCI DRIVER FOR TI KEYSTONE
12883 M:      Murali Karicheri <m-karicheri2@ti.com>
12884 L:      linux-pci@vger.kernel.org
12885 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12886 S:      Maintained
12887 F:      drivers/pci/controller/dwc/pci-keystone.c
12888
12889 PCI ENDPOINT SUBSYSTEM
12890 M:      Kishon Vijay Abraham I <kishon@ti.com>
12891 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
12892 L:      linux-pci@vger.kernel.org
12893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
12894 S:      Supported
12895 F:      drivers/pci/endpoint/
12896 F:      drivers/misc/pci_endpoint_test.c
12897 F:      tools/pci/
12898
12899 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
12900 M:      Russell Currey <ruscur@russell.cc>
12901 M:      Sam Bobroff <sbobroff@linux.ibm.com>
12902 M:      Oliver O'Halloran <oohall@gmail.com>
12903 L:      linuxppc-dev@lists.ozlabs.org
12904 S:      Supported
12905 F:      Documentation/PCI/pci-error-recovery.rst
12906 F:      drivers/pci/pcie/aer.c
12907 F:      drivers/pci/pcie/dpc.c
12908 F:      drivers/pci/pcie/err.c
12909 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
12910 F:      arch/powerpc/kernel/eeh*.c
12911 F:      arch/powerpc/platforms/*/eeh*.c
12912 F:      arch/powerpc/include/*/eeh*.h
12913
12914 PCI ERROR RECOVERY
12915 M:      Linas Vepstas <linasvepstas@gmail.com>
12916 L:      linux-pci@vger.kernel.org
12917 S:      Supported
12918 F:      Documentation/PCI/pci-error-recovery.rst
12919
12920 PCI MSI DRIVER FOR ALTERA MSI IP
12921 M:      Ley Foon Tan <ley.foon.tan@intel.com>
12922 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
12923 L:      linux-pci@vger.kernel.org
12924 S:      Supported
12925 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
12926 F:      drivers/pci/controller/pcie-altera-msi.c
12927
12928 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
12929 M:      Toan Le <toan@os.amperecomputing.com>
12930 L:      linux-pci@vger.kernel.org
12931 L:      linux-arm-kernel@lists.infradead.org
12932 S:      Maintained
12933 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
12934 F:      drivers/pci/controller/pci-xgene-msi.c
12935
12936 PCI SUBSYSTEM
12937 M:      Bjorn Helgaas <bhelgaas@google.com>
12938 L:      linux-pci@vger.kernel.org
12939 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
12940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
12941 S:      Supported
12942 F:      Documentation/devicetree/bindings/pci/
12943 F:      Documentation/PCI/
12944 F:      drivers/acpi/pci*
12945 F:      drivers/pci/
12946 F:      include/asm-generic/pci*
12947 F:      include/linux/pci*
12948 F:      include/linux/of_pci.h
12949 F:      include/uapi/linux/pci*
12950 F:      lib/pci*
12951 F:      arch/x86/pci/
12952 F:      arch/x86/kernel/quirks.c
12953 F:      arch/x86/kernel/early-quirks.c
12954
12955 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
12956 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
12957 R:      Andrew Murray <amurray@thegoodpenguin.co.uk>
12958 L:      linux-pci@vger.kernel.org
12959 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
12960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
12961 S:      Supported
12962 F:      drivers/pci/controller/
12963
12964 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
12965 M:      Jonathan Chocron <jonnyc@amazon.com>
12966 L:      linux-pci@vger.kernel.org
12967 S:      Maintained
12968 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
12969 F:      drivers/pci/controller/dwc/pcie-al.c
12970
12971 PCIE DRIVER FOR AMLOGIC MESON
12972 M:      Yue Wang <yue.wang@Amlogic.com>
12973 L:      linux-pci@vger.kernel.org
12974 L:      linux-amlogic@lists.infradead.org
12975 S:      Maintained
12976 F:      drivers/pci/controller/dwc/pci-meson.c
12977
12978 PCIE DRIVER FOR AXIS ARTPEC
12979 M:      Jesper Nilsson <jesper.nilsson@axis.com>
12980 L:      linux-arm-kernel@axis.com
12981 L:      linux-pci@vger.kernel.org
12982 S:      Maintained
12983 F:      Documentation/devicetree/bindings/pci/axis,artpec*
12984 F:      drivers/pci/controller/dwc/*artpec*
12985
12986 PCIE DRIVER FOR CAVIUM THUNDERX
12987 M:      Robert Richter <rrichter@marvell.com>
12988 L:      linux-pci@vger.kernel.org
12989 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12990 S:      Supported
12991 F:      drivers/pci/controller/pci-thunder-*
12992
12993 PCIE DRIVER FOR HISILICON
12994 M:      Zhou Wang <wangzhou1@hisilicon.com>
12995 L:      linux-pci@vger.kernel.org
12996 S:      Maintained
12997 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
12998 F:      drivers/pci/controller/dwc/pcie-hisi.c
12999
13000 PCIE DRIVER FOR HISILICON KIRIN
13001 M:      Xiaowei Song <songxiaowei@hisilicon.com>
13002 M:      Binghui Wang <wangbinghui@hisilicon.com>
13003 L:      linux-pci@vger.kernel.org
13004 S:      Maintained
13005 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13006 F:      drivers/pci/controller/dwc/pcie-kirin.c
13007
13008 PCIE DRIVER FOR HISILICON STB
13009 M:      Shawn Guo <shawn.guo@linaro.org>
13010 L:      linux-pci@vger.kernel.org
13011 S:      Maintained
13012 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13013 F:      drivers/pci/controller/dwc/pcie-histb.c
13014
13015 PCIE DRIVER FOR MEDIATEK
13016 M:      Ryder Lee <ryder.lee@mediatek.com>
13017 L:      linux-pci@vger.kernel.org
13018 L:      linux-mediatek@lists.infradead.org
13019 S:      Supported
13020 F:      Documentation/devicetree/bindings/pci/mediatek*
13021 F:      drivers/pci/controller/*mediatek*
13022
13023 PCIE DRIVER FOR QUALCOMM MSM
13024 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
13025 L:      linux-pci@vger.kernel.org
13026 L:      linux-arm-msm@vger.kernel.org
13027 S:      Maintained
13028 F:      drivers/pci/controller/dwc/*qcom*
13029
13030 PCIE DRIVER FOR ROCKCHIP
13031 M:      Shawn Lin <shawn.lin@rock-chips.com>
13032 L:      linux-pci@vger.kernel.org
13033 L:      linux-rockchip@lists.infradead.org
13034 S:      Maintained
13035 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13036 F:      drivers/pci/controller/pcie-rockchip*
13037
13038 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13039 M:      Linus Walleij <linus.walleij@linaro.org>
13040 L:      linux-pci@vger.kernel.org
13041 S:      Maintained
13042 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13043 F:      drivers/pci/controller/pci-v3-semi.c
13044
13045 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13046 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
13047 L:      linux-pci@vger.kernel.org
13048 S:      Maintained
13049 F:      Documentation/devicetree/bindings/pci/uniphier-pcie.txt
13050 F:      drivers/pci/controller/dwc/pcie-uniphier.c
13051
13052 PCIE DRIVER FOR ST SPEAR13XX
13053 M:      Pratyush Anand <pratyush.anand@gmail.com>
13054 L:      linux-pci@vger.kernel.org
13055 S:      Maintained
13056 F:      drivers/pci/controller/dwc/*spear*
13057
13058 PCMCIA SUBSYSTEM
13059 M:      Dominik Brodowski <linux@dominikbrodowski.net>
13060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13061 S:      Odd Fixes
13062 F:      Documentation/pcmcia/
13063 F:      tools/pcmcia/
13064 F:      drivers/pcmcia/
13065 F:      include/pcmcia/
13066
13067 PCNET32 NETWORK DRIVER
13068 M:      Don Fry <pcnet32@frontier.com>
13069 L:      netdev@vger.kernel.org
13070 S:      Maintained
13071 F:      drivers/net/ethernet/amd/pcnet32.c
13072
13073 PCRYPT PARALLEL CRYPTO ENGINE
13074 M:      Steffen Klassert <steffen.klassert@secunet.com>
13075 L:      linux-crypto@vger.kernel.org
13076 S:      Maintained
13077 F:      crypto/pcrypt.c
13078 F:      include/crypto/pcrypt.h
13079
13080 PEAQ WMI HOTKEYS DRIVER
13081 M:      Hans de Goede <hdegoede@redhat.com>
13082 L:      platform-driver-x86@vger.kernel.org
13083 S:      Maintained
13084 F:      drivers/platform/x86/peaq-wmi.c
13085
13086 PENSANDO ETHERNET DRIVERS
13087 M:      Shannon Nelson <snelson@pensando.io>
13088 M:      Pensando Drivers <drivers@pensando.io>
13089 L:      netdev@vger.kernel.org
13090 S:      Supported
13091 F:      Documentation/networking/device_drivers/pensando/ionic.rst
13092 F:      drivers/net/ethernet/pensando/
13093
13094 PER-CPU MEMORY ALLOCATOR
13095 M:      Dennis Zhou <dennis@kernel.org>
13096 M:      Tejun Heo <tj@kernel.org>
13097 M:      Christoph Lameter <cl@linux.com>
13098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13099 S:      Maintained
13100 F:      include/linux/percpu*.h
13101 F:      mm/percpu*.c
13102 F:      arch/*/include/asm/percpu.h
13103
13104 PER-TASK DELAY ACCOUNTING
13105 M:      Balbir Singh <bsingharora@gmail.com>
13106 S:      Maintained
13107 F:      include/linux/delayacct.h
13108 F:      kernel/delayacct.c
13109
13110 PERFORMANCE EVENTS SUBSYSTEM
13111 M:      Peter Zijlstra <peterz@infradead.org>
13112 M:      Ingo Molnar <mingo@redhat.com>
13113 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
13114 R:      Mark Rutland <mark.rutland@arm.com>
13115 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
13116 R:      Jiri Olsa <jolsa@redhat.com>
13117 R:      Namhyung Kim <namhyung@kernel.org>
13118 L:      linux-kernel@vger.kernel.org
13119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13120 S:      Supported
13121 F:      kernel/events/*
13122 F:      include/linux/perf_event.h
13123 F:      include/uapi/linux/perf_event.h
13124 F:      arch/*/kernel/perf_event*.c
13125 F:      arch/*/kernel/*/perf_event*.c
13126 F:      arch/*/kernel/*/*/perf_event*.c
13127 F:      arch/*/include/asm/perf_event.h
13128 F:      arch/*/kernel/perf_callchain.c
13129 F:      arch/*/events/*
13130 F:      arch/*/events/*/*
13131 F:      tools/perf/
13132
13133 PERFORMANCE EVENTS SUBSYSTEM ARM64 PMU EVENTS
13134 R:      John Garry <john.garry@huawei.com>
13135 R:      Will Deacon <will@kernel.org>
13136 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13137 S:      Supported
13138 F:      tools/perf/pmu-events/arch/arm64/
13139
13140 PERSONALITY HANDLING
13141 M:      Christoph Hellwig <hch@infradead.org>
13142 L:      linux-abi-devel@lists.sourceforge.net
13143 S:      Maintained
13144 F:      include/linux/personality.h
13145 F:      include/uapi/linux/personality.h
13146
13147 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13148 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13149 L:      linux-input@vger.kernel.org
13150 S:      Maintained
13151 F:      Documentation/input/devices/pxrc.rst
13152 F:      drivers/input/joystick/pxrc.c
13153
13154 FLYSKY FSIA6B RC RECEIVER
13155 M:      Markus Koch <markus@notsyncing.net>
13156 L:      linux-input@vger.kernel.org
13157 S:      Maintained
13158 F:      drivers/input/joystick/fsia6b.c
13159
13160 PHONET PROTOCOL
13161 M:      Remi Denis-Courmont <courmisch@gmail.com>
13162 S:      Supported
13163 F:      Documentation/networking/phonet.txt
13164 F:      include/linux/phonet.h
13165 F:      include/net/phonet/
13166 F:      include/uapi/linux/phonet.h
13167 F:      net/phonet/
13168
13169 PHRAM MTD DRIVER
13170 M:      Joern Engel <joern@lazybastard.org>
13171 L:      linux-mtd@lists.infradead.org
13172 S:      Maintained
13173 F:      drivers/mtd/devices/phram.c
13174
13175 PICOLCD HID DRIVER
13176 M:      Bruno Prémont <bonbons@linux-vserver.org>
13177 L:      linux-input@vger.kernel.org
13178 S:      Maintained
13179 F:      drivers/hid/hid-picolcd*
13180
13181 PICOXCELL SUPPORT
13182 M:      Jamie Iles <jamie@jamieiles.com>
13183 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13184 T:      git git://github.com/jamieiles/linux-2.6-ji.git
13185 S:      Supported
13186 F:      arch/arm/boot/dts/picoxcell*
13187 F:      arch/arm/mach-picoxcell/
13188 F:      drivers/crypto/picoxcell*
13189
13190 PIDFD API
13191 M:      Christian Brauner <christian@brauner.io>
13192 L:      linux-kernel@vger.kernel.org
13193 S:      Maintained
13194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
13195 F:      samples/pidfd/
13196 F:      tools/testing/selftests/pidfd/
13197 F:      tools/testing/selftests/clone3/
13198 K:      (?i)pidfd
13199 K:      (?i)clone3
13200 K:      \b(clone_args|kernel_clone_args)\b
13201
13202 PIN CONTROL SUBSYSTEM
13203 M:      Linus Walleij <linus.walleij@linaro.org>
13204 L:      linux-gpio@vger.kernel.org
13205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13206 S:      Maintained
13207 F:      Documentation/devicetree/bindings/pinctrl/
13208 F:      Documentation/driver-api/pinctl.rst
13209 F:      drivers/pinctrl/
13210 F:      include/linux/pinctrl/
13211
13212 PIN CONTROLLER - MICROCHIP AT91
13213 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13214 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13215 L:      linux-gpio@vger.kernel.org
13216 S:      Supported
13217 F:      drivers/pinctrl/pinctrl-at91*
13218 F:      drivers/gpio/gpio-sama5d2-piobu.c
13219
13220 PIN CONTROLLER - FREESCALE
13221 M:      Dong Aisheng <aisheng.dong@nxp.com>
13222 M:      Fabio Estevam <festevam@gmail.com>
13223 M:      Shawn Guo <shawnguo@kernel.org>
13224 M:      Stefan Agner <stefan@agner.ch>
13225 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
13226 L:      linux-gpio@vger.kernel.org
13227 S:      Maintained
13228 F:      drivers/pinctrl/freescale/
13229 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
13230
13231 PIN CONTROLLER - INTEL
13232 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
13233 M:      Andy Shevchenko <andy@kernel.org>
13234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13235 S:      Maintained
13236 F:      drivers/pinctrl/intel/
13237
13238 PIN CONTROLLER - MEDIATEK
13239 M:      Sean Wang <sean.wang@kernel.org>
13240 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13241 S:      Maintained
13242 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13243 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13244 F:      drivers/pinctrl/mediatek/
13245
13246 PIN CONTROLLER - QUALCOMM
13247 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13248 S:      Maintained
13249 L:      linux-arm-msm@vger.kernel.org
13250 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
13251 F:      drivers/pinctrl/qcom/
13252
13253 PIN CONTROLLER - RENESAS
13254 M:      Geert Uytterhoeven <geert+renesas@glider.be>
13255 L:      linux-renesas-soc@vger.kernel.org
13256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
13257 S:      Maintained
13258 F:      drivers/pinctrl/pinctrl-rz*
13259 F:      drivers/pinctrl/sh-pfc/
13260
13261 PIN CONTROLLER - SAMSUNG
13262 M:      Tomasz Figa <tomasz.figa@gmail.com>
13263 M:      Krzysztof Kozlowski <krzk@kernel.org>
13264 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13265 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13266 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
13267 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
13268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
13269 S:      Maintained
13270 F:      drivers/pinctrl/samsung/
13271 F:      include/dt-bindings/pinctrl/samsung.h
13272 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
13273
13274 PIN CONTROLLER - SINGLE
13275 M:      Tony Lindgren <tony@atomide.com>
13276 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
13277 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13278 L:      linux-omap@vger.kernel.org
13279 S:      Maintained
13280 F:      drivers/pinctrl/pinctrl-single.c
13281
13282 PIN CONTROLLER - ST SPEAR
13283 M:      Viresh Kumar <vireshk@kernel.org>
13284 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13285 W:      http://www.st.com/spear
13286 S:      Maintained
13287 F:      drivers/pinctrl/spear/
13288
13289 PISTACHIO SOC SUPPORT
13290 M:      James Hartley <james.hartley@sondrel.com>
13291 L:      linux-mips@vger.kernel.org
13292 S:      Odd Fixes
13293 F:      arch/mips/pistachio/
13294 F:      arch/mips/include/asm/mach-pistachio/
13295 F:      arch/mips/boot/dts/img/pistachio*
13296 F:      arch/mips/configs/pistachio*_defconfig
13297
13298 PKTCDVD DRIVER
13299 S:      Orphan
13300 M:      linux-block@vger.kernel.org
13301 F:      drivers/block/pktcdvd.c
13302 F:      include/linux/pktcdvd.h
13303 F:      include/uapi/linux/pktcdvd.h
13304
13305 PKUNITY SOC DRIVERS
13306 M:      Guan Xuetao <gxt@pku.edu.cn>
13307 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
13308 S:      Maintained
13309 T:      git git://github.com/gxt/linux.git
13310 F:      drivers/input/serio/i8042-unicore32io.h
13311 F:      drivers/i2c/busses/i2c-puv3.c
13312 F:      drivers/video/fbdev/fb-puv3.c
13313 F:      drivers/rtc/rtc-puv3.c
13314
13315 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
13316 M:      Tomasz Duszynski <tduszyns@gmail.com>
13317 S:      Maintained
13318 F:      drivers/iio/chemical/pms7003.c
13319 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
13320
13321 PLX DMA DRIVER
13322 M:      Logan Gunthorpe <logang@deltatee.com>
13323 S:      Maintained
13324 F:      drivers/dma/plx_dma.c
13325
13326 PMBUS HARDWARE MONITORING DRIVERS
13327 M:      Guenter Roeck <linux@roeck-us.net>
13328 L:      linux-hwmon@vger.kernel.org
13329 W:      http://hwmon.wiki.kernel.org/
13330 W:      http://www.roeck-us.net/linux/drivers/
13331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
13332 S:      Maintained
13333 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
13334 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
13335 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
13336 F:      Documentation/hwmon/adm1275.rst
13337 F:      Documentation/hwmon/ibm-cffps.rst
13338 F:      Documentation/hwmon/ir35221.rst
13339 F:      Documentation/hwmon/lm25066.rst
13340 F:      Documentation/hwmon/ltc2978.rst
13341 F:      Documentation/hwmon/ltc3815.rst
13342 F:      Documentation/hwmon/max16064.rst
13343 F:      Documentation/hwmon/max20751.rst
13344 F:      Documentation/hwmon/max31785.rst
13345 F:      Documentation/hwmon/max34440.rst
13346 F:      Documentation/hwmon/max8688.rst
13347 F:      Documentation/hwmon/pmbus.rst
13348 F:      Documentation/hwmon/pmbus-core.rst
13349 F:      Documentation/hwmon/tps40422.rst
13350 F:      Documentation/hwmon/ucd9000.rst
13351 F:      Documentation/hwmon/ucd9200.rst
13352 F:      Documentation/hwmon/zl6100.rst
13353 F:      drivers/hwmon/pmbus/
13354 F:      include/linux/pmbus.h
13355
13356 PMC SIERRA MaxRAID DRIVER
13357 L:      linux-scsi@vger.kernel.org
13358 W:      http://www.pmc-sierra.com/
13359 S:      Orphan
13360 F:      drivers/scsi/pmcraid.*
13361
13362 PMC SIERRA PM8001 DRIVER
13363 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
13364 L:      linux-scsi@vger.kernel.org
13365 S:      Supported
13366 F:      drivers/scsi/pm8001/
13367
13368 PM-GRAPH UTILITY
13369 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
13370 L:      linux-pm@vger.kernel.org
13371 W:      https://01.org/pm-graph
13372 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
13373 T:      git git://github.com/intel/pm-graph
13374 S:      Supported
13375 F:      tools/power/pm-graph
13376
13377 PNI RM3100 IIO DRIVER
13378 M:      Song Qiang <songqiang1304521@gmail.com>
13379 L:      linux-iio@vger.kernel.org
13380 S:      Maintained
13381 F:      drivers/iio/magnetometer/rm3100*
13382 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
13383
13384 PNP SUPPORT
13385 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
13386 L:      linux-acpi@vger.kernel.org
13387 S:      Maintained
13388 F:      include/linux/pnp.h
13389 F:      drivers/pnp/
13390
13391 POSIX CLOCKS and TIMERS
13392 M:      Thomas Gleixner <tglx@linutronix.de>
13393 L:      linux-kernel@vger.kernel.org
13394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13395 S:      Maintained
13396 F:      fs/timerfd.c
13397 F:      include/linux/timer*
13398 F:      include/linux/time_namespace.h
13399 F:      kernel/time/namespace.c
13400 F:      kernel/time/*timer*
13401
13402 POWER MANAGEMENT CORE
13403 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
13404 L:      linux-pm@vger.kernel.org
13405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
13406 B:      https://bugzilla.kernel.org
13407 S:      Supported
13408 F:      drivers/base/power/
13409 F:      include/linux/pm.h
13410 F:      include/linux/pm_*
13411 F:      include/linux/powercap.h
13412 F:      include/linux/intel_rapl.h
13413 F:      drivers/powercap/
13414 F:      kernel/configs/nopm.config
13415
13416 POWER STATE COORDINATION INTERFACE (PSCI)
13417 M:      Mark Rutland <mark.rutland@arm.com>
13418 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13419 L:      linux-arm-kernel@lists.infradead.org
13420 S:      Maintained
13421 F:      drivers/firmware/psci/
13422 F:      include/linux/psci.h
13423 F:      include/uapi/linux/psci.h
13424
13425 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
13426 M:      Sebastian Reichel <sre@kernel.org>
13427 L:      linux-pm@vger.kernel.org
13428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13429 S:      Maintained
13430 F:      Documentation/ABI/testing/sysfs-class-power
13431 F:      Documentation/devicetree/bindings/power/supply/
13432 F:      include/linux/power_supply.h
13433 F:      drivers/power/supply/
13434
13435 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
13436 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
13437 L:      linuxppc-dev@lists.ozlabs.org
13438 S:      Maintained
13439 F:      drivers/char/powernv-op-panel.c
13440
13441 PPP OVER ATM (RFC 2364)
13442 M:      Mitchell Blank Jr <mitch@sfgoth.com>
13443 S:      Maintained
13444 F:      net/atm/pppoatm.c
13445 F:      include/uapi/linux/atmppp.h
13446
13447 PPP OVER ETHERNET
13448 M:      Michal Ostrowski <mostrows@earthlink.net>
13449 S:      Maintained
13450 F:      drivers/net/ppp/pppoe.c
13451 F:      drivers/net/ppp/pppox.c
13452
13453 PPP OVER L2TP
13454 M:      James Chapman <jchapman@katalix.com>
13455 S:      Maintained
13456 F:      net/l2tp/l2tp_ppp.c
13457 F:      include/linux/if_pppol2tp.h
13458 F:      include/uapi/linux/if_pppol2tp.h
13459
13460 PPP PROTOCOL DRIVERS AND COMPRESSORS
13461 M:      Paul Mackerras <paulus@samba.org>
13462 L:      linux-ppp@vger.kernel.org
13463 S:      Maintained
13464 F:      drivers/net/ppp/ppp_*
13465
13466 PPS SUPPORT
13467 M:      Rodolfo Giometti <giometti@enneenne.com>
13468 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
13469 L:      linuxpps@ml.enneenne.com (subscribers-only)
13470 S:      Maintained
13471 F:      Documentation/driver-api/pps.rst
13472 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
13473 F:      Documentation/ABI/testing/sysfs-pps
13474 F:      drivers/pps/
13475 F:      include/linux/pps*.h
13476 F:      include/uapi/linux/pps.h
13477
13478 PPTP DRIVER
13479 M:      Dmitry Kozlov <xeb@mail.ru>
13480 L:      netdev@vger.kernel.org
13481 S:      Maintained
13482 F:      drivers/net/ppp/pptp.c
13483 W:      http://sourceforge.net/projects/accel-pptp
13484
13485 PRINTK
13486 M:      Petr Mladek <pmladek@suse.com>
13487 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
13488 R:      Steven Rostedt <rostedt@goodmis.org>
13489 S:      Maintained
13490 F:      kernel/printk/
13491 F:      include/linux/printk.h
13492
13493 PRISM54 WIRELESS DRIVER
13494 M:      Luis Chamberlain <mcgrof@kernel.org>
13495 L:      linux-wireless@vger.kernel.org
13496 W:      http://wireless.kernel.org/en/users/Drivers/p54
13497 S:      Obsolete
13498 F:      drivers/net/wireless/intersil/prism54/
13499
13500 PROC FILESYSTEM
13501 R:      Alexey Dobriyan <adobriyan@gmail.com>
13502 L:      linux-kernel@vger.kernel.org
13503 L:      linux-fsdevel@vger.kernel.org
13504 S:      Maintained
13505 F:      fs/proc/
13506 F:      include/linux/proc_fs.h
13507 F:      tools/testing/selftests/proc/
13508 F:      Documentation/filesystems/proc.rst
13509
13510 PROC SYSCTL
13511 M:      Luis Chamberlain <mcgrof@kernel.org>
13512 M:      Kees Cook <keescook@chromium.org>
13513 M:      Iurii Zaikin <yzaikin@google.com>
13514 L:      linux-kernel@vger.kernel.org
13515 L:      linux-fsdevel@vger.kernel.org
13516 S:      Maintained
13517 F:      fs/proc/proc_sysctl.c
13518 F:      include/linux/sysctl.h
13519 F:      kernel/sysctl.c
13520 F:      kernel/sysctl-test.c
13521 F:      tools/testing/selftests/sysctl/
13522
13523 PS3 NETWORK SUPPORT
13524 M:      Geoff Levand <geoff@infradead.org>
13525 L:      netdev@vger.kernel.org
13526 L:      linuxppc-dev@lists.ozlabs.org
13527 S:      Maintained
13528 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
13529
13530 PS3 PLATFORM SUPPORT
13531 M:      Geoff Levand <geoff@infradead.org>
13532 L:      linuxppc-dev@lists.ozlabs.org
13533 S:      Maintained
13534 F:      arch/powerpc/boot/ps3*
13535 F:      arch/powerpc/include/asm/lv1call.h
13536 F:      arch/powerpc/include/asm/ps3*.h
13537 F:      arch/powerpc/platforms/ps3/
13538 F:      drivers/*/ps3*
13539 F:      drivers/ps3/
13540 F:      drivers/rtc/rtc-ps3.c
13541 F:      drivers/usb/host/*ps3.c
13542 F:      sound/ppc/snd_ps3*
13543
13544 PS3VRAM DRIVER
13545 M:      Jim Paris <jim@jtan.com>
13546 M:      Geoff Levand <geoff@infradead.org>
13547 L:      linuxppc-dev@lists.ozlabs.org
13548 S:      Maintained
13549 F:      drivers/block/ps3vram.c
13550
13551 PSAMPLE PACKET SAMPLING SUPPORT
13552 M:      Yotam Gigi <yotam.gi@gmail.com>
13553 S:      Maintained
13554 F:      net/psample
13555 F:      include/net/psample.h
13556 F:      include/uapi/linux/psample.h
13557
13558 PRESSURE STALL INFORMATION (PSI)
13559 M:      Johannes Weiner <hannes@cmpxchg.org>
13560 S:      Maintained
13561 F:      kernel/sched/psi.c
13562 F:      include/linux/psi*
13563
13564 PSTORE FILESYSTEM
13565 M:      Kees Cook <keescook@chromium.org>
13566 M:      Anton Vorontsov <anton@enomsg.org>
13567 M:      Colin Cross <ccross@android.com>
13568 M:      Tony Luck <tony.luck@intel.com>
13569 S:      Maintained
13570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
13571 F:      fs/pstore/
13572 F:      include/linux/pstore*
13573 F:      drivers/firmware/efi/efi-pstore.c
13574 F:      drivers/acpi/apei/erst.c
13575 F:      Documentation/admin-guide/ramoops.rst
13576 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
13577 K:      \b(pstore|ramoops)
13578
13579 PTP HARDWARE CLOCK SUPPORT
13580 M:      Richard Cochran <richardcochran@gmail.com>
13581 L:      netdev@vger.kernel.org
13582 S:      Maintained
13583 W:      http://linuxptp.sourceforge.net/
13584 F:      Documentation/ABI/testing/sysfs-ptp
13585 F:      Documentation/driver-api/ptp.rst
13586 F:      drivers/net/phy/dp83640*
13587 F:      drivers/ptp/*
13588 F:      include/linux/ptp_cl*
13589
13590 PTRACE SUPPORT
13591 M:      Oleg Nesterov <oleg@redhat.com>
13592 S:      Maintained
13593 F:      include/asm-generic/syscall.h
13594 F:      include/linux/ptrace.h
13595 F:      include/linux/regset.h
13596 F:      include/linux/tracehook.h
13597 F:      include/uapi/linux/ptrace.h
13598 F:      include/uapi/linux/ptrace.h
13599 F:      kernel/ptrace.c
13600 F:      arch/*/ptrace*.c
13601 F:      arch/*/*/ptrace*.c
13602 F:      arch/*/include/asm/ptrace*.h
13603
13604 PULSE8-CEC DRIVER
13605 M:      Hans Verkuil <hverkuil@xs4all.nl>
13606 L:      linux-media@vger.kernel.org
13607 T:      git git://linuxtv.org/media_tree.git
13608 S:      Maintained
13609 F:      drivers/media/usb/pulse8-cec/*
13610 F:      Documentation/media/cec-drivers/pulse8-cec.rst
13611
13612 PVRUSB2 VIDEO4LINUX DRIVER
13613 M:      Mike Isely <isely@pobox.com>
13614 L:      pvrusb2@isely.net       (subscribers-only)
13615 L:      linux-media@vger.kernel.org
13616 W:      http://www.isely.net/pvrusb2/
13617 T:      git git://linuxtv.org/media_tree.git
13618 S:      Maintained
13619 F:      Documentation/media/v4l-drivers/pvrusb2*
13620 F:      drivers/media/usb/pvrusb2/
13621
13622 PWC WEBCAM DRIVER
13623 M:      Hans Verkuil <hverkuil@xs4all.nl>
13624 L:      linux-media@vger.kernel.org
13625 T:      git git://linuxtv.org/media_tree.git
13626 S:      Odd Fixes
13627 F:      drivers/media/usb/pwc/*
13628 F:      include/trace/events/pwc.h
13629
13630 PWM FAN DRIVER
13631 M:      Kamil Debski <kamil@wypas.org>
13632 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
13633 L:      linux-hwmon@vger.kernel.org
13634 S:      Supported
13635 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
13636 F:      Documentation/hwmon/pwm-fan.rst
13637 F:      drivers/hwmon/pwm-fan.c
13638
13639 PWM IR Transmitter
13640 M:      Sean Young <sean@mess.org>
13641 L:      linux-media@vger.kernel.org
13642 S:      Maintained
13643 F:      drivers/media/rc/pwm-ir-tx.c
13644
13645 PWM SUBSYSTEM
13646 M:      Thierry Reding <thierry.reding@gmail.com>
13647 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
13648 L:      linux-pwm@vger.kernel.org
13649 S:      Maintained
13650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
13651 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
13652 F:      Documentation/driver-api/pwm.rst
13653 F:      Documentation/devicetree/bindings/pwm/
13654 F:      include/linux/pwm.h
13655 F:      drivers/pwm/
13656 F:      drivers/video/backlight/pwm_bl.c
13657 F:      include/linux/pwm_backlight.h
13658 F:      drivers/gpio/gpio-mvebu.c
13659 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
13660 K:      pwm_(config|apply_state|ops)
13661
13662 PXA GPIO DRIVER
13663 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13664 L:      linux-gpio@vger.kernel.org
13665 S:      Maintained
13666 F:      drivers/gpio/gpio-pxa.c
13667
13668 PXA MMCI DRIVER
13669 S:      Orphan
13670
13671 PXA RTC DRIVER
13672 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13673 L:      linux-rtc@vger.kernel.org
13674 S:      Maintained
13675
13676 PXA2xx/PXA3xx SUPPORT
13677 M:      Daniel Mack <daniel@zonque.org>
13678 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
13679 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13680 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13681 T:      git git://github.com/hzhuang1/linux.git
13682 T:      git git://github.com/rjarzmik/linux.git
13683 S:      Maintained
13684 F:      arch/arm/boot/dts/pxa*
13685 F:      arch/arm/mach-pxa/
13686 F:      drivers/dma/pxa*
13687 F:      drivers/pcmcia/pxa2xx*
13688 F:      drivers/pinctrl/pxa/
13689 F:      drivers/spi/spi-pxa2xx*
13690 F:      drivers/usb/gadget/udc/pxa2*
13691 F:      include/sound/pxa2xx-lib.h
13692 F:      sound/arm/pxa*
13693 F:      sound/soc/pxa/
13694
13695 QAT DRIVER
13696 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
13697 L:      qat-linux@intel.com
13698 S:      Supported
13699 F:      drivers/crypto/qat/
13700
13701 QCOM AUDIO (ASoC) DRIVERS
13702 M:      Patrick Lai <plai@codeaurora.org>
13703 M:      Banajit Goswami <bgoswami@codeaurora.org>
13704 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13705 S:      Supported
13706 F:      sound/soc/qcom/
13707
13708 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
13709 M:      Gabriel Somlo <somlo@cmu.edu>
13710 M:      "Michael S. Tsirkin" <mst@redhat.com>
13711 L:      qemu-devel@nongnu.org
13712 S:      Maintained
13713 F:      drivers/firmware/qemu_fw_cfg.c
13714 F:      include/uapi/linux/qemu_fw_cfg.h
13715
13716 QIB DRIVER
13717 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
13718 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
13719 L:      linux-rdma@vger.kernel.org
13720 S:      Supported
13721 F:      drivers/infiniband/hw/qib/
13722
13723 QLOGIC QL41xxx FCOE DRIVER
13724 M:      QLogic-Storage-Upstream@cavium.com
13725 L:      linux-scsi@vger.kernel.org
13726 S:      Supported
13727 F:      drivers/scsi/qedf/
13728
13729 QLOGIC QL41xxx ISCSI DRIVER
13730 M:      QLogic-Storage-Upstream@cavium.com
13731 L:      linux-scsi@vger.kernel.org
13732 S:      Supported
13733 F:      drivers/scsi/qedi/
13734
13735 QLOGIC QL4xxx ETHERNET DRIVER
13736 M:      Ariel Elior <aelior@marvell.com>
13737 M:      GR-everest-linux-l2@marvell.com
13738 L:      netdev@vger.kernel.org
13739 S:      Supported
13740 F:      drivers/net/ethernet/qlogic/qed/
13741 F:      include/linux/qed/
13742 F:      drivers/net/ethernet/qlogic/qede/
13743
13744 QLOGIC QL4xxx RDMA DRIVER
13745 M:      Michal Kalderon <mkalderon@marvell.com>
13746 M:      Ariel Elior <aelior@marvell.com>
13747 L:      linux-rdma@vger.kernel.org
13748 S:      Supported
13749 F:      drivers/infiniband/hw/qedr/
13750 F:      include/uapi/rdma/qedr-abi.h
13751
13752 QLOGIC QLA1280 SCSI DRIVER
13753 M:      Michael Reed <mdr@sgi.com>
13754 L:      linux-scsi@vger.kernel.org
13755 S:      Maintained
13756 F:      drivers/scsi/qla1280.[ch]
13757
13758 QLOGIC QLA2XXX FC-SCSI DRIVER
13759 M:      hmadhani@marvell.com
13760 L:      linux-scsi@vger.kernel.org
13761 S:      Supported
13762 F:      Documentation/scsi/LICENSE.qla2xxx
13763 F:      drivers/scsi/qla2xxx/
13764
13765 QLOGIC QLA3XXX NETWORK DRIVER
13766 M:      GR-Linux-NIC-Dev@marvell.com
13767 L:      netdev@vger.kernel.org
13768 S:      Supported
13769 F:      Documentation/networking/device_drivers/qlogic/LICENSE.qla3xxx
13770 F:      drivers/net/ethernet/qlogic/qla3xxx.*
13771
13772 QLOGIC QLA4XXX iSCSI DRIVER
13773 M:      QLogic-Storage-Upstream@qlogic.com
13774 L:      linux-scsi@vger.kernel.org
13775 S:      Supported
13776 F:      Documentation/scsi/LICENSE.qla4xxx
13777 F:      drivers/scsi/qla4xxx/
13778
13779 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
13780 M:      Shahed Shaikh <shshaikh@marvell.com>
13781 M:      Manish Chopra <manishc@marvell.com>
13782 M:      GR-Linux-NIC-Dev@marvell.com
13783 L:      netdev@vger.kernel.org
13784 S:      Supported
13785 F:      drivers/net/ethernet/qlogic/qlcnic/
13786
13787 QLOGIC QLGE 10Gb ETHERNET DRIVER
13788 M:      Manish Chopra <manishc@marvell.com>
13789 M:      GR-Linux-NIC-Dev@marvell.com
13790 L:      netdev@vger.kernel.org
13791 S:      Supported
13792 F:      drivers/staging/qlge/
13793
13794 QM1D1B0004 MEDIA DRIVER
13795 M:      Akihiro Tsukada <tskd08@gmail.com>
13796 L:      linux-media@vger.kernel.org
13797 S:      Odd Fixes
13798 F:      drivers/media/tuners/qm1d1b0004*
13799
13800 QM1D1C0042 MEDIA DRIVER
13801 M:      Akihiro Tsukada <tskd08@gmail.com>
13802 L:      linux-media@vger.kernel.org
13803 S:      Odd Fixes
13804 F:      drivers/media/tuners/qm1d1c0042*
13805
13806 QNX4 FILESYSTEM
13807 M:      Anders Larsen <al@alarsen.net>
13808 W:      http://www.alarsen.net/linux/qnx4fs/
13809 S:      Maintained
13810 F:      fs/qnx4/
13811 F:      include/uapi/linux/qnx4_fs.h
13812 F:      include/uapi/linux/qnxtypes.h
13813
13814 QORIQ DPAA2 FSL-MC BUS DRIVER
13815 M:      Stuart Yoder <stuyoder@gmail.com>
13816 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
13817 L:      linux-kernel@vger.kernel.org
13818 S:      Maintained
13819 F:      drivers/bus/fsl-mc/
13820 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
13821 F:      Documentation/networking/device_drivers/freescale/dpaa2/overview.rst
13822
13823 QT1010 MEDIA DRIVER
13824 M:      Antti Palosaari <crope@iki.fi>
13825 L:      linux-media@vger.kernel.org
13826 W:      https://linuxtv.org
13827 W:      http://palosaari.fi/linux/
13828 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13829 T:      git git://linuxtv.org/anttip/media_tree.git
13830 S:      Maintained
13831 F:      drivers/media/tuners/qt1010*
13832
13833 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
13834 M:      Kalle Valo <kvalo@codeaurora.org>
13835 L:      ath10k@lists.infradead.org
13836 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
13837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
13838 S:      Supported
13839 F:      drivers/net/wireless/ath/ath10k/
13840
13841 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
13842 M:      Kalle Valo <kvalo@codeaurora.org>
13843 L:      ath11k@lists.infradead.org
13844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
13845 S:      Supported
13846 F:      drivers/net/wireless/ath/ath11k/
13847
13848 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
13849 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
13850 L:      linux-wireless@vger.kernel.org
13851 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
13852 S:      Supported
13853 F:      drivers/net/wireless/ath/ath9k/
13854
13855 QUALCOMM CAMERA SUBSYSTEM DRIVER
13856 M:      Todor Tomov <todor.too@gmail.com>
13857 L:      linux-media@vger.kernel.org
13858 S:      Maintained
13859 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
13860 F:      Documentation/media/v4l-drivers/qcom_camss.rst
13861 F:      drivers/media/platform/qcom/camss/
13862
13863 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
13864 M:      Ilia Lin <ilia.lin@kernel.org>
13865 L:      linux-pm@vger.kernel.org
13866 S:      Maintained
13867 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
13868 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
13869
13870 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
13871 M:      Niklas Cassel <nks@flawful.org>
13872 L:      linux-pm@vger.kernel.org
13873 L:      linux-arm-msm@vger.kernel.org
13874 S:      Maintained
13875 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
13876 F:      drivers/power/avs/qcom-cpr.c
13877
13878 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
13879 M:      Timur Tabi <timur@kernel.org>
13880 L:      netdev@vger.kernel.org
13881 S:      Maintained
13882 F:      drivers/net/ethernet/qualcomm/emac/
13883
13884 QUALCOMM ETHQOS ETHERNET DRIVER
13885 M:      Vinod Koul <vkoul@kernel.org>
13886 L:      netdev@vger.kernel.org
13887 S:      Maintained
13888 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
13889 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
13890
13891 QUALCOMM GENERIC INTERFACE I2C DRIVER
13892 M:      Alok Chauhan <alokc@codeaurora.org>
13893 L:      linux-i2c@vger.kernel.org
13894 L:      linux-arm-msm@vger.kernel.org
13895 S:      Supported
13896 F:      drivers/i2c/busses/i2c-qcom-geni.c
13897
13898 QUALCOMM HEXAGON ARCHITECTURE
13899 M:      Brian Cain <bcain@codeaurora.org>
13900 L:      linux-hexagon@vger.kernel.org
13901 S:      Supported
13902 F:      arch/hexagon/
13903
13904 QUALCOMM HIDMA DRIVER
13905 M:      Sinan Kaya <okaya@kernel.org>
13906 L:      linux-arm-kernel@lists.infradead.org
13907 L:      linux-arm-msm@vger.kernel.org
13908 L:      dmaengine@vger.kernel.org
13909 S:      Supported
13910 F:      drivers/dma/qcom/hidma*
13911
13912 QUALCOMM IOMMU
13913 M:      Rob Clark <robdclark@gmail.com>
13914 L:      iommu@lists.linux-foundation.org
13915 L:      linux-arm-msm@vger.kernel.org
13916 S:      Maintained
13917 F:      drivers/iommu/qcom_iommu.c
13918
13919 QUALCOMM RMNET DRIVER
13920 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
13921 M:      Sean Tranchetti <stranche@codeaurora.org>
13922 L:      netdev@vger.kernel.org
13923 S:      Maintained
13924 F:      drivers/net/ethernet/qualcomm/rmnet/
13925 F:      Documentation/networking/device_drivers/qualcomm/rmnet.txt
13926 F:      include/linux/if_rmnet.h
13927
13928 QUALCOMM TSENS THERMAL DRIVER
13929 M:      Amit Kucheria <amit.kucheria@linaro.org>
13930 L:      linux-pm@vger.kernel.org
13931 L:      linux-arm-msm@vger.kernel.org
13932 S:      Maintained
13933 F:      drivers/thermal/qcom/
13934 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
13935
13936 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
13937 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
13938 L:      linux-media@vger.kernel.org
13939 L:      linux-arm-msm@vger.kernel.org
13940 T:      git git://linuxtv.org/media_tree.git
13941 S:      Maintained
13942 F:      drivers/media/platform/qcom/venus/
13943 F:      Documentation/devicetree/bindings/media/*venus*
13944
13945 QUALCOMM WCN36XX WIRELESS DRIVER
13946 M:      Kalle Valo <kvalo@codeaurora.org>
13947 L:      wcn36xx@lists.infradead.org
13948 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
13949 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
13950 S:      Supported
13951 F:      drivers/net/wireless/ath/wcn36xx/
13952
13953 QUANTENNA QTNFMAC WIRELESS DRIVER
13954 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
13955 M:      Avinash Patil <avinashp@quantenna.com>
13956 M:      Sergey Matyukevich <smatyukevich@quantenna.com>
13957 L:      linux-wireless@vger.kernel.org
13958 S:      Maintained
13959 F:      drivers/net/wireless/quantenna
13960
13961 RADEON and AMDGPU DRM DRIVERS
13962 M:      Alex Deucher <alexander.deucher@amd.com>
13963 M:      Christian König <christian.koenig@amd.com>
13964 M:      David (ChunMing) Zhou <David1.Zhou@amd.com>
13965 L:      amd-gfx@lists.freedesktop.org
13966 T:      git git://people.freedesktop.org/~agd5f/linux
13967 S:      Supported
13968 F:      drivers/gpu/drm/radeon/
13969 F:      include/uapi/drm/radeon_drm.h
13970 F:      drivers/gpu/drm/amd/
13971 F:      include/uapi/drm/amdgpu_drm.h
13972
13973 RADEON FRAMEBUFFER DISPLAY DRIVER
13974 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
13975 L:      linux-fbdev@vger.kernel.org
13976 S:      Maintained
13977 F:      drivers/video/fbdev/aty/radeon*
13978 F:      include/uapi/linux/radeonfb.h
13979
13980 RADIOSHARK RADIO DRIVER
13981 M:      Hans Verkuil <hverkuil@xs4all.nl>
13982 L:      linux-media@vger.kernel.org
13983 T:      git git://linuxtv.org/media_tree.git
13984 S:      Maintained
13985 F:      drivers/media/radio/radio-shark.c
13986
13987 RADIOSHARK2 RADIO DRIVER
13988 M:      Hans Verkuil <hverkuil@xs4all.nl>
13989 L:      linux-media@vger.kernel.org
13990 T:      git git://linuxtv.org/media_tree.git
13991 S:      Maintained
13992 F:      drivers/media/radio/radio-shark2.c
13993 F:      drivers/media/radio/radio-tea5777.c
13994
13995 RADOS BLOCK DEVICE (RBD)
13996 M:      Ilya Dryomov <idryomov@gmail.com>
13997 M:      Sage Weil <sage@redhat.com>
13998 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
13999 L:      ceph-devel@vger.kernel.org
14000 W:      http://ceph.com/
14001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
14002 T:      git git://github.com/ceph/ceph-client.git
14003 S:      Supported
14004 F:      Documentation/ABI/testing/sysfs-bus-rbd
14005 F:      drivers/block/rbd.c
14006 F:      drivers/block/rbd_types.h
14007
14008 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14009 M:      Paul Mackerras <paulus@samba.org>
14010 L:      linux-fbdev@vger.kernel.org
14011 S:      Maintained
14012 F:      drivers/video/fbdev/aty/aty128fb.c
14013
14014 RAINSHADOW-CEC DRIVER
14015 M:      Hans Verkuil <hverkuil@xs4all.nl>
14016 L:      linux-media@vger.kernel.org
14017 T:      git git://linuxtv.org/media_tree.git
14018 S:      Maintained
14019 F:      drivers/media/usb/rainshadow-cec/*
14020
14021 RALINK MIPS ARCHITECTURE
14022 M:      John Crispin <john@phrozen.org>
14023 L:      linux-mips@vger.kernel.org
14024 S:      Maintained
14025 F:      arch/mips/ralink
14026
14027 RALINK RT2X00 WIRELESS LAN DRIVER
14028 M:      Stanislaw Gruszka <stf_xl@wp.pl>
14029 M:      Helmut Schaa <helmut.schaa@googlemail.com>
14030 L:      linux-wireless@vger.kernel.org
14031 S:      Maintained
14032 F:      drivers/net/wireless/ralink/rt2x00/
14033
14034 RAMDISK RAM BLOCK DEVICE DRIVER
14035 M:      Jens Axboe <axboe@kernel.dk>
14036 S:      Maintained
14037 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14038 F:      drivers/block/brd.c
14039
14040 RANCHU VIRTUAL BOARD FOR MIPS
14041 M:      Miodrag Dinic <miodrag.dinic@mips.com>
14042 L:      linux-mips@vger.kernel.org
14043 S:      Supported
14044 F:      arch/mips/generic/board-ranchu.c
14045 F:      arch/mips/configs/generic/board-ranchu.config
14046
14047 RANDOM NUMBER DRIVER
14048 M:      "Theodore Ts'o" <tytso@mit.edu>
14049 S:      Maintained
14050 F:      drivers/char/random.c
14051
14052 RAPIDIO SUBSYSTEM
14053 M:      Matt Porter <mporter@kernel.crashing.org>
14054 M:      Alexandre Bounine <alex.bou9@gmail.com>
14055 S:      Maintained
14056 F:      drivers/rapidio/
14057
14058 RAS INFRASTRUCTURE
14059 M:      Tony Luck <tony.luck@intel.com>
14060 M:      Borislav Petkov <bp@alien8.de>
14061 L:      linux-edac@vger.kernel.org
14062 S:      Maintained
14063 F:      drivers/ras/
14064 F:      include/linux/ras.h
14065 F:      include/ras/ras_event.h
14066 F:      Documentation/admin-guide/ras.rst
14067
14068 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14069 L:      linux-wireless@vger.kernel.org
14070 S:      Orphan
14071 F:      drivers/net/wireless/ray*
14072
14073 RCUTORTURE TEST FRAMEWORK
14074 M:      "Paul E. McKenney" <paulmck@kernel.org>
14075 M:      Josh Triplett <josh@joshtriplett.org>
14076 R:      Steven Rostedt <rostedt@goodmis.org>
14077 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14078 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14079 L:      rcu@vger.kernel.org
14080 S:      Supported
14081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14082 F:      tools/testing/selftests/rcutorture
14083
14084 RDC R-321X SoC
14085 M:      Florian Fainelli <florian@openwrt.org>
14086 S:      Maintained
14087
14088 RDC R6040 FAST ETHERNET DRIVER
14089 M:      Florian Fainelli <f.fainelli@gmail.com>
14090 L:      netdev@vger.kernel.org
14091 S:      Maintained
14092 F:      drivers/net/ethernet/rdc/r6040.c
14093
14094 RDMAVT - RDMA verbs software
14095 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
14096 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
14097 L:      linux-rdma@vger.kernel.org
14098 S:      Supported
14099 F:      drivers/infiniband/sw/rdmavt
14100
14101 RDS - RELIABLE DATAGRAM SOCKETS
14102 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
14103 L:      netdev@vger.kernel.org
14104 L:      linux-rdma@vger.kernel.org
14105 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
14106 W:      https://oss.oracle.com/projects/rds/
14107 S:      Supported
14108 F:      net/rds/
14109 F:      Documentation/networking/rds.txt
14110
14111 RDT - RESOURCE ALLOCATION
14112 M:      Fenghua Yu <fenghua.yu@intel.com>
14113 M:      Reinette Chatre <reinette.chatre@intel.com>
14114 L:      linux-kernel@vger.kernel.org
14115 S:      Supported
14116 F:      arch/x86/kernel/cpu/resctrl/
14117 F:      arch/x86/include/asm/resctrl_sched.h
14118 F:      Documentation/x86/resctrl*
14119
14120 READ-COPY UPDATE (RCU)
14121 M:      "Paul E. McKenney" <paulmck@kernel.org>
14122 M:      Josh Triplett <josh@joshtriplett.org>
14123 R:      Steven Rostedt <rostedt@goodmis.org>
14124 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14125 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14126 R:      Joel Fernandes <joel@joelfernandes.org>
14127 L:      rcu@vger.kernel.org
14128 W:      http://www.rdrop.com/users/paulmck/RCU/
14129 S:      Supported
14130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14131 F:      Documentation/RCU/
14132 X:      Documentation/RCU/torture.txt
14133 F:      include/linux/rcu*
14134 X:      include/linux/srcu*.h
14135 F:      kernel/rcu/
14136 X:      kernel/rcu/srcu*.c
14137
14138 REAL TIME CLOCK (RTC) SUBSYSTEM
14139 M:      Alessandro Zummo <a.zummo@towertech.it>
14140 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14141 L:      linux-rtc@vger.kernel.org
14142 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
14143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
14144 S:      Maintained
14145 F:      Documentation/devicetree/bindings/rtc/
14146 F:      Documentation/admin-guide/rtc.rst
14147 F:      drivers/rtc/
14148 F:      include/linux/rtc.h
14149 F:      include/uapi/linux/rtc.h
14150 F:      include/linux/rtc/
14151 F:      include/linux/platform_data/rtc-*
14152 F:      tools/testing/selftests/rtc/
14153
14154 REALTEK AUDIO CODECS
14155 M:      Oder Chiou <oder_chiou@realtek.com>
14156 S:      Maintained
14157 F:      sound/soc/codecs/rt*
14158 F:      include/sound/rt*.h
14159
14160 REALTEK RTL83xx SMI DSA ROUTER CHIPS
14161 M:      Linus Walleij <linus.walleij@linaro.org>
14162 S:      Maintained
14163 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
14164 F:      drivers/net/dsa/realtek-smi*
14165 F:      drivers/net/dsa/rtl83*
14166
14167 REDPINE WIRELESS DRIVER
14168 M:      Amitkumar Karwar <amitkarwar@gmail.com>
14169 M:      Siva Rebbagondla <siva8118@gmail.com>
14170 L:      linux-wireless@vger.kernel.org
14171 S:      Maintained
14172 F:      drivers/net/wireless/rsi/
14173
14174 REGISTER MAP ABSTRACTION
14175 M:      Mark Brown <broonie@kernel.org>
14176 L:      linux-kernel@vger.kernel.org
14177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
14178 S:      Supported
14179 F:      Documentation/devicetree/bindings/regmap/
14180 F:      drivers/base/regmap/
14181 F:      include/linux/regmap.h
14182
14183 REISERFS FILE SYSTEM
14184 L:      reiserfs-devel@vger.kernel.org
14185 S:      Supported
14186 F:      fs/reiserfs/
14187
14188 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
14189 M:      Ohad Ben-Cohen <ohad@wizery.com>
14190 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14191 L:      linux-remoteproc@vger.kernel.org
14192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
14193 S:      Maintained
14194 F:      Documentation/devicetree/bindings/remoteproc/
14195 F:      Documentation/ABI/testing/sysfs-class-remoteproc
14196 F:      Documentation/remoteproc.txt
14197 F:      drivers/remoteproc/
14198 F:      include/linux/remoteproc.h
14199 F:      include/linux/remoteproc/
14200
14201 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
14202 M:      Ohad Ben-Cohen <ohad@wizery.com>
14203 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14204 L:      linux-remoteproc@vger.kernel.org
14205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
14206 S:      Maintained
14207 F:      drivers/rpmsg/
14208 F:      Documentation/rpmsg.txt
14209 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
14210 F:      include/linux/rpmsg.h
14211 F:      include/linux/rpmsg/
14212 F:      include/uapi/linux/rpmsg.h
14213 F:      samples/rpmsg/
14214
14215 RENESAS CLOCK DRIVERS
14216 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14217 L:      linux-renesas-soc@vger.kernel.org
14218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
14219 S:      Supported
14220 F:      drivers/clk/renesas/
14221
14222 RENESAS EMEV2 I2C DRIVER
14223 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14224 S:      Supported
14225 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
14226 F:      drivers/i2c/busses/i2c-emev2.c
14227
14228 RENESAS ETHERNET DRIVERS
14229 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
14230 L:      netdev@vger.kernel.org
14231 L:      linux-renesas-soc@vger.kernel.org
14232 F:      Documentation/devicetree/bindings/net/renesas,*.txt
14233 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
14234 F:      drivers/net/ethernet/renesas/
14235 F:      include/linux/sh_eth.h
14236
14237 RENESAS R-CAR GYROADC DRIVER
14238 M:      Marek Vasut <marek.vasut@gmail.com>
14239 L:      linux-iio@vger.kernel.org
14240 S:      Supported
14241 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
14242 F:      drivers/iio/adc/rcar-gyroadc.c
14243
14244 RENESAS R-CAR I2C DRIVERS
14245 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14246 S:      Supported
14247 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
14248 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
14249 F:      drivers/i2c/busses/i2c-rcar.c
14250 F:      drivers/i2c/busses/i2c-sh_mobile.c
14251
14252 RENESAS RIIC DRIVER
14253 M:      Chris Brandt <chris.brandt@renesas.com>
14254 S:      Supported
14255 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
14256 F:      drivers/i2c/busses/i2c-riic.c
14257
14258 RENESAS USB PHY DRIVER
14259 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14260 L:      linux-renesas-soc@vger.kernel.org
14261 S:      Maintained
14262 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
14263
14264 RESET CONTROLLER FRAMEWORK
14265 M:      Philipp Zabel <p.zabel@pengutronix.de>
14266 T:      git git://git.pengutronix.de/git/pza/linux
14267 S:      Maintained
14268 F:      drivers/reset/
14269 F:      Documentation/devicetree/bindings/reset/
14270 F:      include/dt-bindings/reset/
14271 F:      include/linux/reset.h
14272 F:      include/linux/reset/
14273 F:      include/linux/reset-controller.h
14274 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
14275
14276 RESTARTABLE SEQUENCES SUPPORT
14277 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14278 M:      Peter Zijlstra <peterz@infradead.org>
14279 M:      "Paul E. McKenney" <paulmck@kernel.org>
14280 M:      Boqun Feng <boqun.feng@gmail.com>
14281 L:      linux-kernel@vger.kernel.org
14282 S:      Supported
14283 F:      kernel/rseq.c
14284 F:      include/uapi/linux/rseq.h
14285 F:      include/trace/events/rseq.h
14286 F:      tools/testing/selftests/rseq/
14287
14288 RFKILL
14289 M:      Johannes Berg <johannes@sipsolutions.net>
14290 L:      linux-wireless@vger.kernel.org
14291 W:      http://wireless.kernel.org/
14292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
14293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
14294 S:      Maintained
14295 F:      Documentation/driver-api/rfkill.rst
14296 F:      Documentation/ABI/stable/sysfs-class-rfkill
14297 F:      net/rfkill/
14298 F:      include/linux/rfkill.h
14299 F:      include/uapi/linux/rfkill.h
14300
14301 RHASHTABLE
14302 M:      Thomas Graf <tgraf@suug.ch>
14303 M:      Herbert Xu <herbert@gondor.apana.org.au>
14304 L:      netdev@vger.kernel.org
14305 S:      Maintained
14306 F:      lib/rhashtable.c
14307 F:      lib/test_rhashtable.c
14308 F:      include/linux/rhashtable.h
14309 F:      include/linux/rhashtable-types.h
14310
14311 RICOH R5C592 MEMORYSTICK DRIVER
14312 M:      Maxim Levitsky <maximlevitsky@gmail.com>
14313 S:      Maintained
14314 F:      drivers/memstick/host/r592.*
14315
14316 RICOH SMARTMEDIA/XD DRIVER
14317 M:      Maxim Levitsky <maximlevitsky@gmail.com>
14318 S:      Maintained
14319 F:      drivers/mtd/nand/raw/r852.c
14320 F:      drivers/mtd/nand/raw/r852.h
14321
14322 RISC-V ARCHITECTURE
14323 M:      Paul Walmsley <paul.walmsley@sifive.com>
14324 M:      Palmer Dabbelt <palmer@dabbelt.com>
14325 M:      Albert Ou <aou@eecs.berkeley.edu>
14326 L:      linux-riscv@lists.infradead.org
14327 P:      Documentation/riscv/patch-acceptance.rst
14328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
14329 S:      Supported
14330 F:      arch/riscv/
14331 K:      riscv
14332 N:      riscv
14333
14334 ROCCAT DRIVERS
14335 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
14336 W:      http://sourceforge.net/projects/roccat/
14337 S:      Maintained
14338 F:      drivers/hid/hid-roccat*
14339 F:      include/linux/hid-roccat*
14340 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
14341
14342 ROCKCHIP ISP V1 DRIVER
14343 M:      Helen Koike <helen.koike@collabora.com>
14344 L:      linux-media@vger.kernel.org
14345 S:      Maintained
14346 F:      drivers/staging/media/rkisp1/
14347
14348 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
14349 M:      Jacob Chen <jacob-chen@iotwrt.com>
14350 M:      Ezequiel Garcia <ezequiel@collabora.com>
14351 L:      linux-media@vger.kernel.org
14352 S:      Maintained
14353 F:      drivers/media/platform/rockchip/rga/
14354 F:      Documentation/devicetree/bindings/media/rockchip-rga.txt
14355
14356 HANTRO VPU CODEC DRIVER
14357 M:      Ezequiel Garcia <ezequiel@collabora.com>
14358 M:      Philipp Zabel <p.zabel@pengutronix.de>
14359 L:      linux-media@vger.kernel.org
14360 L:      linux-rockchip@lists.infradead.org
14361 S:      Maintained
14362 F:      drivers/staging/media/hantro/
14363 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
14364 F:      Documentation/devicetree/bindings/media/rockchip-vpu.txt
14365
14366 ROCKER DRIVER
14367 M:      Jiri Pirko <jiri@resnulli.us>
14368 L:      netdev@vger.kernel.org
14369 S:      Supported
14370 F:      drivers/net/ethernet/rocker/
14371
14372 ROCKETPORT DRIVER
14373 W:      http://www.comtrol.com
14374 S:      Maintained
14375 F:      Documentation/driver-api/serial/rocket.rst
14376 F:      drivers/tty/rocket*
14377
14378 ROCKETPORT EXPRESS/INFINITY DRIVER
14379 M:      Kevin Cernekee <cernekee@gmail.com>
14380 L:      linux-serial@vger.kernel.org
14381 S:      Odd Fixes
14382 F:      drivers/tty/serial/rp2.*
14383
14384 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
14385 M:      Tomasz Duszynski <tduszyns@gmail.com>
14386 S:      Maintained
14387 F:      drivers/iio/light/bh1750.c
14388 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
14389
14390 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
14391 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14392 L:      linux-kernel@vger.kernel.org
14393 L:      linux-renesas-soc@vger.kernel.org
14394 S:      Supported
14395 F:      drivers/mfd/bd9571mwv.c
14396 F:      drivers/regulator/bd9571mwv-regulator.c
14397 F:      drivers/gpio/gpio-bd9571mwv.c
14398 F:      include/linux/mfd/bd9571mwv.h
14399 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
14400
14401 ROSE NETWORK LAYER
14402 M:      Ralf Baechle <ralf@linux-mips.org>
14403 L:      linux-hams@vger.kernel.org
14404 W:      http://www.linux-ax25.org/
14405 S:      Maintained
14406 F:      include/net/rose.h
14407 F:      include/uapi/linux/rose.h
14408 F:      net/rose/
14409
14410 ROTATION DRIVER FOR ALLWINNER A83T
14411 M:      Jernej Skrabec <jernej.skrabec@siol.net>
14412 L:      linux-media@vger.kernel.org
14413 T:      git git://linuxtv.org/media_tree.git
14414 S:      Maintained
14415 F:      drivers/media/platform/sunxi/sun8i-rotate/
14416 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
14417
14418 RTL2830 MEDIA DRIVER
14419 M:      Antti Palosaari <crope@iki.fi>
14420 L:      linux-media@vger.kernel.org
14421 W:      https://linuxtv.org
14422 W:      http://palosaari.fi/linux/
14423 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14424 T:      git git://linuxtv.org/anttip/media_tree.git
14425 S:      Maintained
14426 F:      drivers/media/dvb-frontends/rtl2830*
14427
14428 RTL2832 MEDIA DRIVER
14429 M:      Antti Palosaari <crope@iki.fi>
14430 L:      linux-media@vger.kernel.org
14431 W:      https://linuxtv.org
14432 W:      http://palosaari.fi/linux/
14433 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14434 T:      git git://linuxtv.org/anttip/media_tree.git
14435 S:      Maintained
14436 F:      drivers/media/dvb-frontends/rtl2832*
14437
14438 RTL2832_SDR MEDIA DRIVER
14439 M:      Antti Palosaari <crope@iki.fi>
14440 L:      linux-media@vger.kernel.org
14441 W:      https://linuxtv.org
14442 W:      http://palosaari.fi/linux/
14443 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14444 T:      git git://linuxtv.org/anttip/media_tree.git
14445 S:      Maintained
14446 F:      drivers/media/dvb-frontends/rtl2832_sdr*
14447
14448 RTL8180 WIRELESS DRIVER
14449 L:      linux-wireless@vger.kernel.org
14450 W:      http://wireless.kernel.org/
14451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14452 S:      Orphan
14453 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
14454
14455 RTL8187 WIRELESS DRIVER
14456 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
14457 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
14458 M:      Larry Finger <Larry.Finger@lwfinger.net>
14459 L:      linux-wireless@vger.kernel.org
14460 W:      http://wireless.kernel.org/
14461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14462 S:      Maintained
14463 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
14464
14465 REALTEK WIRELESS DRIVER (rtlwifi family)
14466 M:      Ping-Ke Shih <pkshih@realtek.com>
14467 L:      linux-wireless@vger.kernel.org
14468 W:      http://wireless.kernel.org/
14469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14470 S:      Maintained
14471 F:      drivers/net/wireless/realtek/rtlwifi/
14472
14473 REALTEK WIRELESS DRIVER (rtw88)
14474 M:      Yan-Hsuan Chuang <yhchuang@realtek.com>
14475 L:      linux-wireless@vger.kernel.org
14476 S:      Maintained
14477 F:      drivers/net/wireless/realtek/rtw88/
14478
14479 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
14480 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
14481 L:      linux-wireless@vger.kernel.org
14482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
14483 S:      Maintained
14484 F:      drivers/net/wireless/realtek/rtl8xxxu/
14485
14486 RXRPC SOCKETS (AF_RXRPC)
14487 M:      David Howells <dhowells@redhat.com>
14488 L:      linux-afs@lists.infradead.org
14489 S:      Supported
14490 F:      net/rxrpc/
14491 F:      include/keys/rxrpc-type.h
14492 F:      include/net/af_rxrpc.h
14493 F:      include/trace/events/rxrpc.h
14494 F:      include/uapi/linux/rxrpc.h
14495 F:      Documentation/networking/rxrpc.txt
14496 W:      https://www.infradead.org/~dhowells/kafs/
14497
14498 S3 SAVAGE FRAMEBUFFER DRIVER
14499 M:      Antonino Daplas <adaplas@gmail.com>
14500 L:      linux-fbdev@vger.kernel.org
14501 S:      Maintained
14502 F:      drivers/video/fbdev/savage/
14503
14504 S390
14505 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
14506 M:      Vasily Gorbik <gor@linux.ibm.com>
14507 M:      Christian Borntraeger <borntraeger@de.ibm.com>
14508 L:      linux-s390@vger.kernel.org
14509 W:      http://www.ibm.com/developerworks/linux/linux390/
14510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
14511 S:      Supported
14512 F:      arch/s390/
14513 F:      drivers/s390/
14514 F:      Documentation/s390/
14515 F:      Documentation/driver-api/s390-drivers.rst
14516
14517 S390 COMMON I/O LAYER
14518 M:      Sebastian Ott <sebott@linux.ibm.com>
14519 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
14520 L:      linux-s390@vger.kernel.org
14521 W:      http://www.ibm.com/developerworks/linux/linux390/
14522 S:      Supported
14523 F:      drivers/s390/cio/
14524
14525 S390 DASD DRIVER
14526 M:      Stefan Haberland <sth@linux.ibm.com>
14527 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
14528 L:      linux-s390@vger.kernel.org
14529 W:      http://www.ibm.com/developerworks/linux/linux390/
14530 S:      Supported
14531 F:      drivers/s390/block/dasd*
14532 F:      block/partitions/ibm.c
14533
14534 S390 IOMMU (PCI)
14535 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14536 L:      linux-s390@vger.kernel.org
14537 W:      http://www.ibm.com/developerworks/linux/linux390/
14538 S:      Supported
14539 F:      drivers/iommu/s390-iommu.c
14540
14541 S390 IUCV NETWORK LAYER
14542 M:      Julian Wiedmann <jwi@linux.ibm.com>
14543 M:      Ursula Braun <ubraun@linux.ibm.com>
14544 L:      linux-s390@vger.kernel.org
14545 W:      http://www.ibm.com/developerworks/linux/linux390/
14546 S:      Supported
14547 F:      drivers/s390/net/*iucv*
14548 F:      include/net/iucv/
14549 F:      net/iucv/
14550
14551 S390 NETWORK DRIVERS
14552 M:      Julian Wiedmann <jwi@linux.ibm.com>
14553 M:      Ursula Braun <ubraun@linux.ibm.com>
14554 L:      linux-s390@vger.kernel.org
14555 W:      http://www.ibm.com/developerworks/linux/linux390/
14556 S:      Supported
14557 F:      drivers/s390/net/
14558
14559 S390 PCI SUBSYSTEM
14560 M:      Sebastian Ott <sebott@linux.ibm.com>
14561 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14562 L:      linux-s390@vger.kernel.org
14563 W:      http://www.ibm.com/developerworks/linux/linux390/
14564 S:      Supported
14565 F:      arch/s390/pci/
14566 F:      drivers/pci/hotplug/s390_pci_hpc.c
14567
14568 S390 VFIO-CCW DRIVER
14569 M:      Cornelia Huck <cohuck@redhat.com>
14570 M:      Eric Farman <farman@linux.ibm.com>
14571 R:      Halil Pasic <pasic@linux.ibm.com>
14572 L:      linux-s390@vger.kernel.org
14573 L:      kvm@vger.kernel.org
14574 S:      Supported
14575 F:      drivers/s390/cio/vfio_ccw*
14576 F:      Documentation/s390/vfio-ccw.rst
14577 F:      include/uapi/linux/vfio_ccw.h
14578
14579 S390 ZCRYPT DRIVER
14580 M:      Harald Freudenberger <freude@linux.ibm.com>
14581 L:      linux-s390@vger.kernel.org
14582 W:      http://www.ibm.com/developerworks/linux/linux390/
14583 S:      Supported
14584 F:      drivers/s390/crypto/
14585
14586 S390 VFIO AP DRIVER
14587 M:      Tony Krowiak <akrowiak@linux.ibm.com>
14588 M:      Pierre Morel <pmorel@linux.ibm.com>
14589 M:      Halil Pasic <pasic@linux.ibm.com>
14590 L:      linux-s390@vger.kernel.org
14591 W:      http://www.ibm.com/developerworks/linux/linux390/
14592 S:      Supported
14593 F:      drivers/s390/crypto/vfio_ap_drv.c
14594 F:      drivers/s390/crypto/vfio_ap_private.h
14595 F:      drivers/s390/crypto/vfio_ap_ops.c
14596 F:      Documentation/s390/vfio-ap.rst
14597
14598 S390 ZFCP DRIVER
14599 M:      Steffen Maier <maier@linux.ibm.com>
14600 M:      Benjamin Block <bblock@linux.ibm.com>
14601 L:      linux-s390@vger.kernel.org
14602 W:      http://www.ibm.com/developerworks/linux/linux390/
14603 S:      Supported
14604 F:      drivers/s390/scsi/zfcp_*
14605
14606 S3C24XX SD/MMC Driver
14607 M:      Ben Dooks <ben-linux@fluff.org>
14608 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14609 S:      Supported
14610 F:      drivers/mmc/host/s3cmci.*
14611
14612 SAA6588 RDS RECEIVER DRIVER
14613 M:      Hans Verkuil <hverkuil@xs4all.nl>
14614 L:      linux-media@vger.kernel.org
14615 T:      git git://linuxtv.org/media_tree.git
14616 W:      https://linuxtv.org
14617 S:      Odd Fixes
14618 F:      drivers/media/i2c/saa6588*
14619
14620 SAA7134 VIDEO4LINUX DRIVER
14621 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
14622 L:      linux-media@vger.kernel.org
14623 W:      https://linuxtv.org
14624 T:      git git://linuxtv.org/media_tree.git
14625 S:      Odd fixes
14626 F:      Documentation/media/v4l-drivers/saa7134*
14627 F:      drivers/media/pci/saa7134/
14628
14629 SAA7146 VIDEO4LINUX-2 DRIVER
14630 M:      Hans Verkuil <hverkuil@xs4all.nl>
14631 L:      linux-media@vger.kernel.org
14632 T:      git git://linuxtv.org/media_tree.git
14633 S:      Maintained
14634 F:      drivers/media/common/saa7146/
14635 F:      drivers/media/pci/saa7146/
14636 F:      include/media/drv-intf/saa7146*
14637
14638 SAFESETID SECURITY MODULE
14639 M:      Micah Morton <mortonm@chromium.org>
14640 S:      Supported
14641 F:      security/safesetid/
14642 F:      Documentation/admin-guide/LSM/SafeSetID.rst
14643
14644 SAMSUNG AUDIO (ASoC) DRIVERS
14645 M:      Krzysztof Kozlowski <krzk@kernel.org>
14646 M:      Sangbeom Kim <sbkim73@samsung.com>
14647 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14648 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14649 S:      Supported
14650 F:      sound/soc/samsung/
14651 F:      Documentation/devicetree/bindings/sound/samsung*
14652
14653 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
14654 M:      Krzysztof Kozlowski <krzk@kernel.org>
14655 L:      linux-crypto@vger.kernel.org
14656 L:      linux-samsung-soc@vger.kernel.org
14657 S:      Maintained
14658 F:      drivers/crypto/exynos-rng.c
14659 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
14660
14661 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
14662 M:      Łukasz Stelmach <l.stelmach@samsung.com>
14663 L:      linux-samsung-soc@vger.kernel.org
14664 S:      Maintained
14665 F:      drivers/char/hw_random/exynos-trng.c
14666 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
14667
14668 SAMSUNG FRAMEBUFFER DRIVER
14669 M:      Jingoo Han <jingoohan1@gmail.com>
14670 L:      linux-fbdev@vger.kernel.org
14671 S:      Maintained
14672 F:      drivers/video/fbdev/s3c-fb.c
14673
14674 SAMSUNG LAPTOP DRIVER
14675 M:      Corentin Chary <corentin.chary@gmail.com>
14676 L:      platform-driver-x86@vger.kernel.org
14677 S:      Maintained
14678 F:      drivers/platform/x86/samsung-laptop.c
14679
14680 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
14681 M:      Sangbeom Kim <sbkim73@samsung.com>
14682 M:      Krzysztof Kozlowski <krzk@kernel.org>
14683 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14684 L:      linux-kernel@vger.kernel.org
14685 L:      linux-samsung-soc@vger.kernel.org
14686 S:      Supported
14687 F:      drivers/mfd/sec*.c
14688 F:      drivers/regulator/s2m*.c
14689 F:      drivers/regulator/s5m*.c
14690 F:      drivers/clk/clk-s2mps11.c
14691 F:      drivers/rtc/rtc-s5m.c
14692 F:      include/linux/mfd/samsung/
14693 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
14694 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
14695 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
14696 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
14697
14698 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
14699 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
14700 L:      linux-media@vger.kernel.org
14701 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14702 S:      Maintained
14703 F:      drivers/media/platform/s3c-camif/
14704 F:      include/media/drv-intf/s3c_camif.h
14705
14706 SAMSUNG S3FWRN5 NFC DRIVER
14707 M:      Robert Baldyga <r.baldyga@samsung.com>
14708 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
14709 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
14710 S:      Supported
14711 F:      drivers/nfc/s3fwrn5
14712
14713 SAMSUNG S5C73M3 CAMERA DRIVER
14714 M:      Kyungmin Park <kyungmin.park@samsung.com>
14715 M:      Andrzej Hajda <a.hajda@samsung.com>
14716 L:      linux-media@vger.kernel.org
14717 S:      Supported
14718 F:      drivers/media/i2c/s5c73m3/*
14719
14720 SAMSUNG S5K5BAF CAMERA DRIVER
14721 M:      Kyungmin Park <kyungmin.park@samsung.com>
14722 M:      Andrzej Hajda <a.hajda@samsung.com>
14723 L:      linux-media@vger.kernel.org
14724 S:      Supported
14725 F:      drivers/media/i2c/s5k5baf.c
14726
14727 SAMSUNG S5P Security SubSystem (SSS) DRIVER
14728 M:      Krzysztof Kozlowski <krzk@kernel.org>
14729 M:      Vladimir Zapolskiy <vz@mleia.com>
14730 M:      Kamil Konieczny <k.konieczny@samsung.com>
14731 L:      linux-crypto@vger.kernel.org
14732 L:      linux-samsung-soc@vger.kernel.org
14733 S:      Maintained
14734 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
14735 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
14736 F:      drivers/crypto/s5p-sss.c
14737
14738 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
14739 M:      Kyungmin Park <kyungmin.park@samsung.com>
14740 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14741 L:      linux-media@vger.kernel.org
14742 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
14743 S:      Supported
14744 F:      drivers/media/platform/exynos4-is/
14745
14746 SAMSUNG SOC CLOCK DRIVERS
14747 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14748 M:      Tomasz Figa <tomasz.figa@gmail.com>
14749 M:      Chanwoo Choi <cw00.choi@samsung.com>
14750 S:      Supported
14751 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
14753 F:      drivers/clk/samsung/
14754 F:      include/dt-bindings/clock/exynos*.h
14755 F:      Documentation/devicetree/bindings/clock/exynos*.txt
14756 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
14757 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
14758
14759 SAMSUNG SPI DRIVERS
14760 M:      Kukjin Kim <kgene@kernel.org>
14761 M:      Krzysztof Kozlowski <krzk@kernel.org>
14762 M:      Andi Shyti <andi@etezian.org>
14763 L:      linux-spi@vger.kernel.org
14764 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14765 S:      Maintained
14766 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
14767 F:      drivers/spi/spi-s3c*
14768 F:      include/linux/platform_data/spi-s3c64xx.h
14769
14770 SAMSUNG SXGBE DRIVERS
14771 M:      Byungho An <bh74.an@samsung.com>
14772 S:      Supported
14773 L:      netdev@vger.kernel.org
14774 F:      drivers/net/ethernet/samsung/sxgbe/
14775
14776 SAMSUNG THERMAL DRIVER
14777 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14778 L:      linux-pm@vger.kernel.org
14779 L:      linux-samsung-soc@vger.kernel.org
14780 S:      Supported
14781 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
14782 F:      drivers/thermal/samsung/
14783
14784 SAMSUNG USB2 PHY DRIVER
14785 M:      Kamil Debski <kamil@wypas.org>
14786 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14787 L:      linux-kernel@vger.kernel.org
14788 S:      Supported
14789 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
14790 F:      Documentation/driver-api/phy/samsung-usb2.rst
14791 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
14792 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
14793 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
14794 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
14795 F:      drivers/phy/samsung/phy-samsung-usb2.c
14796 F:      drivers/phy/samsung/phy-samsung-usb2.h
14797
14798 SC1200 WDT DRIVER
14799 M:      Zwane Mwaikambo <zwanem@gmail.com>
14800 S:      Maintained
14801 F:      drivers/watchdog/sc1200wdt.c
14802
14803 SCHEDULER
14804 M:      Ingo Molnar <mingo@redhat.com>
14805 M:      Peter Zijlstra <peterz@infradead.org>
14806 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
14807 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
14808 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
14809 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
14810 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
14811 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
14812 L:      linux-kernel@vger.kernel.org
14813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
14814 S:      Maintained
14815 F:      kernel/sched/
14816 F:      include/linux/sched.h
14817 F:      include/uapi/linux/sched.h
14818 F:      include/linux/wait.h
14819 F:      include/linux/preempt.h
14820
14821 SCR24X CHIP CARD INTERFACE DRIVER
14822 M:      Lubomir Rintel <lkundrak@v3.sk>
14823 S:      Supported
14824 F:      drivers/char/pcmcia/scr24x_cs.c
14825
14826 SCSI CDROM DRIVER
14827 M:      Jens Axboe <axboe@kernel.dk>
14828 L:      linux-scsi@vger.kernel.org
14829 W:      http://www.kernel.dk
14830 S:      Maintained
14831 F:      drivers/scsi/sr*
14832
14833 SCSI RDMA PROTOCOL (SRP) INITIATOR
14834 M:      Bart Van Assche <bvanassche@acm.org>
14835 L:      linux-rdma@vger.kernel.org
14836 S:      Supported
14837 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14838 F:      drivers/infiniband/ulp/srp/
14839 F:      include/scsi/srp.h
14840
14841 SCSI RDMA PROTOCOL (SRP) TARGET
14842 M:      Bart Van Assche <bvanassche@acm.org>
14843 L:      linux-rdma@vger.kernel.org
14844 L:      target-devel@vger.kernel.org
14845 S:      Supported
14846 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14847 F:      drivers/infiniband/ulp/srpt/
14848
14849 SCSI SG DRIVER
14850 M:      Doug Gilbert <dgilbert@interlog.com>
14851 L:      linux-scsi@vger.kernel.org
14852 W:      http://sg.danny.cz/sg
14853 S:      Maintained
14854 F:      Documentation/scsi/scsi-generic.txt
14855 F:      drivers/scsi/sg.c
14856 F:      include/scsi/sg.h
14857
14858 SCSI SUBSYSTEM
14859 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
14860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
14861 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
14862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14863 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
14864 L:      linux-scsi@vger.kernel.org
14865 S:      Maintained
14866 F:      Documentation/devicetree/bindings/scsi/
14867 F:      drivers/scsi/
14868 F:      include/scsi/
14869
14870 SCSI TAPE DRIVER
14871 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
14872 L:      linux-scsi@vger.kernel.org
14873 S:      Maintained
14874 F:      Documentation/scsi/st.txt
14875 F:      drivers/scsi/st.*
14876 F:      drivers/scsi/st_*.h
14877
14878 SCSI TARGET SUBSYSTEM
14879 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
14880 L:      linux-scsi@vger.kernel.org
14881 L:      target-devel@vger.kernel.org
14882 W:      http://www.linux-iscsi.org
14883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14884 Q:      https://patchwork.kernel.org/project/target-devel/list/
14885 S:      Supported
14886 F:      drivers/target/
14887 F:      include/target/
14888 F:      Documentation/target/
14889
14890 SCTP PROTOCOL
14891 M:      Vlad Yasevich <vyasevich@gmail.com>
14892 M:      Neil Horman <nhorman@tuxdriver.com>
14893 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
14894 L:      linux-sctp@vger.kernel.org
14895 W:      http://lksctp.sourceforge.net
14896 S:      Maintained
14897 F:      Documentation/networking/sctp.txt
14898 F:      include/linux/sctp.h
14899 F:      include/uapi/linux/sctp.h
14900 F:      include/net/sctp/
14901 F:      net/sctp/
14902
14903 SCx200 CPU SUPPORT
14904 M:      Jim Cromie <jim.cromie@gmail.com>
14905 S:      Odd Fixes
14906 F:      Documentation/i2c/busses/scx200_acb.rst
14907 F:      arch/x86/platform/scx200/
14908 F:      drivers/watchdog/scx200_wdt.c
14909 F:      drivers/i2c/busses/scx200*
14910 F:      drivers/mtd/maps/scx200_docflash.c
14911 F:      include/linux/scx200.h
14912
14913 SCx200 GPIO DRIVER
14914 M:      Jim Cromie <jim.cromie@gmail.com>
14915 S:      Maintained
14916 F:      drivers/char/scx200_gpio.c
14917 F:      include/linux/scx200_gpio.h
14918
14919 SCx200 HRT CLOCKSOURCE DRIVER
14920 M:      Jim Cromie <jim.cromie@gmail.com>
14921 S:      Maintained
14922 F:      drivers/clocksource/scx200_hrt.c
14923
14924 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
14925 M:      Sascha Sommer <saschasommer@freenet.de>
14926 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
14927 S:      Maintained
14928 F:      drivers/mmc/host/sdricoh_cs.c
14929
14930 SECO BOARDS CEC DRIVER
14931 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
14932 S:      Maintained
14933 F:      drivers/media/platform/seco-cec/seco-cec.c
14934 F:      drivers/media/platform/seco-cec/seco-cec.h
14935
14936 SECURE COMPUTING
14937 M:      Kees Cook <keescook@chromium.org>
14938 R:      Andy Lutomirski <luto@amacapital.net>
14939 R:      Will Drewry <wad@chromium.org>
14940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
14941 S:      Supported
14942 F:      kernel/seccomp.c
14943 F:      include/uapi/linux/seccomp.h
14944 F:      include/linux/seccomp.h
14945 F:      tools/testing/selftests/seccomp/*
14946 F:      tools/testing/selftests/kselftest_harness.h
14947 F:      Documentation/userspace-api/seccomp_filter.rst
14948 K:      \bsecure_computing
14949 K:      \bTIF_SECCOMP\b
14950
14951 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
14952 M:      Al Cooper <alcooperx@gmail.com>
14953 L:      linux-mmc@vger.kernel.org
14954 L:      bcm-kernel-feedback-list@broadcom.com
14955 S:      Maintained
14956 F:      drivers/mmc/host/sdhci-brcmstb*
14957
14958 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
14959 M:      Adrian Hunter <adrian.hunter@intel.com>
14960 L:      linux-mmc@vger.kernel.org
14961 S:      Maintained
14962 F:      drivers/mmc/host/sdhci*
14963 F:      include/linux/mmc/sdhci*
14964
14965 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
14966 M:      Adrian Hunter <adrian.hunter@intel.com>
14967 M:      Ritesh Harjani <riteshh@codeaurora.org>
14968 M:      Asutosh Das <asutoshd@codeaurora.org>
14969 L:      linux-mmc@vger.kernel.org
14970 S:      Maintained
14971 F:      drivers/mmc/host/cqhci*
14972
14973 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
14974 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
14975 M:      Manjunath M B <manjumb@synopsys.com>
14976 L:      linux-mmc@vger.kernel.org
14977 S:      Maintained
14978 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
14979
14980 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
14981 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
14982 L:      linux-mmc@vger.kernel.org
14983 S:      Supported
14984 F:      drivers/mmc/host/sdhci-of-at91.c
14985
14986 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
14987 M:      Ben Dooks <ben-linux@fluff.org>
14988 M:      Jaehoon Chung <jh80.chung@samsung.com>
14989 L:      linux-mmc@vger.kernel.org
14990 S:      Maintained
14991 F:      drivers/mmc/host/sdhci-s3c*
14992
14993 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
14994 M:      Viresh Kumar <vireshk@kernel.org>
14995 L:      linux-mmc@vger.kernel.org
14996 S:      Maintained
14997 F:      drivers/mmc/host/sdhci-spear.c
14998
14999 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15000 M:      Kishon Vijay Abraham I <kishon@ti.com>
15001 L:      linux-mmc@vger.kernel.org
15002 S:      Maintained
15003 F:      drivers/mmc/host/sdhci-omap.c
15004
15005 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15006 M:      Jonathan Derrick <jonathan.derrick@intel.com>
15007 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
15008 L:      linux-block@vger.kernel.org
15009 S:      Supported
15010 F:      block/sed*
15011 F:      block/opal_proto.h
15012 F:      include/linux/sed*
15013 F:      include/uapi/linux/sed*
15014
15015 SECURITY CONTACT
15016 M:      Security Officers <security@kernel.org>
15017 S:      Supported
15018
15019 SECURITY SUBSYSTEM
15020 M:      James Morris <jmorris@namei.org>
15021 M:      "Serge E. Hallyn" <serge@hallyn.com>
15022 L:      linux-security-module@vger.kernel.org (suggested Cc:)
15023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15024 W:      http://kernsec.org/
15025 S:      Supported
15026 F:      security/
15027 X:      security/selinux/
15028
15029 SELINUX SECURITY MODULE
15030 M:      Paul Moore <paul@paul-moore.com>
15031 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
15032 M:      Eric Paris <eparis@parisplace.org>
15033 L:      selinux@vger.kernel.org
15034 W:      https://selinuxproject.org
15035 W:      https://github.com/SELinuxProject
15036 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15037 S:      Supported
15038 F:      include/uapi/linux/selinux_netlink.h
15039 F:      security/selinux/
15040 F:      scripts/selinux/
15041 F:      Documentation/admin-guide/LSM/SELinux.rst
15042 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
15043 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15044
15045 SENSABLE PHANTOM
15046 M:      Jiri Slaby <jirislaby@gmail.com>
15047 S:      Maintained
15048 F:      drivers/misc/phantom.c
15049 F:      include/uapi/linux/phantom.h
15050
15051 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
15052 M:      Tomasz Duszynski <tduszyns@gmail.com>
15053 S:      Maintained
15054 F:      drivers/iio/chemical/sps30.c
15055 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
15056
15057 SERIAL DEVICE BUS
15058 M:      Rob Herring <robh@kernel.org>
15059 L:      linux-serial@vger.kernel.org
15060 S:      Maintained
15061 F:      Documentation/devicetree/bindings/serial/slave-device.txt
15062 F:      drivers/tty/serdev/
15063 F:      include/linux/serdev.h
15064
15065 SERIAL DRIVERS
15066 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15067 L:      linux-serial@vger.kernel.org
15068 S:      Maintained
15069 F:      Documentation/devicetree/bindings/serial/
15070 F:      drivers/tty/serial/
15071
15072 SERIAL IR RECEIVER
15073 M:      Sean Young <sean@mess.org>
15074 L:      linux-media@vger.kernel.org
15075 S:      Maintained
15076 F:      drivers/media/rc/serial_ir.c
15077
15078 SFC NETWORK DRIVER
15079 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
15080 M:      Edward Cree <ecree@solarflare.com>
15081 M:      Martin Habets <mhabets@solarflare.com>
15082 L:      netdev@vger.kernel.org
15083 S:      Supported
15084 F:      drivers/net/ethernet/sfc/
15085
15086 SFF/SFP/SFP+ MODULE SUPPORT
15087 M:      Russell King <linux@armlinux.org.uk>
15088 L:      netdev@vger.kernel.org
15089 S:      Maintained
15090 F:      drivers/net/phy/phylink.c
15091 F:      drivers/net/phy/sfp*
15092 F:      include/linux/phylink.h
15093 F:      include/linux/sfp.h
15094 K:      phylink
15095
15096 SGI GRU DRIVER
15097 M:      Dimitri Sivanich <sivanich@sgi.com>
15098 S:      Maintained
15099 F:      drivers/misc/sgi-gru/
15100
15101 SGI XP/XPC/XPNET DRIVER
15102 M:      Cliff Whickman <cpw@sgi.com>
15103 M:      Robin Holt <robinmholt@gmail.com>
15104 S:      Maintained
15105 F:      drivers/misc/sgi-xp/
15106
15107 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
15108 M:      Ursula Braun <ubraun@linux.ibm.com>
15109 M:      Karsten Graul <kgraul@linux.ibm.com>
15110 L:      linux-s390@vger.kernel.org
15111 W:      http://www.ibm.com/developerworks/linux/linux390/
15112 S:      Supported
15113 F:      net/smc/
15114
15115 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
15116 M:      Linus Walleij <linus.walleij@linaro.org>
15117 L:      linux-iio@vger.kernel.org
15118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
15119 S:      Maintained
15120 F:      drivers/iio/light/gp2ap002.c
15121 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
15122
15123 SHARP RJ54N1CB0C SENSOR DRIVER
15124 M:      Jacopo Mondi <jacopo@jmondi.org>
15125 L:      linux-media@vger.kernel.org
15126 T:      git git://linuxtv.org/media_tree.git
15127 S:      Odd fixes
15128 F:      drivers/media/i2c/rj54n1cb0c.c
15129 F:      include/media/i2c/rj54n1cb0c.h
15130
15131 SH_VEU V4L2 MEM2MEM DRIVER
15132 L:      linux-media@vger.kernel.org
15133 S:      Orphan
15134 F:      drivers/media/platform/sh_veu.c
15135
15136 SH_VOU V4L2 OUTPUT DRIVER
15137 L:      linux-media@vger.kernel.org
15138 S:      Orphan
15139 F:      drivers/media/platform/sh_vou.c
15140 F:      include/media/drv-intf/sh_vou.h
15141
15142 SI2157 MEDIA DRIVER
15143 M:      Antti Palosaari <crope@iki.fi>
15144 L:      linux-media@vger.kernel.org
15145 W:      https://linuxtv.org
15146 W:      http://palosaari.fi/linux/
15147 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15148 T:      git git://linuxtv.org/anttip/media_tree.git
15149 S:      Maintained
15150 F:      drivers/media/tuners/si2157*
15151
15152 SI2165 MEDIA DRIVER
15153 M:      Matthias Schwarzott <zzam@gentoo.org>
15154 L:      linux-media@vger.kernel.org
15155 W:      https://linuxtv.org
15156 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15157 S:      Maintained
15158 F:      drivers/media/dvb-frontends/si2165*
15159
15160 SI2168 MEDIA DRIVER
15161 M:      Antti Palosaari <crope@iki.fi>
15162 L:      linux-media@vger.kernel.org
15163 W:      https://linuxtv.org
15164 W:      http://palosaari.fi/linux/
15165 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15166 T:      git git://linuxtv.org/anttip/media_tree.git
15167 S:      Maintained
15168 F:      drivers/media/dvb-frontends/si2168*
15169
15170 SI470X FM RADIO RECEIVER I2C DRIVER
15171 M:      Hans Verkuil <hverkuil@xs4all.nl>
15172 L:      linux-media@vger.kernel.org
15173 T:      git git://linuxtv.org/media_tree.git
15174 W:      https://linuxtv.org
15175 S:      Odd Fixes
15176 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
15177
15178 SI470X FM RADIO RECEIVER USB DRIVER
15179 M:      Hans Verkuil <hverkuil@xs4all.nl>
15180 L:      linux-media@vger.kernel.org
15181 T:      git git://linuxtv.org/media_tree.git
15182 W:      https://linuxtv.org
15183 S:      Maintained
15184 F:      drivers/media/radio/si470x/radio-si470x-common.c
15185 F:      drivers/media/radio/si470x/radio-si470x.h
15186 F:      drivers/media/radio/si470x/radio-si470x-usb.c
15187
15188 SI4713 FM RADIO TRANSMITTER I2C DRIVER
15189 M:      Eduardo Valentin <edubezval@gmail.com>
15190 L:      linux-media@vger.kernel.org
15191 T:      git git://linuxtv.org/media_tree.git
15192 W:      https://linuxtv.org
15193 S:      Odd Fixes
15194 F:      drivers/media/radio/si4713/si4713.?
15195
15196 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
15197 M:      Eduardo Valentin <edubezval@gmail.com>
15198 L:      linux-media@vger.kernel.org
15199 T:      git git://linuxtv.org/media_tree.git
15200 W:      https://linuxtv.org
15201 S:      Odd Fixes
15202 F:      drivers/media/radio/si4713/radio-platform-si4713.c
15203
15204 SI4713 FM RADIO TRANSMITTER USB DRIVER
15205 M:      Hans Verkuil <hverkuil@xs4all.nl>
15206 L:      linux-media@vger.kernel.org
15207 T:      git git://linuxtv.org/media_tree.git
15208 W:      https://linuxtv.org
15209 S:      Maintained
15210 F:      drivers/media/radio/si4713/radio-usb-si4713.c
15211
15212 SIANO DVB DRIVER
15213 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15214 L:      linux-media@vger.kernel.org
15215 W:      https://linuxtv.org
15216 T:      git git://linuxtv.org/media_tree.git
15217 S:      Odd fixes
15218 F:      drivers/media/common/siano/
15219 F:      drivers/media/usb/siano/
15220 F:      drivers/media/usb/siano/
15221 F:      drivers/media/mmc/siano/
15222
15223 SIFIVE PDMA DRIVER
15224 M:      Green Wan <green.wan@sifive.com>
15225 S:      Maintained
15226 F:      drivers/dma/sf-pdma/
15227 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
15228
15229 SIFIVE DRIVERS
15230 M:      Palmer Dabbelt <palmer@dabbelt.com>
15231 M:      Paul Walmsley <paul.walmsley@sifive.com>
15232 L:      linux-riscv@lists.infradead.org
15233 T:      git git://github.com/sifive/riscv-linux.git
15234 S:      Supported
15235 K:      [^@]sifive
15236 N:      sifive
15237
15238 SIFIVE FU540 SYSTEM-ON-CHIP
15239 M:      Paul Walmsley <paul.walmsley@sifive.com>
15240 M:      Palmer Dabbelt <palmer@dabbelt.com>
15241 L:      linux-riscv@lists.infradead.org
15242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
15243 S:      Supported
15244 K:      fu540
15245 N:      fu540
15246
15247 SILEAD TOUCHSCREEN DRIVER
15248 M:      Hans de Goede <hdegoede@redhat.com>
15249 L:      linux-input@vger.kernel.org
15250 L:      platform-driver-x86@vger.kernel.org
15251 S:      Maintained
15252 F:      drivers/input/touchscreen/silead.c
15253 F:      drivers/platform/x86/touchscreen_dmi.c
15254
15255 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
15256 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
15257 S:      Supported
15258 F:      drivers/staging/wfx/
15259
15260 SILICON MOTION SM712 FRAME BUFFER DRIVER
15261 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15262 M:      Teddy Wang <teddy.wang@siliconmotion.com>
15263 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15264 L:      linux-fbdev@vger.kernel.org
15265 S:      Maintained
15266 F:      drivers/video/fbdev/sm712*
15267 F:      Documentation/fb/sm712fb.rst
15268
15269 SIMPLE FIRMWARE INTERFACE (SFI)
15270 W:      http://simplefirmware.org/
15271 S:      Obsolete
15272 F:      arch/x86/platform/sfi/
15273 F:      drivers/sfi/
15274 F:      include/linux/sfi*.h
15275
15276 SIMPLEFB FB DRIVER
15277 M:      Hans de Goede <hdegoede@redhat.com>
15278 L:      linux-fbdev@vger.kernel.org
15279 S:      Maintained
15280 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
15281 F:      drivers/video/fbdev/simplefb.c
15282 F:      include/linux/platform_data/simplefb.h
15283
15284 SIMTEC EB110ATX (Chalice CATS)
15285 M:      Vincent Sanders <vince@simtec.co.uk>
15286 M:      Simtec Linux Team <linux@simtec.co.uk>
15287 W:      http://www.simtec.co.uk/products/EB110ATX/
15288 S:      Supported
15289
15290 SIMTEC EB2410ITX (BAST)
15291 M:      Vincent Sanders <vince@simtec.co.uk>
15292 M:      Simtec Linux Team <linux@simtec.co.uk>
15293 W:      http://www.simtec.co.uk/products/EB2410ITX/
15294 S:      Supported
15295 F:      arch/arm/mach-s3c24xx/mach-bast.c
15296 F:      arch/arm/mach-s3c24xx/bast-ide.c
15297 F:      arch/arm/mach-s3c24xx/bast-irq.c
15298
15299 SIPHASH PRF ROUTINES
15300 M:      Jason A. Donenfeld <Jason@zx2c4.com>
15301 S:      Maintained
15302 F:      lib/siphash.c
15303 F:      lib/test_siphash.c
15304 F:      include/linux/siphash.h
15305
15306 SIOX
15307 M:      Thorsten Scherer <t.scherer@eckelmann.de>
15308 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15309 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15310 S:      Supported
15311 F:      drivers/siox/*
15312 F:      drivers/gpio/gpio-siox.c
15313 F:      include/trace/events/siox.h
15314
15315 SIS 190 ETHERNET DRIVER
15316 M:      Francois Romieu <romieu@fr.zoreil.com>
15317 L:      netdev@vger.kernel.org
15318 S:      Maintained
15319 F:      drivers/net/ethernet/sis/sis190.c
15320
15321 SIS 900/7016 FAST ETHERNET DRIVER
15322 M:      Daniele Venzano <venza@brownhat.org>
15323 W:      http://www.brownhat.org/sis900.html
15324 L:      netdev@vger.kernel.org
15325 S:      Maintained
15326 F:      drivers/net/ethernet/sis/sis900.*
15327
15328 SIS FRAMEBUFFER DRIVER
15329 M:      Thomas Winischhofer <thomas@winischhofer.net>
15330 W:      http://www.winischhofer.net/linuxsisvga.shtml
15331 S:      Maintained
15332 F:      Documentation/fb/sisfb.rst
15333 F:      drivers/video/fbdev/sis/
15334 F:      include/video/sisfb.h
15335
15336 SIS USB2VGA DRIVER
15337 M:      Thomas Winischhofer <thomas@winischhofer.net>
15338 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
15339 S:      Maintained
15340 F:      drivers/usb/misc/sisusbvga/
15341
15342 SLAB ALLOCATOR
15343 M:      Christoph Lameter <cl@linux.com>
15344 M:      Pekka Enberg <penberg@kernel.org>
15345 M:      David Rientjes <rientjes@google.com>
15346 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
15347 M:      Andrew Morton <akpm@linux-foundation.org>
15348 L:      linux-mm@kvack.org
15349 S:      Maintained
15350 F:      include/linux/sl?b*.h
15351 F:      mm/sl?b*
15352
15353 SLEEPABLE READ-COPY UPDATE (SRCU)
15354 M:      Lai Jiangshan <jiangshanlai@gmail.com>
15355 M:      "Paul E. McKenney" <paulmck@kernel.org>
15356 M:      Josh Triplett <josh@joshtriplett.org>
15357 R:      Steven Rostedt <rostedt@goodmis.org>
15358 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15359 L:      rcu@vger.kernel.org
15360 W:      http://www.rdrop.com/users/paulmck/RCU/
15361 S:      Supported
15362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15363 F:      include/linux/srcu*.h
15364 F:      kernel/rcu/srcu*.c
15365
15366 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15367 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15368 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15369 S:      Maintained
15370 F:      drivers/slimbus/
15371 F:      Documentation/devicetree/bindings/slimbus/
15372 F:      include/linux/slimbus.h
15373
15374 SMACK SECURITY MODULE
15375 M:      Casey Schaufler <casey@schaufler-ca.com>
15376 L:      linux-security-module@vger.kernel.org
15377 W:      http://schaufler-ca.com
15378 T:      git git://github.com/cschaufler/smack-next
15379 S:      Maintained
15380 F:      Documentation/admin-guide/LSM/Smack.rst
15381 F:      security/smack/
15382
15383 SMC91x ETHERNET DRIVER
15384 M:      Nicolas Pitre <nico@fluxnic.net>
15385 S:      Odd Fixes
15386 F:      drivers/net/ethernet/smsc/smc91x.*
15387
15388 SMIA AND SMIA++ IMAGE SENSOR DRIVER
15389 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15390 L:      linux-media@vger.kernel.org
15391 S:      Maintained
15392 F:      drivers/media/i2c/smiapp/
15393 F:      drivers/media/i2c/smiapp-pll.c
15394 F:      drivers/media/i2c/smiapp-pll.h
15395 F:      include/uapi/linux/smiapp.h
15396 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
15397
15398 SMM665 HARDWARE MONITOR DRIVER
15399 M:      Guenter Roeck <linux@roeck-us.net>
15400 L:      linux-hwmon@vger.kernel.org
15401 S:      Maintained
15402 F:      Documentation/hwmon/smm665.rst
15403 F:      drivers/hwmon/smm665.c
15404
15405 SMSC EMC2103 HARDWARE MONITOR DRIVER
15406 M:      Steve Glendinning <steve.glendinning@shawell.net>
15407 L:      linux-hwmon@vger.kernel.org
15408 S:      Maintained
15409 F:      Documentation/hwmon/emc2103.rst
15410 F:      drivers/hwmon/emc2103.c
15411
15412 SMSC SCH5627 HARDWARE MONITOR DRIVER
15413 M:      Hans de Goede <hdegoede@redhat.com>
15414 L:      linux-hwmon@vger.kernel.org
15415 S:      Supported
15416 F:      Documentation/hwmon/sch5627.rst
15417 F:      drivers/hwmon/sch5627.c
15418
15419 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
15420 M:      Steve Glendinning <steve.glendinning@shawell.net>
15421 L:      linux-fbdev@vger.kernel.org
15422 S:      Maintained
15423 F:      drivers/video/fbdev/smscufx.c
15424
15425 SMSC47B397 HARDWARE MONITOR DRIVER
15426 M:      Jean Delvare <jdelvare@suse.com>
15427 L:      linux-hwmon@vger.kernel.org
15428 S:      Maintained
15429 F:      Documentation/hwmon/smsc47b397.rst
15430 F:      drivers/hwmon/smsc47b397.c
15431
15432 SMSC911x ETHERNET DRIVER
15433 M:      Steve Glendinning <steve.glendinning@shawell.net>
15434 L:      netdev@vger.kernel.org
15435 S:      Maintained
15436 F:      include/linux/smsc911x.h
15437 F:      drivers/net/ethernet/smsc/smsc911x.*
15438
15439 SMSC9420 PCI ETHERNET DRIVER
15440 M:      Steve Glendinning <steve.glendinning@shawell.net>
15441 L:      netdev@vger.kernel.org
15442 S:      Maintained
15443 F:      drivers/net/ethernet/smsc/smsc9420.*
15444
15445 SOC-CAMERA V4L2 SUBSYSTEM
15446 L:      linux-media@vger.kernel.org
15447 T:      git git://linuxtv.org/media_tree.git
15448 S:      Orphan
15449 F:      include/media/soc_camera.h
15450 F:      drivers/staging/media/soc_camera/
15451
15452 SOCIONEXT SYNQUACER I2C DRIVER
15453 M:      Ard Biesheuvel <ardb@kernel.org>
15454 L:      linux-i2c@vger.kernel.org
15455 S:      Maintained
15456 F:      drivers/i2c/busses/i2c-synquacer.c
15457 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
15458
15459 SOCIONEXT UNIPHIER SOUND DRIVER
15460 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15461 S:      Orphan
15462 F:      sound/soc/uniphier/
15463
15464 SOEKRIS NET48XX LED SUPPORT
15465 M:      Chris Boot <bootc@bootc.net>
15466 S:      Maintained
15467 F:      drivers/leds/leds-net48xx.c
15468
15469 SOFT-IWARP DRIVER (siw)
15470 M:      Bernard Metzler <bmt@zurich.ibm.com>
15471 L:      linux-rdma@vger.kernel.org
15472 S:      Supported
15473 F:      drivers/infiniband/sw/siw/
15474 F:      include/uapi/rdma/siw-abi.h
15475
15476 SOFT-ROCE DRIVER (rxe)
15477 M:      Zhu Yanjun <yanjunz@mellanox.com>
15478 L:      linux-rdma@vger.kernel.org
15479 S:      Supported
15480 F:      drivers/infiniband/sw/rxe/
15481 F:      include/uapi/rdma/rdma_user_rxe.h
15482
15483 SOFTLOGIC 6x10 MPEG CODEC
15484 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
15485 M:      Anton Sviridenko <anton@corp.bluecherry.net>
15486 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
15487 M:      Andrey Utkin <andrey_utkin@fastmail.com>
15488 M:      Ismael Luceno <ismael@iodev.co.uk>
15489 L:      linux-media@vger.kernel.org
15490 S:      Supported
15491 F:      drivers/media/pci/solo6x10/
15492
15493 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
15494 M:      James Morse <james.morse@arm.com>
15495 L:      linux-arm-kernel@lists.infradead.org
15496 S:      Maintained
15497 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
15498 F:      drivers/firmware/arm_sdei.c
15499 F:      include/linux/arm_sdei.h
15500 F:      include/uapi/linux/arm_sdei.h
15501
15502 SOFTWARE RAID (Multiple Disks) SUPPORT
15503 M:      Song Liu <song@kernel.org>
15504 L:      linux-raid@vger.kernel.org
15505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
15506 S:      Supported
15507 F:      drivers/md/Makefile
15508 F:      drivers/md/Kconfig
15509 F:      drivers/md/md*
15510 F:      drivers/md/raid*
15511 F:      include/linux/raid/
15512 F:      include/uapi/linux/raid/
15513
15514 SOCIONEXT (SNI) AVE NETWORK DRIVER
15515 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15516 L:      netdev@vger.kernel.org
15517 S:      Maintained
15518 F:      drivers/net/ethernet/socionext/sni_ave.c
15519 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.txt
15520
15521 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
15522 M:      Jassi Brar <jaswinder.singh@linaro.org>
15523 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15524 L:      netdev@vger.kernel.org
15525 S:      Maintained
15526 F:      drivers/net/ethernet/socionext/netsec.c
15527 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
15528
15529 SOCIONEXT (SNI) Synquacer SPI DRIVER
15530 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
15531 M:      Jassi Brar <jaswinder.singh@linaro.org>
15532 L:      linux-spi@vger.kernel.org
15533 S:      Maintained
15534 F:      drivers/spi/spi-synquacer.c
15535 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
15536
15537 SOLIDRUN CLEARFOG SUPPORT
15538 M:      Russell King <linux@armlinux.org.uk>
15539 S:      Maintained
15540 F:      arch/arm/boot/dts/armada-388-clearfog*
15541 F:      arch/arm/boot/dts/armada-38x-solidrun-*
15542
15543 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
15544 M:      Russell King <linux@armlinux.org.uk>
15545 S:      Maintained
15546 F:      arch/arm/boot/dts/imx6*-cubox-i*
15547 F:      arch/arm/boot/dts/imx6*-hummingboard*
15548 F:      arch/arm/boot/dts/imx6*-sr-*
15549
15550 SONIC NETWORK DRIVER
15551 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
15552 L:      netdev@vger.kernel.org
15553 S:      Maintained
15554 F:      drivers/net/ethernet/natsemi/sonic.*
15555
15556 SONICS SILICON BACKPLANE DRIVER (SSB)
15557 M:      Michael Buesch <m@bues.ch>
15558 L:      linux-wireless@vger.kernel.org
15559 S:      Maintained
15560 F:      drivers/ssb/
15561 F:      include/linux/ssb/
15562
15563 SONY IMX214 SENSOR DRIVER
15564 M:      Ricardo Ribalda <ricardo.ribalda@gmail.com>
15565 L:      linux-media@vger.kernel.org
15566 T:      git git://linuxtv.org/media_tree.git
15567 S:      Maintained
15568 F:      drivers/media/i2c/imx214.c
15569 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.txt
15570
15571 SONY IMX219 SENSOR DRIVER
15572 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
15573 L:      linux-media@vger.kernel.org
15574 T:      git git://linuxtv.org/media_tree.git
15575 S:      Maintained
15576 F:      drivers/media/i2c/imx219.c
15577 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
15578
15579 SONY IMX258 SENSOR DRIVER
15580 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15581 L:      linux-media@vger.kernel.org
15582 T:      git git://linuxtv.org/media_tree.git
15583 S:      Maintained
15584 F:      drivers/media/i2c/imx258.c
15585
15586 SONY IMX274 SENSOR DRIVER
15587 M:      Leon Luo <leonl@leopardimaging.com>
15588 L:      linux-media@vger.kernel.org
15589 T:      git git://linuxtv.org/media_tree.git
15590 S:      Maintained
15591 F:      drivers/media/i2c/imx274.c
15592 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
15593
15594 SONY IMX290 SENSOR DRIVER
15595 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15596 L:      linux-media@vger.kernel.org
15597 T:      git git://linuxtv.org/media_tree.git
15598 S:      Maintained
15599 F:      drivers/media/i2c/imx290.c
15600 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
15601
15602 SONY IMX319 SENSOR DRIVER
15603 M:      Bingbu Cao <bingbu.cao@intel.com>
15604 L:      linux-media@vger.kernel.org
15605 T:      git git://linuxtv.org/media_tree.git
15606 S:      Maintained
15607 F:      drivers/media/i2c/imx319.c
15608
15609 SONY IMX355 SENSOR DRIVER
15610 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15611 L:      linux-media@vger.kernel.org
15612 T:      git git://linuxtv.org/media_tree.git
15613 S:      Maintained
15614 F:      drivers/media/i2c/imx355.c
15615
15616 SONY MEMORYSTICK SUBSYSTEM
15617 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15618 M:      Alex Dubov <oakad@yahoo.com>
15619 M:      Ulf Hansson <ulf.hansson@linaro.org>
15620 L:      linux-mmc@vger.kernel.org
15621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
15622 S:      Maintained
15623 F:      drivers/memstick/
15624 F:      include/linux/memstick.h
15625
15626 SONY VAIO CONTROL DEVICE DRIVER
15627 M:      Mattia Dongili <malattia@linux.it>
15628 L:      platform-driver-x86@vger.kernel.org
15629 S:      Maintained
15630 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
15631 F:      Documentation/admin-guide/laptops/sony-laptop.rst
15632 F:      drivers/char/sonypi.c
15633 F:      drivers/platform/x86/sony-laptop.c
15634 F:      include/linux/sony-laptop.h
15635
15636 SOUND
15637 M:      Jaroslav Kysela <perex@perex.cz>
15638 M:      Takashi Iwai <tiwai@suse.com>
15639 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15640 W:      http://www.alsa-project.org/
15641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15642 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
15643 S:      Maintained
15644 F:      Documentation/sound/
15645 F:      include/sound/
15646 F:      include/uapi/sound/
15647 F:      sound/
15648
15649 SOUND - COMPRESSED AUDIO
15650 M:      Vinod Koul <vkoul@kernel.org>
15651 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15653 S:      Supported
15654 F:      Documentation/sound/designs/compress-offload.rst
15655 F:      include/sound/compress_driver.h
15656 F:      include/uapi/sound/compress_*
15657 F:      sound/core/compress_offload.c
15658 F:      sound/soc/soc-compress.c
15659
15660 SOUND - DMAENGINE HELPERS
15661 M:      Lars-Peter Clausen <lars@metafoo.de>
15662 S:      Supported
15663 F:      include/sound/dmaengine_pcm.h
15664 F:      sound/core/pcm_dmaengine.c
15665 F:      sound/soc/soc-generic-dmaengine-pcm.c
15666
15667 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
15668 M:      Liam Girdwood <lgirdwood@gmail.com>
15669 M:      Mark Brown <broonie@kernel.org>
15670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
15671 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15672 W:      http://alsa-project.org/main/index.php/ASoC
15673 S:      Supported
15674 F:      Documentation/devicetree/bindings/sound/
15675 F:      Documentation/sound/soc/
15676 F:      sound/soc/
15677 F:      include/dt-bindings/sound/
15678 F:      include/sound/soc*
15679
15680 SOUNDWIRE SUBSYSTEM
15681 M:      Vinod Koul <vkoul@kernel.org>
15682 M:      Sanyog Kale <sanyog.r.kale@intel.com>
15683 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
15684 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15685 S:      Supported
15686 F:      Documentation/driver-api/soundwire/
15687 F:      drivers/soundwire/
15688 F:      include/linux/soundwire/
15689
15690 SP2 MEDIA DRIVER
15691 M:      Olli Salonen <olli.salonen@iki.fi>
15692 L:      linux-media@vger.kernel.org
15693 W:      https://linuxtv.org
15694 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15695 S:      Maintained
15696 F:      drivers/media/dvb-frontends/sp2*
15697
15698 SPARC + UltraSPARC (sparc/sparc64)
15699 M:      "David S. Miller" <davem@davemloft.net>
15700 L:      sparclinux@vger.kernel.org
15701 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
15702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15704 S:      Maintained
15705 F:      arch/sparc/
15706 F:      drivers/sbus/
15707
15708 SPARC SERIAL DRIVERS
15709 M:      "David S. Miller" <davem@davemloft.net>
15710 L:      sparclinux@vger.kernel.org
15711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15713 S:      Maintained
15714 F:      include/linux/sunserialcore.h
15715 F:      drivers/tty/serial/suncore.c
15716 F:      drivers/tty/serial/sunhv.c
15717 F:      drivers/tty/serial/sunsab.c
15718 F:      drivers/tty/serial/sunsab.h
15719 F:      drivers/tty/serial/sunsu.c
15720 F:      drivers/tty/serial/sunzilog.c
15721 F:      drivers/tty/serial/sunzilog.h
15722 F:      drivers/tty/vcc.c
15723
15724 SPARSE CHECKER
15725 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
15726 L:      linux-sparse@vger.kernel.org
15727 W:      https://sparse.wiki.kernel.org/
15728 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
15729 S:      Maintained
15730 F:      include/linux/compiler.h
15731
15732 SPEAR CLOCK FRAMEWORK SUPPORT
15733 M:      Viresh Kumar <vireshk@kernel.org>
15734 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15735 W:      http://www.st.com/spear
15736 S:      Maintained
15737 F:      drivers/clk/spear/
15738
15739 SPEAR PLATFORM SUPPORT
15740 M:      Viresh Kumar <vireshk@kernel.org>
15741 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
15742 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15743 W:      http://www.st.com/spear
15744 S:      Maintained
15745 F:      arch/arm/boot/dts/spear*
15746 F:      arch/arm/mach-spear/
15747
15748 SPI NOR SUBSYSTEM
15749 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
15750 L:      linux-mtd@lists.infradead.org
15751 W:      http://www.linux-mtd.infradead.org/
15752 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
15753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
15754 S:      Maintained
15755 F:      drivers/mtd/spi-nor/
15756 F:      include/linux/mtd/spi-nor.h
15757
15758 SPI SUBSYSTEM
15759 M:      Mark Brown <broonie@kernel.org>
15760 L:      linux-spi@vger.kernel.org
15761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
15762 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
15763 S:      Maintained
15764 F:      Documentation/devicetree/bindings/spi/
15765 F:      Documentation/spi/
15766 F:      drivers/spi/
15767 F:      include/linux/spi/
15768 F:      include/uapi/linux/spi/
15769 F:      tools/spi/
15770
15771 SPIDERNET NETWORK DRIVER for CELL
15772 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
15773 L:      netdev@vger.kernel.org
15774 S:      Supported
15775 F:      Documentation/networking/device_drivers/toshiba/spider_net.txt
15776 F:      drivers/net/ethernet/toshiba/spider_net*
15777
15778 SPMI SUBSYSTEM
15779 R:      Stephen Boyd <sboyd@kernel.org>
15780 L:      linux-arm-msm@vger.kernel.org
15781 F:      Documentation/devicetree/bindings/spmi/
15782 F:      drivers/spmi/
15783 F:      include/dt-bindings/spmi/spmi.h
15784 F:      include/linux/spmi.h
15785 F:      include/trace/events/spmi.h
15786
15787 SPU FILE SYSTEM
15788 M:      Jeremy Kerr <jk@ozlabs.org>
15789 L:      linuxppc-dev@lists.ozlabs.org
15790 W:      http://www.ibm.com/developerworks/power/cell/
15791 S:      Supported
15792 F:      Documentation/filesystems/spufs.txt
15793 F:      arch/powerpc/platforms/cell/spufs/
15794
15795 SQUASHFS FILE SYSTEM
15796 M:      Phillip Lougher <phillip@squashfs.org.uk>
15797 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
15798 W:      http://squashfs.org.uk
15799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
15800 S:      Maintained
15801 F:      Documentation/filesystems/squashfs.rst
15802 F:      fs/squashfs/
15803
15804 SRM (Alpha) environment access
15805 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
15806 S:      Maintained
15807 F:      arch/alpha/kernel/srm_env.c
15808
15809 ST LSM6DSx IMU IIO DRIVER
15810 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
15811 L:      linux-iio@vger.kernel.org
15812 W:      http://www.st.com/
15813 S:      Maintained
15814 F:      drivers/iio/imu/st_lsm6dsx/
15815 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
15816
15817 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
15818 M:      Mickael Guene <mickael.guene@st.com>
15819 L:      linux-media@vger.kernel.org
15820 T:      git git://linuxtv.org/media_tree.git
15821 S:      Maintained
15822 F:      drivers/media/i2c/st-mipid02.c
15823 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
15824
15825 ST STM32 I2C/SMBUS DRIVER
15826 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
15827 L:      linux-i2c@vger.kernel.org
15828 S:      Maintained
15829 F:      drivers/i2c/busses/i2c-stm32*
15830
15831 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
15832 M:      Song Qiang <songqiang1304521@gmail.com>
15833 L:      linux-iio@vger.kernel.org
15834 S:      Maintained
15835 F:      drivers/iio/proximity/vl53l0x-i2c.c
15836 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
15837
15838 STABLE BRANCH
15839 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15840 M:      Sasha Levin <sashal@kernel.org>
15841 L:      stable@vger.kernel.org
15842 S:      Supported
15843 F:      Documentation/process/stable-kernel-rules.rst
15844
15845 STAGING - COMEDI
15846 M:      Ian Abbott <abbotti@mev.co.uk>
15847 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
15848 S:      Odd Fixes
15849 F:      drivers/staging/comedi/
15850
15851 STAGING - FIELDBUS SUBSYSTEM
15852 M:      Sven Van Asbroeck <TheSven73@gmail.com>
15853 S:      Maintained
15854 F:      drivers/staging/fieldbus/*
15855 F:      drivers/staging/fieldbus/Documentation/
15856
15857 STAGING - HMS ANYBUS-S BUS
15858 M:      Sven Van Asbroeck <TheSven73@gmail.com>
15859 S:      Maintained
15860 F:      drivers/staging/fieldbus/anybuss/
15861
15862 STAGING - INDUSTRIAL IO
15863 M:      Jonathan Cameron <jic23@kernel.org>
15864 L:      linux-iio@vger.kernel.org
15865 S:      Odd Fixes
15866 F:      Documentation/devicetree/bindings/staging/iio/
15867 F:      drivers/staging/iio/
15868
15869 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
15870 M:      Marc Dietrich <marvin24@gmx.de>
15871 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
15872 L:      linux-tegra@vger.kernel.org
15873 S:      Maintained
15874 F:      drivers/staging/nvec/
15875
15876 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
15877 M:      Jens Frederich <jfrederich@gmail.com>
15878 M:      Daniel Drake <dsd@laptop.org>
15879 M:      Jon Nettleton <jon.nettleton@gmail.com>
15880 W:      http://wiki.laptop.org/go/DCON
15881 S:      Maintained
15882 F:      drivers/staging/olpc_dcon/
15883
15884 STAGING - REALTEK RTL8712U DRIVERS
15885 M:      Larry Finger <Larry.Finger@lwfinger.net>
15886 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
15887 S:      Odd Fixes
15888 F:      drivers/staging/rtl8712/
15889
15890 STAGING - REALTEK RTL8188EU DRIVERS
15891 M:      Larry Finger <Larry.Finger@lwfinger.net>
15892 S:      Odd Fixes
15893 F:      drivers/staging/rtl8188eu/
15894
15895 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
15896 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15897 M:      Teddy Wang <teddy.wang@siliconmotion.com>
15898 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15899 L:      linux-fbdev@vger.kernel.org
15900 S:      Maintained
15901 F:      drivers/staging/sm750fb/
15902
15903 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
15904 M:      William Hubbs <w.d.hubbs@gmail.com>
15905 M:      Chris Brannon <chris@the-brannons.com>
15906 M:      Kirk Reiser <kirk@reisers.ca>
15907 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
15908 L:      speakup@linux-speakup.org
15909 W:      http://www.linux-speakup.org/
15910 S:      Odd Fixes
15911 F:      drivers/staging/speakup/
15912
15913 STAGING - VIA VT665X DRIVERS
15914 M:      Forest Bond <forest@alittletooquiet.net>
15915 S:      Odd Fixes
15916 F:      drivers/staging/vt665?/
15917
15918 STAGING - WILC1000 WIFI DRIVER
15919 M:      Adham Abozaeid <adham.abozaeid@microchip.com>
15920 M:      Ajay Singh <ajay.kathat@microchip.com>
15921 L:      linux-wireless@vger.kernel.org
15922 S:      Supported
15923 F:      drivers/staging/wilc1000/
15924
15925 STAGING - SEPS525 LCD CONTROLLER DRIVERS
15926 M:      Michael Hennerich <michael.hennerich@analog.com>
15927 M:      Beniamin Bia <beniamin.bia@analog.com>
15928 L:      linux-fbdev@vger.kernel.org
15929 S:      Supported
15930 F:      drivers/staging/fbtft/fb_seps525.c
15931 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
15932
15933 STAGING SUBSYSTEM
15934 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
15936 L:      devel@driverdev.osuosl.org
15937 S:      Supported
15938 F:      drivers/staging/
15939
15940 STARFIRE/DURALAN NETWORK DRIVER
15941 M:      Ion Badulescu <ionut@badula.org>
15942 S:      Odd Fixes
15943 F:      drivers/net/ethernet/adaptec/starfire*
15944
15945 STEC S1220 SKD DRIVER
15946 M:      Damien Le Moal <Damien.LeMoal@wdc.com>
15947 L:      linux-block@vger.kernel.org
15948 S:      Maintained
15949 F:      drivers/block/skd*[ch]
15950
15951 STI AUDIO (ASoC) DRIVERS
15952 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
15953 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15954 S:      Maintained
15955 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
15956 F:      sound/soc/sti/
15957
15958 STI CEC DRIVER
15959 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
15960 S:      Maintained
15961 F:      drivers/media/platform/sti/cec/
15962 F:      Documentation/devicetree/bindings/media/stih-cec.txt
15963
15964 STK1160 USB VIDEO CAPTURE DRIVER
15965 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
15966 L:      linux-media@vger.kernel.org
15967 T:      git git://linuxtv.org/media_tree.git
15968 S:      Maintained
15969 F:      drivers/media/usb/stk1160/
15970
15971 STM32 AUDIO (ASoC) DRIVERS
15972 M:      Olivier Moysan <olivier.moysan@st.com>
15973 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
15974 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15975 S:      Maintained
15976 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
15977 F:      sound/soc/stm/
15978
15979 STM32 TIMER/LPTIMER DRIVERS
15980 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
15981 S:      Maintained
15982 F:      drivers/*/stm32-*timer*
15983 F:      drivers/pwm/pwm-stm32*
15984 F:      include/linux/*/stm32-*tim*
15985 F:      Documentation/ABI/testing/*timer-stm32
15986 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
15987 F:      Documentation/devicetree/bindings/pwm/pwm-stm32*
15988
15989 STMMAC ETHERNET DRIVER
15990 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
15991 M:      Alexandre Torgue <alexandre.torgue@st.com>
15992 M:      Jose Abreu <joabreu@synopsys.com>
15993 L:      netdev@vger.kernel.org
15994 W:      http://www.stlinux.com
15995 S:      Supported
15996 F:      Documentation/networking/device_drivers/stmicro/
15997 F:      drivers/net/ethernet/stmicro/stmmac/
15998
15999 EXTRA BOOT CONFIG
16000 M:      Masami Hiramatsu <mhiramat@kernel.org>
16001 S:      Maintained
16002 F:      lib/bootconfig.c
16003 F:      fs/proc/bootconfig.c
16004 F:      include/linux/bootconfig.h
16005 F:      tools/bootconfig/*
16006 F:      Documentation/admin-guide/bootconfig.rst
16007
16008 SUN3/3X
16009 M:      Sam Creasey <sammy@sammy.net>
16010 W:      http://sammy.net/sun3/
16011 S:      Maintained
16012 F:      arch/m68k/kernel/*sun3*
16013 F:      arch/m68k/sun3*/
16014 F:      arch/m68k/include/asm/sun3*
16015 F:      drivers/net/ethernet/i825xx/sun3*
16016
16017 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
16018 M:      Hans de Goede <hdegoede@redhat.com>
16019 L:      linux-input@vger.kernel.org
16020 S:      Maintained
16021 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
16022 F:      drivers/input/keyboard/sun4i-lradc-keys.c
16023
16024 SUNDANCE NETWORK DRIVER
16025 M:      Denis Kirjanov <kda@linux-powerpc.org>
16026 L:      netdev@vger.kernel.org
16027 S:      Maintained
16028 F:      drivers/net/ethernet/dlink/sundance.c
16029
16030 SUPERH
16031 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
16032 M:      Rich Felker <dalias@libc.org>
16033 L:      linux-sh@vger.kernel.org
16034 Q:      http://patchwork.kernel.org/project/linux-sh/list/
16035 S:      Maintained
16036 F:      Documentation/sh/
16037 F:      arch/sh/
16038 F:      drivers/sh/
16039
16040 SUSPEND TO RAM
16041 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
16042 M:      Len Brown <len.brown@intel.com>
16043 M:      Pavel Machek <pavel@ucw.cz>
16044 L:      linux-pm@vger.kernel.org
16045 B:      https://bugzilla.kernel.org
16046 S:      Supported
16047 F:      Documentation/power/
16048 F:      arch/x86/kernel/acpi/
16049 F:      drivers/base/power/
16050 F:      kernel/power/
16051 F:      include/linux/suspend.h
16052 F:      include/linux/freezer.h
16053 F:      include/linux/pm.h
16054
16055 SVGA HANDLING
16056 M:      Martin Mares <mj@ucw.cz>
16057 L:      linux-video@atrey.karlin.mff.cuni.cz
16058 S:      Maintained
16059 F:      Documentation/admin-guide/svga.rst
16060 F:      arch/x86/boot/video*
16061
16062 SWIOTLB SUBSYSTEM
16063 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
16064 L:      iommu@lists.linux-foundation.org
16065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
16066 S:      Supported
16067 F:      kernel/dma/swiotlb.c
16068 F:      arch/*/kernel/pci-swiotlb.c
16069 F:      include/linux/swiotlb.h
16070
16071 SWITCHDEV
16072 M:      Jiri Pirko <jiri@resnulli.us>
16073 M:      Ivan Vecera <ivecera@redhat.com>
16074 L:      netdev@vger.kernel.org
16075 S:      Supported
16076 F:      net/switchdev/
16077 F:      include/net/switchdev.h
16078
16079 SY8106A REGULATOR DRIVER
16080 M:      Icenowy Zheng <icenowy@aosc.io>
16081 S:      Maintained
16082 F:      drivers/regulator/sy8106a-regulator.c
16083 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
16084
16085 SYNC FILE FRAMEWORK
16086 M:      Sumit Semwal <sumit.semwal@linaro.org>
16087 R:      Gustavo Padovan <gustavo@padovan.org>
16088 S:      Maintained
16089 L:      linux-media@vger.kernel.org
16090 L:      dri-devel@lists.freedesktop.org
16091 F:      drivers/dma-buf/sync_*
16092 F:      drivers/dma-buf/dma-fence*
16093 F:      drivers/dma-buf/sw_sync.c
16094 F:      include/linux/sync_file.h
16095 F:      include/uapi/linux/sync_file.h
16096 F:      Documentation/driver-api/sync_file.rst
16097 T:      git git://anongit.freedesktop.org/drm/drm-misc
16098
16099 SYNOPSYS ARC ARCHITECTURE
16100 M:      Vineet Gupta <vgupta@synopsys.com>
16101 L:      linux-snps-arc@lists.infradead.org
16102 S:      Supported
16103 F:      arch/arc/
16104 F:      Documentation/devicetree/bindings/arc/*
16105 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
16106 F:      drivers/clocksource/arc_timer.c
16107 F:      drivers/tty/serial/arc_uart.c
16108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
16109
16110 SYNOPSYS ARC HSDK SDP pll clock driver
16111 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16112 S:      Supported
16113 F:      drivers/clk/clk-hsdk-pll.c
16114 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
16115
16116 SYNOPSYS ARC SDP clock driver
16117 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16118 S:      Supported
16119 F:      drivers/clk/axs10x/*
16120 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
16121
16122 SYNOPSYS ARC SDP platform support
16123 M:      Alexey Brodkin <abrodkin@synopsys.com>
16124 S:      Supported
16125 F:      arch/arc/plat-axs10x
16126 F:      arch/arc/boot/dts/ax*
16127 F:      Documentation/devicetree/bindings/arc/axs10*
16128
16129 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
16130 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16131 S:      Supported
16132 F:      drivers/reset/reset-axs10x.c
16133 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
16134
16135 SYNOPSYS CREG GPIO DRIVER
16136 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16137 S:      Maintained
16138 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
16139 F:      drivers/gpio/gpio-creg-snps.c
16140
16141 SYNOPSYS DESIGNWARE 8250 UART DRIVER
16142 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16143 S:      Maintained
16144 F:      drivers/tty/serial/8250/8250_dw.c
16145 F:      drivers/tty/serial/8250/8250_dwlib.*
16146 F:      drivers/tty/serial/8250/8250_lpss.c
16147
16148 SYNOPSYS DESIGNWARE APB GPIO DRIVER
16149 M:      Hoan Tran <hoan@os.amperecomputing.com>
16150 L:      linux-gpio@vger.kernel.org
16151 S:      Maintained
16152 F:      Documentation/devicetree/bindings/gpio/snps-dwapb-gpio.txt
16153 F:      drivers/gpio/gpio-dwapb.c
16154
16155 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
16156 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16157 S:      Maintained
16158 F:      drivers/dma/dw-axi-dmac/
16159 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
16160
16161 SYNOPSYS DESIGNWARE DMAC DRIVER
16162 M:      Viresh Kumar <vireshk@kernel.org>
16163 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16164 S:      Maintained
16165 F:      Documentation/devicetree/bindings/dma/snps-dma.txt
16166 F:      drivers/dma/dw/
16167 F:      include/dt-bindings/dma/dw-dmac.h
16168 F:      include/linux/dma/dw.h
16169 F:      include/linux/platform_data/dma-dw.h
16170
16171 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
16172 M:      Jose Abreu <Jose.Abreu@synopsys.com>
16173 L:      netdev@vger.kernel.org
16174 S:      Supported
16175 F:      drivers/net/ethernet/synopsys/
16176
16177 SYNOPSYS DESIGNWARE I2C DRIVER
16178 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
16179 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16180 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
16181 L:      linux-i2c@vger.kernel.org
16182 S:      Maintained
16183 F:      drivers/i2c/busses/i2c-designware-*
16184 F:      include/linux/platform_data/i2c-designware.h
16185
16186 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
16187 M:      Jaehoon Chung <jh80.chung@samsung.com>
16188 L:      linux-mmc@vger.kernel.org
16189 S:      Maintained
16190 F:      drivers/mmc/host/dw_mmc*
16191
16192 SYNOPSYS HSDK RESET CONTROLLER DRIVER
16193 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16194 S:      Supported
16195 F:      drivers/reset/reset-hsdk.c
16196 F:      include/dt-bindings/reset/snps,hsdk-reset.h
16197 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
16198
16199 SYSTEM CONFIGURATION (SYSCON)
16200 M:      Lee Jones <lee.jones@linaro.org>
16201 M:      Arnd Bergmann <arnd@arndb.de>
16202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
16203 S:      Supported
16204 F:      drivers/mfd/syscon.c
16205
16206 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
16207 M:      Sudeep Holla <sudeep.holla@arm.com>
16208 L:      linux-arm-kernel@lists.infradead.org
16209 S:      Maintained
16210 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
16211 F:      drivers/clk/clk-sc[mp]i.c
16212 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
16213 F:      drivers/firmware/arm_scpi.c
16214 F:      drivers/firmware/arm_scmi/
16215 F:      drivers/reset/reset-scmi.c
16216 F:      include/linux/sc[mp]i_protocol.h
16217 F:      include/trace/events/scmi.h
16218
16219 SYSTEM RESET/SHUTDOWN DRIVERS
16220 M:      Sebastian Reichel <sre@kernel.org>
16221 L:      linux-pm@vger.kernel.org
16222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16223 S:      Maintained
16224 F:      Documentation/devicetree/bindings/power/reset/
16225 F:      drivers/power/reset/
16226
16227 SYSTEM TRACE MODULE CLASS
16228 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
16229 S:      Maintained
16230 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
16231 F:      Documentation/trace/stm.rst
16232 F:      drivers/hwtracing/stm/
16233 F:      include/linux/stm.h
16234 F:      include/uapi/linux/stm.h
16235
16236 SYSTEM76 ACPI DRIVER
16237 M:      Jeremy Soller <jeremy@system76.com>
16238 M:      System76 Product Development <productdev@system76.com>
16239 L:      platform-driver-x86@vger.kernel.org
16240 S:      Maintained
16241 F:      drivers/platform/x86/system76_acpi.c
16242
16243 SYSV FILESYSTEM
16244 M:      Christoph Hellwig <hch@infradead.org>
16245 S:      Maintained
16246 F:      Documentation/filesystems/sysv-fs.rst
16247 F:      fs/sysv/
16248 F:      include/linux/sysv_fs.h
16249
16250 TASKSTATS STATISTICS INTERFACE
16251 M:      Balbir Singh <bsingharora@gmail.com>
16252 S:      Maintained
16253 F:      Documentation/accounting/taskstats*
16254 F:      include/linux/taskstats*
16255 F:      kernel/taskstats.c
16256
16257 TC subsystem
16258 M:      Jamal Hadi Salim <jhs@mojatatu.com>
16259 M:      Cong Wang <xiyou.wangcong@gmail.com>
16260 M:      Jiri Pirko <jiri@resnulli.us>
16261 L:      netdev@vger.kernel.org
16262 S:      Maintained
16263 F:      include/net/pkt_cls.h
16264 F:      include/net/pkt_sched.h
16265 F:      include/net/tc_act/
16266 F:      include/uapi/linux/pkt_cls.h
16267 F:      include/uapi/linux/pkt_sched.h
16268 F:      include/uapi/linux/tc_act/
16269 F:      include/uapi/linux/tc_ematch/
16270 F:      net/sched/
16271
16272 TC90522 MEDIA DRIVER
16273 M:      Akihiro Tsukada <tskd08@gmail.com>
16274 L:      linux-media@vger.kernel.org
16275 S:      Odd Fixes
16276 F:      drivers/media/dvb-frontends/tc90522*
16277
16278 TCP LOW PRIORITY MODULE
16279 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
16280 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
16281 W:      http://tcp-lp-mod.sourceforge.net/
16282 S:      Maintained
16283 F:      net/ipv4/tcp_lp.c
16284
16285 TDA10071 MEDIA DRIVER
16286 M:      Antti Palosaari <crope@iki.fi>
16287 L:      linux-media@vger.kernel.org
16288 W:      https://linuxtv.org
16289 W:      http://palosaari.fi/linux/
16290 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16291 T:      git git://linuxtv.org/anttip/media_tree.git
16292 S:      Maintained
16293 F:      drivers/media/dvb-frontends/tda10071*
16294
16295 TDA18212 MEDIA DRIVER
16296 M:      Antti Palosaari <crope@iki.fi>
16297 L:      linux-media@vger.kernel.org
16298 W:      https://linuxtv.org
16299 W:      http://palosaari.fi/linux/
16300 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16301 T:      git git://linuxtv.org/anttip/media_tree.git
16302 S:      Maintained
16303 F:      drivers/media/tuners/tda18212*
16304
16305 TDA18218 MEDIA DRIVER
16306 M:      Antti Palosaari <crope@iki.fi>
16307 L:      linux-media@vger.kernel.org
16308 W:      https://linuxtv.org
16309 W:      http://palosaari.fi/linux/
16310 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16311 T:      git git://linuxtv.org/anttip/media_tree.git
16312 S:      Maintained
16313 F:      drivers/media/tuners/tda18218*
16314
16315 TDA18250 MEDIA DRIVER
16316 M:      Olli Salonen <olli.salonen@iki.fi>
16317 L:      linux-media@vger.kernel.org
16318 W:      https://linuxtv.org
16319 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16320 T:      git git://linuxtv.org/media_tree.git
16321 S:      Maintained
16322 F:      drivers/media/tuners/tda18250*
16323
16324 TDA18271 MEDIA DRIVER
16325 M:      Michael Krufky <mkrufky@linuxtv.org>
16326 L:      linux-media@vger.kernel.org
16327 W:      https://linuxtv.org
16328 W:      http://github.com/mkrufky
16329 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16330 T:      git git://linuxtv.org/mkrufky/tuners.git
16331 S:      Maintained
16332 F:      drivers/media/tuners/tda18271*
16333
16334 TDA1997x MEDIA DRIVER
16335 M:      Tim Harvey <tharvey@gateworks.com>
16336 L:      linux-media@vger.kernel.org
16337 W:      https://linuxtv.org
16338 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16339 S:      Maintained
16340 F:      drivers/media/i2c/tda1997x.*
16341
16342 TDA827x MEDIA DRIVER
16343 M:      Michael Krufky <mkrufky@linuxtv.org>
16344 L:      linux-media@vger.kernel.org
16345 W:      https://linuxtv.org
16346 W:      http://github.com/mkrufky
16347 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16348 T:      git git://linuxtv.org/mkrufky/tuners.git
16349 S:      Maintained
16350 F:      drivers/media/tuners/tda8290.*
16351
16352 TDA8290 MEDIA DRIVER
16353 M:      Michael Krufky <mkrufky@linuxtv.org>
16354 L:      linux-media@vger.kernel.org
16355 W:      https://linuxtv.org
16356 W:      http://github.com/mkrufky
16357 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16358 T:      git git://linuxtv.org/mkrufky/tuners.git
16359 S:      Maintained
16360 F:      drivers/media/tuners/tda8290.*
16361
16362 TDA9840 MEDIA DRIVER
16363 M:      Hans Verkuil <hverkuil@xs4all.nl>
16364 L:      linux-media@vger.kernel.org
16365 T:      git git://linuxtv.org/media_tree.git
16366 W:      https://linuxtv.org
16367 S:      Maintained
16368 F:      drivers/media/i2c/tda9840*
16369
16370 TEA5761 TUNER DRIVER
16371 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16372 L:      linux-media@vger.kernel.org
16373 W:      https://linuxtv.org
16374 T:      git git://linuxtv.org/media_tree.git
16375 S:      Odd fixes
16376 F:      drivers/media/tuners/tea5761.*
16377
16378 TEA5767 TUNER DRIVER
16379 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16380 L:      linux-media@vger.kernel.org
16381 W:      https://linuxtv.org
16382 T:      git git://linuxtv.org/media_tree.git
16383 S:      Maintained
16384 F:      drivers/media/tuners/tea5767.*
16385
16386 TEA6415C MEDIA DRIVER
16387 M:      Hans Verkuil <hverkuil@xs4all.nl>
16388 L:      linux-media@vger.kernel.org
16389 T:      git git://linuxtv.org/media_tree.git
16390 W:      https://linuxtv.org
16391 S:      Maintained
16392 F:      drivers/media/i2c/tea6415c*
16393
16394 TEA6420 MEDIA DRIVER
16395 M:      Hans Verkuil <hverkuil@xs4all.nl>
16396 L:      linux-media@vger.kernel.org
16397 T:      git git://linuxtv.org/media_tree.git
16398 W:      https://linuxtv.org
16399 S:      Maintained
16400 F:      drivers/media/i2c/tea6420*
16401
16402 TEAM DRIVER
16403 M:      Jiri Pirko <jiri@resnulli.us>
16404 L:      netdev@vger.kernel.org
16405 S:      Supported
16406 F:      drivers/net/team/
16407 F:      include/linux/if_team.h
16408 F:      include/uapi/linux/if_team.h
16409
16410 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
16411 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
16412 S:      Maintained
16413 F:      arch/x86/platform/ts5500/
16414
16415 TECHNOTREND USB IR RECEIVER
16416 M:      Sean Young <sean@mess.org>
16417 L:      linux-media@vger.kernel.org
16418 S:      Maintained
16419 F:      drivers/media/rc/ttusbir.c
16420
16421 TECHWELL TW9910 VIDEO DECODER
16422 L:      linux-media@vger.kernel.org
16423 S:      Orphan
16424 F:      drivers/media/i2c/tw9910.c
16425 F:      include/media/i2c/tw9910.h
16426
16427 TEE SUBSYSTEM
16428 M:      Jens Wiklander <jens.wiklander@linaro.org>
16429 L:      tee-dev@lists.linaro.org
16430 S:      Maintained
16431 F:      include/linux/tee_drv.h
16432 F:      include/uapi/linux/tee.h
16433 F:      drivers/tee/
16434 F:      Documentation/tee.txt
16435
16436 TEGRA ARCHITECTURE SUPPORT
16437 M:      Thierry Reding <thierry.reding@gmail.com>
16438 M:      Jonathan Hunter <jonathanh@nvidia.com>
16439 L:      linux-tegra@vger.kernel.org
16440 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
16441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
16442 S:      Supported
16443 N:      [^a-z]tegra
16444
16445 TEGRA CLOCK DRIVER
16446 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
16447 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
16448 S:      Supported
16449 F:      drivers/clk/tegra/
16450
16451 TEGRA DMA DRIVERS
16452 M:      Laxman Dewangan <ldewangan@nvidia.com>
16453 M:      Jon Hunter <jonathanh@nvidia.com>
16454 S:      Supported
16455 F:      drivers/dma/tegra*
16456
16457 TEGRA I2C DRIVER
16458 M:      Laxman Dewangan <ldewangan@nvidia.com>
16459 R:      Dmitry Osipenko <digetx@gmail.com>
16460 S:      Supported
16461 F:      drivers/i2c/busses/i2c-tegra.c
16462
16463 TEGRA IOMMU DRIVERS
16464 M:      Thierry Reding <thierry.reding@gmail.com>
16465 L:      linux-tegra@vger.kernel.org
16466 S:      Supported
16467 F:      drivers/iommu/tegra*
16468
16469 TEGRA KBC DRIVER
16470 M:      Laxman Dewangan <ldewangan@nvidia.com>
16471 S:      Supported
16472 F:      drivers/input/keyboard/tegra-kbc.c
16473
16474 TEGRA NAND DRIVER
16475 M:      Stefan Agner <stefan@agner.ch>
16476 M:      Lucas Stach <dev@lynxeye.de>
16477 S:      Maintained
16478 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
16479 F:      drivers/mtd/nand/raw/tegra_nand.c
16480
16481 TEGRA PWM DRIVER
16482 M:      Thierry Reding <thierry.reding@gmail.com>
16483 S:      Supported
16484 F:      drivers/pwm/pwm-tegra.c
16485
16486 TEGRA SERIAL DRIVER
16487 M:      Laxman Dewangan <ldewangan@nvidia.com>
16488 S:      Supported
16489 F:      drivers/tty/serial/serial-tegra.c
16490
16491 TEGRA SPI DRIVER
16492 M:      Laxman Dewangan <ldewangan@nvidia.com>
16493 S:      Supported
16494 F:      drivers/spi/spi-tegra*
16495
16496 TEGRA XUSB PADCTL DRIVER
16497 M:      JC Kuo <jckuo@nvidia.com>
16498 S:      Supported
16499 F:      drivers/phy/tegra/xusb*
16500
16501 TEHUTI ETHERNET DRIVER
16502 M:      Andy Gospodarek <andy@greyhouse.net>
16503 L:      netdev@vger.kernel.org
16504 S:      Supported
16505 F:      drivers/net/ethernet/tehuti/*
16506
16507 Telecom Clock Driver for MCPL0010
16508 M:      Mark Gross <mark.gross@intel.com>
16509 S:      Supported
16510 F:      drivers/char/tlclk.c
16511
16512 TENSILICA XTENSA PORT (xtensa)
16513 M:      Chris Zankel <chris@zankel.net>
16514 M:      Max Filippov <jcmvbkbc@gmail.com>
16515 L:      linux-xtensa@linux-xtensa.org
16516 T:      git git://github.com/czankel/xtensa-linux.git
16517 S:      Maintained
16518 F:      arch/xtensa/
16519 F:      drivers/irqchip/irq-xtensa-*
16520
16521 Texas Instruments' System Control Interface (TISCI) Protocol Driver
16522 M:      Nishanth Menon <nm@ti.com>
16523 M:      Tero Kristo <t-kristo@ti.com>
16524 M:      Santosh Shilimkar <ssantosh@kernel.org>
16525 L:      linux-arm-kernel@lists.infradead.org
16526 S:      Maintained
16527 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
16528 F:      drivers/firmware/ti_sci*
16529 F:      include/linux/soc/ti/ti_sci_protocol.h
16530 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
16531 F:      drivers/soc/ti/ti_sci_pm_domains.c
16532 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
16533 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
16534 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
16535 F:      drivers/clk/keystone/sci-clk.c
16536 F:      drivers/reset/reset-ti-sci.c
16537 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.txt
16538 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.txt
16539 F:      drivers/irqchip/irq-ti-sci-intr.c
16540 F:      drivers/irqchip/irq-ti-sci-inta.c
16541 F:      include/linux/soc/ti/ti_sci_inta_msi.h
16542 F:      drivers/soc/ti/ti_sci_inta_msi.c
16543
16544 Texas Instruments ASoC drivers
16545 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
16546 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16547 S:      Maintained
16548 F:      sound/soc/ti/
16549
16550 Texas Instruments' DAC7612 DAC Driver
16551 M:      Ricardo Ribalda <ricardo@ribalda.com>
16552 L:      linux-iio@vger.kernel.org
16553 S:      Supported
16554 F:      drivers/iio/dac/ti-dac7612.c
16555 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
16556
16557 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
16558 M:      Hans Verkuil <hverkuil@xs4all.nl>
16559 L:      linux-media@vger.kernel.org
16560 T:      git git://linuxtv.org/media_tree.git
16561 W:      https://linuxtv.org
16562 S:      Maintained
16563 F:      drivers/media/radio/radio-raremono.c
16564
16565 THERMAL
16566 M:      Zhang Rui <rui.zhang@intel.com>
16567 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
16568 R:      Amit Kucheria <amit.kucheria@verdurent.com>
16569 L:      linux-pm@vger.kernel.org
16570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
16571 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16572 S:      Supported
16573 F:      drivers/thermal/
16574 F:      include/linux/thermal.h
16575 F:      include/uapi/linux/thermal.h
16576 F:      include/linux/cpu_cooling.h
16577 F:      Documentation/devicetree/bindings/thermal/
16578
16579 THERMAL/CPU_COOLING
16580 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
16581 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
16582 M:      Viresh Kumar <viresh.kumar@linaro.org>
16583 M:      Javi Merino <javi.merino@kernel.org>
16584 L:      linux-pm@vger.kernel.org
16585 S:      Supported
16586 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
16587 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
16588 F:      drivers/thermal/cpufreq_cooling.c
16589 F:      drivers/thermal/cpuidle_cooling.c
16590 F:      include/linux/cpu_cooling.h
16591
16592 THERMAL DRIVER FOR AMLOGIC SOCS
16593 M:      Guillaume La Roque <glaroque@baylibre.com>
16594 L:      linux-pm@vger.kernel.org
16595 L:      linux-amlogic@lists.infradead.org
16596 W:      http://linux-meson.com/
16597 S:      Supported
16598 F:      drivers/thermal/amlogic_thermal.c
16599 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
16600
16601 THINKPAD ACPI EXTRAS DRIVER
16602 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
16603 L:      ibm-acpi-devel@lists.sourceforge.net
16604 L:      platform-driver-x86@vger.kernel.org
16605 S:      Maintained
16606 W:      http://ibm-acpi.sourceforge.net
16607 W:      http://thinkwiki.org/wiki/Ibm-acpi
16608 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
16609 F:      drivers/platform/x86/thinkpad_acpi.c
16610
16611 THUNDERBOLT DRIVER
16612 M:      Andreas Noever <andreas.noever@gmail.com>
16613 M:      Michael Jamet <michael.jamet@intel.com>
16614 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16615 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16616 L:      linux-usb@vger.kernel.org
16617 S:      Maintained
16618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
16619 F:      Documentation/admin-guide/thunderbolt.rst
16620 F:      drivers/thunderbolt/
16621 F:      include/linux/thunderbolt.h
16622
16623 THUNDERBOLT NETWORK DRIVER
16624 M:      Michael Jamet <michael.jamet@intel.com>
16625 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16626 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16627 L:      netdev@vger.kernel.org
16628 S:      Maintained
16629 F:      drivers/net/thunderbolt.c
16630
16631 THUNDERX GPIO DRIVER
16632 M:      Robert Richter <rrichter@marvell.com>
16633 S:      Maintained
16634 F:      drivers/gpio/gpio-thunderx.c
16635
16636 TI AM437X VPFE DRIVER
16637 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
16638 L:      linux-media@vger.kernel.org
16639 W:      https://linuxtv.org
16640 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16641 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16642 S:      Maintained
16643 F:      drivers/media/platform/am437x/
16644
16645 TI BANDGAP AND THERMAL DRIVER
16646 M:      Eduardo Valentin <edubezval@gmail.com>
16647 M:      Keerthy <j-keerthy@ti.com>
16648 L:      linux-pm@vger.kernel.org
16649 L:      linux-omap@vger.kernel.org
16650 S:      Maintained
16651 F:      drivers/thermal/ti-soc-thermal/
16652
16653 TI BQ27XXX POWER SUPPLY DRIVER
16654 R:      Andrew F. Davis <afd@ti.com>
16655 F:      include/linux/power/bq27xxx_battery.h
16656 F:      drivers/power/supply/bq27xxx_battery.c
16657 F:      drivers/power/supply/bq27xxx_battery_i2c.c
16658
16659 TI CDCE706 CLOCK DRIVER
16660 M:      Max Filippov <jcmvbkbc@gmail.com>
16661 S:      Maintained
16662 F:      drivers/clk/clk-cdce706.c
16663
16664 TI CLOCK DRIVER
16665 M:      Tero Kristo <t-kristo@ti.com>
16666 L:      linux-omap@vger.kernel.org
16667 S:      Maintained
16668 F:      drivers/clk/ti/
16669 F:      include/linux/clk/ti.h
16670
16671 TI DAVINCI MACHINE SUPPORT
16672 M:      Sekhar Nori <nsekhar@ti.com>
16673 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
16674 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16675 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
16676 S:      Supported
16677 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
16678 F:      arch/arm/mach-davinci/
16679 F:      drivers/i2c/busses/i2c-davinci.c
16680 F:      arch/arm/boot/dts/da850*
16681
16682 TI DAVINCI SERIES CLOCK DRIVER
16683 M:      David Lechner <david@lechnology.com>
16684 R:      Sekhar Nori <nsekhar@ti.com>
16685 S:      Maintained
16686 F:      Documentation/devicetree/bindings/clock/ti/davinci/
16687 F:      drivers/clk/davinci/
16688
16689 TI DAVINCI SERIES GPIO DRIVER
16690 M:      Keerthy <j-keerthy@ti.com>
16691 L:      linux-gpio@vger.kernel.org
16692 S:      Maintained
16693 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
16694 F:      drivers/gpio/gpio-davinci.c
16695
16696 TI DAVINCI SERIES MEDIA DRIVER
16697 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
16698 L:      linux-media@vger.kernel.org
16699 W:      https://linuxtv.org
16700 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16701 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16702 S:      Maintained
16703 F:      drivers/media/platform/davinci/
16704 F:      include/media/davinci/
16705
16706 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
16707 R:      David Lechner <david@lechnology.com>
16708 L:      linux-iio@vger.kernel.org
16709 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
16710 F:      drivers/counter/ti-eqep.c
16711
16712 TI ETHERNET SWITCH DRIVER (CPSW)
16713 R:      Grygorii Strashko <grygorii.strashko@ti.com>
16714 L:      linux-omap@vger.kernel.org
16715 L:      netdev@vger.kernel.org
16716 S:      Maintained
16717 F:      drivers/net/ethernet/ti/cpsw*
16718 F:      drivers/net/ethernet/ti/davinci*
16719
16720 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
16721 M:      Alex Dubov <oakad@yahoo.com>
16722 S:      Maintained
16723 W:      http://tifmxx.berlios.de/
16724 F:      drivers/memstick/host/tifm_ms.c
16725 F:      drivers/misc/tifm*
16726 F:      drivers/mmc/host/tifm_sd.c
16727 F:      include/linux/tifm.h
16728
16729 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
16730 M:      Santosh Shilimkar <ssantosh@kernel.org>
16731 L:      linux-kernel@vger.kernel.org
16732 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16733 S:      Maintained
16734 F:      drivers/soc/ti/*
16735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
16736
16737 TI LM49xxx FAMILY ASoC CODEC DRIVERS
16738 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
16739 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
16740 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16741 S:      Maintained
16742 F:      sound/soc/codecs/lm49453*
16743 F:      sound/soc/codecs/isabelle*
16744
16745 TI LP855x BACKLIGHT DRIVER
16746 M:      Milo Kim <milo.kim@ti.com>
16747 S:      Maintained
16748 F:      Documentation/driver-api/backlight/lp855x-driver.rst
16749 F:      drivers/video/backlight/lp855x_bl.c
16750 F:      include/linux/platform_data/lp855x.h
16751
16752 TI LP8727 CHARGER DRIVER
16753 M:      Milo Kim <milo.kim@ti.com>
16754 S:      Maintained
16755 F:      drivers/power/supply/lp8727_charger.c
16756 F:      include/linux/platform_data/lp8727.h
16757
16758 TI LP8788 MFD DRIVER
16759 M:      Milo Kim <milo.kim@ti.com>
16760 S:      Maintained
16761 F:      drivers/iio/adc/lp8788_adc.c
16762 F:      drivers/leds/leds-lp8788.c
16763 F:      drivers/mfd/lp8788*.c
16764 F:      drivers/power/supply/lp8788-charger.c
16765 F:      drivers/regulator/lp8788-*.c
16766 F:      include/linux/mfd/lp8788*.h
16767
16768 TI NETCP ETHERNET DRIVER
16769 M:      Wingman Kwok <w-kwok2@ti.com>
16770 M:      Murali Karicheri <m-karicheri2@ti.com>
16771 L:      netdev@vger.kernel.org
16772 S:      Maintained
16773 F:      drivers/net/ethernet/ti/netcp*
16774
16775 TI PCM3060 ASoC CODEC DRIVER
16776 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
16777 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16778 S:      Maintained
16779 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
16780 F:      sound/soc/codecs/pcm3060*
16781
16782 TI TAS571X FAMILY ASoC CODEC DRIVER
16783 M:      Kevin Cernekee <cernekee@chromium.org>
16784 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16785 S:      Odd Fixes
16786 F:      sound/soc/codecs/tas571x*
16787
16788 TI TCAN4X5X DEVICE DRIVER
16789 M:      Dan Murphy <dmurphy@ti.com>
16790 L:      linux-can@vger.kernel.org
16791 S:      Maintained
16792 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
16793 F:      drivers/net/can/m_can/tcan4x5x.c
16794
16795 TI TRF7970A NFC DRIVER
16796 M:      Mark Greer <mgreer@animalcreek.com>
16797 L:      linux-wireless@vger.kernel.org
16798 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
16799 S:      Supported
16800 F:      drivers/nfc/trf7970a.c
16801 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
16802
16803 TI TWL4030 SERIES SOC CODEC DRIVER
16804 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
16805 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16806 S:      Maintained
16807 F:      sound/soc/codecs/twl4030*
16808
16809 TI VPE/CAL DRIVERS
16810 M:      Benoit Parrot <bparrot@ti.com>
16811 L:      linux-media@vger.kernel.org
16812 S:      Maintained
16813 W:      http://linuxtv.org/
16814 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16815 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
16816 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
16817 F:      drivers/media/platform/ti-vpe/
16818
16819 TI WILINK WIRELESS DRIVERS
16820 L:      linux-wireless@vger.kernel.org
16821 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
16822 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
16823 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
16824 S:      Orphan
16825 F:      drivers/net/wireless/ti/
16826 F:      include/linux/wl12xx.h
16827
16828 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
16829 M:      John Stultz <john.stultz@linaro.org>
16830 M:      Thomas Gleixner <tglx@linutronix.de>
16831 R:      Stephen Boyd <sboyd@kernel.org>
16832 L:      linux-kernel@vger.kernel.org
16833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16834 S:      Supported
16835 F:      include/linux/clocksource.h
16836 F:      include/linux/time.h
16837 F:      include/linux/timex.h
16838 F:      include/uapi/linux/time.h
16839 F:      include/uapi/linux/timex.h
16840 F:      kernel/time/clocksource.c
16841 F:      kernel/time/time*.c
16842 F:      kernel/time/alarmtimer.c
16843 F:      kernel/time/ntp.c
16844 F:      tools/testing/selftests/timers/
16845
16846 TIPC NETWORK LAYER
16847 M:      Jon Maloy <jmaloy@redhat.com>
16848 M:      Ying Xue <ying.xue@windriver.com>
16849 L:      netdev@vger.kernel.org (core kernel code)
16850 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
16851 W:      http://tipc.sourceforge.net/
16852 S:      Maintained
16853 F:      include/uapi/linux/tipc*.h
16854 F:      net/tipc/
16855
16856 TLAN NETWORK DRIVER
16857 M:      Samuel Chessman <chessman@tux.org>
16858 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
16859 W:      http://sourceforge.net/projects/tlan/
16860 S:      Maintained
16861 F:      Documentation/networking/device_drivers/ti/tlan.txt
16862 F:      drivers/net/ethernet/ti/tlan.*
16863
16864 TM6000 VIDEO4LINUX DRIVER
16865 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16866 L:      linux-media@vger.kernel.org
16867 W:      https://linuxtv.org
16868 T:      git git://linuxtv.org/media_tree.git
16869 S:      Odd fixes
16870 F:      drivers/media/usb/tm6000/
16871 F:      Documentation/media/v4l-drivers/tm6000*
16872
16873 TMIO/SDHI MMC DRIVER
16874 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16875 L:      linux-mmc@vger.kernel.org
16876 S:      Supported
16877 F:      drivers/mmc/host/tmio_mmc*
16878 F:      drivers/mmc/host/renesas_sdhi*
16879 F:      include/linux/mfd/tmio.h
16880
16881 TMP401 HARDWARE MONITOR DRIVER
16882 M:      Guenter Roeck <linux@roeck-us.net>
16883 L:      linux-hwmon@vger.kernel.org
16884 S:      Maintained
16885 F:      Documentation/hwmon/tmp401.rst
16886 F:      drivers/hwmon/tmp401.c
16887
16888 TMP513 HARDWARE MONITOR DRIVER
16889 M:      Eric Tremblay <etremblay@distech-controls.com>
16890 L:      linux-hwmon@vger.kernel.org
16891 S:      Maintained
16892 F:      Documentation/hwmon/tmp513.rst
16893 F:      drivers/hwmon/tmp513.c
16894
16895 TMPFS (SHMEM FILESYSTEM)
16896 M:      Hugh Dickins <hughd@google.com>
16897 L:      linux-mm@kvack.org
16898 S:      Maintained
16899 F:      include/linux/shmem_fs.h
16900 F:      mm/shmem.c
16901
16902 TOMOYO SECURITY MODULE
16903 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
16904 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
16905 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
16906 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
16907 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
16908 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
16909 W:      https://tomoyo.osdn.jp/
16910 S:      Maintained
16911 F:      security/tomoyo/
16912
16913 TOPSTAR LAPTOP EXTRAS DRIVER
16914 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
16915 L:      platform-driver-x86@vger.kernel.org
16916 S:      Maintained
16917 F:      drivers/platform/x86/topstar-laptop.c
16918
16919 TORTURE-TEST MODULES
16920 M:      Davidlohr Bueso <dave@stgolabs.net>
16921 M:      "Paul E. McKenney" <paulmck@kernel.org>
16922 M:      Josh Triplett <josh@joshtriplett.org>
16923 L:      linux-kernel@vger.kernel.org
16924 S:      Supported
16925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16926 F:      Documentation/RCU/torture.txt
16927 F:      kernel/torture.c
16928 F:      kernel/rcu/rcutorture.c
16929 F:      kernel/rcu/rcuperf.c
16930 F:      kernel/locking/locktorture.c
16931
16932 TOSHIBA ACPI EXTRAS DRIVER
16933 M:      Azael Avalos <coproscefalo@gmail.com>
16934 L:      platform-driver-x86@vger.kernel.org
16935 S:      Maintained
16936 F:      drivers/platform/x86/toshiba_acpi.c
16937
16938 TOSHIBA BLUETOOTH DRIVER
16939 M:      Azael Avalos <coproscefalo@gmail.com>
16940 L:      platform-driver-x86@vger.kernel.org
16941 S:      Maintained
16942 F:      drivers/platform/x86/toshiba_bluetooth.c
16943
16944 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
16945 M:      Azael Avalos <coproscefalo@gmail.com>
16946 L:      platform-driver-x86@vger.kernel.org
16947 S:      Maintained
16948 F:      drivers/platform/x86/toshiba_haps.c
16949
16950 TOSHIBA SMM DRIVER
16951 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
16952 W:      http://www.buzzard.org.uk/toshiba/
16953 S:      Maintained
16954 F:      drivers/char/toshiba.c
16955 F:      include/linux/toshiba.h
16956 F:      include/uapi/linux/toshiba.h
16957
16958 TOSHIBA TC358743 DRIVER
16959 M:      Mats Randgaard <matrandg@cisco.com>
16960 L:      linux-media@vger.kernel.org
16961 S:      Maintained
16962 F:      drivers/media/i2c/tc358743*
16963 F:      include/media/i2c/tc358743.h
16964
16965 TOSHIBA WMI HOTKEYS DRIVER
16966 M:      Azael Avalos <coproscefalo@gmail.com>
16967 L:      platform-driver-x86@vger.kernel.org
16968 S:      Maintained
16969 F:      drivers/platform/x86/toshiba-wmi.c
16970
16971 TPM DEVICE DRIVER
16972 M:      Peter Huewe <peterhuewe@gmx.de>
16973 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
16974 R:      Jason Gunthorpe <jgg@ziepe.ca>
16975 L:      linux-integrity@vger.kernel.org
16976 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
16977 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
16978 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
16979 S:      Maintained
16980 F:      drivers/char/tpm/
16981
16982 TRACING
16983 M:      Steven Rostedt <rostedt@goodmis.org>
16984 M:      Ingo Molnar <mingo@redhat.com>
16985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
16986 S:      Maintained
16987 F:      Documentation/trace/ftrace.rst
16988 F:      arch/*/*/*/ftrace.h
16989 F:      arch/*/kernel/ftrace.c
16990 F:      include/*/ftrace.h
16991 F:      include/linux/trace*.h
16992 F:      include/trace/
16993 F:      kernel/trace/
16994 F:      tools/testing/selftests/ftrace/
16995
16996 TRACING MMIO ACCESSES (MMIOTRACE)
16997 M:      Steven Rostedt <rostedt@goodmis.org>
16998 M:      Ingo Molnar <mingo@kernel.org>
16999 R:      Karol Herbst <karolherbst@gmail.com>
17000 R:      Pekka Paalanen <ppaalanen@gmail.com>
17001 S:      Maintained
17002 L:      linux-kernel@vger.kernel.org
17003 L:      nouveau@lists.freedesktop.org
17004 F:      kernel/trace/trace_mmiotrace.c
17005 F:      include/linux/mmiotrace.h
17006 F:      arch/x86/mm/kmmio.c
17007 F:      arch/x86/mm/mmio-mod.c
17008 F:      arch/x86/mm/testmmiotrace.c
17009
17010 TRIVIAL PATCHES
17011 M:      Jiri Kosina <trivial@kernel.org>
17012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
17013 S:      Maintained
17014 K:      ^Subject:.*(?i)trivial
17015
17016 TEMPO SEMICONDUCTOR DRIVERS
17017 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
17018 S:      Maintained
17019 F:      sound/soc/codecs/tscs*.c
17020 F:      sound/soc/codecs/tscs*.h
17021 F:      Documentation/devicetree/bindings/sound/tscs*.txt
17022
17023 TTY LAYER
17024 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17025 M:      Jiri Slaby <jslaby@suse.com>
17026 S:      Supported
17027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
17028 F:      Documentation/driver-api/serial/
17029 F:      drivers/tty/
17030 F:      drivers/tty/serial/serial_core.c
17031 F:      include/linux/serial_core.h
17032 F:      include/linux/serial.h
17033 F:      include/linux/tty.h
17034 F:      include/uapi/linux/serial_core.h
17035 F:      include/uapi/linux/serial.h
17036 F:      include/uapi/linux/tty.h
17037
17038 TUA9001 MEDIA DRIVER
17039 M:      Antti Palosaari <crope@iki.fi>
17040 L:      linux-media@vger.kernel.org
17041 W:      https://linuxtv.org
17042 W:      http://palosaari.fi/linux/
17043 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17044 T:      git git://linuxtv.org/anttip/media_tree.git
17045 S:      Maintained
17046 F:      drivers/media/tuners/tua9001*
17047
17048 TULIP NETWORK DRIVERS
17049 L:      netdev@vger.kernel.org
17050 L:      linux-parisc@vger.kernel.org
17051 S:      Orphan
17052 F:      drivers/net/ethernet/dec/tulip/
17053
17054 TUN/TAP driver
17055 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
17056 W:      http://vtun.sourceforge.net/tun
17057 S:      Maintained
17058 F:      Documentation/networking/tuntap.txt
17059 F:      arch/um/os-Linux/drivers/
17060
17061 TURBOCHANNEL SUBSYSTEM
17062 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
17063 M:      Ralf Baechle <ralf@linux-mips.org>
17064 L:      linux-mips@vger.kernel.org
17065 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
17066 S:      Maintained
17067 F:      drivers/tc/
17068 F:      include/linux/tc.h
17069
17070 TURBOSTAT UTILITY
17071 M:      "Len Brown" <lenb@kernel.org>
17072 L:      linux-pm@vger.kernel.org
17073 B:      https://bugzilla.kernel.org
17074 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
17076 S:      Supported
17077 F:      tools/power/x86/turbostat/
17078
17079 TW5864 VIDEO4LINUX DRIVER
17080 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17081 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17082 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
17083 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17084 L:      linux-media@vger.kernel.org
17085 S:      Supported
17086 F:      drivers/media/pci/tw5864/
17087
17088 TW68 VIDEO4LINUX DRIVER
17089 M:      Hans Verkuil <hverkuil@xs4all.nl>
17090 L:      linux-media@vger.kernel.org
17091 T:      git git://linuxtv.org/media_tree.git
17092 W:      https://linuxtv.org
17093 S:      Odd Fixes
17094 F:      drivers/media/pci/tw68/
17095
17096 TW686X VIDEO4LINUX DRIVER
17097 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17098 L:      linux-media@vger.kernel.org
17099 T:      git git://linuxtv.org/media_tree.git
17100 W:      http://linuxtv.org
17101 S:      Maintained
17102 F:      drivers/media/pci/tw686x/
17103
17104 UBI FILE SYSTEM (UBIFS)
17105 M:      Richard Weinberger <richard@nod.at>
17106 L:      linux-mtd@lists.infradead.org
17107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17109 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
17110 S:      Supported
17111 F:      Documentation/filesystems/ubifs.rst
17112 F:      fs/ubifs/
17113
17114 UCLINUX (M68KNOMMU AND COLDFIRE)
17115 M:      Greg Ungerer <gerg@linux-m68k.org>
17116 W:      http://www.linux-m68k.org/
17117 W:      http://www.uclinux.org/
17118 L:      linux-m68k@lists.linux-m68k.org
17119 L:      uclinux-dev@uclinux.org  (subscribers-only)
17120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
17121 S:      Maintained
17122 F:      arch/m68k/coldfire/
17123 F:      arch/m68k/68*/
17124 F:      arch/m68k/*/*_no.*
17125 F:      arch/m68k/include/asm/*_no.*
17126
17127 UDF FILESYSTEM
17128 M:      Jan Kara <jack@suse.com>
17129 S:      Maintained
17130 F:      Documentation/filesystems/udf.rst
17131 F:      fs/udf/
17132
17133 UDRAW TABLET
17134 M:      Bastien Nocera <hadess@hadess.net>
17135 L:      linux-input@vger.kernel.org
17136 S:      Maintained
17137 F:      drivers/hid/hid-udraw-ps3.c
17138
17139 UFS FILESYSTEM
17140 M:      Evgeniy Dushistov <dushistov@mail.ru>
17141 S:      Maintained
17142 F:      Documentation/admin-guide/ufs.rst
17143 F:      fs/ufs/
17144
17145 UHID USERSPACE HID IO DRIVER
17146 M:      David Herrmann <dh.herrmann@googlemail.com>
17147 L:      linux-input@vger.kernel.org
17148 S:      Maintained
17149 F:      drivers/hid/uhid.c
17150 F:      include/uapi/linux/uhid.h
17151
17152 ULPI BUS
17153 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17154 L:      linux-usb@vger.kernel.org
17155 S:      Maintained
17156 F:      drivers/usb/common/ulpi.c
17157 F:      include/linux/ulpi/
17158
17159 UNICODE SUBSYSTEM
17160 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
17161 L:      linux-fsdevel@vger.kernel.org
17162 S:      Supported
17163 F:      fs/unicode/
17164
17165 UNICORE32 ARCHITECTURE
17166 M:      Guan Xuetao <gxt@pku.edu.cn>
17167 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
17168 S:      Maintained
17169 T:      git git://github.com/gxt/linux.git
17170 F:      arch/unicore32/
17171
17172 UNIFDEF
17173 M:      Tony Finch <dot@dotat.at>
17174 W:      http://dotat.at/prog/unifdef
17175 S:      Maintained
17176 F:      scripts/unifdef.c
17177
17178 UNIFORM CDROM DRIVER
17179 M:      Jens Axboe <axboe@kernel.dk>
17180 W:      http://www.kernel.dk
17181 S:      Maintained
17182 F:      Documentation/cdrom/
17183 F:      drivers/cdrom/cdrom.c
17184 F:      include/linux/cdrom.h
17185 F:      include/uapi/linux/cdrom.h
17186
17187 UNISYS S-PAR DRIVERS
17188 M:      David Kershner <david.kershner@unisys.com>
17189 L:      sparmaintainer@unisys.com (Unisys internal)
17190 S:      Supported
17191 F:      include/linux/visorbus.h
17192 F:      drivers/visorbus/
17193 F:      drivers/staging/unisys/
17194
17195 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
17196 R:      Alim Akhtar <alim.akhtar@samsung.com>
17197 R:      Avri Altman <avri.altman@wdc.com>
17198 L:      linux-scsi@vger.kernel.org
17199 S:      Supported
17200 F:      Documentation/scsi/ufs.txt
17201 F:      drivers/scsi/ufs/
17202
17203 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
17204 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
17205 L:      linux-scsi@vger.kernel.org
17206 S:      Supported
17207 F:      drivers/scsi/ufs/*dwc*
17208
17209 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
17210 M:      Stanley Chu <stanley.chu@mediatek.com>
17211 L:      linux-scsi@vger.kernel.org
17212 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
17213 S:      Maintained
17214 F:      drivers/scsi/ufs/ufs-mediatek*
17215
17216 UNSORTED BLOCK IMAGES (UBI)
17217 M:      Richard Weinberger <richard@nod.at>
17218 W:      http://www.linux-mtd.infradead.org/
17219 L:      linux-mtd@lists.infradead.org
17220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17222 S:      Supported
17223 F:      drivers/mtd/ubi/
17224 F:      include/linux/mtd/ubi.h
17225 F:      include/uapi/mtd/ubi-user.h
17226
17227 USB "USBNET" DRIVER FRAMEWORK
17228 M:      Oliver Neukum <oneukum@suse.com>
17229 L:      netdev@vger.kernel.org
17230 W:      http://www.linux-usb.org/usbnet
17231 S:      Maintained
17232 F:      drivers/net/usb/usbnet.c
17233 F:      include/linux/usb/usbnet.h
17234
17235 USB ACM DRIVER
17236 M:      Oliver Neukum <oneukum@suse.com>
17237 L:      linux-usb@vger.kernel.org
17238 S:      Maintained
17239 F:      Documentation/usb/acm.rst
17240 F:      drivers/usb/class/cdc-acm.*
17241
17242 USB APPLE MFI FASTCHARGE DRIVER
17243 M:      Bastien Nocera <hadess@hadess.net>
17244 L:      linux-usb@vger.kernel.org
17245 S:      Maintained
17246 F:      drivers/usb/misc/apple-mfi-fastcharge.c
17247
17248 USB AR5523 WIRELESS DRIVER
17249 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
17250 L:      linux-wireless@vger.kernel.org
17251 S:      Maintained
17252 F:      drivers/net/wireless/ath/ar5523/
17253
17254 USB ATTACHED SCSI
17255 M:      Oliver Neukum <oneukum@suse.com>
17256 L:      linux-usb@vger.kernel.org
17257 L:      linux-scsi@vger.kernel.org
17258 S:      Maintained
17259 F:      drivers/usb/storage/uas.c
17260
17261 USB CDC ETHERNET DRIVER
17262 M:      Oliver Neukum <oliver@neukum.org>
17263 L:      linux-usb@vger.kernel.org
17264 S:      Maintained
17265 F:      drivers/net/usb/cdc_*.c
17266 F:      include/uapi/linux/usb/cdc.h
17267
17268 USB CHAOSKEY DRIVER
17269 M:      Keith Packard <keithp@keithp.com>
17270 L:      linux-usb@vger.kernel.org
17271 S:      Maintained
17272 F:      drivers/usb/misc/chaoskey.c
17273
17274 USB CYPRESS C67X00 DRIVER
17275 M:      Peter Korsgaard <jacmet@sunsite.dk>
17276 L:      linux-usb@vger.kernel.org
17277 S:      Maintained
17278 F:      drivers/usb/c67x00/
17279
17280 USB DAVICOM DM9601 DRIVER
17281 M:      Peter Korsgaard <jacmet@sunsite.dk>
17282 L:      netdev@vger.kernel.org
17283 W:      http://www.linux-usb.org/usbnet
17284 S:      Maintained
17285 F:      drivers/net/usb/dm9601.c
17286
17287 USB EHCI DRIVER
17288 M:      Alan Stern <stern@rowland.harvard.edu>
17289 L:      linux-usb@vger.kernel.org
17290 S:      Maintained
17291 F:      Documentation/usb/ehci.rst
17292 F:      drivers/usb/host/ehci*
17293
17294 USB GADGET/PERIPHERAL SUBSYSTEM
17295 M:      Felipe Balbi <balbi@kernel.org>
17296 L:      linux-usb@vger.kernel.org
17297 W:      http://www.linux-usb.org/gadget
17298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17299 S:      Maintained
17300 F:      drivers/usb/gadget/
17301 F:      include/linux/usb/gadget*
17302
17303 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
17304 M:      Jiri Kosina <jikos@kernel.org>
17305 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
17306 L:      linux-usb@vger.kernel.org
17307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
17308 S:      Maintained
17309 F:      Documentation/hid/hiddev.rst
17310 F:      drivers/hid/usbhid/
17311
17312 USB INTEL XHCI ROLE MUX DRIVER
17313 M:      Hans de Goede <hdegoede@redhat.com>
17314 L:      linux-usb@vger.kernel.org
17315 S:      Maintained
17316 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
17317
17318 USB IP DRIVER FOR HISILICON KIRIN
17319 M:      Yu Chen <chenyu56@huawei.com>
17320 M:      Binghui Wang <wangbinghui@hisilicon.com>
17321 L:      linux-usb@vger.kernel.org
17322 S:      Maintained
17323 F:      Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
17324 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
17325
17326 USB ISP116X DRIVER
17327 M:      Olav Kongas <ok@artecdesign.ee>
17328 L:      linux-usb@vger.kernel.org
17329 S:      Maintained
17330 F:      drivers/usb/host/isp116x*
17331 F:      include/linux/usb/isp116x.h
17332
17333 USB LAN78XX ETHERNET DRIVER
17334 M:      Woojung Huh <woojung.huh@microchip.com>
17335 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
17336 L:      netdev@vger.kernel.org
17337 S:      Maintained
17338 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
17339 F:      drivers/net/usb/lan78xx.*
17340 F:      include/dt-bindings/net/microchip-lan78xx.h
17341
17342 USB MASS STORAGE DRIVER
17343 M:      Alan Stern <stern@rowland.harvard.edu>
17344 L:      linux-usb@vger.kernel.org
17345 L:      usb-storage@lists.one-eyed-alien.net
17346 S:      Maintained
17347 F:      drivers/usb/storage/
17348
17349 USB MIDI DRIVER
17350 M:      Clemens Ladisch <clemens@ladisch.de>
17351 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17353 S:      Maintained
17354 F:      sound/usb/midi.*
17355
17356 USB NETWORKING DRIVERS
17357 L:      linux-usb@vger.kernel.org
17358 S:      Odd Fixes
17359 F:      drivers/net/usb/
17360
17361 USB OHCI DRIVER
17362 M:      Alan Stern <stern@rowland.harvard.edu>
17363 L:      linux-usb@vger.kernel.org
17364 S:      Maintained
17365 F:      Documentation/usb/ohci.rst
17366 F:      drivers/usb/host/ohci*
17367
17368 USB OTG FSM (Finite State Machine)
17369 M:      Peter Chen <Peter.Chen@nxp.com>
17370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
17371 L:      linux-usb@vger.kernel.org
17372 S:      Maintained
17373 F:      drivers/usb/common/usb-otg-fsm.c
17374
17375 USB OVER IP DRIVER
17376 M:      Valentina Manea <valentina.manea.m@gmail.com>
17377 M:      Shuah Khan <shuah@kernel.org>
17378 M:      Shuah Khan <skhan@linuxfoundation.org>
17379 L:      linux-usb@vger.kernel.org
17380 S:      Maintained
17381 F:      Documentation/usb/usbip_protocol.rst
17382 F:      drivers/usb/usbip/
17383 F:      tools/usb/usbip/
17384 F:      tools/testing/selftests/drivers/usb/usbip/
17385
17386 USB PEGASUS DRIVER
17387 M:      Petko Manolov <petkan@nucleusys.com>
17388 L:      linux-usb@vger.kernel.org
17389 L:      netdev@vger.kernel.org
17390 T:      git git://github.com/petkan/pegasus.git
17391 W:      https://github.com/petkan/pegasus
17392 S:      Maintained
17393 F:      drivers/net/usb/pegasus.*
17394
17395 USB PHY LAYER
17396 M:      Felipe Balbi <balbi@kernel.org>
17397 L:      linux-usb@vger.kernel.org
17398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17399 S:      Maintained
17400 F:      drivers/usb/phy/
17401
17402 USB PRINTER DRIVER (usblp)
17403 M:      Pete Zaitcev <zaitcev@redhat.com>
17404 L:      linux-usb@vger.kernel.org
17405 S:      Supported
17406 F:      drivers/usb/class/usblp.c
17407
17408 USB QMI WWAN NETWORK DRIVER
17409 M:      Bjørn Mork <bjorn@mork.no>
17410 L:      netdev@vger.kernel.org
17411 S:      Maintained
17412 F:      Documentation/ABI/testing/sysfs-class-net-qmi
17413 F:      drivers/net/usb/qmi_wwan.c
17414
17415 USB RTL8150 DRIVER
17416 M:      Petko Manolov <petkan@nucleusys.com>
17417 L:      linux-usb@vger.kernel.org
17418 L:      netdev@vger.kernel.org
17419 T:      git git://github.com/petkan/rtl8150.git
17420 W:      https://github.com/petkan/rtl8150
17421 S:      Maintained
17422 F:      drivers/net/usb/rtl8150.c
17423
17424 USB SERIAL SUBSYSTEM
17425 M:      Johan Hovold <johan@kernel.org>
17426 L:      linux-usb@vger.kernel.org
17427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
17428 S:      Maintained
17429 F:      Documentation/usb/usb-serial.rst
17430 F:      drivers/usb/serial/
17431 F:      include/linux/usb/serial.h
17432
17433 USB SMSC75XX ETHERNET DRIVER
17434 M:      Steve Glendinning <steve.glendinning@shawell.net>
17435 L:      netdev@vger.kernel.org
17436 S:      Maintained
17437 F:      drivers/net/usb/smsc75xx.*
17438
17439 USB SMSC95XX ETHERNET DRIVER
17440 M:      Steve Glendinning <steve.glendinning@shawell.net>
17441 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
17442 L:      netdev@vger.kernel.org
17443 S:      Maintained
17444 F:      drivers/net/usb/smsc95xx.*
17445
17446 USB SUBSYSTEM
17447 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17448 L:      linux-usb@vger.kernel.org
17449 W:      http://www.linux-usb.org
17450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
17451 S:      Supported
17452 F:      Documentation/devicetree/bindings/usb/
17453 F:      Documentation/usb/
17454 F:      drivers/usb/
17455 F:      include/linux/usb.h
17456 F:      include/linux/usb/
17457
17458 USB TYPEC BUS FOR ALTERNATE MODES
17459 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17460 L:      linux-usb@vger.kernel.org
17461 S:      Maintained
17462 F:      Documentation/ABI/testing/sysfs-bus-typec
17463 F:      Documentation/driver-api/usb/typec_bus.rst
17464 F:      drivers/usb/typec/altmodes/
17465 F:      include/linux/usb/typec_altmode.h
17466
17467 USB TYPEC CLASS
17468 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17469 L:      linux-usb@vger.kernel.org
17470 S:      Maintained
17471 F:      Documentation/ABI/testing/sysfs-class-typec
17472 F:      Documentation/driver-api/usb/typec.rst
17473 F:      drivers/usb/typec/
17474 F:      include/linux/usb/typec.h
17475
17476 USB TYPEC PI3USB30532 MUX DRIVER
17477 M:      Hans de Goede <hdegoede@redhat.com>
17478 L:      linux-usb@vger.kernel.org
17479 S:      Maintained
17480 F:      drivers/usb/typec/mux/pi3usb30532.c
17481
17482 USB TYPEC PORT CONTROLLER DRIVERS
17483 M:      Guenter Roeck <linux@roeck-us.net>
17484 L:      linux-usb@vger.kernel.org
17485 S:      Maintained
17486 F:      drivers/usb/typec/tcpm/
17487
17488 USB UHCI DRIVER
17489 M:      Alan Stern <stern@rowland.harvard.edu>
17490 L:      linux-usb@vger.kernel.org
17491 S:      Maintained
17492 F:      drivers/usb/host/uhci*
17493
17494 USB VIDEO CLASS
17495 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17496 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
17497 L:      linux-media@vger.kernel.org
17498 T:      git git://linuxtv.org/media_tree.git
17499 W:      http://www.ideasonboard.org/uvc/
17500 S:      Maintained
17501 F:      drivers/media/usb/uvc/
17502 F:      include/uapi/linux/uvcvideo.h
17503
17504 USB VISION DRIVER
17505 M:      Hans Verkuil <hverkuil@xs4all.nl>
17506 L:      linux-media@vger.kernel.org
17507 T:      git git://linuxtv.org/media_tree.git
17508 W:      https://linuxtv.org
17509 S:      Odd Fixes
17510 F:      drivers/staging/media/usbvision/
17511
17512 USB WEBCAM GADGET
17513 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17514 L:      linux-usb@vger.kernel.org
17515 S:      Maintained
17516 F:      drivers/usb/gadget/function/*uvc*
17517 F:      drivers/usb/gadget/legacy/webcam.c
17518 F:      include/uapi/linux/usb/g_uvc.h
17519
17520 USB WIRELESS RNDIS DRIVER (rndis_wlan)
17521 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
17522 L:      linux-wireless@vger.kernel.org
17523 S:      Maintained
17524 F:      drivers/net/wireless/rndis_wlan.c
17525
17526 USB XHCI DRIVER
17527 M:      Mathias Nyman <mathias.nyman@intel.com>
17528 L:      linux-usb@vger.kernel.org
17529 S:      Supported
17530 F:      drivers/usb/host/xhci*
17531 F:      drivers/usb/host/pci-quirks*
17532
17533 USB ZD1201 DRIVER
17534 L:      linux-wireless@vger.kernel.org
17535 W:      http://linux-lc100020.sourceforge.net
17536 S:      Orphan
17537 F:      drivers/net/wireless/zydas/zd1201.*
17538
17539 USB ZR364XX DRIVER
17540 M:      Antoine Jacquet <royale@zerezo.com>
17541 L:      linux-usb@vger.kernel.org
17542 L:      linux-media@vger.kernel.org
17543 T:      git git://linuxtv.org/media_tree.git
17544 W:      http://royale.zerezo.com/zr364xx/
17545 S:      Maintained
17546 F:      Documentation/media/v4l-drivers/zr364xx*
17547 F:      drivers/media/usb/zr364xx/
17548
17549 USER-MODE LINUX (UML)
17550 M:      Jeff Dike <jdike@addtoit.com>
17551 M:      Richard Weinberger <richard@nod.at>
17552 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
17553 L:      linux-um@lists.infradead.org
17554 W:      http://user-mode-linux.sourceforge.net
17555 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
17556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
17557 S:      Maintained
17558 F:      Documentation/virt/uml/
17559 F:      arch/um/
17560 F:      arch/x86/um/
17561 F:      fs/hostfs/
17562
17563 USERSPACE COPYIN/COPYOUT (UIOVEC)
17564 M:      Alexander Viro <viro@zeniv.linux.org.uk>
17565 S:      Maintained
17566 F:      lib/iov_iter.c
17567 F:      include/linux/uio.h
17568
17569 USERSPACE DMA BUFFER DRIVER
17570 M:      Gerd Hoffmann <kraxel@redhat.com>
17571 S:      Maintained
17572 L:      dri-devel@lists.freedesktop.org
17573 F:      drivers/dma-buf/udmabuf.c
17574 F:      include/uapi/linux/udmabuf.h
17575 T:      git git://anongit.freedesktop.org/drm/drm-misc
17576
17577 USERSPACE I/O (UIO)
17578 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17579 S:      Maintained
17580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17581 F:      Documentation/driver-api/uio-howto.rst
17582 F:      drivers/uio/
17583 F:      include/linux/uio_driver.h
17584
17585 UTIL-LINUX PACKAGE
17586 M:      Karel Zak <kzak@redhat.com>
17587 L:      util-linux@vger.kernel.org
17588 W:      http://en.wikipedia.org/wiki/Util-linux
17589 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
17590 S:      Maintained
17591
17592 UUID HELPERS
17593 M:      Christoph Hellwig <hch@lst.de>
17594 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17595 L:      linux-kernel@vger.kernel.org
17596 T:      git git://git.infradead.org/users/hch/uuid.git
17597 F:      lib/uuid.c
17598 F:      lib/test_uuid.c
17599 F:      include/linux/uuid.h
17600 F:      include/uapi/linux/uuid.h
17601 S:      Maintained
17602
17603 UVESAFB DRIVER
17604 M:      Michal Januszewski <spock@gentoo.org>
17605 L:      linux-fbdev@vger.kernel.org
17606 W:      https://github.com/mjanusz/v86d
17607 S:      Maintained
17608 F:      Documentation/fb/uvesafb.rst
17609 F:      drivers/video/fbdev/uvesafb.*
17610
17611 VF610 NAND DRIVER
17612 M:      Stefan Agner <stefan@agner.ch>
17613 L:      linux-mtd@lists.infradead.org
17614 S:      Supported
17615 F:      drivers/mtd/nand/raw/vf610_nfc.c
17616
17617 VFAT/FAT/MSDOS FILESYSTEM
17618 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
17619 S:      Maintained
17620 F:      Documentation/filesystems/vfat.rst
17621 F:      fs/fat/
17622
17623 VFIO DRIVER
17624 M:      Alex Williamson <alex.williamson@redhat.com>
17625 R:      Cornelia Huck <cohuck@redhat.com>
17626 L:      kvm@vger.kernel.org
17627 T:      git git://github.com/awilliam/linux-vfio.git
17628 S:      Maintained
17629 F:      Documentation/driver-api/vfio.rst
17630 F:      drivers/vfio/
17631 F:      include/linux/vfio.h
17632 F:      include/uapi/linux/vfio.h
17633
17634 VFIO MEDIATED DEVICE DRIVERS
17635 M:      Kirti Wankhede <kwankhede@nvidia.com>
17636 L:      kvm@vger.kernel.org
17637 S:      Maintained
17638 F:      Documentation/driver-api/vfio-mediated-device.rst
17639 F:      drivers/vfio/mdev/
17640 F:      include/linux/mdev.h
17641 F:      samples/vfio-mdev/
17642
17643 VFIO PLATFORM DRIVER
17644 M:      Eric Auger <eric.auger@redhat.com>
17645 L:      kvm@vger.kernel.org
17646 S:      Maintained
17647 F:      drivers/vfio/platform/
17648
17649 VGA_SWITCHEROO
17650 R:      Lukas Wunner <lukas@wunner.de>
17651 S:      Maintained
17652 F:      Documentation/gpu/vga-switcheroo.rst
17653 F:      drivers/gpu/vga/vga_switcheroo.c
17654 F:      include/linux/vga_switcheroo.h
17655 T:      git git://anongit.freedesktop.org/drm/drm-misc
17656
17657 VIA RHINE NETWORK DRIVER
17658 S:      Orphan
17659 F:      drivers/net/ethernet/via/via-rhine.c
17660
17661 VIA SD/MMC CARD CONTROLLER DRIVER
17662 M:      Bruce Chang <brucechang@via.com.tw>
17663 M:      Harald Welte <HaraldWelte@viatech.com>
17664 S:      Maintained
17665 F:      drivers/mmc/host/via-sdmmc.c
17666
17667 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
17668 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
17669 L:      linux-fbdev@vger.kernel.org
17670 S:      Maintained
17671 F:      include/linux/via-core.h
17672 F:      include/linux/via-gpio.h
17673 F:      include/linux/via_i2c.h
17674 F:      drivers/video/fbdev/via/
17675
17676 VIA VELOCITY NETWORK DRIVER
17677 M:      Francois Romieu <romieu@fr.zoreil.com>
17678 L:      netdev@vger.kernel.org
17679 S:      Maintained
17680 F:      drivers/net/ethernet/via/via-velocity.*
17681
17682 VICODEC VIRTUAL CODEC DRIVER
17683 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
17684 L:      linux-media@vger.kernel.org
17685 T:      git git://linuxtv.org/media_tree.git
17686 W:      https://linuxtv.org
17687 S:      Maintained
17688 F:      drivers/media/platform/vicodec/*
17689
17690 VIDEO MULTIPLEXER DRIVER
17691 M:      Philipp Zabel <p.zabel@pengutronix.de>
17692 L:      linux-media@vger.kernel.org
17693 S:      Maintained
17694 F:      drivers/media/platform/video-mux.c
17695
17696 VIDEO I2C POLLING DRIVER
17697 M:      Matt Ranostay <matt.ranostay@konsulko.com>
17698 L:      linux-media@vger.kernel.org
17699 S:      Maintained
17700 F:      drivers/media/i2c/video-i2c.c
17701
17702 VIDEOBUF2 FRAMEWORK
17703 M:      Pawel Osciak <pawel@osciak.com>
17704 M:      Marek Szyprowski <m.szyprowski@samsung.com>
17705 M:      Kyungmin Park <kyungmin.park@samsung.com>
17706 R:      Tomasz Figa <tfiga@chromium.org>
17707 L:      linux-media@vger.kernel.org
17708 S:      Maintained
17709 F:      drivers/media/common/videobuf2/*
17710 F:      include/media/videobuf2-*
17711
17712 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
17713 M:      Helen Koike <helen.koike@collabora.com>
17714 R:      Shuah Khan <skhan@linuxfoundation.org>
17715 L:      linux-media@vger.kernel.org
17716 T:      git git://linuxtv.org/media_tree.git
17717 W:      https://linuxtv.org
17718 S:      Maintained
17719 F:      drivers/media/platform/vimc/*
17720
17721 VIRT LIB
17722 M:      Alex Williamson <alex.williamson@redhat.com>
17723 M:      Paolo Bonzini <pbonzini@redhat.com>
17724 L:      kvm@vger.kernel.org
17725 S:      Supported
17726 F:      virt/lib/
17727
17728 VIRTIO AND VHOST VSOCK DRIVER
17729 M:      Stefan Hajnoczi <stefanha@redhat.com>
17730 M:      Stefano Garzarella <sgarzare@redhat.com>
17731 L:      kvm@vger.kernel.org
17732 L:      virtualization@lists.linux-foundation.org
17733 L:      netdev@vger.kernel.org
17734 S:      Maintained
17735 F:      include/linux/virtio_vsock.h
17736 F:      include/uapi/linux/virtio_vsock.h
17737 F:      include/uapi/linux/vsockmon.h
17738 F:      include/uapi/linux/vm_sockets_diag.h
17739 F:      net/vmw_vsock/diag.c
17740 F:      net/vmw_vsock/af_vsock_tap.c
17741 F:      net/vmw_vsock/virtio_transport_common.c
17742 F:      net/vmw_vsock/virtio_transport.c
17743 F:      net/vmw_vsock/vsock_loopback.c
17744 F:      drivers/net/vsockmon.c
17745 F:      drivers/vhost/vsock.c
17746 F:      tools/testing/vsock/
17747
17748 VIRTIO CONSOLE DRIVER
17749 M:      Amit Shah <amit@kernel.org>
17750 L:      virtualization@lists.linux-foundation.org
17751 S:      Maintained
17752 F:      drivers/char/virtio_console.c
17753 F:      include/linux/virtio_console.h
17754 F:      include/uapi/linux/virtio_console.h
17755
17756 VIRTIO CORE AND NET DRIVERS
17757 M:      "Michael S. Tsirkin" <mst@redhat.com>
17758 M:      Jason Wang <jasowang@redhat.com>
17759 L:      virtualization@lists.linux-foundation.org
17760 S:      Maintained
17761 F:      Documentation/devicetree/bindings/virtio/
17762 F:      drivers/virtio/
17763 F:      tools/virtio/
17764 F:      drivers/net/virtio_net.c
17765 F:      drivers/block/virtio_blk.c
17766 F:      include/linux/virtio*.h
17767 F:      include/uapi/linux/virtio_*.h
17768 F:      drivers/crypto/virtio/
17769 F:      mm/balloon_compaction.c
17770
17771 VIRTIO BLOCK AND SCSI DRIVERS
17772 M:      "Michael S. Tsirkin" <mst@redhat.com>
17773 M:      Jason Wang <jasowang@redhat.com>
17774 R:      Paolo Bonzini <pbonzini@redhat.com>
17775 R:      Stefan Hajnoczi <stefanha@redhat.com>
17776 L:      virtualization@lists.linux-foundation.org
17777 S:      Maintained
17778 F:      drivers/block/virtio_blk.c
17779 F:      drivers/scsi/virtio_scsi.c
17780 F:      include/uapi/linux/virtio_blk.h
17781 F:      include/uapi/linux/virtio_scsi.h
17782 F:      drivers/vhost/scsi.c
17783
17784 VIRTIO CRYPTO DRIVER
17785 M:      Gonglei <arei.gonglei@huawei.com>
17786 L:      virtualization@lists.linux-foundation.org
17787 L:      linux-crypto@vger.kernel.org
17788 S:      Maintained
17789 F:      drivers/crypto/virtio/
17790 F:      include/uapi/linux/virtio_crypto.h
17791
17792 VIRTIO DRIVERS FOR S390
17793 M:      Cornelia Huck <cohuck@redhat.com>
17794 M:      Halil Pasic <pasic@linux.ibm.com>
17795 L:      linux-s390@vger.kernel.org
17796 L:      virtualization@lists.linux-foundation.org
17797 L:      kvm@vger.kernel.org
17798 S:      Supported
17799 F:      drivers/s390/virtio/
17800 F:      arch/s390/include/uapi/asm/virtio-ccw.h
17801
17802 VIRTIO FILE SYSTEM
17803 M:      Vivek Goyal <vgoyal@redhat.com>
17804 M:      Stefan Hajnoczi <stefanha@redhat.com>
17805 M:      Miklos Szeredi <miklos@szeredi.hu>
17806 L:      virtualization@lists.linux-foundation.org
17807 L:      linux-fsdevel@vger.kernel.org
17808 W:      https://virtio-fs.gitlab.io/
17809 S:      Supported
17810 F:      fs/fuse/virtio_fs.c
17811 F:      include/uapi/linux/virtio_fs.h
17812 F:      Documentation/filesystems/virtiofs.rst
17813
17814 VIRTIO GPU DRIVER
17815 M:      David Airlie <airlied@linux.ie>
17816 M:      Gerd Hoffmann <kraxel@redhat.com>
17817 L:      dri-devel@lists.freedesktop.org
17818 L:      virtualization@lists.linux-foundation.org
17819 T:      git git://anongit.freedesktop.org/drm/drm-misc
17820 S:      Maintained
17821 F:      drivers/gpu/drm/virtio/
17822 F:      include/uapi/linux/virtio_gpu.h
17823
17824 VIRTIO HOST (VHOST)
17825 M:      "Michael S. Tsirkin" <mst@redhat.com>
17826 M:      Jason Wang <jasowang@redhat.com>
17827 L:      kvm@vger.kernel.org
17828 L:      virtualization@lists.linux-foundation.org
17829 L:      netdev@vger.kernel.org
17830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
17831 S:      Maintained
17832 F:      drivers/vhost/
17833 F:      include/uapi/linux/vhost.h
17834
17835 VIRTIO INPUT DRIVER
17836 M:      Gerd Hoffmann <kraxel@redhat.com>
17837 S:      Maintained
17838 F:      drivers/virtio/virtio_input.c
17839 F:      include/uapi/linux/virtio_input.h
17840
17841 VIRTIO IOMMU DRIVER
17842 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
17843 L:      virtualization@lists.linux-foundation.org
17844 S:      Maintained
17845 F:      drivers/iommu/virtio-iommu.c
17846 F:      include/uapi/linux/virtio_iommu.h
17847
17848 VIRTUAL BOX GUEST DEVICE DRIVER
17849 M:      Hans de Goede <hdegoede@redhat.com>
17850 M:      Arnd Bergmann <arnd@arndb.de>
17851 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17852 S:      Maintained
17853 F:      include/linux/vbox_utils.h
17854 F:      include/uapi/linux/vbox*.h
17855 F:      drivers/virt/vboxguest/
17856
17857 VIRTUAL BOX SHARED FOLDER VFS DRIVER
17858 M:      Hans de Goede <hdegoede@redhat.com>
17859 L:      linux-fsdevel@vger.kernel.org
17860 S:      Maintained
17861 F:      fs/vboxsf/*
17862
17863 VIRTUAL SERIO DEVICE DRIVER
17864 M:      Stephen Chandler Paul <thatslyude@gmail.com>
17865 S:      Maintained
17866 F:      drivers/input/serio/userio.c
17867 F:      include/uapi/linux/userio.h
17868
17869 VITESSE FELIX ETHERNET SWITCH DRIVER
17870 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
17871 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
17872 L:      netdev@vger.kernel.org
17873 S:      Maintained
17874 F:      drivers/net/dsa/ocelot/*
17875 F:      net/dsa/tag_ocelot.c
17876
17877 VIVID VIRTUAL VIDEO DRIVER
17878 M:      Hans Verkuil <hverkuil@xs4all.nl>
17879 L:      linux-media@vger.kernel.org
17880 T:      git git://linuxtv.org/media_tree.git
17881 W:      https://linuxtv.org
17882 S:      Maintained
17883 F:      drivers/media/platform/vivid/*
17884
17885 VLYNQ BUS
17886 M:      Florian Fainelli <f.fainelli@gmail.com>
17887 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
17888 S:      Maintained
17889 F:      drivers/vlynq/vlynq.c
17890 F:      include/linux/vlynq.h
17891
17892 VME SUBSYSTEM
17893 M:      Martyn Welch <martyn@welchs.me.uk>
17894 M:      Manohar Vanga <manohar.vanga@gmail.com>
17895 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17896 L:      devel@driverdev.osuosl.org
17897 S:      Maintained
17898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17899 F:      Documentation/driver-api/vme.rst
17900 F:      drivers/staging/vme/
17901 F:      drivers/vme/
17902 F:      include/linux/vme*
17903
17904 VMWARE BALLOON DRIVER
17905 M:      Nadav Amit <namit@vmware.com>
17906 M:      "VMware, Inc." <pv-drivers@vmware.com>
17907 L:      linux-kernel@vger.kernel.org
17908 S:      Maintained
17909 F:      drivers/misc/vmw_balloon.c
17910
17911 VMWARE HYPERVISOR INTERFACE
17912 M:      Thomas Hellstrom <thellstrom@vmware.com>
17913 M:      "VMware, Inc." <pv-drivers@vmware.com>
17914 L:      virtualization@lists.linux-foundation.org
17915 S:      Supported
17916 F:      arch/x86/kernel/cpu/vmware.c
17917 F:      arch/x86/include/asm/vmware.h
17918
17919 VMWARE PVRDMA DRIVER
17920 M:      Adit Ranadive <aditr@vmware.com>
17921 M:      VMware PV-Drivers <pv-drivers@vmware.com>
17922 L:      linux-rdma@vger.kernel.org
17923 S:      Maintained
17924 F:      drivers/infiniband/hw/vmw_pvrdma/
17925
17926 VMware PVSCSI driver
17927 M:      Jim Gill <jgill@vmware.com>
17928 M:      VMware PV-Drivers <pv-drivers@vmware.com>
17929 L:      linux-scsi@vger.kernel.org
17930 S:      Maintained
17931 F:      drivers/scsi/vmw_pvscsi.c
17932 F:      drivers/scsi/vmw_pvscsi.h
17933
17934 VMWARE VMMOUSE SUBDRIVER
17935 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
17936 M:      "VMware, Inc." <pv-drivers@vmware.com>
17937 L:      linux-input@vger.kernel.org
17938 S:      Maintained
17939 F:      drivers/input/mouse/vmmouse.c
17940 F:      drivers/input/mouse/vmmouse.h
17941
17942 VMWARE VMXNET3 ETHERNET DRIVER
17943 M:      Ronak Doshi <doshir@vmware.com>
17944 M:      "VMware, Inc." <pv-drivers@vmware.com>
17945 L:      netdev@vger.kernel.org
17946 S:      Maintained
17947 F:      drivers/net/vmxnet3/
17948
17949 VOCORE VOCORE2 BOARD
17950 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
17951 L:      linux-mips@vger.kernel.org
17952 S:      Maintained
17953 F:      arch/mips/boot/dts/ralink/vocore2.dts
17954
17955 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
17956 M:      Liam Girdwood <lgirdwood@gmail.com>
17957 M:      Mark Brown <broonie@kernel.org>
17958 L:      linux-kernel@vger.kernel.org
17959 W:      http://www.slimlogic.co.uk/?p=48
17960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
17961 S:      Supported
17962 F:      Documentation/devicetree/bindings/regulator/
17963 F:      Documentation/power/regulator/
17964 F:      drivers/regulator/
17965 F:      include/dt-bindings/regulator/
17966 F:      include/linux/regulator/
17967 K:      regulator_get_optional
17968
17969 VRF
17970 M:      David Ahern <dsahern@kernel.org>
17971 M:      Shrijeet Mukherjee <shrijeet@gmail.com>
17972 L:      netdev@vger.kernel.org
17973 S:      Maintained
17974 F:      drivers/net/vrf.c
17975 F:      Documentation/networking/vrf.txt
17976
17977 VSPRINTF
17978 M:      Petr Mladek <pmladek@suse.com>
17979 M:      Steven Rostedt <rostedt@goodmis.org>
17980 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
17981 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17982 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
17983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
17984 S:      Maintained
17985 F:      lib/vsprintf.c
17986 F:      lib/test_printf.c
17987 F:      Documentation/core-api/printk-formats.rst
17988
17989 VT1211 HARDWARE MONITOR DRIVER
17990 M:      Juerg Haefliger <juergh@gmail.com>
17991 L:      linux-hwmon@vger.kernel.org
17992 S:      Maintained
17993 F:      Documentation/hwmon/vt1211.rst
17994 F:      drivers/hwmon/vt1211.c
17995
17996 VT8231 HARDWARE MONITOR DRIVER
17997 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
17998 L:      linux-hwmon@vger.kernel.org
17999 S:      Maintained
18000 F:      drivers/hwmon/vt8231.c
18001
18002 VUB300 USB to SDIO/SD/MMC bridge chip
18003 L:      linux-mmc@vger.kernel.org
18004 S:      Orphan
18005 F:      drivers/mmc/host/vub300.c
18006
18007 W1 DALLAS'S 1-WIRE BUS
18008 M:      Evgeniy Polyakov <zbr@ioremap.net>
18009 S:      Maintained
18010 F:      Documentation/devicetree/bindings/w1/
18011 F:      Documentation/w1/
18012 F:      drivers/w1/
18013 F:      include/linux/w1.h
18014
18015 W83791D HARDWARE MONITORING DRIVER
18016 M:      Marc Hulsman <m.hulsman@tudelft.nl>
18017 L:      linux-hwmon@vger.kernel.org
18018 S:      Maintained
18019 F:      Documentation/hwmon/w83791d.rst
18020 F:      drivers/hwmon/w83791d.c
18021
18022 W83793 HARDWARE MONITORING DRIVER
18023 M:      Rudolf Marek <r.marek@assembler.cz>
18024 L:      linux-hwmon@vger.kernel.org
18025 S:      Maintained
18026 F:      Documentation/hwmon/w83793.rst
18027 F:      drivers/hwmon/w83793.c
18028
18029 W83795 HARDWARE MONITORING DRIVER
18030 M:      Jean Delvare <jdelvare@suse.com>
18031 L:      linux-hwmon@vger.kernel.org
18032 S:      Maintained
18033 F:      drivers/hwmon/w83795.c
18034
18035 W83L51xD SD/MMC CARD INTERFACE DRIVER
18036 M:      Pierre Ossman <pierre@ossman.eu>
18037 S:      Maintained
18038 F:      drivers/mmc/host/wbsd.*
18039
18040 WACOM PROTOCOL 4 SERIAL TABLETS
18041 M:      Julian Squires <julian@cipht.net>
18042 M:      Hans de Goede <hdegoede@redhat.com>
18043 L:      linux-input@vger.kernel.org
18044 S:      Maintained
18045 F:      drivers/input/tablet/wacom_serial4.c
18046
18047 WATCHDOG DEVICE DRIVERS
18048 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
18049 M:      Guenter Roeck <linux@roeck-us.net>
18050 L:      linux-watchdog@vger.kernel.org
18051 W:      http://www.linux-watchdog.org/
18052 T:      git git://www.linux-watchdog.org/linux-watchdog.git
18053 S:      Maintained
18054 F:      Documentation/devicetree/bindings/watchdog/
18055 F:      Documentation/watchdog/
18056 F:      drivers/watchdog/
18057 F:      include/linux/watchdog.h
18058 F:      include/uapi/linux/watchdog.h
18059
18060 WHISKEYCOVE PMIC GPIO DRIVER
18061 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
18062 L:      linux-gpio@vger.kernel.org
18063 S:      Maintained
18064 F:      drivers/gpio/gpio-wcove.c
18065
18066 WHWAVE RTC DRIVER
18067 M:      Dianlong Li <long17.cool@163.com>
18068 L:      linux-rtc@vger.kernel.org
18069 S:      Maintained
18070 F:      drivers/rtc/rtc-sd3078.c
18071
18072 WIIMOTE HID DRIVER
18073 M:      David Herrmann <dh.herrmann@googlemail.com>
18074 L:      linux-input@vger.kernel.org
18075 S:      Maintained
18076 F:      drivers/hid/hid-wiimote*
18077
18078 WILOCITY WIL6210 WIRELESS DRIVER
18079 M:      Maya Erez <merez@codeaurora.org>
18080 L:      linux-wireless@vger.kernel.org
18081 L:      wil6210@qti.qualcomm.com
18082 S:      Supported
18083 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
18084 F:      drivers/net/wireless/ath/wil6210/
18085
18086 WIMAX STACK
18087 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
18088 M:      linux-wimax@intel.com
18089 L:      wimax@linuxwimax.org (subscribers-only)
18090 S:      Supported
18091 W:      http://linuxwimax.org
18092 F:      Documentation/admin-guide/wimax/wimax.rst
18093 F:      include/linux/wimax/debug.h
18094 F:      include/net/wimax.h
18095 F:      include/uapi/linux/wimax.h
18096 F:      net/wimax/
18097
18098 WINBOND CIR DRIVER
18099 M:      David Härdeman <david@hardeman.nu>
18100 S:      Maintained
18101 F:      drivers/media/rc/winbond-cir.c
18102
18103 RCMM REMOTE CONTROLS DECODER
18104 M:      Patrick Lerda <patrick9876@free.fr>
18105 S:      Maintained
18106 F:      drivers/media/rc/ir-rcmm-decoder.c
18107
18108 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
18109 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
18110 L:      linux-watchdog@vger.kernel.org
18111 S:      Maintained
18112 F:      drivers/watchdog/ebc-c384_wdt.c
18113
18114 WINSYSTEMS WS16C48 GPIO DRIVER
18115 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
18116 L:      linux-gpio@vger.kernel.org
18117 S:      Maintained
18118 F:      drivers/gpio/gpio-ws16c48.c
18119
18120 WIREGUARD SECURE NETWORK TUNNEL
18121 M:      Jason A. Donenfeld <Jason@zx2c4.com>
18122 S:      Maintained
18123 F:      drivers/net/wireguard/
18124 F:      tools/testing/selftests/wireguard/
18125 L:      wireguard@lists.zx2c4.com
18126 L:      netdev@vger.kernel.org
18127
18128 WISTRON LAPTOP BUTTON DRIVER
18129 M:      Miloslav Trmac <mitr@volny.cz>
18130 S:      Maintained
18131 F:      drivers/input/misc/wistron_btns.c
18132
18133 WL3501 WIRELESS PCMCIA CARD DRIVER
18134 L:      linux-wireless@vger.kernel.org
18135 S:      Odd fixes
18136 F:      drivers/net/wireless/wl3501*
18137
18138 WOLFSON MICROELECTRONICS DRIVERS
18139 L:      patches@opensource.cirrus.com
18140 T:      git https://github.com/CirrusLogic/linux-drivers.git
18141 W:      https://github.com/CirrusLogic/linux-drivers/wiki
18142 S:      Supported
18143 F:      Documentation/hwmon/wm83??.rst
18144 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
18145 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
18146 F:      Documentation/devicetree/bindings/mfd/arizona.txt
18147 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
18148 F:      Documentation/devicetree/bindings/sound/wlf,arizona.txt
18149 F:      arch/arm/mach-s3c64xx/mach-crag6410*
18150 F:      drivers/clk/clk-wm83*.c
18151 F:      drivers/extcon/extcon-arizona.c
18152 F:      drivers/leds/leds-wm83*.c
18153 F:      drivers/gpio/gpio-*wm*.c
18154 F:      drivers/gpio/gpio-arizona.c
18155 F:      drivers/hwmon/wm83??-hwmon.c
18156 F:      drivers/input/misc/wm831x-on.c
18157 F:      drivers/input/touchscreen/wm831x-ts.c
18158 F:      drivers/input/touchscreen/wm97*.c
18159 F:      drivers/mfd/arizona*
18160 F:      drivers/mfd/wm*.c
18161 F:      drivers/mfd/cs47l24*
18162 F:      drivers/power/supply/wm83*.c
18163 F:      drivers/rtc/rtc-wm83*.c
18164 F:      drivers/regulator/wm8*.c
18165 F:      drivers/regulator/arizona*
18166 F:      drivers/video/backlight/wm83*_bl.c
18167 F:      drivers/watchdog/wm83*_wdt.c
18168 F:      include/linux/mfd/arizona/
18169 F:      include/linux/mfd/wm831x/
18170 F:      include/linux/mfd/wm8350/
18171 F:      include/linux/mfd/wm8400*
18172 F:      include/linux/regulator/arizona*
18173 F:      include/linux/wm97xx.h
18174 F:      include/sound/wm????.h
18175 F:      sound/soc/codecs/arizona.?
18176 F:      sound/soc/codecs/wm*
18177 F:      sound/soc/codecs/cs47l24*
18178
18179 WORKQUEUE
18180 M:      Tejun Heo <tj@kernel.org>
18181 R:      Lai Jiangshan <jiangshanlai@gmail.com>
18182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
18183 S:      Maintained
18184 F:      include/linux/workqueue.h
18185 F:      kernel/workqueue.c
18186 F:      Documentation/core-api/workqueue.rst
18187
18188 X-POWERS AXP288 PMIC DRIVERS
18189 M:      Hans de Goede <hdegoede@redhat.com>
18190 S:      Maintained
18191 F:      drivers/acpi/pmic/intel_pmic_xpower.c
18192 N:      axp288
18193
18194 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
18195 M:      Chen-Yu Tsai <wens@csie.org>
18196 L:      linux-kernel@vger.kernel.org
18197 S:      Maintained
18198 N:      axp[128]
18199
18200 X.25 NETWORK LAYER
18201 M:      Andrew Hendry <andrew.hendry@gmail.com>
18202 L:      linux-x25@vger.kernel.org
18203 S:      Odd Fixes
18204 F:      Documentation/networking/x25*
18205 F:      include/net/x25*
18206 F:      net/x25/
18207
18208 X86 ARCHITECTURE (32-BIT AND 64-BIT)
18209 M:      Thomas Gleixner <tglx@linutronix.de>
18210 M:      Ingo Molnar <mingo@redhat.com>
18211 M:      Borislav Petkov <bp@alien8.de>
18212 R:      "H. Peter Anvin" <hpa@zytor.com>
18213 M:      x86@kernel.org
18214 L:      linux-kernel@vger.kernel.org
18215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18216 S:      Maintained
18217 F:      Documentation/devicetree/bindings/x86/
18218 F:      Documentation/x86/
18219 F:      arch/x86/
18220
18221 X86 ENTRY CODE
18222 M:      Andy Lutomirski <luto@kernel.org>
18223 L:      linux-kernel@vger.kernel.org
18224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
18225 S:      Maintained
18226 F:      arch/x86/entry/
18227
18228 X86 MCE INFRASTRUCTURE
18229 M:      Tony Luck <tony.luck@intel.com>
18230 M:      Borislav Petkov <bp@alien8.de>
18231 L:      linux-edac@vger.kernel.org
18232 S:      Maintained
18233 F:      arch/x86/kernel/cpu/mce/*
18234
18235 X86 MICROCODE UPDATE SUPPORT
18236 M:      Borislav Petkov <bp@alien8.de>
18237 S:      Maintained
18238 F:      arch/x86/kernel/cpu/microcode/*
18239
18240 X86 MM
18241 M:      Dave Hansen <dave.hansen@linux.intel.com>
18242 M:      Andy Lutomirski <luto@kernel.org>
18243 M:      Peter Zijlstra <peterz@infradead.org>
18244 L:      linux-kernel@vger.kernel.org
18245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
18246 S:      Maintained
18247 F:      arch/x86/mm/
18248
18249 X86 PLATFORM DRIVERS
18250 M:      Darren Hart <dvhart@infradead.org>
18251 M:      Andy Shevchenko <andy@infradead.org>
18252 L:      platform-driver-x86@vger.kernel.org
18253 S:      Odd Fixes
18254 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
18255 F:      drivers/platform/olpc/
18256 F:      drivers/platform/x86/
18257
18258 X86 PLATFORM DRIVERS - ARCH
18259 R:      Darren Hart <dvhart@infradead.org>
18260 R:      Andy Shevchenko <andy@infradead.org>
18261 L:      platform-driver-x86@vger.kernel.org
18262 L:      x86@kernel.org
18263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18264 S:      Maintained
18265 F:      arch/x86/platform
18266
18267 X86 VDSO
18268 M:      Andy Lutomirski <luto@kernel.org>
18269 L:      linux-kernel@vger.kernel.org
18270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
18271 S:      Maintained
18272 F:      arch/x86/entry/vdso/
18273
18274 XARRAY
18275 M:      Matthew Wilcox <willy@infradead.org>
18276 L:      linux-fsdevel@vger.kernel.org
18277 S:      Supported
18278 F:      Documentation/core-api/xarray.rst
18279 F:      lib/idr.c
18280 F:      lib/xarray.c
18281 F:      include/linux/idr.h
18282 F:      include/linux/xarray.h
18283 F:      tools/testing/radix-tree
18284
18285 XBOX DVD IR REMOTE
18286 M:      Benjamin Valentin <benpicco@googlemail.com>
18287 S:      Maintained
18288 F:      drivers/media/rc/xbox_remote.c
18289 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
18290
18291 XC2028/3028 TUNER DRIVER
18292 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18293 L:      linux-media@vger.kernel.org
18294 W:      https://linuxtv.org
18295 T:      git git://linuxtv.org/media_tree.git
18296 S:      Maintained
18297 F:      drivers/media/tuners/tuner-xc2028.*
18298
18299 XDP (eXpress Data Path)
18300 M:      Alexei Starovoitov <ast@kernel.org>
18301 M:      Daniel Borkmann <daniel@iogearbox.net>
18302 M:      David S. Miller <davem@davemloft.net>
18303 M:      Jakub Kicinski <kuba@kernel.org>
18304 M:      Jesper Dangaard Brouer <hawk@kernel.org>
18305 M:      John Fastabend <john.fastabend@gmail.com>
18306 L:      netdev@vger.kernel.org
18307 L:      bpf@vger.kernel.org
18308 S:      Supported
18309 F:      net/core/xdp.c
18310 F:      include/net/xdp.h
18311 F:      kernel/bpf/devmap.c
18312 F:      kernel/bpf/cpumap.c
18313 F:      include/trace/events/xdp.h
18314 K:      xdp
18315 N:      xdp
18316
18317 XDP SOCKETS (AF_XDP)
18318 M:      Björn Töpel <bjorn.topel@intel.com>
18319 M:      Magnus Karlsson <magnus.karlsson@intel.com>
18320 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
18321 L:      netdev@vger.kernel.org
18322 L:      bpf@vger.kernel.org
18323 S:      Maintained
18324 F:      kernel/bpf/xskmap.c
18325 F:      net/xdp/
18326
18327 XEN BLOCK SUBSYSTEM
18328 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18329 M:      Roger Pau Monné <roger.pau@citrix.com>
18330 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18331 S:      Supported
18332 F:      drivers/block/xen-blkback/*
18333 F:      drivers/block/xen*
18334
18335 XEN HYPERVISOR ARM
18336 M:      Stefano Stabellini <sstabellini@kernel.org>
18337 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18338 S:      Maintained
18339 F:      arch/arm/xen/
18340 F:      arch/arm/include/asm/xen/
18341
18342 XEN HYPERVISOR ARM64
18343 M:      Stefano Stabellini <sstabellini@kernel.org>
18344 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18345 S:      Maintained
18346 F:      arch/arm64/xen/
18347 F:      arch/arm64/include/asm/xen/
18348
18349 XEN HYPERVISOR INTERFACE
18350 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
18351 M:      Juergen Gross <jgross@suse.com>
18352 R:      Stefano Stabellini <sstabellini@kernel.org>
18353 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
18355 S:      Supported
18356 F:      arch/x86/xen/
18357 F:      arch/x86/platform/pvh/
18358 F:      drivers/*/xen-*front.c
18359 F:      drivers/xen/
18360 F:      arch/x86/include/asm/xen/
18361 F:      arch/x86/include/asm/pvclock-abi.h
18362 F:      include/xen/
18363 F:      include/uapi/xen/
18364 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
18365 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
18366
18367 XEN NETWORK BACKEND DRIVER
18368 M:      Wei Liu <wei.liu@kernel.org>
18369 M:      Paul Durrant <paul@xen.org>
18370 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18371 L:      netdev@vger.kernel.org
18372 S:      Supported
18373 F:      drivers/net/xen-netback/*
18374
18375 XEN PCI SUBSYSTEM
18376 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18377 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18378 S:      Supported
18379 F:      arch/x86/pci/*xen*
18380 F:      drivers/pci/*xen*
18381
18382 XEN PVSCSI DRIVERS
18383 M:      Juergen Gross <jgross@suse.com>
18384 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18385 L:      linux-scsi@vger.kernel.org
18386 S:      Supported
18387 F:      drivers/scsi/xen-scsifront.c
18388 F:      drivers/xen/xen-scsiback.c
18389 F:      include/xen/interface/io/vscsiif.h
18390
18391 XEN SWIOTLB SUBSYSTEM
18392 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18393 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18394 L:      iommu@lists.linux-foundation.org
18395 S:      Supported
18396 F:      arch/x86/xen/*swiotlb*
18397 F:      drivers/xen/*swiotlb*
18398
18399 XEN SOUND FRONTEND DRIVER
18400 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
18401 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18402 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18403 S:      Supported
18404 F:      sound/xen/*
18405
18406 XFS FILESYSTEM
18407 M:      Darrick J. Wong <darrick.wong@oracle.com>
18408 M:      linux-xfs@vger.kernel.org
18409 L:      linux-xfs@vger.kernel.org
18410 W:      http://xfs.org/
18411 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
18412 S:      Supported
18413 F:      Documentation/admin-guide/xfs.rst
18414 F:      Documentation/ABI/testing/sysfs-fs-xfs
18415 F:      Documentation/filesystems/xfs-delayed-logging-design.txt
18416 F:      Documentation/filesystems/xfs-self-describing-metadata.txt
18417 F:      fs/xfs/
18418 F:      include/uapi/linux/dqblk_xfs.h
18419 F:      include/uapi/linux/fsmap.h
18420
18421 XILINX AXI ETHERNET DRIVER
18422 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
18423 S:      Maintained
18424 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
18425
18426 XILINX CAN DRIVER
18427 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
18428 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
18429 L:      linux-can@vger.kernel.org
18430 S:      Maintained
18431 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
18432 F:      drivers/net/can/xilinx_can.c
18433
18434 XILINX UARTLITE SERIAL DRIVER
18435 M:      Peter Korsgaard <jacmet@sunsite.dk>
18436 L:      linux-serial@vger.kernel.org
18437 S:      Maintained
18438 F:      drivers/tty/serial/uartlite.c
18439
18440 XILINX VIDEO IP CORES
18441 M:      Hyun Kwon <hyun.kwon@xilinx.com>
18442 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18443 L:      linux-media@vger.kernel.org
18444 T:      git git://linuxtv.org/media_tree.git
18445 S:      Supported
18446 F:      Documentation/devicetree/bindings/media/xilinx/
18447 F:      drivers/media/platform/xilinx/
18448 F:      include/uapi/linux/xilinx-v4l2-controls.h
18449
18450 XILINX SD-FEC IP CORES
18451 M:      Derek Kiernan <derek.kiernan@xilinx.com>
18452 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
18453 S:      Maintained
18454 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
18455 F:      Documentation/misc-devices/xilinx_sdfec.rst
18456 F:      drivers/misc/xilinx_sdfec.c
18457 F:      drivers/misc/Kconfig
18458 F:      drivers/misc/Makefile
18459 F:      include/uapi/misc/xilinx_sdfec.h
18460
18461 XILLYBUS DRIVER
18462 M:      Eli Billauer <eli.billauer@gmail.com>
18463 L:      linux-kernel@vger.kernel.org
18464 S:      Supported
18465 F:      drivers/char/xillybus/
18466
18467 XLP9XX I2C DRIVER
18468 M:      George Cherian <gcherian@marvell.com>
18469 L:      linux-i2c@vger.kernel.org
18470 W:      http://www.marvell.com
18471 S:      Supported
18472 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
18473 F:      drivers/i2c/busses/i2c-xlp9xx.c
18474
18475 XRA1403 GPIO EXPANDER
18476 M:      Nandor Han <nandor.han@ge.com>
18477 M:      Semi Malinen <semi.malinen@ge.com>
18478 L:      linux-gpio@vger.kernel.org
18479 S:      Maintained
18480 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
18481 F:      drivers/gpio/gpio-xra1403.c
18482
18483 XTENSA XTFPGA PLATFORM SUPPORT
18484 M:      Max Filippov <jcmvbkbc@gmail.com>
18485 L:      linux-xtensa@linux-xtensa.org
18486 S:      Maintained
18487 F:      drivers/spi/spi-xtensa-xtfpga.c
18488 F:      sound/soc/xtensa/xtfpga-i2s.c
18489
18490 YAM DRIVER FOR AX.25
18491 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
18492 L:      linux-hams@vger.kernel.org
18493 S:      Maintained
18494 F:      drivers/net/hamradio/yam*
18495 F:      include/linux/yam.h
18496
18497 YAMA SECURITY MODULE
18498 M:      Kees Cook <keescook@chromium.org>
18499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
18500 S:      Supported
18501 F:      security/yama/
18502 F:      Documentation/admin-guide/LSM/Yama.rst
18503
18504 YEALINK PHONE DRIVER
18505 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
18506 L:      usbb2k-api-dev@nongnu.org
18507 S:      Maintained
18508 F:      Documentation/input/devices/yealink.rst
18509 F:      drivers/input/misc/yealink.*
18510
18511 Z8530 DRIVER FOR AX.25
18512 M:      Joerg Reuter <jreuter@yaina.de>
18513 W:      http://yaina.de/jreuter/
18514 W:      http://www.qsl.net/dl1bke/
18515 L:      linux-hams@vger.kernel.org
18516 S:      Maintained
18517 F:      Documentation/networking/z8530drv.txt
18518 F:      drivers/net/hamradio/*scc.c
18519 F:      drivers/net/hamradio/z8530.h
18520
18521 ZBUD COMPRESSED PAGE ALLOCATOR
18522 M:      Seth Jennings <sjenning@redhat.com>
18523 M:      Dan Streetman <ddstreet@ieee.org>
18524 L:      linux-mm@kvack.org
18525 S:      Maintained
18526 F:      mm/zbud.c
18527 F:      include/linux/zbud.h
18528
18529 ZD1211RW WIRELESS DRIVER
18530 M:      Daniel Drake <dsd@gentoo.org>
18531 M:      Ulrich Kunitz <kune@deine-taler.de>
18532 W:      http://zd1211.ath.cx/wiki/DriverRewrite
18533 L:      linux-wireless@vger.kernel.org
18534 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
18535 S:      Maintained
18536 F:      drivers/net/wireless/zydas/zd1211rw/
18537
18538 ZD1301 MEDIA DRIVER
18539 M:      Antti Palosaari <crope@iki.fi>
18540 L:      linux-media@vger.kernel.org
18541 W:      https://linuxtv.org/
18542 W:      http://palosaari.fi/linux/
18543 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18544 S:      Maintained
18545 F:      drivers/media/usb/dvb-usb-v2/zd1301*
18546
18547 ZD1301_DEMOD MEDIA DRIVER
18548 M:      Antti Palosaari <crope@iki.fi>
18549 L:      linux-media@vger.kernel.org
18550 W:      https://linuxtv.org/
18551 W:      http://palosaari.fi/linux/
18552 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18553 S:      Maintained
18554 F:      drivers/media/dvb-frontends/zd1301_demod*
18555
18556 ZHAOXIN PROCESSOR SUPPORT
18557 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
18558 L:      linux-kernel@vger.kernel.org
18559 S:      Maintained
18560 F:      arch/x86/kernel/cpu/zhaoxin.c
18561
18562 ZONEFS FILESYSTEM
18563 M:      Damien Le Moal <damien.lemoal@wdc.com>
18564 M:      Naohiro Aota <naohiro.aota@wdc.com>
18565 R:      Johannes Thumshirn <jth@kernel.org>
18566 L:      linux-fsdevel@vger.kernel.org
18567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
18568 S:      Maintained
18569 F:      fs/zonefs/
18570 F:      Documentation/filesystems/zonefs.rst
18571
18572 ZPOOL COMPRESSED PAGE STORAGE API
18573 M:      Dan Streetman <ddstreet@ieee.org>
18574 L:      linux-mm@kvack.org
18575 S:      Maintained
18576 F:      mm/zpool.c
18577 F:      include/linux/zpool.h
18578
18579 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
18580 M:      Minchan Kim <minchan@kernel.org>
18581 M:      Nitin Gupta <ngupta@vflare.org>
18582 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
18583 L:      linux-kernel@vger.kernel.org
18584 S:      Maintained
18585 F:      drivers/block/zram/
18586 F:      Documentation/admin-guide/blockdev/zram.rst
18587
18588 ZS DECSTATION Z85C30 SERIAL DRIVER
18589 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
18590 S:      Maintained
18591 F:      drivers/tty/serial/zs.*
18592
18593 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
18594 M:      Minchan Kim <minchan@kernel.org>
18595 M:      Nitin Gupta <ngupta@vflare.org>
18596 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
18597 L:      linux-mm@kvack.org
18598 S:      Maintained
18599 F:      mm/zsmalloc.c
18600 F:      include/linux/zsmalloc.h
18601 F:      Documentation/vm/zsmalloc.rst
18602
18603 ZSWAP COMPRESSED SWAP CACHING
18604 M:      Seth Jennings <sjenning@redhat.com>
18605 M:      Dan Streetman <ddstreet@ieee.org>
18606 M:      Vitaly Wool <vitaly.wool@konsulko.com>
18607 L:      linux-mm@kvack.org
18608 S:      Maintained
18609 F:      mm/zswap.c
18610
18611 THE REST
18612 M:      Linus Torvalds <torvalds@linux-foundation.org>
18613 L:      linux-kernel@vger.kernel.org
18614 Q:      http://patchwork.kernel.org/project/LKML/list/
18615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
18616 S:      Buried alive in reporters
18617 F:      *
18618 F:      */