Merge tag 'char-misc-5.8-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh...
[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 and preferred order
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         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
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         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <klassert@kernel.org>
148 L:      netdev@vger.kernel.org
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <dave@thedillows.org>
155 L:      netdev@vger.kernel.org
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <aradford@gmail.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L:      linux-scsi@vger.kernel.org
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <alex.aring@gmail.com>
174 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L:      linux-bluetooth@vger.kernel.org
176 L:      linux-wpan@vger.kernel.org
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L:      linux-hams@vger.kernel.org
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <johannes@sipsolutions.net>
190 L:      linux-wireless@vger.kernel.org
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      net/wireless/
204
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
207 M:      Heiner Kallweit <hkallweit1@gmail.com>
208 L:      netdev@vger.kernel.org
209 S:      Maintained
210 F:      drivers/net/ethernet/realtek/r8169*
211
212 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
213 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
214 L:      linux-serial@vger.kernel.org
215 S:      Maintained
216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
217 F:      drivers/tty/serial/8250*
218 F:      include/linux/serial_8250.h
219
220 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
221 L:      netdev@vger.kernel.org
222 S:      Orphan / Obsolete
223 F:      drivers/net/ethernet/8390/
224
225 9P FILE SYSTEM
226 M:      Eric Van Hensbergen <ericvh@gmail.com>
227 M:      Latchesar Ionkov <lucho@ionkov.net>
228 M:      Dominique Martinet <asmadeus@codewreck.org>
229 L:      v9fs-developer@lists.sourceforge.net
230 S:      Maintained
231 W:      http://swik.net/v9fs
232 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
234 T:      git git://github.com/martinetd/linux.git
235 F:      Documentation/filesystems/9p.rst
236 F:      fs/9p/
237 F:      include/net/9p/
238 F:      include/trace/events/9p.h
239 F:      include/uapi/linux/virtio_9p.h
240 F:      net/9p/
241
242 A8293 MEDIA DRIVER
243 M:      Antti Palosaari <crope@iki.fi>
244 L:      linux-media@vger.kernel.org
245 S:      Maintained
246 W:      https://linuxtv.org
247 W:      http://palosaari.fi/linux/
248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
249 T:      git git://linuxtv.org/anttip/media_tree.git
250 F:      drivers/media/dvb-frontends/a8293*
251
252 AACRAID SCSI RAID DRIVER
253 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
254 L:      linux-scsi@vger.kernel.org
255 S:      Supported
256 W:      http://www.adaptec.com/
257 F:      Documentation/scsi/aacraid.rst
258 F:      drivers/scsi/aacraid/
259
260 ABI/API
261 L:      linux-api@vger.kernel.org
262 F:      include/linux/syscalls.h
263 F:      kernel/sys_ni.c
264
265 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
266 M:      Hans de Goede <hdegoede@redhat.com>
267 L:      linux-hwmon@vger.kernel.org
268 S:      Maintained
269 F:      drivers/hwmon/abituguru.c
270
271 ABIT UGURU 3 HARDWARE MONITOR DRIVER
272 M:      Alistair John Strachan <alistair@devzero.co.uk>
273 L:      linux-hwmon@vger.kernel.org
274 S:      Maintained
275 F:      drivers/hwmon/abituguru3.c
276
277 ACCES 104-DIO-48E GPIO DRIVER
278 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
279 L:      linux-gpio@vger.kernel.org
280 S:      Maintained
281 F:      drivers/gpio/gpio-104-dio-48e.c
282
283 ACCES 104-IDI-48 GPIO DRIVER
284 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
285 L:      linux-gpio@vger.kernel.org
286 S:      Maintained
287 F:      drivers/gpio/gpio-104-idi-48.c
288
289 ACCES 104-IDIO-16 GPIO DRIVER
290 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
291 L:      linux-gpio@vger.kernel.org
292 S:      Maintained
293 F:      drivers/gpio/gpio-104-idio-16.c
294
295 ACCES 104-QUAD-8 DRIVER
296 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
297 M:      Syed Nayyar Waris <syednwaris@gmail.com>
298 L:      linux-iio@vger.kernel.org
299 S:      Maintained
300 F:      Documentation/ABI/testing/sysfs-bus-counter-104-quad-8
301 F:      Documentation/ABI/testing/sysfs-bus-iio-counter-104-quad-8
302 F:      drivers/counter/104-quad-8.c
303
304 ACCES PCI-IDIO-16 GPIO DRIVER
305 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
306 L:      linux-gpio@vger.kernel.org
307 S:      Maintained
308 F:      drivers/gpio/gpio-pci-idio-16.c
309
310 ACCES PCIe-IDIO-24 GPIO DRIVER
311 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
312 L:      linux-gpio@vger.kernel.org
313 S:      Maintained
314 F:      drivers/gpio/gpio-pcie-idio-24.c
315
316 ACENIC DRIVER
317 M:      Jes Sorensen <jes@trained-monkey.org>
318 L:      linux-acenic@sunsite.dk
319 S:      Maintained
320 F:      drivers/net/ethernet/alteon/acenic*
321
322 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
323 M:      Peter Kaestle <peter@piie.net>
324 L:      platform-driver-x86@vger.kernel.org
325 S:      Maintained
326 W:      http://piie.net/?section=acerhdf
327 F:      drivers/platform/x86/acerhdf.c
328
329 ACER WMI LAPTOP EXTRAS
330 M:      "Lee, Chun-Yi" <jlee@suse.com>
331 L:      platform-driver-x86@vger.kernel.org
332 S:      Maintained
333 F:      drivers/platform/x86/acer-wmi.c
334
335 ACPI
336 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
337 M:      Len Brown <lenb@kernel.org>
338 L:      linux-acpi@vger.kernel.org
339 S:      Supported
340 W:      https://01.org/linux-acpi
341 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
342 B:      https://bugzilla.kernel.org
343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
344 F:      Documentation/ABI/testing/configfs-acpi
345 F:      Documentation/ABI/testing/sysfs-bus-acpi
346 F:      Documentation/firmware-guide/acpi/
347 F:      drivers/acpi/
348 F:      drivers/pci/*/*acpi*
349 F:      drivers/pci/*acpi*
350 F:      drivers/pnp/pnpacpi/
351 F:      include/acpi/
352 F:      include/linux/acpi.h
353 F:      include/linux/fwnode.h
354 F:      tools/power/acpi/
355
356 ACPI APEI
357 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
358 M:      Len Brown <lenb@kernel.org>
359 R:      James Morse <james.morse@arm.com>
360 R:      Tony Luck <tony.luck@intel.com>
361 R:      Borislav Petkov <bp@alien8.de>
362 L:      linux-acpi@vger.kernel.org
363 F:      drivers/acpi/apei/
364
365 ACPI COMPONENT ARCHITECTURE (ACPICA)
366 M:      Robert Moore <robert.moore@intel.com>
367 M:      Erik Kaneda <erik.kaneda@intel.com>
368 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
369 L:      linux-acpi@vger.kernel.org
370 L:      devel@acpica.org
371 S:      Supported
372 W:      https://acpica.org/
373 W:      https://github.com/acpica/acpica/
374 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
375 B:      https://bugzilla.kernel.org
376 B:      https://bugs.acpica.org
377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
378 F:      drivers/acpi/acpica/
379 F:      include/acpi/
380 F:      tools/power/acpi/
381
382 ACPI FAN DRIVER
383 M:      Zhang Rui <rui.zhang@intel.com>
384 L:      linux-acpi@vger.kernel.org
385 S:      Supported
386 W:      https://01.org/linux-acpi
387 B:      https://bugzilla.kernel.org
388 F:      drivers/acpi/fan.c
389
390 ACPI FOR ARM64 (ACPI/arm64)
391 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
392 M:      Hanjun Guo <guohanjun@huawei.com>
393 M:      Sudeep Holla <sudeep.holla@arm.com>
394 L:      linux-acpi@vger.kernel.org
395 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
396 S:      Maintained
397 F:      drivers/acpi/arm64
398
399 ACPI I2C MULTI INSTANTIATE DRIVER
400 M:      Hans de Goede <hdegoede@redhat.com>
401 L:      platform-driver-x86@vger.kernel.org
402 S:      Maintained
403 F:      drivers/platform/x86/i2c-multi-instantiate.c
404
405 ACPI PMIC DRIVERS
406 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
407 M:      Len Brown <lenb@kernel.org>
408 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
409 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
410 L:      linux-acpi@vger.kernel.org
411 S:      Supported
412 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
413 B:      https://bugzilla.kernel.org
414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
415 F:      drivers/acpi/pmic/
416
417 ACPI THERMAL DRIVER
418 M:      Zhang Rui <rui.zhang@intel.com>
419 L:      linux-acpi@vger.kernel.org
420 S:      Supported
421 W:      https://01.org/linux-acpi
422 B:      https://bugzilla.kernel.org
423 F:      drivers/acpi/*thermal*
424
425 ACPI VIDEO DRIVER
426 M:      Zhang Rui <rui.zhang@intel.com>
427 L:      linux-acpi@vger.kernel.org
428 S:      Supported
429 W:      https://01.org/linux-acpi
430 B:      https://bugzilla.kernel.org
431 F:      drivers/acpi/acpi_video.c
432
433 ACPI WMI DRIVER
434 L:      platform-driver-x86@vger.kernel.org
435 S:      Orphan
436 F:      drivers/platform/x86/wmi.c
437 F:      include/uapi/linux/wmi.h
438
439 AD1889 ALSA SOUND DRIVER
440 L:      linux-parisc@vger.kernel.org
441 S:      Maintained
442 W:      https://parisc.wiki.kernel.org/index.php/AD1889
443 F:      sound/pci/ad1889.*
444
445 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
446 M:      Michael Hennerich <michael.hennerich@analog.com>
447 S:      Supported
448 W:      http://wiki.analog.com/AD5254
449 W:      http://ez.analog.com/community/linux-device-drivers
450 F:      drivers/misc/ad525x_dpot.c
451
452 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
453 M:      Michael Hennerich <michael.hennerich@analog.com>
454 S:      Supported
455 W:      http://wiki.analog.com/AD5398
456 W:      http://ez.analog.com/community/linux-device-drivers
457 F:      drivers/regulator/ad5398.c
458
459 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
460 M:      Michael Hennerich <michael.hennerich@analog.com>
461 S:      Supported
462 W:      http://wiki.analog.com/AD7142
463 W:      http://ez.analog.com/community/linux-device-drivers
464 F:      drivers/input/misc/ad714x.c
465
466 AD7877 TOUCHSCREEN DRIVER
467 M:      Michael Hennerich <michael.hennerich@analog.com>
468 S:      Supported
469 W:      http://wiki.analog.com/AD7877
470 W:      http://ez.analog.com/community/linux-device-drivers
471 F:      drivers/input/touchscreen/ad7877.c
472
473 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
474 M:      Michael Hennerich <michael.hennerich@analog.com>
475 S:      Supported
476 W:      http://wiki.analog.com/AD7879
477 W:      http://ez.analog.com/community/linux-device-drivers
478 F:      drivers/input/touchscreen/ad7879.c
479
480 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
481 M:      Jiri Kosina <jikos@kernel.org>
482 S:      Maintained
483
484 ADF7242 IEEE 802.15.4 RADIO DRIVER
485 M:      Michael Hennerich <michael.hennerich@analog.com>
486 L:      linux-wpan@vger.kernel.org
487 S:      Supported
488 W:      https://wiki.analog.com/ADF7242
489 W:      http://ez.analog.com/community/linux-device-drivers
490 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
491 F:      drivers/net/ieee802154/adf7242.c
492
493 ADM1025 HARDWARE MONITOR DRIVER
494 M:      Jean Delvare <jdelvare@suse.com>
495 L:      linux-hwmon@vger.kernel.org
496 S:      Maintained
497 F:      Documentation/hwmon/adm1025.rst
498 F:      drivers/hwmon/adm1025.c
499
500 ADM1029 HARDWARE MONITOR DRIVER
501 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
502 L:      linux-hwmon@vger.kernel.org
503 S:      Maintained
504 F:      drivers/hwmon/adm1029.c
505
506 ADM8211 WIRELESS DRIVER
507 L:      linux-wireless@vger.kernel.org
508 S:      Orphan
509 W:      https://wireless.wiki.kernel.org/
510 F:      drivers/net/wireless/admtek/adm8211.*
511
512 ADP1653 FLASH CONTROLLER DRIVER
513 M:      Sakari Ailus <sakari.ailus@iki.fi>
514 L:      linux-media@vger.kernel.org
515 S:      Maintained
516 F:      drivers/media/i2c/adp1653.c
517 F:      include/media/i2c/adp1653.h
518
519 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
520 M:      Michael Hennerich <michael.hennerich@analog.com>
521 S:      Supported
522 W:      http://wiki.analog.com/ADP5520
523 W:      http://ez.analog.com/community/linux-device-drivers
524 F:      drivers/gpio/gpio-adp5520.c
525 F:      drivers/input/keyboard/adp5520-keys.c
526 F:      drivers/leds/leds-adp5520.c
527 F:      drivers/mfd/adp5520.c
528 F:      drivers/video/backlight/adp5520_bl.c
529
530 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
531 M:      Michael Hennerich <michael.hennerich@analog.com>
532 S:      Supported
533 W:      http://wiki.analog.com/ADP5588
534 W:      http://ez.analog.com/community/linux-device-drivers
535 F:      drivers/gpio/gpio-adp5588.c
536 F:      drivers/input/keyboard/adp5588-keys.c
537
538 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
539 M:      Michael Hennerich <michael.hennerich@analog.com>
540 S:      Supported
541 W:      http://wiki.analog.com/ADP8860
542 W:      http://ez.analog.com/community/linux-device-drivers
543 F:      drivers/video/backlight/adp8860_bl.c
544
545 ADT746X FAN DRIVER
546 M:      Colin Leroy <colin@colino.net>
547 S:      Maintained
548 F:      drivers/macintosh/therm_adt746x.c
549
550 ADT7475 HARDWARE MONITOR DRIVER
551 M:      Jean Delvare <jdelvare@suse.com>
552 L:      linux-hwmon@vger.kernel.org
553 S:      Maintained
554 F:      Documentation/hwmon/adt7475.rst
555 F:      drivers/hwmon/adt7475.c
556
557 ADVANSYS SCSI DRIVER
558 M:      Matthew Wilcox <willy@infradead.org>
559 M:      Hannes Reinecke <hare@suse.com>
560 L:      linux-scsi@vger.kernel.org
561 S:      Maintained
562 F:      Documentation/scsi/advansys.rst
563 F:      drivers/scsi/advansys.c
564
565 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
566 M:      Michael Hennerich <michael.hennerich@analog.com>
567 S:      Supported
568 W:      http://wiki.analog.com/ADXL345
569 W:      http://ez.analog.com/community/linux-device-drivers
570 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
571 F:      drivers/input/misc/adxl34x.c
572
573 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
574 M:      Michael Hennerich <michael.hennerich@analog.com>
575 S:      Supported
576 W:      http://ez.analog.com/community/linux-device-drivers
577 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
578 F:      drivers/iio/accel/adxl372.c
579 F:      drivers/iio/accel/adxl372_i2c.c
580 F:      drivers/iio/accel/adxl372_spi.c
581
582 AF9013 MEDIA DRIVER
583 M:      Antti Palosaari <crope@iki.fi>
584 L:      linux-media@vger.kernel.org
585 S:      Maintained
586 W:      https://linuxtv.org
587 W:      http://palosaari.fi/linux/
588 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
589 T:      git git://linuxtv.org/anttip/media_tree.git
590 F:      drivers/media/dvb-frontends/af9013*
591
592 AF9033 MEDIA DRIVER
593 M:      Antti Palosaari <crope@iki.fi>
594 L:      linux-media@vger.kernel.org
595 S:      Maintained
596 W:      https://linuxtv.org
597 W:      http://palosaari.fi/linux/
598 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
599 T:      git git://linuxtv.org/anttip/media_tree.git
600 F:      drivers/media/dvb-frontends/af9033*
601
602 AFFS FILE SYSTEM
603 M:      David Sterba <dsterba@suse.com>
604 L:      linux-fsdevel@vger.kernel.org
605 S:      Odd Fixes
606 F:      Documentation/filesystems/affs.rst
607 F:      fs/affs/
608
609 AFS FILESYSTEM
610 M:      David Howells <dhowells@redhat.com>
611 L:      linux-afs@lists.infradead.org
612 S:      Supported
613 W:      https://www.infradead.org/~dhowells/kafs/
614 F:      Documentation/filesystems/afs.rst
615 F:      fs/afs/
616 F:      include/trace/events/afs.h
617
618 AGPGART DRIVER
619 M:      David Airlie <airlied@linux.ie>
620 S:      Maintained
621 T:      git git://anongit.freedesktop.org/drm/drm
622 F:      drivers/char/agp/
623 F:      include/linux/agp*
624 F:      include/uapi/linux/agp*
625
626 AHA152X SCSI DRIVER
627 M:      "Juergen E. Fischer" <fischer@norbit.de>
628 L:      linux-scsi@vger.kernel.org
629 S:      Maintained
630 F:      drivers/scsi/aha152x*
631 F:      drivers/scsi/pcmcia/aha152x*
632
633 AIC7XXX / AIC79XX SCSI DRIVER
634 M:      Hannes Reinecke <hare@suse.com>
635 L:      linux-scsi@vger.kernel.org
636 S:      Maintained
637 F:      drivers/scsi/aic7xxx/
638
639 AIMSLAB FM RADIO RECEIVER DRIVER
640 M:      Hans Verkuil <hverkuil@xs4all.nl>
641 L:      linux-media@vger.kernel.org
642 S:      Maintained
643 W:      https://linuxtv.org
644 T:      git git://linuxtv.org/media_tree.git
645 F:      drivers/media/radio/radio-aimslab*
646
647 AIO
648 M:      Benjamin LaHaise <bcrl@kvack.org>
649 L:      linux-aio@kvack.org
650 S:      Supported
651 F:      fs/aio.c
652 F:      include/linux/*aio*.h
653
654 AIRSPY MEDIA DRIVER
655 M:      Antti Palosaari <crope@iki.fi>
656 L:      linux-media@vger.kernel.org
657 S:      Maintained
658 W:      https://linuxtv.org
659 W:      http://palosaari.fi/linux/
660 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
661 T:      git git://linuxtv.org/anttip/media_tree.git
662 F:      drivers/media/usb/airspy/
663
664 ALACRITECH GIGABIT ETHERNET DRIVER
665 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
666 S:      Maintained
667 F:      drivers/net/ethernet/alacritech/*
668
669 ALCATEL SPEEDTOUCH USB DRIVER
670 M:      Duncan Sands <duncan.sands@free.fr>
671 L:      linux-usb@vger.kernel.org
672 S:      Maintained
673 W:      http://www.linux-usb.org/SpeedTouch/
674 F:      drivers/usb/atm/speedtch.c
675 F:      drivers/usb/atm/usbatm.c
676
677 ALCHEMY AU1XX0 MMC DRIVER
678 M:      Manuel Lauss <manuel.lauss@gmail.com>
679 S:      Maintained
680 F:      drivers/mmc/host/au1xmmc.c
681
682 ALI1563 I2C DRIVER
683 M:      Rudolf Marek <r.marek@assembler.cz>
684 L:      linux-i2c@vger.kernel.org
685 S:      Maintained
686 F:      Documentation/i2c/busses/i2c-ali1563.rst
687 F:      drivers/i2c/busses/i2c-ali1563.c
688
689 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
690 M:      Tomislav Denis <tomislav.denis@avl.com>
691 L:      linux-iio@vger.kernel.org
692 S:      Maintained
693 W:      http://www.allsensors.com/
694 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
695 F:      drivers/iio/pressure/dlhl60d.c
696
697 ALLEGRO DVT VIDEO IP CORE DRIVER
698 M:      Michael Tretter <m.tretter@pengutronix.de>
699 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
700 L:      linux-media@vger.kernel.org
701 S:      Maintained
702 F:      drivers/staging/media/allegro-dvt/
703
704 ALLWINNER A10 CSI DRIVER
705 M:      Maxime Ripard <mripard@kernel.org>
706 L:      linux-media@vger.kernel.org
707 S:      Maintained
708 T:      git git://linuxtv.org/media_tree.git
709 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
710 F:      drivers/media/platform/sunxi/sun4i-csi/
711
712 ALLWINNER CPUFREQ DRIVER
713 M:      Yangtao Li <tiny.windzz@gmail.com>
714 L:      linux-pm@vger.kernel.org
715 S:      Maintained
716 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
717 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
718
719 ALLWINNER CRYPTO DRIVERS
720 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
721 L:      linux-crypto@vger.kernel.org
722 S:      Maintained
723 F:      drivers/crypto/allwinner/
724
725 ALLWINNER THERMAL DRIVER
726 M:      Vasily Khoruzhick <anarsoul@gmail.com>
727 M:      Yangtao Li <tiny.windzz@gmail.com>
728 L:      linux-pm@vger.kernel.org
729 S:      Maintained
730 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
731 F:      drivers/thermal/sun8i_thermal.c
732
733 ALLWINNER VPU DRIVER
734 M:      Maxime Ripard <mripard@kernel.org>
735 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
736 L:      linux-media@vger.kernel.org
737 S:      Maintained
738 F:      drivers/staging/media/sunxi/cedrus/
739
740 ALPHA PORT
741 M:      Richard Henderson <rth@twiddle.net>
742 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
743 M:      Matt Turner <mattst88@gmail.com>
744 L:      linux-alpha@vger.kernel.org
745 S:      Odd Fixes
746 F:      arch/alpha/
747
748 ALPS PS/2 TOUCHPAD DRIVER
749 R:      Pali Rohár <pali@kernel.org>
750 F:      drivers/input/mouse/alps.*
751
752 ALTERA I2C CONTROLLER DRIVER
753 M:      Thor Thayer <thor.thayer@linux.intel.com>
754 S:      Maintained
755 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
756 F:      drivers/i2c/busses/i2c-altera.c
757
758 ALTERA MAILBOX DRIVER
759 M:      Ley Foon Tan <ley.foon.tan@intel.com>
760 S:      Maintained
761 F:      drivers/mailbox/mailbox-altera.c
762
763 ALTERA PIO DRIVER
764 M:      Joyce Ooi <joyce.ooi@intel.com>
765 L:      linux-gpio@vger.kernel.org
766 S:      Maintained
767 F:      drivers/gpio/gpio-altera.c
768
769 ALTERA SYSTEM MANAGER DRIVER
770 M:      Thor Thayer <thor.thayer@linux.intel.com>
771 S:      Maintained
772 F:      drivers/mfd/altera-sysmgr.c
773 F:      include/linux/mfd/altera-sysmgr.h
774
775 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
776 M:      Thor Thayer <thor.thayer@linux.intel.com>
777 S:      Maintained
778 F:      drivers/gpio/gpio-altera-a10sr.c
779 F:      drivers/mfd/altera-a10sr.c
780 F:      drivers/reset/reset-a10sr.c
781 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
782 F:      include/linux/mfd/altera-a10sr.h
783
784 ALTERA TRIPLE SPEED ETHERNET DRIVER
785 M:      Thor Thayer <thor.thayer@linux.intel.com>
786 L:      netdev@vger.kernel.org
787 S:      Maintained
788 F:      drivers/net/ethernet/altera/
789
790 ALTERA UART/JTAG UART SERIAL DRIVERS
791 M:      Tobias Klauser <tklauser@distanz.ch>
792 L:      linux-serial@vger.kernel.org
793 S:      Maintained
794 F:      drivers/tty/serial/altera_jtaguart.c
795 F:      drivers/tty/serial/altera_uart.c
796 F:      include/linux/altera_jtaguart.h
797 F:      include/linux/altera_uart.h
798
799 AMAZON ANNAPURNA LABS FIC DRIVER
800 M:      Talel Shenhar <talel@amazon.com>
801 S:      Maintained
802 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
803 F:      drivers/irqchip/irq-al-fic.c
804
805 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
806 M:      Talel Shenhar <talel@amazon.com>
807 S:      Maintained
808 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
809 F:      drivers/thermal/thermal_mmio.c
810
811 AMAZON ETHERNET DRIVERS
812 M:      Netanel Belgazal <netanel@amazon.com>
813 M:      Arthur Kiyanovski <akiyano@amazon.com>
814 R:      Guy Tzalik <gtzalik@amazon.com>
815 R:      Saeed Bishara <saeedb@amazon.com>
816 R:      Zorik Machulsky <zorik@amazon.com>
817 L:      netdev@vger.kernel.org
818 S:      Supported
819 F:      Documentation/networking/device_drivers/amazon/ena.rst
820 F:      drivers/net/ethernet/amazon/
821
822 AMAZON RDMA EFA DRIVER
823 M:      Gal Pressman <galpress@amazon.com>
824 R:      Yossi Leybovich <sleybo@amazon.com>
825 L:      linux-rdma@vger.kernel.org
826 S:      Supported
827 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
828 F:      drivers/infiniband/hw/efa/
829 F:      include/uapi/rdma/efa-abi.h
830
831 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
832 M:      Tom Lendacky <thomas.lendacky@amd.com>
833 L:      linux-crypto@vger.kernel.org
834 S:      Supported
835 F:      drivers/crypto/ccp/
836 F:      include/linux/ccp.h
837
838 AMD DISPLAY CORE
839 M:      Harry Wentland <harry.wentland@amd.com>
840 M:      Leo Li <sunpeng.li@amd.com>
841 L:      amd-gfx@lists.freedesktop.org
842 S:      Supported
843 T:      git git://people.freedesktop.org/~agd5f/linux
844 F:      drivers/gpu/drm/amd/display/
845
846 AMD ENERGY DRIVER
847 M:      Naveen Krishna Chatradhi <nchatrad@amd.com>
848 L:      linux-hwmon@vger.kernel.org
849 S:      Maintained
850 F:      Documentation/hwmon/amd_energy.rst
851 F:      drivers/hwmon/amd_energy.c
852
853 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
854 M:      Huang Rui <ray.huang@amd.com>
855 L:      linux-hwmon@vger.kernel.org
856 S:      Supported
857 F:      Documentation/hwmon/fam15h_power.rst
858 F:      drivers/hwmon/fam15h_power.c
859
860 AMD FCH GPIO DRIVER
861 M:      Enrico Weigelt, metux IT consult <info@metux.net>
862 L:      linux-gpio@vger.kernel.org
863 S:      Maintained
864 F:      drivers/gpio/gpio-amd-fch.c
865 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
866
867 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
868 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
869 S:      Orphan
870 F:      drivers/usb/gadget/udc/amd5536udc.*
871
872 AMD GEODE PROCESSOR/CHIPSET SUPPORT
873 M:      Andres Salomon <dilinger@queued.net>
874 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
875 S:      Supported
876 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
877 F:      arch/x86/include/asm/geode.h
878 F:      drivers/char/hw_random/geode-rng.c
879 F:      drivers/crypto/geode*
880 F:      drivers/video/fbdev/geode/
881
882 AMD IOMMU (AMD-VI)
883 M:      Joerg Roedel <joro@8bytes.org>
884 L:      iommu@lists.linux-foundation.org
885 S:      Maintained
886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
887 F:      drivers/iommu/amd_iommu*.[ch]
888 F:      include/linux/amd-iommu.h
889
890 AMD KFD
891 M:      Felix Kuehling <Felix.Kuehling@amd.com>
892 L:      amd-gfx@lists.freedesktop.org
893 S:      Supported
894 T:      git git://people.freedesktop.org/~agd5f/linux
895 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
896 F:      drivers/gpu/drm/amd/amdkfd/
897 F:      drivers/gpu/drm/amd/include/cik_structs.h
898 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
899 F:      drivers/gpu/drm/amd/include/v9_structs.h
900 F:      drivers/gpu/drm/amd/include/vi_structs.h
901 F:      include/uapi/linux/kfd_ioctl.h
902
903 AMD SPI DRIVER
904 M:      Sanjay R Mehta <sanju.mehta@amd.com>
905 S:      Maintained
906 F:      drivers/spi/spi-amd.c
907
908 AMD MP2 I2C DRIVER
909 M:      Elie Morisse <syniurge@gmail.com>
910 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
911 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
912 L:      linux-i2c@vger.kernel.org
913 S:      Maintained
914 F:      drivers/i2c/busses/i2c-amd-mp2*
915
916 AMD POWERPLAY
917 M:      Evan Quan <evan.quan@amd.com>
918 L:      amd-gfx@lists.freedesktop.org
919 S:      Supported
920 T:      git git://people.freedesktop.org/~agd5f/linux
921 F:      drivers/gpu/drm/amd/powerplay/
922
923 AMD SEATTLE DEVICE TREE SUPPORT
924 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
925 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
926 M:      Tom Lendacky <thomas.lendacky@amd.com>
927 S:      Supported
928 F:      arch/arm64/boot/dts/amd/
929
930 AMD XGBE DRIVER
931 M:      Tom Lendacky <thomas.lendacky@amd.com>
932 L:      netdev@vger.kernel.org
933 S:      Supported
934 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
935 F:      drivers/net/ethernet/amd/xgbe/
936
937 ANALOG DEVICES INC AD5686 DRIVER
938 M:      Michael Hennerich <Michael.Hennerich@analog.com>
939 L:      linux-pm@vger.kernel.org
940 S:      Supported
941 W:      http://ez.analog.com/community/linux-device-drivers
942 F:      drivers/iio/dac/ad5686*
943 F:      drivers/iio/dac/ad5696*
944
945 ANALOG DEVICES INC AD5758 DRIVER
946 M:      Michael Hennerich <Michael.Hennerich@analog.com>
947 L:      linux-iio@vger.kernel.org
948 S:      Supported
949 W:      http://ez.analog.com/community/linux-device-drivers
950 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
951 F:      drivers/iio/dac/ad5758.c
952
953 ANALOG DEVICES INC AD7091R5 DRIVER
954 M:      Beniamin Bia <beniamin.bia@analog.com>
955 L:      linux-iio@vger.kernel.org
956 S:      Supported
957 W:      http://ez.analog.com/community/linux-device-drivers
958 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7091r5.yaml
959 F:      drivers/iio/adc/ad7091r5.c
960
961 ANALOG DEVICES INC AD7124 DRIVER
962 M:      Michael Hennerich <Michael.Hennerich@analog.com>
963 L:      linux-iio@vger.kernel.org
964 S:      Supported
965 W:      http://ez.analog.com/community/linux-device-drivers
966 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7124.yaml
967 F:      drivers/iio/adc/ad7124.c
968
969 ANALOG DEVICES INC AD7192 DRIVER
970 M:      Alexandru Tachici <alexandru.tachici@analog.com>
971 L:      linux-iio@vger.kernel.org
972 S:      Supported
973 W:      http://ez.analog.com/community/linux-device-drivers
974 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
975 F:      drivers/iio/adc/ad7192.c
976
977 ANALOG DEVICES INC AD7292 DRIVER
978 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
979 L:      linux-iio@vger.kernel.org
980 S:      Supported
981 W:      http://ez.analog.com/community/linux-device-drivers
982 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
983 F:      drivers/iio/adc/ad7292.c
984
985 ANALOG DEVICES INC AD7606 DRIVER
986 M:      Michael Hennerich <Michael.Hennerich@analog.com>
987 M:      Beniamin Bia <beniamin.bia@analog.com>
988 L:      linux-iio@vger.kernel.org
989 S:      Supported
990 W:      http://ez.analog.com/community/linux-device-drivers
991 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
992 F:      drivers/iio/adc/ad7606.c
993
994 ANALOG DEVICES INC AD7768-1 DRIVER
995 M:      Michael Hennerich <Michael.Hennerich@analog.com>
996 L:      linux-iio@vger.kernel.org
997 S:      Supported
998 W:      http://ez.analog.com/community/linux-device-drivers
999 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.txt
1000 F:      drivers/iio/adc/ad7768-1.c
1001
1002 ANALOG DEVICES INC AD7780 DRIVER
1003 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1004 M:      Renato Lui Geh <renatogeh@gmail.com>
1005 L:      linux-iio@vger.kernel.org
1006 S:      Supported
1007 W:      http://ez.analog.com/community/linux-device-drivers
1008 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1009 F:      drivers/iio/adc/ad7780.c
1010
1011 ANALOG DEVICES INC AD9389B DRIVER
1012 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1013 L:      linux-media@vger.kernel.org
1014 S:      Maintained
1015 F:      drivers/media/i2c/ad9389b*
1016
1017 ANALOG DEVICES INC ADGS1408 DRIVER
1018 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1019 S:      Supported
1020 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1021 F:      drivers/mux/adgs1408.c
1022
1023 ANALOG DEVICES INC ADIN DRIVER
1024 M:      Alexandru Ardelean <alexaundru.ardelean@analog.com>
1025 L:      netdev@vger.kernel.org
1026 S:      Supported
1027 W:      http://ez.analog.com/community/linux-device-drivers
1028 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1029 F:      drivers/net/phy/adin.c
1030
1031 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1032 M:      Alexandru Ardelean <alexandru.ardelean@analog.com>
1033 L:      linux-iio@vger.kernel.org
1034 S:      Supported
1035 F:      drivers/iio/imu/adis.c
1036 F:      include/linux/iio/imu/adis.h
1037
1038 ANALOG DEVICES INC ADIS16460 DRIVER
1039 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1040 L:      linux-iio@vger.kernel.org
1041 S:      Supported
1042 W:      http://ez.analog.com/community/linux-device-drivers
1043 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1044 F:      drivers/iio/imu/adis16460.c
1045
1046 ANALOG DEVICES INC ADIS16475 DRIVER
1047 M:      Nuno Sa <nuno.sa@analog.com>
1048 L:      linux-iio@vger.kernel.org
1049 W:      http://ez.analog.com/community/linux-device-drivers
1050 S:      Supported
1051 F:      drivers/iio/imu/adis16475.c
1052 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1053
1054 ANALOG DEVICES INC ADM1177 DRIVER
1055 M:      Beniamin Bia <beniamin.bia@analog.com>
1056 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1057 L:      linux-hwmon@vger.kernel.org
1058 S:      Supported
1059 W:      http://ez.analog.com/community/linux-device-drivers
1060 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1061 F:      drivers/hwmon/adm1177.c
1062
1063 ANALOG DEVICES INC ADP5061 DRIVER
1064 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1065 L:      linux-pm@vger.kernel.org
1066 S:      Supported
1067 W:      http://ez.analog.com/community/linux-device-drivers
1068 F:      drivers/power/supply/adp5061.c
1069
1070 ANALOG DEVICES INC ADV7180 DRIVER
1071 M:      Lars-Peter Clausen <lars@metafoo.de>
1072 L:      linux-media@vger.kernel.org
1073 S:      Supported
1074 W:      http://ez.analog.com/community/linux-device-drivers
1075 F:      drivers/media/i2c/adv7180.c
1076
1077 ANALOG DEVICES INC ADV748X DRIVER
1078 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1079 L:      linux-media@vger.kernel.org
1080 S:      Maintained
1081 F:      drivers/media/i2c/adv748x/*
1082
1083 ANALOG DEVICES INC ADV7511 DRIVER
1084 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1085 L:      linux-media@vger.kernel.org
1086 S:      Maintained
1087 F:      drivers/media/i2c/adv7511*
1088
1089 ANALOG DEVICES INC ADV7604 DRIVER
1090 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1091 L:      linux-media@vger.kernel.org
1092 S:      Maintained
1093 F:      drivers/media/i2c/adv7604*
1094
1095 ANALOG DEVICES INC ADV7842 DRIVER
1096 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1097 L:      linux-media@vger.kernel.org
1098 S:      Maintained
1099 F:      drivers/media/i2c/adv7842*
1100
1101 ANALOG DEVICES INC ASOC CODEC DRIVERS
1102 M:      Lars-Peter Clausen <lars@metafoo.de>
1103 M:      Nuno Sá <nuno.sa@analog.com>
1104 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1105 S:      Supported
1106 W:      http://wiki.analog.com/
1107 W:      http://ez.analog.com/community/linux-device-drivers
1108 F:      sound/soc/codecs/ad1*
1109 F:      sound/soc/codecs/ad7*
1110 F:      sound/soc/codecs/adau*
1111 F:      sound/soc/codecs/adav*
1112 F:      sound/soc/codecs/sigmadsp.*
1113 F:      sound/soc/codecs/ssm*
1114
1115 ANALOG DEVICES INC DMA DRIVERS
1116 M:      Lars-Peter Clausen <lars@metafoo.de>
1117 S:      Supported
1118 W:      http://ez.analog.com/community/linux-device-drivers
1119 F:      drivers/dma/dma-axi-dmac.c
1120
1121 ANALOG DEVICES INC HMC425A DRIVER
1122 M:      Beniamin Bia <beniamin.bia@analog.com>
1123 M:      Michael Hennerich <michael.hennerich@analog.com>
1124 L:      linux-iio@vger.kernel.org
1125 S:      Supported
1126 W:      http://ez.analog.com/community/linux-device-drivers
1127 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,hmc425a.yaml
1128 F:      drivers/iio/amplifiers/hmc425a.c
1129
1130 ANALOG DEVICES INC IIO DRIVERS
1131 M:      Lars-Peter Clausen <lars@metafoo.de>
1132 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1133 S:      Supported
1134 W:      http://wiki.analog.com/
1135 W:      http://ez.analog.com/community/linux-device-drivers
1136 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1137 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1138 F:      drivers/iio/*/ad*
1139 F:      drivers/iio/adc/ltc249*
1140 F:      drivers/staging/iio/*/ad*
1141 X:      drivers/iio/*/adjd*
1142
1143 ANALOGBITS PLL LIBRARIES
1144 M:      Paul Walmsley <paul.walmsley@sifive.com>
1145 S:      Supported
1146 F:      drivers/clk/analogbits/*
1147 F:      include/linux/clk/analogbits*
1148
1149 ANDES ARCHITECTURE
1150 M:      Nick Hu <nickhu@andestech.com>
1151 M:      Greentime Hu <green.hu@gmail.com>
1152 M:      Vincent Chen <deanbo422@gmail.com>
1153 S:      Supported
1154 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1155 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1156 F:      Documentation/devicetree/bindings/nds32/
1157 F:      arch/nds32/
1158 N:      nds32
1159 K:      nds32
1160
1161 ANDROID CONFIG FRAGMENTS
1162 M:      Rob Herring <robh@kernel.org>
1163 S:      Supported
1164 F:      kernel/configs/android*
1165
1166 ANDROID DRIVERS
1167 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1168 M:      Arve Hjønnevåg <arve@android.com>
1169 M:      Todd Kjos <tkjos@android.com>
1170 M:      Martijn Coenen <maco@android.com>
1171 M:      Joel Fernandes <joel@joelfernandes.org>
1172 M:      Christian Brauner <christian@brauner.io>
1173 L:      devel@driverdev.osuosl.org
1174 S:      Supported
1175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1176 F:      drivers/android/
1177 F:      drivers/staging/android/
1178
1179 ANDROID GOLDFISH PIC DRIVER
1180 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1181 S:      Supported
1182 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1183 F:      drivers/irqchip/irq-goldfish-pic.c
1184
1185 ANDROID GOLDFISH RTC DRIVER
1186 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1187 S:      Supported
1188 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1189 F:      drivers/rtc/rtc-goldfish.c
1190
1191 ANDROID ION DRIVER
1192 M:      Laura Abbott <labbott@redhat.com>
1193 M:      Sumit Semwal <sumit.semwal@linaro.org>
1194 L:      devel@driverdev.osuosl.org
1195 L:      dri-devel@lists.freedesktop.org
1196 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
1197 S:      Supported
1198 F:      drivers/staging/android/ion
1199 F:      drivers/staging/android/uapi/ion.h
1200
1201 AOA (Apple Onboard Audio) ALSA DRIVER
1202 M:      Johannes Berg <johannes@sipsolutions.net>
1203 L:      linuxppc-dev@lists.ozlabs.org
1204 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1205 S:      Maintained
1206 F:      sound/aoa/
1207
1208 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1209 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1210 L:      linux-iio@vger.kernel.org
1211 S:      Maintained
1212 F:      drivers/iio/adc/stx104.c
1213
1214 APM DRIVER
1215 M:      Jiri Kosina <jikos@kernel.org>
1216 S:      Odd fixes
1217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1218 F:      arch/x86/kernel/apm_32.c
1219 F:      drivers/char/apm-emulation.c
1220 F:      include/linux/apm_bios.h
1221 F:      include/uapi/linux/apm_bios.h
1222
1223 APPARMOR SECURITY MODULE
1224 M:      John Johansen <john.johansen@canonical.com>
1225 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1226 S:      Supported
1227 W:      wiki.apparmor.net
1228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1229 F:      Documentation/admin-guide/LSM/apparmor.rst
1230 F:      security/apparmor/
1231
1232 APPLE BCM5974 MULTITOUCH DRIVER
1233 M:      Henrik Rydberg <rydberg@bitmath.org>
1234 L:      linux-input@vger.kernel.org
1235 S:      Odd fixes
1236 F:      drivers/input/mouse/bcm5974.c
1237
1238 APPLE SMC DRIVER
1239 M:      Henrik Rydberg <rydberg@bitmath.org>
1240 L:      linux-hwmon@vger.kernel.org
1241 S:      Odd fixes
1242 F:      drivers/hwmon/applesmc.c
1243
1244 APPLETALK NETWORK LAYER
1245 L:      netdev@vger.kernel.org
1246 S:      Odd fixes
1247 F:      drivers/net/appletalk/
1248 F:      include/linux/atalk.h
1249 F:      include/uapi/linux/atalk.h
1250 F:      net/appletalk/
1251
1252 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1253 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1254 S:      Supported
1255 F:      arch/arm64/boot/dts/apm/
1256
1257 APPLIED MICRO (APM) X-GENE SOC EDAC
1258 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1259 S:      Supported
1260 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1261 F:      drivers/edac/xgene_edac.c
1262
1263 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1264 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1265 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1266 S:      Supported
1267 F:      drivers/net/ethernet/apm/xgene-v2/
1268
1269 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1270 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1271 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1272 M:      Quan Nguyen <quan@os.amperecomputing.com>
1273 S:      Supported
1274 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1275 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1276 F:      drivers/net/ethernet/apm/xgene/
1277 F:      drivers/net/phy/mdio-xgene.c
1278
1279 APPLIED MICRO (APM) X-GENE SOC PMU
1280 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1281 S:      Supported
1282 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1283 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1284 F:      drivers/perf/xgene_pmu.c
1285
1286 APTINA CAMERA SENSOR PLL
1287 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1288 L:      linux-media@vger.kernel.org
1289 S:      Maintained
1290 F:      drivers/media/i2c/aptina-pll.*
1291
1292 AQUANTIA ETHERNET DRIVER (atlantic)
1293 M:      Igor Russkikh <irusskikh@marvell.com>
1294 L:      netdev@vger.kernel.org
1295 S:      Supported
1296 W:      https://www.marvell.com/
1297 Q:      http://patchwork.ozlabs.org/project/netdev/list/
1298 F:      Documentation/networking/device_drivers/aquantia/atlantic.rst
1299 F:      drivers/net/ethernet/aquantia/atlantic/
1300
1301 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1302 M:      Egor Pomozov <epomozov@marvell.com>
1303 L:      netdev@vger.kernel.org
1304 S:      Supported
1305 W:      http://www.aquantia.com
1306 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1307
1308 ARC FRAMEBUFFER DRIVER
1309 M:      Jaya Kumar <jayalk@intworks.biz>
1310 S:      Maintained
1311 F:      drivers/video/fbdev/arcfb.c
1312 F:      drivers/video/fbdev/core/fb_defio.c
1313
1314 ARC PGU DRM DRIVER
1315 M:      Alexey Brodkin <abrodkin@synopsys.com>
1316 S:      Supported
1317 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1318 F:      drivers/gpu/drm/arc/
1319
1320 ARCNET NETWORK LAYER
1321 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1322 L:      netdev@vger.kernel.org
1323 S:      Maintained
1324 F:      drivers/net/arcnet/
1325 F:      include/uapi/linux/if_arcnet.h
1326
1327 ARM ARCHITECTED TIMER DRIVER
1328 M:      Mark Rutland <mark.rutland@arm.com>
1329 M:      Marc Zyngier <maz@kernel.org>
1330 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1331 S:      Maintained
1332 F:      arch/arm/include/asm/arch_timer.h
1333 F:      arch/arm64/include/asm/arch_timer.h
1334 F:      drivers/clocksource/arm_arch_timer.c
1335
1336 ARM HDLCD DRM DRIVER
1337 M:      Liviu Dudau <liviu.dudau@arm.com>
1338 S:      Supported
1339 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1340 F:      drivers/gpu/drm/arm/hdlcd_*
1341
1342 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1343 M:      Linus Walleij <linus.walleij@linaro.org>
1344 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1345 S:      Maintained
1346 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1347 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1348 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1349 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1350 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1351 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1352 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1353 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1354 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1355 F:      arch/arm/boot/dts/arm-realview-*
1356 F:      arch/arm/boot/dts/integrator*
1357 F:      arch/arm/boot/dts/versatile*
1358 F:      arch/arm/mach-integrator/
1359 F:      arch/arm/mach-realview/
1360 F:      arch/arm/mach-versatile/
1361 F:      arch/arm/plat-versatile/
1362 F:      drivers/bus/arm-integrator-lm.c
1363 F:      drivers/clk/versatile/
1364 F:      drivers/i2c/busses/i2c-versatile.c
1365 F:      drivers/irqchip/irq-versatile-fpga.c
1366 F:      drivers/mtd/maps/physmap-versatile.*
1367 F:      drivers/power/reset/arm-versatile-reboot.c
1368 F:      drivers/soc/versatile/
1369
1370 ARM KOMEDA DRM-KMS DRIVER
1371 M:      James (Qian) Wang <james.qian.wang@arm.com>
1372 M:      Liviu Dudau <liviu.dudau@arm.com>
1373 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1374 L:      Mali DP Maintainers <malidp@foss.arm.com>
1375 S:      Supported
1376 T:      git git://anongit.freedesktop.org/drm/drm-misc
1377 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1378 F:      Documentation/gpu/komeda-kms.rst
1379 F:      drivers/gpu/drm/arm/display/include/
1380 F:      drivers/gpu/drm/arm/display/komeda/
1381
1382 ARM MALI PANFROST DRM DRIVER
1383 M:      Rob Herring <robh@kernel.org>
1384 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1385 R:      Steven Price <steven.price@arm.com>
1386 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1387 L:      dri-devel@lists.freedesktop.org
1388 S:      Supported
1389 T:      git git://anongit.freedesktop.org/drm/drm-misc
1390 F:      drivers/gpu/drm/panfrost/
1391 F:      include/uapi/drm/panfrost_drm.h
1392
1393 ARM MALI-DP DRM DRIVER
1394 M:      Liviu Dudau <liviu.dudau@arm.com>
1395 M:      Brian Starkey <brian.starkey@arm.com>
1396 L:      Mali DP Maintainers <malidp@foss.arm.com>
1397 S:      Supported
1398 T:      git git://anongit.freedesktop.org/drm/drm-misc
1399 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1400 F:      Documentation/gpu/afbc.rst
1401 F:      drivers/gpu/drm/arm/
1402
1403 ARM MFM AND FLOPPY DRIVERS
1404 M:      Ian Molton <spyro@f2s.com>
1405 S:      Maintained
1406 F:      arch/arm/include/asm/floppy.h
1407 F:      arch/arm/mach-rpc/floppydma.S
1408
1409 ARM PMU PROFILING AND DEBUGGING
1410 M:      Will Deacon <will@kernel.org>
1411 M:      Mark Rutland <mark.rutland@arm.com>
1412 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1413 S:      Maintained
1414 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1415 F:      Documentation/devicetree/bindings/perf/
1416 F:      arch/arm*/include/asm/hw_breakpoint.h
1417 F:      arch/arm*/include/asm/perf_event.h
1418 F:      arch/arm*/kernel/hw_breakpoint.c
1419 F:      arch/arm*/kernel/perf_*
1420 F:      arch/arm/oprofile/common.c
1421 F:      drivers/perf/*
1422 F:      include/linux/perf/arm_pmu.h
1423
1424 ARM PORT
1425 M:      Russell King <linux@armlinux.org.uk>
1426 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1427 S:      Odd Fixes
1428 W:      http://www.armlinux.org.uk/
1429 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1430 F:      arch/arm/
1431 X:      arch/arm/boot/dts/
1432
1433 ARM PRIMECELL AACI PL041 DRIVER
1434 M:      Russell King <linux@armlinux.org.uk>
1435 S:      Odd Fixes
1436 F:      sound/arm/aaci.*
1437
1438 ARM PRIMECELL BUS SUPPORT
1439 M:      Russell King <linux@armlinux.org.uk>
1440 S:      Odd Fixes
1441 F:      drivers/amba/
1442 F:      include/linux/amba/bus.h
1443
1444 ARM PRIMECELL CLCD PL110 DRIVER
1445 M:      Russell King <linux@armlinux.org.uk>
1446 S:      Odd Fixes
1447 F:      drivers/video/fbdev/amba-clcd.*
1448
1449 ARM PRIMECELL KMI PL050 DRIVER
1450 M:      Russell King <linux@armlinux.org.uk>
1451 S:      Odd Fixes
1452 F:      drivers/input/serio/ambakmi.*
1453 F:      include/linux/amba/kmi.h
1454
1455 ARM PRIMECELL MMCI PL180/1 DRIVER
1456 M:      Russell King <linux@armlinux.org.uk>
1457 S:      Odd Fixes
1458 F:      drivers/mmc/host/mmci.*
1459 F:      include/linux/amba/mmci.h
1460
1461 ARM PRIMECELL SSP PL022 SPI DRIVER
1462 M:      Linus Walleij <linus.walleij@linaro.org>
1463 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1464 S:      Maintained
1465 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1466 F:      drivers/spi/spi-pl022.c
1467
1468 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1469 M:      Russell King <linux@armlinux.org.uk>
1470 S:      Odd Fixes
1471 F:      drivers/tty/serial/amba-pl01*.c
1472 F:      include/linux/amba/serial.h
1473
1474 ARM PRIMECELL VIC PL190/PL192 DRIVER
1475 M:      Linus Walleij <linus.walleij@linaro.org>
1476 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1477 S:      Maintained
1478 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1479 F:      drivers/irqchip/irq-vic.c
1480
1481 ARM SMC WATCHDOG DRIVER
1482 M:      Julius Werner <jwerner@chromium.org>
1483 R:      Evan Benn <evanbenn@chromium.org>
1484 S:      Maintained
1485 F:      devicetree/bindings/watchdog/arm-smc-wdt.yaml
1486 F:      drivers/watchdog/arm_smc_wdt.c
1487
1488 ARM SMMU DRIVERS
1489 M:      Will Deacon <will@kernel.org>
1490 R:      Robin Murphy <robin.murphy@arm.com>
1491 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1492 S:      Maintained
1493 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1494 F:      drivers/iommu/arm-smmu*
1495 F:      drivers/iommu/io-pgtable-arm-v7s.c
1496 F:      drivers/iommu/io-pgtable-arm.c
1497
1498 ARM SUB-ARCHITECTURES
1499 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1500 S:      Maintained
1501 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1502 F:      arch/arm/mach-*/
1503 F:      arch/arm/plat-*/
1504
1505 ARM/ACTIONS SEMI ARCHITECTURE
1506 M:      Andreas Färber <afaerber@suse.de>
1507 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1508 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1509 S:      Maintained
1510 F:      Documentation/devicetree/bindings/arm/actions.yaml
1511 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1512 F:      Documentation/devicetree/bindings/dma/owl-dma.txt
1513 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1514 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1515 F:      Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
1516 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1517 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1518 F:      arch/arm/boot/dts/owl-*
1519 F:      arch/arm/mach-actions/
1520 F:      arch/arm64/boot/dts/actions/
1521 F:      drivers/clk/actions/
1522 F:      drivers/clocksource/timer-owl*
1523 F:      drivers/dma/owl-dma.c
1524 F:      drivers/i2c/busses/i2c-owl.c
1525 F:      drivers/mmc/host/owl-mmc.c
1526 F:      drivers/pinctrl/actions/*
1527 F:      drivers/soc/actions/
1528 F:      include/dt-bindings/power/owl-*
1529 F:      include/linux/soc/actions/
1530 N:      owl
1531
1532 ARM/ADS SPHERE MACHINE SUPPORT
1533 M:      Lennert Buytenhek <kernel@wantstofly.org>
1534 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1535 S:      Maintained
1536
1537 ARM/AFEB9260 MACHINE SUPPORT
1538 M:      Sergey Lapin <slapin@ossfans.org>
1539 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1540 S:      Maintained
1541
1542 ARM/AJECO 1ARM MACHINE SUPPORT
1543 M:      Lennert Buytenhek <kernel@wantstofly.org>
1544 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1545 S:      Maintained
1546
1547 ARM/Allwinner SoC Clock Support
1548 M:      Emilio López <emilio@elopez.com.ar>
1549 S:      Maintained
1550 F:      drivers/clk/sunxi/
1551
1552 ARM/Allwinner sunXi SoC support
1553 M:      Maxime Ripard <mripard@kernel.org>
1554 M:      Chen-Yu Tsai <wens@csie.org>
1555 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1556 S:      Maintained
1557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1558 F:      arch/arm/mach-sunxi/
1559 F:      arch/arm64/boot/dts/allwinner/
1560 F:      drivers/clk/sunxi-ng/
1561 F:      drivers/pinctrl/sunxi/
1562 F:      drivers/soc/sunxi/
1563 N:      sun[x456789]i
1564 N:      sun50i
1565
1566 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1567 M:      Neil Armstrong <narmstrong@baylibre.com>
1568 M:      Jerome Brunet <jbrunet@baylibre.com>
1569 L:      linux-amlogic@lists.infradead.org
1570 S:      Maintained
1571 F:      Documentation/devicetree/bindings/clock/amlogic*
1572 F:      drivers/clk/meson/
1573 F:      include/dt-bindings/clock/gxbb*
1574 F:      include/dt-bindings/clock/meson*
1575
1576 ARM/Amlogic Meson SoC Crypto Drivers
1577 M:      Corentin Labbe <clabbe@baylibre.com>
1578 L:      linux-crypto@vger.kernel.org
1579 L:      linux-amlogic@lists.infradead.org
1580 S:      Maintained
1581 F:      Documentation/devicetree/bindings/crypto/amlogic*
1582 F:      drivers/crypto/amlogic/
1583
1584 ARM/Amlogic Meson SoC Sound Drivers
1585 M:      Jerome Brunet <jbrunet@baylibre.com>
1586 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1587 S:      Maintained
1588 F:      Documentation/devicetree/bindings/sound/amlogic*
1589 F:      sound/soc/meson/
1590
1591 ARM/Amlogic Meson SoC support
1592 M:      Kevin Hilman <khilman@baylibre.com>
1593 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1594 L:      linux-amlogic@lists.infradead.org
1595 S:      Maintained
1596 W:      http://linux-meson.com/
1597 F:      arch/arm/boot/dts/meson*
1598 F:      arch/arm/mach-meson/
1599 F:      arch/arm64/boot/dts/amlogic/
1600 F:      drivers/mmc/host/meson*
1601 F:      drivers/pinctrl/meson/
1602 F:      drivers/rtc/rtc-meson*
1603 F:      drivers/soc/amlogic/
1604 N:      meson
1605
1606 ARM/Annapurna Labs ALPINE ARCHITECTURE
1607 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1608 M:      Antoine Tenart <antoine.tenart@bootlin.com>
1609 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1610 S:      Maintained
1611 F:      arch/arm/boot/dts/alpine*
1612 F:      arch/arm/mach-alpine/
1613 F:      arch/arm64/boot/dts/al/
1614 F:      drivers/*/*alpine*
1615
1616 ARM/ARTPEC MACHINE SUPPORT
1617 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1618 M:      Lars Persson <lars.persson@axis.com>
1619 L:      linux-arm-kernel@axis.com
1620 S:      Maintained
1621 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1622 F:      arch/arm/boot/dts/artpec6*
1623 F:      arch/arm/mach-artpec
1624 F:      drivers/clk/axis
1625 F:      drivers/crypto/axis
1626 F:      drivers/mmc/host/usdhi6rol0.c
1627 F:      drivers/pinctrl/pinctrl-artpec*
1628
1629 ARM/ASPEED I2C DRIVER
1630 M:      Brendan Higgins <brendanhiggins@google.com>
1631 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1632 R:      Joel Stanley <joel@jms.id.au>
1633 L:      linux-i2c@vger.kernel.org
1634 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1635 S:      Maintained
1636 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1637 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1638 F:      drivers/i2c/busses/i2c-aspeed.c
1639 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1640
1641 ARM/ASPEED MACHINE SUPPORT
1642 M:      Joel Stanley <joel@jms.id.au>
1643 R:      Andrew Jeffery <andrew@aj.id.au>
1644 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1645 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1646 S:      Supported
1647 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1649 F:      arch/arm/boot/dts/aspeed-*
1650 F:      arch/arm/mach-aspeed/
1651 N:      aspeed
1652
1653 ARM/BITMAIN ARCHITECTURE
1654 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1655 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1656 S:      Maintained
1657 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1658 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1659 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1660 F:      arch/arm64/boot/dts/bitmain/
1661 F:      drivers/clk/clk-bm1880.c
1662 F:      drivers/pinctrl/pinctrl-bm1880.c
1663
1664 ARM/CALXEDA HIGHBANK ARCHITECTURE
1665 M:      Andre Przywara <andre.przywara@arm.com>
1666 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1667 S:      Maintained
1668 F:      arch/arm/boot/dts/ecx-*.dts*
1669 F:      arch/arm/boot/dts/highbank.dts
1670 F:      arch/arm/mach-highbank/
1671
1672 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1673 M:      Krzysztof Halasa <khalasa@piap.pl>
1674 S:      Maintained
1675 F:      arch/arm/mach-cns3xxx/
1676
1677 ARM/CAVIUM THUNDER NETWORK DRIVER
1678 M:      Sunil Goutham <sgoutham@marvell.com>
1679 M:      Robert Richter <rrichter@marvell.com>
1680 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1681 S:      Supported
1682 F:      drivers/net/ethernet/cavium/thunder/
1683
1684 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1685 M:      Lukasz Majewski <lukma@denx.de>
1686 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1687 S:      Maintained
1688 F:      arch/arm/mach-ep93xx/ts72xx.c
1689
1690 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1691 M:      Alexander Shiyan <shc_work@mail.ru>
1692 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1693 S:      Odd Fixes
1694 N:      clps711x
1695
1696 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1697 M:      Lennert Buytenhek <kernel@wantstofly.org>
1698 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1699 S:      Maintained
1700
1701 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1702 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1703 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1704 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1705 S:      Maintained
1706 F:      arch/arm/mach-ep93xx/
1707 F:      arch/arm/mach-ep93xx/include/mach/
1708
1709 ARM/CLKDEV SUPPORT
1710 M:      Russell King <linux@armlinux.org.uk>
1711 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1712 S:      Maintained
1713 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1714 F:      drivers/clk/clkdev.c
1715
1716 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1717 M:      Baruch Siach <baruch@tkos.co.il>
1718 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1719 S:      Maintained
1720 F:      arch/arm/boot/dts/cx92755*
1721 N:      digicolor
1722
1723 ARM/CONTEC MICRO9 MACHINE SUPPORT
1724 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1725 S:      Maintained
1726 F:      arch/arm/mach-ep93xx/micro9.c
1727
1728 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1729 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1730 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
1731 R:      Mike Leach <mike.leach@linaro.org>
1732 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1733 S:      Maintained
1734 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1735 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1736 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1737 F:      Documentation/devicetree/bindings/arm/coresight.txt
1738 F:      Documentation/trace/coresight/*
1739 F:      drivers/hwtracing/coresight/*
1740 F:      include/dt-bindings/arm/coresight-cti-dt.h
1741 F:      tools/perf/arch/arm/util/auxtrace.c
1742 F:      tools/perf/arch/arm/util/cs-etm.c
1743 F:      tools/perf/arch/arm/util/cs-etm.h
1744 F:      tools/perf/arch/arm/util/pmu.c
1745 F:      tools/perf/util/cs-etm-decoder/*
1746 F:      tools/perf/util/cs-etm.*
1747
1748 ARM/CORGI MACHINE SUPPORT
1749 M:      Richard Purdie <rpurdie@rpsys.net>
1750 S:      Maintained
1751
1752 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1753 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1754 M:      Linus Walleij <linus.walleij@linaro.org>
1755 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1756 S:      Maintained
1757 T:      git git://github.com/ulli-kroll/linux.git
1758 F:      Documentation/devicetree/bindings/arm/gemini.txt
1759 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1760 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1761 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1762 F:      arch/arm/mach-gemini/
1763 F:      drivers/net/ethernet/cortina/
1764 F:      drivers/pinctrl/pinctrl-gemini.c
1765 F:      drivers/rtc/rtc-ftrtc010.c
1766
1767 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1768 M:      Barry Song <baohua@kernel.org>
1769 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1770 S:      Maintained
1771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1772 F:      arch/arm/boot/dts/prima2*
1773 F:      arch/arm/mach-prima2/
1774 F:      drivers/clk/sirf/
1775 F:      drivers/clocksource/timer-atlas7.c
1776 F:      drivers/clocksource/timer-prima2.c
1777 X:      drivers/gnss
1778 N:      [^a-z]sirf
1779
1780 ARM/CZ.NIC TURRIS MOX SUPPORT
1781 M:      Marek Behun <marek.behun@nic.cz>
1782 S:      Maintained
1783 W:      http://mox.turris.cz
1784 F:      Documentation/ABI/testing/debugfs-moxtet
1785 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1786 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1787 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1788 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1789 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1790 F:      drivers/bus/moxtet.c
1791 F:      drivers/firmware/turris-mox-rwtm.c
1792 F:      drivers/gpio/gpio-moxtet.c
1793 F:      include/linux/moxtet.h
1794
1795 ARM/EBSA110 MACHINE SUPPORT
1796 M:      Russell King <linux@armlinux.org.uk>
1797 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1798 S:      Maintained
1799 W:      http://www.armlinux.org.uk/
1800 F:      arch/arm/mach-ebsa110/
1801 F:      drivers/net/ethernet/amd/am79c961a.*
1802
1803 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1804 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1805 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1806 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1807 S:      Maintained
1808 N:      efm32
1809
1810 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1811 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1812 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1813 S:      Maintained
1814 F:      arch/arm/mach-pxa/ezx.c
1815
1816 ARM/FARADAY FA526 PORT
1817 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1818 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1819 S:      Maintained
1820 T:      git git://git.berlios.de/gemini-board
1821 F:      arch/arm/mm/*-fa*
1822
1823 ARM/FOOTBRIDGE ARCHITECTURE
1824 M:      Russell King <linux@armlinux.org.uk>
1825 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1826 S:      Maintained
1827 W:      http://www.armlinux.org.uk/
1828 F:      arch/arm/include/asm/hardware/dec21285.h
1829 F:      arch/arm/mach-footbridge/
1830
1831 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1832 M:      Shawn Guo <shawnguo@kernel.org>
1833 M:      Sascha Hauer <s.hauer@pengutronix.de>
1834 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1835 R:      Fabio Estevam <festevam@gmail.com>
1836 R:      NXP Linux Team <linux-imx@nxp.com>
1837 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1838 S:      Maintained
1839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1840 X:      drivers/media/i2c/
1841 N:      imx
1842 N:      mxs
1843
1844 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1845 M:      Shawn Guo <shawnguo@kernel.org>
1846 M:      Li Yang <leoyang.li@nxp.com>
1847 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1848 S:      Maintained
1849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1850 F:      arch/arm/boot/dts/ls1021a*
1851 F:      arch/arm64/boot/dts/freescale/fsl-*
1852 F:      arch/arm64/boot/dts/freescale/qoriq-*
1853
1854 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1855 M:      Shawn Guo <shawnguo@kernel.org>
1856 M:      Sascha Hauer <s.hauer@pengutronix.de>
1857 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1858 R:      Stefan Agner <stefan@agner.ch>
1859 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1860 S:      Maintained
1861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1862 F:      arch/arm/boot/dts/vf*
1863 F:      arch/arm/mach-imx/*vf610*
1864
1865 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1866 M:      Lennert Buytenhek <kernel@wantstofly.org>
1867 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1868 S:      Maintained
1869
1870 ARM/GUMSTIX MACHINE SUPPORT
1871 M:      Steve Sakoman <sakoman@gmail.com>
1872 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1873 S:      Maintained
1874
1875 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1876 M:      Philipp Zabel <philipp.zabel@gmail.com>
1877 M:      Paul Parsons <lost.distance@yahoo.com>
1878 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1879 S:      Maintained
1880 F:      arch/arm/mach-pxa/hx4700.c
1881 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1882 F:      sound/soc/pxa/hx4700.c
1883
1884 ARM/HISILICON SOC SUPPORT
1885 M:      Wei Xu <xuwei5@hisilicon.com>
1886 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1887 S:      Supported
1888 W:      http://www.hisilicon.com
1889 T:      git git://github.com/hisilicon/linux-hisi.git
1890 F:      arch/arm/boot/dts/hi3*
1891 F:      arch/arm/boot/dts/hip*
1892 F:      arch/arm/boot/dts/hisi*
1893 F:      arch/arm/mach-hisi/
1894 F:      arch/arm64/boot/dts/hisilicon/
1895
1896 ARM/HP JORNADA 7XX MACHINE SUPPORT
1897 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1898 S:      Maintained
1899 W:      www.jlime.com
1900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1901 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1902 F:      arch/arm/mach-sa1100/jornada720.c
1903
1904 ARM/IGEP MACHINE SUPPORT
1905 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1906 M:      Javier Martinez Canillas <javier@dowhile0.org>
1907 L:      linux-omap@vger.kernel.org
1908 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1909 S:      Maintained
1910 F:      arch/arm/boot/dts/omap3-igep*
1911
1912 ARM/INCOME PXA270 SUPPORT
1913 M:      Marek Vasut <marek.vasut@gmail.com>
1914 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1915 S:      Maintained
1916 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1917
1918 ARM/INTEL IOP32X ARM ARCHITECTURE
1919 M:      Lennert Buytenhek <kernel@wantstofly.org>
1920 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1921 S:      Maintained
1922
1923 ARM/INTEL IQ81342EX MACHINE SUPPORT
1924 M:      Lennert Buytenhek <kernel@wantstofly.org>
1925 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1926 S:      Maintained
1927
1928 ARM/INTEL IXDP2850 MACHINE SUPPORT
1929 M:      Lennert Buytenhek <kernel@wantstofly.org>
1930 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1931 S:      Maintained
1932
1933 ARM/INTEL IXP4XX ARM ARCHITECTURE
1934 M:      Linus Walleij <linusw@kernel.org>
1935 M:      Imre Kaloz <kaloz@openwrt.org>
1936 M:      Krzysztof Halasa <khalasa@piap.pl>
1937 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1938 S:      Maintained
1939 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1940 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1941 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1942 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1943 F:      arch/arm/mach-ixp4xx/
1944 F:      drivers/clocksource/timer-ixp4xx.c
1945 F:      drivers/gpio/gpio-ixp4xx.c
1946 F:      drivers/irqchip/irq-ixp4xx.c
1947 F:      include/linux/irqchip/irq-ixp4xx.h
1948 F:      include/linux/platform_data/timer-ixp4xx.h
1949
1950 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1951 M:      Jonathan Cameron <jic23@cam.ac.uk>
1952 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1953 S:      Maintained
1954 F:      arch/arm/mach-pxa/stargate2.c
1955 F:      drivers/pcmcia/pxa2xx_stargate2.c
1956
1957 ARM/INTEL XSC3 (MANZANO) ARM CORE
1958 M:      Lennert Buytenhek <kernel@wantstofly.org>
1959 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1960 S:      Maintained
1961
1962 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1963 M:      Lennert Buytenhek <kernel@wantstofly.org>
1964 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1965 S:      Maintained
1966
1967 ARM/LG1K ARCHITECTURE
1968 M:      Chanho Min <chanho.min@lge.com>
1969 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1970 S:      Maintained
1971 F:      arch/arm64/boot/dts/lg/
1972
1973 ARM/LOGICPD PXA270 MACHINE SUPPORT
1974 M:      Lennert Buytenhek <kernel@wantstofly.org>
1975 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1976 S:      Maintained
1977
1978 ARM/LPC18XX ARCHITECTURE
1979 M:      Vladimir Zapolskiy <vz@mleia.com>
1980 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1981 S:      Maintained
1982 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1983 F:      arch/arm/boot/dts/lpc43*
1984 F:      drivers/i2c/busses/i2c-lpc2k.c
1985 F:      drivers/memory/pl172.c
1986 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
1987 F:      drivers/rtc/rtc-lpc24xx.c
1988 N:      lpc18xx
1989
1990 ARM/LPC32XX SOC SUPPORT
1991 M:      Vladimir Zapolskiy <vz@mleia.com>
1992 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
1993 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1994 S:      Maintained
1995 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1996 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
1997 F:      arch/arm/boot/dts/lpc32*
1998 F:      arch/arm/mach-lpc32xx/
1999 F:      drivers/i2c/busses/i2c-pnx.c
2000 F:      drivers/net/ethernet/nxp/lpc_eth.c
2001 F:      drivers/usb/host/ohci-nxp.c
2002 F:      drivers/watchdog/pnx4008_wdt.c
2003 N:      lpc32xx
2004
2005 ARM/MAGICIAN MACHINE SUPPORT
2006 M:      Philipp Zabel <philipp.zabel@gmail.com>
2007 S:      Maintained
2008
2009 ARM/Marvell Dove/MV78xx0/Orion SOC support
2010 M:      Jason Cooper <jason@lakedaemon.net>
2011 M:      Andrew Lunn <andrew@lunn.ch>
2012 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2013 M:      Gregory Clement <gregory.clement@bootlin.com>
2014 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2015 S:      Maintained
2016 T:      git git://git.infradead.org/linux-mvebu.git
2017 F:      Documentation/devicetree/bindings/soc/dove/
2018 F:      arch/arm/boot/dts/dove*
2019 F:      arch/arm/boot/dts/orion5x*
2020 F:      arch/arm/mach-dove/
2021 F:      arch/arm/mach-mv78xx0/
2022 F:      arch/arm/mach-orion5x/
2023 F:      arch/arm/plat-orion/
2024 F:      drivers/soc/dove/
2025
2026 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2027 M:      Jason Cooper <jason@lakedaemon.net>
2028 M:      Andrew Lunn <andrew@lunn.ch>
2029 M:      Gregory Clement <gregory.clement@bootlin.com>
2030 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2031 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2032 S:      Maintained
2033 T:      git git://git.infradead.org/linux-mvebu.git
2034 F:      arch/arm/boot/dts/armada*
2035 F:      arch/arm/boot/dts/kirkwood*
2036 F:      arch/arm/configs/mvebu_*_defconfig
2037 F:      arch/arm/mach-mvebu/
2038 F:      arch/arm64/boot/dts/marvell/armada*
2039 F:      arch/arm64/boot/dts/marvell/cn913*
2040 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2041 F:      drivers/cpufreq/armada-8k-cpufreq.c
2042 F:      drivers/cpufreq/mvebu-cpufreq.c
2043 F:      drivers/irqchip/irq-armada-370-xp.c
2044 F:      drivers/irqchip/irq-mvebu-*
2045 F:      drivers/pinctrl/mvebu/
2046 F:      drivers/rtc/rtc-armada38x.c
2047
2048 ARM/Mediatek RTC DRIVER
2049 M:      Eddie Huang <eddie.huang@mediatek.com>
2050 M:      Sean Wang <sean.wang@mediatek.com>
2051 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2052 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2053 S:      Maintained
2054 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2055 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2056 F:      drivers/rtc/rtc-mt2712.c
2057 F:      drivers/rtc/rtc-mt6397.c
2058 F:      drivers/rtc/rtc-mt7622.c
2059
2060 ARM/Mediatek SoC support
2061 M:      Matthias Brugger <matthias.bgg@gmail.com>
2062 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2063 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2064 S:      Maintained
2065 W:      https://mtk.bcnfs.org/
2066 C:      irc://chat.freenode.net/linux-mediatek
2067 F:      arch/arm/boot/dts/mt6*
2068 F:      arch/arm/boot/dts/mt7*
2069 F:      arch/arm/boot/dts/mt8*
2070 F:      arch/arm/mach-mediatek/
2071 F:      arch/arm64/boot/dts/mediatek/
2072 F:      drivers/soc/mediatek/
2073 N:      mtk
2074 N:      mt[678]
2075 K:      mediatek
2076
2077 ARM/Mediatek USB3 PHY DRIVER
2078 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2079 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2080 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2081 S:      Maintained
2082 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
2083 F:      drivers/phy/mediatek/
2084
2085 ARM/Microchip (AT91) SoC support
2086 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2087 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2088 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2090 S:      Supported
2091 W:      http://www.linux4sam.org
2092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2093 F:      arch/arm/boot/dts/at91*.dts
2094 F:      arch/arm/boot/dts/at91*.dtsi
2095 F:      arch/arm/boot/dts/sama*.dts
2096 F:      arch/arm/boot/dts/sama*.dtsi
2097 F:      arch/arm/include/debug/at91.S
2098 F:      arch/arm/mach-at91/
2099 F:      drivers/memory/atmel*
2100 F:      drivers/watchdog/sama5d4_wdt.c
2101 F:      include/soc/at91/
2102 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2103 X:      drivers/net/wireless/atmel/
2104 N:      at91
2105 N:      atmel
2106
2107 ARM/MIOA701 MACHINE SUPPORT
2108 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2109 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2110 S:      Maintained
2111 F:      arch/arm/mach-pxa/mioa701.c
2112
2113 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2114 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2115 S:      Maintained
2116
2117 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2118 M:      Linus Walleij <linus.walleij@linaro.org>
2119 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2120 S:      Maintained
2121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2122 F:      Documentation/devicetree/bindings/arm/ste-*
2123 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2124 F:      Documentation/devicetree/bindings/arm/ux500/
2125 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2126 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2127 F:      arch/arm/boot/dts/ste-*
2128 F:      arch/arm/mach-nomadik/
2129 F:      arch/arm/mach-u300/
2130 F:      arch/arm/mach-ux500/
2131 F:      drivers/clk/clk-nomadik.c
2132 F:      drivers/clk/clk-u300.c
2133 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2134 F:      drivers/clocksource/timer-u300.c
2135 F:      drivers/dma/coh901318*
2136 F:      drivers/dma/ste_dma40*
2137 F:      drivers/hwspinlock/u8500_hsem.c
2138 F:      drivers/i2c/busses/i2c-nomadik.c
2139 F:      drivers/i2c/busses/i2c-stu300.c
2140 F:      drivers/iio/adc/ab8500-gpadc.c
2141 F:      drivers/mfd/ab3100*
2142 F:      drivers/mfd/ab8500*
2143 F:      drivers/mfd/abx500*
2144 F:      drivers/mfd/db8500*
2145 F:      drivers/mfd/dbx500*
2146 F:      drivers/pinctrl/nomadik/
2147 F:      drivers/pinctrl/pinctrl-coh901*
2148 F:      drivers/pinctrl/pinctrl-u300.c
2149 F:      drivers/rtc/rtc-ab3100.c
2150 F:      drivers/rtc/rtc-ab8500.c
2151 F:      drivers/rtc/rtc-coh901331.c
2152 F:      drivers/rtc/rtc-pl031.c
2153 F:      drivers/soc/ux500/
2154 F:      drivers/watchdog/coh901327_wdt.c
2155
2156 ARM/NUVOTON NPCM ARCHITECTURE
2157 M:      Avi Fishman <avifishman70@gmail.com>
2158 M:      Tomer Maimon <tmaimon77@gmail.com>
2159 M:      Tali Perry <tali.perry1@gmail.com>
2160 R:      Patrick Venture <venture@google.com>
2161 R:      Nancy Yuen <yuenn@google.com>
2162 R:      Benjamin Fair <benjaminfair@google.com>
2163 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2164 S:      Supported
2165 F:      Documentation/devicetree/bindings/*/*/*npcm*
2166 F:      Documentation/devicetree/bindings/*/*npcm*
2167 F:      arch/arm/boot/dts/nuvoton-npcm*
2168 F:      arch/arm/mach-npcm/
2169 F:      drivers/*/*npcm*
2170 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2171
2172 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2173 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2174 S:      Orphan
2175 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2176 F:      arch/arm/mach-s3c24xx/gta02.h
2177 F:      arch/arm/mach-s3c24xx/mach-gta02.c
2178
2179 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2180 M:      Alexander Clouter <alex@digriz.org.uk>
2181 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2182 S:      Maintained
2183 W:      http://www.digriz.org.uk/ts78xx/kernel
2184 F:      arch/arm/mach-orion5x/ts78xx-*
2185
2186 ARM/OXNAS platform support
2187 M:      Neil Armstrong <narmstrong@baylibre.com>
2188 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2189 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2190 S:      Maintained
2191 F:      arch/arm/boot/dts/ox8*.dts*
2192 F:      arch/arm/mach-oxnas/
2193 N:      oxnas
2194
2195 ARM/PALM TREO SUPPORT
2196 M:      Tomas Cech <sleep_walker@suse.com>
2197 L:      linux-arm-kernel@lists.infradead.org
2198 S:      Maintained
2199 W:      http://hackndev.com
2200 F:      arch/arm/mach-pxa/palmtreo.*
2201
2202 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2203 M:      Marek Vasut <marek.vasut@gmail.com>
2204 L:      linux-arm-kernel@lists.infradead.org
2205 S:      Maintained
2206 W:      http://hackndev.com
2207 F:      arch/arm/mach-pxa/include/mach/palmld.h
2208 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2209 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2210 F:      arch/arm/mach-pxa/palmld.c
2211 F:      arch/arm/mach-pxa/palmt5.*
2212 F:      arch/arm/mach-pxa/palmtc.c
2213 F:      arch/arm/mach-pxa/palmte2.*
2214 F:      arch/arm/mach-pxa/palmtx.c
2215
2216 ARM/PALMZ72 SUPPORT
2217 M:      Sergey Lapin <slapin@ossfans.org>
2218 L:      linux-arm-kernel@lists.infradead.org
2219 S:      Maintained
2220 W:      http://hackndev.com
2221 F:      arch/arm/mach-pxa/palmz72.*
2222
2223 ARM/PLEB SUPPORT
2224 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2225 S:      Maintained
2226 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2227
2228 ARM/PT DIGITAL BOARD PORT
2229 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2230 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2231 S:      Maintained
2232 W:      http://www.armlinux.org.uk/
2233
2234 ARM/QUALCOMM SUPPORT
2235 M:      Andy Gross <agross@kernel.org>
2236 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2237 L:      linux-arm-msm@vger.kernel.org
2238 S:      Maintained
2239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2240 F:      Documentation/devicetree/bindings/*/qcom*
2241 F:      Documentation/devicetree/bindings/soc/qcom/
2242 F:      arch/arm/boot/dts/qcom-*.dts
2243 F:      arch/arm/boot/dts/qcom-*.dtsi
2244 F:      arch/arm/mach-qcom/
2245 F:      arch/arm64/boot/dts/qcom/
2246 F:      drivers/*/*/qcom*
2247 F:      drivers/*/*/qcom/
2248 F:      drivers/*/pm8???-*
2249 F:      drivers/*/qcom*
2250 F:      drivers/*/qcom/
2251 F:      drivers/bluetooth/btqcomsmd.c
2252 F:      drivers/clocksource/timer-qcom.c
2253 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2254 F:      drivers/extcon/extcon-qcom*
2255 F:      drivers/i2c/busses/i2c-qcom-geni.c
2256 F:      drivers/i2c/busses/i2c-qup.c
2257 F:      drivers/iommu/msm*
2258 F:      drivers/mfd/ssbi.c
2259 F:      drivers/mmc/host/mmci_qcom*
2260 F:      drivers/mmc/host/sdhci-msm.c
2261 F:      drivers/pci/controller/dwc/pcie-qcom.c
2262 F:      drivers/phy/qualcomm/
2263 F:      drivers/power/*/msm*
2264 F:      drivers/reset/reset-qcom-*
2265 F:      drivers/scsi/ufs/ufs-qcom.*
2266 F:      drivers/spi/spi-geni-qcom.c
2267 F:      drivers/spi/spi-qcom-qspi.c
2268 F:      drivers/spi/spi-qup.c
2269 F:      drivers/tty/serial/msm_serial.c
2270 F:      drivers/usb/dwc3/dwc3-qcom.c
2271 F:      include/dt-bindings/*/qcom*
2272 F:      include/linux/*/qcom*
2273
2274 ARM/RADISYS ENP2611 MACHINE SUPPORT
2275 M:      Lennert Buytenhek <kernel@wantstofly.org>
2276 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2277 S:      Maintained
2278
2279 ARM/RDA MICRO ARCHITECTURE
2280 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2281 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2282 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2283 S:      Maintained
2284 F:      Documentation/devicetree/bindings/arm/rda.yaml
2285 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2286 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2287 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2288 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2289 F:      arch/arm/boot/dts/rda8810pl-*
2290 F:      drivers/clocksource/timer-rda.c
2291 F:      drivers/gpio/gpio-rda.c
2292 F:      drivers/irqchip/irq-rda-intc.c
2293 F:      drivers/tty/serial/rda-uart.c
2294
2295 ARM/REALTEK ARCHITECTURE
2296 M:      Andreas Färber <afaerber@suse.de>
2297 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2298 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2299 S:      Maintained
2300 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2301 F:      arch/arm/boot/dts/rtd*
2302 F:      arch/arm/mach-realtek/
2303 F:      arch/arm64/boot/dts/realtek/
2304
2305 ARM/RENESAS ARM64 ARCHITECTURE
2306 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2307 M:      Magnus Damm <magnus.damm@gmail.com>
2308 L:      linux-renesas-soc@vger.kernel.org
2309 S:      Supported
2310 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2312 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2313 F:      arch/arm64/boot/dts/renesas/
2314 F:      drivers/soc/renesas/
2315 F:      include/linux/soc/renesas/
2316
2317 ARM/RISCPC ARCHITECTURE
2318 M:      Russell King <linux@armlinux.org.uk>
2319 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2320 S:      Maintained
2321 W:      http://www.armlinux.org.uk/
2322 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2323 F:      arch/arm/include/asm/hardware/ioc.h
2324 F:      arch/arm/include/asm/hardware/iomd.h
2325 F:      arch/arm/include/asm/hardware/memc.h
2326 F:      arch/arm/mach-rpc/
2327 F:      drivers/net/ethernet/8390/etherh.c
2328 F:      drivers/net/ethernet/i825xx/ether1*
2329 F:      drivers/net/ethernet/seeq/ether3*
2330 F:      drivers/scsi/arm/
2331
2332 ARM/Rockchip SoC support
2333 M:      Heiko Stuebner <heiko@sntech.de>
2334 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2335 L:      linux-rockchip@lists.infradead.org
2336 S:      Maintained
2337 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2338 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2339 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2340 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2341 F:      arch/arm/boot/dts/rk3*
2342 F:      arch/arm/boot/dts/rv1108*
2343 F:      arch/arm/mach-rockchip/
2344 F:      drivers/*/*/*rockchip*
2345 F:      drivers/*/*rockchip*
2346 F:      drivers/clk/rockchip/
2347 F:      drivers/i2c/busses/i2c-rk3x.c
2348 F:      sound/soc/rockchip/
2349 N:      rockchip
2350
2351 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2352 M:      Kukjin Kim <kgene@kernel.org>
2353 M:      Krzysztof Kozlowski <krzk@kernel.org>
2354 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2355 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2356 S:      Maintained
2357 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2358 F:      Documentation/arm/samsung/
2359 F:      Documentation/devicetree/bindings/arm/samsung/
2360 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2361 F:      arch/arm/boot/dts/exynos*
2362 F:      arch/arm/boot/dts/s3c*
2363 F:      arch/arm/boot/dts/s5p*
2364 F:      arch/arm/mach-exynos*/
2365 F:      arch/arm/mach-s3c24*/
2366 F:      arch/arm/mach-s3c64xx/
2367 F:      arch/arm/mach-s5p*/
2368 F:      arch/arm/plat-samsung/
2369 F:      arch/arm64/boot/dts/exynos/
2370 F:      drivers/*/*/*s3c24*
2371 F:      drivers/*/*s3c24*
2372 F:      drivers/*/*s3c64xx*
2373 F:      drivers/*/*s5pv210*
2374 F:      drivers/memory/samsung/
2375 F:      drivers/soc/samsung/
2376 F:      drivers/tty/serial/samsung*
2377 F:      include/linux/soc/samsung/
2378 N:      exynos
2379
2380 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2381 M:      Kyungmin Park <kyungmin.park@samsung.com>
2382 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2383 S:      Maintained
2384 F:      arch/arm/mach-s5pv210/
2385
2386 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2387 M:      Kyungmin Park <kyungmin.park@samsung.com>
2388 M:      Kamil Debski <kamil@wypas.org>
2389 M:      Andrzej Hajda <a.hajda@samsung.com>
2390 L:      linux-arm-kernel@lists.infradead.org
2391 L:      linux-media@vger.kernel.org
2392 S:      Maintained
2393 F:      drivers/media/platform/s5p-g2d/
2394
2395 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2396 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2397 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2398 L:      linux-media@vger.kernel.org
2399 S:      Maintained
2400 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2401 F:      drivers/media/platform/s5p-cec/
2402
2403 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2404 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2405 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2406 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2407 L:      linux-arm-kernel@lists.infradead.org
2408 L:      linux-media@vger.kernel.org
2409 S:      Maintained
2410 F:      drivers/media/platform/s5p-jpeg/
2411
2412 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2413 M:      Kyungmin Park <kyungmin.park@samsung.com>
2414 M:      Kamil Debski <kamil@wypas.org>
2415 M:      Jeongtae Park <jtp.park@samsung.com>
2416 M:      Andrzej Hajda <a.hajda@samsung.com>
2417 L:      linux-arm-kernel@lists.infradead.org
2418 L:      linux-media@vger.kernel.org
2419 S:      Maintained
2420 F:      drivers/media/platform/s5p-mfc/
2421
2422 ARM/SHMOBILE ARM ARCHITECTURE
2423 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2424 M:      Magnus Damm <magnus.damm@gmail.com>
2425 L:      linux-renesas-soc@vger.kernel.org
2426 S:      Supported
2427 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2429 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2430 F:      arch/arm/boot/dts/emev2*
2431 F:      arch/arm/boot/dts/gr-peach*
2432 F:      arch/arm/boot/dts/iwg20d-q7*
2433 F:      arch/arm/boot/dts/r7s*
2434 F:      arch/arm/boot/dts/r8a*
2435 F:      arch/arm/boot/dts/r9a*
2436 F:      arch/arm/boot/dts/sh*
2437 F:      arch/arm/configs/shmobile_defconfig
2438 F:      arch/arm/include/debug/renesas-scif.S
2439 F:      arch/arm/mach-shmobile/
2440 F:      drivers/soc/renesas/
2441 F:      include/linux/soc/renesas/
2442
2443 ARM/SOCFPGA ARCHITECTURE
2444 M:      Dinh Nguyen <dinguyen@kernel.org>
2445 S:      Maintained
2446 W:      http://www.rocketboards.org
2447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2448 F:      arch/arm/boot/dts/socfpga*
2449 F:      arch/arm/configs/socfpga_defconfig
2450 F:      arch/arm/mach-socfpga/
2451 F:      arch/arm64/boot/dts/altera/
2452 F:      arch/arm64/boot/dts/intel/
2453
2454 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2455 M:      Dinh Nguyen <dinguyen@kernel.org>
2456 S:      Maintained
2457 F:      drivers/clk/socfpga/
2458
2459 ARM/SOCFPGA EDAC SUPPORT
2460 M:      Thor Thayer <thor.thayer@linux.intel.com>
2461 S:      Maintained
2462 F:      drivers/edac/altera_edac.
2463
2464 ARM/SPREADTRUM SoC SUPPORT
2465 M:      Orson Zhai <orsonzhai@gmail.com>
2466 M:      Baolin Wang <baolin.wang7@gmail.com>
2467 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2468 S:      Maintained
2469 F:      arch/arm64/boot/dts/sprd
2470 N:      sprd
2471 N:      sc27xx
2472 N:      sc2731
2473
2474 ARM/STI ARCHITECTURE
2475 M:      Patrice Chotard <patrice.chotard@st.com>
2476 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2477 S:      Maintained
2478 W:      http://www.stlinux.com
2479 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2480 F:      arch/arm/boot/dts/sti*
2481 F:      arch/arm/mach-sti/
2482 F:      drivers/ata/ahci_st.c
2483 F:      drivers/char/hw_random/st-rng.c
2484 F:      drivers/clocksource/arm_global_timer.c
2485 F:      drivers/clocksource/clksrc_st_lpc.c
2486 F:      drivers/cpufreq/sti-cpufreq.c
2487 F:      drivers/dma/st_fdma*
2488 F:      drivers/i2c/busses/i2c-st.c
2489 F:      drivers/media/platform/sti/c8sectpfe/
2490 F:      drivers/media/rc/st_rc.c
2491 F:      drivers/mmc/host/sdhci-st.c
2492 F:      drivers/phy/st/phy-miphy28lp.c
2493 F:      drivers/phy/st/phy-stih407-usb.c
2494 F:      drivers/pinctrl/pinctrl-st.c
2495 F:      drivers/remoteproc/st_remoteproc.c
2496 F:      drivers/remoteproc/st_slim_rproc.c
2497 F:      drivers/reset/sti/
2498 F:      drivers/rtc/rtc-st-lpc.c
2499 F:      drivers/tty/serial/st-asc.c
2500 F:      drivers/usb/dwc3/dwc3-st.c
2501 F:      drivers/usb/host/ehci-st.c
2502 F:      drivers/usb/host/ohci-st.c
2503 F:      drivers/watchdog/st_lpc_wdt.c
2504 F:      include/linux/remoteproc/st_slim_rproc.h
2505
2506 ARM/STM32 ARCHITECTURE
2507 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2508 M:      Alexandre Torgue <alexandre.torgue@st.com>
2509 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2510 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2511 S:      Maintained
2512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2513 F:      arch/arm/boot/dts/stm32*
2514 F:      arch/arm/mach-stm32/
2515 F:      drivers/clocksource/armv7m_systick.c
2516 N:      stm32
2517 N:      stm
2518
2519 ARM/Synaptics SoC support
2520 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2521 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2522 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2523 S:      Maintained
2524 F:      arch/arm/boot/dts/berlin*
2525 F:      arch/arm/mach-berlin/
2526 F:      arch/arm64/boot/dts/synaptics/
2527
2528 ARM/TANGO ARCHITECTURE
2529 M:      Marc Gonzalez <marc.w.gonzalez@free.fr>
2530 M:      Mans Rullgard <mans@mansr.com>
2531 L:      linux-arm-kernel@lists.infradead.org
2532 S:      Odd Fixes
2533 N:      tango
2534
2535 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2536 M:      Lennert Buytenhek <kernel@wantstofly.org>
2537 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2538 S:      Maintained
2539
2540 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2541 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2542 L:      linux-tegra@vger.kernel.org
2543 L:      linux-media@vger.kernel.org
2544 S:      Maintained
2545 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2546 F:      drivers/media/platform/tegra-cec/
2547
2548 ARM/TETON BGA MACHINE SUPPORT
2549 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2550 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2551 S:      Maintained
2552
2553 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2554 M:      Santosh Shilimkar <ssantosh@kernel.org>
2555 L:      linux-kernel@vger.kernel.org
2556 S:      Maintained
2557 F:      drivers/memory/*emif*
2558
2559 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2560 M:      Santosh Shilimkar <ssantosh@kernel.org>
2561 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2562 S:      Maintained
2563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2564 F:      arch/arm/boot/dts/keystone-*
2565 F:      arch/arm/mach-keystone/
2566
2567 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2568 M:      Santosh Shilimkar <ssantosh@kernel.org>
2569 L:      linux-kernel@vger.kernel.org
2570 S:      Maintained
2571 F:      drivers/clk/keystone/
2572
2573 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2574 M:      Santosh Shilimkar <ssantosh@kernel.org>
2575 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2576 L:      linux-kernel@vger.kernel.org
2577 S:      Maintained
2578 F:      drivers/clocksource/timer-keystone.c
2579
2580 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2581 M:      Santosh Shilimkar <ssantosh@kernel.org>
2582 L:      linux-kernel@vger.kernel.org
2583 S:      Maintained
2584 F:      drivers/power/reset/keystone-reset.c
2585
2586 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2587 M:      Tero Kristo <t-kristo@ti.com>
2588 M:      Nishanth Menon <nm@ti.com>
2589 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2590 S:      Supported
2591 F:      Documentation/devicetree/bindings/arm/ti/k3.txt
2592 F:      arch/arm64/boot/dts/ti/Makefile
2593 F:      arch/arm64/boot/dts/ti/k3-*
2594 F:      include/dt-bindings/pinctrl/k3.h
2595
2596 ARM/THECUS N2100 MACHINE SUPPORT
2597 M:      Lennert Buytenhek <kernel@wantstofly.org>
2598 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2599 S:      Maintained
2600
2601 ARM/TOSA MACHINE SUPPORT
2602 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2603 M:      Dirk Opfer <dirk@opfer-online.de>
2604 S:      Maintained
2605
2606 ARM/UNIPHIER ARCHITECTURE
2607 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
2608 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2609 S:      Maintained
2610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2611 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2612 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2613 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2614 F:      arch/arm/boot/dts/uniphier*
2615 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2616 F:      arch/arm/mach-uniphier/
2617 F:      arch/arm/mm/cache-uniphier.c
2618 F:      arch/arm64/boot/dts/socionext/uniphier*
2619 F:      drivers/bus/uniphier-system-bus.c
2620 F:      drivers/clk/uniphier/
2621 F:      drivers/dma/uniphier-mdmac.c
2622 F:      drivers/gpio/gpio-uniphier.c
2623 F:      drivers/i2c/busses/i2c-uniphier*
2624 F:      drivers/irqchip/irq-uniphier-aidet.c
2625 F:      drivers/mmc/host/uniphier-sd.c
2626 F:      drivers/pinctrl/uniphier/
2627 F:      drivers/reset/reset-uniphier.c
2628 F:      drivers/tty/serial/8250/8250_uniphier.c
2629 N:      uniphier
2630
2631 ARM/VERSATILE EXPRESS PLATFORM
2632 M:      Liviu Dudau <liviu.dudau@arm.com>
2633 M:      Sudeep Holla <sudeep.holla@arm.com>
2634 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2635 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2636 S:      Maintained
2637 F:      */*/*/vexpress*
2638 F:      */*/vexpress*
2639 F:      arch/arm/boot/dts/vexpress*
2640 F:      arch/arm/mach-vexpress/
2641 F:      arch/arm64/boot/dts/arm/
2642 F:      drivers/clk/versatile/clk-vexpress-osc.c
2643 F:      drivers/clocksource/timer-versatile.c
2644 N:      mps2
2645
2646 ARM/VFP SUPPORT
2647 M:      Russell King <linux@armlinux.org.uk>
2648 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2649 S:      Maintained
2650 W:      http://www.armlinux.org.uk/
2651 F:      arch/arm/vfp/
2652
2653 ARM/VOIPAC PXA270 SUPPORT
2654 M:      Marek Vasut <marek.vasut@gmail.com>
2655 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2656 S:      Maintained
2657 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2658 F:      arch/arm/mach-pxa/vpac270.c
2659
2660 ARM/VT8500 ARM ARCHITECTURE
2661 M:      Tony Prisk <linux@prisktech.co.nz>
2662 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2663 S:      Maintained
2664 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2665 F:      arch/arm/mach-vt8500/
2666 F:      drivers/clocksource/timer-vt8500.c
2667 F:      drivers/i2c/busses/i2c-wmt.c
2668 F:      drivers/mmc/host/wmt-sdmmc.c
2669 F:      drivers/pwm/pwm-vt8500.c
2670 F:      drivers/rtc/rtc-vt8500.c
2671 F:      drivers/tty/serial/vt8500_serial.c
2672 F:      drivers/usb/host/ehci-platform.c
2673 F:      drivers/usb/host/uhci-platform.c
2674 F:      drivers/video/fbdev/vt8500lcdfb.*
2675 F:      drivers/video/fbdev/wm8505fb*
2676 F:      drivers/video/fbdev/wmt_ge_rops.*
2677
2678 ARM/ZIPIT Z2 SUPPORT
2679 M:      Marek Vasut <marek.vasut@gmail.com>
2680 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2681 S:      Maintained
2682 F:      arch/arm/mach-pxa/include/mach/z2.h
2683 F:      arch/arm/mach-pxa/z2.c
2684
2685 ARM/ZTE ARCHITECTURE
2686 M:      Jun Nie <jun.nie@linaro.org>
2687 M:      Shawn Guo <shawnguo@kernel.org>
2688 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2689 S:      Maintained
2690 F:      Documentation/devicetree/bindings/arm/zte.yaml
2691 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2692 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2693 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2694 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2695 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2696 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2697 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2698 F:      Documentation/devicetree/bindings/soc/zte/
2699 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2700 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2701 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2702 F:      arch/arm/boot/dts/zx2967*
2703 F:      arch/arm/mach-zx/
2704 F:      arch/arm64/boot/dts/zte/
2705 F:      drivers/clk/zte/
2706 F:      drivers/dma/zx_dma.c
2707 F:      drivers/gpio/gpio-zx.c
2708 F:      drivers/i2c/busses/i2c-zx2967.c
2709 F:      drivers/mmc/host/dw_mmc-zx.*
2710 F:      drivers/pinctrl/zte/
2711 F:      drivers/soc/zte/
2712 F:      drivers/thermal/zx2967_thermal.c
2713 F:      drivers/watchdog/zx2967_wdt.c
2714 F:      include/dt-bindings/clock/zx2967*.h
2715 F:      include/dt-bindings/soc/zte,*.h
2716 F:      sound/soc/codecs/zx_aud96p22.c
2717 F:      sound/soc/zte/
2718
2719 ARM/ZYNQ ARCHITECTURE
2720 M:      Michal Simek <michal.simek@xilinx.com>
2721 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2722 S:      Supported
2723 W:      http://wiki.xilinx.com
2724 T:      git https://github.com/Xilinx/linux-xlnx.git
2725 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2726 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2727 F:      arch/arm/mach-zynq/
2728 F:      drivers/block/xsysace.c
2729 F:      drivers/clocksource/timer-cadence-ttc.c
2730 F:      drivers/cpuidle/cpuidle-zynq.c
2731 F:      drivers/edac/synopsys_edac.c
2732 F:      drivers/i2c/busses/i2c-cadence.c
2733 F:      drivers/i2c/busses/i2c-xiic.c
2734 F:      drivers/mmc/host/sdhci-of-arasan.c
2735 N:      zynq
2736 N:      xilinx
2737
2738 ARM64 PORT (AARCH64 ARCHITECTURE)
2739 M:      Catalin Marinas <catalin.marinas@arm.com>
2740 M:      Will Deacon <will@kernel.org>
2741 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2742 S:      Maintained
2743 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2744 F:      Documentation/arm64/
2745 F:      arch/arm64/
2746 F:      tools/testing/selftests/arm64/
2747 X:      arch/arm64/boot/dts/
2748
2749 AS3645A LED FLASH CONTROLLER DRIVER
2750 M:      Sakari Ailus <sakari.ailus@iki.fi>
2751 L:      linux-leds@vger.kernel.org
2752 S:      Maintained
2753 F:      drivers/leds/leds-as3645a.c
2754
2755 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2756 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2757 L:      linux-media@vger.kernel.org
2758 S:      Maintained
2759 T:      git git://linuxtv.org/media_tree.git
2760 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2761 F:      drivers/media/i2c/ak7375.c
2762
2763 ASAHI KASEI AK8974 DRIVER
2764 M:      Linus Walleij <linus.walleij@linaro.org>
2765 L:      linux-iio@vger.kernel.org
2766 S:      Supported
2767 W:      http://www.akm.com/
2768 F:      drivers/iio/magnetometer/ak8974.c
2769
2770 ASC7621 HARDWARE MONITOR DRIVER
2771 M:      George Joseph <george.joseph@fairview5.com>
2772 L:      linux-hwmon@vger.kernel.org
2773 S:      Maintained
2774 F:      Documentation/hwmon/asc7621.rst
2775 F:      drivers/hwmon/asc7621.c
2776
2777 ASPEED PINCTRL DRIVERS
2778 M:      Andrew Jeffery <andrew@aj.id.au>
2779 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2780 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2781 L:      linux-gpio@vger.kernel.org
2782 S:      Maintained
2783 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2784 F:      drivers/pinctrl/aspeed/
2785
2786 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2787 M:      Eddie James <eajames@linux.ibm.com>
2788 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2789 S:      Maintained
2790 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2791 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2792 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2793
2794 ASPEED VIDEO ENGINE DRIVER
2795 M:      Eddie James <eajames@linux.ibm.com>
2796 L:      linux-media@vger.kernel.org
2797 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2798 S:      Maintained
2799 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2800 F:      drivers/media/platform/aspeed-video.c
2801
2802 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2803 M:      Corentin Chary <corentin.chary@gmail.com>
2804 L:      acpi4asus-user@lists.sourceforge.net
2805 L:      platform-driver-x86@vger.kernel.org
2806 S:      Maintained
2807 W:      http://acpi4asus.sf.net
2808 F:      drivers/platform/x86/asus*.c
2809 F:      drivers/platform/x86/eeepc*.c
2810
2811 ASUS WIRELESS RADIO CONTROL DRIVER
2812 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2813 L:      platform-driver-x86@vger.kernel.org
2814 S:      Maintained
2815 F:      drivers/platform/x86/asus-wireless.c
2816
2817 ASYMMETRIC KEYS
2818 M:      David Howells <dhowells@redhat.com>
2819 L:      keyrings@vger.kernel.org
2820 S:      Maintained
2821 F:      Documentation/crypto/asymmetric-keys.txt
2822 F:      crypto/asymmetric_keys/
2823 F:      include/crypto/pkcs7.h
2824 F:      include/crypto/public_key.h
2825 F:      include/linux/verification.h
2826
2827 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2828 R:      Dan Williams <dan.j.williams@intel.com>
2829 S:      Odd fixes
2830 W:      http://sourceforge.net/projects/xscaleiop
2831 F:      Documentation/crypto/async-tx-api.txt
2832 F:      crypto/async_tx/
2833 F:      drivers/dma/
2834 F:      include/linux/async_tx.h
2835 F:      include/linux/dmaengine.h
2836
2837 AT24 EEPROM DRIVER
2838 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2839 L:      linux-i2c@vger.kernel.org
2840 S:      Maintained
2841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2842 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2843 F:      drivers/misc/eeprom/at24.c
2844
2845 ATA OVER ETHERNET (AOE) DRIVER
2846 M:      "Justin Sanders" <justin@coraid.com>
2847 S:      Supported
2848 W:      http://www.openaoe.org/
2849 F:      Documentation/admin-guide/aoe/
2850 F:      drivers/block/aoe/
2851
2852 ATHEROS 71XX/9XXX GPIO DRIVER
2853 M:      Alban Bedel <albeu@free.fr>
2854 S:      Maintained
2855 W:      https://github.com/AlbanBedel/linux
2856 T:      git git://github.com/AlbanBedel/linux
2857 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2858 F:      drivers/gpio/gpio-ath79.c
2859
2860 ATHEROS 71XX/9XXX USB PHY DRIVER
2861 M:      Alban Bedel <albeu@free.fr>
2862 S:      Maintained
2863 W:      https://github.com/AlbanBedel/linux
2864 T:      git git://github.com/AlbanBedel/linux
2865 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2866 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2867
2868 ATHEROS ATH GENERIC UTILITIES
2869 M:      Kalle Valo <kvalo@codeaurora.org>
2870 L:      linux-wireless@vger.kernel.org
2871 S:      Supported
2872 F:      drivers/net/wireless/ath/*
2873
2874 ATHEROS ATH5K WIRELESS DRIVER
2875 M:      Jiri Slaby <jirislaby@gmail.com>
2876 M:      Nick Kossifidis <mickflemm@gmail.com>
2877 M:      Luis Chamberlain <mcgrof@kernel.org>
2878 L:      linux-wireless@vger.kernel.org
2879 S:      Maintained
2880 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2881 F:      drivers/net/wireless/ath/ath5k/
2882
2883 ATHEROS ATH6KL WIRELESS DRIVER
2884 M:      Kalle Valo <kvalo@codeaurora.org>
2885 L:      linux-wireless@vger.kernel.org
2886 S:      Supported
2887 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2889 F:      drivers/net/wireless/ath/ath6kl/
2890
2891 ATI_REMOTE2 DRIVER
2892 M:      Ville Syrjala <syrjala@sci.fi>
2893 S:      Maintained
2894 F:      drivers/input/misc/ati_remote2.c
2895
2896 ATK0110 HWMON DRIVER
2897 M:      Luca Tettamanti <kronos.it@gmail.com>
2898 L:      linux-hwmon@vger.kernel.org
2899 S:      Maintained
2900 F:      drivers/hwmon/asus_atk0110.c
2901
2902 ATLX ETHERNET DRIVERS
2903 M:      Jay Cliburn <jcliburn@gmail.com>
2904 M:      Chris Snook <chris.snook@gmail.com>
2905 L:      netdev@vger.kernel.org
2906 S:      Maintained
2907 W:      http://sourceforge.net/projects/atl1
2908 W:      http://atl1.sourceforge.net
2909 F:      drivers/net/ethernet/atheros/
2910
2911 ATM
2912 M:      Chas Williams <3chas3@gmail.com>
2913 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2914 L:      netdev@vger.kernel.org
2915 S:      Maintained
2916 W:      http://linux-atm.sourceforge.net
2917 F:      drivers/atm/
2918 F:      include/linux/atm*
2919 F:      include/uapi/linux/atm*
2920
2921 ATMEL MACB ETHERNET DRIVER
2922 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2923 S:      Supported
2924 F:      drivers/net/ethernet/cadence/
2925
2926 ATMEL MAXTOUCH DRIVER
2927 M:      Nick Dyer <nick@shmanahar.org>
2928 S:      Maintained
2929 T:      git git://github.com/ndyer/linux.git
2930 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2931 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2932
2933 ATMEL WIRELESS DRIVER
2934 M:      Simon Kelley <simon@thekelleys.org.uk>
2935 L:      linux-wireless@vger.kernel.org
2936 S:      Maintained
2937 W:      http://www.thekelleys.org.uk/atmel
2938 W:      http://atmelwlandriver.sourceforge.net/
2939 F:      drivers/net/wireless/atmel/atmel*
2940
2941 ATOMIC INFRASTRUCTURE
2942 M:      Will Deacon <will@kernel.org>
2943 M:      Peter Zijlstra <peterz@infradead.org>
2944 R:      Boqun Feng <boqun.feng@gmail.com>
2945 L:      linux-kernel@vger.kernel.org
2946 S:      Maintained
2947 F:      arch/*/include/asm/atomic*.h
2948 F:      include/*/atomic*.h
2949 F:      scripts/atomic/
2950
2951 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2952 M:      Bradley Grove <linuxdrivers@attotech.com>
2953 L:      linux-scsi@vger.kernel.org
2954 S:      Supported
2955 W:      http://www.attotech.com
2956 F:      drivers/scsi/esas2r
2957
2958 ATUSB IEEE 802.15.4 RADIO DRIVER
2959 M:      Stefan Schmidt <stefan@datenfreihafen.org>
2960 L:      linux-wpan@vger.kernel.org
2961 S:      Maintained
2962 F:      drivers/net/ieee802154/at86rf230.h
2963 F:      drivers/net/ieee802154/atusb.c
2964 F:      drivers/net/ieee802154/atusb.h
2965
2966 AUDIT SUBSYSTEM
2967 M:      Paul Moore <paul@paul-moore.com>
2968 M:      Eric Paris <eparis@redhat.com>
2969 L:      linux-audit@redhat.com (moderated for non-subscribers)
2970 S:      Supported
2971 W:      https://github.com/linux-audit
2972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2973 F:      include/linux/audit.h
2974 F:      include/uapi/linux/audit.h
2975 F:      kernel/audit*
2976
2977 AUXILIARY DISPLAY DRIVERS
2978 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2979 S:      Maintained
2980 F:      drivers/auxdisplay/
2981 F:      include/linux/cfag12864b.h
2982
2983 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
2984 M:      Andreas Klinger <ak@it-klinger.de>
2985 L:      linux-iio@vger.kernel.org
2986 S:      Maintained
2987 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
2988 F:      drivers/iio/adc/hx711.c
2989
2990 AX.25 NETWORK LAYER
2991 M:      Ralf Baechle <ralf@linux-mips.org>
2992 L:      linux-hams@vger.kernel.org
2993 S:      Maintained
2994 W:      http://www.linux-ax25.org/
2995 F:      include/net/ax25.h
2996 F:      include/uapi/linux/ax25.h
2997 F:      net/ax25/
2998
2999 AXENTIA ARM DEVICES
3000 M:      Peter Rosin <peda@axentia.se>
3001 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3002 S:      Maintained
3003 F:      arch/arm/boot/dts/at91-linea.dtsi
3004 F:      arch/arm/boot/dts/at91-natte.dtsi
3005 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3006 F:      arch/arm/boot/dts/at91-tse850-3.dts
3007
3008 AXENTIA ASOC DRIVERS
3009 M:      Peter Rosin <peda@axentia.se>
3010 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3011 S:      Maintained
3012 F:      Documentation/devicetree/bindings/sound/axentia,*
3013 F:      sound/soc/atmel/tse850-pcm5142.c
3014
3015 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3016 M:      Nuno Sá <nuno.sa@analog.com>
3017 L:      linux-hwmon@vger.kernel.org
3018 S:      Supported
3019 W:      http://ez.analog.com/community/linux-device-drivers
3020 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3021 F:      drivers/hwmon/axi-fan-control.c
3022
3023 AXXIA I2C CONTROLLER
3024 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3025 L:      linux-i2c@vger.kernel.org
3026 S:      Maintained
3027 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3028 F:      drivers/i2c/busses/i2c-axxia.c
3029
3030 AZ6007 DVB DRIVER
3031 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3032 L:      linux-media@vger.kernel.org
3033 S:      Maintained
3034 W:      https://linuxtv.org
3035 T:      git git://linuxtv.org/media_tree.git
3036 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3037
3038 AZTECH FM RADIO RECEIVER DRIVER
3039 M:      Hans Verkuil <hverkuil@xs4all.nl>
3040 L:      linux-media@vger.kernel.org
3041 S:      Maintained
3042 W:      https://linuxtv.org
3043 T:      git git://linuxtv.org/media_tree.git
3044 F:      drivers/media/radio/radio-aztech*
3045
3046 B43 WIRELESS DRIVER
3047 L:      linux-wireless@vger.kernel.org
3048 L:      b43-dev@lists.infradead.org
3049 S:      Odd Fixes
3050 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3051 F:      drivers/net/wireless/broadcom/b43/
3052
3053 B43LEGACY WIRELESS DRIVER
3054 M:      Larry Finger <Larry.Finger@lwfinger.net>
3055 L:      linux-wireless@vger.kernel.org
3056 L:      b43-dev@lists.infradead.org
3057 S:      Maintained
3058 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3059 F:      drivers/net/wireless/broadcom/b43legacy/
3060
3061 BACKLIGHT CLASS/SUBSYSTEM
3062 M:      Lee Jones <lee.jones@linaro.org>
3063 M:      Daniel Thompson <daniel.thompson@linaro.org>
3064 M:      Jingoo Han <jingoohan1@gmail.com>
3065 L:      dri-devel@lists.freedesktop.org
3066 S:      Maintained
3067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3068 F:      Documentation/ABI/stable/sysfs-class-backlight
3069 F:      Documentation/ABI/testing/sysfs-class-backlight
3070 F:      Documentation/devicetree/bindings/leds/backlight
3071 F:      drivers/video/backlight/
3072 F:      include/linux/backlight.h
3073 F:      include/linux/pwm_backlight.h
3074
3075 BATMAN ADVANCED
3076 M:      Marek Lindner <mareklindner@neomailbox.ch>
3077 M:      Simon Wunderlich <sw@simonwunderlich.de>
3078 M:      Antonio Quartulli <a@unstable.cc>
3079 M:      Sven Eckelmann <sven@narfation.org>
3080 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3081 S:      Maintained
3082 W:      https://www.open-mesh.org/
3083 Q:      https://patchwork.open-mesh.org/project/batman/list/
3084 B:      https://www.open-mesh.org/projects/batman-adv/issues
3085 C:      irc://chat.freenode.net/batman
3086 T:      git https://git.open-mesh.org/linux-merge.git
3087 F:      Documentation/ABI/obsolete/sysfs-class-net-batman-adv
3088 F:      Documentation/ABI/obsolete/sysfs-class-net-mesh
3089 F:      Documentation/networking/batman-adv.rst
3090 F:      include/uapi/linux/batadv_packet.h
3091 F:      include/uapi/linux/batman_adv.h
3092 F:      net/batman-adv/
3093
3094 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3095 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3096 L:      linux-hams@vger.kernel.org
3097 S:      Maintained
3098 W:      http://www.baycom.org/~tom/ham/ham.html
3099 F:      drivers/net/hamradio/baycom*
3100
3101 BCACHE (BLOCK LAYER CACHE)
3102 M:      Coly Li <colyli@suse.de>
3103 M:      Kent Overstreet <kent.overstreet@gmail.com>
3104 L:      linux-bcache@vger.kernel.org
3105 S:      Maintained
3106 W:      http://bcache.evilpiepirate.org
3107 C:      irc://irc.oftc.net/bcache
3108 F:      drivers/md/bcache/
3109
3110 BDISP ST MEDIA DRIVER
3111 M:      Fabien Dessenne <fabien.dessenne@st.com>
3112 L:      linux-media@vger.kernel.org
3113 S:      Supported
3114 W:      https://linuxtv.org
3115 T:      git git://linuxtv.org/media_tree.git
3116 F:      drivers/media/platform/sti/bdisp
3117
3118 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3119 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3120 L:      netdev@vger.kernel.org
3121 S:      Maintained
3122 F:      drivers/net/ethernet/ec_bhf.c
3123
3124 BEFS FILE SYSTEM
3125 M:      Luis de Bethencourt <luisbg@kernel.org>
3126 M:      Salah Triki <salah.triki@gmail.com>
3127 S:      Maintained
3128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3129 F:      Documentation/filesystems/befs.rst
3130 F:      fs/befs/
3131
3132 BFQ I/O SCHEDULER
3133 M:      Paolo Valente <paolo.valente@linaro.org>
3134 M:      Jens Axboe <axboe@kernel.dk>
3135 L:      linux-block@vger.kernel.org
3136 S:      Maintained
3137 F:      Documentation/block/bfq-iosched.rst
3138 F:      block/bfq-*
3139
3140 BFS FILE SYSTEM
3141 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3142 S:      Maintained
3143 F:      Documentation/filesystems/bfs.rst
3144 F:      fs/bfs/
3145 F:      include/uapi/linux/bfs_fs.h
3146
3147 BLINKM RGB LED DRIVER
3148 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3149 S:      Maintained
3150 F:      drivers/leds/leds-blinkm.c
3151
3152 BLOCK LAYER
3153 M:      Jens Axboe <axboe@kernel.dk>
3154 L:      linux-block@vger.kernel.org
3155 S:      Maintained
3156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3157 F:      block/
3158 F:      drivers/block/
3159 F:      kernel/trace/blktrace.c
3160 F:      lib/sbitmap.c
3161
3162 BLOCK2MTD DRIVER
3163 M:      Joern Engel <joern@lazybastard.org>
3164 L:      linux-mtd@lists.infradead.org
3165 S:      Maintained
3166 F:      drivers/mtd/devices/block2mtd.c
3167
3168 BLUETOOTH DRIVERS
3169 M:      Marcel Holtmann <marcel@holtmann.org>
3170 M:      Johan Hedberg <johan.hedberg@gmail.com>
3171 L:      linux-bluetooth@vger.kernel.org
3172 S:      Maintained
3173 W:      http://www.bluez.org/
3174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3176 F:      drivers/bluetooth/
3177
3178 BLUETOOTH SUBSYSTEM
3179 M:      Marcel Holtmann <marcel@holtmann.org>
3180 M:      Johan Hedberg <johan.hedberg@gmail.com>
3181 L:      linux-bluetooth@vger.kernel.org
3182 S:      Maintained
3183 W:      http://www.bluez.org/
3184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3186 F:      include/net/bluetooth/
3187 F:      net/bluetooth/
3188
3189 BONDING DRIVER
3190 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3191 M:      Veaceslav Falico <vfalico@gmail.com>
3192 M:      Andy Gospodarek <andy@greyhouse.net>
3193 L:      netdev@vger.kernel.org
3194 S:      Supported
3195 W:      http://sourceforge.net/projects/bonding/
3196 F:      drivers/net/bonding/
3197 F:      include/uapi/linux/if_bonding.h
3198
3199 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3200 M:      Dan Robertson <dan@dlrobertson.com>
3201 L:      linux-iio@vger.kernel.org
3202 S:      Maintained
3203 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3204 F:      drivers/iio/accel/bma400*
3205
3206 BPF (Safe dynamic programs and tools)
3207 M:      Alexei Starovoitov <ast@kernel.org>
3208 M:      Daniel Borkmann <daniel@iogearbox.net>
3209 R:      Martin KaFai Lau <kafai@fb.com>
3210 R:      Song Liu <songliubraving@fb.com>
3211 R:      Yonghong Song <yhs@fb.com>
3212 R:      Andrii Nakryiko <andriin@fb.com>
3213 R:      John Fastabend <john.fastabend@gmail.com>
3214 R:      KP Singh <kpsingh@chromium.org>
3215 L:      netdev@vger.kernel.org
3216 L:      bpf@vger.kernel.org
3217 S:      Supported
3218 Q:      https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
3219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3221 F:      Documentation/bpf/
3222 F:      Documentation/networking/filter.rst
3223 F:      arch/*/net/*
3224 F:      include/linux/bpf*
3225 F:      include/linux/filter.h
3226 F:      include/trace/events/xdp.h
3227 F:      include/uapi/linux/bpf*
3228 F:      include/uapi/linux/filter.h
3229 F:      kernel/bpf/
3230 F:      kernel/trace/bpf_trace.c
3231 F:      lib/test_bpf.c
3232 F:      net/bpf/
3233 F:      net/core/filter.c
3234 F:      net/sched/act_bpf.c
3235 F:      net/sched/cls_bpf.c
3236 F:      samples/bpf/
3237 F:      tools/bpf/
3238 F:      tools/lib/bpf/
3239 F:      tools/testing/selftests/bpf/
3240 N:      bpf
3241 K:      bpf
3242
3243 BPF JIT for ARM
3244 M:      Shubham Bansal <illusionist.neo@gmail.com>
3245 L:      netdev@vger.kernel.org
3246 L:      bpf@vger.kernel.org
3247 S:      Maintained
3248 F:      arch/arm/net/
3249
3250 BPF JIT for ARM64
3251 M:      Daniel Borkmann <daniel@iogearbox.net>
3252 M:      Alexei Starovoitov <ast@kernel.org>
3253 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3254 L:      netdev@vger.kernel.org
3255 L:      bpf@vger.kernel.org
3256 S:      Supported
3257 F:      arch/arm64/net/
3258
3259 BPF JIT for MIPS (32-BIT AND 64-BIT)
3260 M:      Paul Burton <paulburton@kernel.org>
3261 L:      netdev@vger.kernel.org
3262 L:      bpf@vger.kernel.org
3263 S:      Maintained
3264 F:      arch/mips/net/
3265
3266 BPF JIT for NFP NICs
3267 M:      Jakub Kicinski <kuba@kernel.org>
3268 L:      netdev@vger.kernel.org
3269 L:      bpf@vger.kernel.org
3270 S:      Supported
3271 F:      drivers/net/ethernet/netronome/nfp/bpf/
3272
3273 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3274 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3275 M:      Sandipan Das <sandipan@linux.ibm.com>
3276 L:      netdev@vger.kernel.org
3277 L:      bpf@vger.kernel.org
3278 S:      Maintained
3279 F:      arch/powerpc/net/
3280
3281 BPF JIT for RISC-V (32-bit)
3282 M:      Luke Nelson <luke.r.nels@gmail.com>
3283 M:      Xi Wang <xi.wang@gmail.com>
3284 L:      netdev@vger.kernel.org
3285 L:      bpf@vger.kernel.org
3286 S:      Maintained
3287 F:      arch/riscv/net/
3288 X:      arch/riscv/net/bpf_jit_comp64.c
3289
3290 BPF JIT for RISC-V (64-bit)
3291 M:      Björn Töpel <bjorn.topel@gmail.com>
3292 L:      netdev@vger.kernel.org
3293 L:      bpf@vger.kernel.org
3294 S:      Maintained
3295 F:      arch/riscv/net/
3296 X:      arch/riscv/net/bpf_jit_comp32.c
3297
3298 BPF JIT for S390
3299 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3300 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
3301 M:      Vasily Gorbik <gor@linux.ibm.com>
3302 L:      netdev@vger.kernel.org
3303 L:      bpf@vger.kernel.org
3304 S:      Maintained
3305 F:      arch/s390/net/
3306 X:      arch/s390/net/pnet.c
3307
3308 BPF JIT for SPARC (32-BIT AND 64-BIT)
3309 M:      David S. Miller <davem@davemloft.net>
3310 L:      netdev@vger.kernel.org
3311 L:      bpf@vger.kernel.org
3312 S:      Maintained
3313 F:      arch/sparc/net/
3314
3315 BPF JIT for X86 32-BIT
3316 M:      Wang YanQing <udknight@gmail.com>
3317 L:      netdev@vger.kernel.org
3318 L:      bpf@vger.kernel.org
3319 S:      Maintained
3320 F:      arch/x86/net/bpf_jit_comp32.c
3321
3322 BPF JIT for X86 64-BIT
3323 M:      Alexei Starovoitov <ast@kernel.org>
3324 M:      Daniel Borkmann <daniel@iogearbox.net>
3325 L:      netdev@vger.kernel.org
3326 L:      bpf@vger.kernel.org
3327 S:      Supported
3328 F:      arch/x86/net/
3329 X:      arch/x86/net/bpf_jit_comp32.c
3330
3331 BROADCOM B44 10/100 ETHERNET DRIVER
3332 M:      Michael Chan <michael.chan@broadcom.com>
3333 L:      netdev@vger.kernel.org
3334 S:      Supported
3335 F:      drivers/net/ethernet/broadcom/b44.*
3336
3337 BROADCOM B53 ETHERNET SWITCH DRIVER
3338 M:      Florian Fainelli <f.fainelli@gmail.com>
3339 L:      netdev@vger.kernel.org
3340 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3341 S:      Supported
3342 F:      drivers/net/dsa/b53/*
3343 F:      include/linux/platform_data/b53.h
3344
3345 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3346 M:      Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
3347 L:      bcm-kernel-feedback-list@broadcom.com
3348 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3349 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3350 S:      Maintained
3351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3352 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3353 F:      drivers/pci/controller/pcie-brcmstb.c
3354 F:      drivers/staging/vc04_services
3355 N:      bcm2711
3356 N:      bcm2835
3357
3358 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3359 M:      Florian Fainelli <f.fainelli@gmail.com>
3360 M:      Ray Jui <rjui@broadcom.com>
3361 M:      Scott Branden <sbranden@broadcom.com>
3362 M:      bcm-kernel-feedback-list@broadcom.com
3363 S:      Maintained
3364 T:      git git://github.com/broadcom/mach-bcm
3365 F:      arch/arm/mach-bcm/
3366 N:      bcm281*
3367 N:      bcm113*
3368 N:      bcm216*
3369 N:      kona
3370
3371 BROADCOM BCM47XX MIPS ARCHITECTURE
3372 M:      Hauke Mehrtens <hauke@hauke-m.de>
3373 M:      Rafał Miłecki <zajec5@gmail.com>
3374 L:      linux-mips@vger.kernel.org
3375 S:      Maintained
3376 F:      Documentation/devicetree/bindings/mips/brcm/
3377 F:      arch/mips/bcm47xx/*
3378 F:      arch/mips/include/asm/mach-bcm47xx/*
3379
3380 BROADCOM BCM5301X ARM ARCHITECTURE
3381 M:      Hauke Mehrtens <hauke@hauke-m.de>
3382 M:      Rafał Miłecki <zajec5@gmail.com>
3383 M:      bcm-kernel-feedback-list@broadcom.com
3384 L:      linux-arm-kernel@lists.infradead.org
3385 S:      Maintained
3386 F:      arch/arm/boot/dts/bcm470*
3387 F:      arch/arm/boot/dts/bcm5301x*.dtsi
3388 F:      arch/arm/boot/dts/bcm953012*
3389 F:      arch/arm/mach-bcm/bcm_5301x.c
3390
3391 BROADCOM BCM53573 ARM ARCHITECTURE
3392 M:      Rafał Miłecki <rafal@milecki.pl>
3393 L:      bcm-kernel-feedback-list@broadcom.com
3394 L:      linux-arm-kernel@lists.infradead.org
3395 S:      Maintained
3396 F:      arch/arm/boot/dts/bcm47189*
3397 F:      arch/arm/boot/dts/bcm53573*
3398
3399 BROADCOM BCM63XX ARM ARCHITECTURE
3400 M:      Florian Fainelli <f.fainelli@gmail.com>
3401 M:      bcm-kernel-feedback-list@broadcom.com
3402 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3403 S:      Maintained
3404 T:      git git://github.com/broadcom/stblinux.git
3405 N:      bcm63xx
3406
3407 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3408 M:      Kevin Cernekee <cernekee@gmail.com>
3409 L:      linux-usb@vger.kernel.org
3410 S:      Maintained
3411 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3412
3413 BROADCOM BCM7XXX ARM ARCHITECTURE
3414 M:      Florian Fainelli <f.fainelli@gmail.com>
3415 M:      bcm-kernel-feedback-list@broadcom.com
3416 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3417 S:      Maintained
3418 T:      git git://github.com/broadcom/stblinux.git
3419 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3420 F:      arch/arm/boot/dts/bcm7*.dts*
3421 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3422 F:      arch/arm/mach-bcm/*brcmstb*
3423 F:      arch/arm/mm/cache-b15-rac.c
3424 F:      drivers/bus/brcmstb_gisb.c
3425 F:      drivers/pci/controller/pcie-brcmstb.c
3426 N:      brcmstb
3427
3428 BROADCOM BMIPS CPUFREQ DRIVER
3429 M:      Markus Mayer <mmayer@broadcom.com>
3430 M:      bcm-kernel-feedback-list@broadcom.com
3431 L:      linux-pm@vger.kernel.org
3432 S:      Maintained
3433 F:      drivers/cpufreq/bmips-cpufreq.c
3434
3435 BROADCOM BMIPS MIPS ARCHITECTURE
3436 M:      Florian Fainelli <f.fainelli@gmail.com>
3437 L:      bcm-kernel-feedback-list@broadcom.com
3438 L:      linux-mips@vger.kernel.org
3439 S:      Maintained
3440 T:      git git://github.com/broadcom/stblinux.git
3441 F:      arch/mips/bmips/*
3442 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3443 F:      arch/mips/include/asm/mach-bmips/*
3444 F:      arch/mips/kernel/*bmips*
3445 F:      drivers/irqchip/irq-bcm63*
3446 F:      drivers/irqchip/irq-bcm7*
3447 F:      drivers/irqchip/irq-brcmstb*
3448 F:      include/linux/bcm963xx_nvram.h
3449 F:      include/linux/bcm963xx_tag.h
3450
3451 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3452 M:      Rasesh Mody <rmody@marvell.com>
3453 M:      GR-Linux-NIC-Dev@marvell.com
3454 L:      netdev@vger.kernel.org
3455 S:      Supported
3456 F:      drivers/net/ethernet/broadcom/bnx2.*
3457 F:      drivers/net/ethernet/broadcom/bnx2_*
3458
3459 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3460 M:      QLogic-Storage-Upstream@qlogic.com
3461 L:      linux-scsi@vger.kernel.org
3462 S:      Supported
3463 F:      drivers/scsi/bnx2fc/
3464
3465 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3466 M:      QLogic-Storage-Upstream@qlogic.com
3467 L:      linux-scsi@vger.kernel.org
3468 S:      Supported
3469 F:      drivers/scsi/bnx2i/
3470
3471 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3472 M:      Ariel Elior <aelior@marvell.com>
3473 M:      Sudarsana Kalluru <skalluru@marvell.com>
3474 M:      GR-everest-linux-l2@marvell.com
3475 L:      netdev@vger.kernel.org
3476 S:      Supported
3477 F:      drivers/net/ethernet/broadcom/bnx2x/
3478
3479 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3480 M:      Michael Chan <michael.chan@broadcom.com>
3481 L:      netdev@vger.kernel.org
3482 S:      Supported
3483 F:      drivers/net/ethernet/broadcom/bnxt/
3484
3485 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3486 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
3487 M:      Franky Lin <franky.lin@broadcom.com>
3488 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3489 M:      Chi-Hsien Lin <chi-hsien.lin@cypress.com>
3490 M:      Wright Feng <wright.feng@cypress.com>
3491 L:      linux-wireless@vger.kernel.org
3492 L:      brcm80211-dev-list.pdl@broadcom.com
3493 L:      brcm80211-dev-list@cypress.com
3494 S:      Supported
3495 F:      drivers/net/wireless/broadcom/brcm80211/
3496
3497 BROADCOM BRCMSTB GPIO DRIVER
3498 M:      Gregory Fong <gregory.0xf0@gmail.com>
3499 L:      bcm-kernel-feedback-list@broadcom.com
3500 S:      Supported
3501 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3502 F:      drivers/gpio/gpio-brcmstb.c
3503
3504 BROADCOM BRCMSTB I2C DRIVER
3505 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3506 L:      linux-i2c@vger.kernel.org
3507 L:      bcm-kernel-feedback-list@broadcom.com
3508 S:      Supported
3509 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3510 F:      drivers/i2c/busses/i2c-brcmstb.c
3511
3512 BROADCOM BRCMSTB USB EHCI DRIVER
3513 M:      Al Cooper <alcooperx@gmail.com>
3514 L:      linux-usb@vger.kernel.org
3515 L:      bcm-kernel-feedback-list@broadcom.com
3516 S:      Maintained
3517 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3518 F:      drivers/usb/host/ehci-brcm.*
3519
3520 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3521 M:      Al Cooper <alcooperx@gmail.com>
3522 L:      linux-kernel@vger.kernel.org
3523 L:      bcm-kernel-feedback-list@broadcom.com
3524 S:      Maintained
3525 F:      drivers/phy/broadcom/phy-brcm-usb*
3526
3527 BROADCOM GENET ETHERNET DRIVER
3528 M:      Doug Berger <opendmb@gmail.com>
3529 M:      Florian Fainelli <f.fainelli@gmail.com>
3530 L:      bcm-kernel-feedback-list@broadcom.com
3531 L:      netdev@vger.kernel.org
3532 S:      Supported
3533 F:      drivers/net/ethernet/broadcom/genet/
3534
3535 BROADCOM IPROC ARM ARCHITECTURE
3536 M:      Ray Jui <rjui@broadcom.com>
3537 M:      Scott Branden <sbranden@broadcom.com>
3538 M:      bcm-kernel-feedback-list@broadcom.com
3539 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3540 S:      Maintained
3541 T:      git git://github.com/broadcom/cygnus-linux.git
3542 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3543 F:      arch/arm64/boot/dts/broadcom/stingray/*
3544 F:      drivers/clk/bcm/clk-ns*
3545 F:      drivers/clk/bcm/clk-sr*
3546 F:      drivers/pinctrl/bcm/pinctrl-ns*
3547 F:      include/dt-bindings/clock/bcm-sr*
3548 N:      iproc
3549 N:      cygnus
3550 N:      bcm[-_]nsp
3551 N:      bcm9113*
3552 N:      bcm9583*
3553 N:      bcm9585*
3554 N:      bcm9586*
3555 N:      bcm988312
3556 N:      bcm113*
3557 N:      bcm583*
3558 N:      bcm585*
3559 N:      bcm586*
3560 N:      bcm88312
3561 N:      hr2
3562 N:      stingray
3563
3564 BROADCOM KONA GPIO DRIVER
3565 M:      Ray Jui <rjui@broadcom.com>
3566 L:      bcm-kernel-feedback-list@broadcom.com
3567 S:      Supported
3568 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3569 F:      drivers/gpio/gpio-bcm-kona.c
3570
3571 BROADCOM NETXTREME-E ROCE DRIVER
3572 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3573 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3574 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3575 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3576 L:      linux-rdma@vger.kernel.org
3577 S:      Supported
3578 W:      http://www.broadcom.com
3579 F:      drivers/infiniband/hw/bnxt_re/
3580 F:      include/uapi/rdma/bnxt_re-abi.h
3581
3582 BROADCOM NVRAM DRIVER
3583 M:      Rafał Miłecki <zajec5@gmail.com>
3584 L:      linux-mips@vger.kernel.org
3585 S:      Maintained
3586 F:      drivers/firmware/broadcom/*
3587
3588 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3589 M:      Rafał Miłecki <zajec5@gmail.com>
3590 L:      linux-wireless@vger.kernel.org
3591 S:      Maintained
3592 F:      drivers/bcma/
3593 F:      include/linux/bcma/
3594
3595 BROADCOM SPI DRIVER
3596 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3597 M:      bcm-kernel-feedback-list@broadcom.com
3598 S:      Maintained
3599 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3600 F:      drivers/spi/spi-bcm-qspi.*
3601 F:      drivers/spi/spi-brcmstb-qspi.c
3602 F:      drivers/spi/spi-iproc-qspi.c
3603
3604 BROADCOM STB AVS CPUFREQ DRIVER
3605 M:      Markus Mayer <mmayer@broadcom.com>
3606 M:      bcm-kernel-feedback-list@broadcom.com
3607 L:      linux-pm@vger.kernel.org
3608 S:      Maintained
3609 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3610 F:      drivers/cpufreq/brcmstb*
3611
3612 BROADCOM STB AVS TMON DRIVER
3613 M:      Markus Mayer <mmayer@broadcom.com>
3614 M:      bcm-kernel-feedback-list@broadcom.com
3615 L:      linux-pm@vger.kernel.org
3616 S:      Maintained
3617 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3618 F:      drivers/thermal/broadcom/brcmstb*
3619
3620 BROADCOM STB DPFE DRIVER
3621 M:      Markus Mayer <mmayer@broadcom.com>
3622 M:      bcm-kernel-feedback-list@broadcom.com
3623 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3624 S:      Maintained
3625 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3626 F:      drivers/memory/brcmstb_dpfe.c
3627
3628 BROADCOM STB NAND FLASH DRIVER
3629 M:      Brian Norris <computersforpeace@gmail.com>
3630 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3631 L:      linux-mtd@lists.infradead.org
3632 L:      bcm-kernel-feedback-list@broadcom.com
3633 S:      Maintained
3634 F:      drivers/mtd/nand/raw/brcmnand/
3635
3636 BROADCOM SYSTEMPORT ETHERNET DRIVER
3637 M:      Florian Fainelli <f.fainelli@gmail.com>
3638 L:      bcm-kernel-feedback-list@broadcom.com
3639 L:      netdev@vger.kernel.org
3640 S:      Supported
3641 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3642
3643 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3644 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3645 M:      Prashant Sreedharan <prashant@broadcom.com>
3646 M:      Michael Chan <mchan@broadcom.com>
3647 L:      netdev@vger.kernel.org
3648 S:      Supported
3649 F:      drivers/net/ethernet/broadcom/tg3.*
3650
3651 BROCADE BFA FC SCSI DRIVER
3652 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3653 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3654 L:      linux-scsi@vger.kernel.org
3655 S:      Supported
3656 F:      drivers/scsi/bfa/
3657
3658 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3659 M:      Rasesh Mody <rmody@marvell.com>
3660 M:      Sudarsana Kalluru <skalluru@marvell.com>
3661 M:      GR-Linux-NIC-Dev@marvell.com
3662 L:      netdev@vger.kernel.org
3663 S:      Supported
3664 F:      drivers/net/ethernet/brocade/bna/
3665
3666 BSG (block layer generic sg v4 driver)
3667 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3668 L:      linux-scsi@vger.kernel.org
3669 S:      Supported
3670 F:      block/bsg.c
3671 F:      include/linux/bsg.h
3672 F:      include/uapi/linux/bsg.h
3673
3674 BT87X AUDIO DRIVER
3675 M:      Clemens Ladisch <clemens@ladisch.de>
3676 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3677 S:      Maintained
3678 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3679 F:      Documentation/sound/cards/bt87x.rst
3680 F:      sound/pci/bt87x.c
3681
3682 BT8XXGPIO DRIVER
3683 M:      Michael Buesch <m@bues.ch>
3684 S:      Maintained
3685 W:      http://bu3sch.de/btgpio.php
3686 F:      drivers/gpio/gpio-bt8xx.c
3687
3688 BTRFS FILE SYSTEM
3689 M:      Chris Mason <clm@fb.com>
3690 M:      Josef Bacik <josef@toxicpanda.com>
3691 M:      David Sterba <dsterba@suse.com>
3692 L:      linux-btrfs@vger.kernel.org
3693 S:      Maintained
3694 W:      http://btrfs.wiki.kernel.org/
3695 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3697 F:      Documentation/filesystems/btrfs.rst
3698 F:      fs/btrfs/
3699 F:      include/linux/btrfs*
3700 F:      include/uapi/linux/btrfs*
3701
3702 BTTV VIDEO4LINUX DRIVER
3703 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3704 L:      linux-media@vger.kernel.org
3705 S:      Odd fixes
3706 W:      https://linuxtv.org
3707 T:      git git://linuxtv.org/media_tree.git
3708 F:      Documentation/driver-api/media/drivers/bttv*
3709 F:      drivers/media/pci/bt8xx/bttv*
3710
3711 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3712 M:      Chanwoo Choi <cw00.choi@samsung.com>
3713 L:      linux-pm@vger.kernel.org
3714 L:      linux-samsung-soc@vger.kernel.org
3715 S:      Maintained
3716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3717 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3718 F:      drivers/devfreq/exynos-bus.c
3719
3720 BUSLOGIC SCSI DRIVER
3721 M:      Khalid Aziz <khalid@gonehiking.org>
3722 L:      linux-scsi@vger.kernel.org
3723 S:      Maintained
3724 F:      drivers/scsi/BusLogic.*
3725 F:      drivers/scsi/FlashPoint.*
3726
3727 C-MEDIA CMI8788 DRIVER
3728 M:      Clemens Ladisch <clemens@ladisch.de>
3729 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3730 S:      Maintained
3731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3732 F:      sound/pci/oxygen/
3733
3734 C-SKY ARCHITECTURE
3735 M:      Guo Ren <guoren@kernel.org>
3736 L:      linux-csky@vger.kernel.org
3737 S:      Supported
3738 T:      git https://github.com/c-sky/csky-linux.git
3739 F:      Documentation/devicetree/bindings/csky/
3740 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3741 F:      Documentation/devicetree/bindings/timer/csky,*
3742 F:      arch/csky/
3743 F:      drivers/clocksource/timer-gx6605s.c
3744 F:      drivers/clocksource/timer-mp-csky.c
3745 F:      drivers/irqchip/irq-csky-*
3746 N:      csky
3747 K:      csky
3748
3749 C6X ARCHITECTURE
3750 M:      Mark Salter <msalter@redhat.com>
3751 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3752 L:      linux-c6x-dev@linux-c6x.org
3753 S:      Maintained
3754 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3755 F:      arch/c6x/
3756
3757 CA8210 IEEE-802.15.4 RADIO DRIVER
3758 M:      Harry Morris <h.morris@cascoda.com>
3759 L:      linux-wpan@vger.kernel.org
3760 S:      Maintained
3761 W:      https://github.com/Cascoda/ca8210-linux.git
3762 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3763 F:      drivers/net/ieee802154/ca8210.c
3764
3765 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3766 M:      David Howells <dhowells@redhat.com>
3767 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3768 S:      Supported
3769 F:      Documentation/filesystems/caching/cachefiles.rst
3770 F:      fs/cachefiles/
3771
3772 CADENCE MIPI-CSI2 BRIDGES
3773 M:      Maxime Ripard <mripard@kernel.org>
3774 L:      linux-media@vger.kernel.org
3775 S:      Maintained
3776 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3777 F:      drivers/media/platform/cadence/cdns-csi2*
3778
3779 CADENCE NAND DRIVER
3780 M:      Piotr Sroka <piotrs@cadence.com>
3781 L:      linux-mtd@lists.infradead.org
3782 S:      Maintained
3783 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3784 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3785
3786 CADET FM/AM RADIO RECEIVER DRIVER
3787 M:      Hans Verkuil <hverkuil@xs4all.nl>
3788 L:      linux-media@vger.kernel.org
3789 S:      Maintained
3790 W:      https://linuxtv.org
3791 T:      git git://linuxtv.org/media_tree.git
3792 F:      drivers/media/radio/radio-cadet*
3793
3794 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3795 M:      Jonathan Corbet <corbet@lwn.net>
3796 L:      linux-media@vger.kernel.org
3797 S:      Maintained
3798 T:      git git://linuxtv.org/media_tree.git
3799 F:      Documentation/admin-guide/media/cafe_ccic*
3800 F:      drivers/media/platform/marvell-ccic/
3801
3802 CAIF NETWORK LAYER
3803 L:      netdev@vger.kernel.org
3804 S:      Orphan
3805 F:      Documentation/networking/caif/
3806 F:      drivers/net/caif/
3807 F:      include/net/caif/
3808 F:      include/uapi/linux/caif/
3809 F:      net/caif/
3810
3811 CAKE QDISC
3812 M:      Toke Høiland-Jørgensen <toke@toke.dk>
3813 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
3814 S:      Maintained
3815 F:      net/sched/sch_cake.c
3816
3817 CAN NETWORK DRIVERS
3818 M:      Wolfgang Grandegger <wg@grandegger.com>
3819 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3820 L:      linux-can@vger.kernel.org
3821 S:      Maintained
3822 W:      https://github.com/linux-can
3823 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3825 F:      Documentation/devicetree/bindings/net/can/
3826 F:      drivers/net/can/
3827 F:      include/linux/can/dev.h
3828 F:      include/linux/can/led.h
3829 F:      include/linux/can/platform/
3830 F:      include/linux/can/rx-offload.h
3831 F:      include/uapi/linux/can/error.h
3832 F:      include/uapi/linux/can/netlink.h
3833 F:      include/uapi/linux/can/vxcan.h
3834
3835 CAN NETWORK LAYER
3836 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3837 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3838 L:      linux-can@vger.kernel.org
3839 S:      Maintained
3840 W:      https://github.com/linux-can
3841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3842 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3843 F:      Documentation/networking/can.rst
3844 F:      include/linux/can/core.h
3845 F:      include/linux/can/skb.h
3846 F:      include/net/netns/can.h
3847 F:      include/uapi/linux/can.h
3848 F:      include/uapi/linux/can/bcm.h
3849 F:      include/uapi/linux/can/gw.h
3850 F:      include/uapi/linux/can/raw.h
3851 F:      net/can/
3852
3853 CAN-J1939 NETWORK LAYER
3854 M:      Robin van der Gracht <robin@protonic.nl>
3855 M:      Oleksij Rempel <o.rempel@pengutronix.de>
3856 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
3857 L:      linux-can@vger.kernel.org
3858 S:      Maintained
3859 F:      Documentation/networking/j1939.rst
3860 F:      include/uapi/linux/can/j1939.h
3861 F:      net/can/j1939/
3862
3863 CAPABILITIES
3864 M:      Serge Hallyn <serge@hallyn.com>
3865 L:      linux-security-module@vger.kernel.org
3866 S:      Supported
3867 F:      include/linux/capability.h
3868 F:      include/uapi/linux/capability.h
3869 F:      kernel/capability.c
3870 F:      security/commoncap.c
3871
3872 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3873 M:      Kevin Tsai <ktsai@capellamicro.com>
3874 S:      Maintained
3875 F:      drivers/iio/light/cm*
3876
3877 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3878 M:      Christian Lamparter <chunkeey@googlemail.com>
3879 L:      linux-wireless@vger.kernel.org
3880 S:      Maintained
3881 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
3882 F:      drivers/net/wireless/ath/carl9170/
3883
3884 CAVIUM I2C DRIVER
3885 M:      Robert Richter <rrichter@marvell.com>
3886 S:      Supported
3887 W:      http://www.marvell.com
3888 F:      drivers/i2c/busses/i2c-octeon*
3889 F:      drivers/i2c/busses/i2c-thunderx*
3890
3891 CAVIUM LIQUIDIO NETWORK DRIVER
3892 M:      Derek Chickles <dchickles@marvell.com>
3893 M:      Satanand Burla <sburla@marvell.com>
3894 M:      Felix Manlunas <fmanlunas@marvell.com>
3895 L:      netdev@vger.kernel.org
3896 S:      Supported
3897 W:      http://www.marvell.com
3898 F:      drivers/net/ethernet/cavium/liquidio/
3899
3900 CAVIUM MMC DRIVER
3901 M:      Robert Richter <rrichter@marvell.com>
3902 S:      Supported
3903 W:      http://www.marvell.com
3904 F:      drivers/mmc/host/cavium*
3905
3906 CAVIUM OCTEON-TX CRYPTO DRIVER
3907 M:      George Cherian <gcherian@marvell.com>
3908 L:      linux-crypto@vger.kernel.org
3909 S:      Supported
3910 W:      http://www.marvell.com
3911 F:      drivers/crypto/cavium/cpt/
3912
3913 CAVIUM THUNDERX2 ARM64 SOC
3914 M:      Robert Richter <rrichter@marvell.com>
3915 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3916 S:      Maintained
3917 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3918 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3919
3920 CC2520 IEEE-802.15.4 RADIO DRIVER
3921 M:      Varka Bhadram <varkabhadram@gmail.com>
3922 L:      linux-wpan@vger.kernel.org
3923 S:      Maintained
3924 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3925 F:      drivers/net/ieee802154/cc2520.c
3926 F:      include/linux/spi/cc2520.h
3927
3928 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3929 M:      Gilad Ben-Yossef <gilad@benyossef.com>
3930 L:      linux-crypto@vger.kernel.org
3931 S:      Supported
3932 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3933 F:      drivers/crypto/ccree/
3934
3935 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
3936 M:      Hadar Gat <hadar.gat@arm.com>
3937 L:      linux-crypto@vger.kernel.org
3938 S:      Supported
3939 F:      drivers/char/hw_random/cctrng.c
3940 F:      drivers/char/hw_random/cctrng.h
3941 F:      Documentation/devicetree/bindings/rng/arm-cctrng.txt
3942 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3943
3944 CEC FRAMEWORK
3945 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3946 L:      linux-media@vger.kernel.org
3947 S:      Supported
3948 W:      http://linuxtv.org
3949 T:      git git://linuxtv.org/media_tree.git
3950 F:      Documentation/ABI/testing/debugfs-cec-error-inj
3951 F:      Documentation/devicetree/bindings/media/cec.txt
3952 F:      Documentation/driver-api/media/cec-core.rst
3953 F:      Documentation/userspace-api/media/cec
3954 F:      drivers/media/cec/
3955 F:      drivers/media/rc/keymaps/rc-cec.c
3956 F:      include/media/cec-notifier.h
3957 F:      include/media/cec.h
3958 F:      include/uapi/linux/cec-funcs.h
3959 F:      include/uapi/linux/cec.h
3960
3961 CEC GPIO DRIVER
3962 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3963 L:      linux-media@vger.kernel.org
3964 S:      Supported
3965 W:      http://linuxtv.org
3966 T:      git git://linuxtv.org/media_tree.git
3967 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
3968 F:      drivers/media/platform/cec-gpio/
3969
3970 CELL BROADBAND ENGINE ARCHITECTURE
3971 M:      Arnd Bergmann <arnd@arndb.de>
3972 L:      linuxppc-dev@lists.ozlabs.org
3973 S:      Supported
3974 W:      http://www.ibm.com/developerworks/power/cell/
3975 F:      arch/powerpc/include/asm/cell*.h
3976 F:      arch/powerpc/include/asm/spu*.h
3977 F:      arch/powerpc/include/uapi/asm/spu*.h
3978 F:      arch/powerpc/oprofile/*cell*
3979 F:      arch/powerpc/platforms/cell/
3980
3981 CEPH COMMON CODE (LIBCEPH)
3982 M:      Ilya Dryomov <idryomov@gmail.com>
3983 M:      Jeff Layton <jlayton@kernel.org>
3984 L:      ceph-devel@vger.kernel.org
3985 S:      Supported
3986 W:      http://ceph.com/
3987 T:      git git://github.com/ceph/ceph-client.git
3988 F:      include/linux/ceph/
3989 F:      include/linux/crush/
3990 F:      net/ceph/
3991
3992 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3993 M:      Jeff Layton <jlayton@kernel.org>
3994 M:      Ilya Dryomov <idryomov@gmail.com>
3995 L:      ceph-devel@vger.kernel.org
3996 S:      Supported
3997 W:      http://ceph.com/
3998 T:      git git://github.com/ceph/ceph-client.git
3999 F:      Documentation/filesystems/ceph.rst
4000 F:      fs/ceph/
4001
4002 CERTIFICATE HANDLING
4003 M:      David Howells <dhowells@redhat.com>
4004 M:      David Woodhouse <dwmw2@infradead.org>
4005 L:      keyrings@vger.kernel.org
4006 S:      Maintained
4007 F:      Documentation/admin-guide/module-signing.rst
4008 F:      certs/
4009 F:      scripts/extract-cert.c
4010 F:      scripts/sign-file.c
4011
4012 CFAG12864B LCD DRIVER
4013 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4014 S:      Maintained
4015 F:      drivers/auxdisplay/cfag12864b.c
4016 F:      include/linux/cfag12864b.h
4017
4018 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4019 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4020 S:      Maintained
4021 F:      drivers/auxdisplay/cfag12864bfb.c
4022 F:      include/linux/cfag12864b.h
4023
4024 CHAR and MISC DRIVERS
4025 M:      Arnd Bergmann <arnd@arndb.de>
4026 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4027 S:      Supported
4028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4029 F:      drivers/char/
4030 F:      drivers/misc/
4031 F:      include/linux/miscdevice.h
4032
4033 CHECKPATCH
4034 M:      Andy Whitcroft <apw@canonical.com>
4035 M:      Joe Perches <joe@perches.com>
4036 S:      Maintained
4037 F:      scripts/checkpatch.pl
4038
4039 CHINESE DOCUMENTATION
4040 M:      Harry Wei <harryxiyou@gmail.com>
4041 M:      Alex Shi <alex.shi@linux.alibaba.com>
4042 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
4043 S:      Maintained
4044 F:      Documentation/translations/zh_CN/
4045
4046 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4047 M:      Peter Chen <Peter.Chen@nxp.com>
4048 L:      linux-usb@vger.kernel.org
4049 S:      Maintained
4050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4051 F:      drivers/usb/chipidea/
4052
4053 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4054 M:      Hans de Goede <hdegoede@redhat.com>
4055 L:      linux-input@vger.kernel.org
4056 S:      Maintained
4057 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4058 F:      drivers/input/touchscreen/chipone_icn8318.c
4059
4060 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4061 M:      Hans de Goede <hdegoede@redhat.com>
4062 L:      linux-input@vger.kernel.org
4063 S:      Maintained
4064 F:      drivers/input/touchscreen/chipone_icn8505.c
4065
4066 CHROME HARDWARE PLATFORM SUPPORT
4067 M:      Benson Leung <bleung@chromium.org>
4068 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4069 S:      Maintained
4070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4071 F:      drivers/platform/chrome/
4072
4073 CHROMEOS EC CODEC DRIVER
4074 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4075 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4076 R:      Guenter Roeck <groeck@chromium.org>
4077 S:      Maintained
4078 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4079 F:      sound/soc/codecs/cros_ec_codec.*
4080
4081 CHROMEOS EC SUBDRIVERS
4082 M:      Benson Leung <bleung@chromium.org>
4083 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4084 R:      Guenter Roeck <groeck@chromium.org>
4085 S:      Maintained
4086 F:      drivers/power/supply/cros_usbpd-charger.c
4087 N:      cros_ec
4088 N:      cros-ec
4089
4090 CIRRUS LOGIC AUDIO CODEC DRIVERS
4091 M:      James Schulman <james.schulman@cirrus.com>
4092 M:      David Rhodes <david.rhodes@cirrus.com>
4093 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4094 S:      Maintained
4095 F:      sound/soc/codecs/cs*
4096
4097 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4098 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4099 L:      netdev@vger.kernel.org
4100 S:      Maintained
4101 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4102
4103 CIRRUS LOGIC LOCHNAGAR DRIVER
4104 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4105 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4106 L:      patches@opensource.cirrus.com
4107 S:      Supported
4108 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4109 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4110 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4111 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4112 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4113 F:      Documentation/hwmon/lochnagar.rst
4114 F:      drivers/clk/clk-lochnagar.c
4115 F:      drivers/hwmon/lochnagar-hwmon.c
4116 F:      drivers/mfd/lochnagar-i2c.c
4117 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4118 F:      drivers/regulator/lochnagar-regulator.c
4119 F:      include/dt-bindings/clk/lochnagar.h
4120 F:      include/dt-bindings/pinctrl/lochnagar.h
4121 F:      include/linux/mfd/lochnagar*
4122 F:      sound/soc/codecs/lochnagar-sc.c
4123
4124 CIRRUS LOGIC MADERA CODEC DRIVERS
4125 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4126 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4127 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4128 L:      patches@opensource.cirrus.com
4129 S:      Supported
4130 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4131 T:      git https://github.com/CirrusLogic/linux-drivers.git
4132 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4133 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4134 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4135 F:      drivers/gpio/gpio-madera*
4136 F:      drivers/irqchip/irq-madera*
4137 F:      drivers/mfd/cs47l*
4138 F:      drivers/mfd/madera*
4139 F:      drivers/pinctrl/cirrus/*
4140 F:      include/dt-bindings/sound/madera*
4141 F:      include/linux/irqchip/irq-madera*
4142 F:      include/linux/mfd/madera/*
4143 F:      include/sound/madera*
4144 F:      sound/soc/codecs/cs47l*
4145 F:      sound/soc/codecs/madera*
4146
4147 CISCO FCOE HBA DRIVER
4148 M:      Satish Kharat <satishkh@cisco.com>
4149 M:      Sesidhar Baddela <sebaddel@cisco.com>
4150 M:      Karan Tilak Kumar <kartilak@cisco.com>
4151 L:      linux-scsi@vger.kernel.org
4152 S:      Supported
4153 F:      drivers/scsi/fnic/
4154
4155 CISCO SCSI HBA DRIVER
4156 M:      Karan Tilak Kumar <kartilak@cisco.com>
4157 M:      Sesidhar Baddela <sebaddel@cisco.com>
4158 L:      linux-scsi@vger.kernel.org
4159 S:      Supported
4160 F:      drivers/scsi/snic/
4161
4162 CISCO VIC ETHERNET NIC DRIVER
4163 M:      Christian Benvenuti <benve@cisco.com>
4164 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4165 S:      Supported
4166 F:      drivers/net/ethernet/cisco/enic/
4167
4168 CISCO VIC LOW LATENCY NIC DRIVER
4169 M:      Christian Benvenuti <benve@cisco.com>
4170 M:      Nelson Escobar <neescoba@cisco.com>
4171 M:      Parvi Kaustubhi <pkaustub@cisco.com>
4172 S:      Supported
4173 F:      drivers/infiniband/hw/usnic/
4174
4175 CLANG-FORMAT FILE
4176 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4177 S:      Maintained
4178 F:      .clang-format
4179
4180 CLANG/LLVM BUILD SUPPORT
4181 L:      clang-built-linux@googlegroups.com
4182 S:      Supported
4183 W:      https://clangbuiltlinux.github.io/
4184 B:      https://github.com/ClangBuiltLinux/linux/issues
4185 C:      irc://chat.freenode.net/clangbuiltlinux
4186 F:      Documentation/kbuild/llvm.rst
4187 K:      \b(?i:clang|llvm)\b
4188
4189 CLEANCACHE API
4190 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4191 L:      linux-kernel@vger.kernel.org
4192 S:      Maintained
4193 F:      include/linux/cleancache.h
4194 F:      mm/cleancache.c
4195
4196 CLK API
4197 M:      Russell King <linux@armlinux.org.uk>
4198 L:      linux-clk@vger.kernel.org
4199 S:      Maintained
4200 F:      include/linux/clk.h
4201
4202 CLOCKSOURCE, CLOCKEVENT DRIVERS
4203 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4204 M:      Thomas Gleixner <tglx@linutronix.de>
4205 L:      linux-kernel@vger.kernel.org
4206 S:      Supported
4207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4208 F:      Documentation/devicetree/bindings/timer/
4209 F:      drivers/clocksource/
4210
4211 CMPC ACPI DRIVER
4212 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4213 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4214 L:      platform-driver-x86@vger.kernel.org
4215 S:      Supported
4216 F:      drivers/platform/x86/classmate-laptop.c
4217
4218 COBALT MEDIA DRIVER
4219 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4220 L:      linux-media@vger.kernel.org
4221 S:      Supported
4222 W:      https://linuxtv.org
4223 T:      git git://linuxtv.org/media_tree.git
4224 F:      drivers/media/pci/cobalt/
4225
4226 COCCINELLE/Semantic Patches (SmPL)
4227 M:      Julia Lawall <Julia.Lawall@lip6.fr>
4228 M:      Gilles Muller <Gilles.Muller@lip6.fr>
4229 M:      Nicolas Palix <nicolas.palix@imag.fr>
4230 M:      Michal Marek <michal.lkml@markovi.net>
4231 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4232 S:      Supported
4233 W:      http://coccinelle.lip6.fr/
4234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4235 F:      Documentation/dev-tools/coccinelle.rst
4236 F:      scripts/coccicheck
4237 F:      scripts/coccinelle/
4238
4239 CODA FILE SYSTEM
4240 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4241 M:      coda@cs.cmu.edu
4242 L:      codalist@coda.cs.cmu.edu
4243 S:      Maintained
4244 W:      http://www.coda.cs.cmu.edu/
4245 F:      Documentation/filesystems/coda.rst
4246 F:      fs/coda/
4247 F:      include/linux/coda*.h
4248 F:      include/uapi/linux/coda*.h
4249
4250 CODA V4L2 MEM2MEM DRIVER
4251 M:      Philipp Zabel <p.zabel@pengutronix.de>
4252 L:      linux-media@vger.kernel.org
4253 S:      Maintained
4254 F:      Documentation/devicetree/bindings/media/coda.txt
4255 F:      drivers/media/platform/coda/
4256
4257 CODE OF CONDUCT
4258 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4259 S:      Supported
4260 F:      Documentation/process/code-of-conduct-interpretation.rst
4261 F:      Documentation/process/code-of-conduct.rst
4262
4263 COMMON CLK FRAMEWORK
4264 M:      Michael Turquette <mturquette@baylibre.com>
4265 M:      Stephen Boyd <sboyd@kernel.org>
4266 L:      linux-clk@vger.kernel.org
4267 S:      Maintained
4268 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4270 F:      Documentation/devicetree/bindings/clock/
4271 F:      drivers/clk/
4272 F:      include/linux/clk-pr*
4273 F:      include/linux/clk/
4274 F:      include/linux/of_clk.h
4275 X:      drivers/clk/clkdev.c
4276
4277 COMMON INTERNET FILE SYSTEM (CIFS)
4278 M:      Steve French <sfrench@samba.org>
4279 L:      linux-cifs@vger.kernel.org
4280 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4281 S:      Supported
4282 W:      http://linux-cifs.samba.org/
4283 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4284 F:      Documentation/admin-guide/cifs/
4285 F:      fs/cifs/
4286
4287 COMPACTPCI HOTPLUG CORE
4288 M:      Scott Murray <scott@spiteful.org>
4289 L:      linux-pci@vger.kernel.org
4290 S:      Maintained
4291 F:      drivers/pci/hotplug/cpci_hotplug*
4292
4293 COMPACTPCI HOTPLUG GENERIC DRIVER
4294 M:      Scott Murray <scott@spiteful.org>
4295 L:      linux-pci@vger.kernel.org
4296 S:      Maintained
4297 F:      drivers/pci/hotplug/cpcihp_generic.c
4298
4299 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4300 M:      Scott Murray <scott@spiteful.org>
4301 L:      linux-pci@vger.kernel.org
4302 S:      Maintained
4303 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4304
4305 COMPAL LAPTOP SUPPORT
4306 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4307 L:      platform-driver-x86@vger.kernel.org
4308 S:      Maintained
4309 F:      drivers/platform/x86/compal-laptop.c
4310
4311 COMPILER ATTRIBUTES
4312 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4313 S:      Maintained
4314 F:      include/linux/compiler_attributes.h
4315
4316 CONEXANT ACCESSRUNNER USB DRIVER
4317 L:      accessrunner-general@lists.sourceforge.net
4318 S:      Orphan
4319 W:      http://accessrunner.sourceforge.net/
4320 F:      drivers/usb/atm/cxacru.c
4321
4322 CONFIGFS
4323 M:      Joel Becker <jlbec@evilplan.org>
4324 M:      Christoph Hellwig <hch@lst.de>
4325 S:      Supported
4326 T:      git git://git.infradead.org/users/hch/configfs.git
4327 F:      fs/configfs/
4328 F:      include/linux/configfs.h
4329
4330 CONNECTOR
4331 M:      Evgeniy Polyakov <zbr@ioremap.net>
4332 L:      netdev@vger.kernel.org
4333 S:      Maintained
4334 F:      drivers/connector/
4335
4336 CONTROL GROUP (CGROUP)
4337 M:      Tejun Heo <tj@kernel.org>
4338 M:      Li Zefan <lizefan@huawei.com>
4339 M:      Johannes Weiner <hannes@cmpxchg.org>
4340 L:      cgroups@vger.kernel.org
4341 S:      Maintained
4342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4343 F:      Documentation/admin-guide/cgroup-v1/
4344 F:      Documentation/admin-guide/cgroup-v2.rst
4345 F:      include/linux/cgroup*
4346 F:      kernel/cgroup/
4347
4348 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4349 M:      Tejun Heo <tj@kernel.org>
4350 M:      Jens Axboe <axboe@kernel.dk>
4351 L:      cgroups@vger.kernel.org
4352 L:      linux-block@vger.kernel.org
4353 T:      git git://git.kernel.dk/linux-block
4354 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4355 F:      block/bfq-cgroup.c
4356 F:      block/blk-cgroup.c
4357 F:      block/blk-iolatency.c
4358 F:      block/blk-throttle.c
4359 F:      include/linux/blk-cgroup.h
4360
4361 CONTROL GROUP - CPUSET
4362 M:      Li Zefan <lizefan@huawei.com>
4363 L:      cgroups@vger.kernel.org
4364 S:      Maintained
4365 W:      http://www.bullopensource.org/cpuset/
4366 W:      http://oss.sgi.com/projects/cpusets/
4367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4368 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4369 F:      include/linux/cpuset.h
4370 F:      kernel/cgroup/cpuset.c
4371
4372 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4373 M:      Johannes Weiner <hannes@cmpxchg.org>
4374 M:      Michal Hocko <mhocko@kernel.org>
4375 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4376 L:      cgroups@vger.kernel.org
4377 L:      linux-mm@kvack.org
4378 S:      Maintained
4379 F:      mm/memcontrol.c
4380 F:      mm/swap_cgroup.c
4381
4382 CORETEMP HARDWARE MONITORING DRIVER
4383 M:      Fenghua Yu <fenghua.yu@intel.com>
4384 L:      linux-hwmon@vger.kernel.org
4385 S:      Maintained
4386 F:      Documentation/hwmon/coretemp.rst
4387 F:      drivers/hwmon/coretemp.c
4388
4389 COSA/SRP SYNC SERIAL DRIVER
4390 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4391 S:      Maintained
4392 W:      http://www.fi.muni.cz/~kas/cosa/
4393 F:      drivers/net/wan/cosa*
4394
4395 COUNTER SUBSYSTEM
4396 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4397 L:      linux-iio@vger.kernel.org
4398 S:      Maintained
4399 F:      Documentation/ABI/testing/sysfs-bus-counter*
4400 F:      Documentation/driver-api/generic-counter.rst
4401 F:      drivers/counter/
4402 F:      include/linux/counter.h
4403 F:      include/linux/counter_enum.h
4404
4405 CPMAC ETHERNET DRIVER
4406 M:      Florian Fainelli <f.fainelli@gmail.com>
4407 L:      netdev@vger.kernel.org
4408 S:      Maintained
4409 F:      drivers/net/ethernet/ti/cpmac.c
4410
4411 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4412 M:      Viresh Kumar <viresh.kumar@linaro.org>
4413 M:      Sudeep Holla <sudeep.holla@arm.com>
4414 L:      linux-pm@vger.kernel.org
4415 S:      Maintained
4416 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4417 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4418
4419 CPU FREQUENCY SCALING FRAMEWORK
4420 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4421 M:      Viresh Kumar <viresh.kumar@linaro.org>
4422 L:      linux-pm@vger.kernel.org
4423 S:      Maintained
4424 B:      https://bugzilla.kernel.org
4425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4427 F:      Documentation/admin-guide/pm/cpufreq.rst
4428 F:      Documentation/admin-guide/pm/intel_pstate.rst
4429 F:      Documentation/cpu-freq/
4430 F:      Documentation/devicetree/bindings/cpufreq/
4431 F:      drivers/cpufreq/
4432 F:      include/linux/cpufreq.h
4433 F:      include/linux/sched/cpufreq.h
4434 F:      kernel/sched/cpufreq*.c
4435 F:      tools/testing/selftests/cpufreq/
4436
4437 CPU IDLE TIME MANAGEMENT FRAMEWORK
4438 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4439 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4440 L:      linux-pm@vger.kernel.org
4441 S:      Maintained
4442 B:      https://bugzilla.kernel.org
4443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4444 F:      Documentation/admin-guide/pm/cpuidle.rst
4445 F:      Documentation/driver-api/pm/cpuidle.rst
4446 F:      drivers/cpuidle/*
4447 F:      include/linux/cpuidle.h
4448
4449 CPU POWER MONITORING SUBSYSTEM
4450 M:      Thomas Renninger <trenn@suse.com>
4451 M:      Shuah Khan <shuah@kernel.org>
4452 M:      Shuah Khan <skhan@linuxfoundation.org>
4453 L:      linux-pm@vger.kernel.org
4454 S:      Maintained
4455 F:      tools/power/cpupower/
4456
4457 CPUID/MSR DRIVER
4458 M:      "H. Peter Anvin" <hpa@zytor.com>
4459 S:      Maintained
4460 F:      arch/x86/kernel/cpuid.c
4461 F:      arch/x86/kernel/msr.c
4462
4463 CPUIDLE DRIVER - ARM BIG LITTLE
4464 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4465 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4466 L:      linux-pm@vger.kernel.org
4467 L:      linux-arm-kernel@lists.infradead.org
4468 S:      Maintained
4469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4470 F:      drivers/cpuidle/cpuidle-big_little.c
4471
4472 CPUIDLE DRIVER - ARM EXYNOS
4473 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4474 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4475 M:      Kukjin Kim <kgene@kernel.org>
4476 L:      linux-pm@vger.kernel.org
4477 L:      linux-samsung-soc@vger.kernel.org
4478 S:      Supported
4479 F:      arch/arm/mach-exynos/pm.c
4480 F:      drivers/cpuidle/cpuidle-exynos.c
4481
4482 CPUIDLE DRIVER - ARM PSCI
4483 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4484 M:      Sudeep Holla <sudeep.holla@arm.com>
4485 L:      linux-pm@vger.kernel.org
4486 L:      linux-arm-kernel@lists.infradead.org
4487 S:      Supported
4488 F:      drivers/cpuidle/cpuidle-psci.c
4489
4490 CRAMFS FILESYSTEM
4491 M:      Nicolas Pitre <nico@fluxnic.net>
4492 S:      Maintained
4493 F:      Documentation/filesystems/cramfs.rst
4494 F:      fs/cramfs/
4495
4496 CREATIVE SB0540
4497 M:      Bastien Nocera <hadess@hadess.net>
4498 L:      linux-input@vger.kernel.org
4499 S:      Maintained
4500 F:      drivers/hid/hid-creative-sb0540.c
4501
4502 CRYPTO API
4503 M:      Herbert Xu <herbert@gondor.apana.org.au>
4504 M:      "David S. Miller" <davem@davemloft.net>
4505 L:      linux-crypto@vger.kernel.org
4506 S:      Maintained
4507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4509 F:      Documentation/crypto/
4510 F:      Documentation/devicetree/bindings/crypto/
4511 F:      arch/*/crypto/
4512 F:      crypto/
4513 F:      drivers/crypto/
4514 F:      include/crypto/
4515 F:      include/linux/crypto*
4516 F:      lib/crypto/
4517
4518 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4519 M:      Neil Horman <nhorman@tuxdriver.com>
4520 L:      linux-crypto@vger.kernel.org
4521 S:      Maintained
4522 F:      crypto/ansi_cprng.c
4523 F:      crypto/rng.c
4524
4525 CS3308 MEDIA DRIVER
4526 M:      Hans Verkuil <hverkuil@xs4all.nl>
4527 L:      linux-media@vger.kernel.org
4528 S:      Odd Fixes
4529 W:      http://linuxtv.org
4530 T:      git git://linuxtv.org/media_tree.git
4531 F:      drivers/media/i2c/cs3308.c
4532
4533 CS5535 Audio ALSA driver
4534 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4535 S:      Maintained
4536 F:      sound/pci/cs5535audio/
4537
4538 CSI DRIVERS FOR ALLWINNER V3s
4539 M:      Yong Deng <yong.deng@magewell.com>
4540 L:      linux-media@vger.kernel.org
4541 S:      Maintained
4542 T:      git git://linuxtv.org/media_tree.git
4543 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4544 F:      drivers/media/platform/sunxi/sun6i-csi/
4545
4546 CW1200 WLAN driver
4547 M:      Solomon Peachy <pizza@shaftnet.org>
4548 S:      Maintained
4549 F:      drivers/net/wireless/st/cw1200/
4550
4551 CX18 VIDEO4LINUX DRIVER
4552 M:      Andy Walls <awalls@md.metrocast.net>
4553 L:      linux-media@vger.kernel.org
4554 S:      Maintained
4555 W:      https://linuxtv.org
4556 T:      git git://linuxtv.org/media_tree.git
4557 F:      drivers/media/pci/cx18/
4558 F:      include/uapi/linux/ivtv*
4559
4560 CX2341X MPEG ENCODER HELPER MODULE
4561 M:      Hans Verkuil <hverkuil@xs4all.nl>
4562 L:      linux-media@vger.kernel.org
4563 S:      Maintained
4564 W:      https://linuxtv.org
4565 T:      git git://linuxtv.org/media_tree.git
4566 F:      drivers/media/common/cx2341x*
4567 F:      include/media/drv-intf/cx2341x.h
4568
4569 CX24120 MEDIA DRIVER
4570 M:      Jemma Denson <jdenson@gmail.com>
4571 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4572 L:      linux-media@vger.kernel.org
4573 S:      Maintained
4574 W:      https://linuxtv.org
4575 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4576 F:      drivers/media/dvb-frontends/cx24120*
4577
4578 CX88 VIDEO4LINUX DRIVER
4579 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4580 L:      linux-media@vger.kernel.org
4581 S:      Odd fixes
4582 W:      https://linuxtv.org
4583 T:      git git://linuxtv.org/media_tree.git
4584 F:      Documentation/driver-api/media/drivers/cx88*
4585 F:      drivers/media/pci/cx88/
4586
4587 CXD2820R MEDIA DRIVER
4588 M:      Antti Palosaari <crope@iki.fi>
4589 L:      linux-media@vger.kernel.org
4590 S:      Maintained
4591 W:      https://linuxtv.org
4592 W:      http://palosaari.fi/linux/
4593 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4594 T:      git git://linuxtv.org/anttip/media_tree.git
4595 F:      drivers/media/dvb-frontends/cxd2820r*
4596
4597 CXGB3 ETHERNET DRIVER (CXGB3)
4598 M:      Vishal Kulkarni <vishal@chelsio.com>
4599 L:      netdev@vger.kernel.org
4600 S:      Supported
4601 W:      http://www.chelsio.com
4602 F:      drivers/net/ethernet/chelsio/cxgb3/
4603
4604 CXGB3 ISCSI DRIVER (CXGB3I)
4605 M:      Karen Xie <kxie@chelsio.com>
4606 L:      linux-scsi@vger.kernel.org
4607 S:      Supported
4608 W:      http://www.chelsio.com
4609 F:      drivers/scsi/cxgbi/cxgb3i
4610
4611 CXGB4 CRYPTO DRIVER (chcr)
4612 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4613 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4614 M:      Rohit Maheshwari <rohitm@chelsio.com>
4615 L:      linux-crypto@vger.kernel.org
4616 S:      Supported
4617 W:      http://www.chelsio.com
4618 F:      drivers/crypto/chelsio
4619
4620 CXGB4 ETHERNET DRIVER (CXGB4)
4621 M:      Vishal Kulkarni <vishal@chelsio.com>
4622 L:      netdev@vger.kernel.org
4623 S:      Supported
4624 W:      http://www.chelsio.com
4625 F:      drivers/net/ethernet/chelsio/cxgb4/
4626
4627 CXGB4 ISCSI DRIVER (CXGB4I)
4628 M:      Karen Xie <kxie@chelsio.com>
4629 L:      linux-scsi@vger.kernel.org
4630 S:      Supported
4631 W:      http://www.chelsio.com
4632 F:      drivers/scsi/cxgbi/cxgb4i
4633
4634 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4635 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4636 L:      linux-rdma@vger.kernel.org
4637 S:      Supported
4638 W:      http://www.openfabrics.org
4639 F:      drivers/infiniband/hw/cxgb4/
4640 F:      include/uapi/rdma/cxgb4-abi.h
4641
4642 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4643 M:      Vishal Kulkarni <vishal@gmail.com>
4644 L:      netdev@vger.kernel.org
4645 S:      Supported
4646 W:      http://www.chelsio.com
4647 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4648
4649 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4650 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4651 M:      Andrew Donnellan <ajd@linux.ibm.com>
4652 L:      linuxppc-dev@lists.ozlabs.org
4653 S:      Supported
4654 F:      Documentation/ABI/testing/sysfs-class-cxl
4655 F:      Documentation/powerpc/cxl.rst
4656 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4657 F:      drivers/misc/cxl/
4658 F:      include/misc/cxl*
4659 F:      include/uapi/misc/cxl.h
4660
4661 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4662 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4663 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4664 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4665 L:      linux-scsi@vger.kernel.org
4666 S:      Supported
4667 F:      Documentation/powerpc/cxlflash.rst
4668 F:      drivers/scsi/cxlflash/
4669 F:      include/uapi/scsi/cxlflash_ioctl.h
4670
4671 CYBERPRO FB DRIVER
4672 M:      Russell King <linux@armlinux.org.uk>
4673 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4674 S:      Maintained
4675 W:      http://www.armlinux.org.uk/
4676 F:      drivers/video/fbdev/cyber2000fb.*
4677
4678 CYCLADES ASYNC MUX DRIVER
4679 S:      Orphan
4680 W:      http://www.cyclades.com/
4681 F:      drivers/tty/cyclades.c
4682 F:      include/linux/cyclades.h
4683 F:      include/uapi/linux/cyclades.h
4684
4685 CYCLADES PC300 DRIVER
4686 S:      Orphan
4687 W:      http://www.cyclades.com/
4688 F:      drivers/net/wan/pc300*
4689
4690 CYPRESS_FIRMWARE MEDIA DRIVER
4691 M:      Antti Palosaari <crope@iki.fi>
4692 L:      linux-media@vger.kernel.org
4693 S:      Maintained
4694 W:      https://linuxtv.org
4695 W:      http://palosaari.fi/linux/
4696 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4697 T:      git git://linuxtv.org/anttip/media_tree.git
4698 F:      drivers/media/common/cypress_firmware*
4699
4700 CYTTSP TOUCHSCREEN DRIVER
4701 M:      Ferruh Yigit <fery@cypress.com>
4702 L:      linux-input@vger.kernel.org
4703 S:      Supported
4704 F:      drivers/input/touchscreen/cyttsp*
4705 F:      include/linux/input/cyttsp.h
4706
4707 D-LINK DIR-685 TOUCHKEYS DRIVER
4708 M:      Linus Walleij <linus.walleij@linaro.org>
4709 L:      linux-input@vger.kernel.org
4710 S:      Supported
4711 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4712
4713 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4714 M:      Joshua Kinard <kumba@gentoo.org>
4715 S:      Maintained
4716 F:      drivers/rtc/rtc-ds1685.c
4717 F:      include/linux/rtc/ds1685.h
4718
4719 DAMA SLAVE for AX.25
4720 M:      Joerg Reuter <jreuter@yaina.de>
4721 L:      linux-hams@vger.kernel.org
4722 S:      Maintained
4723 W:      http://yaina.de/jreuter/
4724 W:      http://www.qsl.net/dl1bke/
4725 F:      net/ax25/af_ax25.c
4726 F:      net/ax25/ax25_dev.c
4727 F:      net/ax25/ax25_ds_*
4728 F:      net/ax25/ax25_in.c
4729 F:      net/ax25/ax25_out.c
4730 F:      net/ax25/ax25_timer.c
4731 F:      net/ax25/sysctl_net_ax25.c
4732
4733 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4734 L:      netdev@vger.kernel.org
4735 S:      Orphan
4736 F:      Documentation/networking/device_drivers/dec/dmfe.rst
4737 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4738
4739 DC390/AM53C974 SCSI driver
4740 M:      Hannes Reinecke <hare@suse.com>
4741 L:      linux-scsi@vger.kernel.org
4742 S:      Maintained
4743 F:      drivers/scsi/am53c974.c
4744
4745 DC395x SCSI driver
4746 M:      Oliver Neukum <oliver@neukum.org>
4747 M:      Ali Akcaagac <aliakc@web.de>
4748 M:      Jamie Lenehan <lenehan@twibble.org>
4749 L:      dc395x@twibble.org
4750 S:      Maintained
4751 W:      http://twibble.org/dist/dc395x/
4752 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4753 F:      Documentation/scsi/dc395x.rst
4754 F:      drivers/scsi/dc395x.*
4755
4756 DCCP PROTOCOL
4757 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
4758 L:      dccp@vger.kernel.org
4759 S:      Maintained
4760 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4761 F:      include/linux/dccp.h
4762 F:      include/linux/tfrc.h
4763 F:      include/uapi/linux/dccp.h
4764 F:      net/dccp/
4765
4766 DECnet NETWORK LAYER
4767 L:      linux-decnet-user@lists.sourceforge.net
4768 S:      Orphan
4769 W:      http://linux-decnet.sourceforge.net
4770 F:      Documentation/networking/decnet.rst
4771 F:      net/decnet/
4772
4773 DECSTATION PLATFORM SUPPORT
4774 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4775 L:      linux-mips@vger.kernel.org
4776 S:      Maintained
4777 W:      http://www.linux-mips.org/wiki/DECstation
4778 F:      arch/mips/dec/
4779 F:      arch/mips/include/asm/dec/
4780 F:      arch/mips/include/asm/mach-dec/
4781
4782 DEFXX FDDI NETWORK DRIVER
4783 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4784 S:      Maintained
4785 F:      drivers/net/fddi/defxx.*
4786
4787 DEFZA FDDI NETWORK DRIVER
4788 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4789 S:      Maintained
4790 F:      drivers/net/fddi/defza.*
4791
4792 DEINTERLACE DRIVERS FOR ALLWINNER H3
4793 M:      Jernej Skrabec <jernej.skrabec@siol.net>
4794 L:      linux-media@vger.kernel.org
4795 S:      Maintained
4796 T:      git git://linuxtv.org/media_tree.git
4797 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4798 F:      drivers/media/platform/sunxi/sun8i-di/
4799
4800 DELL LAPTOP DRIVER
4801 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4802 M:      Pali Rohár <pali@kernel.org>
4803 L:      platform-driver-x86@vger.kernel.org
4804 S:      Maintained
4805 F:      drivers/platform/x86/dell-laptop.c
4806
4807 DELL LAPTOP FREEFALL DRIVER
4808 M:      Pali Rohár <pali@kernel.org>
4809 S:      Maintained
4810 F:      drivers/platform/x86/dell-smo8800.c
4811
4812 DELL LAPTOP RBTN DRIVER
4813 M:      Pali Rohár <pali@kernel.org>
4814 S:      Maintained
4815 F:      drivers/platform/x86/dell-rbtn.*
4816
4817 DELL LAPTOP SMM DRIVER
4818 M:      Pali Rohár <pali@kernel.org>
4819 S:      Maintained
4820 F:      drivers/hwmon/dell-smm-hwmon.c
4821 F:      include/uapi/linux/i8k.h
4822
4823 DELL REMOTE BIOS UPDATE DRIVER
4824 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4825 L:      platform-driver-x86@vger.kernel.org
4826 S:      Maintained
4827 F:      drivers/platform/x86/dell_rbu.c
4828
4829 DELL SMBIOS DRIVER
4830 M:      Pali Rohár <pali@kernel.org>
4831 M:      Mario Limonciello <mario.limonciello@dell.com>
4832 L:      platform-driver-x86@vger.kernel.org
4833 S:      Maintained
4834 F:      drivers/platform/x86/dell-smbios.*
4835
4836 DELL SMBIOS SMM DRIVER
4837 M:      Mario Limonciello <mario.limonciello@dell.com>
4838 L:      platform-driver-x86@vger.kernel.org
4839 S:      Maintained
4840 F:      drivers/platform/x86/dell-smbios-smm.c
4841
4842 DELL SMBIOS WMI DRIVER
4843 M:      Mario Limonciello <mario.limonciello@dell.com>
4844 L:      platform-driver-x86@vger.kernel.org
4845 S:      Maintained
4846 F:      drivers/platform/x86/dell-smbios-wmi.c
4847 F:      tools/wmi/dell-smbios-example.c
4848
4849 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4850 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4851 L:      platform-driver-x86@vger.kernel.org
4852 S:      Maintained
4853 F:      Documentation/driver-api/dcdbas.rst
4854 F:      drivers/platform/x86/dcdbas.*
4855
4856 DELL WMI DESCRIPTOR DRIVER
4857 M:      Mario Limonciello <mario.limonciello@dell.com>
4858 S:      Maintained
4859 F:      drivers/platform/x86/dell-wmi-descriptor.c
4860
4861 DELL WMI NOTIFICATIONS DRIVER
4862 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4863 M:      Pali Rohár <pali@kernel.org>
4864 S:      Maintained
4865 F:      drivers/platform/x86/dell-wmi.c
4866
4867 DELTA ST MEDIA DRIVER
4868 M:      Hugues Fruchet <hugues.fruchet@st.com>
4869 L:      linux-media@vger.kernel.org
4870 S:      Supported
4871 W:      https://linuxtv.org
4872 T:      git git://linuxtv.org/media_tree.git
4873 F:      drivers/media/platform/sti/delta
4874
4875 DENALI NAND DRIVER
4876 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
4877 L:      linux-mtd@lists.infradead.org
4878 S:      Supported
4879 F:      drivers/mtd/nand/raw/denali*
4880
4881 DESIGNWARE EDMA CORE IP DRIVER
4882 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
4883 L:      dmaengine@vger.kernel.org
4884 S:      Maintained
4885 F:      drivers/dma/dw-edma/
4886 F:      include/linux/dma/edma.h
4887
4888 DESIGNWARE USB2 DRD IP DRIVER
4889 M:      Minas Harutyunyan <hminas@synopsys.com>
4890 L:      linux-usb@vger.kernel.org
4891 S:      Maintained
4892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4893 F:      drivers/usb/dwc2/
4894
4895 DESIGNWARE USB3 DRD IP DRIVER
4896 M:      Felipe Balbi <balbi@kernel.org>
4897 L:      linux-usb@vger.kernel.org
4898 S:      Maintained
4899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4900 F:      drivers/usb/dwc3/
4901
4902 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4903 M:      Andreas Klinger <ak@it-klinger.de>
4904 L:      linux-iio@vger.kernel.org
4905 S:      Maintained
4906 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4907 F:      drivers/iio/proximity/srf*.c
4908
4909 DEVICE COREDUMP (DEV_COREDUMP)
4910 M:      Johannes Berg <johannes@sipsolutions.net>
4911 L:      linux-kernel@vger.kernel.org
4912 S:      Maintained
4913 F:      drivers/base/devcoredump.c
4914 F:      include/linux/devcoredump.h
4915
4916 DEVICE DIRECT ACCESS (DAX)
4917 M:      Dan Williams <dan.j.williams@intel.com>
4918 M:      Vishal Verma <vishal.l.verma@intel.com>
4919 M:      Dave Jiang <dave.jiang@intel.com>
4920 L:      linux-nvdimm@lists.01.org
4921 S:      Supported
4922 F:      drivers/dax/
4923
4924 DEVICE FREQUENCY (DEVFREQ)
4925 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4926 M:      Kyungmin Park <kyungmin.park@samsung.com>
4927 M:      Chanwoo Choi <cw00.choi@samsung.com>
4928 L:      linux-pm@vger.kernel.org
4929 S:      Maintained
4930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4931 F:      Documentation/devicetree/bindings/devfreq/
4932 F:      drivers/devfreq/
4933 F:      include/linux/devfreq.h
4934 F:      include/trace/events/devfreq.h
4935
4936 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4937 M:      Chanwoo Choi <cw00.choi@samsung.com>
4938 L:      linux-pm@vger.kernel.org
4939 S:      Supported
4940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4941 F:      Documentation/devicetree/bindings/devfreq/event/
4942 F:      drivers/devfreq/devfreq-event.c
4943 F:      drivers/devfreq/event/
4944 F:      include/dt-bindings/pmu/exynos_ppmu.h
4945 F:      include/linux/devfreq-event.h
4946
4947 DEVICE NUMBER REGISTRY
4948 M:      Torben Mathiasen <device@lanana.org>
4949 S:      Maintained
4950 W:      http://lanana.org/docs/device-list/index.html
4951
4952 DEVICE-MAPPER  (LVM)
4953 M:      Alasdair Kergon <agk@redhat.com>
4954 M:      Mike Snitzer <snitzer@redhat.com>
4955 M:      dm-devel@redhat.com
4956 L:      dm-devel@redhat.com
4957 S:      Maintained
4958 W:      http://sources.redhat.com/dm
4959 Q:      http://patchwork.kernel.org/project/dm-devel/list/
4960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4961 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
4962 F:      Documentation/admin-guide/device-mapper/
4963 F:      drivers/md/Kconfig
4964 F:      drivers/md/Makefile
4965 F:      drivers/md/dm*
4966 F:      drivers/md/persistent-data/
4967 F:      include/linux/device-mapper.h
4968 F:      include/linux/dm-*.h
4969 F:      include/uapi/linux/dm-*.h
4970
4971 DEVLINK
4972 M:      Jiri Pirko <jiri@mellanox.com>
4973 L:      netdev@vger.kernel.org
4974 S:      Supported
4975 F:      Documentation/networking/devlink
4976 F:      include/net/devlink.h
4977 F:      include/uapi/linux/devlink.h
4978 F:      net/core/devlink.c
4979
4980 DIALOG SEMICONDUCTOR DRIVERS
4981 M:      Support Opensource <support.opensource@diasemi.com>
4982 S:      Supported
4983 W:      http://www.dialog-semiconductor.com/products
4984 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
4985 F:      Documentation/devicetree/bindings/mfd/da90*.txt
4986 F:      Documentation/devicetree/bindings/regulator/da92*.txt
4987 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
4988 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
4989 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4990 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
4991 F:      Documentation/hwmon/da90??.rst
4992 F:      drivers/gpio/gpio-da90??.c
4993 F:      drivers/hwmon/da90??-hwmon.c
4994 F:      drivers/iio/adc/da91??-*.c
4995 F:      drivers/input/misc/da90??_onkey.c
4996 F:      drivers/input/touchscreen/da9052_tsi.c
4997 F:      drivers/leds/leds-da90??.c
4998 F:      drivers/mfd/da903x.c
4999 F:      drivers/mfd/da90??-*.c
5000 F:      drivers/mfd/da91??-*.c
5001 F:      drivers/pinctrl/pinctrl-da90??.c
5002 F:      drivers/power/supply/da9052-battery.c
5003 F:      drivers/power/supply/da91??-*.c
5004 F:      drivers/regulator/da903x.c
5005 F:      drivers/regulator/da9???-regulator.[ch]
5006 F:      drivers/regulator/slg51000-regulator.[ch]
5007 F:      drivers/rtc/rtc-da90??.c
5008 F:      drivers/thermal/da90??-thermal.c
5009 F:      drivers/video/backlight/da90??_bl.c
5010 F:      drivers/watchdog/da90??_wdt.c
5011 F:      include/linux/mfd/da903x.h
5012 F:      include/linux/mfd/da9052/
5013 F:      include/linux/mfd/da9055/
5014 F:      include/linux/mfd/da9062/
5015 F:      include/linux/mfd/da9063/
5016 F:      include/linux/mfd/da9150/
5017 F:      include/linux/regulator/da9211.h
5018 F:      include/sound/da[79]*.h
5019 F:      sound/soc/codecs/da[79]*.[ch]
5020
5021 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5022 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5023 L:      linux-gpio@vger.kernel.org
5024 S:      Maintained
5025 F:      drivers/gpio/gpio-gpio-mm.c
5026
5027 DIOLAN U2C-12 I2C DRIVER
5028 M:      Guenter Roeck <linux@roeck-us.net>
5029 L:      linux-i2c@vger.kernel.org
5030 S:      Maintained
5031 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5032
5033 DIRECTORY NOTIFICATION (DNOTIFY)
5034 M:      Jan Kara <jack@suse.cz>
5035 R:      Amir Goldstein <amir73il@gmail.com>
5036 L:      linux-fsdevel@vger.kernel.org
5037 S:      Maintained
5038 F:      Documentation/filesystems/dnotify.rst
5039 F:      fs/notify/dnotify/
5040 F:      include/linux/dnotify.h
5041
5042 DISK GEOMETRY AND PARTITION HANDLING
5043 M:      Andries Brouwer <aeb@cwi.nl>
5044 S:      Maintained
5045 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5046 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5047 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5048
5049 DISKQUOTA
5050 M:      Jan Kara <jack@suse.com>
5051 S:      Maintained
5052 F:      Documentation/filesystems/quota.rst
5053 F:      fs/quota/
5054 F:      include/linux/quota*.h
5055 F:      include/uapi/linux/quota*.h
5056
5057 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5058 M:      Bernie Thompson <bernie@plugable.com>
5059 L:      linux-fbdev@vger.kernel.org
5060 S:      Maintained
5061 W:      http://plugable.com/category/projects/udlfb/
5062 F:      Documentation/fb/udlfb.rst
5063 F:      drivers/video/fbdev/udlfb.c
5064 F:      include/video/udlfb.h
5065
5066 DISTRIBUTED LOCK MANAGER (DLM)
5067 M:      Christine Caulfield <ccaulfie@redhat.com>
5068 M:      David Teigland <teigland@redhat.com>
5069 L:      cluster-devel@redhat.com
5070 S:      Supported
5071 W:      http://sources.redhat.com/cluster/
5072 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5073 F:      fs/dlm/
5074
5075 DMA BUFFER SHARING FRAMEWORK
5076 M:      Sumit Semwal <sumit.semwal@linaro.org>
5077 L:      linux-media@vger.kernel.org
5078 L:      dri-devel@lists.freedesktop.org
5079 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5080 S:      Maintained
5081 T:      git git://anongit.freedesktop.org/drm/drm-misc
5082 F:      Documentation/driver-api/dma-buf.rst
5083 F:      drivers/dma-buf/
5084 F:      include/linux/*fence.h
5085 F:      include/linux/dma-buf*
5086 F:      include/linux/dma-resv.h
5087 K:      \bdma_(?:buf|fence|resv)\b
5088
5089 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5090 M:      Vinod Koul <vkoul@kernel.org>
5091 L:      dmaengine@vger.kernel.org
5092 S:      Maintained
5093 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5094 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
5095 F:      Documentation/devicetree/bindings/dma/
5096 F:      Documentation/driver-api/dmaengine/
5097 F:      drivers/dma/
5098 F:      include/linux/dmaengine.h
5099 F:      include/linux/of_dma.h
5100
5101 DMA MAPPING HELPERS
5102 M:      Christoph Hellwig <hch@lst.de>
5103 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5104 R:      Robin Murphy <robin.murphy@arm.com>
5105 L:      iommu@lists.linux-foundation.org
5106 S:      Supported
5107 W:      http://git.infradead.org/users/hch/dma-mapping.git
5108 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5109 F:      include/asm-generic/dma-mapping.h
5110 F:      include/linux/dma-direct.h
5111 F:      include/linux/dma-mapping.h
5112 F:      include/linux/dma-noncoherent.h
5113 F:      kernel/dma/
5114
5115 DMA-BUF HEAPS FRAMEWORK
5116 M:      Sumit Semwal <sumit.semwal@linaro.org>
5117 R:      Andrew F. Davis <afd@ti.com>
5118 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5119 R:      Liam Mark <lmark@codeaurora.org>
5120 R:      Laura Abbott <labbott@redhat.com>
5121 R:      Brian Starkey <Brian.Starkey@arm.com>
5122 R:      John Stultz <john.stultz@linaro.org>
5123 L:      linux-media@vger.kernel.org
5124 L:      dri-devel@lists.freedesktop.org
5125 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5126 S:      Maintained
5127 T:      git git://anongit.freedesktop.org/drm/drm-misc
5128 F:      drivers/dma-buf/dma-heap.c
5129 F:      drivers/dma-buf/heaps/*
5130 F:      include/linux/dma-heap.h
5131 F:      include/uapi/linux/dma-heap.h
5132
5133 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5134 M:      Lukasz Luba <lukasz.luba@arm.com>
5135 L:      linux-pm@vger.kernel.org
5136 L:      linux-samsung-soc@vger.kernel.org
5137 S:      Maintained
5138 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5139 F:      drivers/memory/samsung/exynos5422-dmc.c
5140
5141 DME1737 HARDWARE MONITOR DRIVER
5142 M:      Juerg Haefliger <juergh@gmail.com>
5143 L:      linux-hwmon@vger.kernel.org
5144 S:      Maintained
5145 F:      Documentation/hwmon/dme1737.rst
5146 F:      drivers/hwmon/dme1737.c
5147
5148 DMI/SMBIOS SUPPORT
5149 M:      Jean Delvare <jdelvare@suse.com>
5150 S:      Maintained
5151 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5152 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5153 F:      drivers/firmware/dmi-id.c
5154 F:      drivers/firmware/dmi_scan.c
5155 F:      include/linux/dmi.h
5156
5157 DOCUMENTATION
5158 M:      Jonathan Corbet <corbet@lwn.net>
5159 L:      linux-doc@vger.kernel.org
5160 S:      Maintained
5161 T:      git git://git.lwn.net/linux.git docs-next
5162 F:      Documentation/
5163 F:      scripts/documentation-file-ref-check
5164 F:      scripts/kernel-doc
5165 F:      scripts/sphinx-pre-install
5166 X:      Documentation/ABI/
5167 X:      Documentation/admin-guide/media/
5168 X:      Documentation/devicetree/
5169 X:      Documentation/driver-api/media/
5170 X:      Documentation/firmware-guide/acpi/
5171 X:      Documentation/i2c/
5172 X:      Documentation/power/
5173 X:      Documentation/spi/
5174 X:      Documentation/userspace-api/media/
5175
5176 DOCUMENTATION SCRIPTS
5177 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5178 L:      linux-doc@vger.kernel.org
5179 S:      Maintained
5180 F:      Documentation/sphinx/parse-headers.pl
5181 F:      scripts/documentation-file-ref-check
5182 F:      scripts/sphinx-pre-install
5183
5184 DOCUMENTATION/ITALIAN
5185 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5186 L:      linux-doc@vger.kernel.org
5187 S:      Maintained
5188 F:      Documentation/translations/it_IT
5189
5190 DONGWOON DW9714 LENS VOICE COIL DRIVER
5191 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5192 L:      linux-media@vger.kernel.org
5193 S:      Maintained
5194 T:      git git://linuxtv.org/media_tree.git
5195 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5196 F:      drivers/media/i2c/dw9714.c
5197
5198 DONGWOON DW9807 LENS VOICE COIL DRIVER
5199 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5200 L:      linux-media@vger.kernel.org
5201 S:      Maintained
5202 T:      git git://linuxtv.org/media_tree.git
5203 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5204 F:      drivers/media/i2c/dw9807-vcm.c
5205
5206 DOUBLETALK DRIVER
5207 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5208 L:      blinux-list@redhat.com
5209 S:      Maintained
5210 F:      drivers/char/dtlk.c
5211 F:      include/linux/dtlk.h
5212
5213 DPAA2 DATAPATH I/O (DPIO) DRIVER
5214 M:      Roy Pledge <Roy.Pledge@nxp.com>
5215 L:      linux-kernel@vger.kernel.org
5216 S:      Maintained
5217 F:      drivers/soc/fsl/dpio
5218
5219 DPAA2 ETHERNET DRIVER
5220 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5221 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5222 L:      netdev@vger.kernel.org
5223 S:      Maintained
5224 F:      Documentation/networking/device_drivers/freescale/dpaa2/ethernet-driver.rst
5225 F:      Documentation/networking/device_drivers/freescale/dpaa2/mac-phy-support.rst
5226 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5227 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5228 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5229 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5230 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5231 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5232 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5233
5234 DPAA2 ETHERNET SWITCH DRIVER
5235 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5236 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5237 L:      linux-kernel@vger.kernel.org
5238 S:      Maintained
5239 F:      drivers/staging/fsl-dpaa2/ethsw
5240
5241 DPT_I2O SCSI RAID DRIVER
5242 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5243 L:      linux-scsi@vger.kernel.org
5244 S:      Maintained
5245 W:      http://www.adaptec.com/
5246 F:      drivers/scsi/dpt*
5247 F:      drivers/scsi/dpt/
5248
5249 DRBD DRIVER
5250 M:      Philipp Reisner <philipp.reisner@linbit.com>
5251 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5252 L:      drbd-dev@lists.linbit.com
5253 S:      Supported
5254 W:      http://www.drbd.org
5255 T:      git git://git.linbit.com/linux-drbd.git
5256 T:      git git://git.linbit.com/drbd-8.4.git
5257 F:      Documentation/admin-guide/blockdev/
5258 F:      drivers/block/drbd/
5259 F:      lib/lru_cache.c
5260
5261 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5262 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5263 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5264 S:      Supported
5265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5266 F:      Documentation/core-api/kobject.rst
5267 F:      drivers/base/
5268 F:      fs/debugfs/
5269 F:      fs/sysfs/
5270 F:      include/linux/debugfs.h
5271 F:      include/linux/kobj*
5272 F:      lib/kobj*
5273
5274 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
5275 M:      Kevin Hilman <khilman@kernel.org>
5276 M:      Nishanth Menon <nm@ti.com>
5277 L:      linux-pm@vger.kernel.org
5278 S:      Maintained
5279 F:      drivers/power/avs/
5280 F:      include/linux/power/smartreflex.h
5281
5282 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5283 M:      Maxime Ripard <mripard@kernel.org>
5284 M:      Chen-Yu Tsai <wens@csie.org>
5285 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5286 L:      dri-devel@lists.freedesktop.org
5287 S:      Supported
5288 T:      git git://anongit.freedesktop.org/drm/drm-misc
5289 F:      drivers/gpu/drm/sun4i/sun8i*
5290
5291 DRM DRIVER FOR ARM PL111 CLCD
5292 M:      Eric Anholt <eric@anholt.net>
5293 S:      Supported
5294 T:      git git://anongit.freedesktop.org/drm/drm-misc
5295 F:      drivers/gpu/drm/pl111/
5296
5297 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5298 M:      Linus Walleij <linus.walleij@linaro.org>
5299 S:      Maintained
5300 T:      git git://anongit.freedesktop.org/drm/drm-misc
5301 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5302 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5303
5304 DRM DRIVER FOR ASPEED BMC GFX
5305 M:      Joel Stanley <joel@jms.id.au>
5306 L:      linux-aspeed@lists.ozlabs.org
5307 S:      Supported
5308 T:      git git://anongit.freedesktop.org/drm/drm-misc
5309 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5310 F:      drivers/gpu/drm/aspeed/
5311
5312 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5313 M:      Dave Airlie <airlied@redhat.com>
5314 S:      Odd Fixes
5315 F:      drivers/gpu/drm/ast/
5316
5317 DRM DRIVER FOR BOCHS VIRTUAL GPU
5318 M:      Gerd Hoffmann <kraxel@redhat.com>
5319 L:      virtualization@lists.linux-foundation.org
5320 S:      Maintained
5321 T:      git git://anongit.freedesktop.org/drm/drm-misc
5322 F:      drivers/gpu/drm/bochs/
5323
5324 DRM DRIVER FOR BOE HIMAX8279D PANELS
5325 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5326 S:      Maintained
5327 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5328 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5329
5330 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5331 M:      Linus Walleij <linus.walleij@linaro.org>
5332 S:      Maintained
5333 T:      git git://anongit.freedesktop.org/drm/drm-misc
5334 F:      drivers/gpu/drm/tve200/
5335
5336 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5337 M:      Icenowy Zheng <icenowy@aosc.io>
5338 S:      Maintained
5339 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5340 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5341
5342 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5343 M:      Jagan Teki <jagan@amarulasolutions.com>
5344 S:      Maintained
5345 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5346 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5347
5348 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5349 M:      Hans de Goede <hdegoede@redhat.com>
5350 S:      Maintained
5351 T:      git git://anongit.freedesktop.org/drm/drm-misc
5352 F:      drivers/gpu/drm/tiny/gm12u320.c
5353
5354 DRM DRIVER FOR HX8357D PANELS
5355 M:      Eric Anholt <eric@anholt.net>
5356 S:      Maintained
5357 T:      git git://anongit.freedesktop.org/drm/drm-misc
5358 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5359 F:      drivers/gpu/drm/tiny/hx8357d.c
5360
5361 DRM DRIVER FOR ILITEK ILI9225 PANELS
5362 M:      David Lechner <david@lechnology.com>
5363 S:      Maintained
5364 T:      git git://anongit.freedesktop.org/drm/drm-misc
5365 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5366 F:      drivers/gpu/drm/tiny/ili9225.c
5367
5368 DRM DRIVER FOR ILITEK ILI9486 PANELS
5369 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5370 S:      Maintained
5371 T:      git git://anongit.freedesktop.org/drm/drm-misc
5372 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5373 F:      drivers/gpu/drm/tiny/ili9486.c
5374
5375 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5376 S:      Orphan / Obsolete
5377 F:      drivers/gpu/drm/i810/
5378 F:      include/uapi/drm/i810_drm.h
5379
5380 DRM DRIVER FOR LVDS PANELS
5381 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5382 L:      dri-devel@lists.freedesktop.org
5383 T:      git git://anongit.freedesktop.org/drm/drm-misc
5384 S:      Maintained
5385 F:      drivers/gpu/drm/panel/panel-lvds.c
5386 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5387
5388 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5389 S:      Orphan / Obsolete
5390 F:      drivers/gpu/drm/mga/
5391 F:      include/uapi/drm/mga_drm.h
5392
5393 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
5394 M:      Dave Airlie <airlied@redhat.com>
5395 S:      Odd Fixes
5396 F:      drivers/gpu/drm/mgag200/
5397
5398 DRM DRIVER FOR MI0283QT
5399 M:      Noralf Trønnes <noralf@tronnes.org>
5400 S:      Maintained
5401 T:      git git://anongit.freedesktop.org/drm/drm-misc
5402 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5403 F:      drivers/gpu/drm/tiny/mi0283qt.c
5404
5405 DRM DRIVER FOR MSM ADRENO GPU
5406 M:      Rob Clark <robdclark@gmail.com>
5407 M:      Sean Paul <sean@poorly.run>
5408 L:      linux-arm-msm@vger.kernel.org
5409 L:      dri-devel@lists.freedesktop.org
5410 L:      freedreno@lists.freedesktop.org
5411 S:      Maintained
5412 T:      git https://gitlab.freedesktop.org/drm/msm.git
5413 F:      Documentation/devicetree/bindings/display/msm/
5414 F:      drivers/gpu/drm/msm/
5415 F:      include/uapi/drm/msm_drm.h
5416
5417 DRM DRIVER FOR NOVATEK NT35510 PANELS
5418 M:      Linus Walleij <linus.walleij@linaro.org>
5419 S:      Maintained
5420 T:      git git://anongit.freedesktop.org/drm/drm-misc
5421 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5422 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5423
5424 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5425 M:      Ben Skeggs <bskeggs@redhat.com>
5426 L:      dri-devel@lists.freedesktop.org
5427 L:      nouveau@lists.freedesktop.org
5428 S:      Supported
5429 T:      git git://github.com/skeggsb/linux
5430 F:      drivers/gpu/drm/nouveau/
5431 F:      include/uapi/drm/nouveau_drm.h
5432
5433 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5434 M:      Stefan Mavrodiev <stefan@olimex.com>
5435 S:      Maintained
5436 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5437 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5438
5439 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5440 M:      Noralf Trønnes <noralf@tronnes.org>
5441 S:      Maintained
5442 T:      git git://anongit.freedesktop.org/drm/drm-misc
5443 F:      Documentation/devicetree/bindings/display/repaper.txt
5444 F:      drivers/gpu/drm/tiny/repaper.c
5445
5446 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5447 M:      Dave Airlie <airlied@redhat.com>
5448 M:      Gerd Hoffmann <kraxel@redhat.com>
5449 L:      virtualization@lists.linux-foundation.org
5450 S:      Obsolete
5451 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5452 T:      git git://anongit.freedesktop.org/drm/drm-misc
5453 F:      drivers/gpu/drm/tiny/cirrus.c
5454
5455 DRM DRIVER FOR QXL VIRTUAL GPU
5456 M:      Dave Airlie <airlied@redhat.com>
5457 M:      Gerd Hoffmann <kraxel@redhat.com>
5458 L:      virtualization@lists.linux-foundation.org
5459 L:      spice-devel@lists.freedesktop.org
5460 S:      Maintained
5461 T:      git git://anongit.freedesktop.org/drm/drm-misc
5462 F:      drivers/gpu/drm/qxl/
5463 F:      include/uapi/drm/qxl_drm.h
5464
5465 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5466 S:      Orphan / Obsolete
5467 F:      drivers/gpu/drm/r128/
5468 F:      include/uapi/drm/r128_drm.h
5469
5470 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5471 M:      Robert Chiras <robert.chiras@nxp.com>
5472 S:      Maintained
5473 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.txt
5474 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5475
5476 DRM DRIVER FOR ROCKTECH JH057N00900 PANELS
5477 M:      Guido Günther <agx@sigxcpu.org>
5478 R:      Purism Kernel Team <kernel@puri.sm>
5479 S:      Maintained
5480 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.txt
5481 F:      drivers/gpu/drm/panel/panel-rocktech-jh057n00900.c
5482
5483 DRM DRIVER FOR SAVAGE VIDEO CARDS
5484 S:      Orphan / Obsolete
5485 F:      drivers/gpu/drm/savage/
5486 F:      include/uapi/drm/savage_drm.h
5487
5488 DRM DRIVER FOR SIS VIDEO CARDS
5489 S:      Orphan / Obsolete
5490 F:      drivers/gpu/drm/sis/
5491 F:      include/uapi/drm/sis_drm.h
5492
5493 DRM DRIVER FOR SITRONIX ST7586 PANELS
5494 M:      David Lechner <david@lechnology.com>
5495 S:      Maintained
5496 T:      git git://anongit.freedesktop.org/drm/drm-misc
5497 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5498 F:      drivers/gpu/drm/tiny/st7586.c
5499
5500 DRM DRIVER FOR SITRONIX ST7701 PANELS
5501 M:      Jagan Teki <jagan@amarulasolutions.com>
5502 S:      Maintained
5503 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5504 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5505
5506 DRM DRIVER FOR SITRONIX ST7735R PANELS
5507 M:      David Lechner <david@lechnology.com>
5508 S:      Maintained
5509 T:      git git://anongit.freedesktop.org/drm/drm-misc
5510 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5511 F:      drivers/gpu/drm/tiny/st7735r.c
5512
5513 DRM DRIVER FOR SONY ACX424AKP PANELS
5514 M:      Linus Walleij <linus.walleij@linaro.org>
5515 S:      Maintained
5516 T:      git git://anongit.freedesktop.org/drm/drm-misc
5517 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5518
5519 DRM DRIVER FOR ST-ERICSSON MCDE
5520 M:      Linus Walleij <linus.walleij@linaro.org>
5521 S:      Maintained
5522 T:      git git://anongit.freedesktop.org/drm/drm-misc
5523 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5524 F:      drivers/gpu/drm/mcde/
5525
5526 DRM DRIVER FOR TDFX VIDEO CARDS
5527 S:      Orphan / Obsolete
5528 F:      drivers/gpu/drm/tdfx/
5529
5530 DRM DRIVER FOR TPO TPG110 PANELS
5531 M:      Linus Walleij <linus.walleij@linaro.org>
5532 S:      Maintained
5533 T:      git git://anongit.freedesktop.org/drm/drm-misc
5534 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5535 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5536
5537 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5538 M:      Dave Airlie <airlied@redhat.com>
5539 R:      Sean Paul <sean@poorly.run>
5540 L:      dri-devel@lists.freedesktop.org
5541 S:      Odd Fixes
5542 T:      git git://anongit.freedesktop.org/drm/drm-misc
5543 F:      drivers/gpu/drm/udl/
5544
5545 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5546 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5547 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5548 R:      Daniel Vetter <daniel@ffwll.ch>
5549 L:      dri-devel@lists.freedesktop.org
5550 S:      Maintained
5551 T:      git git://anongit.freedesktop.org/drm/drm-misc
5552 F:      Documentation/gpu/vkms.rst
5553 F:      drivers/gpu/drm/vkms/
5554
5555 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5556 M:      Hans de Goede <hdegoede@redhat.com>
5557 L:      dri-devel@lists.freedesktop.org
5558 S:      Maintained
5559 T:      git git://anongit.freedesktop.org/drm/drm-misc
5560 F:      drivers/gpu/drm/vboxvideo/
5561
5562 DRM DRIVER FOR VMWARE VIRTUAL GPU
5563 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5564 M:      Roland Scheidegger <sroland@vmware.com>
5565 L:      dri-devel@lists.freedesktop.org
5566 S:      Supported
5567 T:      git git://people.freedesktop.org/~sroland/linux
5568 F:      drivers/gpu/drm/vmwgfx/
5569 F:      include/uapi/drm/vmwgfx_drm.h
5570
5571 DRM DRIVERS
5572 M:      David Airlie <airlied@linux.ie>
5573 M:      Daniel Vetter <daniel@ffwll.ch>
5574 L:      dri-devel@lists.freedesktop.org
5575 S:      Maintained
5576 B:      https://bugs.freedesktop.org/
5577 C:      irc://chat.freenode.net/dri-devel
5578 T:      git git://anongit.freedesktop.org/drm/drm
5579 F:      Documentation/devicetree/bindings/display/
5580 F:      Documentation/devicetree/bindings/gpu/
5581 F:      Documentation/gpu/
5582 F:      drivers/gpu/drm/
5583 F:      drivers/gpu/vga/
5584 F:      include/drm/
5585 F:      include/linux/vga*
5586 F:      include/uapi/drm/
5587
5588 DRM DRIVERS AND MISC GPU PATCHES
5589 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5590 M:      Maxime Ripard <mripard@kernel.org>
5591 M:      Thomas Zimmermann <tzimmermann@suse.de>
5592 S:      Maintained
5593 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5594 T:      git git://anongit.freedesktop.org/drm/drm-misc
5595 F:      Documentation/gpu/
5596 F:      drivers/gpu/drm/*
5597 F:      drivers/gpu/vga/
5598 F:      include/drm/drm*
5599 F:      include/linux/vga*
5600 F:      include/uapi/drm/drm*
5601
5602 DRM DRIVERS FOR ALLWINNER A10
5603 M:      Maxime Ripard <mripard@kernel.org>
5604 M:      Chen-Yu Tsai <wens@csie.org>
5605 L:      dri-devel@lists.freedesktop.org
5606 S:      Supported
5607 T:      git git://anongit.freedesktop.org/drm/drm-misc
5608 F:      Documentation/devicetree/bindings/display/allwinner*
5609 F:      drivers/gpu/drm/sun4i/
5610
5611 DRM DRIVERS FOR AMLOGIC SOCS
5612 M:      Neil Armstrong <narmstrong@baylibre.com>
5613 L:      dri-devel@lists.freedesktop.org
5614 L:      linux-amlogic@lists.infradead.org
5615 S:      Supported
5616 W:      http://linux-meson.com/
5617 T:      git git://anongit.freedesktop.org/drm/drm-misc
5618 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5619 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5620 F:      Documentation/gpu/meson.rst
5621 F:      drivers/gpu/drm/meson/
5622
5623 DRM DRIVERS FOR ATMEL HLCDC
5624 M:      Sam Ravnborg <sam@ravnborg.org>
5625 M:      Boris Brezillon <bbrezillon@kernel.org>
5626 L:      dri-devel@lists.freedesktop.org
5627 S:      Supported
5628 T:      git git://anongit.freedesktop.org/drm/drm-misc
5629 F:      Documentation/devicetree/bindings/display/atmel/
5630 F:      drivers/gpu/drm/atmel-hlcdc/
5631
5632 DRM DRIVERS FOR BRIDGE CHIPS
5633 M:      Andrzej Hajda <a.hajda@samsung.com>
5634 M:      Neil Armstrong <narmstrong@baylibre.com>
5635 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5636 R:      Jonas Karlman <jonas@kwiboo.se>
5637 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5638 S:      Maintained
5639 T:      git git://anongit.freedesktop.org/drm/drm-misc
5640 F:      drivers/gpu/drm/bridge/
5641
5642 DRM DRIVERS FOR EXYNOS
5643 M:      Inki Dae <inki.dae@samsung.com>
5644 M:      Joonyoung Shim <jy0922.shim@samsung.com>
5645 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
5646 M:      Kyungmin Park <kyungmin.park@samsung.com>
5647 L:      dri-devel@lists.freedesktop.org
5648 S:      Supported
5649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5650 F:      Documentation/devicetree/bindings/display/exynos/
5651 F:      drivers/gpu/drm/exynos/
5652 F:      include/uapi/drm/exynos_drm.h
5653
5654 DRM DRIVERS FOR FREESCALE DCU
5655 M:      Stefan Agner <stefan@agner.ch>
5656 M:      Alison Wang <alison.wang@nxp.com>
5657 L:      dri-devel@lists.freedesktop.org
5658 S:      Supported
5659 T:      git git://anongit.freedesktop.org/drm/drm-misc
5660 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5661 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5662 F:      drivers/gpu/drm/fsl-dcu/
5663
5664 DRM DRIVERS FOR FREESCALE IMX
5665 M:      Philipp Zabel <p.zabel@pengutronix.de>
5666 L:      dri-devel@lists.freedesktop.org
5667 S:      Maintained
5668 F:      Documentation/devicetree/bindings/display/imx/
5669 F:      drivers/gpu/drm/imx/
5670 F:      drivers/gpu/ipu-v3/
5671
5672 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5673 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5674 L:      dri-devel@lists.freedesktop.org
5675 S:      Maintained
5676 T:      git git://github.com/patjak/drm-gma500
5677 F:      drivers/gpu/drm/gma500/
5678
5679 DRM DRIVERS FOR HISILICON
5680 M:      Xinliang Liu <xinliang.liu@linaro.org>
5681 M:      Rongrong Zou <zourongrong@gmail.com>
5682 R:      John Stultz <john.stultz@linaro.org>
5683 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
5684 R:      Chen Feng <puck.chen@hisilicon.com>
5685 L:      dri-devel@lists.freedesktop.org
5686 S:      Maintained
5687 T:      git git://anongit.freedesktop.org/drm/drm-misc
5688 F:      Documentation/devicetree/bindings/display/hisilicon/
5689 F:      drivers/gpu/drm/hisilicon/
5690
5691 DRM DRIVERS FOR LIMA
5692 M:      Qiang Yu <yuq825@gmail.com>
5693 L:      dri-devel@lists.freedesktop.org
5694 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
5695 S:      Maintained
5696 T:      git git://anongit.freedesktop.org/drm/drm-misc
5697 F:      drivers/gpu/drm/lima/
5698 F:      include/uapi/drm/lima_drm.h
5699
5700 DRM DRIVERS FOR MEDIATEK
5701 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
5702 M:      Philipp Zabel <p.zabel@pengutronix.de>
5703 L:      dri-devel@lists.freedesktop.org
5704 S:      Supported
5705 F:      Documentation/devicetree/bindings/display/mediatek/
5706 F:      drivers/gpu/drm/mediatek/
5707
5708 DRM DRIVERS FOR NVIDIA TEGRA
5709 M:      Thierry Reding <thierry.reding@gmail.com>
5710 L:      dri-devel@lists.freedesktop.org
5711 L:      linux-tegra@vger.kernel.org
5712 S:      Supported
5713 T:      git git://anongit.freedesktop.org/tegra/linux.git
5714 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5715 F:      drivers/gpu/drm/tegra/
5716 F:      drivers/gpu/host1x/
5717 F:      include/linux/host1x.h
5718 F:      include/uapi/drm/tegra_drm.h
5719
5720 DRM DRIVERS FOR RENESAS
5721 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5722 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5723 L:      dri-devel@lists.freedesktop.org
5724 L:      linux-renesas-soc@vger.kernel.org
5725 S:      Supported
5726 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5727 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5728 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
5729 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5730 F:      drivers/gpu/drm/rcar-du/
5731 F:      drivers/gpu/drm/shmobile/
5732 F:      include/linux/platform_data/shmob_drm.h
5733
5734 DRM DRIVERS FOR ROCKCHIP
5735 M:      Sandy Huang <hjc@rock-chips.com>
5736 M:      Heiko Stübner <heiko@sntech.de>
5737 L:      dri-devel@lists.freedesktop.org
5738 S:      Maintained
5739 T:      git git://anongit.freedesktop.org/drm/drm-misc
5740 F:      Documentation/devicetree/bindings/display/rockchip/
5741 F:      drivers/gpu/drm/rockchip/
5742
5743 DRM DRIVERS FOR STI
5744 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5745 M:      Vincent Abriou <vincent.abriou@st.com>
5746 L:      dri-devel@lists.freedesktop.org
5747 S:      Maintained
5748 T:      git git://anongit.freedesktop.org/drm/drm-misc
5749 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5750 F:      drivers/gpu/drm/sti
5751
5752 DRM DRIVERS FOR STM
5753 M:      Yannick Fertre <yannick.fertre@st.com>
5754 M:      Philippe Cornu <philippe.cornu@st.com>
5755 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5756 M:      Vincent Abriou <vincent.abriou@st.com>
5757 L:      dri-devel@lists.freedesktop.org
5758 S:      Maintained
5759 T:      git git://anongit.freedesktop.org/drm/drm-misc
5760 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5761 F:      drivers/gpu/drm/stm
5762
5763 DRM DRIVERS FOR TI KEYSTONE
5764 M:      Jyri Sarha <jsarha@ti.com>
5765 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5766 L:      dri-devel@lists.freedesktop.org
5767 S:      Maintained
5768 T:      git git://anongit.freedesktop.org/drm/drm-misc
5769 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5770 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5771 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5772 F:      drivers/gpu/drm/tidss/
5773
5774 DRM DRIVERS FOR TI LCDC
5775 M:      Jyri Sarha <jsarha@ti.com>
5776 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5777 L:      dri-devel@lists.freedesktop.org
5778 S:      Maintained
5779 F:      Documentation/devicetree/bindings/display/tilcdc/
5780 F:      drivers/gpu/drm/tilcdc/
5781
5782 DRM DRIVERS FOR TI OMAP
5783 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5784 L:      dri-devel@lists.freedesktop.org
5785 S:      Maintained
5786 F:      Documentation/devicetree/bindings/display/ti/
5787 F:      drivers/gpu/drm/omapdrm/
5788
5789 DRM DRIVERS FOR V3D
5790 M:      Eric Anholt <eric@anholt.net>
5791 S:      Supported
5792 T:      git git://anongit.freedesktop.org/drm/drm-misc
5793 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5794 F:      drivers/gpu/drm/v3d/
5795 F:      include/uapi/drm/v3d_drm.h
5796
5797 DRM DRIVERS FOR VC4
5798 M:      Eric Anholt <eric@anholt.net>
5799 S:      Supported
5800 T:      git git://github.com/anholt/linux
5801 T:      git git://anongit.freedesktop.org/drm/drm-misc
5802 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
5803 F:      drivers/gpu/drm/vc4/
5804 F:      include/uapi/drm/vc4_drm.h
5805
5806 DRM DRIVERS FOR VIVANTE GPU IP
5807 M:      Lucas Stach <l.stach@pengutronix.de>
5808 R:      Russell King <linux+etnaviv@armlinux.org.uk>
5809 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
5810 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
5811 L:      dri-devel@lists.freedesktop.org
5812 S:      Maintained
5813 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
5814 F:      drivers/gpu/drm/etnaviv/
5815 F:      include/uapi/drm/etnaviv_drm.h
5816
5817 DRM DRIVERS FOR XEN
5818 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
5819 L:      dri-devel@lists.freedesktop.org
5820 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
5821 S:      Supported
5822 T:      git git://anongit.freedesktop.org/drm/drm-misc
5823 F:      Documentation/gpu/xen-front.rst
5824 F:      drivers/gpu/drm/xen/
5825
5826 DRM DRIVERS FOR ZTE ZX
5827 M:      Shawn Guo <shawnguo@kernel.org>
5828 L:      dri-devel@lists.freedesktop.org
5829 S:      Maintained
5830 T:      git git://anongit.freedesktop.org/drm/drm-misc
5831 F:      Documentation/devicetree/bindings/display/zte,vou.txt
5832 F:      drivers/gpu/drm/zte/
5833
5834 DRM PANEL DRIVERS
5835 M:      Thierry Reding <thierry.reding@gmail.com>
5836 R:      Sam Ravnborg <sam@ravnborg.org>
5837 L:      dri-devel@lists.freedesktop.org
5838 S:      Maintained
5839 T:      git git://anongit.freedesktop.org/drm/drm-misc
5840 F:      Documentation/devicetree/bindings/display/panel/
5841 F:      drivers/gpu/drm/drm_panel.c
5842 F:      drivers/gpu/drm/panel/
5843 F:      include/drm/drm_panel.h
5844
5845 DRM TTM SUBSYSTEM
5846 M:      Christian Koenig <christian.koenig@amd.com>
5847 M:      Huang Rui <ray.huang@amd.com>
5848 L:      dri-devel@lists.freedesktop.org
5849 S:      Maintained
5850 T:      git git://people.freedesktop.org/~agd5f/linux
5851 F:      drivers/gpu/drm/ttm/
5852 F:      include/drm/ttm/
5853
5854 DSBR100 USB FM RADIO DRIVER
5855 M:      Alexey Klimov <klimov.linux@gmail.com>
5856 L:      linux-media@vger.kernel.org
5857 S:      Maintained
5858 T:      git git://linuxtv.org/media_tree.git
5859 F:      drivers/media/radio/dsbr100.c
5860
5861 DT3155 MEDIA DRIVER
5862 M:      Hans Verkuil <hverkuil@xs4all.nl>
5863 L:      linux-media@vger.kernel.org
5864 S:      Odd Fixes
5865 W:      https://linuxtv.org
5866 T:      git git://linuxtv.org/media_tree.git
5867 F:      drivers/media/pci/dt3155/
5868
5869 DVB_USB_AF9015 MEDIA DRIVER
5870 M:      Antti Palosaari <crope@iki.fi>
5871 L:      linux-media@vger.kernel.org
5872 S:      Maintained
5873 W:      https://linuxtv.org
5874 W:      http://palosaari.fi/linux/
5875 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5876 T:      git git://linuxtv.org/anttip/media_tree.git
5877 F:      drivers/media/usb/dvb-usb-v2/af9015*
5878
5879 DVB_USB_AF9035 MEDIA DRIVER
5880 M:      Antti Palosaari <crope@iki.fi>
5881 L:      linux-media@vger.kernel.org
5882 S:      Maintained
5883 W:      https://linuxtv.org
5884 W:      http://palosaari.fi/linux/
5885 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5886 T:      git git://linuxtv.org/anttip/media_tree.git
5887 F:      drivers/media/usb/dvb-usb-v2/af9035*
5888
5889 DVB_USB_ANYSEE MEDIA DRIVER
5890 M:      Antti Palosaari <crope@iki.fi>
5891 L:      linux-media@vger.kernel.org
5892 S:      Maintained
5893 W:      https://linuxtv.org
5894 W:      http://palosaari.fi/linux/
5895 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5896 T:      git git://linuxtv.org/anttip/media_tree.git
5897 F:      drivers/media/usb/dvb-usb-v2/anysee*
5898
5899 DVB_USB_AU6610 MEDIA DRIVER
5900 M:      Antti Palosaari <crope@iki.fi>
5901 L:      linux-media@vger.kernel.org
5902 S:      Maintained
5903 W:      https://linuxtv.org
5904 W:      http://palosaari.fi/linux/
5905 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5906 T:      git git://linuxtv.org/anttip/media_tree.git
5907 F:      drivers/media/usb/dvb-usb-v2/au6610*
5908
5909 DVB_USB_CE6230 MEDIA DRIVER
5910 M:      Antti Palosaari <crope@iki.fi>
5911 L:      linux-media@vger.kernel.org
5912 S:      Maintained
5913 W:      https://linuxtv.org
5914 W:      http://palosaari.fi/linux/
5915 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5916 T:      git git://linuxtv.org/anttip/media_tree.git
5917 F:      drivers/media/usb/dvb-usb-v2/ce6230*
5918
5919 DVB_USB_CXUSB MEDIA DRIVER
5920 M:      Michael Krufky <mkrufky@linuxtv.org>
5921 L:      linux-media@vger.kernel.org
5922 S:      Maintained
5923 W:      https://linuxtv.org
5924 W:      http://github.com/mkrufky
5925 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5926 T:      git git://linuxtv.org/media_tree.git
5927 F:      drivers/media/usb/dvb-usb/cxusb*
5928
5929 DVB_USB_EC168 MEDIA DRIVER
5930 M:      Antti Palosaari <crope@iki.fi>
5931 L:      linux-media@vger.kernel.org
5932 S:      Maintained
5933 W:      https://linuxtv.org
5934 W:      http://palosaari.fi/linux/
5935 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5936 T:      git git://linuxtv.org/anttip/media_tree.git
5937 F:      drivers/media/usb/dvb-usb-v2/ec168*
5938
5939 DVB_USB_GL861 MEDIA DRIVER
5940 M:      Antti Palosaari <crope@iki.fi>
5941 L:      linux-media@vger.kernel.org
5942 S:      Maintained
5943 W:      https://linuxtv.org
5944 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5945 T:      git git://linuxtv.org/anttip/media_tree.git
5946 F:      drivers/media/usb/dvb-usb-v2/gl861*
5947
5948 DVB_USB_MXL111SF MEDIA DRIVER
5949 M:      Michael Krufky <mkrufky@linuxtv.org>
5950 L:      linux-media@vger.kernel.org
5951 S:      Maintained
5952 W:      https://linuxtv.org
5953 W:      http://github.com/mkrufky
5954 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5955 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
5956 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
5957
5958 DVB_USB_RTL28XXU MEDIA DRIVER
5959 M:      Antti Palosaari <crope@iki.fi>
5960 L:      linux-media@vger.kernel.org
5961 S:      Maintained
5962 W:      https://linuxtv.org
5963 W:      http://palosaari.fi/linux/
5964 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5965 T:      git git://linuxtv.org/anttip/media_tree.git
5966 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
5967
5968 DVB_USB_V2 MEDIA DRIVER
5969 M:      Antti Palosaari <crope@iki.fi>
5970 L:      linux-media@vger.kernel.org
5971 S:      Maintained
5972 W:      https://linuxtv.org
5973 W:      http://palosaari.fi/linux/
5974 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5975 T:      git git://linuxtv.org/anttip/media_tree.git
5976 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
5977 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
5978
5979 DYNAMIC DEBUG
5980 M:      Jason Baron <jbaron@akamai.com>
5981 S:      Maintained
5982 F:      include/linux/dynamic_debug.h
5983 F:      lib/dynamic_debug.c
5984
5985 DYNAMIC INTERRUPT MODERATION
5986 M:      Tal Gilboa <talgi@mellanox.com>
5987 S:      Maintained
5988 F:      Documentation/networking/net_dim.rst
5989 F:      include/linux/dim.h
5990 F:      lib/dim/
5991
5992 DZ DECSTATION DZ11 SERIAL DRIVER
5993 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
5994 S:      Maintained
5995 F:      drivers/tty/serial/dz.*
5996
5997 E3X0 POWER BUTTON DRIVER
5998 M:      Moritz Fischer <moritz.fischer@ettus.com>
5999 L:      usrp-users@lists.ettus.com
6000 S:      Supported
6001 W:      http://www.ettus.com
6002 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6003 F:      drivers/input/misc/e3x0-button.c
6004
6005 E4000 MEDIA DRIVER
6006 M:      Antti Palosaari <crope@iki.fi>
6007 L:      linux-media@vger.kernel.org
6008 S:      Maintained
6009 W:      https://linuxtv.org
6010 W:      http://palosaari.fi/linux/
6011 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6012 T:      git git://linuxtv.org/anttip/media_tree.git
6013 F:      drivers/media/tuners/e4000*
6014
6015 EARTH_PT1 MEDIA DRIVER
6016 M:      Akihiro Tsukada <tskd08@gmail.com>
6017 L:      linux-media@vger.kernel.org
6018 S:      Odd Fixes
6019 F:      drivers/media/pci/pt1/
6020
6021 EARTH_PT3 MEDIA DRIVER
6022 M:      Akihiro Tsukada <tskd08@gmail.com>
6023 L:      linux-media@vger.kernel.org
6024 S:      Odd Fixes
6025 F:      drivers/media/pci/pt3/
6026
6027 EC100 MEDIA DRIVER
6028 M:      Antti Palosaari <crope@iki.fi>
6029 L:      linux-media@vger.kernel.org
6030 S:      Maintained
6031 W:      https://linuxtv.org
6032 W:      http://palosaari.fi/linux/
6033 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6034 T:      git git://linuxtv.org/anttip/media_tree.git
6035 F:      drivers/media/dvb-frontends/ec100*
6036
6037 ECRYPT FILE SYSTEM
6038 M:      Tyler Hicks <code@tyhicks.com>
6039 L:      ecryptfs@vger.kernel.org
6040 S:      Odd Fixes
6041 W:      http://ecryptfs.org
6042 W:      https://launchpad.net/ecryptfs
6043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6044 F:      Documentation/filesystems/ecryptfs.rst
6045 F:      fs/ecryptfs/
6046
6047 EDAC-AMD64
6048 M:      Borislav Petkov <bp@alien8.de>
6049 L:      linux-edac@vger.kernel.org
6050 S:      Maintained
6051 F:      drivers/edac/amd64_edac*
6052
6053 EDAC-ARMADA
6054 M:      Jan Luebbe <jlu@pengutronix.de>
6055 L:      linux-edac@vger.kernel.org
6056 S:      Maintained
6057 F:      drivers/edac/armada_xp_*
6058
6059 EDAC-AST2500
6060 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6061 S:      Supported
6062 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6063 F:      drivers/edac/aspeed_edac.c
6064
6065 EDAC-BLUEFIELD
6066 M:      Shravan Kumar Ramani <sramani@mellanox.com>
6067 S:      Supported
6068 F:      drivers/edac/bluefield_edac.c
6069
6070 EDAC-CALXEDA
6071 M:      Robert Richter <rric@kernel.org>
6072 L:      linux-edac@vger.kernel.org
6073 S:      Maintained
6074 F:      drivers/edac/highbank*
6075
6076 EDAC-CAVIUM OCTEON
6077 M:      Ralf Baechle <ralf@linux-mips.org>
6078 M:      Robert Richter <rrichter@marvell.com>
6079 L:      linux-edac@vger.kernel.org
6080 L:      linux-mips@vger.kernel.org
6081 S:      Supported
6082 F:      drivers/edac/octeon_edac*
6083
6084 EDAC-CAVIUM THUNDERX
6085 M:      Robert Richter <rrichter@marvell.com>
6086 L:      linux-edac@vger.kernel.org
6087 S:      Supported
6088 F:      drivers/edac/thunderx_edac*
6089
6090 EDAC-CORE
6091 M:      Borislav Petkov <bp@alien8.de>
6092 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6093 M:      Tony Luck <tony.luck@intel.com>
6094 R:      James Morse <james.morse@arm.com>
6095 R:      Robert Richter <rrichter@marvell.com>
6096 L:      linux-edac@vger.kernel.org
6097 S:      Supported
6098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6099 F:      Documentation/admin-guide/ras.rst
6100 F:      Documentation/driver-api/edac.rst
6101 F:      drivers/edac/
6102 F:      include/linux/edac.h
6103
6104 EDAC-DMC520
6105 M:      Lei Wang <lewan@microsoft.com>
6106 L:      linux-edac@vger.kernel.org
6107 S:      Supported
6108 F:      drivers/edac/dmc520_edac.c
6109
6110 EDAC-E752X
6111 M:      Mark Gross <mark.gross@intel.com>
6112 L:      linux-edac@vger.kernel.org
6113 S:      Maintained
6114 F:      drivers/edac/e752x_edac.c
6115
6116 EDAC-E7XXX
6117 L:      linux-edac@vger.kernel.org
6118 S:      Maintained
6119 F:      drivers/edac/e7xxx_edac.c
6120
6121 EDAC-FSL_DDR
6122 M:      York Sun <york.sun@nxp.com>
6123 L:      linux-edac@vger.kernel.org
6124 S:      Maintained
6125 F:      drivers/edac/fsl_ddr_edac.*
6126
6127 EDAC-GHES
6128 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6129 L:      linux-edac@vger.kernel.org
6130 S:      Maintained
6131 F:      drivers/edac/ghes_edac.c
6132
6133 EDAC-I10NM
6134 M:      Tony Luck <tony.luck@intel.com>
6135 L:      linux-edac@vger.kernel.org
6136 S:      Maintained
6137 F:      drivers/edac/i10nm_base.c
6138
6139 EDAC-I3000
6140 L:      linux-edac@vger.kernel.org
6141 S:      Orphan
6142 F:      drivers/edac/i3000_edac.c
6143
6144 EDAC-I5000
6145 L:      linux-edac@vger.kernel.org
6146 S:      Maintained
6147 F:      drivers/edac/i5000_edac.c
6148
6149 EDAC-I5400
6150 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6151 L:      linux-edac@vger.kernel.org
6152 S:      Maintained
6153 F:      drivers/edac/i5400_edac.c
6154
6155 EDAC-I7300
6156 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6157 L:      linux-edac@vger.kernel.org
6158 S:      Maintained
6159 F:      drivers/edac/i7300_edac.c
6160
6161 EDAC-I7CORE
6162 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6163 L:      linux-edac@vger.kernel.org
6164 S:      Maintained
6165 F:      drivers/edac/i7core_edac.c
6166
6167 EDAC-I82443BXGX
6168 M:      Tim Small <tim@buttersideup.com>
6169 L:      linux-edac@vger.kernel.org
6170 S:      Maintained
6171 F:      drivers/edac/i82443bxgx_edac.c
6172
6173 EDAC-I82975X
6174 M:      "Arvind R." <arvino55@gmail.com>
6175 L:      linux-edac@vger.kernel.org
6176 S:      Maintained
6177 F:      drivers/edac/i82975x_edac.c
6178
6179 EDAC-IE31200
6180 M:      Jason Baron <jbaron@akamai.com>
6181 L:      linux-edac@vger.kernel.org
6182 S:      Maintained
6183 F:      drivers/edac/ie31200_edac.c
6184
6185 EDAC-MPC85XX
6186 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6187 L:      linux-edac@vger.kernel.org
6188 S:      Maintained
6189 F:      drivers/edac/mpc85xx_edac.[ch]
6190
6191 EDAC-PASEMI
6192 M:      Egor Martovetsky <egor@pasemi.com>
6193 L:      linux-edac@vger.kernel.org
6194 S:      Maintained
6195 F:      drivers/edac/pasemi_edac.c
6196
6197 EDAC-PND2
6198 M:      Tony Luck <tony.luck@intel.com>
6199 L:      linux-edac@vger.kernel.org
6200 S:      Maintained
6201 F:      drivers/edac/pnd2_edac.[ch]
6202
6203 EDAC-QCOM
6204 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6205 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6206 L:      linux-arm-msm@vger.kernel.org
6207 L:      linux-edac@vger.kernel.org
6208 S:      Maintained
6209 F:      drivers/edac/qcom_edac.c
6210
6211 EDAC-R82600
6212 M:      Tim Small <tim@buttersideup.com>
6213 L:      linux-edac@vger.kernel.org
6214 S:      Maintained
6215 F:      drivers/edac/r82600_edac.c
6216
6217 EDAC-SBRIDGE
6218 M:      Tony Luck <tony.luck@intel.com>
6219 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6220 L:      linux-edac@vger.kernel.org
6221 S:      Maintained
6222 F:      drivers/edac/sb_edac.c
6223
6224 EDAC-SIFIVE
6225 M:      Yash Shah <yash.shah@sifive.com>
6226 L:      linux-edac@vger.kernel.org
6227 S:      Supported
6228 F:      drivers/edac/sifive_edac.c
6229
6230 EDAC-SKYLAKE
6231 M:      Tony Luck <tony.luck@intel.com>
6232 L:      linux-edac@vger.kernel.org
6233 S:      Maintained
6234 F:      drivers/edac/skx_*.c
6235
6236 EDAC-TI
6237 M:      Tero Kristo <t-kristo@ti.com>
6238 L:      linux-edac@vger.kernel.org
6239 S:      Maintained
6240 F:      drivers/edac/ti_edac.c
6241
6242 EDIROL UA-101/UA-1000 DRIVER
6243 M:      Clemens Ladisch <clemens@ladisch.de>
6244 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6245 S:      Maintained
6246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6247 F:      sound/usb/misc/ua101.c
6248
6249 EFI TEST DRIVER
6250 M:      Ivan Hu <ivan.hu@canonical.com>
6251 M:      Ard Biesheuvel <ardb@kernel.org>
6252 L:      linux-efi@vger.kernel.org
6253 S:      Maintained
6254 F:      drivers/firmware/efi/test/
6255
6256 EFI VARIABLE FILESYSTEM
6257 M:      Matthew Garrett <matthew.garrett@nebula.com>
6258 M:      Jeremy Kerr <jk@ozlabs.org>
6259 M:      Ard Biesheuvel <ardb@kernel.org>
6260 L:      linux-efi@vger.kernel.org
6261 S:      Maintained
6262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6263 F:      fs/efivarfs/
6264
6265 EFIFB FRAMEBUFFER DRIVER
6266 M:      Peter Jones <pjones@redhat.com>
6267 L:      linux-fbdev@vger.kernel.org
6268 S:      Maintained
6269 F:      drivers/video/fbdev/efifb.c
6270
6271 EFS FILESYSTEM
6272 S:      Orphan
6273 W:      http://aeschi.ch.eu.org/efs/
6274 F:      fs/efs/
6275
6276 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6277 M:      Douglas Miller <dougmill@linux.ibm.com>
6278 L:      netdev@vger.kernel.org
6279 S:      Maintained
6280 F:      drivers/net/ethernet/ibm/ehea/
6281
6282 EM28XX VIDEO4LINUX DRIVER
6283 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6284 L:      linux-media@vger.kernel.org
6285 S:      Maintained
6286 W:      https://linuxtv.org
6287 T:      git git://linuxtv.org/media_tree.git
6288 F:      Documentation/admin-guide/media/em28xx*
6289 F:      drivers/media/usb/em28xx/
6290
6291 EMBEDDED LINUX
6292 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6293 M:      Matt Mackall <mpm@selenic.com>
6294 M:      David Woodhouse <dwmw2@infradead.org>
6295 L:      linux-embedded@vger.kernel.org
6296 S:      Maintained
6297
6298 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6299 M:      Adrian Hunter <adrian.hunter@intel.com>
6300 M:      Ritesh Harjani <riteshh@codeaurora.org>
6301 M:      Asutosh Das <asutoshd@codeaurora.org>
6302 L:      linux-mmc@vger.kernel.org
6303 S:      Maintained
6304 F:      drivers/mmc/host/cqhci*
6305
6306 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6307 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6308 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6309 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6310 L:      linux-scsi@vger.kernel.org
6311 S:      Supported
6312 W:      http://www.broadcom.com
6313 F:      drivers/scsi/be2iscsi/
6314
6315 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6316 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6317 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6318 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6319 L:      netdev@vger.kernel.org
6320 S:      Supported
6321 W:      http://www.emulex.com
6322 F:      drivers/net/ethernet/emulex/benet/
6323
6324 EMULEX ONECONNECT ROCE DRIVER
6325 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6326 M:      Devesh Sharma <devesh.sharma@broadcom.com>
6327 L:      linux-rdma@vger.kernel.org
6328 S:      Odd Fixes
6329 W:      http://www.broadcom.com
6330 F:      drivers/infiniband/hw/ocrdma/
6331 F:      include/uapi/rdma/ocrdma-abi.h
6332
6333 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6334 M:      James Smart <james.smart@broadcom.com>
6335 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6336 L:      linux-scsi@vger.kernel.org
6337 S:      Supported
6338 W:      http://www.broadcom.com
6339 F:      drivers/scsi/lpfc/
6340
6341 ENE CB710 FLASH CARD READER DRIVER
6342 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6343 S:      Maintained
6344 F:      drivers/misc/cb710/
6345 F:      drivers/mmc/host/cb710-mmc.*
6346 F:      include/linux/cb710.h
6347
6348 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6349 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6350 S:      Maintained
6351 F:      drivers/media/rc/ene_ir.*
6352
6353 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6354 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6355 L:      linuxppc-dev@lists.ozlabs.org
6356 S:      Maintained
6357 F:      drivers/tty/ehv_bytechan.c
6358
6359 EPSON S1D13XXX FRAMEBUFFER DRIVER
6360 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6361 S:      Maintained
6362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6363 F:      drivers/video/fbdev/s1d13xxxfb.c
6364 F:      include/video/s1d13xxxfb.h
6365
6366 EROFS FILE SYSTEM
6367 M:      Gao Xiang <xiang@kernel.org>
6368 M:      Chao Yu <yuchao0@huawei.com>
6369 L:      linux-erofs@lists.ozlabs.org
6370 S:      Maintained
6371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6372 F:      Documentation/filesystems/erofs.rst
6373 F:      fs/erofs/
6374 F:      include/trace/events/erofs.h
6375
6376 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6377 M:      Jeff Layton <jlayton@kernel.org>
6378 S:      Maintained
6379 F:      include/linux/errseq.h
6380 F:      lib/errseq.c
6381
6382 ET131X NETWORK DRIVER
6383 M:      Mark Einon <mark.einon@gmail.com>
6384 S:      Odd Fixes
6385 F:      drivers/net/ethernet/agere/
6386
6387 ETHERNET BRIDGE
6388 M:      Roopa Prabhu <roopa@cumulusnetworks.com>
6389 M:      Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
6390 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6391 L:      netdev@vger.kernel.org
6392 S:      Maintained
6393 W:      http://www.linuxfoundation.org/en/Net:Bridge
6394 F:      include/linux/netfilter_bridge/
6395 F:      net/bridge/
6396
6397 ETHERNET PHY LIBRARY
6398 M:      Andrew Lunn <andrew@lunn.ch>
6399 M:      Florian Fainelli <f.fainelli@gmail.com>
6400 M:      Heiner Kallweit <hkallweit1@gmail.com>
6401 R:      Russell King <linux@armlinux.org.uk>
6402 L:      netdev@vger.kernel.org
6403 S:      Maintained
6404 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6405 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6406 F:      Documentation/devicetree/bindings/net/mdio*
6407 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6408 F:      Documentation/networking/phy.rst
6409 F:      drivers/net/phy/
6410 F:      drivers/of/of_mdio.c
6411 F:      drivers/of/of_net.c
6412 F:      include/dt-bindings/net/qca-ar803x.h
6413 F:      include/linux/*mdio*.h
6414 F:      include/linux/of_net.h
6415 F:      include/linux/phy.h
6416 F:      include/linux/phy_fixed.h
6417 F:      include/linux/platform_data/mdio-bcm-unimac.h
6418 F:      include/linux/platform_data/mdio-gpio.h
6419 F:      include/trace/events/mdio.h
6420 F:      include/uapi/linux/mdio.h
6421 F:      include/uapi/linux/mii.h
6422
6423 EXFAT FILE SYSTEM
6424 M:      Namjae Jeon <namjae.jeon@samsung.com>
6425 M:      Sungjong Seo <sj1557.seo@samsung.com>
6426 L:      linux-fsdevel@vger.kernel.org
6427 S:      Maintained
6428 F:      fs/exfat/
6429
6430 EXT2 FILE SYSTEM
6431 M:      Jan Kara <jack@suse.com>
6432 L:      linux-ext4@vger.kernel.org
6433 S:      Maintained
6434 F:      Documentation/filesystems/ext2.rst
6435 F:      fs/ext2/
6436 F:      include/linux/ext2*
6437
6438 EXT4 FILE SYSTEM
6439 M:      "Theodore Ts'o" <tytso@mit.edu>
6440 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6441 L:      linux-ext4@vger.kernel.org
6442 S:      Maintained
6443 W:      http://ext4.wiki.kernel.org
6444 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6446 F:      Documentation/filesystems/ext4/
6447 F:      fs/ext4/
6448
6449 Extended Verification Module (EVM)
6450 M:      Mimi Zohar <zohar@linux.ibm.com>
6451 L:      linux-integrity@vger.kernel.org
6452 S:      Supported
6453 F:      security/integrity/evm/
6454
6455 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6456 M:      Ard Biesheuvel <ardb@kernel.org>
6457 L:      linux-efi@vger.kernel.org
6458 S:      Maintained
6459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6460 F:      Documentation/admin-guide/efi-stub.rst
6461 F:      arch/*/include/asm/efi.h
6462 F:      arch/*/kernel/efi.c
6463 F:      arch/arm/boot/compressed/efi-header.S
6464 F:      arch/arm64/kernel/efi-entry.S
6465 F:      arch/x86/platform/efi/
6466 F:      drivers/firmware/efi/
6467 F:      include/linux/efi*.h
6468
6469 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6470 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6471 M:      Chanwoo Choi <cw00.choi@samsung.com>
6472 L:      linux-kernel@vger.kernel.org
6473 S:      Maintained
6474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6475 F:      Documentation/devicetree/bindings/extcon/
6476 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6477 F:      drivers/extcon/
6478 F:      include/linux/extcon.h
6479 F:      include/linux/extcon/
6480
6481 EXTRA BOOT CONFIG
6482 M:      Masami Hiramatsu <mhiramat@kernel.org>
6483 S:      Maintained
6484 F:      Documentation/admin-guide/bootconfig.rst
6485 F:      fs/proc/bootconfig.c
6486 F:      include/linux/bootconfig.h
6487 F:      lib/bootconfig.c
6488 F:      tools/bootconfig/*
6489
6490 EXYNOS DP DRIVER
6491 M:      Jingoo Han <jingoohan1@gmail.com>
6492 L:      dri-devel@lists.freedesktop.org
6493 S:      Maintained
6494 F:      drivers/gpu/drm/exynos/exynos_dp*
6495
6496 EXYNOS SYSMMU (IOMMU) driver
6497 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6498 L:      iommu@lists.linux-foundation.org
6499 S:      Maintained
6500 F:      drivers/iommu/exynos-iommu.c
6501
6502 EZchip NPS platform support
6503 M:      Vineet Gupta <vgupta@synopsys.com>
6504 M:      Ofer Levi <oferle@mellanox.com>
6505 S:      Supported
6506 F:      arch/arc/boot/dts/eznps.dts
6507 F:      arch/arc/plat-eznps
6508
6509 F2FS FILE SYSTEM
6510 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6511 M:      Chao Yu <yuchao0@huawei.com>
6512 L:      linux-f2fs-devel@lists.sourceforge.net
6513 S:      Maintained
6514 W:      https://f2fs.wiki.kernel.org/
6515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6516 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6517 F:      Documentation/filesystems/f2fs.rst
6518 F:      fs/f2fs/
6519 F:      include/linux/f2fs_fs.h
6520 F:      include/trace/events/f2fs.h
6521
6522 F71805F HARDWARE MONITORING DRIVER
6523 M:      Jean Delvare <jdelvare@suse.com>
6524 L:      linux-hwmon@vger.kernel.org
6525 S:      Maintained
6526 F:      Documentation/hwmon/f71805f.rst
6527 F:      drivers/hwmon/f71805f.c
6528
6529 FADDR2LINE
6530 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6531 S:      Maintained
6532 F:      scripts/faddr2line
6533
6534 FAILOVER MODULE
6535 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
6536 L:      netdev@vger.kernel.org
6537 S:      Supported
6538 F:      Documentation/networking/failover.rst
6539 F:      include/net/failover.h
6540 F:      net/core/failover.c
6541
6542 FANOTIFY
6543 M:      Jan Kara <jack@suse.cz>
6544 R:      Amir Goldstein <amir73il@gmail.com>
6545 L:      linux-fsdevel@vger.kernel.org
6546 S:      Maintained
6547 F:      fs/notify/fanotify/
6548 F:      include/linux/fanotify.h
6549 F:      include/uapi/linux/fanotify.h
6550
6551 FARSYNC SYNCHRONOUS DRIVER
6552 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
6553 S:      Supported
6554 W:      http://www.farsite.co.uk/
6555 F:      drivers/net/wan/farsync.*
6556
6557 FAULT INJECTION SUPPORT
6558 M:      Akinobu Mita <akinobu.mita@gmail.com>
6559 S:      Supported
6560 F:      Documentation/fault-injection/
6561 F:      lib/fault-inject.c
6562
6563 FBTFT Framebuffer drivers
6564 L:      dri-devel@lists.freedesktop.org
6565 L:      linux-fbdev@vger.kernel.org
6566 S:      Orphan
6567 F:      drivers/staging/fbtft/
6568
6569 FC0011 TUNER DRIVER
6570 M:      Michael Buesch <m@bues.ch>
6571 L:      linux-media@vger.kernel.org
6572 S:      Maintained
6573 F:      drivers/media/tuners/fc0011.c
6574 F:      drivers/media/tuners/fc0011.h
6575
6576 FC2580 MEDIA DRIVER
6577 M:      Antti Palosaari <crope@iki.fi>
6578 L:      linux-media@vger.kernel.org
6579 S:      Maintained
6580 W:      https://linuxtv.org
6581 W:      http://palosaari.fi/linux/
6582 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6583 T:      git git://linuxtv.org/anttip/media_tree.git
6584 F:      drivers/media/tuners/fc2580*
6585
6586 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6587 M:      Hannes Reinecke <hare@suse.de>
6588 L:      linux-scsi@vger.kernel.org
6589 S:      Supported
6590 W:      www.Open-FCoE.org
6591 F:      drivers/scsi/fcoe/
6592 F:      drivers/scsi/libfc/
6593 F:      include/scsi/fc/
6594 F:      include/scsi/libfc.h
6595 F:      include/scsi/libfcoe.h
6596 F:      include/uapi/scsi/fc/
6597
6598 FILE LOCKING (flock() and fcntl()/lockf())
6599 M:      Jeff Layton <jlayton@kernel.org>
6600 M:      "J. Bruce Fields" <bfields@fieldses.org>
6601 L:      linux-fsdevel@vger.kernel.org
6602 S:      Maintained
6603 F:      fs/fcntl.c
6604 F:      fs/locks.c
6605 F:      include/linux/fcntl.h
6606 F:      include/uapi/linux/fcntl.h
6607
6608 FILESYSTEM DIRECT ACCESS (DAX)
6609 M:      Dan Williams <dan.j.williams@intel.com>
6610 R:      Matthew Wilcox <willy@infradead.org>
6611 R:      Jan Kara <jack@suse.cz>
6612 L:      linux-fsdevel@vger.kernel.org
6613 L:      linux-nvdimm@lists.01.org
6614 S:      Supported
6615 F:      fs/dax.c
6616 F:      include/linux/dax.h
6617 F:      include/trace/events/fs_dax.h
6618
6619 FILESYSTEMS (VFS and infrastructure)
6620 M:      Alexander Viro <viro@zeniv.linux.org.uk>
6621 L:      linux-fsdevel@vger.kernel.org
6622 S:      Maintained
6623 F:      fs/*
6624 F:      include/linux/fs.h
6625 F:      include/linux/fs_types.h
6626 F:      include/uapi/linux/fs.h
6627 F:      include/uapi/linux/openat2.h
6628
6629 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6630 M:      Riku Voipio <riku.voipio@iki.fi>
6631 L:      linux-hwmon@vger.kernel.org
6632 S:      Maintained
6633 F:      drivers/hwmon/f75375s.c
6634 F:      include/linux/f75375s.h
6635
6636 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6637 M:      Clemens Ladisch <clemens@ladisch.de>
6638 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
6639 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6640 S:      Maintained
6641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6642 F:      include/uapi/sound/firewire.h
6643 F:      sound/firewire/
6644
6645 FIREWIRE MEDIA DRIVERS (firedtv)
6646 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6647 L:      linux-media@vger.kernel.org
6648 L:      linux1394-devel@lists.sourceforge.net
6649 S:      Maintained
6650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6651 F:      drivers/media/firewire/
6652
6653 FIREWIRE SBP-2 TARGET
6654 M:      Chris Boot <bootc@bootc.net>
6655 L:      linux-scsi@vger.kernel.org
6656 L:      target-devel@vger.kernel.org
6657 L:      linux1394-devel@lists.sourceforge.net
6658 S:      Maintained
6659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6660 F:      drivers/target/sbp/
6661
6662 FIREWIRE SUBSYSTEM
6663 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6664 L:      linux1394-devel@lists.sourceforge.net
6665 S:      Maintained
6666 W:      http://ieee1394.wiki.kernel.org/
6667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6668 F:      drivers/firewire/
6669 F:      include/linux/firewire.h
6670 F:      include/uapi/linux/firewire*.h
6671 F:      tools/firewire/
6672
6673 FIRMWARE LOADER (request_firmware)
6674 M:      Luis Chamberlain <mcgrof@kernel.org>
6675 L:      linux-kernel@vger.kernel.org
6676 S:      Maintained
6677 F:      Documentation/firmware_class/
6678 F:      drivers/base/firmware_loader/
6679 F:      include/linux/firmware.h
6680
6681 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6682 M:      Joshua Morris <josh.h.morris@us.ibm.com>
6683 M:      Philip Kelleher <pjk1939@linux.ibm.com>
6684 S:      Maintained
6685 F:      drivers/block/rsxx/
6686
6687 FLEXTIMER FTM-QUADDEC DRIVER
6688 M:      Patrick Havelange <patrick.havelange@essensium.com>
6689 L:      linux-iio@vger.kernel.org
6690 S:      Maintained
6691 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6692 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6693 F:      drivers/counter/ftm-quaddec.c
6694
6695 FLOPPY DRIVER
6696 M:      Denis Efremov <efremov@linux.com>
6697 L:      linux-block@vger.kernel.org
6698 S:      Odd Fixes
6699 F:      drivers/block/floppy.c
6700
6701 FLYSKY FSIA6B RC RECEIVER
6702 M:      Markus Koch <markus@notsyncing.net>
6703 L:      linux-input@vger.kernel.org
6704 S:      Maintained
6705 F:      drivers/input/joystick/fsia6b.c
6706
6707 FORCEDETH GIGABIT ETHERNET DRIVER
6708 M:      Rain River <rain.1986.08.12@gmail.com>
6709 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
6710 L:      netdev@vger.kernel.org
6711 S:      Maintained
6712 F:      drivers/net/ethernet/nvidia/*
6713
6714 FPGA DFL DRIVERS
6715 M:      Wu Hao <hao.wu@intel.com>
6716 L:      linux-fpga@vger.kernel.org
6717 S:      Maintained
6718 F:      Documentation/fpga/dfl.rst
6719 F:      drivers/fpga/dfl*
6720 F:      include/uapi/linux/fpga-dfl.h
6721
6722 FPGA MANAGER FRAMEWORK
6723 M:      Moritz Fischer <mdf@kernel.org>
6724 L:      linux-fpga@vger.kernel.org
6725 S:      Maintained
6726 W:      http://www.rocketboards.org
6727 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6729 F:      Documentation/devicetree/bindings/fpga/
6730 F:      Documentation/driver-api/fpga/
6731 F:      Documentation/fpga/
6732 F:      drivers/fpga/
6733 F:      include/linux/fpga/
6734
6735 FPU EMULATOR
6736 M:      Bill Metzenthen <billm@melbpc.org.au>
6737 S:      Maintained
6738 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6739 F:      arch/x86/math-emu/
6740
6741 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6742 L:      netdev@vger.kernel.org
6743 S:      Orphan
6744 F:      drivers/net/wan/dlci.c
6745 F:      drivers/net/wan/sdla.c
6746
6747 FRAMEBUFFER LAYER
6748 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6749 L:      dri-devel@lists.freedesktop.org
6750 L:      linux-fbdev@vger.kernel.org
6751 S:      Maintained
6752 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6753 T:      git git://anongit.freedesktop.org/drm/drm-misc
6754 F:      Documentation/fb/
6755 F:      drivers/video/
6756 F:      include/linux/fb.h
6757 F:      include/uapi/linux/fb.h
6758 F:      include/uapi/video/
6759 F:      include/video/
6760
6761 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6762 M:      Horia Geantă <horia.geanta@nxp.com>
6763 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
6764 L:      linux-crypto@vger.kernel.org
6765 S:      Maintained
6766 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6767 F:      drivers/crypto/caam/
6768
6769 FREESCALE COLDFIRE M5441X MMC DRIVER
6770 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
6771 L:      linux-mmc@vger.kernel.org
6772 S:      Maintained
6773 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
6774 F:      include/linux/platform_data/mmc-esdhc-mcf.h
6775
6776 FREESCALE DIU FRAMEBUFFER DRIVER
6777 M:      Timur Tabi <timur@kernel.org>
6778 L:      linux-fbdev@vger.kernel.org
6779 S:      Maintained
6780 F:      drivers/video/fbdev/fsl-diu-fb.*
6781
6782 FREESCALE DMA DRIVER
6783 M:      Li Yang <leoyang.li@nxp.com>
6784 M:      Zhang Wei <zw@zh-kernel.org>
6785 L:      linuxppc-dev@lists.ozlabs.org
6786 S:      Maintained
6787 F:      drivers/dma/fsldma.*
6788
6789 FREESCALE ENETC ETHERNET DRIVERS
6790 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6791 L:      netdev@vger.kernel.org
6792 S:      Maintained
6793 F:      drivers/net/ethernet/freescale/enetc/
6794
6795 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6796 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6797 L:      netdev@vger.kernel.org
6798 S:      Maintained
6799 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6800 F:      drivers/net/ethernet/freescale/gianfar*
6801
6802 FREESCALE GPMI NAND DRIVER
6803 M:      Han Xu <han.xu@nxp.com>
6804 L:      linux-mtd@lists.infradead.org
6805 S:      Maintained
6806 F:      drivers/mtd/nand/raw/gpmi-nand/*
6807
6808 FREESCALE I2C CPM DRIVER
6809 M:      Jochen Friedrich <jochen@scram.de>
6810 L:      linuxppc-dev@lists.ozlabs.org
6811 L:      linux-i2c@vger.kernel.org
6812 S:      Maintained
6813 F:      drivers/i2c/busses/i2c-cpm.c
6814
6815 FREESCALE IMX / MXC FEC DRIVER
6816 M:      Fugang Duan <fugang.duan@nxp.com>
6817 L:      netdev@vger.kernel.org
6818 S:      Maintained
6819 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
6820 F:      drivers/net/ethernet/freescale/fec.h
6821 F:      drivers/net/ethernet/freescale/fec_main.c
6822 F:      drivers/net/ethernet/freescale/fec_ptp.c
6823
6824 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
6825 M:      Sascha Hauer <s.hauer@pengutronix.de>
6826 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6827 L:      linux-fbdev@vger.kernel.org
6828 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6829 S:      Maintained
6830 F:      drivers/video/fbdev/imxfb.c
6831 F:      include/linux/platform_data/video-imxfb.h
6832
6833 FREESCALE IMX DDR PMU DRIVER
6834 M:      Frank Li <Frank.li@nxp.com>
6835 L:      linux-arm-kernel@lists.infradead.org
6836 S:      Maintained
6837 F:      Documentation/admin-guide/perf/imx-ddr.rst
6838 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.txt
6839 F:      drivers/perf/fsl_imx8_ddr_perf.c
6840
6841 FREESCALE IMX I2C DRIVER
6842 M:      Oleksij Rempel <o.rempel@pengutronix.de>
6843 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6844 L:      linux-i2c@vger.kernel.org
6845 S:      Maintained
6846 F:      Documentation/devicetree/bindings/i2c/i2c-imx.txt
6847 F:      drivers/i2c/busses/i2c-imx.c
6848
6849 FREESCALE IMX LPI2C DRIVER
6850 M:      Dong Aisheng <aisheng.dong@nxp.com>
6851 L:      linux-i2c@vger.kernel.org
6852 L:      linux-imx@nxp.com
6853 S:      Maintained
6854 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.txt
6855 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
6856
6857 FREESCALE QORIQ DPAA ETHERNET DRIVER
6858 M:      Madalin Bucur <madalin.bucur@nxp.com>
6859 L:      netdev@vger.kernel.org
6860 S:      Maintained
6861 F:      drivers/net/ethernet/freescale/dpaa
6862
6863 FREESCALE QORIQ DPAA FMAN DRIVER
6864 M:      Madalin Bucur <madalin.bucur@nxp.com>
6865 L:      netdev@vger.kernel.org
6866 S:      Maintained
6867 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
6868 F:      drivers/net/ethernet/freescale/fman
6869
6870 FREESCALE QORIQ PTP CLOCK DRIVER
6871 M:      Yangbo Lu <yangbo.lu@nxp.com>
6872 L:      netdev@vger.kernel.org
6873 S:      Maintained
6874 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
6875 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
6876 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
6877 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
6878 F:      drivers/ptp/ptp_qoriq.c
6879 F:      drivers/ptp/ptp_qoriq_debugfs.c
6880 F:      include/linux/fsl/ptp_qoriq.h
6881
6882 FREESCALE QUAD SPI DRIVER
6883 M:      Han Xu <han.xu@nxp.com>
6884 L:      linux-spi@vger.kernel.org
6885 S:      Maintained
6886 F:      drivers/spi/spi-fsl-qspi.c
6887
6888 FREESCALE QUICC ENGINE LIBRARY
6889 M:      Qiang Zhao <qiang.zhao@nxp.com>
6890 L:      linuxppc-dev@lists.ozlabs.org
6891 S:      Maintained
6892 F:      drivers/soc/fsl/qe/
6893 F:      include/soc/fsl/*qe*.h
6894 F:      include/soc/fsl/*ucc*.h
6895
6896 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
6897 M:      Li Yang <leoyang.li@nxp.com>
6898 L:      netdev@vger.kernel.org
6899 L:      linuxppc-dev@lists.ozlabs.org
6900 S:      Maintained
6901 F:      drivers/net/ethernet/freescale/ucc_geth*
6902
6903 FREESCALE QUICC ENGINE UCC HDLC DRIVER
6904 M:      Zhao Qiang <qiang.zhao@nxp.com>
6905 L:      netdev@vger.kernel.org
6906 L:      linuxppc-dev@lists.ozlabs.org
6907 S:      Maintained
6908 F:      drivers/net/wan/fsl_ucc_hdlc*
6909
6910 FREESCALE QUICC ENGINE UCC UART DRIVER
6911 M:      Timur Tabi <timur@kernel.org>
6912 L:      linuxppc-dev@lists.ozlabs.org
6913 S:      Maintained
6914 F:      drivers/tty/serial/ucc_uart.c
6915
6916 FREESCALE SOC DRIVERS
6917 M:      Li Yang <leoyang.li@nxp.com>
6918 L:      linuxppc-dev@lists.ozlabs.org
6919 L:      linux-arm-kernel@lists.infradead.org
6920 S:      Maintained
6921 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
6922 F:      Documentation/devicetree/bindings/soc/fsl/
6923 F:      drivers/soc/fsl/
6924 F:      include/linux/fsl/
6925
6926 FREESCALE SOC FS_ENET DRIVER
6927 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
6928 L:      linuxppc-dev@lists.ozlabs.org
6929 L:      netdev@vger.kernel.org
6930 S:      Maintained
6931 F:      drivers/net/ethernet/freescale/fs_enet/
6932 F:      include/linux/fs_enet_pd.h
6933
6934 FREESCALE SOC SOUND DRIVERS
6935 M:      Timur Tabi <timur@kernel.org>
6936 M:      Nicolin Chen <nicoleotsuka@gmail.com>
6937 M:      Xiubo Li <Xiubo.Lee@gmail.com>
6938 R:      Fabio Estevam <festevam@gmail.com>
6939 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6940 L:      linuxppc-dev@lists.ozlabs.org
6941 S:      Maintained
6942 F:      sound/soc/fsl/fsl*
6943 F:      sound/soc/fsl/imx*
6944 F:      sound/soc/fsl/mpc8610_hpcd.c
6945
6946 FREESCALE USB PERIPHERAL DRIVERS
6947 M:      Li Yang <leoyang.li@nxp.com>
6948 L:      linux-usb@vger.kernel.org
6949 L:      linuxppc-dev@lists.ozlabs.org
6950 S:      Maintained
6951 F:      drivers/usb/gadget/udc/fsl*
6952
6953 FREEVXFS FILESYSTEM
6954 M:      Christoph Hellwig <hch@infradead.org>
6955 S:      Maintained
6956 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
6957 F:      fs/freevxfs/
6958
6959 FREEZER
6960 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6961 M:      Pavel Machek <pavel@ucw.cz>
6962 L:      linux-pm@vger.kernel.org
6963 S:      Supported
6964 F:      Documentation/power/freezing-of-tasks.rst
6965 F:      include/linux/freezer.h
6966 F:      kernel/freezer.c
6967
6968 FRONTSWAP API
6969 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
6970 L:      linux-kernel@vger.kernel.org
6971 S:      Maintained
6972 F:      include/linux/frontswap.h
6973 F:      mm/frontswap.c
6974
6975 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
6976 M:      David Howells <dhowells@redhat.com>
6977 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
6978 S:      Supported
6979 F:      Documentation/filesystems/caching/
6980 F:      fs/fscache/
6981 F:      include/linux/fscache*.h
6982
6983 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
6984 M:      Theodore Y. Ts'o <tytso@mit.edu>
6985 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6986 M:      Eric Biggers <ebiggers@kernel.org>
6987 L:      linux-fscrypt@vger.kernel.org
6988 S:      Supported
6989 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6990 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
6991 F:      Documentation/filesystems/fscrypt.rst
6992 F:      fs/crypto/
6993 F:      include/linux/fscrypt*.h
6994 F:      include/uapi/linux/fscrypt.h
6995
6996 FSI SUBSYSTEM
6997 M:      Jeremy Kerr <jk@ozlabs.org>
6998 M:      Joel Stanley <joel@jms.id.au>
6999 R:      Alistar Popple <alistair@popple.id.au>
7000 R:      Eddie James <eajames@linux.ibm.com>
7001 L:      linux-fsi@lists.ozlabs.org
7002 S:      Supported
7003 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7004 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7005 F:      drivers/fsi/
7006 F:      include/linux/fsi*.h
7007 F:      include/trace/events/fsi*.h
7008
7009 FSI-ATTACHED I2C DRIVER
7010 M:      Eddie James <eajames@linux.ibm.com>
7011 L:      linux-i2c@vger.kernel.org
7012 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7013 S:      Maintained
7014 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7015 F:      drivers/i2c/busses/i2c-fsi.c
7016
7017 FSI-ATTACHED SPI DRIVER
7018 M:      Eddie James <eajames@linux.ibm.com>
7019 L:      linux-spi@vger.kernel.org
7020 S:      Maintained
7021 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7022 F:      drivers/spi/spi-fsi.c
7023
7024 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7025 M:      Jan Kara <jack@suse.cz>
7026 R:      Amir Goldstein <amir73il@gmail.com>
7027 L:      linux-fsdevel@vger.kernel.org
7028 S:      Maintained
7029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7030 F:      fs/notify/
7031 F:      include/linux/fsnotify*.h
7032
7033 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7034 M:      Eric Biggers <ebiggers@kernel.org>
7035 M:      Theodore Y. Ts'o <tytso@mit.edu>
7036 L:      linux-fscrypt@vger.kernel.org
7037 S:      Supported
7038 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7039 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7040 F:      Documentation/filesystems/fsverity.rst
7041 F:      fs/verity/
7042 F:      include/linux/fsverity.h
7043 F:      include/uapi/linux/fsverity.h
7044
7045 FUJITSU LAPTOP EXTRAS
7046 M:      Jonathan Woithe <jwoithe@just42.net>
7047 L:      platform-driver-x86@vger.kernel.org
7048 S:      Maintained
7049 F:      drivers/platform/x86/fujitsu-laptop.c
7050
7051 FUJITSU M-5MO LS CAMERA ISP DRIVER
7052 M:      Kyungmin Park <kyungmin.park@samsung.com>
7053 M:      Heungjun Kim <riverful.kim@samsung.com>
7054 L:      linux-media@vger.kernel.org
7055 S:      Maintained
7056 F:      drivers/media/i2c/m5mols/
7057 F:      include/media/i2c/m5mols.h
7058
7059 FUJITSU TABLET EXTRAS
7060 M:      Robert Gerlach <khnz@gmx.de>
7061 L:      platform-driver-x86@vger.kernel.org
7062 S:      Maintained
7063 F:      drivers/platform/x86/fujitsu-tablet.c
7064
7065 FUSE: FILESYSTEM IN USERSPACE
7066 M:      Miklos Szeredi <miklos@szeredi.hu>
7067 L:      linux-fsdevel@vger.kernel.org
7068 S:      Maintained
7069 W:      http://fuse.sourceforge.net/
7070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7071 F:      Documentation/filesystems/fuse.rst
7072 F:      fs/fuse/
7073 F:      include/uapi/linux/fuse.h
7074
7075 FUTEX SUBSYSTEM
7076 M:      Thomas Gleixner <tglx@linutronix.de>
7077 M:      Ingo Molnar <mingo@redhat.com>
7078 R:      Peter Zijlstra <peterz@infradead.org>
7079 R:      Darren Hart <dvhart@infradead.org>
7080 L:      linux-kernel@vger.kernel.org
7081 S:      Maintained
7082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7083 F:      Documentation/locking/*futex*
7084 F:      include/asm-generic/futex.h
7085 F:      include/linux/futex.h
7086 F:      include/uapi/linux/futex.h
7087 F:      kernel/futex.c
7088 F:      tools/perf/bench/futex*
7089 F:      Documentation/locking/*futex*
7090
7091 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7092 M:      Tim Harvey <tharvey@gateworks.com>
7093 M:      Robert Jones <rjones@gateworks.com>
7094 S:      Maintained
7095 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7096 F:      drivers/mfd/gateworks-gsc.c
7097 F:      include/linux/mfd/gsc.h
7098 F:      Documentation/hwmon/gsc-hwmon.rst
7099 F:      drivers/hwmon/gsc-hwmon.c
7100 F:      include/linux/platform_data/gsc_hwmon.h
7101
7102 GASKET DRIVER FRAMEWORK
7103 M:      Rob Springer <rspringer@google.com>
7104 M:      Todd Poynor <toddpoynor@google.com>
7105 M:      Ben Chan <benchan@chromium.org>
7106 M:      Richard Yeh <rcy@google.com>
7107 S:      Maintained
7108 F:      drivers/staging/gasket/
7109
7110 GCC PLUGINS
7111 M:      Kees Cook <keescook@chromium.org>
7112 R:      Emese Revfy <re.emese@gmail.com>
7113 L:      kernel-hardening@lists.openwall.com
7114 S:      Maintained
7115 F:      Documentation/kbuild/gcc-plugins.rst
7116 F:      scripts/Makefile.gcc-plugins
7117 F:      scripts/gcc-plugin.sh
7118 F:      scripts/gcc-plugins/
7119
7120 GCOV BASED KERNEL PROFILING
7121 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7122 S:      Maintained
7123 F:      Documentation/dev-tools/gcov.rst
7124 F:      kernel/gcov/
7125
7126 GDB KERNEL DEBUGGING HELPER SCRIPTS
7127 M:      Jan Kiszka <jan.kiszka@siemens.com>
7128 M:      Kieran Bingham <kbingham@kernel.org>
7129 S:      Supported
7130 F:      scripts/gdb/
7131
7132 GDT SCSI DISK ARRAY CONTROLLER DRIVER
7133 M:      Achim Leubner <achim_leubner@adaptec.com>
7134 L:      linux-scsi@vger.kernel.org
7135 S:      Supported
7136 W:      http://www.icp-vortex.com/
7137 F:      drivers/scsi/gdt*
7138
7139 GEMTEK FM RADIO RECEIVER DRIVER
7140 M:      Hans Verkuil <hverkuil@xs4all.nl>
7141 L:      linux-media@vger.kernel.org
7142 S:      Maintained
7143 W:      https://linuxtv.org
7144 T:      git git://linuxtv.org/media_tree.git
7145 F:      drivers/media/radio/radio-gemtek*
7146
7147 GENERIC ARCHITECTURE TOPOLOGY
7148 M:      Sudeep Holla <sudeep.holla@arm.com>
7149 L:      linux-kernel@vger.kernel.org
7150 S:      Maintained
7151 F:      drivers/base/arch_topology.c
7152 F:      include/linux/arch_topology.h
7153
7154 GENERIC GPIO I2C DRIVER
7155 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7156 S:      Supported
7157 F:      drivers/i2c/busses/i2c-gpio.c
7158 F:      include/linux/platform_data/i2c-gpio.h
7159
7160 GENERIC GPIO I2C MULTIPLEXER DRIVER
7161 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7162 L:      linux-i2c@vger.kernel.org
7163 S:      Supported
7164 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7165 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7166 F:      include/linux/platform_data/i2c-mux-gpio.h
7167
7168 GENERIC HDLC (WAN) DRIVERS
7169 M:      Krzysztof Halasa <khc@pm.waw.pl>
7170 S:      Maintained
7171 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7172 F:      drivers/net/wan/c101.c
7173 F:      drivers/net/wan/hd6457*
7174 F:      drivers/net/wan/hdlc*
7175 F:      drivers/net/wan/n2.c
7176 F:      drivers/net/wan/pc300too.c
7177 F:      drivers/net/wan/pci200syn.c
7178 F:      drivers/net/wan/wanxl*
7179
7180 GENERIC INCLUDE/ASM HEADER FILES
7181 M:      Arnd Bergmann <arnd@arndb.de>
7182 L:      linux-arch@vger.kernel.org
7183 S:      Maintained
7184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7185 F:      include/asm-generic/
7186 F:      include/uapi/asm-generic/
7187
7188 GENERIC PHY FRAMEWORK
7189 M:      Kishon Vijay Abraham I <kishon@ti.com>
7190 M:      Vinod Koul <vkoul@kernel.org>
7191 L:      linux-kernel@vger.kernel.org
7192 S:      Supported
7193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7194 F:      Documentation/devicetree/bindings/phy/
7195 F:      drivers/phy/
7196 F:      include/linux/phy/
7197
7198 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7199 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7200 S:      Supported
7201 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7202
7203 GENERIC PM DOMAINS
7204 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7205 M:      Kevin Hilman <khilman@kernel.org>
7206 M:      Ulf Hansson <ulf.hansson@linaro.org>
7207 L:      linux-pm@vger.kernel.org
7208 S:      Supported
7209 F:      Documentation/devicetree/bindings/power/power?domain*
7210 F:      drivers/base/power/domain*.c
7211 F:      include/linux/pm_domain.h
7212
7213 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7214 M:      Eugen Hristev <eugen.hristev@microchip.com>
7215 L:      linux-input@vger.kernel.org
7216 S:      Maintained
7217 F:      drivers/input/touchscreen/resistive-adc-touch.c
7218
7219 GENERIC UIO DRIVER FOR PCI DEVICES
7220 M:      "Michael S. Tsirkin" <mst@redhat.com>
7221 L:      kvm@vger.kernel.org
7222 S:      Supported
7223 F:      drivers/uio/uio_pci_generic.c
7224
7225 GENERIC VDSO LIBRARY
7226 M:      Andy Lutomirski <luto@kernel.org>
7227 M:      Thomas Gleixner <tglx@linutronix.de>
7228 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7229 L:      linux-kernel@vger.kernel.org
7230 S:      Maintained
7231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7232 F:      include/asm-generic/vdso/vsyscall.h
7233 F:      include/vdso/
7234 F:      kernel/time/vsyscall.c
7235 F:      lib/vdso/
7236
7237 GENWQE (IBM Generic Workqueue Card)
7238 M:      Frank Haverkamp <haver@linux.ibm.com>
7239 S:      Supported
7240 F:      drivers/misc/genwqe/
7241
7242 GET_MAINTAINER SCRIPT
7243 M:      Joe Perches <joe@perches.com>
7244 S:      Maintained
7245 F:      scripts/get_maintainer.pl
7246
7247 GFS2 FILE SYSTEM
7248 M:      Bob Peterson <rpeterso@redhat.com>
7249 M:      Andreas Gruenbacher <agruenba@redhat.com>
7250 L:      cluster-devel@redhat.com
7251 S:      Supported
7252 W:      http://sources.redhat.com/cluster/
7253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7254 F:      Documentation/filesystems/gfs2*.txt
7255 F:      fs/gfs2/
7256 F:      include/uapi/linux/gfs2_ondisk.h
7257
7258 GNSS SUBSYSTEM
7259 M:      Johan Hovold <johan@kernel.org>
7260 S:      Maintained
7261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7262 F:      Documentation/ABI/testing/sysfs-class-gnss
7263 F:      Documentation/devicetree/bindings/gnss/
7264 F:      drivers/gnss/
7265 F:      include/linux/gnss.h
7266
7267 GO7007 MPEG CODEC
7268 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7269 L:      linux-media@vger.kernel.org
7270 S:      Maintained
7271 F:      drivers/media/usb/go7007/
7272
7273 GOODIX TOUCHSCREEN
7274 M:      Bastien Nocera <hadess@hadess.net>
7275 L:      linux-input@vger.kernel.org
7276 S:      Maintained
7277 F:      drivers/input/touchscreen/goodix.c
7278
7279 GOOGLE ETHERNET DRIVERS
7280 M:      Catherine Sullivan <csully@google.com>
7281 R:      Sagi Shahar <sagis@google.com>
7282 R:      Jon Olson <jonolson@google.com>
7283 L:      netdev@vger.kernel.org
7284 S:      Supported
7285 F:      Documentation/networking/device_drivers/google/gve.rst
7286 F:      drivers/net/ethernet/google
7287
7288 GPD POCKET FAN DRIVER
7289 M:      Hans de Goede <hdegoede@redhat.com>
7290 L:      platform-driver-x86@vger.kernel.org
7291 S:      Maintained
7292 F:      drivers/platform/x86/gpd-pocket-fan.c
7293
7294 GPIO ACPI SUPPORT
7295 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7296 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7297 L:      linux-gpio@vger.kernel.org
7298 L:      linux-acpi@vger.kernel.org
7299 S:      Maintained
7300 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7301 F:      drivers/gpio/gpiolib-acpi.c
7302 F:      drivers/gpio/gpiolib-acpi.h
7303
7304 GPIO AGGREGATOR
7305 M:      Geert Uytterhoeven <geert+renesas@glider.be>
7306 L:      linux-gpio@vger.kernel.org
7307 S:      Supported
7308 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7309 F:      drivers/gpio/gpio-aggregator.c
7310
7311 GPIO IR Transmitter
7312 M:      Sean Young <sean@mess.org>
7313 L:      linux-media@vger.kernel.org
7314 S:      Maintained
7315 F:      drivers/media/rc/gpio-ir-tx.c
7316
7317 GPIO MOCKUP DRIVER
7318 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7319 L:      linux-gpio@vger.kernel.org
7320 S:      Maintained
7321 F:      drivers/gpio/gpio-mockup.c
7322 F:      tools/testing/selftests/gpio/
7323
7324 GPIO REGMAP
7325 R:      Michael Walle <michael@walle.cc>
7326 S:      Maintained
7327 F:      drivers/gpio/gpio-regmap.c
7328 F:      include/linux/gpio/regmap.h
7329
7330 GPIO SUBSYSTEM
7331 M:      Linus Walleij <linus.walleij@linaro.org>
7332 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7333 L:      linux-gpio@vger.kernel.org
7334 S:      Maintained
7335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7336 F:      Documentation/ABI/obsolete/sysfs-gpio
7337 F:      Documentation/ABI/testing/gpio-cdev
7338 F:      Documentation/admin-guide/gpio/
7339 F:      Documentation/devicetree/bindings/gpio/
7340 F:      Documentation/driver-api/gpio/
7341 F:      drivers/gpio/
7342 F:      include/asm-generic/gpio.h
7343 F:      include/linux/gpio.h
7344 F:      include/linux/gpio/
7345 F:      include/linux/of_gpio.h
7346 F:      include/uapi/linux/gpio.h
7347 F:      tools/gpio/
7348
7349 GRE DEMULTIPLEXER DRIVER
7350 M:      Dmitry Kozlov <xeb@mail.ru>
7351 L:      netdev@vger.kernel.org
7352 S:      Maintained
7353 F:      include/net/gre.h
7354 F:      net/ipv4/gre_demux.c
7355 F:      net/ipv4/gre_offload.c
7356
7357 GRETH 10/100/1G Ethernet MAC device driver
7358 M:      Andreas Larsson <andreas@gaisler.com>
7359 L:      netdev@vger.kernel.org
7360 S:      Maintained
7361 F:      drivers/net/ethernet/aeroflex/
7362
7363 GREYBUS AUDIO PROTOCOLS DRIVERS
7364 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7365 M:      Mark Greer <mgreer@animalcreek.com>
7366 S:      Maintained
7367 F:      drivers/staging/greybus/audio_apbridgea.c
7368 F:      drivers/staging/greybus/audio_apbridgea.h
7369 F:      drivers/staging/greybus/audio_codec.c
7370 F:      drivers/staging/greybus/audio_codec.h
7371 F:      drivers/staging/greybus/audio_gb.c
7372 F:      drivers/staging/greybus/audio_manager.c
7373 F:      drivers/staging/greybus/audio_manager.h
7374 F:      drivers/staging/greybus/audio_manager_module.c
7375 F:      drivers/staging/greybus/audio_manager_private.h
7376 F:      drivers/staging/greybus/audio_manager_sysfs.c
7377 F:      drivers/staging/greybus/audio_module.c
7378 F:      drivers/staging/greybus/audio_topology.c
7379
7380 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7381 M:      Viresh Kumar <vireshk@kernel.org>
7382 S:      Maintained
7383 F:      drivers/staging/greybus/authentication.c
7384 F:      drivers/staging/greybus/bootrom.c
7385 F:      drivers/staging/greybus/firmware.h
7386 F:      drivers/staging/greybus/fw-core.c
7387 F:      drivers/staging/greybus/fw-download.c
7388 F:      drivers/staging/greybus/fw-management.c
7389 F:      drivers/staging/greybus/greybus_authentication.h
7390 F:      drivers/staging/greybus/greybus_firmware.h
7391 F:      drivers/staging/greybus/hid.c
7392 F:      drivers/staging/greybus/i2c.c
7393 F:      drivers/staging/greybus/spi.c
7394 F:      drivers/staging/greybus/spilib.c
7395 F:      drivers/staging/greybus/spilib.h
7396
7397 GREYBUS LOOPBACK DRIVER
7398 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7399 S:      Maintained
7400 F:      drivers/staging/greybus/loopback.c
7401
7402 GREYBUS PLATFORM DRIVERS
7403 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7404 S:      Maintained
7405 F:      drivers/staging/greybus/arche-apb-ctrl.c
7406 F:      drivers/staging/greybus/arche-platform.c
7407 F:      drivers/staging/greybus/arche_platform.h
7408
7409 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7410 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7411 S:      Maintained
7412 F:      drivers/staging/greybus/gpio.c
7413 F:      drivers/staging/greybus/light.c
7414 F:      drivers/staging/greybus/power_supply.c
7415 F:      drivers/staging/greybus/sdio.c
7416 F:      drivers/staging/greybus/spi.c
7417 F:      drivers/staging/greybus/spilib.c
7418
7419 GREYBUS SUBSYSTEM
7420 M:      Johan Hovold <johan@kernel.org>
7421 M:      Alex Elder <elder@kernel.org>
7422 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7423 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7424 S:      Maintained
7425 F:      drivers/greybus/
7426 F:      drivers/staging/greybus/
7427 F:      include/linux/greybus.h
7428 F:      include/linux/greybus/
7429
7430 GREYBUS UART PROTOCOLS DRIVERS
7431 M:      David Lin <dtwlin@gmail.com>
7432 S:      Maintained
7433 F:      drivers/staging/greybus/log.c
7434 F:      drivers/staging/greybus/uart.c
7435
7436 GS1662 VIDEO SERIALIZER
7437 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7438 L:      linux-media@vger.kernel.org
7439 S:      Maintained
7440 T:      git git://linuxtv.org/media_tree.git
7441 F:      drivers/media/spi/gs1662.c
7442
7443 GSPCA FINEPIX SUBDRIVER
7444 M:      Frank Zago <frank@zago.net>
7445 L:      linux-media@vger.kernel.org
7446 S:      Maintained
7447 T:      git git://linuxtv.org/media_tree.git
7448 F:      drivers/media/usb/gspca/finepix.c
7449
7450 GSPCA GL860 SUBDRIVER
7451 M:      Olivier Lorin <o.lorin@laposte.net>
7452 L:      linux-media@vger.kernel.org
7453 S:      Maintained
7454 T:      git git://linuxtv.org/media_tree.git
7455 F:      drivers/media/usb/gspca/gl860/
7456
7457 GSPCA M5602 SUBDRIVER
7458 M:      Erik Andren <erik.andren@gmail.com>
7459 L:      linux-media@vger.kernel.org
7460 S:      Maintained
7461 T:      git git://linuxtv.org/media_tree.git
7462 F:      drivers/media/usb/gspca/m5602/
7463
7464 GSPCA PAC207 SONIXB SUBDRIVER
7465 M:      Hans Verkuil <hverkuil@xs4all.nl>
7466 L:      linux-media@vger.kernel.org
7467 S:      Odd Fixes
7468 T:      git git://linuxtv.org/media_tree.git
7469 F:      drivers/media/usb/gspca/pac207.c
7470
7471 GSPCA SN9C20X SUBDRIVER
7472 M:      Brian Johnson <brijohn@gmail.com>
7473 L:      linux-media@vger.kernel.org
7474 S:      Maintained
7475 T:      git git://linuxtv.org/media_tree.git
7476 F:      drivers/media/usb/gspca/sn9c20x.c
7477
7478 GSPCA T613 SUBDRIVER
7479 M:      Leandro Costantino <lcostantino@gmail.com>
7480 L:      linux-media@vger.kernel.org
7481 S:      Maintained
7482 T:      git git://linuxtv.org/media_tree.git
7483 F:      drivers/media/usb/gspca/t613.c
7484
7485 GSPCA USB WEBCAM DRIVER
7486 M:      Hans Verkuil <hverkuil@xs4all.nl>
7487 L:      linux-media@vger.kernel.org
7488 S:      Odd Fixes
7489 T:      git git://linuxtv.org/media_tree.git
7490 F:      drivers/media/usb/gspca/
7491
7492 GTP (GPRS Tunneling Protocol)
7493 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7494 M:      Harald Welte <laforge@gnumonks.org>
7495 L:      osmocom-net-gprs@lists.osmocom.org
7496 S:      Maintained
7497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7498 F:      drivers/net/gtp.c
7499
7500 GUID PARTITION TABLE (GPT)
7501 M:      Davidlohr Bueso <dave@stgolabs.net>
7502 L:      linux-efi@vger.kernel.org
7503 S:      Maintained
7504 F:      block/partitions/efi.*
7505
7506 H8/300 ARCHITECTURE
7507 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
7508 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7509 S:      Maintained
7510 W:      http://uclinux-h8.sourceforge.jp
7511 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7512 F:      arch/h8300/
7513 F:      drivers/clk/h8300/
7514 F:      drivers/clocksource/h8300_*.c
7515 F:      drivers/irqchip/irq-renesas-h8*.c
7516
7517 HABANALABS PCI DRIVER
7518 M:      Oded Gabbay <oded.gabbay@gmail.com>
7519 S:      Supported
7520 T:      git https://github.com/HabanaAI/linux.git
7521 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7522 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7523 F:      drivers/misc/habanalabs/
7524 F:      include/uapi/misc/habanalabs.h
7525
7526 HACKRF MEDIA DRIVER
7527 M:      Antti Palosaari <crope@iki.fi>
7528 L:      linux-media@vger.kernel.org
7529 S:      Maintained
7530 W:      https://linuxtv.org
7531 W:      http://palosaari.fi/linux/
7532 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7533 T:      git git://linuxtv.org/anttip/media_tree.git
7534 F:      drivers/media/usb/hackrf/
7535
7536 HANTRO VPU CODEC DRIVER
7537 M:      Ezequiel Garcia <ezequiel@collabora.com>
7538 M:      Philipp Zabel <p.zabel@pengutronix.de>
7539 L:      linux-media@vger.kernel.org
7540 L:      linux-rockchip@lists.infradead.org
7541 S:      Maintained
7542 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
7543 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
7544 F:      drivers/staging/media/hantro/
7545
7546 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7547 M:      Frank Seidel <frank@f-seidel.de>
7548 L:      platform-driver-x86@vger.kernel.org
7549 S:      Maintained
7550 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7551 F:      drivers/platform/x86/hdaps.c
7552
7553 HARDWARE MONITORING
7554 M:      Jean Delvare <jdelvare@suse.com>
7555 M:      Guenter Roeck <linux@roeck-us.net>
7556 L:      linux-hwmon@vger.kernel.org
7557 S:      Maintained
7558 W:      http://hwmon.wiki.kernel.org/
7559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7560 F:      Documentation/devicetree/bindings/hwmon/
7561 F:      Documentation/hwmon/
7562 F:      drivers/hwmon/
7563 F:      include/linux/hwmon*.h
7564 F:      include/trace/events/hwmon*.h
7565
7566 HARDWARE RANDOM NUMBER GENERATOR CORE
7567 M:      Matt Mackall <mpm@selenic.com>
7568 M:      Herbert Xu <herbert@gondor.apana.org.au>
7569 L:      linux-crypto@vger.kernel.org
7570 S:      Odd fixes
7571 F:      Documentation/admin-guide/hw_random.rst
7572 F:      Documentation/devicetree/bindings/rng/
7573 F:      drivers/char/hw_random/
7574 F:      include/linux/hw_random.h
7575
7576 HARDWARE SPINLOCK CORE
7577 M:      Ohad Ben-Cohen <ohad@wizery.com>
7578 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
7579 R:      Baolin Wang <baolin.wang7@gmail.com>
7580 L:      linux-remoteproc@vger.kernel.org
7581 S:      Maintained
7582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7583 F:      Documentation/devicetree/bindings/hwlock/
7584 F:      Documentation/locking/hwspinlock.rst
7585 F:      drivers/hwspinlock/
7586 F:      include/linux/hwspinlock.h
7587
7588 HARDWARE TRACING FACILITIES
7589 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7590 S:      Maintained
7591 F:      drivers/hwtracing/
7592
7593 HARMONY SOUND DRIVER
7594 L:      linux-parisc@vger.kernel.org
7595 S:      Maintained
7596 F:      sound/parisc/harmony.*
7597
7598 HDPVR USB VIDEO ENCODER DRIVER
7599 M:      Hans Verkuil <hverkuil@xs4all.nl>
7600 L:      linux-media@vger.kernel.org
7601 S:      Odd Fixes
7602 W:      https://linuxtv.org
7603 T:      git git://linuxtv.org/media_tree.git
7604 F:      drivers/media/usb/hdpvr/
7605
7606 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7607 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
7608 S:      Supported
7609 F:      Documentation/watchdog/hpwdt.rst
7610 F:      drivers/watchdog/hpwdt.c
7611
7612 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7613 M:      Don Brace <don.brace@microsemi.com>
7614 L:      esc.storagedev@microsemi.com
7615 L:      linux-scsi@vger.kernel.org
7616 S:      Supported
7617 F:      Documentation/scsi/hpsa.rst
7618 F:      drivers/scsi/hpsa*.[ch]
7619 F:      include/linux/cciss*.h
7620 F:      include/uapi/linux/cciss*.h
7621
7622 HFI1 DRIVER
7623 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
7624 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
7625 L:      linux-rdma@vger.kernel.org
7626 S:      Supported
7627 F:      drivers/infiniband/hw/hfi1
7628
7629 HFS FILESYSTEM
7630 L:      linux-fsdevel@vger.kernel.org
7631 S:      Orphan
7632 F:      Documentation/filesystems/hfs.rst
7633 F:      fs/hfs/
7634
7635 HFSPLUS FILESYSTEM
7636 L:      linux-fsdevel@vger.kernel.org
7637 S:      Orphan
7638 F:      Documentation/filesystems/hfsplus.rst
7639 F:      fs/hfsplus/
7640
7641 HGA FRAMEBUFFER DRIVER
7642 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7643 L:      linux-nvidia@lists.surfsouth.com
7644 S:      Maintained
7645 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7646 F:      drivers/video/fbdev/hgafb.c
7647
7648 HIBERNATION (aka Software Suspend, aka swsusp)
7649 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7650 M:      Pavel Machek <pavel@ucw.cz>
7651 L:      linux-pm@vger.kernel.org
7652 S:      Supported
7653 B:      https://bugzilla.kernel.org
7654 F:      arch/*/include/asm/suspend*.h
7655 F:      arch/x86/power/
7656 F:      drivers/base/power/
7657 F:      include/linux/freezer.h
7658 F:      include/linux/pm.h
7659 F:      include/linux/suspend.h
7660 F:      kernel/power/
7661
7662 HID CORE LAYER
7663 M:      Jiri Kosina <jikos@kernel.org>
7664 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
7665 L:      linux-input@vger.kernel.org
7666 S:      Maintained
7667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7668 F:      drivers/hid/
7669 F:      include/linux/hid*
7670 F:      include/uapi/linux/hid*
7671
7672 HID SENSOR HUB DRIVERS
7673 M:      Jiri Kosina <jikos@kernel.org>
7674 M:      Jonathan Cameron <jic23@kernel.org>
7675 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7676 L:      linux-input@vger.kernel.org
7677 L:      linux-iio@vger.kernel.org
7678 S:      Maintained
7679 F:      Documentation/hid/hid-sensor*
7680 F:      drivers/hid/hid-sensor-*
7681 F:      drivers/iio/*/hid-*
7682 F:      include/linux/hid-sensor-*
7683
7684 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7685 M:      Thomas Gleixner <tglx@linutronix.de>
7686 L:      linux-kernel@vger.kernel.org
7687 S:      Maintained
7688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7689 F:      Documentation/timers/
7690 F:      include/linux/clockchips.h
7691 F:      include/linux/hrtimer.h
7692 F:      kernel/time/clockevents.c
7693 F:      kernel/time/hrtimer.c
7694 F:      kernel/time/timer_*.c
7695
7696 HIGH-SPEED SCC DRIVER FOR AX.25
7697 L:      linux-hams@vger.kernel.org
7698 S:      Orphan
7699 F:      drivers/net/hamradio/dmascc.c
7700 F:      drivers/net/hamradio/scc.c
7701
7702 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7703 M:      HighPoint Linux Team <linux@highpoint-tech.com>
7704 S:      Supported
7705 W:      http://www.highpoint-tech.com
7706 F:      Documentation/scsi/hptiop.rst
7707 F:      drivers/scsi/hptiop.c
7708
7709 HIPPI
7710 M:      Jes Sorensen <jes@trained-monkey.org>
7711 L:      linux-hippi@sunsite.dk
7712 S:      Maintained
7713 F:      drivers/net/hippi/
7714 F:      include/linux/hippidevice.h
7715 F:      include/uapi/linux/if_hippi.h
7716 F:      net/802/hippi.c
7717
7718 HISILICON DMA DRIVER
7719 M:      Zhou Wang <wangzhou1@hisilicon.com>
7720 L:      dmaengine@vger.kernel.org
7721 S:      Maintained
7722 F:      drivers/dma/hisi_dma.c
7723
7724 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7725 M:      Zaibo Xu <xuzaibo@huawei.com>
7726 L:      linux-crypto@vger.kernel.org
7727 S:      Maintained
7728 F:      Documentation/ABI/testing/debugfs-hisi-hpre
7729 F:      drivers/crypto/hisilicon/hpre/hpre.h
7730 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
7731 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
7732
7733 HISILICON LPC BUS DRIVER
7734 M:      john.garry@huawei.com
7735 S:      Maintained
7736 W:      http://www.hisilicon.com
7737 F:      Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
7738 F:      drivers/bus/hisi_lpc.c
7739
7740 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7741 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7742 M:      Salil Mehta <salil.mehta@huawei.com>
7743 L:      netdev@vger.kernel.org
7744 S:      Maintained
7745 W:      http://www.hisilicon.com
7746 F:      drivers/net/ethernet/hisilicon/hns3/
7747
7748 HISILICON NETWORK SUBSYSTEM DRIVER
7749 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7750 M:      Salil Mehta <salil.mehta@huawei.com>
7751 L:      netdev@vger.kernel.org
7752 S:      Maintained
7753 W:      http://www.hisilicon.com
7754 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7755 F:      drivers/net/ethernet/hisilicon/
7756
7757 HISILICON PMU DRIVER
7758 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
7759 S:      Supported
7760 W:      http://www.hisilicon.com
7761 F:      Documentation/admin-guide/perf/hisi-pmu.rst
7762 F:      drivers/perf/hisilicon
7763
7764 HISILICON QM AND ZIP Controller DRIVER
7765 M:      Zhou Wang <wangzhou1@hisilicon.com>
7766 L:      linux-crypto@vger.kernel.org
7767 S:      Maintained
7768 F:      Documentation/ABI/testing/debugfs-hisi-zip
7769 F:      drivers/crypto/hisilicon/qm.c
7770 F:      drivers/crypto/hisilicon/qm.h
7771 F:      drivers/crypto/hisilicon/sgl.c
7772 F:      drivers/crypto/hisilicon/zip/
7773
7774 HISILICON ROCE DRIVER
7775 M:      Lijun Ou <oulijun@huawei.com>
7776 M:      Wei Hu(Xavier) <huwei87@hisilicon.com>
7777 M:      Weihang Li <liweihang@huawei.com>
7778 L:      linux-rdma@vger.kernel.org
7779 S:      Maintained
7780 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7781 F:      drivers/infiniband/hw/hns/
7782
7783 HISILICON SAS Controller
7784 M:      John Garry <john.garry@huawei.com>
7785 S:      Supported
7786 W:      http://www.hisilicon.com
7787 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7788 F:      drivers/scsi/hisi_sas/
7789
7790 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
7791 M:      Zaibo Xu <xuzaibo@huawei.com>
7792 L:      linux-crypto@vger.kernel.org
7793 S:      Maintained
7794 F:      Documentation/ABI/testing/debugfs-hisi-sec
7795 F:      drivers/crypto/hisilicon/sec2/sec.h
7796 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
7797 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
7798 F:      drivers/crypto/hisilicon/sec2/sec_main.c
7799
7800 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
7801 M:      Zaibo Xu <xuzaibo@huawei.com>
7802 S:      Maintained
7803 F:      drivers/char/hw_random/hisi-trng-v2.c
7804
7805 HISILICON V3XX SPI NOR FLASH Controller Driver
7806 M:      John Garry <john.garry@huawei.com>
7807 S:      Maintained
7808 W:      http://www.hisilicon.com
7809 F:      drivers/spi/spi-hisi-sfc-v3xx.c
7810
7811 HMM - Heterogeneous Memory Management
7812 M:      Jérôme Glisse <jglisse@redhat.com>
7813 L:      linux-mm@kvack.org
7814 S:      Maintained
7815 F:      Documentation/vm/hmm.rst
7816 F:      include/linux/hmm*
7817 F:      lib/test_hmm*
7818 F:      mm/hmm*
7819 F:      tools/testing/selftests/vm/*hmm*
7820
7821 HOST AP DRIVER
7822 M:      Jouni Malinen <j@w1.fi>
7823 L:      linux-wireless@vger.kernel.org
7824 S:      Obsolete
7825 W:      http://w1.fi/hostap-driver.html
7826 F:      drivers/net/wireless/intersil/hostap/
7827
7828 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
7829 L:      platform-driver-x86@vger.kernel.org
7830 S:      Orphan
7831 F:      drivers/platform/x86/tc1100-wmi.c
7832
7833 HPET:   High Precision Event Timers driver
7834 M:      Clemens Ladisch <clemens@ladisch.de>
7835 S:      Maintained
7836 F:      Documentation/timers/hpet.rst
7837 F:      drivers/char/hpet.c
7838 F:      include/linux/hpet.h
7839 F:      include/uapi/linux/hpet.h
7840
7841 HPET:   x86
7842 S:      Orphan
7843 F:      arch/x86/include/asm/hpet.h
7844 F:      arch/x86/kernel/hpet.c
7845
7846 HPFS FILESYSTEM
7847 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
7848 S:      Maintained
7849 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
7850 F:      fs/hpfs/
7851
7852 HSI SUBSYSTEM
7853 M:      Sebastian Reichel <sre@kernel.org>
7854 S:      Maintained
7855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
7856 F:      Documentation/ABI/testing/sysfs-bus-hsi
7857 F:      Documentation/driver-api/hsi.rst
7858 F:      drivers/hsi/
7859 F:      include/linux/hsi/
7860 F:      include/uapi/linux/hsi/
7861
7862 HSO 3G MODEM DRIVER
7863 L:      linux-usb@vger.kernel.org
7864 S:      Orphan
7865 F:      drivers/net/usb/hso.c
7866
7867 HSR NETWORK PROTOCOL
7868 L:      netdev@vger.kernel.org
7869 S:      Orphan
7870 F:      net/hsr/
7871
7872 HT16K33 LED CONTROLLER DRIVER
7873 M:      Robin van der Gracht <robin@protonic.nl>
7874 S:      Maintained
7875 F:      Documentation/devicetree/bindings/display/ht16k33.txt
7876 F:      drivers/auxdisplay/ht16k33.c
7877
7878 HTCPEN TOUCHSCREEN DRIVER
7879 M:      Pau Oliva Fora <pof@eslack.org>
7880 L:      linux-input@vger.kernel.org
7881 S:      Maintained
7882 F:      drivers/input/touchscreen/htcpen.c
7883
7884 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
7885 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
7886 L:      linux-iio@vger.kernel.org
7887 S:      Maintained
7888 W:      http://www.st.com/
7889 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
7890 F:      drivers/iio/humidity/hts221*
7891
7892 HUAWEI ETHERNET DRIVER
7893 M:      Bin Luo <luobin9@huawei.com>
7894 L:      netdev@vger.kernel.org
7895 S:      Supported
7896 F:      Documentation/networking/hinic.rst
7897 F:      drivers/net/ethernet/huawei/hinic/
7898
7899 HUGETLB FILESYSTEM
7900 M:      Mike Kravetz <mike.kravetz@oracle.com>
7901 L:      linux-mm@kvack.org
7902 S:      Maintained
7903 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
7904 F:      Documentation/admin-guide/mm/hugetlbpage.rst
7905 F:      Documentation/vm/hugetlbfs_reserv.rst
7906 F:      fs/hugetlbfs/
7907 F:      include/linux/hugetlb.h
7908 F:      mm/hugetlb.c
7909
7910 HVA ST MEDIA DRIVER
7911 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
7912 L:      linux-media@vger.kernel.org
7913 S:      Supported
7914 W:      https://linuxtv.org
7915 T:      git git://linuxtv.org/media_tree.git
7916 F:      drivers/media/platform/sti/hva
7917
7918 HWPOISON MEMORY FAILURE HANDLING
7919 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
7920 L:      linux-mm@kvack.org
7921 S:      Maintained
7922 F:      mm/hwpoison-inject.c
7923 F:      mm/memory-failure.c
7924
7925 HYGON PROCESSOR SUPPORT
7926 M:      Pu Wen <puwen@hygon.cn>
7927 L:      linux-kernel@vger.kernel.org
7928 S:      Maintained
7929 F:      arch/x86/kernel/cpu/hygon.c
7930
7931 HYNIX HI556 SENSOR DRIVER
7932 M:      Shawn Tu <shawnx.tu@intel.com>
7933 L:      linux-media@vger.kernel.org
7934 S:      Maintained
7935 T:      git git://linuxtv.org/media_tree.git
7936 F:      drivers/media/i2c/hi556.c
7937
7938 Hyper-V CORE AND DRIVERS
7939 M:      "K. Y. Srinivasan" <kys@microsoft.com>
7940 M:      Haiyang Zhang <haiyangz@microsoft.com>
7941 M:      Stephen Hemminger <sthemmin@microsoft.com>
7942 M:      Wei Liu <wei.liu@kernel.org>
7943 L:      linux-hyperv@vger.kernel.org
7944 S:      Supported
7945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
7946 F:      Documentation/ABI/stable/sysfs-bus-vmbus
7947 F:      Documentation/ABI/testing/debugfs-hyperv
7948 F:      Documentation/networking/device_drivers/microsoft/netvsc.rst
7949 F:      arch/x86/hyperv
7950 F:      arch/x86/include/asm/hyperv-tlfs.h
7951 F:      arch/x86/include/asm/mshyperv.h
7952 F:      arch/x86/include/asm/trace/hyperv.h
7953 F:      arch/x86/kernel/cpu/mshyperv.c
7954 F:      drivers/clocksource/hyperv_timer.c
7955 F:      drivers/hid/hid-hyperv.c
7956 F:      drivers/hv/
7957 F:      drivers/input/serio/hyperv-keyboard.c
7958 F:      drivers/iommu/hyperv-iommu.c
7959 F:      drivers/net/hyperv/
7960 F:      drivers/pci/controller/pci-hyperv-intf.c
7961 F:      drivers/pci/controller/pci-hyperv.c
7962 F:      drivers/scsi/storvsc_drv.c
7963 F:      drivers/uio/uio_hv_generic.c
7964 F:      drivers/video/fbdev/hyperv_fb.c
7965 F:      include/asm-generic/hyperv-tlfs.h
7966 F:      include/asm-generic/mshyperv.h
7967 F:      include/clocksource/hyperv_timer.h
7968 F:      include/linux/hyperv.h
7969 F:      include/uapi/linux/hyperv.h
7970 F:      net/vmw_vsock/hyperv_transport.c
7971 F:      tools/hv/
7972
7973 HYPERBUS SUPPORT
7974 M:      Vignesh Raghavendra <vigneshr@ti.com>
7975 L:      linux-mtd@lists.infradead.org
7976 S:      Supported
7977 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7978 C:      irc://irc.oftc.net/mtd
7979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
7980 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
7981 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
7982 F:      drivers/mtd/hyperbus/
7983 F:      include/linux/mtd/hyperbus.h
7984
7985 HYPERVISOR VIRTUAL CONSOLE DRIVER
7986 L:      linuxppc-dev@lists.ozlabs.org
7987 S:      Odd Fixes
7988 F:      drivers/tty/hvc/
7989
7990 I2C ACPI SUPPORT
7991 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7992 L:      linux-i2c@vger.kernel.org
7993 L:      linux-acpi@vger.kernel.org
7994 S:      Maintained
7995 F:      drivers/i2c/i2c-core-acpi.c
7996
7997 I2C CONTROLLER DRIVER FOR NVIDIA GPU
7998 M:      Ajay Gupta <ajayg@nvidia.com>
7999 L:      linux-i2c@vger.kernel.org
8000 S:      Maintained
8001 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8002 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8003
8004 I2C MUXES
8005 M:      Peter Rosin <peda@axentia.se>
8006 L:      linux-i2c@vger.kernel.org
8007 S:      Maintained
8008 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8009 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8010 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8011 F:      Documentation/i2c/i2c-topology.rst
8012 F:      Documentation/i2c/muxes/
8013 F:      drivers/i2c/i2c-mux.c
8014 F:      drivers/i2c/muxes/
8015 F:      include/linux/i2c-mux.h
8016
8017 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8018 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8019 L:      linux-i2c@vger.kernel.org
8020 S:      Maintained
8021 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8022 F:      drivers/i2c/busses/i2c-mv64xxx.c
8023
8024 I2C OVER PARALLEL PORT
8025 M:      Jean Delvare <jdelvare@suse.com>
8026 L:      linux-i2c@vger.kernel.org
8027 S:      Maintained
8028 F:      Documentation/i2c/busses/i2c-parport.rst
8029 F:      drivers/i2c/busses/i2c-parport.c
8030
8031 I2C SUBSYSTEM
8032 M:      Wolfram Sang <wsa@kernel.org>
8033 L:      linux-i2c@vger.kernel.org
8034 S:      Maintained
8035 W:      https://i2c.wiki.kernel.org/
8036 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8038 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8039 F:      Documentation/i2c/
8040 F:      drivers/i2c/*
8041 F:      include/linux/i2c-dev.h
8042 F:      include/linux/i2c-smbus.h
8043 F:      include/linux/i2c.h
8044 F:      include/uapi/linux/i2c-*.h
8045 F:      include/uapi/linux/i2c.h
8046
8047 I2C SUBSYSTEM HOST DRIVERS
8048 L:      linux-i2c@vger.kernel.org
8049 S:      Odd Fixes
8050 W:      https://i2c.wiki.kernel.org/
8051 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8053 F:      Documentation/devicetree/bindings/i2c/
8054 F:      drivers/i2c/algos/
8055 F:      drivers/i2c/busses/
8056
8057 I2C-TAOS-EVM DRIVER
8058 M:      Jean Delvare <jdelvare@suse.com>
8059 L:      linux-i2c@vger.kernel.org
8060 S:      Maintained
8061 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8062 F:      drivers/i2c/busses/i2c-taos-evm.c
8063
8064 I2C-TINY-USB DRIVER
8065 M:      Till Harbaum <till@harbaum.org>
8066 L:      linux-i2c@vger.kernel.org
8067 S:      Maintained
8068 W:      http://www.harbaum.org/till/i2c_tiny_usb
8069 F:      drivers/i2c/busses/i2c-tiny-usb.c
8070
8071 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8072 M:      Jean Delvare <jdelvare@suse.com>
8073 L:      linux-i2c@vger.kernel.org
8074 S:      Maintained
8075 F:      Documentation/i2c/busses/i2c-ali1535.rst
8076 F:      Documentation/i2c/busses/i2c-ali1563.rst
8077 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8078 F:      Documentation/i2c/busses/i2c-amd756.rst
8079 F:      Documentation/i2c/busses/i2c-amd8111.rst
8080 F:      Documentation/i2c/busses/i2c-i801.rst
8081 F:      Documentation/i2c/busses/i2c-nforce2.rst
8082 F:      Documentation/i2c/busses/i2c-piix4.rst
8083 F:      Documentation/i2c/busses/i2c-sis5595.rst
8084 F:      Documentation/i2c/busses/i2c-sis630.rst
8085 F:      Documentation/i2c/busses/i2c-sis96x.rst
8086 F:      Documentation/i2c/busses/i2c-via.rst
8087 F:      Documentation/i2c/busses/i2c-viapro.rst
8088 F:      drivers/i2c/busses/i2c-ali1535.c
8089 F:      drivers/i2c/busses/i2c-ali1563.c
8090 F:      drivers/i2c/busses/i2c-ali15x3.c
8091 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8092 F:      drivers/i2c/busses/i2c-amd756.c
8093 F:      drivers/i2c/busses/i2c-amd8111.c
8094 F:      drivers/i2c/busses/i2c-i801.c
8095 F:      drivers/i2c/busses/i2c-isch.c
8096 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8097 F:      drivers/i2c/busses/i2c-nforce2.c
8098 F:      drivers/i2c/busses/i2c-piix4.c
8099 F:      drivers/i2c/busses/i2c-sis5595.c
8100 F:      drivers/i2c/busses/i2c-sis630.c
8101 F:      drivers/i2c/busses/i2c-sis96x.c
8102 F:      drivers/i2c/busses/i2c-via.c
8103 F:      drivers/i2c/busses/i2c-viapro.c
8104
8105 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8106 M:      Hans de Goede <hdegoede@redhat.com>
8107 L:      linux-i2c@vger.kernel.org
8108 S:      Maintained
8109 F:      drivers/i2c/busses/i2c-cht-wc.c
8110
8111 I2C/SMBUS ISMT DRIVER
8112 M:      Seth Heasley <seth.heasley@intel.com>
8113 M:      Neil Horman <nhorman@tuxdriver.com>
8114 L:      linux-i2c@vger.kernel.org
8115 F:      Documentation/i2c/busses/i2c-ismt.rst
8116 F:      drivers/i2c/busses/i2c-ismt.c
8117
8118 I2C/SMBUS STUB DRIVER
8119 M:      Jean Delvare <jdelvare@suse.com>
8120 L:      linux-i2c@vger.kernel.org
8121 S:      Maintained
8122 F:      drivers/i2c/i2c-stub.c
8123
8124 I3C DRIVER FOR CADENCE I3C MASTER IP
8125 M:      Przemysław Gaj <pgaj@cadence.com>
8126 S:      Maintained
8127 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8128 F:      drivers/i3c/master/i3c-master-cdns.c
8129
8130 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8131 M:      Vitor Soares <vitor.soares@synopsys.com>
8132 S:      Maintained
8133 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8134 F:      drivers/i3c/master/dw*
8135
8136 I3C SUBSYSTEM
8137 M:      Boris Brezillon <bbrezillon@kernel.org>
8138 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8139 S:      Maintained
8140 C:      irc://chat.freenode.net/linux-i3c
8141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8142 F:      Documentation/ABI/testing/sysfs-bus-i3c
8143 F:      Documentation/devicetree/bindings/i3c/
8144 F:      Documentation/driver-api/i3c
8145 F:      drivers/i3c/
8146 F:      include/linux/i3c/
8147
8148 IA64 (Itanium) PLATFORM
8149 M:      Tony Luck <tony.luck@intel.com>
8150 M:      Fenghua Yu <fenghua.yu@intel.com>
8151 L:      linux-ia64@vger.kernel.org
8152 S:      Maintained
8153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8154 F:      Documentation/ia64/
8155 F:      arch/ia64/
8156
8157 IBM Power 842 compression accelerator
8158 M:      Haren Myneni <haren@us.ibm.com>
8159 S:      Supported
8160 F:      crypto/842.c
8161 F:      drivers/crypto/nx/Kconfig
8162 F:      drivers/crypto/nx/Makefile
8163 F:      drivers/crypto/nx/nx-842*
8164 F:      include/linux/sw842.h
8165 F:      lib/842/
8166
8167 IBM Power in-Nest Crypto Acceleration
8168 M:      Breno Leitão <leitao@debian.org>
8169 M:      Nayna Jain <nayna@linux.ibm.com>
8170 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8171 L:      linux-crypto@vger.kernel.org
8172 S:      Supported
8173 F:      drivers/crypto/nx/Kconfig
8174 F:      drivers/crypto/nx/Makefile
8175 F:      drivers/crypto/nx/nx-aes*
8176 F:      drivers/crypto/nx/nx-sha*
8177 F:      drivers/crypto/nx/nx.*
8178 F:      drivers/crypto/nx/nx_csbcpb.h
8179 F:      drivers/crypto/nx/nx_debugfs.c
8180
8181 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8182 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8183 L:      linux-pci@vger.kernel.org
8184 L:      linuxppc-dev@lists.ozlabs.org
8185 S:      Supported
8186 F:      drivers/pci/hotplug/rpadlpar*
8187
8188 IBM Power Linux RAID adapter
8189 M:      Brian King <brking@us.ibm.com>
8190 S:      Supported
8191 F:      drivers/scsi/ipr.*
8192
8193 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8194 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8195 L:      linux-pci@vger.kernel.org
8196 L:      linuxppc-dev@lists.ozlabs.org
8197 S:      Supported
8198 F:      drivers/pci/hotplug/rpaphp*
8199
8200 IBM Power SRIOV Virtual NIC Device Driver
8201 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
8202 M:      John Allen <jallen@linux.ibm.com>
8203 L:      netdev@vger.kernel.org
8204 S:      Supported
8205 F:      drivers/net/ethernet/ibm/ibmvnic.*
8206
8207 IBM Power Virtual Accelerator Switchboard
8208 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8209 L:      linuxppc-dev@lists.ozlabs.org
8210 S:      Supported
8211 F:      arch/powerpc/include/asm/vas.h
8212 F:      arch/powerpc/platforms/powernv/copy-paste.h
8213 F:      arch/powerpc/platforms/powernv/vas*
8214
8215 IBM Power Virtual Ethernet Device Driver
8216 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
8217 L:      netdev@vger.kernel.org
8218 S:      Supported
8219 F:      drivers/net/ethernet/ibm/ibmveth.*
8220
8221 IBM Power Virtual FC Device Drivers
8222 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8223 L:      linux-scsi@vger.kernel.org
8224 S:      Supported
8225 F:      drivers/scsi/ibmvscsi/ibmvfc*
8226
8227 IBM Power Virtual Management Channel Driver
8228 M:      Steven Royer <seroyer@linux.ibm.com>
8229 S:      Supported
8230 F:      drivers/misc/ibmvmc.*
8231
8232 IBM Power Virtual SCSI Device Drivers
8233 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8234 L:      linux-scsi@vger.kernel.org
8235 S:      Supported
8236 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8237 F:      include/scsi/viosrp.h
8238
8239 IBM Power Virtual SCSI Device Target Driver
8240 M:      Michael Cyr <mikecyr@linux.ibm.com>
8241 L:      linux-scsi@vger.kernel.org
8242 L:      target-devel@vger.kernel.org
8243 S:      Supported
8244 F:      drivers/scsi/ibmvscsi_tgt/
8245
8246 IBM Power VMX Cryptographic instructions
8247 M:      Breno Leitão <leitao@debian.org>
8248 M:      Nayna Jain <nayna@linux.ibm.com>
8249 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8250 L:      linux-crypto@vger.kernel.org
8251 S:      Supported
8252 F:      drivers/crypto/vmx/Kconfig
8253 F:      drivers/crypto/vmx/Makefile
8254 F:      drivers/crypto/vmx/aes*
8255 F:      drivers/crypto/vmx/ghash*
8256 F:      drivers/crypto/vmx/ppc-xlate.pl
8257 F:      drivers/crypto/vmx/vmx.c
8258
8259 IBM ServeRAID RAID DRIVER
8260 S:      Orphan
8261 F:      drivers/scsi/ips.*
8262
8263 ICH LPC AND GPIO DRIVER
8264 M:      Peter Tyser <ptyser@xes-inc.com>
8265 S:      Maintained
8266 F:      drivers/gpio/gpio-ich.c
8267 F:      drivers/mfd/lpc_ich.c
8268
8269 ICY I2C DRIVER
8270 M:      Max Staudt <max@enpas.org>
8271 L:      linux-i2c@vger.kernel.org
8272 S:      Maintained
8273 F:      drivers/i2c/busses/i2c-icy.c
8274
8275 IDE SUBSYSTEM
8276 M:      "David S. Miller" <davem@davemloft.net>
8277 L:      linux-ide@vger.kernel.org
8278 S:      Maintained
8279 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8281 F:      Documentation/ide/
8282 F:      drivers/ide/
8283 F:      include/linux/ide.h
8284
8285 IDE/ATAPI DRIVERS
8286 M:      Borislav Petkov <bp@alien8.de>
8287 L:      linux-ide@vger.kernel.org
8288 S:      Maintained
8289 F:      Documentation/cdrom/ide-cd.rst
8290 F:      drivers/ide/ide-cd*
8291
8292 IDEAPAD LAPTOP EXTRAS DRIVER
8293 M:      Ike Panhc <ike.pan@canonical.com>
8294 L:      platform-driver-x86@vger.kernel.org
8295 S:      Maintained
8296 W:      http://launchpad.net/ideapad-laptop
8297 F:      drivers/platform/x86/ideapad-laptop.c
8298
8299 IDEAPAD LAPTOP SLIDEBAR DRIVER
8300 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
8301 L:      linux-input@vger.kernel.org
8302 S:      Maintained
8303 W:      https://github.com/o2genum/ideapad-slidebar
8304 F:      drivers/input/misc/ideapad_slidebar.c
8305
8306 IDT VersaClock 5 CLOCK DRIVER
8307 M:      Marek Vasut <marek.vasut@gmail.com>
8308 S:      Maintained
8309 F:      drivers/clk/clk-versaclock5.c
8310
8311 IEEE 802.15.4 SUBSYSTEM
8312 M:      Alexander Aring <alex.aring@gmail.com>
8313 M:      Stefan Schmidt <stefan@datenfreihafen.org>
8314 L:      linux-wpan@vger.kernel.org
8315 S:      Maintained
8316 W:      http://wpan.cakelab.org/
8317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8319 F:      Documentation/networking/ieee802154.rst
8320 F:      drivers/net/ieee802154/
8321 F:      include/linux/ieee802154.h
8322 F:      include/linux/nl802154.h
8323 F:      include/net/af_ieee802154.h
8324 F:      include/net/cfg802154.h
8325 F:      include/net/ieee802154_netdev.h
8326 F:      include/net/mac802154.h
8327 F:      include/net/nl802154.h
8328 F:      net/ieee802154/
8329 F:      net/mac802154/
8330
8331 IFE PROTOCOL
8332 M:      Yotam Gigi <yotam.gi@gmail.com>
8333 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8334 F:      include/net/ife.h
8335 F:      include/uapi/linux/ife.h
8336 F:      net/ife
8337
8338 IGORPLUG-USB IR RECEIVER
8339 M:      Sean Young <sean@mess.org>
8340 L:      linux-media@vger.kernel.org
8341 S:      Maintained
8342 F:      drivers/media/rc/igorplugusb.c
8343
8344 IGUANAWORKS USB IR TRANSCEIVER
8345 M:      Sean Young <sean@mess.org>
8346 L:      linux-media@vger.kernel.org
8347 S:      Maintained
8348 F:      drivers/media/rc/iguanair.c
8349
8350 IIO DIGITAL POTENTIOMETER DAC
8351 M:      Peter Rosin <peda@axentia.se>
8352 L:      linux-iio@vger.kernel.org
8353 S:      Maintained
8354 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8355 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8356 F:      drivers/iio/dac/dpot-dac.c
8357
8358 IIO ENVELOPE DETECTOR
8359 M:      Peter Rosin <peda@axentia.se>
8360 L:      linux-iio@vger.kernel.org
8361 S:      Maintained
8362 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8363 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8364 F:      drivers/iio/adc/envelope-detector.c
8365
8366 IIO MULTIPLEXER
8367 M:      Peter Rosin <peda@axentia.se>
8368 L:      linux-iio@vger.kernel.org
8369 S:      Maintained
8370 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8371 F:      drivers/iio/multiplexer/iio-mux.c
8372
8373 IIO SUBSYSTEM AND DRIVERS
8374 M:      Jonathan Cameron <jic23@kernel.org>
8375 R:      Hartmut Knaack <knaack.h@gmx.de>
8376 R:      Lars-Peter Clausen <lars@metafoo.de>
8377 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
8378 L:      linux-iio@vger.kernel.org
8379 S:      Maintained
8380 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8381 F:      Documentation/ABI/testing/configfs-iio*
8382 F:      Documentation/ABI/testing/sysfs-bus-iio*
8383 F:      Documentation/devicetree/bindings/iio/
8384 F:      drivers/iio/
8385 F:      drivers/staging/iio/
8386 F:      include/linux/iio/
8387 F:      tools/iio/
8388
8389 IIO UNIT CONVERTER
8390 M:      Peter Rosin <peda@axentia.se>
8391 L:      linux-iio@vger.kernel.org
8392 S:      Maintained
8393 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8394 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8395 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8396 F:      drivers/iio/afe/iio-rescale.c
8397
8398 IKANOS/ADI EAGLE ADSL USB DRIVER
8399 M:      Matthieu Castet <castet.matthieu@free.fr>
8400 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8401 S:      Maintained
8402 F:      drivers/usb/atm/ueagle-atm.c
8403
8404 IMGTEC ASCII LCD DRIVER
8405 M:      Paul Burton <paulburton@kernel.org>
8406 S:      Maintained
8407 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8408 F:      drivers/auxdisplay/img-ascii-lcd.c
8409
8410 IMGTEC IR DECODER DRIVER
8411 S:      Orphan
8412 F:      drivers/media/rc/img-ir/
8413
8414 IMON SOUNDGRAPH USB IR RECEIVER
8415 M:      Sean Young <sean@mess.org>
8416 L:      linux-media@vger.kernel.org
8417 S:      Maintained
8418 F:      drivers/media/rc/imon.c
8419 F:      drivers/media/rc/imon_raw.c
8420
8421 IMS TWINTURBO FRAMEBUFFER DRIVER
8422 L:      linux-fbdev@vger.kernel.org
8423 S:      Orphan
8424 F:      drivers/video/fbdev/imsttfb.c
8425
8426 INA209 HARDWARE MONITOR DRIVER
8427 M:      Guenter Roeck <linux@roeck-us.net>
8428 L:      linux-hwmon@vger.kernel.org
8429 S:      Maintained
8430 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
8431 F:      Documentation/hwmon/ina209.rst
8432 F:      drivers/hwmon/ina209.c
8433
8434 INA2XX HARDWARE MONITOR DRIVER
8435 M:      Guenter Roeck <linux@roeck-us.net>
8436 L:      linux-hwmon@vger.kernel.org
8437 S:      Maintained
8438 F:      Documentation/hwmon/ina2xx.rst
8439 F:      drivers/hwmon/ina2xx.c
8440 F:      include/linux/platform_data/ina2xx.h
8441
8442 INDUSTRY PACK SUBSYSTEM (IPACK)
8443 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8444 M:      Jens Taprogge <jens.taprogge@taprogge.org>
8445 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8446 L:      industrypack-devel@lists.sourceforge.net
8447 S:      Maintained
8448 W:      http://industrypack.sourceforge.net
8449 F:      drivers/ipack/
8450
8451 INFINEON DPS310 Driver
8452 M:      Eddie James <eajames@linux.ibm.com>
8453 L:      linux-iio@vger.kernel.org
8454 S:      Maintained
8455 F:      drivers/iio/pressure/dps310.c
8456
8457 INFINIBAND SUBSYSTEM
8458 M:      Doug Ledford <dledford@redhat.com>
8459 M:      Jason Gunthorpe <jgg@mellanox.com>
8460 L:      linux-rdma@vger.kernel.org
8461 S:      Supported
8462 W:      https://github.com/linux-rdma/rdma-core
8463 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8465 F:      Documentation/devicetree/bindings/infiniband/
8466 F:      Documentation/infiniband/
8467 F:      drivers/infiniband/
8468 F:      include/rdma/
8469 F:      include/trace/events/ib_mad.h
8470 F:      include/trace/events/ib_umad.h
8471 F:      include/uapi/linux/if_infiniband.h
8472 F:      include/uapi/rdma/
8473 F:      samples/bpf/ibumad_kern.c
8474 F:      samples/bpf/ibumad_user.c
8475
8476 INGENIC JZ4780 DMA Driver
8477 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
8478 S:      Maintained
8479 F:      drivers/dma/dma-jz4780.c
8480
8481 INGENIC JZ4780 NAND DRIVER
8482 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
8483 L:      linux-mtd@lists.infradead.org
8484 S:      Maintained
8485 F:      drivers/mtd/nand/raw/ingenic/
8486
8487 INGENIC JZ47xx SoCs
8488 M:      Paul Cercueil <paul@crapouillou.net>
8489 S:      Maintained
8490 F:      arch/mips/boot/dts/ingenic/
8491 F:      arch/mips/include/asm/mach-jz4740/
8492 F:      arch/mips/jz4740/
8493 F:      drivers/clk/ingenic/
8494 F:      drivers/dma/dma-jz4780.c
8495 F:      drivers/gpu/drm/ingenic/
8496 F:      drivers/i2c/busses/i2c-jz4780.c
8497 F:      drivers/iio/adc/ingenic-adc.c
8498 F:      drivers/irqchip/irq-ingenic.c
8499 F:      drivers/memory/jz4780-nemc.c
8500 F:      drivers/mmc/host/jz4740_mmc.c
8501 F:      drivers/mtd/nand/raw/ingenic/
8502 F:      drivers/pinctrl/pinctrl-ingenic.c
8503 F:      drivers/power/supply/ingenic-battery.c
8504 F:      drivers/pwm/pwm-jz4740.c
8505 F:      drivers/rtc/rtc-jz4740.c
8506 F:      drivers/tty/serial/8250/8250_ingenic.c
8507 F:      drivers/usb/musb/jz4740.c
8508 F:      drivers/watchdog/jz4740_wdt.c
8509 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8510 F:      include/linux/mfd/ingenic-tcu.h
8511 F:      sound/soc/codecs/jz47*
8512 F:      sound/soc/jz4740/
8513
8514 INOTIFY
8515 M:      Jan Kara <jack@suse.cz>
8516 R:      Amir Goldstein <amir73il@gmail.com>
8517 L:      linux-fsdevel@vger.kernel.org
8518 S:      Maintained
8519 F:      Documentation/filesystems/inotify.rst
8520 F:      fs/notify/inotify/
8521 F:      include/linux/inotify.h
8522 F:      include/uapi/linux/inotify.h
8523
8524 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8525 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
8526 L:      linux-input@vger.kernel.org
8527 S:      Maintained
8528 Q:      http://patchwork.kernel.org/project/linux-input/list/
8529 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8530 F:      Documentation/devicetree/bindings/input/
8531 F:      Documentation/devicetree/bindings/serio/
8532 F:      Documentation/input/
8533 F:      drivers/input/
8534 F:      include/linux/input.h
8535 F:      include/linux/input/
8536 F:      include/uapi/linux/input-event-codes.h
8537 F:      include/uapi/linux/input.h
8538
8539 INPUT MULTITOUCH (MT) PROTOCOL
8540 M:      Henrik Rydberg <rydberg@bitmath.org>
8541 L:      linux-input@vger.kernel.org
8542 S:      Odd fixes
8543 F:      Documentation/input/multi-touch-protocol.rst
8544 F:      drivers/input/input-mt.c
8545 K:      \b(ABS|SYN)_MT_
8546
8547 INSIDE SECURE CRYPTO DRIVER
8548 M:      Antoine Tenart <antoine.tenart@bootlin.com>
8549 L:      linux-crypto@vger.kernel.org
8550 S:      Maintained
8551 F:      drivers/crypto/inside-secure/
8552
8553 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8554 M:      Mimi Zohar <zohar@linux.ibm.com>
8555 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
8556 L:      linux-integrity@vger.kernel.org
8557 S:      Supported
8558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8559 F:      security/integrity/ima/
8560
8561 INTEL 810/815 FRAMEBUFFER DRIVER
8562 M:      Antonino Daplas <adaplas@gmail.com>
8563 L:      linux-fbdev@vger.kernel.org
8564 S:      Maintained
8565 F:      drivers/video/fbdev/i810/
8566
8567 INTEL ASoC DRIVERS
8568 M:      Cezary Rojewski <cezary.rojewski@intel.com>
8569 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
8570 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
8571 M:      Jie Yang <yang.jie@linux.intel.com>
8572 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8573 S:      Supported
8574 F:      sound/soc/intel/
8575
8576 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8577 M:      Hans de Goede <hdegoede@redhat.com>
8578 L:      platform-driver-x86@vger.kernel.org
8579 S:      Maintained
8580 F:      drivers/platform/x86/intel_atomisp2_pm.c
8581
8582 INTEL BROXTON PMC DRIVER
8583 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8584 M:      Zha Qipeng <qipeng.zha@intel.com>
8585 S:      Maintained
8586 F:      drivers/mfd/intel_pmc_bxt.c
8587 F:      include/linux/mfd/intel_pmc_bxt.h
8588
8589 INTEL C600 SERIES SAS CONTROLLER DRIVER
8590 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
8591 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
8592 L:      linux-scsi@vger.kernel.org
8593 S:      Supported
8594 T:      git git://git.code.sf.net/p/intel-sas/isci
8595 F:      drivers/scsi/isci/
8596
8597 INTEL CPU family model numbers
8598 M:      Tony Luck <tony.luck@intel.com>
8599 M:      x86@kernel.org
8600 L:      linux-kernel@vger.kernel.org
8601 S:      Supported
8602 F:      arch/x86/include/asm/intel-family.h
8603
8604 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8605 M:      Jani Nikula <jani.nikula@linux.intel.com>
8606 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
8607 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
8608 L:      intel-gfx@lists.freedesktop.org
8609 S:      Supported
8610 W:      https://01.org/linuxgraphics/
8611 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8612 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8613 C:      irc://chat.freenode.net/intel-gfx
8614 T:      git git://anongit.freedesktop.org/drm-intel
8615 F:      Documentation/gpu/i915.rst
8616 F:      drivers/gpu/drm/i915/
8617 F:      include/drm/i915*
8618 F:      include/uapi/drm/i915_drm.h
8619
8620 INTEL ETHERNET DRIVERS
8621 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
8622 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
8623 S:      Supported
8624 W:      http://www.intel.com/support/feedback.htm
8625 W:      http://e1000.sourceforge.net/
8626 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
8628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
8629 F:      Documentation/networking/device_drivers/intel/e100.rst
8630 F:      Documentation/networking/device_drivers/intel/e1000.rst
8631 F:      Documentation/networking/device_drivers/intel/e1000e.rst
8632 F:      Documentation/networking/device_drivers/intel/fm10k.rst
8633 F:      Documentation/networking/device_drivers/intel/i40e.rst
8634 F:      Documentation/networking/device_drivers/intel/iavf.rst
8635 F:      Documentation/networking/device_drivers/intel/ice.rst
8636 F:      Documentation/networking/device_drivers/intel/igb.rst
8637 F:      Documentation/networking/device_drivers/intel/igbvf.rst
8638 F:      Documentation/networking/device_drivers/intel/ixgb.rst
8639 F:      Documentation/networking/device_drivers/intel/ixgbe.rst
8640 F:      Documentation/networking/device_drivers/intel/ixgbevf.rst
8641 F:      drivers/net/ethernet/intel/
8642 F:      drivers/net/ethernet/intel/*/
8643 F:      include/linux/avf/virtchnl.h
8644
8645 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8646 M:      Maik Broemme <mbroemme@libmpq.org>
8647 L:      linux-fbdev@vger.kernel.org
8648 S:      Maintained
8649 F:      Documentation/fb/intelfb.rst
8650 F:      drivers/video/fbdev/intelfb/
8651
8652 INTEL GPIO DRIVERS
8653 M:      Andy Shevchenko <andy@kernel.org>
8654 L:      linux-gpio@vger.kernel.org
8655 S:      Maintained
8656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8657 F:      drivers/gpio/gpio-ich.c
8658 F:      drivers/gpio/gpio-intel-mid.c
8659 F:      drivers/gpio/gpio-merrifield.c
8660 F:      drivers/gpio/gpio-ml-ioh.c
8661 F:      drivers/gpio/gpio-pch.c
8662 F:      drivers/gpio/gpio-sch.c
8663 F:      drivers/gpio/gpio-sodaville.c
8664
8665 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8666 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
8667 M:      Zhi Wang <zhi.a.wang@intel.com>
8668 L:      intel-gvt-dev@lists.freedesktop.org
8669 L:      intel-gfx@lists.freedesktop.org
8670 S:      Supported
8671 W:      https://01.org/igvt-g
8672 T:      git https://github.com/intel/gvt-linux.git
8673 F:      drivers/gpu/drm/i915/gvt/
8674
8675 INTEL HID EVENT DRIVER
8676 M:      Alex Hung <alex.hung@canonical.com>
8677 L:      platform-driver-x86@vger.kernel.org
8678 S:      Maintained
8679 F:      drivers/platform/x86/intel-hid.c
8680
8681 INTEL I/OAT DMA DRIVER
8682 M:      Dave Jiang <dave.jiang@intel.com>
8683 R:      Dan Williams <dan.j.williams@intel.com>
8684 L:      dmaengine@vger.kernel.org
8685 S:      Supported
8686 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8687 F:      drivers/dma/ioat*
8688
8689 INTEL IADX DRIVER
8690 M:      Dave Jiang <dave.jiang@intel.com>
8691 L:      dmaengine@vger.kernel.org
8692 S:      Supported
8693 F:      drivers/dma/idxd/*
8694 F:      include/uapi/linux/idxd.h
8695
8696 INTEL IDLE DRIVER
8697 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
8698 M:      Len Brown <lenb@kernel.org>
8699 L:      linux-pm@vger.kernel.org
8700 S:      Supported
8701 B:      https://bugzilla.kernel.org
8702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8703 F:      drivers/idle/intel_idle.c
8704
8705 INTEL INTEGRATED SENSOR HUB DRIVER
8706 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8707 M:      Jiri Kosina <jikos@kernel.org>
8708 L:      linux-input@vger.kernel.org
8709 S:      Maintained
8710 F:      drivers/hid/intel-ish-hid/
8711
8712 INTEL IOMMU (VT-d)
8713 M:      David Woodhouse <dwmw2@infradead.org>
8714 M:      Lu Baolu <baolu.lu@linux.intel.com>
8715 L:      iommu@lists.linux-foundation.org
8716 S:      Supported
8717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8718 F:      drivers/iommu/dmar.c
8719 F:      drivers/iommu/intel*.[ch]
8720 F:      include/linux/intel-iommu.h
8721 F:      include/linux/intel-svm.h
8722
8723 INTEL IOP-ADMA DMA DRIVER
8724 R:      Dan Williams <dan.j.williams@intel.com>
8725 S:      Odd fixes
8726 F:      drivers/dma/iop-adma.c
8727
8728 INTEL IPU3 CSI-2 CIO2 DRIVER
8729 M:      Yong Zhi <yong.zhi@intel.com>
8730 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8731 M:      Bingbu Cao <bingbu.cao@intel.com>
8732 R:      Tian Shu Qiu <tian.shu.qiu@intel.com>
8733 L:      linux-media@vger.kernel.org
8734 S:      Maintained
8735 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
8736 F:      drivers/media/pci/intel/ipu3/
8737
8738 INTEL IPU3 CSI-2 IMGU DRIVER
8739 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8740 R:      Bingbu Cao <bingbu.cao@intel.com>
8741 R:      Tian Shu Qiu <tian.shu.qiu@intel.com>
8742 L:      linux-media@vger.kernel.org
8743 S:      Maintained
8744 F:      Documentation/admin-guide/media/ipu3.rst
8745 F:      Documentation/admin-guide/media/ipu3_rcb.svg
8746 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
8747 F:      drivers/staging/media/ipu3/
8748
8749 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8750 M:      Krzysztof Halasa <khalasa@piap.pl>
8751 S:      Maintained
8752 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
8753 F:      drivers/net/wan/ixp4xx_hss.c
8754 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
8755 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
8756 F:      include/linux/soc/ixp4xx/npe.h
8757 F:      include/linux/soc/ixp4xx/qmgr.h
8758
8759 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8760 M:      Deepak Saxena <dsaxena@plexity.net>
8761 S:      Maintained
8762 F:      drivers/char/hw_random/ixp4xx-rng.c
8763
8764 INTEL MANAGEMENT ENGINE (mei)
8765 M:      Tomas Winkler <tomas.winkler@intel.com>
8766 L:      linux-kernel@vger.kernel.org
8767 S:      Supported
8768 F:      Documentation/driver-api/mei/*
8769 F:      drivers/misc/mei/*
8770 F:      drivers/watchdog/mei_wdt.c
8771 F:      include/linux/mei_cl_bus.h
8772 F:      include/uapi/linux/mei.h
8773 F:      samples/mei/*
8774
8775 INTEL MENLOW THERMAL DRIVER
8776 M:      Sujith Thomas <sujith.thomas@intel.com>
8777 L:      platform-driver-x86@vger.kernel.org
8778 S:      Supported
8779 W:      https://01.org/linux-acpi
8780 F:      drivers/platform/x86/intel_menlow.c
8781
8782 INTEL MIC DRIVERS (mic)
8783 M:      Sudeep Dutt <sudeep.dutt@intel.com>
8784 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
8785 S:      Supported
8786 W:      https://github.com/sudeepdutt/mic
8787 W:      http://software.intel.com/en-us/mic-developer
8788 F:      Documentation/misc-devices/mic/
8789 F:      drivers/dma/mic_x100_dma.c
8790 F:      drivers/dma/mic_x100_dma.h
8791 F:      drivers/misc/mic/
8792 F:      include/linux/mic_bus.h
8793 F:      include/linux/scif.h
8794 F:      include/uapi/linux/mic_common.h
8795 F:      include/uapi/linux/mic_ioctl.h
8796 F:      include/uapi/linux/scif_ioctl.h
8797
8798 INTEL P-Unit IPC DRIVER
8799 M:      Zha Qipeng <qipeng.zha@intel.com>
8800 L:      platform-driver-x86@vger.kernel.org
8801 S:      Maintained
8802 F:      arch/x86/include/asm/intel_punit_ipc.h
8803 F:      drivers/platform/x86/intel_punit_ipc.c
8804
8805 INTEL PMC CORE DRIVER
8806 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
8807 M:      Vishwanath Somayaji <vishwanath.somayaji@intel.com>
8808 L:      platform-driver-x86@vger.kernel.org
8809 S:      Maintained
8810 F:      drivers/platform/x86/intel_pmc_core*
8811
8812 INTEL PMIC GPIO DRIVERS
8813 M:      Andy Shevchenko <andy@kernel.org>
8814 S:      Maintained
8815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8816 F:      drivers/gpio/gpio-*cove.c
8817 F:      drivers/gpio/gpio-msic.c
8818
8819 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
8820 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8821 S:      Maintained
8822 F:      drivers/mfd/intel_msic.c
8823 F:      drivers/mfd/intel_soc_pmic*
8824 F:      include/linux/mfd/intel_msic.h
8825 F:      include/linux/mfd/intel_soc_pmic*
8826
8827 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
8828 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
8829 L:      linux-wireless@vger.kernel.org
8830 S:      Maintained
8831 F:      Documentation/networking/device_drivers/intel/ipw2100.rst
8832 F:      Documentation/networking/device_drivers/intel/ipw2200.rst
8833 F:      drivers/net/wireless/intel/ipw2x00/
8834
8835 INTEL PSTATE DRIVER
8836 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8837 M:      Len Brown <lenb@kernel.org>
8838 L:      linux-pm@vger.kernel.org
8839 S:      Supported
8840 F:      drivers/cpufreq/intel_pstate.c
8841
8842 INTEL RDMA RNIC DRIVER
8843 M:      Faisal Latif <faisal.latif@intel.com>
8844 M:      Shiraz Saleem <shiraz.saleem@intel.com>
8845 L:      linux-rdma@vger.kernel.org
8846 S:      Supported
8847 F:      drivers/infiniband/hw/i40iw/
8848 F:      include/uapi/rdma/i40iw-abi.h
8849
8850 INTEL SCU DRIVERS
8851 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8852 S:      Maintained
8853 F:      arch/x86/include/asm/intel_scu_ipc.h
8854 F:      drivers/platform/x86/intel_scu_*
8855
8856 INTEL SPEED SELECT TECHNOLOGY
8857 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8858 L:      platform-driver-x86@vger.kernel.org
8859 S:      Maintained
8860 F:      drivers/platform/x86/intel_speed_select_if/
8861 F:      include/uapi/linux/isst_if.h
8862 F:      tools/power/x86/intel-speed-select/
8863
8864 INTEL STRATIX10 FIRMWARE DRIVERS
8865 M:      Richard Gong <richard.gong@linux.intel.com>
8866 L:      linux-kernel@vger.kernel.org
8867 S:      Maintained
8868 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
8869 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
8870 F:      drivers/firmware/stratix10-rsu.c
8871 F:      drivers/firmware/stratix10-svc.c
8872 F:      include/linux/firmware/intel/stratix10-smc.h
8873 F:      include/linux/firmware/intel/stratix10-svc-client.h
8874
8875 INTEL TELEMETRY DRIVER
8876 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
8877 M:      "David E. Box" <david.e.box@linux.intel.com>
8878 L:      platform-driver-x86@vger.kernel.org
8879 S:      Maintained
8880 F:      arch/x86/include/asm/intel_telemetry.h
8881 F:      drivers/platform/x86/intel_telemetry*
8882
8883 INTEL UNCORE FREQUENCY CONTROL
8884 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8885 L:      platform-driver-x86@vger.kernel.org
8886 S:      Maintained
8887 F:      drivers/platform/x86/intel-uncore-frequency.c
8888
8889 INTEL VIRTUAL BUTTON DRIVER
8890 M:      AceLan Kao <acelan.kao@canonical.com>
8891 L:      platform-driver-x86@vger.kernel.org
8892 S:      Maintained
8893 F:      drivers/platform/x86/intel-vbtn.c
8894
8895 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
8896 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8897 L:      linux-wireless@vger.kernel.org
8898 S:      Supported
8899 F:      drivers/net/wireless/intel/iwlegacy/
8900
8901 INTEL WIRELESS WIFI LINK (iwlwifi)
8902 M:      Johannes Berg <johannes.berg@intel.com>
8903 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
8904 M:      Luca Coelho <luciano.coelho@intel.com>
8905 M:      Intel Linux Wireless <linuxwifi@intel.com>
8906 L:      linux-wireless@vger.kernel.org
8907 S:      Supported
8908 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
8909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
8910 F:      drivers/net/wireless/intel/iwlwifi/
8911
8912 INTEL WIRELESS WIMAX CONNECTION 2400
8913 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
8914 M:      linux-wimax@intel.com
8915 L:      wimax@linuxwimax.org (subscribers-only)
8916 S:      Supported
8917 W:      http://linuxwimax.org
8918 F:      Documentation/admin-guide/wimax/i2400m.rst
8919 F:      drivers/net/wimax/i2400m/
8920 F:      include/uapi/linux/wimax/i2400m.h
8921
8922 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
8923 M:      Jithu Joseph <jithu.joseph@intel.com>
8924 R:      Maurice Ma <maurice.ma@intel.com>
8925 S:      Maintained
8926 W:      https://slimbootloader.github.io/security/firmware-update.html
8927 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
8928
8929 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
8930 M:      Mario Limonciello <mario.limonciello@dell.com>
8931 S:      Maintained
8932 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
8933
8934 INTEL(R) TRACE HUB
8935 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8936 S:      Supported
8937 F:      Documentation/trace/intel_th.rst
8938 F:      drivers/hwtracing/intel_th/
8939 F:      include/linux/intel_th.h
8940
8941 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
8942 M:      Ning Sun <ning.sun@intel.com>
8943 L:      tboot-devel@lists.sourceforge.net
8944 S:      Supported
8945 W:      http://tboot.sourceforge.net
8946 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
8947 F:      Documentation/x86/intel_txt.rst
8948 F:      arch/x86/kernel/tboot.c
8949 F:      include/linux/tboot.h
8950
8951 INTERCONNECT API
8952 M:      Georgi Djakov <georgi.djakov@linaro.org>
8953 L:      linux-pm@vger.kernel.org
8954 S:      Maintained
8955 F:      Documentation/devicetree/bindings/interconnect/
8956 F:      Documentation/driver-api/interconnect.rst
8957 F:      drivers/interconnect/
8958 F:      include/dt-bindings/interconnect/
8959 F:      include/linux/interconnect-provider.h
8960 F:      include/linux/interconnect.h
8961
8962 INVENSENSE MPU-3050 GYROSCOPE DRIVER
8963 M:      Linus Walleij <linus.walleij@linaro.org>
8964 L:      linux-iio@vger.kernel.org
8965 S:      Maintained
8966 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
8967 F:      drivers/iio/gyro/mpu3050*
8968
8969 IOC3 ETHERNET DRIVER
8970 M:      Ralf Baechle <ralf@linux-mips.org>
8971 L:      linux-mips@vger.kernel.org
8972 S:      Maintained
8973 F:      drivers/net/ethernet/sgi/ioc3-eth.c
8974
8975 IOMAP FILESYSTEM LIBRARY
8976 M:      Christoph Hellwig <hch@infradead.org>
8977 M:      Darrick J. Wong <darrick.wong@oracle.com>
8978 M:      linux-xfs@vger.kernel.org
8979 M:      linux-fsdevel@vger.kernel.org
8980 L:      linux-xfs@vger.kernel.org
8981 L:      linux-fsdevel@vger.kernel.org
8982 S:      Supported
8983 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
8984 F:      fs/iomap/
8985 F:      include/linux/iomap.h
8986
8987 IOMMU DRIVERS
8988 M:      Joerg Roedel <joro@8bytes.org>
8989 L:      iommu@lists.linux-foundation.org
8990 S:      Maintained
8991 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8992 F:      Documentation/devicetree/bindings/iommu/
8993 F:      drivers/iommu/
8994 F:      include/linux/iommu.h
8995 F:      include/linux/iova.h
8996 F:      include/linux/of_iommu.h
8997
8998 IO_URING
8999 M:      Jens Axboe <axboe@kernel.dk>
9000 L:      io-uring@vger.kernel.org
9001 S:      Maintained
9002 T:      git git://git.kernel.dk/linux-block
9003 T:      git git://git.kernel.dk/liburing
9004 F:      fs/io-wq.c
9005 F:      fs/io-wq.h
9006 F:      fs/io_uring.c
9007 F:      include/uapi/linux/io_uring.h
9008
9009 IPMI SUBSYSTEM
9010 M:      Corey Minyard <minyard@acm.org>
9011 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9012 S:      Supported
9013 W:      http://openipmi.sourceforge.net/
9014 F:      Documentation/driver-api/ipmi.rst
9015 F:      Documentation/devicetree/bindings/ipmi/
9016 F:      drivers/char/ipmi/
9017 F:      include/linux/ipmi*
9018 F:      include/uapi/linux/ipmi*
9019
9020 IPS SCSI RAID DRIVER
9021 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9022 L:      linux-scsi@vger.kernel.org
9023 S:      Maintained
9024 W:      http://www.adaptec.com/
9025 F:      drivers/scsi/ips*
9026
9027 IPVS
9028 M:      Wensong Zhang <wensong@linux-vs.org>
9029 M:      Simon Horman <horms@verge.net.au>
9030 M:      Julian Anastasov <ja@ssi.bg>
9031 L:      netdev@vger.kernel.org
9032 L:      lvs-devel@vger.kernel.org
9033 S:      Maintained
9034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9036 F:      Documentation/networking/ipvs-sysctl.rst
9037 F:      include/net/ip_vs.h
9038 F:      include/uapi/linux/ip_vs.h
9039 F:      net/netfilter/ipvs/
9040
9041 IPWIRELESS DRIVER
9042 M:      Jiri Kosina <jikos@kernel.org>
9043 M:      David Sterba <dsterba@suse.com>
9044 S:      Odd Fixes
9045 F:      drivers/tty/ipwireless/
9046
9047 IPX NETWORK LAYER
9048 L:      netdev@vger.kernel.org
9049 S:      Obsolete
9050 F:      include/uapi/linux/ipx.h
9051
9052 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9053 M:      Marc Zyngier <maz@kernel.org>
9054 S:      Maintained
9055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9056 F:      Documentation/core-api/irq/irq-domain.rst
9057 F:      include/linux/irqdomain.h
9058 F:      kernel/irq/irqdomain.c
9059 F:      kernel/irq/msi.c
9060
9061 IRQ SUBSYSTEM
9062 M:      Thomas Gleixner <tglx@linutronix.de>
9063 L:      linux-kernel@vger.kernel.org
9064 S:      Maintained
9065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9066 F:      kernel/irq/
9067
9068 IRQCHIP DRIVERS
9069 M:      Thomas Gleixner <tglx@linutronix.de>
9070 M:      Jason Cooper <jason@lakedaemon.net>
9071 M:      Marc Zyngier <maz@kernel.org>
9072 L:      linux-kernel@vger.kernel.org
9073 S:      Maintained
9074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9075 F:      Documentation/devicetree/bindings/interrupt-controller/
9076 F:      drivers/irqchip/
9077
9078 ISA
9079 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9080 S:      Maintained
9081 F:      Documentation/driver-api/isa.rst
9082 F:      drivers/base/isa.c
9083 F:      include/linux/isa.h
9084
9085 ISA RADIO MODULE
9086 M:      Hans Verkuil <hverkuil@xs4all.nl>
9087 L:      linux-media@vger.kernel.org
9088 S:      Maintained
9089 W:      https://linuxtv.org
9090 T:      git git://linuxtv.org/media_tree.git
9091 F:      drivers/media/radio/radio-isa*
9092
9093 ISAPNP
9094 M:      Jaroslav Kysela <perex@perex.cz>
9095 S:      Maintained
9096 F:      Documentation/driver-api/isapnp.rst
9097 F:      drivers/pnp/isapnp/
9098 F:      include/linux/isapnp.h
9099
9100 ISCSI
9101 M:      Lee Duncan <lduncan@suse.com>
9102 M:      Chris Leech <cleech@redhat.com>
9103 L:      open-iscsi@googlegroups.com
9104 L:      linux-scsi@vger.kernel.org
9105 S:      Maintained
9106 W:      www.open-iscsi.com
9107 F:      drivers/scsi/*iscsi*
9108 F:      include/scsi/*iscsi*
9109
9110 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9111 M:      Peter Jones <pjones@redhat.com>
9112 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9113 S:      Maintained
9114 F:      drivers/firmware/iscsi_ibft*
9115
9116 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9117 M:      Sagi Grimberg <sagi@grimberg.me>
9118 M:      Max Gurtovoy <maxg@mellanox.com>
9119 L:      linux-rdma@vger.kernel.org
9120 S:      Supported
9121 W:      http://www.openfabrics.org
9122 W:      www.open-iscsi.org
9123 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9124 F:      drivers/infiniband/ulp/iser/
9125
9126 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9127 M:      Sagi Grimberg <sagi@grimberg.me>
9128 L:      linux-rdma@vger.kernel.org
9129 L:      target-devel@vger.kernel.org
9130 S:      Supported
9131 W:      http://www.linux-iscsi.org
9132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9133 F:      drivers/infiniband/ulp/isert
9134
9135 ISDN/CMTP OVER BLUETOOTH
9136 M:      Karsten Keil <isdn@linux-pingi.de>
9137 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9138 L:      netdev@vger.kernel.org
9139 S:      Odd Fixes
9140 W:      http://www.isdn4linux.de
9141 F:      Documentation/isdn/
9142 F:      drivers/isdn/capi/
9143 F:      include/linux/isdn/
9144 F:      include/uapi/linux/isdn/
9145 F:      net/bluetooth/cmtp/
9146
9147 ISDN/mISDN SUBSYSTEM
9148 M:      Karsten Keil <isdn@linux-pingi.de>
9149 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9150 L:      netdev@vger.kernel.org
9151 S:      Maintained
9152 W:      http://www.isdn4linux.de
9153 F:      drivers/isdn/Kconfig
9154 F:      drivers/isdn/Makefile
9155 F:      drivers/isdn/hardware/
9156 F:      drivers/isdn/mISDN/
9157
9158 IT87 HARDWARE MONITORING DRIVER
9159 M:      Jean Delvare <jdelvare@suse.com>
9160 L:      linux-hwmon@vger.kernel.org
9161 S:      Maintained
9162 F:      Documentation/hwmon/it87.rst
9163 F:      drivers/hwmon/it87.c
9164
9165 IT913X MEDIA DRIVER
9166 M:      Antti Palosaari <crope@iki.fi>
9167 L:      linux-media@vger.kernel.org
9168 S:      Maintained
9169 W:      https://linuxtv.org
9170 W:      http://palosaari.fi/linux/
9171 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9172 T:      git git://linuxtv.org/anttip/media_tree.git
9173 F:      drivers/media/tuners/it913x*
9174
9175 IVTV VIDEO4LINUX DRIVER
9176 M:      Andy Walls <awalls@md.metrocast.net>
9177 L:      linux-media@vger.kernel.org
9178 S:      Maintained
9179 W:      https://linuxtv.org
9180 T:      git git://linuxtv.org/media_tree.git
9181 F:      Documentation/admin-guide/media/ivtv*
9182 F:      drivers/media/pci/ivtv/
9183 F:      include/uapi/linux/ivtv*
9184
9185 IX2505V MEDIA DRIVER
9186 M:      Malcolm Priestley <tvboxspy@gmail.com>
9187 L:      linux-media@vger.kernel.org
9188 S:      Maintained
9189 W:      https://linuxtv.org
9190 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9191 F:      drivers/media/dvb-frontends/ix2505v*
9192
9193 JAILHOUSE HYPERVISOR INTERFACE
9194 M:      Jan Kiszka <jan.kiszka@siemens.com>
9195 L:      jailhouse-dev@googlegroups.com
9196 S:      Maintained
9197 F:      arch/x86/include/asm/jailhouse_para.h
9198 F:      arch/x86/kernel/jailhouse.c
9199
9200 JC42.4 TEMPERATURE SENSOR DRIVER
9201 M:      Guenter Roeck <linux@roeck-us.net>
9202 L:      linux-hwmon@vger.kernel.org
9203 S:      Maintained
9204 F:      Documentation/hwmon/jc42.rst
9205 F:      drivers/hwmon/jc42.c
9206
9207 JFS FILESYSTEM
9208 M:      Dave Kleikamp <shaggy@kernel.org>
9209 L:      jfs-discussion@lists.sourceforge.net
9210 S:      Maintained
9211 W:      http://jfs.sourceforge.net/
9212 T:      git git://github.com/kleikamp/linux-shaggy.git
9213 F:      Documentation/admin-guide/jfs.rst
9214 F:      fs/jfs/
9215
9216 JME NETWORK DRIVER
9217 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
9218 L:      netdev@vger.kernel.org
9219 S:      Maintained
9220 F:      drivers/net/ethernet/jme.*
9221
9222 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9223 M:      David Woodhouse <dwmw2@infradead.org>
9224 M:      Richard Weinberger <richard@nod.at>
9225 L:      linux-mtd@lists.infradead.org
9226 S:      Odd Fixes
9227 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9228 T:      git git://git.infradead.org/ubifs-2.6.git
9229 F:      fs/jffs2/
9230 F:      include/uapi/linux/jffs2.h
9231
9232 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9233 M:      "Theodore Ts'o" <tytso@mit.edu>
9234 M:      Jan Kara <jack@suse.com>
9235 L:      linux-ext4@vger.kernel.org
9236 S:      Maintained
9237 F:      fs/jbd2/
9238 F:      include/linux/jbd2.h
9239
9240 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9241 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9242 L:      linux-media@vger.kernel.org
9243 S:      Maintained
9244 F:      drivers/media/platform/rcar_jpu.c
9245
9246 JSM Neo PCI based serial card
9247 L:      linux-serial@vger.kernel.org
9248 S:      Orphan
9249 F:      drivers/tty/serial/jsm/
9250
9251 K10TEMP HARDWARE MONITORING DRIVER
9252 M:      Clemens Ladisch <clemens@ladisch.de>
9253 L:      linux-hwmon@vger.kernel.org
9254 S:      Maintained
9255 F:      Documentation/hwmon/k10temp.rst
9256 F:      drivers/hwmon/k10temp.c
9257
9258 K8TEMP HARDWARE MONITORING DRIVER
9259 M:      Rudolf Marek <r.marek@assembler.cz>
9260 L:      linux-hwmon@vger.kernel.org
9261 S:      Maintained
9262 F:      Documentation/hwmon/k8temp.rst
9263 F:      drivers/hwmon/k8temp.c
9264
9265 KASAN
9266 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
9267 R:      Alexander Potapenko <glider@google.com>
9268 R:      Dmitry Vyukov <dvyukov@google.com>
9269 L:      kasan-dev@googlegroups.com
9270 S:      Maintained
9271 F:      Documentation/dev-tools/kasan.rst
9272 F:      arch/*/include/asm/kasan.h
9273 F:      arch/*/mm/kasan_init*
9274 F:      include/linux/kasan*.h
9275 F:      lib/test_kasan.c
9276 F:      mm/kasan/
9277 F:      scripts/Makefile.kasan
9278
9279 KCONFIG
9280 M:      Masahiro Yamada <masahiroy@kernel.org>
9281 L:      linux-kbuild@vger.kernel.org
9282 S:      Maintained
9283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9284 F:      Documentation/kbuild/kconfig*
9285 F:      scripts/Kconfig.include
9286 F:      scripts/kconfig/
9287
9288 KDUMP
9289 M:      Dave Young <dyoung@redhat.com>
9290 M:      Baoquan He <bhe@redhat.com>
9291 R:      Vivek Goyal <vgoyal@redhat.com>
9292 L:      kexec@lists.infradead.org
9293 S:      Maintained
9294 W:      http://lse.sourceforge.net/kdump/
9295 F:      Documentation/admin-guide/kdump/
9296 F:      fs/proc/vmcore.c
9297 F:      include/linux/crash_core.h
9298 F:      include/linux/crash_dump.h
9299 F:      include/uapi/linux/vmcore.h
9300 F:      kernel/crash_*.c
9301
9302 KEENE FM RADIO TRANSMITTER DRIVER
9303 M:      Hans Verkuil <hverkuil@xs4all.nl>
9304 L:      linux-media@vger.kernel.org
9305 S:      Maintained
9306 W:      https://linuxtv.org
9307 T:      git git://linuxtv.org/media_tree.git
9308 F:      drivers/media/radio/radio-keene*
9309
9310 KERNEL AUTOMOUNTER
9311 M:      Ian Kent <raven@themaw.net>
9312 L:      autofs@vger.kernel.org
9313 S:      Maintained
9314 F:      fs/autofs/
9315
9316 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9317 M:      Masahiro Yamada <masahiroy@kernel.org>
9318 M:      Michal Marek <michal.lkml@markovi.net>
9319 L:      linux-kbuild@vger.kernel.org
9320 S:      Maintained
9321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9322 F:      Documentation/kbuild/
9323 F:      Makefile
9324 F:      scripts/*vmlinux*
9325 F:      scripts/Kbuild*
9326 F:      scripts/Makefile*
9327 F:      scripts/basic/
9328 F:      scripts/mk*
9329 F:      scripts/mod/
9330 F:      scripts/package/
9331
9332 KERNEL JANITORS
9333 L:      kernel-janitors@vger.kernel.org
9334 S:      Odd Fixes
9335 W:      http://kernelnewbies.org/KernelJanitors
9336
9337 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9338 M:      "J. Bruce Fields" <bfields@fieldses.org>
9339 M:      Chuck Lever <chuck.lever@oracle.com>
9340 L:      linux-nfs@vger.kernel.org
9341 S:      Supported
9342 W:      http://nfs.sourceforge.net/
9343 T:      git git://linux-nfs.org/~bfields/linux.git
9344 F:      fs/lockd/
9345 F:      fs/nfs_common/
9346 F:      fs/nfsd/
9347 F:      include/linux/lockd/
9348 F:      include/linux/sunrpc/
9349 F:      include/uapi/linux/nfsd/
9350 F:      include/uapi/linux/sunrpc/
9351 F:      net/sunrpc/
9352
9353 KERNEL SELFTEST FRAMEWORK
9354 M:      Shuah Khan <shuah@kernel.org>
9355 M:      Shuah Khan <skhan@linuxfoundation.org>
9356 L:      linux-kselftest@vger.kernel.org
9357 S:      Maintained
9358 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9359 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9360 F:      Documentation/dev-tools/kselftest*
9361 F:      tools/testing/selftests/
9362
9363 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9364 M:      Brendan Higgins <brendanhiggins@google.com>
9365 L:      linux-kselftest@vger.kernel.org
9366 L:      kunit-dev@googlegroups.com
9367 S:      Maintained
9368 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9369 F:      Documentation/dev-tools/kunit/
9370 F:      include/kunit/
9371 F:      lib/kunit/
9372 F:      tools/testing/kunit/
9373
9374 KERNEL USERMODE HELPER
9375 M:      Luis Chamberlain <mcgrof@kernel.org>
9376 L:      linux-kernel@vger.kernel.org
9377 S:      Maintained
9378 F:      include/linux/umh.h
9379 F:      kernel/umh.c
9380
9381 KERNEL VIRTUAL MACHINE (KVM)
9382 M:      Paolo Bonzini <pbonzini@redhat.com>
9383 L:      kvm@vger.kernel.org
9384 S:      Supported
9385 W:      http://www.linux-kvm.org
9386 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9387 F:      Documentation/virt/kvm/
9388 F:      include/asm-generic/kvm*
9389 F:      include/kvm/iodev.h
9390 F:      include/linux/kvm*
9391 F:      include/trace/events/kvm.h
9392 F:      include/uapi/asm-generic/kvm*
9393 F:      include/uapi/linux/kvm*
9394 F:      tools/kvm/
9395 F:      tools/testing/selftests/kvm/
9396 F:      virt/kvm/*
9397
9398 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9399 M:      Marc Zyngier <maz@kernel.org>
9400 R:      James Morse <james.morse@arm.com>
9401 R:      Julien Thierry <julien.thierry.kdev@gmail.com>
9402 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
9403 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9404 L:      kvmarm@lists.cs.columbia.edu
9405 S:      Maintained
9406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9407 F:      arch/arm64/include/asm/kvm*
9408 F:      arch/arm64/include/uapi/asm/kvm*
9409 F:      arch/arm64/kvm/
9410 F:      include/kvm/arm_*
9411
9412 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9413 L:      linux-mips@vger.kernel.org
9414 L:      kvm@vger.kernel.org
9415 S:      Orphan
9416 F:      arch/mips/include/asm/kvm*
9417 F:      arch/mips/include/uapi/asm/kvm*
9418 F:      arch/mips/kvm/
9419
9420 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9421 M:      Paul Mackerras <paulus@ozlabs.org>
9422 L:      kvm-ppc@vger.kernel.org
9423 S:      Supported
9424 W:      http://www.linux-kvm.org/
9425 T:      git git://github.com/agraf/linux-2.6.git
9426 F:      arch/powerpc/include/asm/kvm*
9427 F:      arch/powerpc/include/uapi/asm/kvm*
9428 F:      arch/powerpc/kernel/kvm*
9429 F:      arch/powerpc/kvm/
9430
9431 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9432 M:      Christian Borntraeger <borntraeger@de.ibm.com>
9433 M:      Janosch Frank <frankja@linux.ibm.com>
9434 R:      David Hildenbrand <david@redhat.com>
9435 R:      Cornelia Huck <cohuck@redhat.com>
9436 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
9437 L:      kvm@vger.kernel.org
9438 S:      Supported
9439 W:      http://www.ibm.com/developerworks/linux/linux390/
9440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9441 F:      Documentation/virt/kvm/s390*
9442 F:      arch/s390/include/asm/gmap.h
9443 F:      arch/s390/include/asm/kvm*
9444 F:      arch/s390/include/uapi/asm/kvm*
9445 F:      arch/s390/kvm/
9446 F:      arch/s390/mm/gmap.c
9447 F:      tools/testing/selftests/kvm/*/s390x/
9448 F:      tools/testing/selftests/kvm/s390x/
9449
9450 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9451 M:      Paolo Bonzini <pbonzini@redhat.com>
9452 R:      Sean Christopherson <sean.j.christopherson@intel.com>
9453 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
9454 R:      Wanpeng Li <wanpengli@tencent.com>
9455 R:      Jim Mattson <jmattson@google.com>
9456 R:      Joerg Roedel <joro@8bytes.org>
9457 L:      kvm@vger.kernel.org
9458 S:      Supported
9459 W:      http://www.linux-kvm.org
9460 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9461 F:      arch/x86/include/asm/kvm*
9462 F:      arch/x86/include/asm/pvclock-abi.h
9463 F:      arch/x86/include/asm/svm.h
9464 F:      arch/x86/include/asm/vmx*.h
9465 F:      arch/x86/include/uapi/asm/kvm*
9466 F:      arch/x86/include/uapi/asm/svm.h
9467 F:      arch/x86/include/uapi/asm/vmx.h
9468 F:      arch/x86/kernel/kvm.c
9469 F:      arch/x86/kernel/kvmclock.c
9470 F:      arch/x86/kvm/
9471 F:      arch/x86/kvm/*/
9472
9473 KERNFS
9474 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9475 M:      Tejun Heo <tj@kernel.org>
9476 S:      Supported
9477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9478 F:      fs/kernfs/
9479 F:      include/linux/kernfs.h
9480
9481 KEXEC
9482 M:      Eric Biederman <ebiederm@xmission.com>
9483 L:      kexec@lists.infradead.org
9484 S:      Maintained
9485 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9486 F:      include/linux/kexec.h
9487 F:      include/uapi/linux/kexec.h
9488 F:      kernel/kexec*
9489
9490 KEYS-ENCRYPTED
9491 M:      Mimi Zohar <zohar@linux.ibm.com>
9492 L:      linux-integrity@vger.kernel.org
9493 L:      keyrings@vger.kernel.org
9494 S:      Supported
9495 F:      Documentation/security/keys/trusted-encrypted.rst
9496 F:      include/keys/encrypted-type.h
9497 F:      security/keys/encrypted-keys/
9498
9499 KEYS-TRUSTED
9500 M:      James Bottomley <jejb@linux.ibm.com>
9501 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9502 M:      Mimi Zohar <zohar@linux.ibm.com>
9503 L:      linux-integrity@vger.kernel.org
9504 L:      keyrings@vger.kernel.org
9505 S:      Supported
9506 F:      Documentation/security/keys/trusted-encrypted.rst
9507 F:      include/keys/trusted-type.h
9508 F:      include/keys/trusted_tpm.h
9509 F:      security/keys/trusted-keys/
9510
9511 KEYS/KEYRINGS
9512 M:      David Howells <dhowells@redhat.com>
9513 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9514 L:      keyrings@vger.kernel.org
9515 S:      Maintained
9516 F:      Documentation/security/keys/core.rst
9517 F:      include/keys/
9518 F:      include/linux/key-type.h
9519 F:      include/linux/key.h
9520 F:      include/linux/keyctl.h
9521 F:      include/uapi/linux/keyctl.h
9522 F:      security/keys/
9523
9524 KFIFO
9525 M:      Stefani Seibold <stefani@seibold.net>
9526 S:      Maintained
9527 F:      include/linux/kfifo.h
9528 F:      lib/kfifo.c
9529 F:      samples/kfifo/
9530
9531 KGDB / KDB /debug_core
9532 M:      Jason Wessel <jason.wessel@windriver.com>
9533 M:      Daniel Thompson <daniel.thompson@linaro.org>
9534 R:      Douglas Anderson <dianders@chromium.org>
9535 L:      kgdb-bugreport@lists.sourceforge.net
9536 S:      Maintained
9537 W:      http://kgdb.wiki.kernel.org/
9538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9539 F:      Documentation/dev-tools/kgdb.rst
9540 F:      drivers/misc/kgdbts.c
9541 F:      drivers/tty/serial/kgdboc.c
9542 F:      include/linux/kdb.h
9543 F:      include/linux/kgdb.h
9544 F:      kernel/debug/
9545
9546 KMEMLEAK
9547 M:      Catalin Marinas <catalin.marinas@arm.com>
9548 S:      Maintained
9549 F:      Documentation/dev-tools/kmemleak.rst
9550 F:      include/linux/kmemleak.h
9551 F:      mm/kmemleak-test.c
9552 F:      mm/kmemleak.c
9553
9554 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9555 M:      Luis Chamberlain <mcgrof@kernel.org>
9556 L:      linux-kernel@vger.kernel.org
9557 S:      Maintained
9558 F:      include/linux/kmod.h
9559 F:      kernel/kmod.c
9560 F:      lib/test_kmod.c
9561 F:      tools/testing/selftests/kmod/
9562
9563 KPROBES
9564 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
9565 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9566 M:      "David S. Miller" <davem@davemloft.net>
9567 M:      Masami Hiramatsu <mhiramat@kernel.org>
9568 S:      Maintained
9569 F:      Documentation/kprobes.txt
9570 F:      include/asm-generic/kprobes.h
9571 F:      include/linux/kprobes.h
9572 F:      kernel/kprobes.c
9573
9574 KS0108 LCD CONTROLLER DRIVER
9575 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
9576 S:      Maintained
9577 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9578 F:      drivers/auxdisplay/ks0108.c
9579 F:      include/linux/ks0108.h
9580
9581 L3MDEV
9582 M:      David Ahern <dsahern@kernel.org>
9583 L:      netdev@vger.kernel.org
9584 S:      Maintained
9585 F:      include/net/l3mdev.h
9586 F:      net/l3mdev
9587
9588 L7 BPF FRAMEWORK
9589 M:      John Fastabend <john.fastabend@gmail.com>
9590 M:      Daniel Borkmann <daniel@iogearbox.net>
9591 M:      Jakub Sitnicki <jakub@cloudflare.com>
9592 M:      Lorenz Bauer <lmb@cloudflare.com>
9593 L:      netdev@vger.kernel.org
9594 L:      bpf@vger.kernel.org
9595 S:      Maintained
9596 F:      include/linux/skmsg.h
9597 F:      net/core/skmsg.c
9598 F:      net/core/sock_map.c
9599 F:      net/ipv4/tcp_bpf.c
9600 F:      net/ipv4/udp_bpf.c
9601
9602 LANTIQ / INTEL Ethernet drivers
9603 M:      Hauke Mehrtens <hauke@hauke-m.de>
9604 L:      netdev@vger.kernel.org
9605 S:      Maintained
9606 F:      drivers/net/dsa/lantiq_gswip.c
9607 F:      drivers/net/dsa/lantiq_pce.h
9608 F:      drivers/net/ethernet/lantiq_xrx200.c
9609 F:      net/dsa/tag_gswip.c
9610
9611 LANTIQ MIPS ARCHITECTURE
9612 M:      John Crispin <john@phrozen.org>
9613 L:      linux-mips@vger.kernel.org
9614 S:      Maintained
9615 F:      arch/mips/lantiq
9616 F:      drivers/soc/lantiq
9617
9618 LAPB module
9619 L:      linux-x25@vger.kernel.org
9620 S:      Orphan
9621 F:      Documentation/networking/lapb-module.rst
9622 F:      include/*/lapb.h
9623 F:      net/lapb/
9624
9625 LASI 53c700 driver for PARISC
9626 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9627 L:      linux-scsi@vger.kernel.org
9628 S:      Maintained
9629 F:      Documentation/scsi/53c700.rst
9630 F:      drivers/scsi/53c700*
9631
9632 LEAKING_ADDRESSES
9633 M:      Tobin C. Harding <me@tobin.cc>
9634 M:      Tycho Andersen <tycho@tycho.ws>
9635 L:      kernel-hardening@lists.openwall.com
9636 S:      Maintained
9637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9638 F:      scripts/leaking_addresses.pl
9639
9640 LED SUBSYSTEM
9641 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
9642 M:      Pavel Machek <pavel@ucw.cz>
9643 R:      Dan Murphy <dmurphy@ti.com>
9644 L:      linux-leds@vger.kernel.org
9645 S:      Maintained
9646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
9647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9648 F:      Documentation/devicetree/bindings/leds/
9649 F:      drivers/leds/
9650 F:      include/linux/leds.h
9651
9652 LEGACY EEPROM DRIVER
9653 M:      Jean Delvare <jdelvare@suse.com>
9654 S:      Maintained
9655 F:      Documentation/misc-devices/eeprom.rst
9656 F:      drivers/misc/eeprom/eeprom.c
9657
9658 LEGO MINDSTORMS EV3
9659 R:      David Lechner <david@lechnology.com>
9660 S:      Maintained
9661 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9662 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9663 F:      drivers/power/supply/lego_ev3_battery.c
9664
9665 LEGO USB Tower driver
9666 M:      Juergen Stuber <starblue@users.sourceforge.net>
9667 L:      legousb-devel@lists.sourceforge.net
9668 S:      Maintained
9669 W:      http://legousb.sourceforge.net/
9670 F:      drivers/usb/misc/legousbtower.c
9671
9672 LG LAPTOP EXTRAS
9673 M:      Matan Ziv-Av <matan@svgalib.org>
9674 L:      platform-driver-x86@vger.kernel.org
9675 S:      Maintained
9676 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9677 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9678 F:      drivers/platform/x86/lg-laptop.c
9679
9680 LG2160 MEDIA DRIVER
9681 M:      Michael Krufky <mkrufky@linuxtv.org>
9682 L:      linux-media@vger.kernel.org
9683 S:      Maintained
9684 W:      https://linuxtv.org
9685 W:      http://github.com/mkrufky
9686 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9687 T:      git git://linuxtv.org/mkrufky/tuners.git
9688 F:      drivers/media/dvb-frontends/lg2160.*
9689
9690 LGDT3305 MEDIA DRIVER
9691 M:      Michael Krufky <mkrufky@linuxtv.org>
9692 L:      linux-media@vger.kernel.org
9693 S:      Maintained
9694 W:      https://linuxtv.org
9695 W:      http://github.com/mkrufky
9696 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9697 T:      git git://linuxtv.org/mkrufky/tuners.git
9698 F:      drivers/media/dvb-frontends/lgdt3305.*
9699
9700 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9701 M:      Viresh Kumar <vireshk@kernel.org>
9702 L:      linux-ide@vger.kernel.org
9703 S:      Maintained
9704 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9705 F:      drivers/ata/pata_arasan_cf.c
9706 F:      include/linux/pata_arasan_cf_data.h
9707
9708 LIBATA PATA DRIVERS
9709 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9710 M:      Jens Axboe <axboe@kernel.dk>
9711 L:      linux-ide@vger.kernel.org
9712 S:      Maintained
9713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9714 F:      drivers/ata/ata_generic.c
9715 F:      drivers/ata/pata_*.c
9716
9717 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9718 M:      Linus Walleij <linus.walleij@linaro.org>
9719 L:      linux-ide@vger.kernel.org
9720 S:      Maintained
9721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9722 F:      drivers/ata/pata_ftide010.c
9723 F:      drivers/ata/sata_gemini.c
9724 F:      drivers/ata/sata_gemini.h
9725
9726 LIBATA SATA AHCI PLATFORM devices support
9727 M:      Hans de Goede <hdegoede@redhat.com>
9728 M:      Jens Axboe <axboe@kernel.dk>
9729 L:      linux-ide@vger.kernel.org
9730 S:      Maintained
9731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9732 F:      drivers/ata/ahci_platform.c
9733 F:      drivers/ata/libahci_platform.c
9734 F:      include/linux/ahci_platform.h
9735
9736 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
9737 M:      Mikael Pettersson <mikpelinux@gmail.com>
9738 L:      linux-ide@vger.kernel.org
9739 S:      Maintained
9740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9741 F:      drivers/ata/sata_promise.*
9742
9743 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
9744 M:      Jens Axboe <axboe@kernel.dk>
9745 L:      linux-ide@vger.kernel.org
9746 S:      Maintained
9747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9748 F:      Documentation/devicetree/bindings/ata/
9749 F:      drivers/ata/
9750 F:      include/linux/ata.h
9751 F:      include/linux/libata.h
9752
9753 LIBLOCKDEP
9754 M:      Sasha Levin <alexander.levin@microsoft.com>
9755 S:      Maintained
9756 F:      tools/lib/lockdep/
9757
9758 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
9759 M:      Dan Williams <dan.j.williams@intel.com>
9760 M:      Vishal Verma <vishal.l.verma@intel.com>
9761 M:      Dave Jiang <dave.jiang@intel.com>
9762 L:      linux-nvdimm@lists.01.org
9763 S:      Supported
9764 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9765 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9766 F:      drivers/nvdimm/blk.c
9767 F:      drivers/nvdimm/region_devs.c
9768
9769 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
9770 M:      Vishal Verma <vishal.l.verma@intel.com>
9771 M:      Dan Williams <dan.j.williams@intel.com>
9772 M:      Dave Jiang <dave.jiang@intel.com>
9773 L:      linux-nvdimm@lists.01.org
9774 S:      Supported
9775 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9776 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9777 F:      drivers/nvdimm/btt*
9778
9779 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
9780 M:      Dan Williams <dan.j.williams@intel.com>
9781 M:      Vishal Verma <vishal.l.verma@intel.com>
9782 M:      Dave Jiang <dave.jiang@intel.com>
9783 L:      linux-nvdimm@lists.01.org
9784 S:      Supported
9785 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9786 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9787 F:      drivers/nvdimm/pmem*
9788
9789 LIBNVDIMM: DEVICETREE BINDINGS
9790 M:      Oliver O'Halloran <oohall@gmail.com>
9791 L:      linux-nvdimm@lists.01.org
9792 S:      Supported
9793 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9794 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
9795 F:      drivers/nvdimm/of_pmem.c
9796
9797 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
9798 M:      Dan Williams <dan.j.williams@intel.com>
9799 M:      Vishal Verma <vishal.l.verma@intel.com>
9800 M:      Dave Jiang <dave.jiang@intel.com>
9801 M:      Ira Weiny <ira.weiny@intel.com>
9802 L:      linux-nvdimm@lists.01.org
9803 S:      Supported
9804 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9805 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
9807 F:      drivers/acpi/nfit/*
9808 F:      drivers/nvdimm/*
9809 F:      include/linux/libnvdimm.h
9810 F:      include/linux/nd.h
9811 F:      include/uapi/linux/ndctl.h
9812 F:      tools/testing/nvdimm/
9813
9814 LICENSES and SPDX stuff
9815 M:      Thomas Gleixner <tglx@linutronix.de>
9816 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9817 L:      linux-spdx@vger.kernel.org
9818 S:      Maintained
9819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
9820 F:      COPYING
9821 F:      Documentation/process/license-rules.rst
9822 F:      LICENSES/
9823 F:      scripts/spdxcheck-test.sh
9824 F:      scripts/spdxcheck.py
9825
9826 LIGHTNVM PLATFORM SUPPORT
9827 M:      Matias Bjorling <mb@lightnvm.io>
9828 L:      linux-block@vger.kernel.org
9829 S:      Maintained
9830 W:      http://github/OpenChannelSSD
9831 F:      drivers/lightnvm/
9832 F:      include/linux/lightnvm.h
9833 F:      include/uapi/linux/lightnvm.h
9834
9835 LINEAR RANGES HELPERS
9836 M:      Mark Brown <broonie@kernel.org>
9837 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
9838 F:      lib/linear_ranges.c
9839 F:      lib/test_linear_ranges.c
9840 F:      include/linux/linear_range.h
9841
9842 LINUX FOR POWER MACINTOSH
9843 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9844 L:      linuxppc-dev@lists.ozlabs.org
9845 S:      Odd Fixes
9846 F:      arch/powerpc/platforms/powermac/
9847 F:      drivers/macintosh/
9848
9849 LINUX FOR POWERPC (32-BIT AND 64-BIT)
9850 M:      Michael Ellerman <mpe@ellerman.id.au>
9851 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9852 R:      Paul Mackerras <paulus@samba.org>
9853 L:      linuxppc-dev@lists.ozlabs.org
9854 S:      Supported
9855 W:      https://github.com/linuxppc/wiki/wiki
9856 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
9857 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
9858 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
9859 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
9860 F:      Documentation/devicetree/bindings/powerpc/
9861 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
9862 F:      Documentation/powerpc/
9863 F:      arch/powerpc/
9864 F:      drivers/*/*/*pasemi*
9865 F:      drivers/*/*pasemi*
9866 F:      drivers/char/tpm/tpm_ibmvtpm*
9867 F:      drivers/crypto/nx/
9868 F:      drivers/crypto/vmx/
9869 F:      drivers/i2c/busses/i2c-opal.c
9870 F:      drivers/net/ethernet/ibm/ibmveth.*
9871 F:      drivers/net/ethernet/ibm/ibmvnic.*
9872 F:      drivers/pci/hotplug/pnv_php.c
9873 F:      drivers/pci/hotplug/rpa*
9874 F:      drivers/rtc/rtc-opal.c
9875 F:      drivers/scsi/ibmvscsi/
9876 F:      drivers/tty/hvc/hvc_opal.c
9877 F:      drivers/watchdog/wdrtas.c
9878 F:      tools/testing/selftests/powerpc
9879 N:      /pmac
9880 N:      powermac
9881 N:      powernv
9882 N:      [^a-z0-9]ps3
9883 N:      pseries
9884
9885 LINUX FOR POWERPC EMBEDDED MPC5XXX
9886 M:      Anatolij Gustschin <agust@denx.de>
9887 L:      linuxppc-dev@lists.ozlabs.org
9888 S:      Odd Fixes
9889 F:      arch/powerpc/platforms/512x/
9890 F:      arch/powerpc/platforms/52xx/
9891
9892 LINUX FOR POWERPC EMBEDDED PPC4XX
9893 L:      linuxppc-dev@lists.ozlabs.org
9894 S:      Orphan
9895 F:      arch/powerpc/platforms/40x/
9896 F:      arch/powerpc/platforms/44x/
9897
9898 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
9899 M:      Scott Wood <oss@buserror.net>
9900 L:      linuxppc-dev@lists.ozlabs.org
9901 S:      Odd fixes
9902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
9903 F:      Documentation/devicetree/bindings/powerpc/fsl/
9904 F:      arch/powerpc/platforms/83xx/
9905 F:      arch/powerpc/platforms/85xx/
9906
9907 LINUX FOR POWERPC EMBEDDED PPC8XX
9908 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
9909 L:      linuxppc-dev@lists.ozlabs.org
9910 S:      Maintained
9911 F:      arch/powerpc/platforms/8xx/
9912
9913 LINUX KERNEL DUMP TEST MODULE (LKDTM)
9914 M:      Kees Cook <keescook@chromium.org>
9915 S:      Maintained
9916 F:      drivers/misc/lkdtm/*
9917 F:      tools/testing/selftests/lkdtm/*
9918
9919 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
9920 M:      Alan Stern <stern@rowland.harvard.edu>
9921 M:      Andrea Parri <parri.andrea@gmail.com>
9922 M:      Will Deacon <will@kernel.org>
9923 M:      Peter Zijlstra <peterz@infradead.org>
9924 M:      Boqun Feng <boqun.feng@gmail.com>
9925 M:      Nicholas Piggin <npiggin@gmail.com>
9926 M:      David Howells <dhowells@redhat.com>
9927 M:      Jade Alglave <j.alglave@ucl.ac.uk>
9928 M:      Luc Maranget <luc.maranget@inria.fr>
9929 M:      "Paul E. McKenney" <paulmck@kernel.org>
9930 R:      Akira Yokosawa <akiyks@gmail.com>
9931 R:      Daniel Lustig <dlustig@nvidia.com>
9932 L:      linux-kernel@vger.kernel.org
9933 L:      linux-arch@vger.kernel.org
9934 S:      Supported
9935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
9936 F:      Documentation/atomic_bitops.txt
9937 F:      Documentation/atomic_t.txt
9938 F:      Documentation/core-api/atomic_ops.rst
9939 F:      Documentation/core-api/refcount-vs-atomic.rst
9940 F:      Documentation/memory-barriers.txt
9941 F:      tools/memory-model/
9942
9943 LIS3LV02D ACCELEROMETER DRIVER
9944 M:      Eric Piel <eric.piel@tremplin-utc.net>
9945 S:      Maintained
9946 F:      Documentation/misc-devices/lis3lv02d.rst
9947 F:      drivers/misc/lis3lv02d/
9948 F:      drivers/platform/x86/hp_accel.c
9949
9950 LIST KUNIT TEST
9951 M:      David Gow <davidgow@google.com>
9952 L:      linux-kselftest@vger.kernel.org
9953 L:      kunit-dev@googlegroups.com
9954 S:      Maintained
9955 F:      lib/list-test.c
9956
9957 LIVE PATCHING
9958 M:      Josh Poimboeuf <jpoimboe@redhat.com>
9959 M:      Jiri Kosina <jikos@kernel.org>
9960 M:      Miroslav Benes <mbenes@suse.cz>
9961 M:      Petr Mladek <pmladek@suse.com>
9962 R:      Joe Lawrence <joe.lawrence@redhat.com>
9963 L:      live-patching@vger.kernel.org
9964 S:      Maintained
9965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
9966 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
9967 F:      Documentation/livepatch/
9968 F:      arch/powerpc/include/asm/livepatch.h
9969 F:      arch/s390/include/asm/livepatch.h
9970 F:      arch/x86/include/asm/livepatch.h
9971 F:      include/linux/livepatch.h
9972 F:      kernel/livepatch/
9973 F:      lib/livepatch/
9974 F:      samples/livepatch/
9975 F:      tools/testing/selftests/livepatch/
9976
9977 LLC (802.2)
9978 L:      netdev@vger.kernel.org
9979 S:      Odd fixes
9980 F:      include/linux/llc.h
9981 F:      include/net/llc*
9982 F:      include/uapi/linux/llc.h
9983 F:      net/llc/
9984
9985 LM73 HARDWARE MONITOR DRIVER
9986 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
9987 L:      linux-hwmon@vger.kernel.org
9988 S:      Maintained
9989 F:      drivers/hwmon/lm73.c
9990
9991 LM78 HARDWARE MONITOR DRIVER
9992 M:      Jean Delvare <jdelvare@suse.com>
9993 L:      linux-hwmon@vger.kernel.org
9994 S:      Maintained
9995 F:      Documentation/hwmon/lm78.rst
9996 F:      drivers/hwmon/lm78.c
9997
9998 LM83 HARDWARE MONITOR DRIVER
9999 M:      Jean Delvare <jdelvare@suse.com>
10000 L:      linux-hwmon@vger.kernel.org
10001 S:      Maintained
10002 F:      Documentation/hwmon/lm83.rst
10003 F:      drivers/hwmon/lm83.c
10004
10005 LM90 HARDWARE MONITOR DRIVER
10006 M:      Jean Delvare <jdelvare@suse.com>
10007 L:      linux-hwmon@vger.kernel.org
10008 S:      Maintained
10009 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10010 F:      Documentation/hwmon/lm90.rst
10011 F:      drivers/hwmon/lm90.c
10012 F:      include/dt-bindings/thermal/lm90.h
10013
10014 LM95234 HARDWARE MONITOR DRIVER
10015 M:      Guenter Roeck <linux@roeck-us.net>
10016 L:      linux-hwmon@vger.kernel.org
10017 S:      Maintained
10018 F:      Documentation/hwmon/lm95234.rst
10019 F:      drivers/hwmon/lm95234.c
10020
10021 LME2510 MEDIA DRIVER
10022 M:      Malcolm Priestley <tvboxspy@gmail.com>
10023 L:      linux-media@vger.kernel.org
10024 S:      Maintained
10025 W:      https://linuxtv.org
10026 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10027 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10028
10029 LOADPIN SECURITY MODULE
10030 M:      Kees Cook <keescook@chromium.org>
10031 S:      Supported
10032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10033 F:      Documentation/admin-guide/LSM/LoadPin.rst
10034 F:      security/loadpin/
10035
10036 LOCKING PRIMITIVES
10037 M:      Peter Zijlstra <peterz@infradead.org>
10038 M:      Ingo Molnar <mingo@redhat.com>
10039 M:      Will Deacon <will@kernel.org>
10040 L:      linux-kernel@vger.kernel.org
10041 S:      Maintained
10042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10043 F:      Documentation/locking/
10044 F:      arch/*/include/asm/spinlock*.h
10045 F:      include/linux/lockdep.h
10046 F:      include/linux/mutex*.h
10047 F:      include/linux/rwlock*.h
10048 F:      include/linux/rwsem*.h
10049 F:      include/linux/seqlock.h
10050 F:      include/linux/spinlock*.h
10051 F:      kernel/locking/
10052 F:      lib/locking*.[ch]
10053 X:      kernel/locking/locktorture.c
10054
10055 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10056 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
10057 L:      linux-ntfs-dev@lists.sourceforge.net
10058 S:      Maintained
10059 W:      http://www.linux-ntfs.org/content/view/19/37/
10060 F:      Documentation/admin-guide/ldm.rst
10061 F:      block/partitions/ldm.*
10062
10063 LOGITECH HID GAMING KEYBOARDS
10064 M:      Hans de Goede <hdegoede@redhat.com>
10065 L:      linux-input@vger.kernel.org
10066 S:      Maintained
10067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10068 F:      drivers/hid/hid-lg-g15.c
10069
10070 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10071 M:      Sathya Prakash <sathya.prakash@broadcom.com>
10072 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
10073 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10074 L:      MPT-FusionLinux.pdl@broadcom.com
10075 L:      linux-scsi@vger.kernel.org
10076 S:      Supported
10077 W:      http://www.avagotech.com/support/
10078 F:      drivers/message/fusion/
10079 F:      drivers/scsi/mpt3sas/
10080
10081 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10082 M:      Matthew Wilcox <willy@infradead.org>
10083 L:      linux-scsi@vger.kernel.org
10084 S:      Maintained
10085 F:      drivers/scsi/sym53c8xx_2/
10086
10087 LTC1660 DAC DRIVER
10088 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10089 L:      linux-iio@vger.kernel.org
10090 S:      Maintained
10091 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10092 F:      drivers/iio/dac/ltc1660.c
10093
10094 LTC2947 HARDWARE MONITOR DRIVER
10095 M:      Nuno Sá <nuno.sa@analog.com>
10096 L:      linux-hwmon@vger.kernel.org
10097 S:      Supported
10098 W:      http://ez.analog.com/community/linux-device-drivers
10099 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10100 F:      drivers/hwmon/ltc2947-core.c
10101 F:      drivers/hwmon/ltc2947-i2c.c
10102 F:      drivers/hwmon/ltc2947-spi.c
10103 F:      drivers/hwmon/ltc2947.h
10104
10105 LTC2983 IIO TEMPERATURE DRIVER
10106 M:      Nuno Sá <nuno.sa@analog.com>
10107 L:      linux-iio@vger.kernel.org
10108 S:      Supported
10109 W:      http://ez.analog.com/community/linux-device-drivers
10110 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10111 F:      drivers/iio/temperature/ltc2983.c
10112
10113 LTC4261 HARDWARE MONITOR DRIVER
10114 M:      Guenter Roeck <linux@roeck-us.net>
10115 L:      linux-hwmon@vger.kernel.org
10116 S:      Maintained
10117 F:      Documentation/hwmon/ltc4261.rst
10118 F:      drivers/hwmon/ltc4261.c
10119
10120 LTC4306 I2C MULTIPLEXER DRIVER
10121 M:      Michael Hennerich <michael.hennerich@analog.com>
10122 L:      linux-i2c@vger.kernel.org
10123 S:      Supported
10124 W:      http://ez.analog.com/community/linux-device-drivers
10125 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10126 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10127
10128 LTP (Linux Test Project)
10129 M:      Mike Frysinger <vapier@gentoo.org>
10130 M:      Cyril Hrubis <chrubis@suse.cz>
10131 M:      Wanlong Gao <wanlong.gao@gmail.com>
10132 M:      Jan Stancek <jstancek@redhat.com>
10133 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
10134 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
10135 L:      ltp@lists.linux.it (subscribers-only)
10136 S:      Maintained
10137 W:      http://linux-test-project.github.io/
10138 T:      git git://github.com/linux-test-project/ltp.git
10139
10140 M68K ARCHITECTURE
10141 M:      Geert Uytterhoeven <geert@linux-m68k.org>
10142 L:      linux-m68k@lists.linux-m68k.org
10143 S:      Maintained
10144 W:      http://www.linux-m68k.org/
10145 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10146 F:      arch/m68k/
10147 F:      drivers/zorro/
10148
10149 M68K ON APPLE MACINTOSH
10150 M:      Joshua Thompson <funaho@jurai.org>
10151 L:      linux-m68k@lists.linux-m68k.org
10152 S:      Maintained
10153 W:      http://www.mac.linux-m68k.org/
10154 F:      arch/m68k/mac/
10155
10156 M68K ON HP9000/300
10157 M:      Philip Blundell <philb@gnu.org>
10158 S:      Maintained
10159 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10160 F:      arch/m68k/hp300/
10161
10162 M88DS3103 MEDIA DRIVER
10163 M:      Antti Palosaari <crope@iki.fi>
10164 L:      linux-media@vger.kernel.org
10165 S:      Maintained
10166 W:      https://linuxtv.org
10167 W:      http://palosaari.fi/linux/
10168 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10169 T:      git git://linuxtv.org/anttip/media_tree.git
10170 F:      drivers/media/dvb-frontends/m88ds3103*
10171
10172 M88RS2000 MEDIA DRIVER
10173 M:      Malcolm Priestley <tvboxspy@gmail.com>
10174 L:      linux-media@vger.kernel.org
10175 S:      Maintained
10176 W:      https://linuxtv.org
10177 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10178 F:      drivers/media/dvb-frontends/m88rs2000*
10179
10180 MA901 MASTERKIT USB FM RADIO DRIVER
10181 M:      Alexey Klimov <klimov.linux@gmail.com>
10182 L:      linux-media@vger.kernel.org
10183 S:      Maintained
10184 T:      git git://linuxtv.org/media_tree.git
10185 F:      drivers/media/radio/radio-ma901.c
10186
10187 MAC80211
10188 M:      Johannes Berg <johannes@sipsolutions.net>
10189 L:      linux-wireless@vger.kernel.org
10190 S:      Maintained
10191 W:      https://wireless.wiki.kernel.org/
10192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10194 F:      Documentation/networking/mac80211-injection.rst
10195 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10196 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10197 F:      include/net/mac80211.h
10198 F:      net/mac80211/
10199
10200 MAILBOX API
10201 M:      Jassi Brar <jassisinghbrar@gmail.com>
10202 L:      linux-kernel@vger.kernel.org
10203 S:      Maintained
10204 F:      drivers/mailbox/
10205 F:      include/linux/mailbox_client.h
10206 F:      include/linux/mailbox_controller.h
10207
10208 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10209 M:      Michael Kerrisk <mtk.manpages@gmail.com>
10210 L:      linux-man@vger.kernel.org
10211 S:      Maintained
10212 W:      http://www.kernel.org/doc/man-pages
10213
10214 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10215 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
10216 L:      linux-mips@vger.kernel.org
10217 S:      Maintained
10218 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10219
10220 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10221 M:      Andrew Lunn <andrew@lunn.ch>
10222 M:      Vivien Didelot <vivien.didelot@gmail.com>
10223 L:      netdev@vger.kernel.org
10224 S:      Maintained
10225 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10226 F:      Documentation/networking/devlink/mv88e6xxx.rst
10227 F:      drivers/net/dsa/mv88e6xxx/
10228 F:      include/linux/platform_data/mv88e6xxx.h
10229
10230 MARVELL ARMADA 3700 PHY DRIVERS
10231 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10232 S:      Maintained
10233 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10234 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10235 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10236 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10237
10238 MARVELL ARMADA DRM SUPPORT
10239 M:      Russell King <linux@armlinux.org.uk>
10240 S:      Maintained
10241 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10242 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10243 F:      Documentation/devicetree/bindings/display/armada/
10244 F:      drivers/gpu/drm/armada/
10245 F:      include/uapi/drm/armada_drm.h
10246
10247 MARVELL CRYPTO DRIVER
10248 M:      Boris Brezillon <bbrezillon@kernel.org>
10249 M:      Arnaud Ebalard <arno@natisbad.org>
10250 M:      Srujana Challa <schalla@marvell.com>
10251 L:      linux-crypto@vger.kernel.org
10252 S:      Maintained
10253 F:      drivers/crypto/marvell/
10254
10255 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10256 M:      Mirko Lindner <mlindner@marvell.com>
10257 M:      Stephen Hemminger <stephen@networkplumber.org>
10258 L:      netdev@vger.kernel.org
10259 S:      Maintained
10260 F:      drivers/net/ethernet/marvell/sk*
10261
10262 MARVELL LIBERTAS WIRELESS DRIVER
10263 L:      libertas-dev@lists.infradead.org
10264 S:      Orphan
10265 F:      drivers/net/wireless/marvell/libertas/
10266
10267 MARVELL MACCHIATOBIN SUPPORT
10268 M:      Russell King <linux@armlinux.org.uk>
10269 L:      linux-arm-kernel@lists.infradead.org
10270 S:      Maintained
10271 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10272
10273 MARVELL MV643XX ETHERNET DRIVER
10274 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
10275 L:      netdev@vger.kernel.org
10276 S:      Maintained
10277 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10278 F:      include/linux/mv643xx.h
10279
10280 MARVELL MV88X3310 PHY DRIVER
10281 M:      Russell King <linux@armlinux.org.uk>
10282 L:      netdev@vger.kernel.org
10283 S:      Maintained
10284 F:      drivers/net/phy/marvell10g.c
10285
10286 MARVELL MVEBU THERMAL DRIVER
10287 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10288 S:      Maintained
10289 F:      drivers/thermal/armada_thermal.c
10290
10291 MARVELL MVNETA ETHERNET DRIVER
10292 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
10293 L:      netdev@vger.kernel.org
10294 S:      Maintained
10295 F:      drivers/net/ethernet/marvell/mvneta.*
10296
10297 MARVELL MWIFIEX WIRELESS DRIVER
10298 M:      Amitkumar Karwar <amitkarwar@gmail.com>
10299 M:      Ganapathi Bhat <ganapathi.bhat@nxp.com>
10300 M:      Xinming Hu <huxinming820@gmail.com>
10301 L:      linux-wireless@vger.kernel.org
10302 S:      Maintained
10303 F:      drivers/net/wireless/marvell/mwifiex/
10304
10305 MARVELL MWL8K WIRELESS DRIVER
10306 M:      Lennert Buytenhek <buytenh@wantstofly.org>
10307 L:      linux-wireless@vger.kernel.org
10308 S:      Odd Fixes
10309 F:      drivers/net/wireless/marvell/mwl8k.c
10310
10311 MARVELL NAND CONTROLLER DRIVER
10312 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10313 L:      linux-mtd@lists.infradead.org
10314 S:      Maintained
10315 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10316 F:      drivers/mtd/nand/raw/marvell_nand.c
10317
10318 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10319 M:      Sunil Goutham <sgoutham@marvell.com>
10320 M:      Geetha sowjanya <gakula@marvell.com>
10321 M:      Subbaraya Sundeep <sbhatta@marvell.com>
10322 M:      hariprasad <hkelam@marvell.com>
10323 L:      netdev@vger.kernel.org
10324 S:      Supported
10325 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10326
10327 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10328 M:      Sunil Goutham <sgoutham@marvell.com>
10329 M:      Linu Cherian <lcherian@marvell.com>
10330 M:      Geetha sowjanya <gakula@marvell.com>
10331 M:      Jerin Jacob <jerinj@marvell.com>
10332 L:      netdev@vger.kernel.org
10333 S:      Supported
10334 F:      Documentation/networking/device_drivers/marvell/octeontx2.rst
10335 F:      drivers/net/ethernet/marvell/octeontx2/af/
10336
10337 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10338 M:      Nicolas Pitre <nico@fluxnic.net>
10339 S:      Odd Fixes
10340 F:      drivers/mmc/host/mvsdio.*
10341
10342 MARVELL USB MDIO CONTROLLER DRIVER
10343 M:      Tobias Waldekranz <tobias@waldekranz.com>
10344 L:      netdev@vger.kernel.org
10345 S:      Maintained
10346 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10347 F:      drivers/net/phy/mdio-mvusb.c
10348
10349 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10350 M:      Hu Ziji <huziji@marvell.com>
10351 L:      linux-mmc@vger.kernel.org
10352 S:      Supported
10353 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10354 F:      drivers/mmc/host/sdhci-xenon*
10355
10356 MATROX FRAMEBUFFER DRIVER
10357 L:      linux-fbdev@vger.kernel.org
10358 S:      Orphan
10359 F:      drivers/video/fbdev/matrox/matroxfb_*
10360 F:      include/uapi/linux/matroxfb.h
10361
10362 MAX16065 HARDWARE MONITOR DRIVER
10363 M:      Guenter Roeck <linux@roeck-us.net>
10364 L:      linux-hwmon@vger.kernel.org
10365 S:      Maintained
10366 F:      Documentation/hwmon/max16065.rst
10367 F:      drivers/hwmon/max16065.c
10368
10369 MAX2175 SDR TUNER DRIVER
10370 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10371 L:      linux-media@vger.kernel.org
10372 S:      Maintained
10373 T:      git git://linuxtv.org/media_tree.git
10374 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10375 F:      Documentation/userspace-api/media/drivers/max2175.rst
10376 F:      drivers/media/i2c/max2175*
10377 F:      include/uapi/linux/max2175.h
10378
10379 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10380 L:      linux-hwmon@vger.kernel.org
10381 S:      Orphan
10382 F:      Documentation/hwmon/max6650.rst
10383 F:      drivers/hwmon/max6650.c
10384
10385 MAX6697 HARDWARE MONITOR DRIVER
10386 M:      Guenter Roeck <linux@roeck-us.net>
10387 L:      linux-hwmon@vger.kernel.org
10388 S:      Maintained
10389 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10390 F:      Documentation/hwmon/max6697.rst
10391 F:      drivers/hwmon/max6697.c
10392 F:      include/linux/platform_data/max6697.h
10393
10394 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10395 M:      Peter Rosin <peda@axentia.se>
10396 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10397 S:      Maintained
10398 F:      Documentation/devicetree/bindings/sound/max9860.txt
10399 F:      sound/soc/codecs/max9860.*
10400
10401 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10402 M:      Andreas Klinger <ak@it-klinger.de>
10403 L:      linux-iio@vger.kernel.org
10404 S:      Maintained
10405 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10406 F:      drivers/iio/proximity/mb1232.c
10407
10408 MAXIM MAX77650 PMIC MFD DRIVER
10409 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
10410 L:      linux-kernel@vger.kernel.org
10411 S:      Maintained
10412 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10413 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10414 F:      drivers/gpio/gpio-max77650.c
10415 F:      drivers/input/misc/max77650-onkey.c
10416 F:      drivers/leds/leds-max77650.c
10417 F:      drivers/mfd/max77650.c
10418 F:      drivers/power/supply/max77650-charger.c
10419 F:      drivers/regulator/max77650-regulator.c
10420 F:      include/linux/mfd/max77650.h
10421
10422 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10423 M:      Javier Martinez Canillas <javier@dowhile0.org>
10424 L:      linux-kernel@vger.kernel.org
10425 S:      Supported
10426 F:      Documentation/devicetree/bindings/*/*max77802.txt
10427 F:      drivers/regulator/max77802-regulator.c
10428 F:      include/dt-bindings/*/*max77802.h
10429
10430 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10431 M:      Krzysztof Kozlowski <krzk@kernel.org>
10432 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10433 L:      linux-pm@vger.kernel.org
10434 S:      Supported
10435 F:      drivers/power/supply/max14577_charger.c
10436 F:      drivers/power/supply/max77693_charger.c
10437
10438 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10439 M:      Chanwoo Choi <cw00.choi@samsung.com>
10440 M:      Krzysztof Kozlowski <krzk@kernel.org>
10441 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10442 L:      linux-kernel@vger.kernel.org
10443 S:      Supported
10444 F:      Documentation/devicetree/bindings/*/max77686.txt
10445 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10446 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10447 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10448 F:      drivers/*/max14577*.c
10449 F:      drivers/*/max77686*.c
10450 F:      drivers/*/max77693*.c
10451 F:      drivers/clk/clk-max77686.c
10452 F:      drivers/extcon/extcon-max14577.c
10453 F:      drivers/extcon/extcon-max77693.c
10454 F:      drivers/rtc/rtc-max77686.c
10455 F:      include/linux/mfd/max14577*.h
10456 F:      include/linux/mfd/max77686*.h
10457 F:      include/linux/mfd/max77693*.h
10458
10459 MAXIRADIO FM RADIO RECEIVER DRIVER
10460 M:      Hans Verkuil <hverkuil@xs4all.nl>
10461 L:      linux-media@vger.kernel.org
10462 S:      Maintained
10463 W:      https://linuxtv.org
10464 T:      git git://linuxtv.org/media_tree.git
10465 F:      drivers/media/radio/radio-maxiradio*
10466
10467 MCAN MMIO DEVICE DRIVER
10468 M:      Dan Murphy <dmurphy@ti.com>
10469 M:      Sriram Dash <sriram.dash@samsung.com>
10470 L:      linux-can@vger.kernel.org
10471 S:      Maintained
10472 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10473 F:      drivers/net/can/m_can/m_can.c
10474 F:      drivers/net/can/m_can/m_can.h
10475 F:      drivers/net/can/m_can/m_can_platform.c
10476
10477 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10478 M:      Rishi Gupta <gupt21@gmail.com>
10479 L:      linux-i2c@vger.kernel.org
10480 L:      linux-input@vger.kernel.org
10481 S:      Maintained
10482 F:      drivers/hid/hid-mcp2221.c
10483
10484 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10485 M:      Peter Rosin <peda@axentia.se>
10486 L:      linux-iio@vger.kernel.org
10487 S:      Maintained
10488 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10489 F:      drivers/iio/potentiometer/mcp4018.c
10490 F:      drivers/iio/potentiometer/mcp4531.c
10491
10492 MCR20A IEEE-802.15.4 RADIO DRIVER
10493 M:      Xue Liu <liuxuenetmail@gmail.com>
10494 L:      linux-wpan@vger.kernel.org
10495 S:      Maintained
10496 W:      https://github.com/xueliu/mcr20a-linux
10497 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10498 F:      drivers/net/ieee802154/mcr20a.c
10499 F:      drivers/net/ieee802154/mcr20a.h
10500
10501 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10502 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10503 L:      linux-iio@vger.kernel.org
10504 S:      Maintained
10505 F:      drivers/iio/dac/cio-dac.c
10506
10507 MEDIA CONTROLLER FRAMEWORK
10508 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10509 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10510 L:      linux-media@vger.kernel.org
10511 S:      Supported
10512 W:      https://www.linuxtv.org
10513 T:      git git://linuxtv.org/media_tree.git
10514 F:      drivers/media/mc/
10515 F:      include/media/media-*.h
10516 F:      include/uapi/linux/media.h
10517
10518 MEDIA DRIVER FOR FREESCALE IMX PXP
10519 M:      Philipp Zabel <p.zabel@pengutronix.de>
10520 L:      linux-media@vger.kernel.org
10521 S:      Maintained
10522 T:      git git://linuxtv.org/media_tree.git
10523 F:      drivers/media/platform/imx-pxp.[ch]
10524
10525 MEDIA DRIVERS FOR ASCOT2E
10526 M:      Sergey Kozlov <serjk@netup.ru>
10527 M:      Abylay Ospan <aospan@netup.ru>
10528 L:      linux-media@vger.kernel.org
10529 S:      Supported
10530 W:      https://linuxtv.org
10531 W:      http://netup.tv/
10532 T:      git git://linuxtv.org/media_tree.git
10533 F:      drivers/media/dvb-frontends/ascot2e*
10534
10535 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10536 M:      Jasmin Jessich <jasmin@anw.at>
10537 L:      linux-media@vger.kernel.org
10538 S:      Maintained
10539 W:      https://linuxtv.org
10540 T:      git git://linuxtv.org/media_tree.git
10541 F:      drivers/media/dvb-frontends/cxd2099*
10542
10543 MEDIA DRIVERS FOR CXD2841ER
10544 M:      Sergey Kozlov <serjk@netup.ru>
10545 M:      Abylay Ospan <aospan@netup.ru>
10546 L:      linux-media@vger.kernel.org
10547 S:      Supported
10548 W:      https://linuxtv.org
10549 W:      http://netup.tv/
10550 T:      git git://linuxtv.org/media_tree.git
10551 F:      drivers/media/dvb-frontends/cxd2841er*
10552
10553 MEDIA DRIVERS FOR CXD2880
10554 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
10555 L:      linux-media@vger.kernel.org
10556 S:      Supported
10557 W:      http://linuxtv.org/
10558 T:      git git://linuxtv.org/media_tree.git
10559 F:      drivers/media/dvb-frontends/cxd2880/*
10560 F:      drivers/media/spi/cxd2880*
10561
10562 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10563 L:      linux-media@vger.kernel.org
10564 S:      Orphan
10565 W:      https://linuxtv.org
10566 T:      git git://linuxtv.org/media_tree.git
10567 F:      drivers/media/pci/ddbridge/*
10568
10569 MEDIA DRIVERS FOR FREESCALE IMX
10570 M:      Steve Longerbeam <slongerbeam@gmail.com>
10571 M:      Philipp Zabel <p.zabel@pengutronix.de>
10572 L:      linux-media@vger.kernel.org
10573 S:      Maintained
10574 T:      git git://linuxtv.org/media_tree.git
10575 F:      Documentation/admin-guide/media/imx.rst
10576 F:      Documentation/devicetree/bindings/media/imx.txt
10577 F:      drivers/staging/media/imx/
10578 F:      include/linux/imx-media.h
10579 F:      include/media/imx.h
10580
10581 MEDIA DRIVERS FOR FREESCALE IMX7
10582 M:      Rui Miguel Silva <rmfrfs@gmail.com>
10583 L:      linux-media@vger.kernel.org
10584 S:      Maintained
10585 T:      git git://linuxtv.org/media_tree.git
10586 F:      Documentation/admin-guide/media/imx7.rst
10587 F:      Documentation/devicetree/bindings/media/imx7-csi.txt
10588 F:      Documentation/devicetree/bindings/media/imx7-mipi-csi2.txt
10589 F:      drivers/staging/media/imx/imx7-media-csi.c
10590 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10591
10592 MEDIA DRIVERS FOR HELENE
10593 M:      Abylay Ospan <aospan@netup.ru>
10594 L:      linux-media@vger.kernel.org
10595 S:      Supported
10596 W:      https://linuxtv.org
10597 W:      http://netup.tv/
10598 T:      git git://linuxtv.org/media_tree.git
10599 F:      drivers/media/dvb-frontends/helene*
10600
10601 MEDIA DRIVERS FOR HORUS3A
10602 M:      Sergey Kozlov <serjk@netup.ru>
10603 M:      Abylay Ospan <aospan@netup.ru>
10604 L:      linux-media@vger.kernel.org
10605 S:      Supported
10606 W:      https://linuxtv.org
10607 W:      http://netup.tv/
10608 T:      git git://linuxtv.org/media_tree.git
10609 F:      drivers/media/dvb-frontends/horus3a*
10610
10611 MEDIA DRIVERS FOR LNBH25
10612 M:      Sergey Kozlov <serjk@netup.ru>
10613 M:      Abylay Ospan <aospan@netup.ru>
10614 L:      linux-media@vger.kernel.org
10615 S:      Supported
10616 W:      https://linuxtv.org
10617 W:      http://netup.tv/
10618 T:      git git://linuxtv.org/media_tree.git
10619 F:      drivers/media/dvb-frontends/lnbh25*
10620
10621 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10622 L:      linux-media@vger.kernel.org
10623 S:      Orphan
10624 W:      https://linuxtv.org
10625 T:      git git://linuxtv.org/media_tree.git
10626 F:      drivers/media/dvb-frontends/mxl5xx*
10627
10628 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10629 M:      Sergey Kozlov <serjk@netup.ru>
10630 M:      Abylay Ospan <aospan@netup.ru>
10631 L:      linux-media@vger.kernel.org
10632 S:      Supported
10633 W:      https://linuxtv.org
10634 W:      http://netup.tv/
10635 T:      git git://linuxtv.org/media_tree.git
10636 F:      drivers/media/pci/netup_unidvb/*
10637
10638 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10639 M:      Dmitry Osipenko <digetx@gmail.com>
10640 L:      linux-media@vger.kernel.org
10641 L:      linux-tegra@vger.kernel.org
10642 S:      Maintained
10643 T:      git git://linuxtv.org/media_tree.git
10644 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10645 F:      drivers/staging/media/tegra-vde/
10646
10647 MEDIA DRIVERS FOR RENESAS - CEU
10648 M:      Jacopo Mondi <jacopo@jmondi.org>
10649 L:      linux-media@vger.kernel.org
10650 L:      linux-renesas-soc@vger.kernel.org
10651 S:      Supported
10652 T:      git git://linuxtv.org/media_tree.git
10653 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
10654 F:      drivers/media/platform/renesas-ceu.c
10655 F:      include/media/drv-intf/renesas-ceu.h
10656
10657 MEDIA DRIVERS FOR RENESAS - DRIF
10658 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10659 L:      linux-media@vger.kernel.org
10660 L:      linux-renesas-soc@vger.kernel.org
10661 S:      Supported
10662 T:      git git://linuxtv.org/media_tree.git
10663 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10664 F:      drivers/media/platform/rcar_drif.c
10665
10666 MEDIA DRIVERS FOR RENESAS - FCP
10667 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10668 L:      linux-media@vger.kernel.org
10669 L:      linux-renesas-soc@vger.kernel.org
10670 S:      Supported
10671 T:      git git://linuxtv.org/media_tree.git
10672 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
10673 F:      drivers/media/platform/rcar-fcp.c
10674 F:      include/media/rcar-fcp.h
10675
10676 MEDIA DRIVERS FOR RENESAS - FDP1
10677 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10678 L:      linux-media@vger.kernel.org
10679 L:      linux-renesas-soc@vger.kernel.org
10680 S:      Supported
10681 T:      git git://linuxtv.org/media_tree.git
10682 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
10683 F:      drivers/media/platform/rcar_fdp1.c
10684
10685 MEDIA DRIVERS FOR RENESAS - VIN
10686 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
10687 L:      linux-media@vger.kernel.org
10688 L:      linux-renesas-soc@vger.kernel.org
10689 S:      Supported
10690 T:      git git://linuxtv.org/media_tree.git
10691 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
10692 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
10693 F:      drivers/media/platform/rcar-vin/
10694
10695 MEDIA DRIVERS FOR RENESAS - VSP1
10696 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10697 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10698 L:      linux-media@vger.kernel.org
10699 L:      linux-renesas-soc@vger.kernel.org
10700 S:      Supported
10701 T:      git git://linuxtv.org/media_tree.git
10702 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
10703 F:      drivers/media/platform/vsp1/
10704
10705 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
10706 L:      linux-media@vger.kernel.org
10707 S:      Orphan
10708 W:      https://linuxtv.org
10709 T:      git git://linuxtv.org/media_tree.git
10710 F:      drivers/media/dvb-frontends/stv0910*
10711
10712 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10713 L:      linux-media@vger.kernel.org
10714 S:      Orphan
10715 W:      https://linuxtv.org
10716 T:      git git://linuxtv.org/media_tree.git
10717 F:      drivers/media/dvb-frontends/stv6111*
10718
10719 MEDIA DRIVERS FOR STM32 - DCMI
10720 M:      Hugues Fruchet <hugues.fruchet@st.com>
10721 L:      linux-media@vger.kernel.org
10722 S:      Supported
10723 T:      git git://linuxtv.org/media_tree.git
10724 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
10725 F:      drivers/media/platform/stm32/stm32-dcmi.c
10726
10727 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
10728 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
10729 L:      linux-media@vger.kernel.org
10730 S:      Maintained
10731 W:      https://linuxtv.org
10732 Q:      http://patchwork.kernel.org/project/linux-media/list/
10733 T:      git git://linuxtv.org/media_tree.git
10734 F:      Documentation/admin-guide/media/
10735 F:      Documentation/devicetree/bindings/media/
10736 F:      Documentation/driver-api/media/
10737 F:      Documentation/userspace-api/media/
10738 F:      drivers/media/
10739 F:      drivers/staging/media/
10740 F:      include/linux/platform_data/media/
10741 F:      include/media/
10742 F:      include/uapi/linux/dvb/
10743 F:      include/uapi/linux/ivtv*
10744 F:      include/uapi/linux/media.h
10745 F:      include/uapi/linux/meye.h
10746 F:      include/uapi/linux/uvcvideo.h
10747 F:      include/uapi/linux/v4l2-*
10748 F:      include/uapi/linux/videodev2.h
10749
10750 MEDIATEK BLUETOOTH DRIVER
10751 M:      Sean Wang <sean.wang@mediatek.com>
10752 L:      linux-bluetooth@vger.kernel.org
10753 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10754 S:      Maintained
10755 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
10756 F:      drivers/bluetooth/btmtkuart.c
10757
10758 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
10759 M:      Sean Wang <sean.wang@mediatek.com>
10760 L:      linux-pm@vger.kernel.org
10761 S:      Maintained
10762 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
10763 F:      drivers/power/reset/mt6323-poweroff.c
10764
10765 MEDIATEK CIR DRIVER
10766 M:      Sean Wang <sean.wang@mediatek.com>
10767 S:      Maintained
10768 F:      drivers/media/rc/mtk-cir.c
10769
10770 MEDIATEK DMA DRIVER
10771 M:      Sean Wang <sean.wang@mediatek.com>
10772 L:      dmaengine@vger.kernel.org
10773 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10774 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10775 S:      Maintained
10776 F:      Documentation/devicetree/bindings/dma/mtk-*
10777 F:      drivers/dma/mediatek/
10778
10779 MEDIATEK ETHERNET DRIVER
10780 M:      Felix Fietkau <nbd@openwrt.org>
10781 M:      John Crispin <john@phrozen.org>
10782 M:      Sean Wang <sean.wang@mediatek.com>
10783 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
10784 L:      netdev@vger.kernel.org
10785 S:      Maintained
10786 F:      drivers/net/ethernet/mediatek/
10787
10788 MEDIATEK I2C CONTROLLER DRIVER
10789 M:      Qii Wang <qii.wang@mediatek.com>
10790 L:      linux-i2c@vger.kernel.org
10791 S:      Maintained
10792 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
10793 F:      drivers/i2c/busses/i2c-mt65xx.c
10794
10795 MEDIATEK JPEG DRIVER
10796 M:      Rick Chang <rick.chang@mediatek.com>
10797 M:      Bin Liu <bin.liu@mediatek.com>
10798 S:      Supported
10799 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
10800 F:      drivers/media/platform/mtk-jpeg/
10801
10802 MEDIATEK MDP DRIVER
10803 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
10804 M:      Houlong Wei <houlong.wei@mediatek.com>
10805 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10806 S:      Supported
10807 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
10808 F:      drivers/media/platform/mtk-mdp/
10809 F:      drivers/media/platform/mtk-vpu/
10810
10811 MEDIATEK MEDIA DRIVER
10812 M:      Tiffany Lin <tiffany.lin@mediatek.com>
10813 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10814 S:      Supported
10815 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
10816 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
10817 F:      drivers/media/platform/mtk-vcodec/
10818 F:      drivers/media/platform/mtk-vpu/
10819
10820 MEDIATEK MMC/SD/SDIO DRIVER
10821 M:      Chaotian Jing <chaotian.jing@mediatek.com>
10822 S:      Maintained
10823 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
10824 F:      drivers/mmc/host/mtk-sd.c
10825
10826 MEDIATEK MT76 WIRELESS LAN DRIVER
10827 M:      Felix Fietkau <nbd@nbd.name>
10828 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
10829 R:      Ryder Lee <ryder.lee@mediatek.com>
10830 L:      linux-wireless@vger.kernel.org
10831 S:      Maintained
10832 F:      drivers/net/wireless/mediatek/mt76/
10833
10834 MEDIATEK MT7601U WIRELESS LAN DRIVER
10835 M:      Jakub Kicinski <kubakici@wp.pl>
10836 L:      linux-wireless@vger.kernel.org
10837 S:      Maintained
10838 F:      drivers/net/wireless/mediatek/mt7601u/
10839
10840 MEDIATEK MT7621/28/88 I2C DRIVER
10841 M:      Stefan Roese <sr@denx.de>
10842 L:      linux-i2c@vger.kernel.org
10843 S:      Maintained
10844 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
10845 F:      drivers/i2c/busses/i2c-mt7621.c
10846
10847 MEDIATEK NAND CONTROLLER DRIVER
10848 M:      Xiaolei Li <xiaolei.li@mediatek.com>
10849 L:      linux-mtd@lists.infradead.org
10850 S:      Maintained
10851 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
10852 F:      drivers/mtd/nand/raw/mtk_*
10853
10854 MEDIATEK PMIC LED DRIVER
10855 M:      Sean Wang <sean.wang@mediatek.com>
10856 S:      Maintained
10857 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
10858 F:      drivers/leds/leds-mt6323.c
10859
10860 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
10861 M:      Sean Wang <sean.wang@mediatek.com>
10862 S:      Maintained
10863 F:      drivers/char/hw_random/mtk-rng.c
10864
10865 MEDIATEK SWITCH DRIVER
10866 M:      Sean Wang <sean.wang@mediatek.com>
10867 L:      netdev@vger.kernel.org
10868 S:      Maintained
10869 F:      drivers/net/dsa/mt7530.*
10870 F:      net/dsa/tag_mtk.c
10871
10872 MEDIATEK USB3 DRD IP DRIVER
10873 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
10874 L:      linux-usb@vger.kernel.org (moderated for non-subscribers)
10875 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10876 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10877 S:      Maintained
10878 F:      drivers/usb/mtu3/
10879
10880 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
10881 M:      Peter Senna Tschudin <peter.senna@gmail.com>
10882 M:      Martin Donnelly <martin.donnelly@ge.com>
10883 M:      Martyn Welch <martyn.welch@collabora.co.uk>
10884 S:      Maintained
10885 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
10886 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
10887
10888 MEGARAID SCSI/SAS DRIVERS
10889 M:      Kashyap Desai <kashyap.desai@broadcom.com>
10890 M:      Sumit Saxena <sumit.saxena@broadcom.com>
10891 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
10892 L:      megaraidlinux.pdl@broadcom.com
10893 L:      linux-scsi@vger.kernel.org
10894 S:      Maintained
10895 W:      http://www.avagotech.com/support/
10896 F:      Documentation/scsi/megaraid.rst
10897 F:      drivers/scsi/megaraid.*
10898 F:      drivers/scsi/megaraid/
10899
10900 MELEXIS MLX90614 DRIVER
10901 M:      Crt Mori <cmo@melexis.com>
10902 L:      linux-iio@vger.kernel.org
10903 S:      Supported
10904 W:      http://www.melexis.com
10905 F:      drivers/iio/temperature/mlx90614.c
10906
10907 MELEXIS MLX90632 DRIVER
10908 M:      Crt Mori <cmo@melexis.com>
10909 L:      linux-iio@vger.kernel.org
10910 S:      Supported
10911 W:      http://www.melexis.com
10912 F:      drivers/iio/temperature/mlx90632.c
10913
10914 MELFAS MIP4 TOUCHSCREEN DRIVER
10915 M:      Sangwon Jee <jeesw@melfas.com>
10916 S:      Supported
10917 W:      http://www.melfas.com
10918 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
10919 F:      drivers/input/touchscreen/melfas_mip4.c
10920
10921 MELLANOX ETHERNET DRIVER (mlx4_en)
10922 M:      Tariq Toukan <tariqt@mellanox.com>
10923 L:      netdev@vger.kernel.org
10924 S:      Supported
10925 W:      http://www.mellanox.com
10926 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10927 F:      drivers/net/ethernet/mellanox/mlx4/en_*
10928
10929 MELLANOX ETHERNET DRIVER (mlx5e)
10930 M:      Saeed Mahameed <saeedm@mellanox.com>
10931 L:      netdev@vger.kernel.org
10932 S:      Supported
10933 W:      http://www.mellanox.com
10934 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10935 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
10936
10937 MELLANOX ETHERNET INNOVA DRIVERS
10938 R:      Boris Pismenny <borisp@mellanox.com>
10939 L:      netdev@vger.kernel.org
10940 S:      Supported
10941 W:      http://www.mellanox.com
10942 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10943 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
10944 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
10945 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
10946 F:      include/linux/mlx5/mlx5_ifc_fpga.h
10947
10948 MELLANOX ETHERNET SWITCH DRIVERS
10949 M:      Jiri Pirko <jiri@mellanox.com>
10950 M:      Ido Schimmel <idosch@mellanox.com>
10951 L:      netdev@vger.kernel.org
10952 S:      Supported
10953 W:      http://www.mellanox.com
10954 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10955 F:      drivers/net/ethernet/mellanox/mlxsw/
10956 F:      tools/testing/selftests/drivers/net/mlxsw/
10957
10958 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
10959 M:      mlxsw@mellanox.com
10960 L:      netdev@vger.kernel.org
10961 S:      Supported
10962 W:      http://www.mellanox.com
10963 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10964 F:      drivers/net/ethernet/mellanox/mlxfw/
10965
10966 MELLANOX HARDWARE PLATFORM SUPPORT
10967 M:      Andy Shevchenko <andy@infradead.org>
10968 M:      Darren Hart <dvhart@infradead.org>
10969 M:      Vadim Pasternak <vadimp@mellanox.com>
10970 L:      platform-driver-x86@vger.kernel.org
10971 S:      Supported
10972 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
10973 F:      drivers/platform/mellanox/
10974 F:      include/linux/platform_data/mlxreg.h
10975
10976 MELLANOX MLX4 core VPI driver
10977 M:      Tariq Toukan <tariqt@mellanox.com>
10978 L:      netdev@vger.kernel.org
10979 L:      linux-rdma@vger.kernel.org
10980 S:      Supported
10981 W:      http://www.mellanox.com
10982 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10983 F:      drivers/net/ethernet/mellanox/mlx4/
10984 F:      include/linux/mlx4/
10985
10986 MELLANOX MLX4 IB driver
10987 M:      Yishai Hadas <yishaih@mellanox.com>
10988 L:      linux-rdma@vger.kernel.org
10989 S:      Supported
10990 W:      http://www.mellanox.com
10991 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10992 F:      drivers/infiniband/hw/mlx4/
10993 F:      include/linux/mlx4/
10994 F:      include/uapi/rdma/mlx4-abi.h
10995
10996 MELLANOX MLX5 core VPI driver
10997 M:      Saeed Mahameed <saeedm@mellanox.com>
10998 M:      Leon Romanovsky <leonro@mellanox.com>
10999 L:      netdev@vger.kernel.org
11000 L:      linux-rdma@vger.kernel.org
11001 S:      Supported
11002 W:      http://www.mellanox.com
11003 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11004 F:      Documentation/networking/device_drivers/mellanox/
11005 F:      drivers/net/ethernet/mellanox/mlx5/core/
11006 F:      include/linux/mlx5/
11007
11008 MELLANOX MLX5 IB driver
11009 M:      Leon Romanovsky <leonro@mellanox.com>
11010 L:      linux-rdma@vger.kernel.org
11011 S:      Supported
11012 W:      http://www.mellanox.com
11013 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11014 F:      drivers/infiniband/hw/mlx5/
11015 F:      include/linux/mlx5/
11016 F:      include/uapi/rdma/mlx5-abi.h
11017
11018 MELLANOX MLXCPLD I2C AND MUX DRIVER
11019 M:      Vadim Pasternak <vadimp@mellanox.com>
11020 M:      Michael Shych <michaelsh@mellanox.com>
11021 L:      linux-i2c@vger.kernel.org
11022 S:      Supported
11023 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11024 F:      drivers/i2c/busses/i2c-mlxcpld.c
11025 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11026
11027 MELLANOX MLXCPLD LED DRIVER
11028 M:      Vadim Pasternak <vadimp@mellanox.com>
11029 L:      linux-leds@vger.kernel.org
11030 S:      Supported
11031 F:      Documentation/leds/leds-mlxcpld.rst
11032 F:      drivers/leds/leds-mlxcpld.c
11033 F:      drivers/leds/leds-mlxreg.c
11034
11035 MELLANOX PLATFORM DRIVER
11036 M:      Vadim Pasternak <vadimp@mellanox.com>
11037 L:      platform-driver-x86@vger.kernel.org
11038 S:      Supported
11039 F:      drivers/platform/x86/mlx-platform.c
11040
11041 MEMBARRIER SUPPORT
11042 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11043 M:      "Paul E. McKenney" <paulmck@kernel.org>
11044 L:      linux-kernel@vger.kernel.org
11045 S:      Supported
11046 F:      arch/powerpc/include/asm/membarrier.h
11047 F:      include/uapi/linux/membarrier.h
11048 F:      kernel/sched/membarrier.c
11049
11050 MEMBLOCK
11051 M:      Mike Rapoport <rppt@linux.ibm.com>
11052 L:      linux-mm@kvack.org
11053 S:      Maintained
11054 F:      Documentation/core-api/boot-time-mm.rst
11055 F:      include/linux/memblock.h
11056 F:      mm/memblock.c
11057
11058 MEMORY MANAGEMENT
11059 M:      Andrew Morton <akpm@linux-foundation.org>
11060 L:      linux-mm@kvack.org
11061 S:      Maintained
11062 W:      http://www.linux-mm.org
11063 T:      quilt https://ozlabs.org/~akpm/mmotm/
11064 T:      quilt https://ozlabs.org/~akpm/mmots/
11065 T:      git git://github.com/hnaz/linux-mm.git
11066 F:      include/linux/gfp.h
11067 F:      include/linux/memory_hotplug.h
11068 F:      include/linux/mm.h
11069 F:      include/linux/mmzone.h
11070 F:      include/linux/vmalloc.h
11071 F:      mm/
11072
11073 MEMORY TECHNOLOGY DEVICES (MTD)
11074 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11075 M:      Richard Weinberger <richard@nod.at>
11076 M:      Vignesh Raghavendra <vigneshr@ti.com>
11077 L:      linux-mtd@lists.infradead.org
11078 S:      Maintained
11079 W:      http://www.linux-mtd.infradead.org/
11080 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11081 C:      irc://irc.oftc.net/mtd
11082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11084 F:      Documentation/devicetree/bindings/mtd/
11085 F:      drivers/mtd/
11086 F:      include/linux/mtd/
11087 F:      include/uapi/mtd/
11088
11089 MEN A21 WATCHDOG DRIVER
11090 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11091 L:      linux-watchdog@vger.kernel.org
11092 S:      Maintained
11093 F:      drivers/watchdog/mena21_wdt.c
11094
11095 MEN CHAMELEON BUS (mcb)
11096 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11097 S:      Maintained
11098 F:      Documentation/driver-api/men-chameleon-bus.rst
11099 F:      drivers/mcb/
11100 F:      include/linux/mcb.h
11101
11102 MEN F21BMC (Board Management Controller)
11103 M:      Andreas Werner <andreas.werner@men.de>
11104 S:      Supported
11105 F:      Documentation/hwmon/menf21bmc.rst
11106 F:      drivers/hwmon/menf21bmc_hwmon.c
11107 F:      drivers/leds/leds-menf21bmc.c
11108 F:      drivers/mfd/menf21bmc.c
11109 F:      drivers/watchdog/menf21bmc_wdt.c
11110
11111 MEN Z069 WATCHDOG DRIVER
11112 M:      Johannes Thumshirn <jth@kernel.org>
11113 L:      linux-watchdog@vger.kernel.org
11114 S:      Maintained
11115 F:      drivers/watchdog/menz69_wdt.c
11116
11117 MESON AO CEC DRIVER FOR AMLOGIC SOCS
11118 M:      Neil Armstrong <narmstrong@baylibre.com>
11119 L:      linux-media@vger.kernel.org
11120 L:      linux-amlogic@lists.infradead.org
11121 S:      Supported
11122 W:      http://linux-meson.com/
11123 T:      git git://linuxtv.org/media_tree.git
11124 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
11125 F:      drivers/media/platform/meson/ao-cec-g12a.c
11126 F:      drivers/media/platform/meson/ao-cec.c
11127
11128 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
11129 M:      Liang Yang <liang.yang@amlogic.com>
11130 L:      linux-mtd@lists.infradead.org
11131 S:      Maintained
11132 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
11133 F:      drivers/mtd/nand/raw/meson_*
11134
11135 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
11136 M:      Maxime Jourdan <mjourdan@baylibre.com>
11137 M:      Neil Armstrong <narmstrong@baylibre.com>
11138 L:      linux-media@vger.kernel.org
11139 L:      linux-amlogic@lists.infradead.org
11140 S:      Supported
11141 T:      git git://linuxtv.org/media_tree.git
11142 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
11143 F:      drivers/staging/media/meson/vdec/
11144
11145 METHODE UDPU SUPPORT
11146 M:      Vladimir Vid <vladimir.vid@sartura.hr>
11147 S:      Maintained
11148 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11149
11150 MHI BUS
11151 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11152 M:      Hemant Kumar <hemantk@codeaurora.org>
11153 L:      linux-arm-msm@vger.kernel.org
11154 S:      Maintained
11155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11156 F:      Documentation/mhi/
11157 F:      drivers/bus/mhi/
11158 F:      include/linux/mhi.h
11159
11160 MICROBLAZE ARCHITECTURE
11161 M:      Michal Simek <monstr@monstr.eu>
11162 S:      Supported
11163 W:      http://www.monstr.eu/fdt/
11164 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11165 F:      arch/microblaze/
11166
11167 MICROCHIP AT91 SERIAL DRIVER
11168 M:      Richard Genoud <richard.genoud@gmail.com>
11169 S:      Maintained
11170 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11171 F:      drivers/tty/serial/atmel_serial.c
11172 F:      drivers/tty/serial/atmel_serial.h
11173
11174 MICROCHIP AT91 USART MFD DRIVER
11175 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11176 L:      linux-kernel@vger.kernel.org
11177 S:      Supported
11178 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11179 F:      drivers/mfd/at91-usart.c
11180 F:      include/dt-bindings/mfd/at91-usart.h
11181
11182 MICROCHIP AT91 USART SPI DRIVER
11183 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11184 L:      linux-spi@vger.kernel.org
11185 S:      Supported
11186 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11187 F:      drivers/spi/spi-at91-usart.c
11188
11189 MICROCHIP AUDIO ASOC DRIVERS
11190 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11191 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11192 S:      Supported
11193 F:      sound/soc/atmel
11194
11195 MICROCHIP DMA DRIVER
11196 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11197 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11198 L:      dmaengine@vger.kernel.org
11199 S:      Supported
11200 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11201 F:      drivers/dma/at_hdmac.c
11202 F:      drivers/dma/at_hdmac_regs.h
11203 F:      include/dt-bindings/dma/at91.h
11204 F:      include/linux/platform_data/dma-atmel.h
11205
11206 MICROCHIP ECC DRIVER
11207 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11208 L:      linux-crypto@vger.kernel.org
11209 S:      Maintained
11210 F:      drivers/crypto/atmel-ecc.*
11211
11212 MICROCHIP I2C DRIVER
11213 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11214 L:      linux-i2c@vger.kernel.org
11215 S:      Supported
11216 F:      drivers/i2c/busses/i2c-at91-*.c
11217 F:      drivers/i2c/busses/i2c-at91.h
11218
11219 MICROCHIP ISC DRIVER
11220 M:      Eugen Hristev <eugen.hristev@microchip.com>
11221 L:      linux-media@vger.kernel.org
11222 S:      Supported
11223 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11224 F:      drivers/media/platform/atmel/atmel-isc-base.c
11225 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11226 F:      drivers/media/platform/atmel/atmel-isc.h
11227 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11228 F:      include/linux/atmel-isc-media.h
11229
11230 MICROCHIP ISI DRIVER
11231 M:      Eugen Hristev <eugen.hristev@microchip.com>
11232 L:      linux-media@vger.kernel.org
11233 S:      Supported
11234 F:      drivers/media/platform/atmel/atmel-isi.c
11235 F:      drivers/media/platform/atmel/atmel-isi.h
11236
11237 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11238 M:      Woojung Huh <woojung.huh@microchip.com>
11239 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11240 L:      netdev@vger.kernel.org
11241 S:      Maintained
11242 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
11243 F:      drivers/net/dsa/microchip/*
11244 F:      include/linux/platform_data/microchip-ksz.h
11245 F:      net/dsa/tag_ksz.c
11246
11247 MICROCHIP LAN743X ETHERNET DRIVER
11248 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
11249 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11250 L:      netdev@vger.kernel.org
11251 S:      Maintained
11252 F:      drivers/net/ethernet/microchip/lan743x_*
11253
11254 MICROCHIP LCDFB DRIVER
11255 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11256 L:      linux-fbdev@vger.kernel.org
11257 S:      Maintained
11258 F:      drivers/video/fbdev/atmel_lcdfb.c
11259 F:      include/video/atmel_lcdc.h
11260
11261 MICROCHIP MCP16502 PMIC DRIVER
11262 M:      Andrei Stefanescu <andrei.stefanescu@microchip.com>
11263 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11264 S:      Maintained
11265 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11266 F:      drivers/regulator/mcp16502.c
11267
11268 MICROCHIP MCP3911 ADC DRIVER
11269 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11270 M:      Kent Gustavsson <kent@minoris.se>
11271 L:      linux-iio@vger.kernel.org
11272 S:      Supported
11273 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11274 F:      drivers/iio/adc/mcp3911.c
11275
11276 MICROCHIP MMC/SD/SDIO MCI DRIVER
11277 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11278 S:      Maintained
11279 F:      drivers/mmc/host/atmel-mci.c
11280
11281 MICROCHIP NAND DRIVER
11282 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11283 L:      linux-mtd@lists.infradead.org
11284 S:      Supported
11285 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11286 F:      drivers/mtd/nand/raw/atmel/*
11287
11288 MICROCHIP PWM DRIVER
11289 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11290 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11291 L:      linux-pwm@vger.kernel.org
11292 S:      Supported
11293 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11294 F:      drivers/pwm/pwm-atmel.c
11295
11296 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11297 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11298 M:      Eugen Hristev <eugen.hristev@microchip.com>
11299 L:      linux-iio@vger.kernel.org
11300 S:      Supported
11301 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11302 F:      drivers/iio/adc/at91-sama5d2_adc.c
11303 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11304
11305 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11306 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11307 S:      Supported
11308 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11309
11310 MICROCHIP SPI DRIVER
11311 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11312 S:      Supported
11313 F:      drivers/spi/spi-atmel.*
11314
11315 MICROCHIP SSC DRIVER
11316 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11317 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11318 S:      Supported
11319 F:      drivers/misc/atmel-ssc.c
11320 F:      include/linux/atmel-ssc.h
11321
11322 MICROCHIP USB251XB DRIVER
11323 M:      Richard Leitner <richard.leitner@skidata.com>
11324 L:      linux-usb@vger.kernel.org
11325 S:      Maintained
11326 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
11327 F:      drivers/usb/misc/usb251xb.c
11328
11329 MICROCHIP USBA UDC DRIVER
11330 M:      Cristian Birsan <cristian.birsan@microchip.com>
11331 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11332 S:      Supported
11333 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
11334
11335 MICROCHIP XDMA DRIVER
11336 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11337 L:      linux-arm-kernel@lists.infradead.org
11338 L:      dmaengine@vger.kernel.org
11339 S:      Supported
11340 F:      drivers/dma/at_xdmac.c
11341
11342 MICROSEMI ETHERNET SWITCH DRIVER
11343 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
11344 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11345 L:      netdev@vger.kernel.org
11346 S:      Supported
11347 F:      drivers/net/ethernet/mscc/
11348 F:      include/soc/mscc/ocelot*
11349
11350 MICROSEMI MIPS SOCS
11351 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
11352 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11353 L:      linux-mips@vger.kernel.org
11354 S:      Supported
11355 F:      Documentation/devicetree/bindings/mips/mscc.txt
11356 F:      arch/mips/boot/dts/mscc/
11357 F:      arch/mips/configs/generic/board-ocelot.config
11358 F:      arch/mips/generic/board-ocelot.c
11359
11360 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11361 M:      Don Brace <don.brace@microsemi.com>
11362 L:      esc.storagedev@microsemi.com
11363 L:      linux-scsi@vger.kernel.org
11364 S:      Supported
11365 F:      Documentation/scsi/smartpqi.rst
11366 F:      drivers/scsi/smartpqi/Kconfig
11367 F:      drivers/scsi/smartpqi/Makefile
11368 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
11369 F:      include/linux/cciss*.h
11370 F:      include/uapi/linux/cciss*.h
11371
11372 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11373 M:      Chen Yu <yu.c.chen@intel.com>
11374 L:      platform-driver-x86@vger.kernel.org
11375 S:      Supported
11376 F:      drivers/platform/x86/surfacepro3_button.c
11377
11378 MICROTEK X6 SCANNER
11379 M:      Oliver Neukum <oliver@neukum.org>
11380 S:      Maintained
11381 F:      drivers/usb/image/microtek.*
11382
11383 MIPS
11384 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11385 L:      linux-mips@vger.kernel.org
11386 S:      Maintained
11387 W:      http://www.linux-mips.org/
11388 Q:      https://patchwork.kernel.org/project/linux-mips/list/
11389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11390 F:      Documentation/devicetree/bindings/mips/
11391 F:      Documentation/mips/
11392 F:      arch/mips/
11393 F:      drivers/platform/mips/
11394
11395 MIPS BOSTON DEVELOPMENT BOARD
11396 M:      Paul Burton <paulburton@kernel.org>
11397 L:      linux-mips@vger.kernel.org
11398 S:      Maintained
11399 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11400 F:      arch/mips/boot/dts/img/boston.dts
11401 F:      arch/mips/configs/generic/board-boston.config
11402 F:      drivers/clk/imgtec/clk-boston.c
11403 F:      include/dt-bindings/clock/boston-clock.h
11404
11405 MIPS GENERIC PLATFORM
11406 M:      Paul Burton <paulburton@kernel.org>
11407 L:      linux-mips@vger.kernel.org
11408 S:      Supported
11409 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
11410 F:      arch/mips/generic/
11411 F:      arch/mips/tools/generic-board-config.sh
11412
11413 MIPS RINT INSTRUCTION EMULATION
11414 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
11415 L:      linux-mips@vger.kernel.org
11416 S:      Supported
11417 F:      arch/mips/math-emu/dp_rint.c
11418 F:      arch/mips/math-emu/sp_rint.c
11419
11420 MIPS/LOONGSON1 ARCHITECTURE
11421 M:      Keguang Zhang <keguang.zhang@gmail.com>
11422 L:      linux-mips@vger.kernel.org
11423 S:      Maintained
11424 F:      arch/mips/include/asm/mach-loongson32/
11425 F:      arch/mips/loongson32/
11426 F:      drivers/*/*/*loongson1*
11427 F:      drivers/*/*loongson1*
11428
11429 MIPS/LOONGSON2EF ARCHITECTURE
11430 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11431 L:      linux-mips@vger.kernel.org
11432 S:      Maintained
11433 F:      arch/mips/include/asm/mach-loongson2ef/
11434 F:      arch/mips/loongson2ef/
11435 F:      drivers/*/*/*loongson2*
11436 F:      drivers/*/*loongson2*
11437
11438 MIPS/LOONGSON64 ARCHITECTURE
11439 M:      Huacai Chen <chenhc@lemote.com>
11440 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11441 L:      linux-mips@vger.kernel.org
11442 S:      Maintained
11443 F:      arch/mips/include/asm/mach-loongson64/
11444 F:      arch/mips/loongson64/
11445 F:      drivers/*/*/*loongson3*
11446 F:      drivers/*/*loongson3*
11447 F:      drivers/irqchip/irq-loongson*
11448 F:      drivers/platform/mips/cpu_hwmon.c
11449
11450 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11451 M:      Hans Verkuil <hverkuil@xs4all.nl>
11452 L:      linux-media@vger.kernel.org
11453 S:      Odd Fixes
11454 W:      https://linuxtv.org
11455 T:      git git://linuxtv.org/media_tree.git
11456 F:      drivers/media/radio/radio-miropcm20*
11457
11458 MMP SUPPORT
11459 R:      Lubomir Rintel <lkundrak@v3.sk>
11460 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11461 S:      Odd Fixes
11462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11463 F:      arch/arm/boot/dts/mmp*
11464 F:      arch/arm/mach-mmp/
11465 F:      linux/soc/mmp/
11466
11467 MMP USB PHY DRIVERS
11468 R:      Lubomir Rintel <lkundrak@v3.sk>
11469 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11470 S:      Maintained
11471 F:      drivers/phy/marvell/phy-mmp3-usb.c
11472 F:      drivers/phy/marvell/phy-pxa-usb.c
11473
11474 MMU GATHER AND TLB INVALIDATION
11475 M:      Will Deacon <will@kernel.org>
11476 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
11477 M:      Andrew Morton <akpm@linux-foundation.org>
11478 M:      Nick Piggin <npiggin@gmail.com>
11479 M:      Peter Zijlstra <peterz@infradead.org>
11480 L:      linux-arch@vger.kernel.org
11481 L:      linux-mm@kvack.org
11482 S:      Maintained
11483 F:      arch/*/include/asm/tlb.h
11484 F:      include/asm-generic/tlb.h
11485 F:      mm/mmu_gather.c
11486
11487 MN88472 MEDIA DRIVER
11488 M:      Antti Palosaari <crope@iki.fi>
11489 L:      linux-media@vger.kernel.org
11490 S:      Maintained
11491 W:      https://linuxtv.org
11492 W:      http://palosaari.fi/linux/
11493 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11494 F:      drivers/media/dvb-frontends/mn88472*
11495
11496 MN88473 MEDIA DRIVER
11497 M:      Antti Palosaari <crope@iki.fi>
11498 L:      linux-media@vger.kernel.org
11499 S:      Maintained
11500 W:      https://linuxtv.org
11501 W:      http://palosaari.fi/linux/
11502 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11503 F:      drivers/media/dvb-frontends/mn88473*
11504
11505 MODULE SUPPORT
11506 M:      Jessica Yu <jeyu@kernel.org>
11507 S:      Maintained
11508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11509 F:      include/linux/module.h
11510 F:      kernel/module.c
11511
11512 MONOLITHIC POWER SYSTEM PMIC DRIVER
11513 M:      Saravanan Sekar <sravanhome@gmail.com>
11514 S:      Maintained
11515 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
11516 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11517 F:      drivers/iio/adc/mp2629_adc.c
11518 F:      drivers/mfd/mp2629.c
11519 F:      drivers/power/supply/mp2629_charger.c
11520 F:      drivers/regulator/mp5416.c
11521 F:      drivers/regulator/mpq7920.c
11522 F:      drivers/regulator/mpq7920.h
11523 F:      include/linux/mfd/mp2629.h
11524
11525 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11526 S:      Orphan
11527 W:      http://popies.net/meye/
11528 F:      Documentation/userspace-api/media/drivers/meye*
11529 F:      drivers/media/pci/meye/
11530 F:      include/uapi/linux/meye.h
11531
11532 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11533 M:      Jiri Slaby <jirislaby@gmail.com>
11534 S:      Maintained
11535 F:      Documentation/driver-api/serial/moxa-smartio.rst
11536 F:      drivers/tty/mxser.*
11537
11538 MR800 AVERMEDIA USB FM RADIO DRIVER
11539 M:      Alexey Klimov <klimov.linux@gmail.com>
11540 L:      linux-media@vger.kernel.org
11541 S:      Maintained
11542 T:      git git://linuxtv.org/media_tree.git
11543 F:      drivers/media/radio/radio-mr800.c
11544
11545 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11546 M:      Alan Ott <alan@signal11.us>
11547 L:      linux-wpan@vger.kernel.org
11548 S:      Maintained
11549 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11550 F:      drivers/net/ieee802154/mrf24j40.c
11551
11552 MSI LAPTOP SUPPORT
11553 M:      "Lee, Chun-Yi" <jlee@suse.com>
11554 L:      platform-driver-x86@vger.kernel.org
11555 S:      Maintained
11556 F:      drivers/platform/x86/msi-laptop.c
11557
11558 MSI WMI SUPPORT
11559 L:      platform-driver-x86@vger.kernel.org
11560 S:      Orphan
11561 F:      drivers/platform/x86/msi-wmi.c
11562
11563 MSI001 MEDIA DRIVER
11564 M:      Antti Palosaari <crope@iki.fi>
11565 L:      linux-media@vger.kernel.org
11566 S:      Maintained
11567 W:      https://linuxtv.org
11568 W:      http://palosaari.fi/linux/
11569 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11570 T:      git git://linuxtv.org/anttip/media_tree.git
11571 F:      drivers/media/tuners/msi001*
11572
11573 MSI2500 MEDIA DRIVER
11574 M:      Antti Palosaari <crope@iki.fi>
11575 L:      linux-media@vger.kernel.org
11576 S:      Maintained
11577 W:      https://linuxtv.org
11578 W:      http://palosaari.fi/linux/
11579 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11580 T:      git git://linuxtv.org/anttip/media_tree.git
11581 F:      drivers/media/usb/msi2500/
11582
11583 MSYSTEMS DISKONCHIP G3 MTD DRIVER
11584 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11585 L:      linux-mtd@lists.infradead.org
11586 S:      Maintained
11587 F:      drivers/mtd/devices/docg3*
11588
11589 MT9M032 APTINA SENSOR DRIVER
11590 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11591 L:      linux-media@vger.kernel.org
11592 S:      Maintained
11593 T:      git git://linuxtv.org/media_tree.git
11594 F:      drivers/media/i2c/mt9m032.c
11595 F:      include/media/i2c/mt9m032.h
11596
11597 MT9P031 APTINA CAMERA SENSOR
11598 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11599 L:      linux-media@vger.kernel.org
11600 S:      Maintained
11601 T:      git git://linuxtv.org/media_tree.git
11602 F:      drivers/media/i2c/mt9p031.c
11603 F:      include/media/i2c/mt9p031.h
11604
11605 MT9T001 APTINA CAMERA SENSOR
11606 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11607 L:      linux-media@vger.kernel.org
11608 S:      Maintained
11609 T:      git git://linuxtv.org/media_tree.git
11610 F:      drivers/media/i2c/mt9t001.c
11611 F:      include/media/i2c/mt9t001.h
11612
11613 MT9T112 APTINA CAMERA SENSOR
11614 M:      Jacopo Mondi <jacopo@jmondi.org>
11615 L:      linux-media@vger.kernel.org
11616 S:      Odd Fixes
11617 T:      git git://linuxtv.org/media_tree.git
11618 F:      drivers/media/i2c/mt9t112.c
11619 F:      include/media/i2c/mt9t112.h
11620
11621 MT9V032 APTINA CAMERA SENSOR
11622 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11623 L:      linux-media@vger.kernel.org
11624 S:      Maintained
11625 T:      git git://linuxtv.org/media_tree.git
11626 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11627 F:      drivers/media/i2c/mt9v032.c
11628 F:      include/media/i2c/mt9v032.h
11629
11630 MT9V111 APTINA CAMERA SENSOR
11631 M:      Jacopo Mondi <jacopo@jmondi.org>
11632 L:      linux-media@vger.kernel.org
11633 S:      Maintained
11634 T:      git git://linuxtv.org/media_tree.git
11635 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
11636 F:      drivers/media/i2c/mt9v111.c
11637
11638 MULTIFUNCTION DEVICES (MFD)
11639 M:      Lee Jones <lee.jones@linaro.org>
11640 S:      Supported
11641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11642 F:      Documentation/devicetree/bindings/mfd/
11643 F:      drivers/mfd/
11644 F:      include/dt-bindings/mfd/
11645 F:      include/linux/mfd/
11646
11647 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11648 S:      Orphan
11649 F:      drivers/mmc/host/mmc_spi.c
11650 F:      include/linux/spi/mmc_spi.h
11651
11652 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11653 M:      Ulf Hansson <ulf.hansson@linaro.org>
11654 L:      linux-mmc@vger.kernel.org
11655 S:      Maintained
11656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11657 F:      Documentation/devicetree/bindings/mmc/
11658 F:      drivers/mmc/
11659 F:      include/linux/mmc/
11660 F:      include/uapi/linux/mmc/
11661
11662 MULTIPLEXER SUBSYSTEM
11663 M:      Peter Rosin <peda@axentia.se>
11664 S:      Maintained
11665 F:      Documentation/ABI/testing/sysfs-class-mux*
11666 F:      Documentation/devicetree/bindings/mux/
11667 F:      drivers/mux/
11668 F:      include/dt-bindings/mux/
11669 F:      include/linux/mux/
11670
11671 MULTITECH MULTIPORT CARD (ISICOM)
11672 S:      Orphan
11673 F:      drivers/tty/isicom.c
11674 F:      include/linux/isicom.h
11675
11676 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
11677 M:      Bin Liu <b-liu@ti.com>
11678 L:      linux-usb@vger.kernel.org
11679 S:      Maintained
11680 F:      drivers/usb/musb/
11681
11682 MXL301RF MEDIA DRIVER
11683 M:      Akihiro Tsukada <tskd08@gmail.com>
11684 L:      linux-media@vger.kernel.org
11685 S:      Odd Fixes
11686 F:      drivers/media/tuners/mxl301rf*
11687
11688 MXL5007T MEDIA DRIVER
11689 M:      Michael Krufky <mkrufky@linuxtv.org>
11690 L:      linux-media@vger.kernel.org
11691 S:      Maintained
11692 W:      https://linuxtv.org
11693 W:      http://github.com/mkrufky
11694 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11695 T:      git git://linuxtv.org/mkrufky/tuners.git
11696 F:      drivers/media/tuners/mxl5007t.*
11697
11698 MXSFB DRM DRIVER
11699 M:      Marek Vasut <marex@denx.de>
11700 M:      Stefan Agner <stefan@agner.ch>
11701 L:      dri-devel@lists.freedesktop.org
11702 S:      Supported
11703 T:      git git://anongit.freedesktop.org/drm/drm-misc
11704 F:      Documentation/devicetree/bindings/display/mxsfb.txt
11705 F:      drivers/gpu/drm/mxsfb/
11706
11707 MYLEX DAC960 PCI RAID Controller
11708 M:      Hannes Reinecke <hare@kernel.org>
11709 L:      linux-scsi@vger.kernel.org
11710 S:      Supported
11711 F:      drivers/scsi/myrb.*
11712 F:      drivers/scsi/myrs.*
11713
11714 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
11715 M:      Chris Lee <christopher.lee@cspi.com>
11716 L:      netdev@vger.kernel.org
11717 S:      Supported
11718 W:      https://www.cspi.com/ethernet-products/support/downloads/
11719 F:      drivers/net/ethernet/myricom/myri10ge/
11720
11721 NAND FLASH SUBSYSTEM
11722 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11723 R:      Richard Weinberger <richard@nod.at>
11724 L:      linux-mtd@lists.infradead.org
11725 S:      Maintained
11726 W:      http://www.linux-mtd.infradead.org/
11727 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11728 C:      irc://irc.oftc.net/mtd
11729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
11730 F:      drivers/mtd/nand/
11731 F:      include/linux/mtd/*nand*.h
11732
11733 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
11734 M:      Daniel Mack <zonque@gmail.com>
11735 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11736 S:      Maintained
11737 W:      http://www.native-instruments.com
11738 F:      sound/usb/caiaq/
11739
11740 NATSEMI ETHERNET DRIVER (DP8381x)
11741 S:      Orphan
11742 F:      drivers/net/ethernet/natsemi/natsemi.c
11743
11744 NCR 5380 SCSI DRIVERS
11745 M:      Finn Thain <fthain@telegraphics.com.au>
11746 M:      Michael Schmitz <schmitzmic@gmail.com>
11747 L:      linux-scsi@vger.kernel.org
11748 S:      Maintained
11749 F:      Documentation/scsi/g_NCR5380.rst
11750 F:      drivers/scsi/NCR5380.*
11751 F:      drivers/scsi/arm/cumana_1.c
11752 F:      drivers/scsi/arm/oak.c
11753 F:      drivers/scsi/atari_scsi.*
11754 F:      drivers/scsi/dmx3191d.c
11755 F:      drivers/scsi/g_NCR5380.*
11756 F:      drivers/scsi/mac_scsi.*
11757 F:      drivers/scsi/sun3_scsi.*
11758 F:      drivers/scsi/sun3_scsi_vme.c
11759
11760 NCSI LIBRARY
11761 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
11762 S:      Maintained
11763 F:      net/ncsi/
11764
11765 NCT6775 HARDWARE MONITOR DRIVER
11766 M:      Guenter Roeck <linux@roeck-us.net>
11767 L:      linux-hwmon@vger.kernel.org
11768 S:      Maintained
11769 F:      Documentation/hwmon/nct6775.rst
11770 F:      drivers/hwmon/nct6775.c
11771
11772 NETDEVSIM
11773 M:      Jakub Kicinski <kuba@kernel.org>
11774 S:      Maintained
11775 F:      drivers/net/netdevsim/*
11776
11777 NETEM NETWORK EMULATOR
11778 M:      Stephen Hemminger <stephen@networkplumber.org>
11779 L:      netdev@vger.kernel.org
11780 S:      Maintained
11781 F:      net/sched/sch_netem.c
11782
11783 NETERION 10GbE DRIVERS (s2io/vxge)
11784 M:      Jon Mason <jdmason@kudzu.us>
11785 L:      netdev@vger.kernel.org
11786 S:      Supported
11787 F:      Documentation/networking/device_drivers/neterion/s2io.rst
11788 F:      Documentation/networking/device_drivers/neterion/vxge.rst
11789 F:      drivers/net/ethernet/neterion/
11790
11791 NETFILTER
11792 M:      Pablo Neira Ayuso <pablo@netfilter.org>
11793 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
11794 M:      Florian Westphal <fw@strlen.de>
11795 L:      netfilter-devel@vger.kernel.org
11796 L:      coreteam@netfilter.org
11797 S:      Maintained
11798 W:      http://www.netfilter.org/
11799 W:      http://www.iptables.org/
11800 W:      http://www.nftables.org/
11801 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
11802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
11803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
11804 F:      include/linux/netfilter*
11805 F:      include/linux/netfilter/
11806 F:      include/net/netfilter/
11807 F:      include/uapi/linux/netfilter*
11808 F:      include/uapi/linux/netfilter/
11809 F:      net/*/netfilter.c
11810 F:      net/*/netfilter/
11811 F:      net/bridge/br_netfilter*.c
11812 F:      net/netfilter/
11813
11814 NETROM NETWORK LAYER
11815 M:      Ralf Baechle <ralf@linux-mips.org>
11816 L:      linux-hams@vger.kernel.org
11817 S:      Maintained
11818 W:      http://www.linux-ax25.org/
11819 F:      include/net/netrom.h
11820 F:      include/uapi/linux/netrom.h
11821 F:      net/netrom/
11822
11823 NETRONOME ETHERNET DRIVERS
11824 M:      Jakub Kicinski <kuba@kernel.org>
11825 L:      oss-drivers@netronome.com
11826 S:      Maintained
11827 F:      drivers/net/ethernet/netronome/
11828
11829 NETWORK BLOCK DEVICE (NBD)
11830 M:      Josef Bacik <josef@toxicpanda.com>
11831 L:      linux-block@vger.kernel.org
11832 L:      nbd@other.debian.org
11833 S:      Maintained
11834 F:      Documentation/admin-guide/blockdev/nbd.rst
11835 F:      drivers/block/nbd.c
11836 F:      include/trace/events/nbd.h
11837 F:      include/uapi/linux/nbd.h
11838
11839 NETWORK DROP MONITOR
11840 M:      Neil Horman <nhorman@tuxdriver.com>
11841 L:      netdev@vger.kernel.org
11842 S:      Maintained
11843 W:      https://fedorahosted.org/dropwatch/
11844 F:      include/net/drop_monitor.h
11845 F:      include/uapi/linux/net_dropmon.h
11846 F:      net/core/drop_monitor.c
11847
11848 NETWORKING DRIVERS
11849 M:      "David S. Miller" <davem@davemloft.net>
11850 M:      Jakub Kicinski <kuba@kernel.org>
11851 L:      netdev@vger.kernel.org
11852 S:      Maintained
11853 W:      http://www.linuxfoundation.org/en/Net
11854 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11857 F:      Documentation/devicetree/bindings/net/
11858 F:      drivers/net/
11859 F:      include/linux/etherdevice.h
11860 F:      include/linux/fcdevice.h
11861 F:      include/linux/fddidevice.h
11862 F:      include/linux/hippidevice.h
11863 F:      include/linux/if_*
11864 F:      include/linux/inetdevice.h
11865 F:      include/linux/netdevice.h
11866 F:      include/uapi/linux/if_*
11867 F:      include/uapi/linux/netdevice.h
11868
11869 NETWORKING DRIVERS (WIRELESS)
11870 M:      Kalle Valo <kvalo@codeaurora.org>
11871 L:      linux-wireless@vger.kernel.org
11872 S:      Maintained
11873 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
11875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
11876 F:      Documentation/devicetree/bindings/net/wireless/
11877 F:      drivers/net/wireless/
11878
11879 NETWORKING [DSA]
11880 M:      Andrew Lunn <andrew@lunn.ch>
11881 M:      Vivien Didelot <vivien.didelot@gmail.com>
11882 M:      Florian Fainelli <f.fainelli@gmail.com>
11883 S:      Maintained
11884 F:      Documentation/devicetree/bindings/net/dsa/
11885 F:      drivers/net/dsa/
11886 F:      include/linux/dsa/
11887 F:      include/linux/platform_data/dsa.h
11888 F:      include/net/dsa.h
11889 F:      net/dsa/
11890
11891 NETWORKING [GENERAL]
11892 M:      "David S. Miller" <davem@davemloft.net>
11893 M:      Jakub Kicinski <kuba@kernel.org>
11894 L:      netdev@vger.kernel.org
11895 S:      Maintained
11896 W:      http://www.linuxfoundation.org/en/Net
11897 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11898 B:      mailto:netdev@vger.kernel.org
11899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11901 F:      Documentation/networking/
11902 F:      include/linux/in.h
11903 F:      include/linux/net.h
11904 F:      include/linux/netdevice.h
11905 F:      include/net/
11906 F:      include/uapi/linux/in.h
11907 F:      include/uapi/linux/net.h
11908 F:      include/uapi/linux/net_namespace.h
11909 F:      include/uapi/linux/netdevice.h
11910 F:      lib/net_utils.c
11911 F:      lib/random32.c
11912 F:      net/
11913 F:      tools/testing/selftests/net/
11914
11915 NETWORKING [IPSEC]
11916 M:      Steffen Klassert <steffen.klassert@secunet.com>
11917 M:      Herbert Xu <herbert@gondor.apana.org.au>
11918 M:      "David S. Miller" <davem@davemloft.net>
11919 L:      netdev@vger.kernel.org
11920 S:      Maintained
11921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
11922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
11923 F:      include/net/xfrm.h
11924 F:      include/uapi/linux/xfrm.h
11925 F:      net/ipv4/ah4.c
11926 F:      net/ipv4/esp4*
11927 F:      net/ipv4/ip_vti.c
11928 F:      net/ipv4/ipcomp.c
11929 F:      net/ipv4/xfrm*
11930 F:      net/ipv6/ah6.c
11931 F:      net/ipv6/esp6*
11932 F:      net/ipv6/ip6_vti.c
11933 F:      net/ipv6/ipcomp6.c
11934 F:      net/ipv6/xfrm*
11935 F:      net/key/
11936 F:      net/xfrm/
11937
11938 NETWORKING [IPv4/IPv6]
11939 M:      "David S. Miller" <davem@davemloft.net>
11940 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
11941 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
11942 L:      netdev@vger.kernel.org
11943 S:      Maintained
11944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11945 F:      arch/x86/net/*
11946 F:      include/net/ip*
11947 F:      net/ipv4/
11948 F:      net/ipv6/
11949
11950 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
11951 M:      Paul Moore <paul@paul-moore.com>
11952 L:      netdev@vger.kernel.org
11953 L:      linux-security-module@vger.kernel.org
11954 S:      Maintained
11955 W:      https://github.com/netlabel
11956 F:      Documentation/netlabel/
11957 F:      include/net/calipso.h
11958 F:      include/net/cipso_ipv4.h
11959 F:      include/net/netlabel.h
11960 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
11961 F:      include/uapi/linux/netfilter/xt_SECMARK.h
11962 F:      net/ipv4/cipso_ipv4.c
11963 F:      net/ipv6/calipso.c
11964 F:      net/netfilter/xt_CONNSECMARK.c
11965 F:      net/netfilter/xt_SECMARK.c
11966 F:      net/netlabel/
11967
11968 NETWORKING [MPTCP]
11969 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
11970 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
11971 L:      netdev@vger.kernel.org
11972 L:      mptcp@lists.01.org
11973 S:      Maintained
11974 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
11975 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
11976 F:      include/net/mptcp.h
11977 F:      include/uapi/linux/mptcp.h
11978 F:      net/mptcp/
11979 F:      tools/testing/selftests/net/mptcp/
11980
11981 NETWORKING [TCP]
11982 M:      Eric Dumazet <edumazet@google.com>
11983 L:      netdev@vger.kernel.org
11984 S:      Maintained
11985 F:      include/linux/tcp.h
11986 F:      include/net/tcp.h
11987 F:      include/trace/events/tcp.h
11988 F:      include/uapi/linux/tcp.h
11989 F:      net/ipv4/syncookies.c
11990 F:      net/ipv4/tcp*.c
11991 F:      net/ipv6/syncookies.c
11992 F:      net/ipv6/tcp*.c
11993
11994 NETWORKING [TLS]
11995 M:      Boris Pismenny <borisp@mellanox.com>
11996 M:      Aviad Yehezkel <aviadye@mellanox.com>
11997 M:      John Fastabend <john.fastabend@gmail.com>
11998 M:      Daniel Borkmann <daniel@iogearbox.net>
11999 M:      Jakub Kicinski <kuba@kernel.org>
12000 L:      netdev@vger.kernel.org
12001 S:      Maintained
12002 F:      include/net/tls.h
12003 F:      include/uapi/linux/tls.h
12004 F:      net/tls/*
12005
12006 NETWORKING [WIRELESS]
12007 L:      linux-wireless@vger.kernel.org
12008 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12009
12010 NETXEN (1/10) GbE SUPPORT
12011 M:      Manish Chopra <manishc@marvell.com>
12012 M:      Rahul Verma <rahulv@marvell.com>
12013 M:      GR-Linux-NIC-Dev@marvell.com
12014 L:      netdev@vger.kernel.org
12015 S:      Supported
12016 F:      drivers/net/ethernet/qlogic/netxen/
12017
12018 NET_FAILOVER MODULE
12019 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
12020 L:      netdev@vger.kernel.org
12021 S:      Supported
12022 F:      Documentation/networking/net_failover.rst
12023 F:      drivers/net/net_failover.c
12024 F:      include/net/net_failover.h
12025
12026 NEXTHOP
12027 M:      David Ahern <dsahern@kernel.org>
12028 L:      netdev@vger.kernel.org
12029 S:      Maintained
12030 F:      include/net/netns/nexthop.h
12031 F:      include/net/nexthop.h
12032 F:      include/uapi/linux/nexthop.h
12033 F:      net/ipv4/nexthop.c
12034
12035 NFC SUBSYSTEM
12036 L:      netdev@vger.kernel.org
12037 S:      Orphan
12038 F:      Documentation/devicetree/bindings/net/nfc/
12039 F:      drivers/nfc/
12040 F:      include/linux/platform_data/nfcmrvl.h
12041 F:      include/net/nfc/
12042 F:      include/uapi/linux/nfc.h
12043 F:      net/nfc/
12044
12045 NFS, SUNRPC, AND LOCKD CLIENTS
12046 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
12047 M:      Anna Schumaker <anna.schumaker@netapp.com>
12048 L:      linux-nfs@vger.kernel.org
12049 S:      Maintained
12050 W:      http://client.linux-nfs.org
12051 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
12052 F:      fs/lockd/
12053 F:      fs/nfs/
12054 F:      fs/nfs_common/
12055 F:      include/linux/lockd/
12056 F:      include/linux/nfs*
12057 F:      include/linux/sunrpc/
12058 F:      include/uapi/linux/nfs*
12059 F:      include/uapi/linux/sunrpc/
12060 F:      net/sunrpc/
12061
12062 NILFS2 FILESYSTEM
12063 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
12064 L:      linux-nilfs@vger.kernel.org
12065 S:      Supported
12066 W:      https://nilfs.sourceforge.io/
12067 W:      https://nilfs.osdn.jp/
12068 T:      git git://github.com/konis/nilfs2.git
12069 F:      Documentation/filesystems/nilfs2.rst
12070 F:      fs/nilfs2/
12071 F:      include/trace/events/nilfs2.h
12072 F:      include/uapi/linux/nilfs2_api.h
12073 F:      include/uapi/linux/nilfs2_ondisk.h
12074
12075 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
12076 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12077 S:      Maintained
12078 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12079 F:      Documentation/scsi/NinjaSCSI.rst
12080 F:      drivers/scsi/pcmcia/nsp_*
12081
12082 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
12083 M:      GOTO Masanori <gotom@debian.or.jp>
12084 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12085 S:      Maintained
12086 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12087 F:      Documentation/scsi/NinjaSCSI.rst
12088 F:      drivers/scsi/nsp32*
12089
12090 NIOS2 ARCHITECTURE
12091 M:      Ley Foon Tan <ley.foon.tan@intel.com>
12092 S:      Maintained
12093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
12094 F:      arch/nios2/
12095
12096 NOHZ, DYNTICKS SUPPORT
12097 M:      Frederic Weisbecker <fweisbec@gmail.com>
12098 M:      Thomas Gleixner <tglx@linutronix.de>
12099 M:      Ingo Molnar <mingo@kernel.org>
12100 L:      linux-kernel@vger.kernel.org
12101 S:      Maintained
12102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
12103 F:      include/linux/sched/nohz.h
12104 F:      include/linux/tick.h
12105 F:      kernel/time/tick*.*
12106
12107 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
12108 M:      Pavel Machek <pavel@ucw.cz>
12109 M:      Sakari Ailus <sakari.ailus@iki.fi>
12110 L:      linux-media@vger.kernel.org
12111 S:      Maintained
12112 F:      drivers/media/i2c/ad5820.c
12113 F:      drivers/media/i2c/et8ek8
12114
12115 NOKIA N900 POWER SUPPLY DRIVERS
12116 R:      Pali Rohár <pali@kernel.org>
12117 F:      drivers/power/supply/bq2415x_charger.c
12118 F:      drivers/power/supply/bq27xxx_battery.c
12119 F:      drivers/power/supply/bq27xxx_battery_i2c.c
12120 F:      drivers/power/supply/isp1704_charger.c
12121 F:      drivers/power/supply/rx51_battery.c
12122 F:      include/linux/power/bq2415x_charger.h
12123 F:      include/linux/power/bq27xxx_battery.h
12124
12125 NOLIBC HEADER FILE
12126 M:      Willy Tarreau <w@1wt.eu>
12127 S:      Maintained
12128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
12129 F:      tools/include/nolibc/
12130
12131 NSDEPS
12132 M:      Matthias Maennich <maennich@google.com>
12133 S:      Maintained
12134 F:      Documentation/core-api/symbol-namespaces.rst
12135 F:      scripts/nsdeps
12136
12137 NTB AMD DRIVER
12138 M:      Sanjay R Mehta <sanju.mehta@amd.com>
12139 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
12140 L:      linux-ntb@googlegroups.com
12141 S:      Supported
12142 F:      drivers/ntb/hw/amd/
12143
12144 NTB DRIVER CORE
12145 M:      Jon Mason <jdmason@kudzu.us>
12146 M:      Dave Jiang <dave.jiang@intel.com>
12147 M:      Allen Hubbe <allenbh@gmail.com>
12148 L:      linux-ntb@googlegroups.com
12149 S:      Supported
12150 W:      https://github.com/jonmason/ntb/wiki
12151 T:      git git://github.com/jonmason/ntb.git
12152 F:      drivers/net/ntb_netdev.c
12153 F:      drivers/ntb/
12154 F:      include/linux/ntb.h
12155 F:      include/linux/ntb_transport.h
12156 F:      tools/testing/selftests/ntb/
12157
12158 NTB IDT DRIVER
12159 M:      Serge Semin <fancer.lancer@gmail.com>
12160 L:      linux-ntb@googlegroups.com
12161 S:      Supported
12162 F:      drivers/ntb/hw/idt/
12163
12164 NTB INTEL DRIVER
12165 M:      Dave Jiang <dave.jiang@intel.com>
12166 L:      linux-ntb@googlegroups.com
12167 S:      Supported
12168 W:      https://github.com/davejiang/linux/wiki
12169 T:      git https://github.com/davejiang/linux.git
12170 F:      drivers/ntb/hw/intel/
12171
12172 NTFS FILESYSTEM
12173 M:      Anton Altaparmakov <anton@tuxera.com>
12174 L:      linux-ntfs-dev@lists.sourceforge.net
12175 S:      Supported
12176 W:      http://www.tuxera.com/
12177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12178 F:      Documentation/filesystems/ntfs.rst
12179 F:      fs/ntfs/
12180
12181 NUBUS SUBSYSTEM
12182 M:      Finn Thain <fthain@telegraphics.com.au>
12183 L:      linux-m68k@lists.linux-m68k.org
12184 S:      Maintained
12185 F:      arch/*/include/asm/nubus.h
12186 F:      drivers/nubus/
12187 F:      include/linux/nubus.h
12188 F:      include/uapi/linux/nubus.h
12189
12190 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12191 M:      Antonino Daplas <adaplas@gmail.com>
12192 L:      linux-fbdev@vger.kernel.org
12193 S:      Maintained
12194 F:      drivers/video/fbdev/nvidia/
12195 F:      drivers/video/fbdev/riva/
12196
12197 NVM EXPRESS DRIVER
12198 M:      Keith Busch <kbusch@kernel.org>
12199 M:      Jens Axboe <axboe@fb.com>
12200 M:      Christoph Hellwig <hch@lst.de>
12201 M:      Sagi Grimberg <sagi@grimberg.me>
12202 L:      linux-nvme@lists.infradead.org
12203 S:      Supported
12204 W:      http://git.infradead.org/nvme.git
12205 T:      git://git.infradead.org/nvme.git
12206 F:      drivers/nvme/host/
12207 F:      include/linux/nvme.h
12208 F:      include/uapi/linux/nvme_ioctl.h
12209
12210 NVM EXPRESS FC TRANSPORT DRIVERS
12211 M:      James Smart <james.smart@broadcom.com>
12212 L:      linux-nvme@lists.infradead.org
12213 S:      Supported
12214 F:      drivers/nvme/host/fc.c
12215 F:      drivers/nvme/target/fc.c
12216 F:      drivers/nvme/target/fcloop.c
12217 F:      include/linux/nvme-fc-driver.h
12218 F:      include/linux/nvme-fc.h
12219
12220 NVM EXPRESS TARGET DRIVER
12221 M:      Christoph Hellwig <hch@lst.de>
12222 M:      Sagi Grimberg <sagi@grimberg.me>
12223 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
12224 L:      linux-nvme@lists.infradead.org
12225 S:      Supported
12226 W:      http://git.infradead.org/nvme.git
12227 T:      git://git.infradead.org/nvme.git
12228 F:      drivers/nvme/target/
12229
12230 NVMEM FRAMEWORK
12231 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
12232 S:      Maintained
12233 F:      Documentation/ABI/stable/sysfs-bus-nvmem
12234 F:      Documentation/devicetree/bindings/nvmem/
12235 F:      drivers/nvmem/
12236 F:      include/linux/nvmem-consumer.h
12237 F:      include/linux/nvmem-provider.h
12238
12239 NXP FSPI DRIVER
12240 M:      Ashish Kumar <ashish.kumar@nxp.com>
12241 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
12242 L:      linux-spi@vger.kernel.org
12243 S:      Maintained
12244 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12245 F:      drivers/spi/spi-nxp-fspi.c
12246
12247 NXP FXAS21002C DRIVER
12248 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12249 L:      linux-iio@vger.kernel.org
12250 S:      Maintained
12251 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
12252 F:      drivers/iio/gyro/fxas21002c.h
12253 F:      drivers/iio/gyro/fxas21002c_core.c
12254 F:      drivers/iio/gyro/fxas21002c_i2c.c
12255 F:      drivers/iio/gyro/fxas21002c_spi.c
12256
12257 NXP SGTL5000 DRIVER
12258 M:      Fabio Estevam <festevam@gmail.com>
12259 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12260 S:      Maintained
12261 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
12262 F:      sound/soc/codecs/sgtl5000*
12263
12264 NXP SJA1105 ETHERNET SWITCH DRIVER
12265 M:      Vladimir Oltean <olteanv@gmail.com>
12266 L:      linux-kernel@vger.kernel.org
12267 S:      Maintained
12268 F:      drivers/net/dsa/sja1105
12269
12270 NXP TDA998X DRM DRIVER
12271 M:      Russell King <linux@armlinux.org.uk>
12272 S:      Maintained
12273 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12274 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12275 F:      drivers/gpu/drm/i2c/tda998x_drv.c
12276 F:      include/drm/i2c/tda998x.h
12277 F:      include/dt-bindings/display/tda998x.h
12278 K:      "nxp,tda998x"
12279
12280 NXP TFA9879 DRIVER
12281 M:      Peter Rosin <peda@axentia.se>
12282 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12283 S:      Maintained
12284 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
12285 F:      sound/soc/codecs/tfa9879*
12286
12287 NXP-NCI NFC DRIVER
12288 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
12289 R:      Charles Gorand <charles.gorand@effinnov.com>
12290 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12291 S:      Supported
12292 F:      drivers/nfc/nxp-nci
12293
12294 OBJAGG
12295 M:      Jiri Pirko <jiri@mellanox.com>
12296 L:      netdev@vger.kernel.org
12297 S:      Supported
12298 F:      include/linux/objagg.h
12299 F:      lib/objagg.c
12300 F:      lib/test_objagg.c
12301
12302 OBJTOOL
12303 M:      Josh Poimboeuf <jpoimboe@redhat.com>
12304 M:      Peter Zijlstra <peterz@infradead.org>
12305 S:      Supported
12306 F:      tools/objtool/
12307
12308 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12309 M:      Frederic Barrat <fbarrat@linux.ibm.com>
12310 M:      Andrew Donnellan <ajd@linux.ibm.com>
12311 L:      linuxppc-dev@lists.ozlabs.org
12312 S:      Supported
12313 F:      Documentation/userspace-api/accelerators/ocxl.rst
12314 F:      arch/powerpc/include/asm/pnv-ocxl.h
12315 F:      arch/powerpc/platforms/powernv/ocxl.c
12316 F:      drivers/misc/ocxl/
12317 F:      include/misc/ocxl*
12318 F:      include/uapi/misc/ocxl.h
12319
12320 OMAP AUDIO SUPPORT
12321 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
12322 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
12323 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12324 L:      linux-omap@vger.kernel.org
12325 S:      Maintained
12326 F:      sound/soc/ti/n810.c
12327 F:      sound/soc/ti/omap*
12328 F:      sound/soc/ti/rx51.c
12329 F:      sound/soc/ti/sdma-pcm.*
12330
12331 OMAP CLOCK FRAMEWORK SUPPORT
12332 M:      Paul Walmsley <paul@pwsan.com>
12333 L:      linux-omap@vger.kernel.org
12334 S:      Maintained
12335 F:      arch/arm/*omap*/*clock*
12336
12337 OMAP DEVICE TREE SUPPORT
12338 M:      Benoît Cousson <bcousson@baylibre.com>
12339 M:      Tony Lindgren <tony@atomide.com>
12340 L:      linux-omap@vger.kernel.org
12341 L:      devicetree@vger.kernel.org
12342 S:      Maintained
12343 F:      arch/arm/boot/dts/*am3*
12344 F:      arch/arm/boot/dts/*am4*
12345 F:      arch/arm/boot/dts/*am5*
12346 F:      arch/arm/boot/dts/*dra7*
12347 F:      arch/arm/boot/dts/*omap*
12348 F:      arch/arm/boot/dts/logicpd-som-lv*
12349 F:      arch/arm/boot/dts/logicpd-torpedo*
12350
12351 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12352 L:      linux-omap@vger.kernel.org
12353 L:      linux-fbdev@vger.kernel.org
12354 S:      Orphan
12355 F:      Documentation/arm/omap/dss.rst
12356 F:      drivers/video/fbdev/omap2/
12357
12358 OMAP FRAMEBUFFER SUPPORT
12359 L:      linux-fbdev@vger.kernel.org
12360 L:      linux-omap@vger.kernel.org
12361 S:      Orphan
12362 F:      drivers/video/fbdev/omap/
12363
12364 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12365 M:      Roger Quadros <rogerq@ti.com>
12366 M:      Tony Lindgren <tony@atomide.com>
12367 L:      linux-omap@vger.kernel.org
12368 S:      Maintained
12369 F:      arch/arm/mach-omap2/*gpmc*
12370 F:      drivers/memory/omap-gpmc.c
12371
12372 OMAP GPIO DRIVER
12373 M:      Grygorii Strashko <grygorii.strashko@ti.com>
12374 M:      Santosh Shilimkar <ssantosh@kernel.org>
12375 M:      Kevin Hilman <khilman@kernel.org>
12376 L:      linux-omap@vger.kernel.org
12377 S:      Maintained
12378 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
12379 F:      drivers/gpio/gpio-omap.c
12380
12381 OMAP HARDWARE SPINLOCK SUPPORT
12382 M:      Ohad Ben-Cohen <ohad@wizery.com>
12383 L:      linux-omap@vger.kernel.org
12384 S:      Maintained
12385 F:      drivers/hwspinlock/omap_hwspinlock.c
12386
12387 OMAP HS MMC SUPPORT
12388 L:      linux-mmc@vger.kernel.org
12389 L:      linux-omap@vger.kernel.org
12390 S:      Orphan
12391 F:      drivers/mmc/host/omap_hsmmc.c
12392
12393 OMAP HWMOD DATA
12394 M:      Paul Walmsley <paul@pwsan.com>
12395 L:      linux-omap@vger.kernel.org
12396 S:      Maintained
12397 F:      arch/arm/mach-omap2/omap_hwmod*data*
12398
12399 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12400 M:      Benoît Cousson <bcousson@baylibre.com>
12401 L:      linux-omap@vger.kernel.org
12402 S:      Maintained
12403 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12404
12405 OMAP HWMOD SUPPORT
12406 M:      Benoît Cousson <bcousson@baylibre.com>
12407 M:      Paul Walmsley <paul@pwsan.com>
12408 L:      linux-omap@vger.kernel.org
12409 S:      Maintained
12410 F:      arch/arm/mach-omap2/omap_hwmod.*
12411
12412 OMAP I2C DRIVER
12413 M:      Vignesh R <vigneshr@ti.com>
12414 L:      linux-omap@vger.kernel.org
12415 L:      linux-i2c@vger.kernel.org
12416 S:      Maintained
12417 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
12418 F:      drivers/i2c/busses/i2c-omap.c
12419
12420 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12421 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12422 L:      linux-media@vger.kernel.org
12423 S:      Maintained
12424 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
12425 F:      drivers/media/platform/omap3isp/
12426 F:      drivers/staging/media/omap4iss/
12427
12428 OMAP MMC SUPPORT
12429 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12430 L:      linux-omap@vger.kernel.org
12431 S:      Odd Fixes
12432 F:      drivers/mmc/host/omap.c
12433
12434 OMAP POWER MANAGEMENT SUPPORT
12435 M:      Kevin Hilman <khilman@kernel.org>
12436 L:      linux-omap@vger.kernel.org
12437 S:      Maintained
12438 F:      arch/arm/*omap*/*pm*
12439 F:      drivers/cpufreq/omap-cpufreq.c
12440
12441 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12442 M:      Rajendra Nayak <rnayak@codeaurora.org>
12443 M:      Paul Walmsley <paul@pwsan.com>
12444 L:      linux-omap@vger.kernel.org
12445 S:      Maintained
12446 F:      arch/arm/mach-omap2/prm*
12447
12448 OMAP RANDOM NUMBER GENERATOR SUPPORT
12449 M:      Deepak Saxena <dsaxena@plexity.net>
12450 S:      Maintained
12451 F:      drivers/char/hw_random/omap-rng.c
12452
12453 OMAP USB SUPPORT
12454 L:      linux-usb@vger.kernel.org
12455 L:      linux-omap@vger.kernel.org
12456 S:      Orphan
12457 F:      arch/arm/*omap*/usb*
12458 F:      drivers/usb/*/*omap*
12459
12460 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12461 M:      Mark Jackson <mpfj@newflow.co.uk>
12462 L:      linux-omap@vger.kernel.org
12463 S:      Maintained
12464 F:      arch/arm/boot/dts/am335x-nano.dts
12465
12466 OMAP1 SUPPORT
12467 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12468 M:      Tony Lindgren <tony@atomide.com>
12469 L:      linux-omap@vger.kernel.org
12470 S:      Maintained
12471 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12473 F:      arch/arm/configs/omap1_defconfig
12474 F:      arch/arm/mach-omap1/
12475 F:      arch/arm/plat-omap/
12476 F:      drivers/i2c/busses/i2c-omap.c
12477 F:      include/linux/platform_data/ams-delta-fiq.h
12478 F:      include/linux/platform_data/i2c-omap.h
12479
12480 OMAP2+ SUPPORT
12481 M:      Tony Lindgren <tony@atomide.com>
12482 L:      linux-omap@vger.kernel.org
12483 S:      Maintained
12484 W:      http://www.muru.com/linux/omap/
12485 W:      http://linux.omap.com/
12486 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12488 F:      arch/arm/configs/omap2plus_defconfig
12489 F:      arch/arm/mach-omap2/
12490 F:      arch/arm/plat-omap/
12491 F:      drivers/bus/ti-sysc.c
12492 F:      drivers/i2c/busses/i2c-omap.c
12493 F:      drivers/irqchip/irq-omap-intc.c
12494 F:      drivers/mfd/*omap*.c
12495 F:      drivers/mfd/menelaus.c
12496 F:      drivers/mfd/palmas.c
12497 F:      drivers/mfd/tps65217.c
12498 F:      drivers/mfd/tps65218.c
12499 F:      drivers/mfd/tps65910.c
12500 F:      drivers/mfd/twl-core.[ch]
12501 F:      drivers/mfd/twl4030*.c
12502 F:      drivers/mfd/twl6030*.c
12503 F:      drivers/mfd/twl6040*.c
12504 F:      drivers/regulator/palmas-regulator*.c
12505 F:      drivers/regulator/pbias-regulator.c
12506 F:      drivers/regulator/tps65217-regulator.c
12507 F:      drivers/regulator/tps65218-regulator.c
12508 F:      drivers/regulator/tps65910-regulator.c
12509 F:      drivers/regulator/twl-regulator.c
12510 F:      drivers/regulator/twl6030-regulator.c
12511 F:      include/linux/platform_data/i2c-omap.h
12512 F:      include/linux/platform_data/ti-sysc.h
12513
12514 OMFS FILESYSTEM
12515 M:      Bob Copeland <me@bobcopeland.com>
12516 L:      linux-karma-devel@lists.sourceforge.net
12517 S:      Maintained
12518 F:      Documentation/filesystems/omfs.rst
12519 F:      fs/omfs/
12520
12521 OMNIKEY CARDMAN 4000 DRIVER
12522 M:      Harald Welte <laforge@gnumonks.org>
12523 S:      Maintained
12524 F:      drivers/char/pcmcia/cm4000_cs.c
12525 F:      include/linux/cm4000_cs.h
12526 F:      include/uapi/linux/cm4000_cs.h
12527
12528 OMNIKEY CARDMAN 4040 DRIVER
12529 M:      Harald Welte <laforge@gnumonks.org>
12530 S:      Maintained
12531 F:      drivers/char/pcmcia/cm4040_cs.*
12532
12533 OMNIVISION OV13858 SENSOR DRIVER
12534 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12535 L:      linux-media@vger.kernel.org
12536 S:      Maintained
12537 T:      git git://linuxtv.org/media_tree.git
12538 F:      drivers/media/i2c/ov13858.c
12539
12540 OMNIVISION OV2680 SENSOR DRIVER
12541 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12542 L:      linux-media@vger.kernel.org
12543 S:      Maintained
12544 T:      git git://linuxtv.org/media_tree.git
12545 F:      Documentation/devicetree/bindings/media/i2c/ov2680.txt
12546 F:      drivers/media/i2c/ov2680.c
12547
12548 OMNIVISION OV2685 SENSOR DRIVER
12549 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12550 L:      linux-media@vger.kernel.org
12551 S:      Maintained
12552 T:      git git://linuxtv.org/media_tree.git
12553 F:      drivers/media/i2c/ov2685.c
12554
12555 OMNIVISION OV2740 SENSOR DRIVER
12556 M:      Tianshu Qiu <tian.shu.qiua@intel.com>
12557 R:      Shawn Tu <shawnx.tu@intel.com>
12558 R:      Bingbu Cao <bingbu.cao@intel.com>
12559 L:      linux-media@vger.kernel.org
12560 S:      Maintained
12561 T:      git git://linuxtv.org/media_tree.git
12562 F:      drivers/media/i2c/ov2740.c
12563
12564 OMNIVISION OV5640 SENSOR DRIVER
12565 M:      Steve Longerbeam <slongerbeam@gmail.com>
12566 L:      linux-media@vger.kernel.org
12567 S:      Maintained
12568 T:      git git://linuxtv.org/media_tree.git
12569 F:      drivers/media/i2c/ov5640.c
12570
12571 OMNIVISION OV5647 SENSOR DRIVER
12572 M:      Luis Oliveira <lolivei@synopsys.com>
12573 L:      linux-media@vger.kernel.org
12574 S:      Maintained
12575 T:      git git://linuxtv.org/media_tree.git
12576 F:      drivers/media/i2c/ov5647.c
12577
12578 OMNIVISION OV5670 SENSOR DRIVER
12579 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
12580 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
12581 L:      linux-media@vger.kernel.org
12582 S:      Maintained
12583 T:      git git://linuxtv.org/media_tree.git
12584 F:      drivers/media/i2c/ov5670.c
12585
12586 OMNIVISION OV5675 SENSOR DRIVER
12587 M:      Shawn Tu <shawnx.tu@intel.com>
12588 L:      linux-media@vger.kernel.org
12589 S:      Maintained
12590 T:      git git://linuxtv.org/media_tree.git
12591 F:      drivers/media/i2c/ov5675.c
12592
12593 OMNIVISION OV5695 SENSOR DRIVER
12594 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12595 L:      linux-media@vger.kernel.org
12596 S:      Maintained
12597 T:      git git://linuxtv.org/media_tree.git
12598 F:      drivers/media/i2c/ov5695.c
12599
12600 OMNIVISION OV7670 SENSOR DRIVER
12601 M:      Jonathan Corbet <corbet@lwn.net>
12602 L:      linux-media@vger.kernel.org
12603 S:      Maintained
12604 T:      git git://linuxtv.org/media_tree.git
12605 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
12606 F:      drivers/media/i2c/ov7670.c
12607
12608 OMNIVISION OV772x SENSOR DRIVER
12609 M:      Jacopo Mondi <jacopo@jmondi.org>
12610 L:      linux-media@vger.kernel.org
12611 S:      Odd fixes
12612 T:      git git://linuxtv.org/media_tree.git
12613 F:      Documentation/devicetree/bindings/media/i2c/ov772x.txt
12614 F:      drivers/media/i2c/ov772x.c
12615 F:      include/media/i2c/ov772x.h
12616
12617 OMNIVISION OV7740 SENSOR DRIVER
12618 M:      Wenyou Yang <wenyou.yang@microchip.com>
12619 L:      linux-media@vger.kernel.org
12620 S:      Maintained
12621 T:      git git://linuxtv.org/media_tree.git
12622 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
12623 F:      drivers/media/i2c/ov7740.c
12624
12625 OMNIVISION OV8856 SENSOR DRIVER
12626 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
12627 L:      linux-media@vger.kernel.org
12628 S:      Maintained
12629 T:      git git://linuxtv.org/media_tree.git
12630 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
12631 F:      drivers/media/i2c/ov8856.c
12632
12633 OMNIVISION OV9640 SENSOR DRIVER
12634 M:      Petr Cvek <petrcvekcz@gmail.com>
12635 L:      linux-media@vger.kernel.org
12636 S:      Maintained
12637 F:      drivers/media/i2c/ov9640.*
12638
12639 OMNIVISION OV9650 SENSOR DRIVER
12640 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12641 R:      Akinobu Mita <akinobu.mita@gmail.com>
12642 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12643 L:      linux-media@vger.kernel.org
12644 S:      Maintained
12645 T:      git git://linuxtv.org/media_tree.git
12646 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
12647 F:      drivers/media/i2c/ov9650.c
12648
12649 ONENAND FLASH DRIVER
12650 M:      Kyungmin Park <kyungmin.park@samsung.com>
12651 L:      linux-mtd@lists.infradead.org
12652 S:      Maintained
12653 F:      drivers/mtd/nand/onenand/
12654 F:      include/linux/mtd/onenand*.h
12655
12656 ONION OMEGA2+ BOARD
12657 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
12658 L:      linux-mips@vger.kernel.org
12659 S:      Maintained
12660 F:      arch/mips/boot/dts/ralink/omega2p.dts
12661
12662 OP-TEE DRIVER
12663 M:      Jens Wiklander <jens.wiklander@linaro.org>
12664 L:      tee-dev@lists.linaro.org
12665 S:      Maintained
12666 F:      drivers/tee/optee/
12667
12668 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
12669 M:      Sumit Garg <sumit.garg@linaro.org>
12670 L:      tee-dev@lists.linaro.org
12671 S:      Maintained
12672 F:      drivers/char/hw_random/optee-rng.c
12673
12674 OPA-VNIC DRIVER
12675 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
12676 M:      Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
12677 L:      linux-rdma@vger.kernel.org
12678 S:      Supported
12679 F:      drivers/infiniband/ulp/opa_vnic
12680
12681 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
12682 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
12683 M:      Frank Rowand <frowand.list@gmail.com>
12684 L:      devicetree@vger.kernel.org
12685 S:      Maintained
12686 F:      Documentation/devicetree/dynamic-resolution-notes.rst
12687 F:      Documentation/devicetree/overlay-notes.rst
12688 F:      drivers/of/overlay.c
12689 F:      drivers/of/resolver.c
12690 K:      of_overlay_notifier_
12691
12692 OPEN FIRMWARE AND FLATTENED DEVICE TREE
12693 M:      Rob Herring <robh+dt@kernel.org>
12694 M:      Frank Rowand <frowand.list@gmail.com>
12695 L:      devicetree@vger.kernel.org
12696 S:      Maintained
12697 W:      http://www.devicetree.org/
12698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12699 F:      Documentation/ABI/testing/sysfs-firmware-ofw
12700 F:      drivers/of/
12701 F:      include/linux/of*.h
12702 F:      scripts/dtc/
12703
12704 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
12705 M:      Rob Herring <robh+dt@kernel.org>
12706 L:      devicetree@vger.kernel.org
12707 S:      Maintained
12708 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
12709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12710 F:      Documentation/devicetree/
12711 F:      arch/*/boot/dts/
12712 F:      include/dt-bindings/
12713
12714 OPENCORES I2C BUS DRIVER
12715 M:      Peter Korsgaard <peter@korsgaard.com>
12716 M:      Andrew Lunn <andrew@lunn.ch>
12717 L:      linux-i2c@vger.kernel.org
12718 S:      Maintained
12719 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
12720 F:      Documentation/i2c/busses/i2c-ocores.rst
12721 F:      drivers/i2c/busses/i2c-ocores.c
12722 F:      include/linux/platform_data/i2c-ocores.h
12723
12724 OPENRISC ARCHITECTURE
12725 M:      Jonas Bonn <jonas@southpole.se>
12726 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
12727 M:      Stafford Horne <shorne@gmail.com>
12728 L:      openrisc@lists.librecores.org
12729 S:      Maintained
12730 W:      http://openrisc.io
12731 T:      git git://github.com/openrisc/linux.git
12732 F:      Documentation/devicetree/bindings/openrisc/
12733 F:      Documentation/openrisc/
12734 F:      arch/openrisc/
12735 F:      drivers/irqchip/irq-ompic.c
12736 F:      drivers/irqchip/irq-or1k-*
12737
12738 OPENVSWITCH
12739 M:      Pravin B Shelar <pshelar@ovn.org>
12740 L:      netdev@vger.kernel.org
12741 L:      dev@openvswitch.org
12742 S:      Maintained
12743 W:      http://openvswitch.org
12744 F:      include/uapi/linux/openvswitch.h
12745 F:      net/openvswitch/
12746
12747 OPERATING PERFORMANCE POINTS (OPP)
12748 M:      Viresh Kumar <vireshk@kernel.org>
12749 M:      Nishanth Menon <nm@ti.com>
12750 M:      Stephen Boyd <sboyd@kernel.org>
12751 L:      linux-pm@vger.kernel.org
12752 S:      Maintained
12753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
12754 F:      Documentation/devicetree/bindings/opp/
12755 F:      Documentation/power/opp.rst
12756 F:      drivers/opp/
12757 F:      include/linux/pm_opp.h
12758
12759 OPL4 DRIVER
12760 M:      Clemens Ladisch <clemens@ladisch.de>
12761 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12762 S:      Maintained
12763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12764 F:      sound/drivers/opl4/
12765
12766 OPROFILE
12767 M:      Robert Richter <rric@kernel.org>
12768 L:      oprofile-list@lists.sf.net
12769 S:      Maintained
12770 F:      arch/*/include/asm/oprofile*.h
12771 F:      arch/*/oprofile/
12772 F:      drivers/oprofile/
12773 F:      include/linux/oprofile.h
12774
12775 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
12776 M:      Mark Fasheh <mark@fasheh.com>
12777 M:      Joel Becker <jlbec@evilplan.org>
12778 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
12779 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
12780 S:      Supported
12781 W:      http://ocfs2.wiki.kernel.org
12782 F:      Documentation/filesystems/dlmfs.rst
12783 F:      Documentation/filesystems/ocfs2.rst
12784 F:      fs/ocfs2/
12785
12786 ORANGEFS FILESYSTEM
12787 M:      Mike Marshall <hubcap@omnibond.com>
12788 R:      Martin Brandenburg <martin@omnibond.com>
12789 L:      devel@lists.orangefs.org
12790 S:      Supported
12791 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
12792 F:      Documentation/filesystems/orangefs.rst
12793 F:      fs/orangefs/
12794
12795 ORINOCO DRIVER
12796 L:      linux-wireless@vger.kernel.org
12797 S:      Orphan
12798 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
12799 W:      http://www.nongnu.org/orinoco/
12800 F:      drivers/net/wireless/intersil/orinoco/
12801
12802 OV2659 OMNIVISION SENSOR DRIVER
12803 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
12804 L:      linux-media@vger.kernel.org
12805 S:      Maintained
12806 W:      https://linuxtv.org
12807 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12808 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12809 F:      drivers/media/i2c/ov2659.c
12810 F:      include/media/i2c/ov2659.h
12811
12812 OVERLAY FILESYSTEM
12813 M:      Miklos Szeredi <miklos@szeredi.hu>
12814 L:      linux-unionfs@vger.kernel.org
12815 S:      Supported
12816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
12817 F:      Documentation/filesystems/overlayfs.rst
12818 F:      fs/overlayfs/
12819
12820 P54 WIRELESS DRIVER
12821 M:      Christian Lamparter <chunkeey@googlemail.com>
12822 L:      linux-wireless@vger.kernel.org
12823 S:      Maintained
12824 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
12825 F:      drivers/net/wireless/intersil/p54/
12826
12827 PACKING
12828 M:      Vladimir Oltean <olteanv@gmail.com>
12829 L:      netdev@vger.kernel.org
12830 S:      Supported
12831 F:      Documentation/core-api/packing.rst
12832 F:      include/linux/packing.h
12833 F:      lib/packing.c
12834
12835 PADATA PARALLEL EXECUTION MECHANISM
12836 M:      Steffen Klassert <steffen.klassert@secunet.com>
12837 L:      linux-crypto@vger.kernel.org
12838 S:      Maintained
12839 F:      Documentation/core-api/padata.rst
12840 F:      include/linux/padata.h
12841 F:      kernel/padata.c
12842
12843 PAGE POOL
12844 M:      Jesper Dangaard Brouer <hawk@kernel.org>
12845 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
12846 L:      netdev@vger.kernel.org
12847 S:      Supported
12848 F:      include/net/page_pool.h
12849 F:      net/core/page_pool.c
12850
12851 PANASONIC LAPTOP ACPI EXTRAS DRIVER
12852 M:      Harald Welte <laforge@gnumonks.org>
12853 L:      platform-driver-x86@vger.kernel.org
12854 S:      Maintained
12855 F:      drivers/platform/x86/panasonic-laptop.c
12856
12857 PARALLAX PING IIO SENSOR DRIVER
12858 M:      Andreas Klinger <ak@it-klinger.de>
12859 L:      linux-iio@vger.kernel.org
12860 S:      Maintained
12861 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
12862 F:      drivers/iio/proximity/ping.c
12863
12864 PARALLEL LCD/KEYPAD PANEL DRIVER
12865 M:      Willy Tarreau <willy@haproxy.com>
12866 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
12867 S:      Odd Fixes
12868 F:      Documentation/admin-guide/lcd-panel-cgram.rst
12869 F:      drivers/auxdisplay/panel.c
12870
12871 PARALLEL PORT SUBSYSTEM
12872 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12873 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12874 L:      linux-parport@lists.infradead.org (subscribers-only)
12875 S:      Maintained
12876 F:      Documentation/driver-api/parport*.rst
12877 F:      drivers/char/ppdev.c
12878 F:      drivers/parport/
12879 F:      include/linux/parport*.h
12880 F:      include/uapi/linux/ppdev.h
12881
12882 PARAVIRT_OPS INTERFACE
12883 M:      Juergen Gross <jgross@suse.com>
12884 M:      Thomas Hellstrom <thellstrom@vmware.com>
12885 M:      "VMware, Inc." <pv-drivers@vmware.com>
12886 L:      virtualization@lists.linux-foundation.org
12887 S:      Supported
12888 F:      Documentation/virt/paravirt_ops.rst
12889 F:      arch/*/include/asm/paravirt*.h
12890 F:      arch/*/kernel/paravirt*
12891 F:      include/linux/hypervisor.h
12892
12893 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
12894 M:      Tim Waugh <tim@cyberelk.net>
12895 L:      linux-parport@lists.infradead.org (subscribers-only)
12896 S:      Maintained
12897 F:      Documentation/admin-guide/blockdev/paride.rst
12898 F:      drivers/block/paride/
12899
12900 PARISC ARCHITECTURE
12901 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
12902 M:      Helge Deller <deller@gmx.de>
12903 L:      linux-parisc@vger.kernel.org
12904 S:      Maintained
12905 W:      https://parisc.wiki.kernel.org
12906 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
12907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
12908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
12909 F:      Documentation/parisc/
12910 F:      arch/parisc/
12911 F:      drivers/char/agp/parisc-agp.c
12912 F:      drivers/input/misc/hp_sdc_rtc.c
12913 F:      drivers/input/serio/gscps2.c
12914 F:      drivers/input/serio/hp_sdc*
12915 F:      drivers/parisc/
12916 F:      drivers/parport/parport_gsc.*
12917 F:      drivers/tty/serial/8250/8250_gsc.c
12918 F:      drivers/video/console/sti*
12919 F:      drivers/video/fbdev/sti*
12920 F:      drivers/video/logo/logo_parisc*
12921 F:      include/linux/hp_sdc.h
12922
12923 PARMAN
12924 M:      Jiri Pirko <jiri@mellanox.com>
12925 L:      netdev@vger.kernel.org
12926 S:      Supported
12927 F:      include/linux/parman.h
12928 F:      lib/parman.c
12929 F:      lib/test_parman.c
12930
12931 PC ENGINES APU BOARD DRIVER
12932 M:      Enrico Weigelt, metux IT consult <info@metux.net>
12933 S:      Maintained
12934 F:      drivers/platform/x86/pcengines-apuv2.c
12935
12936 PC87360 HARDWARE MONITORING DRIVER
12937 M:      Jim Cromie <jim.cromie@gmail.com>
12938 L:      linux-hwmon@vger.kernel.org
12939 S:      Maintained
12940 F:      Documentation/hwmon/pc87360.rst
12941 F:      drivers/hwmon/pc87360.c
12942
12943 PC8736x GPIO DRIVER
12944 M:      Jim Cromie <jim.cromie@gmail.com>
12945 S:      Maintained
12946 F:      drivers/char/pc8736x_gpio.c
12947
12948 PC87427 HARDWARE MONITORING DRIVER
12949 M:      Jean Delvare <jdelvare@suse.com>
12950 L:      linux-hwmon@vger.kernel.org
12951 S:      Maintained
12952 F:      Documentation/hwmon/pc87427.rst
12953 F:      drivers/hwmon/pc87427.c
12954
12955 PCA9532 LED DRIVER
12956 M:      Riku Voipio <riku.voipio@iki.fi>
12957 S:      Maintained
12958 F:      drivers/leds/leds-pca9532.c
12959 F:      include/linux/leds-pca9532.h
12960
12961 PCA9541 I2C BUS MASTER SELECTOR DRIVER
12962 M:      Guenter Roeck <linux@roeck-us.net>
12963 L:      linux-i2c@vger.kernel.org
12964 S:      Maintained
12965 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
12966
12967 PCDP - PRIMARY CONSOLE AND DEBUG PORT
12968 M:      Khalid Aziz <khalid@gonehiking.org>
12969 S:      Maintained
12970 F:      drivers/firmware/pcdp.*
12971
12972 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
12973 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12974 L:      linux-pci@vger.kernel.org
12975 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12976 S:      Maintained
12977 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
12978 F:      drivers/pci/controller/pci-aardvark.c
12979
12980 PCI DRIVER FOR ALTERA PCIE IP
12981 M:      Ley Foon Tan <ley.foon.tan@intel.com>
12982 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
12983 L:      linux-pci@vger.kernel.org
12984 S:      Supported
12985 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
12986 F:      drivers/pci/controller/pcie-altera.c
12987
12988 PCI DRIVER FOR APPLIEDMICRO XGENE
12989 M:      Toan Le <toan@os.amperecomputing.com>
12990 L:      linux-pci@vger.kernel.org
12991 L:      linux-arm-kernel@lists.infradead.org
12992 S:      Maintained
12993 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
12994 F:      drivers/pci/controller/pci-xgene.c
12995
12996 PCI DRIVER FOR ARM VERSATILE PLATFORM
12997 M:      Rob Herring <robh@kernel.org>
12998 L:      linux-pci@vger.kernel.org
12999 L:      linux-arm-kernel@lists.infradead.org
13000 S:      Maintained
13001 F:      Documentation/devicetree/bindings/pci/versatile.yaml
13002 F:      drivers/pci/controller/pci-versatile.c
13003
13004 PCI DRIVER FOR ARMADA 8K
13005 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13006 L:      linux-pci@vger.kernel.org
13007 L:      linux-arm-kernel@lists.infradead.org
13008 S:      Maintained
13009 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
13010 F:      drivers/pci/controller/dwc/pcie-armada8k.c
13011
13012 PCI DRIVER FOR CADENCE PCIE IP
13013 M:      Tom Joseph <tjoseph@cadence.com>
13014 L:      linux-pci@vger.kernel.org
13015 S:      Maintained
13016 F:      Documentation/devicetree/bindings/pci/cdns,*
13017 F:      drivers/pci/controller/cadence/
13018
13019 PCI DRIVER FOR FREESCALE LAYERSCAPE
13020 M:      Minghuan Lian <minghuan.Lian@nxp.com>
13021 M:      Mingkai Hu <mingkai.hu@nxp.com>
13022 M:      Roy Zang <roy.zang@nxp.com>
13023 L:      linuxppc-dev@lists.ozlabs.org
13024 L:      linux-pci@vger.kernel.org
13025 L:      linux-arm-kernel@lists.infradead.org
13026 S:      Maintained
13027 F:      drivers/pci/controller/dwc/*layerscape*
13028
13029 PCI DRIVER FOR GENERIC OF HOSTS
13030 M:      Will Deacon <will@kernel.org>
13031 L:      linux-pci@vger.kernel.org
13032 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13033 S:      Maintained
13034 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
13035 F:      drivers/pci/controller/pci-host-common.c
13036 F:      drivers/pci/controller/pci-host-generic.c
13037
13038 PCI DRIVER FOR IMX6
13039 M:      Richard Zhu <hongxing.zhu@nxp.com>
13040 M:      Lucas Stach <l.stach@pengutronix.de>
13041 L:      linux-pci@vger.kernel.org
13042 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13043 S:      Maintained
13044 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
13045 F:      drivers/pci/controller/dwc/*imx6*
13046
13047 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
13048 M:      Jonathan Derrick <jonathan.derrick@intel.com>
13049 L:      linux-pci@vger.kernel.org
13050 S:      Supported
13051 F:      drivers/pci/controller/vmd.c
13052
13053 PCI DRIVER FOR MICROSEMI SWITCHTEC
13054 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
13055 M:      Logan Gunthorpe <logang@deltatee.com>
13056 L:      linux-pci@vger.kernel.org
13057 S:      Maintained
13058 F:      Documentation/ABI/testing/sysfs-class-switchtec
13059 F:      Documentation/driver-api/switchtec.rst
13060 F:      drivers/ntb/hw/mscc/
13061 F:      drivers/pci/switch/switchtec*
13062 F:      include/linux/switchtec.h
13063 F:      include/uapi/linux/switchtec_ioctl.h
13064
13065 PCI DRIVER FOR MOBIVEIL PCIE IP
13066 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
13067 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13068 L:      linux-pci@vger.kernel.org
13069 S:      Supported
13070 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
13071 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
13072
13073 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
13074 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13075 M:      Jason Cooper <jason@lakedaemon.net>
13076 L:      linux-pci@vger.kernel.org
13077 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13078 S:      Maintained
13079 F:      drivers/pci/controller/*mvebu*
13080
13081 PCI DRIVER FOR NVIDIA TEGRA
13082 M:      Thierry Reding <thierry.reding@gmail.com>
13083 L:      linux-tegra@vger.kernel.org
13084 L:      linux-pci@vger.kernel.org
13085 S:      Supported
13086 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
13087 F:      drivers/pci/controller/pci-tegra.c
13088
13089 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
13090 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13091 L:      linux-pci@vger.kernel.org
13092 L:      linux-arm-kernel@lists.infradead.org
13093 S:      Maintained
13094 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
13095 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
13096
13097 PCI DRIVER FOR RENESAS R-CAR
13098 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
13099 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
13100 L:      linux-pci@vger.kernel.org
13101 L:      linux-renesas-soc@vger.kernel.org
13102 S:      Maintained
13103 F:      Documentation/devicetree/bindings/pci/*rcar*
13104 F:      drivers/pci/controller/*rcar*
13105
13106 PCI DRIVER FOR SAMSUNG EXYNOS
13107 M:      Jingoo Han <jingoohan1@gmail.com>
13108 L:      linux-pci@vger.kernel.org
13109 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13110 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
13111 S:      Maintained
13112 F:      drivers/pci/controller/dwc/pci-exynos.c
13113
13114 PCI DRIVER FOR SYNOPSYS DESIGNWARE
13115 M:      Jingoo Han <jingoohan1@gmail.com>
13116 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
13117 L:      linux-pci@vger.kernel.org
13118 S:      Maintained
13119 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
13120 F:      drivers/pci/controller/dwc/*designware*
13121
13122 PCI DRIVER FOR TI DRA7XX
13123 M:      Kishon Vijay Abraham I <kishon@ti.com>
13124 L:      linux-omap@vger.kernel.org
13125 L:      linux-pci@vger.kernel.org
13126 S:      Supported
13127 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
13128 F:      drivers/pci/controller/dwc/pci-dra7xx.c
13129
13130 PCI DRIVER FOR TI KEYSTONE
13131 M:      Murali Karicheri <m-karicheri2@ti.com>
13132 L:      linux-pci@vger.kernel.org
13133 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13134 S:      Maintained
13135 F:      drivers/pci/controller/dwc/pci-keystone.c
13136
13137 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13138 M:      Linus Walleij <linus.walleij@linaro.org>
13139 L:      linux-pci@vger.kernel.org
13140 S:      Maintained
13141 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13142 F:      drivers/pci/controller/pci-v3-semi.c
13143
13144 PCI ENDPOINT SUBSYSTEM
13145 M:      Kishon Vijay Abraham I <kishon@ti.com>
13146 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13147 L:      linux-pci@vger.kernel.org
13148 S:      Supported
13149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
13150 F:      drivers/misc/pci_endpoint_test.c
13151 F:      drivers/pci/endpoint/
13152 F:      tools/pci/
13153
13154 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
13155 M:      Russell Currey <ruscur@russell.cc>
13156 M:      Sam Bobroff <sbobroff@linux.ibm.com>
13157 M:      Oliver O'Halloran <oohall@gmail.com>
13158 L:      linuxppc-dev@lists.ozlabs.org
13159 S:      Supported
13160 F:      Documentation/PCI/pci-error-recovery.rst
13161 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
13162 F:      arch/powerpc/include/*/eeh*.h
13163 F:      arch/powerpc/kernel/eeh*.c
13164 F:      arch/powerpc/platforms/*/eeh*.c
13165 F:      drivers/pci/pcie/aer.c
13166 F:      drivers/pci/pcie/dpc.c
13167 F:      drivers/pci/pcie/err.c
13168
13169 PCI ERROR RECOVERY
13170 M:      Linas Vepstas <linasvepstas@gmail.com>
13171 L:      linux-pci@vger.kernel.org
13172 S:      Supported
13173 F:      Documentation/PCI/pci-error-recovery.rst
13174
13175 PCI MSI DRIVER FOR ALTERA MSI IP
13176 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13177 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13178 L:      linux-pci@vger.kernel.org
13179 S:      Supported
13180 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
13181 F:      drivers/pci/controller/pcie-altera-msi.c
13182
13183 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13184 M:      Toan Le <toan@os.amperecomputing.com>
13185 L:      linux-pci@vger.kernel.org
13186 L:      linux-arm-kernel@lists.infradead.org
13187 S:      Maintained
13188 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13189 F:      drivers/pci/controller/pci-xgene-msi.c
13190
13191 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13192 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13193 R:      Rob Herring <robh@kernel.org>
13194 L:      linux-pci@vger.kernel.org
13195 S:      Supported
13196 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13198 F:      drivers/pci/controller/
13199
13200 PCI SUBSYSTEM
13201 M:      Bjorn Helgaas <bhelgaas@google.com>
13202 L:      linux-pci@vger.kernel.org
13203 S:      Supported
13204 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13206 F:      Documentation/PCI/
13207 F:      Documentation/devicetree/bindings/pci/
13208 F:      arch/x86/kernel/early-quirks.c
13209 F:      arch/x86/kernel/quirks.c
13210 F:      arch/x86/pci/
13211 F:      drivers/acpi/pci*
13212 F:      drivers/pci/
13213 F:      include/asm-generic/pci*
13214 F:      include/linux/of_pci.h
13215 F:      include/linux/pci*
13216 F:      include/uapi/linux/pci*
13217 F:      lib/pci*
13218
13219 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13220 M:      Jonathan Chocron <jonnyc@amazon.com>
13221 L:      linux-pci@vger.kernel.org
13222 S:      Maintained
13223 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
13224 F:      drivers/pci/controller/dwc/pcie-al.c
13225
13226 PCIE DRIVER FOR AMLOGIC MESON
13227 M:      Yue Wang <yue.wang@Amlogic.com>
13228 L:      linux-pci@vger.kernel.org
13229 L:      linux-amlogic@lists.infradead.org
13230 S:      Maintained
13231 F:      drivers/pci/controller/dwc/pci-meson.c
13232
13233 PCIE DRIVER FOR AXIS ARTPEC
13234 M:      Jesper Nilsson <jesper.nilsson@axis.com>
13235 L:      linux-arm-kernel@axis.com
13236 L:      linux-pci@vger.kernel.org
13237 S:      Maintained
13238 F:      Documentation/devicetree/bindings/pci/axis,artpec*
13239 F:      drivers/pci/controller/dwc/*artpec*
13240
13241 PCIE DRIVER FOR CAVIUM THUNDERX
13242 M:      Robert Richter <rrichter@marvell.com>
13243 L:      linux-pci@vger.kernel.org
13244 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13245 S:      Supported
13246 F:      drivers/pci/controller/pci-thunder-*
13247
13248 PCIE DRIVER FOR HISILICON
13249 M:      Zhou Wang <wangzhou1@hisilicon.com>
13250 L:      linux-pci@vger.kernel.org
13251 S:      Maintained
13252 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13253 F:      drivers/pci/controller/dwc/pcie-hisi.c
13254
13255 PCIE DRIVER FOR HISILICON KIRIN
13256 M:      Xiaowei Song <songxiaowei@hisilicon.com>
13257 M:      Binghui Wang <wangbinghui@hisilicon.com>
13258 L:      linux-pci@vger.kernel.org
13259 S:      Maintained
13260 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13261 F:      drivers/pci/controller/dwc/pcie-kirin.c
13262
13263 PCIE DRIVER FOR HISILICON STB
13264 M:      Shawn Guo <shawn.guo@linaro.org>
13265 L:      linux-pci@vger.kernel.org
13266 S:      Maintained
13267 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13268 F:      drivers/pci/controller/dwc/pcie-histb.c
13269
13270 PCIE DRIVER FOR MEDIATEK
13271 M:      Ryder Lee <ryder.lee@mediatek.com>
13272 L:      linux-pci@vger.kernel.org
13273 L:      linux-mediatek@lists.infradead.org
13274 S:      Supported
13275 F:      Documentation/devicetree/bindings/pci/mediatek*
13276 F:      drivers/pci/controller/*mediatek*
13277
13278 PCIE DRIVER FOR QUALCOMM MSM
13279 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
13280 L:      linux-pci@vger.kernel.org
13281 L:      linux-arm-msm@vger.kernel.org
13282 S:      Maintained
13283 F:      drivers/pci/controller/dwc/*qcom*
13284
13285 PCIE DRIVER FOR ROCKCHIP
13286 M:      Shawn Lin <shawn.lin@rock-chips.com>
13287 L:      linux-pci@vger.kernel.org
13288 L:      linux-rockchip@lists.infradead.org
13289 S:      Maintained
13290 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13291 F:      drivers/pci/controller/pcie-rockchip*
13292
13293 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13294 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
13295 L:      linux-pci@vger.kernel.org
13296 S:      Maintained
13297 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
13298 F:      drivers/pci/controller/dwc/pcie-uniphier*
13299
13300 PCIE DRIVER FOR ST SPEAR13XX
13301 M:      Pratyush Anand <pratyush.anand@gmail.com>
13302 L:      linux-pci@vger.kernel.org
13303 S:      Maintained
13304 F:      drivers/pci/controller/dwc/*spear*
13305
13306 PCMCIA SUBSYSTEM
13307 M:      Dominik Brodowski <linux@dominikbrodowski.net>
13308 S:      Odd Fixes
13309 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13310 F:      Documentation/pcmcia/
13311 F:      drivers/pcmcia/
13312 F:      include/pcmcia/
13313 F:      tools/pcmcia/
13314
13315 PCNET32 NETWORK DRIVER
13316 M:      Don Fry <pcnet32@frontier.com>
13317 L:      netdev@vger.kernel.org
13318 S:      Maintained
13319 F:      drivers/net/ethernet/amd/pcnet32.c
13320
13321 PCRYPT PARALLEL CRYPTO ENGINE
13322 M:      Steffen Klassert <steffen.klassert@secunet.com>
13323 L:      linux-crypto@vger.kernel.org
13324 S:      Maintained
13325 F:      crypto/pcrypt.c
13326 F:      include/crypto/pcrypt.h
13327
13328 PEAQ WMI HOTKEYS DRIVER
13329 M:      Hans de Goede <hdegoede@redhat.com>
13330 L:      platform-driver-x86@vger.kernel.org
13331 S:      Maintained
13332 F:      drivers/platform/x86/peaq-wmi.c
13333
13334 PENSANDO ETHERNET DRIVERS
13335 M:      Shannon Nelson <snelson@pensando.io>
13336 M:      Pensando Drivers <drivers@pensando.io>
13337 L:      netdev@vger.kernel.org
13338 S:      Supported
13339 F:      Documentation/networking/device_drivers/pensando/ionic.rst
13340 F:      drivers/net/ethernet/pensando/
13341
13342 PER-CPU MEMORY ALLOCATOR
13343 M:      Dennis Zhou <dennis@kernel.org>
13344 M:      Tejun Heo <tj@kernel.org>
13345 M:      Christoph Lameter <cl@linux.com>
13346 S:      Maintained
13347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13348 F:      arch/*/include/asm/percpu.h
13349 F:      include/linux/percpu*.h
13350 F:      mm/percpu*.c
13351
13352 PER-TASK DELAY ACCOUNTING
13353 M:      Balbir Singh <bsingharora@gmail.com>
13354 S:      Maintained
13355 F:      include/linux/delayacct.h
13356 F:      kernel/delayacct.c
13357
13358 PERFORMANCE EVENTS SUBSYSTEM
13359 M:      Peter Zijlstra <peterz@infradead.org>
13360 M:      Ingo Molnar <mingo@redhat.com>
13361 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
13362 R:      Mark Rutland <mark.rutland@arm.com>
13363 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
13364 R:      Jiri Olsa <jolsa@redhat.com>
13365 R:      Namhyung Kim <namhyung@kernel.org>
13366 L:      linux-kernel@vger.kernel.org
13367 S:      Supported
13368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13369 F:      arch/*/events/*
13370 F:      arch/*/events/*/*
13371 F:      arch/*/include/asm/perf_event.h
13372 F:      arch/*/kernel/*/*/perf_event*.c
13373 F:      arch/*/kernel/*/perf_event*.c
13374 F:      arch/*/kernel/perf_callchain.c
13375 F:      arch/*/kernel/perf_event*.c
13376 F:      include/linux/perf_event.h
13377 F:      include/uapi/linux/perf_event.h
13378 F:      kernel/events/*
13379 F:      tools/perf/
13380
13381 PERFORMANCE EVENTS SUBSYSTEM ARM64 PMU EVENTS
13382 R:      John Garry <john.garry@huawei.com>
13383 R:      Will Deacon <will@kernel.org>
13384 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13385 S:      Supported
13386 F:      tools/perf/pmu-events/arch/arm64/
13387
13388 PERSONALITY HANDLING
13389 M:      Christoph Hellwig <hch@infradead.org>
13390 L:      linux-abi-devel@lists.sourceforge.net
13391 S:      Maintained
13392 F:      include/linux/personality.h
13393 F:      include/uapi/linux/personality.h
13394
13395 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13396 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13397 L:      linux-input@vger.kernel.org
13398 S:      Maintained
13399 F:      Documentation/input/devices/pxrc.rst
13400 F:      drivers/input/joystick/pxrc.c
13401
13402 PHONET PROTOCOL
13403 M:      Remi Denis-Courmont <courmisch@gmail.com>
13404 S:      Supported
13405 F:      Documentation/networking/phonet.rst
13406 F:      include/linux/phonet.h
13407 F:      include/net/phonet/
13408 F:      include/uapi/linux/phonet.h
13409 F:      net/phonet/
13410
13411 PHRAM MTD DRIVER
13412 M:      Joern Engel <joern@lazybastard.org>
13413 L:      linux-mtd@lists.infradead.org
13414 S:      Maintained
13415 F:      drivers/mtd/devices/phram.c
13416
13417 PICOLCD HID DRIVER
13418 M:      Bruno Prémont <bonbons@linux-vserver.org>
13419 L:      linux-input@vger.kernel.org
13420 S:      Maintained
13421 F:      drivers/hid/hid-picolcd*
13422
13423 PICOXCELL SUPPORT
13424 M:      Jamie Iles <jamie@jamieiles.com>
13425 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13426 S:      Supported
13427 T:      git git://github.com/jamieiles/linux-2.6-ji.git
13428 F:      arch/arm/boot/dts/picoxcell*
13429 F:      arch/arm/mach-picoxcell/
13430 F:      drivers/crypto/picoxcell*
13431
13432 PIDFD API
13433 M:      Christian Brauner <christian@brauner.io>
13434 L:      linux-kernel@vger.kernel.org
13435 S:      Maintained
13436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
13437 F:      samples/pidfd/
13438 F:      tools/testing/selftests/clone3/
13439 F:      tools/testing/selftests/pid_namespace/
13440 F:      tools/testing/selftests/pidfd/
13441 K:      (?i)pidfd
13442 K:      (?i)clone3
13443 K:      \b(clone_args|kernel_clone_args)\b
13444
13445 PIN CONTROL SUBSYSTEM
13446 M:      Linus Walleij <linus.walleij@linaro.org>
13447 L:      linux-gpio@vger.kernel.org
13448 S:      Maintained
13449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13450 F:      Documentation/devicetree/bindings/pinctrl/
13451 F:      Documentation/driver-api/pinctl.rst
13452 F:      drivers/pinctrl/
13453 F:      include/linux/pinctrl/
13454
13455 PIN CONTROLLER - FREESCALE
13456 M:      Dong Aisheng <aisheng.dong@nxp.com>
13457 M:      Fabio Estevam <festevam@gmail.com>
13458 M:      Shawn Guo <shawnguo@kernel.org>
13459 M:      Stefan Agner <stefan@agner.ch>
13460 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
13461 L:      linux-gpio@vger.kernel.org
13462 S:      Maintained
13463 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
13464 F:      drivers/pinctrl/freescale/
13465
13466 PIN CONTROLLER - INTEL
13467 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
13468 M:      Andy Shevchenko <andy@kernel.org>
13469 S:      Maintained
13470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13471 F:      drivers/pinctrl/intel/
13472
13473 PIN CONTROLLER - MEDIATEK
13474 M:      Sean Wang <sean.wang@kernel.org>
13475 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13476 S:      Maintained
13477 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13478 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13479 F:      drivers/pinctrl/mediatek/
13480
13481 PIN CONTROLLER - MICROCHIP AT91
13482 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13483 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13484 L:      linux-gpio@vger.kernel.org
13485 S:      Supported
13486 F:      drivers/gpio/gpio-sama5d2-piobu.c
13487 F:      drivers/pinctrl/pinctrl-at91*
13488
13489 PIN CONTROLLER - QUALCOMM
13490 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13491 L:      linux-arm-msm@vger.kernel.org
13492 S:      Maintained
13493 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
13494 F:      drivers/pinctrl/qcom/
13495
13496 PIN CONTROLLER - RENESAS
13497 M:      Geert Uytterhoeven <geert+renesas@glider.be>
13498 L:      linux-renesas-soc@vger.kernel.org
13499 S:      Maintained
13500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
13501 F:      drivers/pinctrl/pinctrl-rz*
13502 F:      drivers/pinctrl/sh-pfc/
13503
13504 PIN CONTROLLER - SAMSUNG
13505 M:      Tomasz Figa <tomasz.figa@gmail.com>
13506 M:      Krzysztof Kozlowski <krzk@kernel.org>
13507 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13508 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13509 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
13510 S:      Maintained
13511 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
13512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
13513 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
13514 F:      drivers/pinctrl/samsung/
13515 F:      include/dt-bindings/pinctrl/samsung.h
13516
13517 PIN CONTROLLER - SINGLE
13518 M:      Tony Lindgren <tony@atomide.com>
13519 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
13520 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13521 L:      linux-omap@vger.kernel.org
13522 S:      Maintained
13523 F:      drivers/pinctrl/pinctrl-single.c
13524
13525 PIN CONTROLLER - ST SPEAR
13526 M:      Viresh Kumar <vireshk@kernel.org>
13527 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13528 S:      Maintained
13529 W:      http://www.st.com/spear
13530 F:      drivers/pinctrl/spear/
13531
13532 PISTACHIO SOC SUPPORT
13533 M:      James Hartley <james.hartley@sondrel.com>
13534 L:      linux-mips@vger.kernel.org
13535 S:      Odd Fixes
13536 F:      arch/mips/boot/dts/img/pistachio*
13537 F:      arch/mips/configs/pistachio*_defconfig
13538 F:      arch/mips/include/asm/mach-pistachio/
13539 F:      arch/mips/pistachio/
13540
13541 PKTCDVD DRIVER
13542 M:      linux-block@vger.kernel.org
13543 S:      Orphan
13544 F:      drivers/block/pktcdvd.c
13545 F:      include/linux/pktcdvd.h
13546 F:      include/uapi/linux/pktcdvd.h
13547
13548 PKUNITY SOC DRIVERS
13549 M:      Guan Xuetao <gxt@pku.edu.cn>
13550 S:      Maintained
13551 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
13552 T:      git git://github.com/gxt/linux.git
13553 F:      drivers/i2c/busses/i2c-puv3.c
13554 F:      drivers/input/serio/i8042-unicore32io.h
13555 F:      drivers/rtc/rtc-puv3.c
13556 F:      drivers/video/fbdev/fb-puv3.c
13557
13558 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
13559 M:      Tomasz Duszynski <tduszyns@gmail.com>
13560 S:      Maintained
13561 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
13562 F:      drivers/iio/chemical/pms7003.c
13563
13564 PLX DMA DRIVER
13565 M:      Logan Gunthorpe <logang@deltatee.com>
13566 S:      Maintained
13567 F:      drivers/dma/plx_dma.c
13568
13569 PM-GRAPH UTILITY
13570 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
13571 L:      linux-pm@vger.kernel.org
13572 S:      Supported
13573 W:      https://01.org/pm-graph
13574 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
13575 T:      git git://github.com/intel/pm-graph
13576 F:      tools/power/pm-graph
13577
13578 PMBUS HARDWARE MONITORING DRIVERS
13579 M:      Guenter Roeck <linux@roeck-us.net>
13580 L:      linux-hwmon@vger.kernel.org
13581 S:      Maintained
13582 W:      http://hwmon.wiki.kernel.org/
13583 W:      http://www.roeck-us.net/linux/drivers/
13584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
13585 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
13586 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
13587 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
13588 F:      Documentation/hwmon/adm1275.rst
13589 F:      Documentation/hwmon/ibm-cffps.rst
13590 F:      Documentation/hwmon/ir35221.rst
13591 F:      Documentation/hwmon/lm25066.rst
13592 F:      Documentation/hwmon/ltc2978.rst
13593 F:      Documentation/hwmon/ltc3815.rst
13594 F:      Documentation/hwmon/max16064.rst
13595 F:      Documentation/hwmon/max20751.rst
13596 F:      Documentation/hwmon/max31785.rst
13597 F:      Documentation/hwmon/max34440.rst
13598 F:      Documentation/hwmon/max8688.rst
13599 F:      Documentation/hwmon/pmbus-core.rst
13600 F:      Documentation/hwmon/pmbus.rst
13601 F:      Documentation/hwmon/tps40422.rst
13602 F:      Documentation/hwmon/ucd9000.rst
13603 F:      Documentation/hwmon/ucd9200.rst
13604 F:      Documentation/hwmon/zl6100.rst
13605 F:      drivers/hwmon/pmbus/
13606 F:      include/linux/pmbus.h
13607
13608 PMC SIERRA MaxRAID DRIVER
13609 L:      linux-scsi@vger.kernel.org
13610 S:      Orphan
13611 W:      http://www.pmc-sierra.com/
13612 F:      drivers/scsi/pmcraid.*
13613
13614 PMC SIERRA PM8001 DRIVER
13615 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
13616 L:      linux-scsi@vger.kernel.org
13617 S:      Supported
13618 F:      drivers/scsi/pm8001/
13619
13620 PNI RM3100 IIO DRIVER
13621 M:      Song Qiang <songqiang1304521@gmail.com>
13622 L:      linux-iio@vger.kernel.org
13623 S:      Maintained
13624 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
13625 F:      drivers/iio/magnetometer/rm3100*
13626
13627 PNP SUPPORT
13628 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
13629 L:      linux-acpi@vger.kernel.org
13630 S:      Maintained
13631 F:      drivers/pnp/
13632 F:      include/linux/pnp.h
13633
13634 POSIX CLOCKS and TIMERS
13635 M:      Thomas Gleixner <tglx@linutronix.de>
13636 L:      linux-kernel@vger.kernel.org
13637 S:      Maintained
13638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13639 F:      fs/timerfd.c
13640 F:      include/linux/time_namespace.h
13641 F:      include/linux/timer*
13642 F:      kernel/time/*timer*
13643 F:      kernel/time/namespace.c
13644
13645 POWER MANAGEMENT CORE
13646 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
13647 L:      linux-pm@vger.kernel.org
13648 S:      Supported
13649 B:      https://bugzilla.kernel.org
13650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
13651 F:      drivers/base/power/
13652 F:      drivers/powercap/
13653 F:      include/linux/intel_rapl.h
13654 F:      include/linux/pm.h
13655 F:      include/linux/pm_*
13656 F:      include/linux/powercap.h
13657 F:      kernel/configs/nopm.config
13658
13659 POWER STATE COORDINATION INTERFACE (PSCI)
13660 M:      Mark Rutland <mark.rutland@arm.com>
13661 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13662 L:      linux-arm-kernel@lists.infradead.org
13663 S:      Maintained
13664 F:      drivers/firmware/psci/
13665 F:      include/linux/psci.h
13666 F:      include/uapi/linux/psci.h
13667
13668 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
13669 M:      Sebastian Reichel <sre@kernel.org>
13670 L:      linux-pm@vger.kernel.org
13671 S:      Maintained
13672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13673 F:      Documentation/ABI/testing/sysfs-class-power
13674 F:      Documentation/devicetree/bindings/power/supply/
13675 F:      drivers/power/supply/
13676 F:      include/linux/power_supply.h
13677
13678 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
13679 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
13680 L:      linuxppc-dev@lists.ozlabs.org
13681 S:      Maintained
13682 F:      drivers/char/powernv-op-panel.c
13683
13684 PPP OVER ATM (RFC 2364)
13685 M:      Mitchell Blank Jr <mitch@sfgoth.com>
13686 S:      Maintained
13687 F:      include/uapi/linux/atmppp.h
13688 F:      net/atm/pppoatm.c
13689
13690 PPP OVER ETHERNET
13691 M:      Michal Ostrowski <mostrows@earthlink.net>
13692 S:      Maintained
13693 F:      drivers/net/ppp/pppoe.c
13694 F:      drivers/net/ppp/pppox.c
13695
13696 PPP OVER L2TP
13697 M:      James Chapman <jchapman@katalix.com>
13698 S:      Maintained
13699 F:      include/linux/if_pppol2tp.h
13700 F:      include/uapi/linux/if_pppol2tp.h
13701 F:      net/l2tp/l2tp_ppp.c
13702
13703 PPP PROTOCOL DRIVERS AND COMPRESSORS
13704 M:      Paul Mackerras <paulus@samba.org>
13705 L:      linux-ppp@vger.kernel.org
13706 S:      Maintained
13707 F:      drivers/net/ppp/ppp_*
13708
13709 PPS SUPPORT
13710 M:      Rodolfo Giometti <giometti@enneenne.com>
13711 L:      linuxpps@ml.enneenne.com (subscribers-only)
13712 S:      Maintained
13713 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
13714 F:      Documentation/ABI/testing/sysfs-pps
13715 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
13716 F:      Documentation/driver-api/pps.rst
13717 F:      drivers/pps/
13718 F:      include/linux/pps*.h
13719 F:      include/uapi/linux/pps.h
13720
13721 PPTP DRIVER
13722 M:      Dmitry Kozlov <xeb@mail.ru>
13723 L:      netdev@vger.kernel.org
13724 S:      Maintained
13725 W:      http://sourceforge.net/projects/accel-pptp
13726 F:      drivers/net/ppp/pptp.c
13727
13728 PRESSURE STALL INFORMATION (PSI)
13729 M:      Johannes Weiner <hannes@cmpxchg.org>
13730 S:      Maintained
13731 F:      include/linux/psi*
13732 F:      kernel/sched/psi.c
13733
13734 PRINTK
13735 M:      Petr Mladek <pmladek@suse.com>
13736 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
13737 R:      Steven Rostedt <rostedt@goodmis.org>
13738 S:      Maintained
13739 F:      include/linux/printk.h
13740 F:      kernel/printk/
13741
13742 PRISM54 WIRELESS DRIVER
13743 M:      Luis Chamberlain <mcgrof@kernel.org>
13744 L:      linux-wireless@vger.kernel.org
13745 S:      Obsolete
13746 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
13747 F:      drivers/net/wireless/intersil/prism54/
13748
13749 PROC FILESYSTEM
13750 R:      Alexey Dobriyan <adobriyan@gmail.com>
13751 L:      linux-kernel@vger.kernel.org
13752 L:      linux-fsdevel@vger.kernel.org
13753 S:      Maintained
13754 F:      Documentation/filesystems/proc.rst
13755 F:      fs/proc/
13756 F:      include/linux/proc_fs.h
13757 F:      tools/testing/selftests/proc/
13758
13759 PROC SYSCTL
13760 M:      Luis Chamberlain <mcgrof@kernel.org>
13761 M:      Kees Cook <keescook@chromium.org>
13762 M:      Iurii Zaikin <yzaikin@google.com>
13763 L:      linux-kernel@vger.kernel.org
13764 L:      linux-fsdevel@vger.kernel.org
13765 S:      Maintained
13766 F:      fs/proc/proc_sysctl.c
13767 F:      include/linux/sysctl.h
13768 F:      kernel/sysctl-test.c
13769 F:      kernel/sysctl.c
13770 F:      tools/testing/selftests/sysctl/
13771
13772 PS3 NETWORK SUPPORT
13773 M:      Geoff Levand <geoff@infradead.org>
13774 L:      netdev@vger.kernel.org
13775 L:      linuxppc-dev@lists.ozlabs.org
13776 S:      Maintained
13777 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
13778
13779 PS3 PLATFORM SUPPORT
13780 M:      Geoff Levand <geoff@infradead.org>
13781 L:      linuxppc-dev@lists.ozlabs.org
13782 S:      Maintained
13783 F:      arch/powerpc/boot/ps3*
13784 F:      arch/powerpc/include/asm/lv1call.h
13785 F:      arch/powerpc/include/asm/ps3*.h
13786 F:      arch/powerpc/platforms/ps3/
13787 F:      drivers/*/ps3*
13788 F:      drivers/ps3/
13789 F:      drivers/rtc/rtc-ps3.c
13790 F:      drivers/usb/host/*ps3.c
13791 F:      sound/ppc/snd_ps3*
13792
13793 PS3VRAM DRIVER
13794 M:      Jim Paris <jim@jtan.com>
13795 M:      Geoff Levand <geoff@infradead.org>
13796 L:      linuxppc-dev@lists.ozlabs.org
13797 S:      Maintained
13798 F:      drivers/block/ps3vram.c
13799
13800 PSAMPLE PACKET SAMPLING SUPPORT
13801 M:      Yotam Gigi <yotam.gi@gmail.com>
13802 S:      Maintained
13803 F:      include/net/psample.h
13804 F:      include/uapi/linux/psample.h
13805 F:      net/psample
13806
13807 PSTORE FILESYSTEM
13808 M:      Kees Cook <keescook@chromium.org>
13809 M:      Anton Vorontsov <anton@enomsg.org>
13810 M:      Colin Cross <ccross@android.com>
13811 M:      Tony Luck <tony.luck@intel.com>
13812 S:      Maintained
13813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
13814 F:      Documentation/admin-guide/ramoops.rst
13815 F:      Documentation/admin-guide/pstore-blk.rst
13816 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
13817 F:      drivers/acpi/apei/erst.c
13818 F:      drivers/firmware/efi/efi-pstore.c
13819 F:      fs/pstore/
13820 F:      include/linux/pstore*
13821 K:      \b(pstore|ramoops)
13822
13823 PTP HARDWARE CLOCK SUPPORT
13824 M:      Richard Cochran <richardcochran@gmail.com>
13825 L:      netdev@vger.kernel.org
13826 S:      Maintained
13827 W:      http://linuxptp.sourceforge.net/
13828 F:      Documentation/ABI/testing/sysfs-ptp
13829 F:      Documentation/driver-api/ptp.rst
13830 F:      drivers/net/phy/dp83640*
13831 F:      drivers/ptp/*
13832 F:      include/linux/ptp_cl*
13833
13834 PTRACE SUPPORT
13835 M:      Oleg Nesterov <oleg@redhat.com>
13836 S:      Maintained
13837 F:      arch/*/*/ptrace*.c
13838 F:      arch/*/include/asm/ptrace*.h
13839 F:      arch/*/ptrace*.c
13840 F:      include/asm-generic/syscall.h
13841 F:      include/linux/ptrace.h
13842 F:      include/linux/regset.h
13843 F:      include/linux/tracehook.h
13844 F:      include/uapi/linux/ptrace.h
13845 F:      include/uapi/linux/ptrace.h
13846 F:      kernel/ptrace.c
13847
13848 PULSE8-CEC DRIVER
13849 M:      Hans Verkuil <hverkuil@xs4all.nl>
13850 L:      linux-media@vger.kernel.org
13851 S:      Maintained
13852 T:      git git://linuxtv.org/media_tree.git
13853 F:      Documentation/admin-guide/media/pulse8-cec.rst
13854 F:      drivers/media/cec/usb/pulse8/
13855
13856 PVRUSB2 VIDEO4LINUX DRIVER
13857 M:      Mike Isely <isely@pobox.com>
13858 L:      pvrusb2@isely.net       (subscribers-only)
13859 L:      linux-media@vger.kernel.org
13860 S:      Maintained
13861 W:      http://www.isely.net/pvrusb2/
13862 T:      git git://linuxtv.org/media_tree.git
13863 F:      Documentation/driver-api/media/drivers/pvrusb2*
13864 F:      drivers/media/usb/pvrusb2/
13865
13866 PWC WEBCAM DRIVER
13867 M:      Hans Verkuil <hverkuil@xs4all.nl>
13868 L:      linux-media@vger.kernel.org
13869 S:      Odd Fixes
13870 T:      git git://linuxtv.org/media_tree.git
13871 F:      drivers/media/usb/pwc/*
13872 F:      include/trace/events/pwc.h
13873
13874 PWM FAN DRIVER
13875 M:      Kamil Debski <kamil@wypas.org>
13876 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
13877 L:      linux-hwmon@vger.kernel.org
13878 S:      Supported
13879 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
13880 F:      Documentation/hwmon/pwm-fan.rst
13881 F:      drivers/hwmon/pwm-fan.c
13882
13883 PWM IR Transmitter
13884 M:      Sean Young <sean@mess.org>
13885 L:      linux-media@vger.kernel.org
13886 S:      Maintained
13887 F:      drivers/media/rc/pwm-ir-tx.c
13888
13889 PWM SUBSYSTEM
13890 M:      Thierry Reding <thierry.reding@gmail.com>
13891 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
13892 L:      linux-pwm@vger.kernel.org
13893 S:      Maintained
13894 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
13895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
13896 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
13897 F:      Documentation/devicetree/bindings/pwm/
13898 F:      Documentation/driver-api/pwm.rst
13899 F:      drivers/gpio/gpio-mvebu.c
13900 F:      drivers/pwm/
13901 F:      drivers/video/backlight/pwm_bl.c
13902 F:      include/linux/pwm.h
13903 F:      include/linux/pwm_backlight.h
13904 K:      pwm_(config|apply_state|ops)
13905
13906 PXA GPIO DRIVER
13907 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13908 L:      linux-gpio@vger.kernel.org
13909 S:      Maintained
13910 F:      drivers/gpio/gpio-pxa.c
13911
13912 PXA MMCI DRIVER
13913 S:      Orphan
13914
13915 PXA RTC DRIVER
13916 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13917 L:      linux-rtc@vger.kernel.org
13918 S:      Maintained
13919
13920 PXA2xx/PXA3xx SUPPORT
13921 M:      Daniel Mack <daniel@zonque.org>
13922 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
13923 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13924 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13925 S:      Maintained
13926 T:      git git://github.com/hzhuang1/linux.git
13927 T:      git git://github.com/rjarzmik/linux.git
13928 F:      arch/arm/boot/dts/pxa*
13929 F:      arch/arm/mach-pxa/
13930 F:      drivers/dma/pxa*
13931 F:      drivers/pcmcia/pxa2xx*
13932 F:      drivers/pinctrl/pxa/
13933 F:      drivers/spi/spi-pxa2xx*
13934 F:      drivers/usb/gadget/udc/pxa2*
13935 F:      include/sound/pxa2xx-lib.h
13936 F:      sound/arm/pxa*
13937 F:      sound/soc/pxa/
13938
13939 QAT DRIVER
13940 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
13941 L:      qat-linux@intel.com
13942 S:      Supported
13943 F:      drivers/crypto/qat/
13944
13945 QCOM AUDIO (ASoC) DRIVERS
13946 M:      Patrick Lai <plai@codeaurora.org>
13947 M:      Banajit Goswami <bgoswami@codeaurora.org>
13948 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13949 S:      Supported
13950 F:      sound/soc/qcom/
13951
13952 QCOM IPA DRIVER
13953 M:      Alex Elder <elder@kernel.org>
13954 L:      netdev@vger.kernel.org
13955 S:      Supported
13956 F:      drivers/net/ipa/
13957
13958 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
13959 M:      Gabriel Somlo <somlo@cmu.edu>
13960 M:      "Michael S. Tsirkin" <mst@redhat.com>
13961 L:      qemu-devel@nongnu.org
13962 S:      Maintained
13963 F:      drivers/firmware/qemu_fw_cfg.c
13964 F:      include/uapi/linux/qemu_fw_cfg.h
13965
13966 QIB DRIVER
13967 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
13968 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
13969 L:      linux-rdma@vger.kernel.org
13970 S:      Supported
13971 F:      drivers/infiniband/hw/qib/
13972
13973 QLOGIC QL41xxx FCOE DRIVER
13974 M:      QLogic-Storage-Upstream@cavium.com
13975 L:      linux-scsi@vger.kernel.org
13976 S:      Supported
13977 F:      drivers/scsi/qedf/
13978
13979 QLOGIC QL41xxx ISCSI DRIVER
13980 M:      QLogic-Storage-Upstream@cavium.com
13981 L:      linux-scsi@vger.kernel.org
13982 S:      Supported
13983 F:      drivers/scsi/qedi/
13984
13985 QLOGIC QL4xxx ETHERNET DRIVER
13986 M:      Ariel Elior <aelior@marvell.com>
13987 M:      GR-everest-linux-l2@marvell.com
13988 L:      netdev@vger.kernel.org
13989 S:      Supported
13990 F:      drivers/net/ethernet/qlogic/qed/
13991 F:      drivers/net/ethernet/qlogic/qede/
13992 F:      include/linux/qed/
13993
13994 QLOGIC QL4xxx RDMA DRIVER
13995 M:      Michal Kalderon <mkalderon@marvell.com>
13996 M:      Ariel Elior <aelior@marvell.com>
13997 L:      linux-rdma@vger.kernel.org
13998 S:      Supported
13999 F:      drivers/infiniband/hw/qedr/
14000 F:      include/uapi/rdma/qedr-abi.h
14001
14002 QLOGIC QLA1280 SCSI DRIVER
14003 M:      Michael Reed <mdr@sgi.com>
14004 L:      linux-scsi@vger.kernel.org
14005 S:      Maintained
14006 F:      drivers/scsi/qla1280.[ch]
14007
14008 QLOGIC QLA2XXX FC-SCSI DRIVER
14009 M:      Nilesh Javali <njavali@marvell.com>
14010 M:      GR-QLogic-Storage-Upstream@marvell.com
14011 L:      linux-scsi@vger.kernel.org
14012 S:      Supported
14013 F:      Documentation/scsi/LICENSE.qla2xxx
14014 F:      drivers/scsi/qla2xxx/
14015
14016 QLOGIC QLA3XXX NETWORK DRIVER
14017 M:      GR-Linux-NIC-Dev@marvell.com
14018 L:      netdev@vger.kernel.org
14019 S:      Supported
14020 F:      Documentation/networking/device_drivers/qlogic/LICENSE.qla3xxx
14021 F:      drivers/net/ethernet/qlogic/qla3xxx.*
14022
14023 QLOGIC QLA4XXX iSCSI DRIVER
14024 M:      QLogic-Storage-Upstream@qlogic.com
14025 L:      linux-scsi@vger.kernel.org
14026 S:      Supported
14027 F:      Documentation/scsi/LICENSE.qla4xxx
14028 F:      drivers/scsi/qla4xxx/
14029
14030 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
14031 M:      Shahed Shaikh <shshaikh@marvell.com>
14032 M:      Manish Chopra <manishc@marvell.com>
14033 M:      GR-Linux-NIC-Dev@marvell.com
14034 L:      netdev@vger.kernel.org
14035 S:      Supported
14036 F:      drivers/net/ethernet/qlogic/qlcnic/
14037
14038 QLOGIC QLGE 10Gb ETHERNET DRIVER
14039 M:      Manish Chopra <manishc@marvell.com>
14040 M:      GR-Linux-NIC-Dev@marvell.com
14041 L:      netdev@vger.kernel.org
14042 S:      Supported
14043 F:      drivers/staging/qlge/
14044
14045 QM1D1B0004 MEDIA DRIVER
14046 M:      Akihiro Tsukada <tskd08@gmail.com>
14047 L:      linux-media@vger.kernel.org
14048 S:      Odd Fixes
14049 F:      drivers/media/tuners/qm1d1b0004*
14050
14051 QM1D1C0042 MEDIA DRIVER
14052 M:      Akihiro Tsukada <tskd08@gmail.com>
14053 L:      linux-media@vger.kernel.org
14054 S:      Odd Fixes
14055 F:      drivers/media/tuners/qm1d1c0042*
14056
14057 QNX4 FILESYSTEM
14058 M:      Anders Larsen <al@alarsen.net>
14059 S:      Maintained
14060 W:      http://www.alarsen.net/linux/qnx4fs/
14061 F:      fs/qnx4/
14062 F:      include/uapi/linux/qnx4_fs.h
14063 F:      include/uapi/linux/qnxtypes.h
14064
14065 QORIQ DPAA2 FSL-MC BUS DRIVER
14066 M:      Stuart Yoder <stuyoder@gmail.com>
14067 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
14068 L:      linux-kernel@vger.kernel.org
14069 S:      Maintained
14070 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
14071 F:      Documentation/networking/device_drivers/freescale/dpaa2/overview.rst
14072 F:      drivers/bus/fsl-mc/
14073
14074 QT1010 MEDIA DRIVER
14075 M:      Antti Palosaari <crope@iki.fi>
14076 L:      linux-media@vger.kernel.org
14077 S:      Maintained
14078 W:      https://linuxtv.org
14079 W:      http://palosaari.fi/linux/
14080 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14081 T:      git git://linuxtv.org/anttip/media_tree.git
14082 F:      drivers/media/tuners/qt1010*
14083
14084 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
14085 M:      Kalle Valo <kvalo@codeaurora.org>
14086 L:      ath10k@lists.infradead.org
14087 S:      Supported
14088 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
14089 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14090 F:      drivers/net/wireless/ath/ath10k/
14091
14092 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
14093 M:      Kalle Valo <kvalo@codeaurora.org>
14094 L:      ath11k@lists.infradead.org
14095 S:      Supported
14096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14097 F:      drivers/net/wireless/ath/ath11k/
14098
14099 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
14100 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
14101 L:      linux-wireless@vger.kernel.org
14102 S:      Supported
14103 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
14104 F:      drivers/net/wireless/ath/ath9k/
14105
14106 QUALCOMM CAMERA SUBSYSTEM DRIVER
14107 M:      Todor Tomov <todor.too@gmail.com>
14108 L:      linux-media@vger.kernel.org
14109 S:      Maintained
14110 F:      Documentation/admin-guide/media/qcom_camss.rst
14111 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
14112 F:      drivers/media/platform/qcom/camss/
14113
14114 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
14115 M:      Niklas Cassel <nks@flawful.org>
14116 L:      linux-pm@vger.kernel.org
14117 L:      linux-arm-msm@vger.kernel.org
14118 S:      Maintained
14119 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
14120 F:      drivers/power/avs/qcom-cpr.c
14121
14122 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
14123 M:      Ilia Lin <ilia.lin@kernel.org>
14124 L:      linux-pm@vger.kernel.org
14125 S:      Maintained
14126 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
14127 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
14128
14129 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
14130 M:      Timur Tabi <timur@kernel.org>
14131 L:      netdev@vger.kernel.org
14132 S:      Maintained
14133 F:      drivers/net/ethernet/qualcomm/emac/
14134
14135 QUALCOMM ETHQOS ETHERNET DRIVER
14136 M:      Vinod Koul <vkoul@kernel.org>
14137 L:      netdev@vger.kernel.org
14138 S:      Maintained
14139 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
14140 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
14141
14142 QUALCOMM GENERIC INTERFACE I2C DRIVER
14143 M:      Alok Chauhan <alokc@codeaurora.org>
14144 L:      linux-i2c@vger.kernel.org
14145 L:      linux-arm-msm@vger.kernel.org
14146 S:      Supported
14147 F:      drivers/i2c/busses/i2c-qcom-geni.c
14148
14149 QUALCOMM HEXAGON ARCHITECTURE
14150 M:      Brian Cain <bcain@codeaurora.org>
14151 L:      linux-hexagon@vger.kernel.org
14152 S:      Supported
14153 F:      arch/hexagon/
14154
14155 QUALCOMM HIDMA DRIVER
14156 M:      Sinan Kaya <okaya@kernel.org>
14157 L:      linux-arm-kernel@lists.infradead.org
14158 L:      linux-arm-msm@vger.kernel.org
14159 L:      dmaengine@vger.kernel.org
14160 S:      Supported
14161 F:      drivers/dma/qcom/hidma*
14162
14163 QUALCOMM IOMMU
14164 M:      Rob Clark <robdclark@gmail.com>
14165 L:      iommu@lists.linux-foundation.org
14166 L:      linux-arm-msm@vger.kernel.org
14167 S:      Maintained
14168 F:      drivers/iommu/qcom_iommu.c
14169
14170 QUALCOMM RMNET DRIVER
14171 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
14172 M:      Sean Tranchetti <stranche@codeaurora.org>
14173 L:      netdev@vger.kernel.org
14174 S:      Maintained
14175 F:      Documentation/networking/device_drivers/qualcomm/rmnet.rst
14176 F:      drivers/net/ethernet/qualcomm/rmnet/
14177 F:      include/linux/if_rmnet.h
14178
14179 QUALCOMM TSENS THERMAL DRIVER
14180 M:      Amit Kucheria <amit.kucheria@linaro.org>
14181 L:      linux-pm@vger.kernel.org
14182 L:      linux-arm-msm@vger.kernel.org
14183 S:      Maintained
14184 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14185 F:      drivers/thermal/qcom/
14186
14187 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14188 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
14189 L:      linux-media@vger.kernel.org
14190 L:      linux-arm-msm@vger.kernel.org
14191 S:      Maintained
14192 T:      git git://linuxtv.org/media_tree.git
14193 F:      Documentation/devicetree/bindings/media/*venus*
14194 F:      drivers/media/platform/qcom/venus/
14195
14196 QUALCOMM WCN36XX WIRELESS DRIVER
14197 M:      Kalle Valo <kvalo@codeaurora.org>
14198 L:      wcn36xx@lists.infradead.org
14199 S:      Supported
14200 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
14201 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
14202 F:      drivers/net/wireless/ath/wcn36xx/
14203
14204 QUANTENNA QTNFMAC WIRELESS DRIVER
14205 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
14206 R:      Sergey Matyukevich <geomatsi@gmail.com>
14207 L:      linux-wireless@vger.kernel.org
14208 S:      Maintained
14209 F:      drivers/net/wireless/quantenna
14210
14211 RADEON and AMDGPU DRM DRIVERS
14212 M:      Alex Deucher <alexander.deucher@amd.com>
14213 M:      Christian König <christian.koenig@amd.com>
14214 L:      amd-gfx@lists.freedesktop.org
14215 S:      Supported
14216 T:      git git://people.freedesktop.org/~agd5f/linux
14217 F:      drivers/gpu/drm/amd/
14218 F:      drivers/gpu/drm/radeon/
14219 F:      include/uapi/drm/amdgpu_drm.h
14220 F:      include/uapi/drm/radeon_drm.h
14221
14222 RADEON FRAMEBUFFER DISPLAY DRIVER
14223 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
14224 L:      linux-fbdev@vger.kernel.org
14225 S:      Maintained
14226 F:      drivers/video/fbdev/aty/radeon*
14227 F:      include/uapi/linux/radeonfb.h
14228
14229 RADIOSHARK RADIO DRIVER
14230 M:      Hans Verkuil <hverkuil@xs4all.nl>
14231 L:      linux-media@vger.kernel.org
14232 S:      Maintained
14233 T:      git git://linuxtv.org/media_tree.git
14234 F:      drivers/media/radio/radio-shark.c
14235
14236 RADIOSHARK2 RADIO DRIVER
14237 M:      Hans Verkuil <hverkuil@xs4all.nl>
14238 L:      linux-media@vger.kernel.org
14239 S:      Maintained
14240 T:      git git://linuxtv.org/media_tree.git
14241 F:      drivers/media/radio/radio-shark2.c
14242 F:      drivers/media/radio/radio-tea5777.c
14243
14244 RADOS BLOCK DEVICE (RBD)
14245 M:      Ilya Dryomov <idryomov@gmail.com>
14246 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
14247 L:      ceph-devel@vger.kernel.org
14248 S:      Supported
14249 W:      http://ceph.com/
14250 T:      git git://github.com/ceph/ceph-client.git
14251 F:      Documentation/ABI/testing/sysfs-bus-rbd
14252 F:      drivers/block/rbd.c
14253 F:      drivers/block/rbd_types.h
14254
14255 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14256 M:      Paul Mackerras <paulus@samba.org>
14257 L:      linux-fbdev@vger.kernel.org
14258 S:      Maintained
14259 F:      drivers/video/fbdev/aty/aty128fb.c
14260
14261 RAINSHADOW-CEC DRIVER
14262 M:      Hans Verkuil <hverkuil@xs4all.nl>
14263 L:      linux-media@vger.kernel.org
14264 S:      Maintained
14265 T:      git git://linuxtv.org/media_tree.git
14266 F:      drivers/media/cec/usb/rainshadow/
14267
14268 RALINK MIPS ARCHITECTURE
14269 M:      John Crispin <john@phrozen.org>
14270 L:      linux-mips@vger.kernel.org
14271 S:      Maintained
14272 F:      arch/mips/ralink
14273
14274 RALINK RT2X00 WIRELESS LAN DRIVER
14275 M:      Stanislaw Gruszka <stf_xl@wp.pl>
14276 M:      Helmut Schaa <helmut.schaa@googlemail.com>
14277 L:      linux-wireless@vger.kernel.org
14278 S:      Maintained
14279 F:      drivers/net/wireless/ralink/rt2x00/
14280
14281 RAMDISK RAM BLOCK DEVICE DRIVER
14282 M:      Jens Axboe <axboe@kernel.dk>
14283 S:      Maintained
14284 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14285 F:      drivers/block/brd.c
14286
14287 RANCHU VIRTUAL BOARD FOR MIPS
14288 M:      Miodrag Dinic <miodrag.dinic@mips.com>
14289 L:      linux-mips@vger.kernel.org
14290 S:      Supported
14291 F:      arch/mips/configs/generic/board-ranchu.config
14292 F:      arch/mips/generic/board-ranchu.c
14293
14294 RANDOM NUMBER DRIVER
14295 M:      "Theodore Ts'o" <tytso@mit.edu>
14296 S:      Maintained
14297 F:      drivers/char/random.c
14298
14299 RAPIDIO SUBSYSTEM
14300 M:      Matt Porter <mporter@kernel.crashing.org>
14301 M:      Alexandre Bounine <alex.bou9@gmail.com>
14302 S:      Maintained
14303 F:      drivers/rapidio/
14304
14305 RAS INFRASTRUCTURE
14306 M:      Tony Luck <tony.luck@intel.com>
14307 M:      Borislav Petkov <bp@alien8.de>
14308 L:      linux-edac@vger.kernel.org
14309 S:      Maintained
14310 F:      Documentation/admin-guide/ras.rst
14311 F:      drivers/ras/
14312 F:      include/linux/ras.h
14313 F:      include/ras/ras_event.h
14314
14315 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14316 L:      linux-wireless@vger.kernel.org
14317 S:      Orphan
14318 F:      drivers/net/wireless/ray*
14319
14320 RCMM REMOTE CONTROLS DECODER
14321 M:      Patrick Lerda <patrick9876@free.fr>
14322 S:      Maintained
14323 F:      drivers/media/rc/ir-rcmm-decoder.c
14324
14325 RCUTORTURE TEST FRAMEWORK
14326 M:      "Paul E. McKenney" <paulmck@kernel.org>
14327 M:      Josh Triplett <josh@joshtriplett.org>
14328 R:      Steven Rostedt <rostedt@goodmis.org>
14329 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14330 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14331 L:      rcu@vger.kernel.org
14332 S:      Supported
14333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14334 F:      tools/testing/selftests/rcutorture
14335
14336 RDC R-321X SoC
14337 M:      Florian Fainelli <florian@openwrt.org>
14338 S:      Maintained
14339
14340 RDC R6040 FAST ETHERNET DRIVER
14341 M:      Florian Fainelli <f.fainelli@gmail.com>
14342 L:      netdev@vger.kernel.org
14343 S:      Maintained
14344 F:      drivers/net/ethernet/rdc/r6040.c
14345
14346 RDMAVT - RDMA verbs software
14347 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
14348 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
14349 L:      linux-rdma@vger.kernel.org
14350 S:      Supported
14351 F:      drivers/infiniband/sw/rdmavt
14352
14353 RDS - RELIABLE DATAGRAM SOCKETS
14354 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
14355 L:      netdev@vger.kernel.org
14356 L:      linux-rdma@vger.kernel.org
14357 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
14358 S:      Supported
14359 W:      https://oss.oracle.com/projects/rds/
14360 F:      Documentation/networking/rds.rst
14361 F:      net/rds/
14362
14363 RDT - RESOURCE ALLOCATION
14364 M:      Fenghua Yu <fenghua.yu@intel.com>
14365 M:      Reinette Chatre <reinette.chatre@intel.com>
14366 L:      linux-kernel@vger.kernel.org
14367 S:      Supported
14368 F:      Documentation/x86/resctrl*
14369 F:      arch/x86/include/asm/resctrl.h
14370 F:      arch/x86/kernel/cpu/resctrl/
14371 F:      tools/testing/selftests/resctrl/
14372
14373 READ-COPY UPDATE (RCU)
14374 M:      "Paul E. McKenney" <paulmck@kernel.org>
14375 M:      Josh Triplett <josh@joshtriplett.org>
14376 R:      Steven Rostedt <rostedt@goodmis.org>
14377 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14378 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14379 R:      Joel Fernandes <joel@joelfernandes.org>
14380 L:      rcu@vger.kernel.org
14381 S:      Supported
14382 W:      http://www.rdrop.com/users/paulmck/RCU/
14383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14384 F:      Documentation/RCU/
14385 F:      include/linux/rcu*
14386 F:      kernel/rcu/
14387 X:      Documentation/RCU/torture.txt
14388 X:      include/linux/srcu*.h
14389 X:      kernel/rcu/srcu*.c
14390
14391 REAL TIME CLOCK (RTC) SUBSYSTEM
14392 M:      Alessandro Zummo <a.zummo@towertech.it>
14393 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14394 L:      linux-rtc@vger.kernel.org
14395 S:      Maintained
14396 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
14397 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
14398 F:      Documentation/admin-guide/rtc.rst
14399 F:      Documentation/devicetree/bindings/rtc/
14400 F:      drivers/rtc/
14401 F:      include/linux/platform_data/rtc-*
14402 F:      include/linux/rtc.h
14403 F:      include/linux/rtc/
14404 F:      include/uapi/linux/rtc.h
14405 F:      tools/testing/selftests/rtc/
14406
14407 REALTEK AUDIO CODECS
14408 M:      Oder Chiou <oder_chiou@realtek.com>
14409 S:      Maintained
14410 F:      include/sound/rt*.h
14411 F:      sound/soc/codecs/rt*
14412
14413 REALTEK RTL83xx SMI DSA ROUTER CHIPS
14414 M:      Linus Walleij <linus.walleij@linaro.org>
14415 S:      Maintained
14416 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
14417 F:      drivers/net/dsa/realtek-smi*
14418 F:      drivers/net/dsa/rtl83*
14419
14420 REALTEK WIRELESS DRIVER (rtlwifi family)
14421 M:      Ping-Ke Shih <pkshih@realtek.com>
14422 L:      linux-wireless@vger.kernel.org
14423 S:      Maintained
14424 W:      https://wireless.wiki.kernel.org/
14425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14426 F:      drivers/net/wireless/realtek/rtlwifi/
14427
14428 REALTEK WIRELESS DRIVER (rtw88)
14429 M:      Yan-Hsuan Chuang <yhchuang@realtek.com>
14430 L:      linux-wireless@vger.kernel.org
14431 S:      Maintained
14432 F:      drivers/net/wireless/realtek/rtw88/
14433
14434 REDPINE WIRELESS DRIVER
14435 M:      Amitkumar Karwar <amitkarwar@gmail.com>
14436 M:      Siva Rebbagondla <siva8118@gmail.com>
14437 L:      linux-wireless@vger.kernel.org
14438 S:      Maintained
14439 F:      drivers/net/wireless/rsi/
14440
14441 REGISTER MAP ABSTRACTION
14442 M:      Mark Brown <broonie@kernel.org>
14443 L:      linux-kernel@vger.kernel.org
14444 S:      Supported
14445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
14446 F:      Documentation/devicetree/bindings/regmap/
14447 F:      drivers/base/regmap/
14448 F:      include/linux/regmap.h
14449
14450 REISERFS FILE SYSTEM
14451 L:      reiserfs-devel@vger.kernel.org
14452 S:      Supported
14453 F:      fs/reiserfs/
14454
14455 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
14456 M:      Ohad Ben-Cohen <ohad@wizery.com>
14457 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14458 L:      linux-remoteproc@vger.kernel.org
14459 S:      Maintained
14460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
14461 F:      Documentation/ABI/testing/sysfs-class-remoteproc
14462 F:      Documentation/devicetree/bindings/remoteproc/
14463 F:      Documentation/remoteproc.txt
14464 F:      drivers/remoteproc/
14465 F:      include/linux/remoteproc.h
14466 F:      include/linux/remoteproc/
14467
14468 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
14469 M:      Ohad Ben-Cohen <ohad@wizery.com>
14470 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14471 L:      linux-remoteproc@vger.kernel.org
14472 S:      Maintained
14473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
14474 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
14475 F:      Documentation/rpmsg.txt
14476 F:      drivers/rpmsg/
14477 F:      include/linux/rpmsg.h
14478 F:      include/linux/rpmsg/
14479 F:      include/uapi/linux/rpmsg.h
14480 F:      samples/rpmsg/
14481
14482 RENESAS CLOCK DRIVERS
14483 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14484 L:      linux-renesas-soc@vger.kernel.org
14485 S:      Supported
14486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
14487 F:      drivers/clk/renesas/
14488
14489 RENESAS EMEV2 I2C DRIVER
14490 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14491 S:      Supported
14492 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
14493 F:      drivers/i2c/busses/i2c-emev2.c
14494
14495 RENESAS ETHERNET DRIVERS
14496 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
14497 L:      netdev@vger.kernel.org
14498 L:      linux-renesas-soc@vger.kernel.org
14499 F:      Documentation/devicetree/bindings/net/renesas,*.txt
14500 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
14501 F:      drivers/net/ethernet/renesas/
14502 F:      include/linux/sh_eth.h
14503
14504 RENESAS R-CAR GYROADC DRIVER
14505 M:      Marek Vasut <marek.vasut@gmail.com>
14506 L:      linux-iio@vger.kernel.org
14507 S:      Supported
14508 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
14509 F:      drivers/iio/adc/rcar-gyroadc.c
14510
14511 RENESAS R-CAR I2C DRIVERS
14512 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14513 S:      Supported
14514 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
14515 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
14516 F:      drivers/i2c/busses/i2c-rcar.c
14517 F:      drivers/i2c/busses/i2c-sh_mobile.c
14518
14519 RENESAS RIIC DRIVER
14520 M:      Chris Brandt <chris.brandt@renesas.com>
14521 S:      Supported
14522 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
14523 F:      drivers/i2c/busses/i2c-riic.c
14524
14525 RENESAS USB PHY DRIVER
14526 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14527 L:      linux-renesas-soc@vger.kernel.org
14528 S:      Maintained
14529 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
14530
14531 RESET CONTROLLER FRAMEWORK
14532 M:      Philipp Zabel <p.zabel@pengutronix.de>
14533 S:      Maintained
14534 T:      git git://git.pengutronix.de/git/pza/linux
14535 F:      Documentation/devicetree/bindings/reset/
14536 F:      drivers/reset/
14537 F:      include/dt-bindings/reset/
14538 F:      include/linux/reset-controller.h
14539 F:      include/linux/reset.h
14540 F:      include/linux/reset/
14541 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
14542
14543 RESTARTABLE SEQUENCES SUPPORT
14544 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14545 M:      Peter Zijlstra <peterz@infradead.org>
14546 M:      "Paul E. McKenney" <paulmck@kernel.org>
14547 M:      Boqun Feng <boqun.feng@gmail.com>
14548 L:      linux-kernel@vger.kernel.org
14549 S:      Supported
14550 F:      include/trace/events/rseq.h
14551 F:      include/uapi/linux/rseq.h
14552 F:      kernel/rseq.c
14553 F:      tools/testing/selftests/rseq/
14554
14555 RFKILL
14556 M:      Johannes Berg <johannes@sipsolutions.net>
14557 L:      linux-wireless@vger.kernel.org
14558 S:      Maintained
14559 W:      https://wireless.wiki.kernel.org/
14560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
14561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
14562 F:      Documentation/ABI/stable/sysfs-class-rfkill
14563 F:      Documentation/driver-api/rfkill.rst
14564 F:      include/linux/rfkill.h
14565 F:      include/uapi/linux/rfkill.h
14566 F:      net/rfkill/
14567
14568 RHASHTABLE
14569 M:      Thomas Graf <tgraf@suug.ch>
14570 M:      Herbert Xu <herbert@gondor.apana.org.au>
14571 L:      netdev@vger.kernel.org
14572 S:      Maintained
14573 F:      include/linux/rhashtable-types.h
14574 F:      include/linux/rhashtable.h
14575 F:      lib/rhashtable.c
14576 F:      lib/test_rhashtable.c
14577
14578 RICOH R5C592 MEMORYSTICK DRIVER
14579 M:      Maxim Levitsky <maximlevitsky@gmail.com>
14580 S:      Maintained
14581 F:      drivers/memstick/host/r592.*
14582
14583 RICOH SMARTMEDIA/XD DRIVER
14584 M:      Maxim Levitsky <maximlevitsky@gmail.com>
14585 S:      Maintained
14586 F:      drivers/mtd/nand/raw/r852.c
14587 F:      drivers/mtd/nand/raw/r852.h
14588
14589 RISC-V ARCHITECTURE
14590 M:      Paul Walmsley <paul.walmsley@sifive.com>
14591 M:      Palmer Dabbelt <palmer@dabbelt.com>
14592 M:      Albert Ou <aou@eecs.berkeley.edu>
14593 L:      linux-riscv@lists.infradead.org
14594 S:      Supported
14595 P:      Documentation/riscv/patch-acceptance.rst
14596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
14597 F:      arch/riscv/
14598 N:      riscv
14599 K:      riscv
14600
14601 RNBD BLOCK DRIVERS
14602 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
14603 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14604 L:      linux-block@vger.kernel.org
14605 S:      Maintained
14606 F:      drivers/block/rnbd/
14607
14608 ROCCAT DRIVERS
14609 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
14610 S:      Maintained
14611 W:      http://sourceforge.net/projects/roccat/
14612 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
14613 F:      drivers/hid/hid-roccat*
14614 F:      include/linux/hid-roccat*
14615
14616 ROCKCHIP ISP V1 DRIVER
14617 M:      Helen Koike <helen.koike@collabora.com>
14618 L:      linux-media@vger.kernel.org
14619 S:      Maintained
14620 F:      drivers/staging/media/rkisp1/
14621
14622 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
14623 M:      Jacob Chen <jacob-chen@iotwrt.com>
14624 M:      Ezequiel Garcia <ezequiel@collabora.com>
14625 L:      linux-media@vger.kernel.org
14626 L:      linux-rockchip@lists.infradead.org
14627 S:      Maintained
14628 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
14629 F:      drivers/media/platform/rockchip/rga/
14630
14631 ROCKCHIP VIDEO DECODER DRIVER
14632 M:      Ezequiel Garcia <ezequiel@collabora.com>
14633 L:      linux-media@vger.kernel.org
14634 L:      linux-rockchip@lists.infradead.org
14635 S:      Maintained
14636 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
14637 F:      drivers/staging/media/rkvdec/
14638
14639 ROCKER DRIVER
14640 M:      Jiri Pirko <jiri@resnulli.us>
14641 L:      netdev@vger.kernel.org
14642 S:      Supported
14643 F:      drivers/net/ethernet/rocker/
14644
14645 ROCKETPORT DRIVER
14646 S:      Maintained
14647 W:      http://www.comtrol.com
14648 F:      Documentation/driver-api/serial/rocket.rst
14649 F:      drivers/tty/rocket*
14650
14651 ROCKETPORT EXPRESS/INFINITY DRIVER
14652 M:      Kevin Cernekee <cernekee@gmail.com>
14653 L:      linux-serial@vger.kernel.org
14654 S:      Odd Fixes
14655 F:      drivers/tty/serial/rp2.*
14656
14657 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
14658 M:      Tomasz Duszynski <tduszyns@gmail.com>
14659 S:      Maintained
14660 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
14661 F:      drivers/iio/light/bh1750.c
14662
14663 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
14664 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14665 L:      linux-kernel@vger.kernel.org
14666 L:      linux-renesas-soc@vger.kernel.org
14667 S:      Supported
14668 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
14669 F:      drivers/gpio/gpio-bd9571mwv.c
14670 F:      drivers/mfd/bd9571mwv.c
14671 F:      drivers/regulator/bd9571mwv-regulator.c
14672 F:      include/linux/mfd/bd9571mwv.h
14673
14674 ROSE NETWORK LAYER
14675 M:      Ralf Baechle <ralf@linux-mips.org>
14676 L:      linux-hams@vger.kernel.org
14677 S:      Maintained
14678 W:      http://www.linux-ax25.org/
14679 F:      include/net/rose.h
14680 F:      include/uapi/linux/rose.h
14681 F:      net/rose/
14682
14683 ROTATION DRIVER FOR ALLWINNER A83T
14684 M:      Jernej Skrabec <jernej.skrabec@siol.net>
14685 L:      linux-media@vger.kernel.org
14686 S:      Maintained
14687 T:      git git://linuxtv.org/media_tree.git
14688 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
14689 F:      drivers/media/platform/sunxi/sun8i-rotate/
14690
14691 RTL2830 MEDIA DRIVER
14692 M:      Antti Palosaari <crope@iki.fi>
14693 L:      linux-media@vger.kernel.org
14694 S:      Maintained
14695 W:      https://linuxtv.org
14696 W:      http://palosaari.fi/linux/
14697 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14698 T:      git git://linuxtv.org/anttip/media_tree.git
14699 F:      drivers/media/dvb-frontends/rtl2830*
14700
14701 RTL2832 MEDIA DRIVER
14702 M:      Antti Palosaari <crope@iki.fi>
14703 L:      linux-media@vger.kernel.org
14704 S:      Maintained
14705 W:      https://linuxtv.org
14706 W:      http://palosaari.fi/linux/
14707 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14708 T:      git git://linuxtv.org/anttip/media_tree.git
14709 F:      drivers/media/dvb-frontends/rtl2832*
14710
14711 RTL2832_SDR MEDIA DRIVER
14712 M:      Antti Palosaari <crope@iki.fi>
14713 L:      linux-media@vger.kernel.org
14714 S:      Maintained
14715 W:      https://linuxtv.org
14716 W:      http://palosaari.fi/linux/
14717 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14718 T:      git git://linuxtv.org/anttip/media_tree.git
14719 F:      drivers/media/dvb-frontends/rtl2832_sdr*
14720
14721 RTL8180 WIRELESS DRIVER
14722 L:      linux-wireless@vger.kernel.org
14723 S:      Orphan
14724 W:      https://wireless.wiki.kernel.org/
14725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14726 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
14727
14728 RTL8187 WIRELESS DRIVER
14729 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
14730 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
14731 M:      Larry Finger <Larry.Finger@lwfinger.net>
14732 L:      linux-wireless@vger.kernel.org
14733 S:      Maintained
14734 W:      https://wireless.wiki.kernel.org/
14735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14736 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
14737
14738 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
14739 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
14740 L:      linux-wireless@vger.kernel.org
14741 S:      Maintained
14742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
14743 F:      drivers/net/wireless/realtek/rtl8xxxu/
14744
14745 RTRS TRANSPORT DRIVERS
14746 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
14747 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14748 L:      linux-rdma@vger.kernel.org
14749 S:      Maintained
14750 F:      drivers/infiniband/ulp/rtrs/
14751
14752 RXRPC SOCKETS (AF_RXRPC)
14753 M:      David Howells <dhowells@redhat.com>
14754 L:      linux-afs@lists.infradead.org
14755 S:      Supported
14756 W:      https://www.infradead.org/~dhowells/kafs/
14757 F:      Documentation/networking/rxrpc.rst
14758 F:      include/keys/rxrpc-type.h
14759 F:      include/net/af_rxrpc.h
14760 F:      include/trace/events/rxrpc.h
14761 F:      include/uapi/linux/rxrpc.h
14762 F:      net/rxrpc/
14763
14764 S3 SAVAGE FRAMEBUFFER DRIVER
14765 M:      Antonino Daplas <adaplas@gmail.com>
14766 L:      linux-fbdev@vger.kernel.org
14767 S:      Maintained
14768 F:      drivers/video/fbdev/savage/
14769
14770 S390
14771 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
14772 M:      Vasily Gorbik <gor@linux.ibm.com>
14773 M:      Christian Borntraeger <borntraeger@de.ibm.com>
14774 L:      linux-s390@vger.kernel.org
14775 S:      Supported
14776 W:      http://www.ibm.com/developerworks/linux/linux390/
14777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
14778 F:      Documentation/driver-api/s390-drivers.rst
14779 F:      Documentation/s390/
14780 F:      arch/s390/
14781 F:      drivers/s390/
14782
14783 S390 COMMON I/O LAYER
14784 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
14785 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
14786 L:      linux-s390@vger.kernel.org
14787 S:      Supported
14788 W:      http://www.ibm.com/developerworks/linux/linux390/
14789 F:      drivers/s390/cio/
14790
14791 S390 DASD DRIVER
14792 M:      Stefan Haberland <sth@linux.ibm.com>
14793 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
14794 L:      linux-s390@vger.kernel.org
14795 S:      Supported
14796 W:      http://www.ibm.com/developerworks/linux/linux390/
14797 F:      block/partitions/ibm.c
14798 F:      drivers/s390/block/dasd*
14799 F:      include/linux/dasd_mod.h
14800
14801 S390 IOMMU (PCI)
14802 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14803 L:      linux-s390@vger.kernel.org
14804 S:      Supported
14805 W:      http://www.ibm.com/developerworks/linux/linux390/
14806 F:      drivers/iommu/s390-iommu.c
14807
14808 S390 IUCV NETWORK LAYER
14809 M:      Julian Wiedmann <jwi@linux.ibm.com>
14810 M:      Karsten Graul <kgraul@linux.ibm.com>
14811 M:      Ursula Braun <ubraun@linux.ibm.com>
14812 L:      linux-s390@vger.kernel.org
14813 S:      Supported
14814 W:      http://www.ibm.com/developerworks/linux/linux390/
14815 F:      drivers/s390/net/*iucv*
14816 F:      include/net/iucv/
14817 F:      net/iucv/
14818
14819 S390 NETWORK DRIVERS
14820 M:      Julian Wiedmann <jwi@linux.ibm.com>
14821 M:      Karsten Graul <kgraul@linux.ibm.com>
14822 M:      Ursula Braun <ubraun@linux.ibm.com>
14823 L:      linux-s390@vger.kernel.org
14824 S:      Supported
14825 W:      http://www.ibm.com/developerworks/linux/linux390/
14826 F:      drivers/s390/net/
14827
14828 S390 PCI SUBSYSTEM
14829 M:      Niklas Schnelle <schnelle@linux.ibm.com>
14830 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14831 L:      linux-s390@vger.kernel.org
14832 S:      Supported
14833 W:      http://www.ibm.com/developerworks/linux/linux390/
14834 F:      arch/s390/pci/
14835 F:      drivers/pci/hotplug/s390_pci_hpc.c
14836
14837 S390 VFIO AP DRIVER
14838 M:      Tony Krowiak <akrowiak@linux.ibm.com>
14839 M:      Pierre Morel <pmorel@linux.ibm.com>
14840 M:      Halil Pasic <pasic@linux.ibm.com>
14841 L:      linux-s390@vger.kernel.org
14842 S:      Supported
14843 W:      http://www.ibm.com/developerworks/linux/linux390/
14844 F:      Documentation/s390/vfio-ap.rst
14845 F:      drivers/s390/crypto/vfio_ap_drv.c
14846 F:      drivers/s390/crypto/vfio_ap_ops.c
14847 F:      drivers/s390/crypto/vfio_ap_private.h
14848
14849 S390 VFIO-CCW DRIVER
14850 M:      Cornelia Huck <cohuck@redhat.com>
14851 M:      Eric Farman <farman@linux.ibm.com>
14852 R:      Halil Pasic <pasic@linux.ibm.com>
14853 L:      linux-s390@vger.kernel.org
14854 L:      kvm@vger.kernel.org
14855 S:      Supported
14856 F:      Documentation/s390/vfio-ccw.rst
14857 F:      drivers/s390/cio/vfio_ccw*
14858 F:      include/uapi/linux/vfio_ccw.h
14859
14860 S390 ZCRYPT DRIVER
14861 M:      Harald Freudenberger <freude@linux.ibm.com>
14862 L:      linux-s390@vger.kernel.org
14863 S:      Supported
14864 W:      http://www.ibm.com/developerworks/linux/linux390/
14865 F:      drivers/s390/crypto/
14866
14867 S390 ZFCP DRIVER
14868 M:      Steffen Maier <maier@linux.ibm.com>
14869 M:      Benjamin Block <bblock@linux.ibm.com>
14870 L:      linux-s390@vger.kernel.org
14871 S:      Supported
14872 W:      http://www.ibm.com/developerworks/linux/linux390/
14873 F:      drivers/s390/scsi/zfcp_*
14874
14875 S3C24XX SD/MMC Driver
14876 M:      Ben Dooks <ben-linux@fluff.org>
14877 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14878 S:      Supported
14879 F:      drivers/mmc/host/s3cmci.*
14880
14881 SAA6588 RDS RECEIVER DRIVER
14882 M:      Hans Verkuil <hverkuil@xs4all.nl>
14883 L:      linux-media@vger.kernel.org
14884 S:      Odd Fixes
14885 W:      https://linuxtv.org
14886 T:      git git://linuxtv.org/media_tree.git
14887 F:      drivers/media/i2c/saa6588*
14888
14889 SAA7134 VIDEO4LINUX DRIVER
14890 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
14891 L:      linux-media@vger.kernel.org
14892 S:      Odd fixes
14893 W:      https://linuxtv.org
14894 T:      git git://linuxtv.org/media_tree.git
14895 F:      Documentation/driver-api/media/drivers/saa7134*
14896 F:      drivers/media/pci/saa7134/
14897
14898 SAA7146 VIDEO4LINUX-2 DRIVER
14899 M:      Hans Verkuil <hverkuil@xs4all.nl>
14900 L:      linux-media@vger.kernel.org
14901 S:      Maintained
14902 T:      git git://linuxtv.org/media_tree.git
14903 F:      drivers/media/common/saa7146/
14904 F:      drivers/media/pci/saa7146/
14905 F:      include/media/drv-intf/saa7146*
14906
14907 SAFESETID SECURITY MODULE
14908 M:      Micah Morton <mortonm@chromium.org>
14909 S:      Supported
14910 F:      Documentation/admin-guide/LSM/SafeSetID.rst
14911 F:      security/safesetid/
14912
14913 SAMSUNG AUDIO (ASoC) DRIVERS
14914 M:      Krzysztof Kozlowski <krzk@kernel.org>
14915 M:      Sangbeom Kim <sbkim73@samsung.com>
14916 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14917 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14918 S:      Supported
14919 F:      Documentation/devicetree/bindings/sound/samsung*
14920 F:      sound/soc/samsung/
14921
14922 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
14923 M:      Krzysztof Kozlowski <krzk@kernel.org>
14924 L:      linux-crypto@vger.kernel.org
14925 L:      linux-samsung-soc@vger.kernel.org
14926 S:      Maintained
14927 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
14928 F:      drivers/crypto/exynos-rng.c
14929
14930 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
14931 M:      Łukasz Stelmach <l.stelmach@samsung.com>
14932 L:      linux-samsung-soc@vger.kernel.org
14933 S:      Maintained
14934 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
14935 F:      drivers/char/hw_random/exynos-trng.c
14936
14937 SAMSUNG FRAMEBUFFER DRIVER
14938 M:      Jingoo Han <jingoohan1@gmail.com>
14939 L:      linux-fbdev@vger.kernel.org
14940 S:      Maintained
14941 F:      drivers/video/fbdev/s3c-fb.c
14942
14943 SAMSUNG LAPTOP DRIVER
14944 M:      Corentin Chary <corentin.chary@gmail.com>
14945 L:      platform-driver-x86@vger.kernel.org
14946 S:      Maintained
14947 F:      drivers/platform/x86/samsung-laptop.c
14948
14949 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
14950 M:      Sangbeom Kim <sbkim73@samsung.com>
14951 M:      Krzysztof Kozlowski <krzk@kernel.org>
14952 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14953 L:      linux-kernel@vger.kernel.org
14954 L:      linux-samsung-soc@vger.kernel.org
14955 S:      Supported
14956 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
14957 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
14958 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
14959 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
14960 F:      drivers/clk/clk-s2mps11.c
14961 F:      drivers/mfd/sec*.c
14962 F:      drivers/regulator/s2m*.c
14963 F:      drivers/regulator/s5m*.c
14964 F:      drivers/rtc/rtc-s5m.c
14965 F:      include/linux/mfd/samsung/
14966
14967 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
14968 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
14969 L:      linux-media@vger.kernel.org
14970 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14971 S:      Maintained
14972 F:      drivers/media/platform/s3c-camif/
14973 F:      include/media/drv-intf/s3c_camif.h
14974
14975 SAMSUNG S3FWRN5 NFC DRIVER
14976 M:      Robert Baldyga <r.baldyga@samsung.com>
14977 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
14978 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
14979 S:      Supported
14980 F:      drivers/nfc/s3fwrn5
14981
14982 SAMSUNG S5C73M3 CAMERA DRIVER
14983 M:      Kyungmin Park <kyungmin.park@samsung.com>
14984 M:      Andrzej Hajda <a.hajda@samsung.com>
14985 L:      linux-media@vger.kernel.org
14986 S:      Supported
14987 F:      drivers/media/i2c/s5c73m3/*
14988
14989 SAMSUNG S5K5BAF CAMERA DRIVER
14990 M:      Kyungmin Park <kyungmin.park@samsung.com>
14991 M:      Andrzej Hajda <a.hajda@samsung.com>
14992 L:      linux-media@vger.kernel.org
14993 S:      Supported
14994 F:      drivers/media/i2c/s5k5baf.c
14995
14996 SAMSUNG S5P Security SubSystem (SSS) DRIVER
14997 M:      Krzysztof Kozlowski <krzk@kernel.org>
14998 M:      Vladimir Zapolskiy <vz@mleia.com>
14999 M:      Kamil Konieczny <k.konieczny@samsung.com>
15000 L:      linux-crypto@vger.kernel.org
15001 L:      linux-samsung-soc@vger.kernel.org
15002 S:      Maintained
15003 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
15004 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
15005 F:      drivers/crypto/s5p-sss.c
15006
15007 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
15008 M:      Kyungmin Park <kyungmin.park@samsung.com>
15009 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15010 L:      linux-media@vger.kernel.org
15011 S:      Supported
15012 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
15013 F:      drivers/media/platform/exynos4-is/
15014
15015 SAMSUNG SOC CLOCK DRIVERS
15016 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15017 M:      Tomasz Figa <tomasz.figa@gmail.com>
15018 M:      Chanwoo Choi <cw00.choi@samsung.com>
15019 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
15020 S:      Supported
15021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
15022 F:      Documentation/devicetree/bindings/clock/exynos*.txt
15023 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
15024 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
15025 F:      drivers/clk/samsung/
15026 F:      include/dt-bindings/clock/exynos*.h
15027
15028 SAMSUNG SPI DRIVERS
15029 M:      Kukjin Kim <kgene@kernel.org>
15030 M:      Krzysztof Kozlowski <krzk@kernel.org>
15031 M:      Andi Shyti <andi@etezian.org>
15032 L:      linux-spi@vger.kernel.org
15033 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
15034 S:      Maintained
15035 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
15036 F:      drivers/spi/spi-s3c*
15037 F:      include/linux/platform_data/spi-s3c64xx.h
15038
15039 SAMSUNG SXGBE DRIVERS
15040 M:      Byungho An <bh74.an@samsung.com>
15041 L:      netdev@vger.kernel.org
15042 S:      Supported
15043 F:      drivers/net/ethernet/samsung/sxgbe/
15044
15045 SAMSUNG THERMAL DRIVER
15046 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15047 L:      linux-pm@vger.kernel.org
15048 L:      linux-samsung-soc@vger.kernel.org
15049 S:      Supported
15050 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
15051 F:      drivers/thermal/samsung/
15052
15053 SAMSUNG USB2 PHY DRIVER
15054 M:      Kamil Debski <kamil@wypas.org>
15055 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15056 L:      linux-kernel@vger.kernel.org
15057 S:      Supported
15058 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
15059 F:      Documentation/driver-api/phy/samsung-usb2.rst
15060 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
15061 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
15062 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
15063 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
15064 F:      drivers/phy/samsung/phy-samsung-usb2.c
15065 F:      drivers/phy/samsung/phy-samsung-usb2.h
15066
15067 SC1200 WDT DRIVER
15068 M:      Zwane Mwaikambo <zwanem@gmail.com>
15069 S:      Maintained
15070 F:      drivers/watchdog/sc1200wdt.c
15071
15072 SCHEDULER
15073 M:      Ingo Molnar <mingo@redhat.com>
15074 M:      Peter Zijlstra <peterz@infradead.org>
15075 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
15076 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
15077 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
15078 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
15079 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
15080 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
15081 L:      linux-kernel@vger.kernel.org
15082 S:      Maintained
15083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
15084 F:      include/linux/preempt.h
15085 F:      include/linux/sched.h
15086 F:      include/linux/wait.h
15087 F:      include/uapi/linux/sched.h
15088 F:      kernel/sched/
15089
15090 SCR24X CHIP CARD INTERFACE DRIVER
15091 M:      Lubomir Rintel <lkundrak@v3.sk>
15092 S:      Supported
15093 F:      drivers/char/pcmcia/scr24x_cs.c
15094
15095 SCSI CDROM DRIVER
15096 M:      Jens Axboe <axboe@kernel.dk>
15097 L:      linux-scsi@vger.kernel.org
15098 S:      Maintained
15099 W:      http://www.kernel.dk
15100 F:      drivers/scsi/sr*
15101
15102 SCSI RDMA PROTOCOL (SRP) INITIATOR
15103 M:      Bart Van Assche <bvanassche@acm.org>
15104 L:      linux-rdma@vger.kernel.org
15105 S:      Supported
15106 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15107 F:      drivers/infiniband/ulp/srp/
15108 F:      include/scsi/srp.h
15109
15110 SCSI RDMA PROTOCOL (SRP) TARGET
15111 M:      Bart Van Assche <bvanassche@acm.org>
15112 L:      linux-rdma@vger.kernel.org
15113 L:      target-devel@vger.kernel.org
15114 S:      Supported
15115 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15116 F:      drivers/infiniband/ulp/srpt/
15117
15118 SCSI SG DRIVER
15119 M:      Doug Gilbert <dgilbert@interlog.com>
15120 L:      linux-scsi@vger.kernel.org
15121 S:      Maintained
15122 W:      http://sg.danny.cz/sg
15123 F:      Documentation/scsi/scsi-generic.rst
15124 F:      drivers/scsi/sg.c
15125 F:      include/scsi/sg.h
15126
15127 SCSI SUBSYSTEM
15128 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
15129 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15130 L:      linux-scsi@vger.kernel.org
15131 S:      Maintained
15132 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
15133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
15134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15135 F:      Documentation/devicetree/bindings/scsi/
15136 F:      drivers/scsi/
15137 F:      include/scsi/
15138
15139 SCSI TAPE DRIVER
15140 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
15141 L:      linux-scsi@vger.kernel.org
15142 S:      Maintained
15143 F:      Documentation/scsi/st.rst
15144 F:      drivers/scsi/st.*
15145 F:      drivers/scsi/st_*.h
15146
15147 SCSI TARGET SUBSYSTEM
15148 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15149 L:      linux-scsi@vger.kernel.org
15150 L:      target-devel@vger.kernel.org
15151 S:      Supported
15152 W:      http://www.linux-iscsi.org
15153 Q:      https://patchwork.kernel.org/project/target-devel/list/
15154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15155 F:      Documentation/target/
15156 F:      drivers/target/
15157 F:      include/target/
15158
15159 SCTP PROTOCOL
15160 M:      Vlad Yasevich <vyasevich@gmail.com>
15161 M:      Neil Horman <nhorman@tuxdriver.com>
15162 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
15163 L:      linux-sctp@vger.kernel.org
15164 S:      Maintained
15165 W:      http://lksctp.sourceforge.net
15166 F:      Documentation/networking/sctp.rst
15167 F:      include/linux/sctp.h
15168 F:      include/net/sctp/
15169 F:      include/uapi/linux/sctp.h
15170 F:      net/sctp/
15171
15172 SCx200 CPU SUPPORT
15173 M:      Jim Cromie <jim.cromie@gmail.com>
15174 S:      Odd Fixes
15175 F:      Documentation/i2c/busses/scx200_acb.rst
15176 F:      arch/x86/platform/scx200/
15177 F:      drivers/i2c/busses/scx200*
15178 F:      drivers/mtd/maps/scx200_docflash.c
15179 F:      drivers/watchdog/scx200_wdt.c
15180 F:      include/linux/scx200.h
15181
15182 SCx200 GPIO DRIVER
15183 M:      Jim Cromie <jim.cromie@gmail.com>
15184 S:      Maintained
15185 F:      drivers/char/scx200_gpio.c
15186 F:      include/linux/scx200_gpio.h
15187
15188 SCx200 HRT CLOCKSOURCE DRIVER
15189 M:      Jim Cromie <jim.cromie@gmail.com>
15190 S:      Maintained
15191 F:      drivers/clocksource/scx200_hrt.c
15192
15193 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15194 M:      Sascha Sommer <saschasommer@freenet.de>
15195 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
15196 S:      Maintained
15197 F:      drivers/mmc/host/sdricoh_cs.c
15198
15199 SECO BOARDS CEC DRIVER
15200 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
15201 S:      Maintained
15202 F:      drivers/media/platform/seco-cec/seco-cec.c
15203 F:      drivers/media/platform/seco-cec/seco-cec.h
15204
15205 SECURE COMPUTING
15206 M:      Kees Cook <keescook@chromium.org>
15207 R:      Andy Lutomirski <luto@amacapital.net>
15208 R:      Will Drewry <wad@chromium.org>
15209 S:      Supported
15210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15211 F:      Documentation/userspace-api/seccomp_filter.rst
15212 F:      include/linux/seccomp.h
15213 F:      include/uapi/linux/seccomp.h
15214 F:      kernel/seccomp.c
15215 F:      tools/testing/selftests/kselftest_harness.h
15216 F:      tools/testing/selftests/seccomp/*
15217 K:      \bsecure_computing
15218 K:      \bTIF_SECCOMP\b
15219
15220 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15221 M:      Al Cooper <alcooperx@gmail.com>
15222 L:      linux-mmc@vger.kernel.org
15223 L:      bcm-kernel-feedback-list@broadcom.com
15224 S:      Maintained
15225 F:      drivers/mmc/host/sdhci-brcmstb*
15226
15227 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15228 M:      Adrian Hunter <adrian.hunter@intel.com>
15229 L:      linux-mmc@vger.kernel.org
15230 S:      Maintained
15231 F:      drivers/mmc/host/sdhci*
15232 F:      include/linux/mmc/sdhci*
15233
15234 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15235 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
15236 L:      linux-mmc@vger.kernel.org
15237 S:      Supported
15238 F:      drivers/mmc/host/sdhci-of-at91.c
15239
15240 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15241 M:      Ben Dooks <ben-linux@fluff.org>
15242 M:      Jaehoon Chung <jh80.chung@samsung.com>
15243 L:      linux-mmc@vger.kernel.org
15244 S:      Maintained
15245 F:      drivers/mmc/host/sdhci-s3c*
15246
15247 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15248 M:      Viresh Kumar <vireshk@kernel.org>
15249 L:      linux-mmc@vger.kernel.org
15250 S:      Maintained
15251 F:      drivers/mmc/host/sdhci-spear.c
15252
15253 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15254 M:      Kishon Vijay Abraham I <kishon@ti.com>
15255 L:      linux-mmc@vger.kernel.org
15256 S:      Maintained
15257 F:      drivers/mmc/host/sdhci-omap.c
15258
15259 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15260 M:      Jonathan Derrick <jonathan.derrick@intel.com>
15261 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
15262 L:      linux-block@vger.kernel.org
15263 S:      Supported
15264 F:      block/opal_proto.h
15265 F:      block/sed*
15266 F:      include/linux/sed*
15267 F:      include/uapi/linux/sed*
15268
15269 SECURITY CONTACT
15270 M:      Security Officers <security@kernel.org>
15271 S:      Supported
15272
15273 SECURITY SUBSYSTEM
15274 M:      James Morris <jmorris@namei.org>
15275 M:      "Serge E. Hallyn" <serge@hallyn.com>
15276 L:      linux-security-module@vger.kernel.org (suggested Cc:)
15277 S:      Supported
15278 W:      http://kernsec.org/
15279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15280 F:      security/
15281 X:      security/selinux/
15282
15283 SELINUX SECURITY MODULE
15284 M:      Paul Moore <paul@paul-moore.com>
15285 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
15286 M:      Eric Paris <eparis@parisplace.org>
15287 L:      selinux@vger.kernel.org
15288 S:      Supported
15289 W:      https://selinuxproject.org
15290 W:      https://github.com/SELinuxProject
15291 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15292 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15293 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
15294 F:      Documentation/admin-guide/LSM/SELinux.rst
15295 F:      include/uapi/linux/selinux_netlink.h
15296 F:      scripts/selinux/
15297 F:      security/selinux/
15298
15299 SENSABLE PHANTOM
15300 M:      Jiri Slaby <jirislaby@gmail.com>
15301 S:      Maintained
15302 F:      drivers/misc/phantom.c
15303 F:      include/uapi/linux/phantom.h
15304
15305 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
15306 M:      Tomasz Duszynski <tduszyns@gmail.com>
15307 S:      Maintained
15308 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
15309 F:      drivers/iio/chemical/sps30.c
15310
15311 SERIAL DEVICE BUS
15312 M:      Rob Herring <robh@kernel.org>
15313 L:      linux-serial@vger.kernel.org
15314 S:      Maintained
15315 F:      Documentation/devicetree/bindings/serial/serial.yaml
15316 F:      drivers/tty/serdev/
15317 F:      include/linux/serdev.h
15318
15319 SERIAL DRIVERS
15320 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15321 L:      linux-serial@vger.kernel.org
15322 S:      Maintained
15323 F:      Documentation/devicetree/bindings/serial/
15324 F:      drivers/tty/serial/
15325
15326 SERIAL IR RECEIVER
15327 M:      Sean Young <sean@mess.org>
15328 L:      linux-media@vger.kernel.org
15329 S:      Maintained
15330 F:      drivers/media/rc/serial_ir.c
15331
15332 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15333 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15334 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15335 S:      Maintained
15336 F:      Documentation/devicetree/bindings/slimbus/
15337 F:      drivers/slimbus/
15338 F:      include/linux/slimbus.h
15339
15340 SFC NETWORK DRIVER
15341 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
15342 M:      Edward Cree <ecree@solarflare.com>
15343 M:      Martin Habets <mhabets@solarflare.com>
15344 L:      netdev@vger.kernel.org
15345 S:      Supported
15346 F:      drivers/net/ethernet/sfc/
15347
15348 SFF/SFP/SFP+ MODULE SUPPORT
15349 M:      Russell King <linux@armlinux.org.uk>
15350 L:      netdev@vger.kernel.org
15351 S:      Maintained
15352 F:      drivers/net/phy/phylink.c
15353 F:      drivers/net/phy/sfp*
15354 F:      include/linux/phylink.h
15355 F:      include/linux/sfp.h
15356 K:      phylink
15357
15358 SGI GRU DRIVER
15359 M:      Dimitri Sivanich <sivanich@sgi.com>
15360 S:      Maintained
15361 F:      drivers/misc/sgi-gru/
15362
15363 SGI XP/XPC/XPNET DRIVER
15364 M:      Cliff Whickman <cpw@sgi.com>
15365 M:      Robin Holt <robinmholt@gmail.com>
15366 S:      Maintained
15367 F:      drivers/misc/sgi-xp/
15368
15369 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
15370 M:      Ursula Braun <ubraun@linux.ibm.com>
15371 M:      Karsten Graul <kgraul@linux.ibm.com>
15372 L:      linux-s390@vger.kernel.org
15373 S:      Supported
15374 W:      http://www.ibm.com/developerworks/linux/linux390/
15375 F:      net/smc/
15376
15377 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
15378 M:      Linus Walleij <linus.walleij@linaro.org>
15379 L:      linux-iio@vger.kernel.org
15380 S:      Maintained
15381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
15382 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
15383 F:      drivers/iio/light/gp2ap002.c
15384
15385 SHARP RJ54N1CB0C SENSOR DRIVER
15386 M:      Jacopo Mondi <jacopo@jmondi.org>
15387 L:      linux-media@vger.kernel.org
15388 S:      Odd fixes
15389 T:      git git://linuxtv.org/media_tree.git
15390 F:      drivers/media/i2c/rj54n1cb0c.c
15391 F:      include/media/i2c/rj54n1cb0c.h
15392
15393 SH_VOU V4L2 OUTPUT DRIVER
15394 L:      linux-media@vger.kernel.org
15395 S:      Orphan
15396 F:      drivers/media/platform/sh_vou.c
15397 F:      include/media/drv-intf/sh_vou.h
15398
15399 SI2157 MEDIA DRIVER
15400 M:      Antti Palosaari <crope@iki.fi>
15401 L:      linux-media@vger.kernel.org
15402 S:      Maintained
15403 W:      https://linuxtv.org
15404 W:      http://palosaari.fi/linux/
15405 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15406 T:      git git://linuxtv.org/anttip/media_tree.git
15407 F:      drivers/media/tuners/si2157*
15408
15409 SI2165 MEDIA DRIVER
15410 M:      Matthias Schwarzott <zzam@gentoo.org>
15411 L:      linux-media@vger.kernel.org
15412 S:      Maintained
15413 W:      https://linuxtv.org
15414 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15415 F:      drivers/media/dvb-frontends/si2165*
15416
15417 SI2168 MEDIA DRIVER
15418 M:      Antti Palosaari <crope@iki.fi>
15419 L:      linux-media@vger.kernel.org
15420 S:      Maintained
15421 W:      https://linuxtv.org
15422 W:      http://palosaari.fi/linux/
15423 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15424 T:      git git://linuxtv.org/anttip/media_tree.git
15425 F:      drivers/media/dvb-frontends/si2168*
15426
15427 SI470X FM RADIO RECEIVER I2C DRIVER
15428 M:      Hans Verkuil <hverkuil@xs4all.nl>
15429 L:      linux-media@vger.kernel.org
15430 S:      Odd Fixes
15431 W:      https://linuxtv.org
15432 T:      git git://linuxtv.org/media_tree.git
15433 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
15434
15435 SI470X FM RADIO RECEIVER USB DRIVER
15436 M:      Hans Verkuil <hverkuil@xs4all.nl>
15437 L:      linux-media@vger.kernel.org
15438 S:      Maintained
15439 W:      https://linuxtv.org
15440 T:      git git://linuxtv.org/media_tree.git
15441 F:      drivers/media/radio/si470x/radio-si470x-common.c
15442 F:      drivers/media/radio/si470x/radio-si470x-usb.c
15443 F:      drivers/media/radio/si470x/radio-si470x.h
15444
15445 SI4713 FM RADIO TRANSMITTER I2C DRIVER
15446 M:      Eduardo Valentin <edubezval@gmail.com>
15447 L:      linux-media@vger.kernel.org
15448 S:      Odd Fixes
15449 W:      https://linuxtv.org
15450 T:      git git://linuxtv.org/media_tree.git
15451 F:      drivers/media/radio/si4713/si4713.?
15452
15453 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
15454 M:      Eduardo Valentin <edubezval@gmail.com>
15455 L:      linux-media@vger.kernel.org
15456 S:      Odd Fixes
15457 W:      https://linuxtv.org
15458 T:      git git://linuxtv.org/media_tree.git
15459 F:      drivers/media/radio/si4713/radio-platform-si4713.c
15460
15461 SI4713 FM RADIO TRANSMITTER USB DRIVER
15462 M:      Hans Verkuil <hverkuil@xs4all.nl>
15463 L:      linux-media@vger.kernel.org
15464 S:      Maintained
15465 W:      https://linuxtv.org
15466 T:      git git://linuxtv.org/media_tree.git
15467 F:      drivers/media/radio/si4713/radio-usb-si4713.c
15468
15469 SIANO DVB DRIVER
15470 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15471 L:      linux-media@vger.kernel.org
15472 S:      Odd fixes
15473 W:      https://linuxtv.org
15474 T:      git git://linuxtv.org/media_tree.git
15475 F:      drivers/media/common/siano/
15476 F:      drivers/media/mmc/siano/
15477 F:      drivers/media/usb/siano/
15478 F:      drivers/media/usb/siano/
15479
15480 SIFIVE DRIVERS
15481 M:      Palmer Dabbelt <palmer@dabbelt.com>
15482 M:      Paul Walmsley <paul.walmsley@sifive.com>
15483 L:      linux-riscv@lists.infradead.org
15484 S:      Supported
15485 T:      git git://github.com/sifive/riscv-linux.git
15486 N:      sifive
15487 K:      [^@]sifive
15488
15489 SIFIVE FU540 SYSTEM-ON-CHIP
15490 M:      Paul Walmsley <paul.walmsley@sifive.com>
15491 M:      Palmer Dabbelt <palmer@dabbelt.com>
15492 L:      linux-riscv@lists.infradead.org
15493 S:      Supported
15494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
15495 N:      fu540
15496 K:      fu540
15497
15498 SIFIVE PDMA DRIVER
15499 M:      Green Wan <green.wan@sifive.com>
15500 S:      Maintained
15501 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
15502 F:      drivers/dma/sf-pdma/
15503
15504 SILEAD TOUCHSCREEN DRIVER
15505 M:      Hans de Goede <hdegoede@redhat.com>
15506 L:      linux-input@vger.kernel.org
15507 L:      platform-driver-x86@vger.kernel.org
15508 S:      Maintained
15509 F:      drivers/input/touchscreen/silead.c
15510 F:      drivers/platform/x86/touchscreen_dmi.c
15511
15512 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
15513 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
15514 S:      Supported
15515 F:      drivers/staging/wfx/
15516
15517 SILICON MOTION SM712 FRAME BUFFER DRIVER
15518 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15519 M:      Teddy Wang <teddy.wang@siliconmotion.com>
15520 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15521 L:      linux-fbdev@vger.kernel.org
15522 S:      Maintained
15523 F:      Documentation/fb/sm712fb.rst
15524 F:      drivers/video/fbdev/sm712*
15525
15526 SIMPLE FIRMWARE INTERFACE (SFI)
15527 S:      Obsolete
15528 W:      http://simplefirmware.org/
15529 F:      arch/x86/platform/sfi/
15530 F:      drivers/sfi/
15531 F:      include/linux/sfi*.h
15532
15533 SIMPLEFB FB DRIVER
15534 M:      Hans de Goede <hdegoede@redhat.com>
15535 L:      linux-fbdev@vger.kernel.org
15536 S:      Maintained
15537 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
15538 F:      drivers/video/fbdev/simplefb.c
15539 F:      include/linux/platform_data/simplefb.h
15540
15541 SIMTEC EB110ATX (Chalice CATS)
15542 M:      Vincent Sanders <vince@simtec.co.uk>
15543 M:      Simtec Linux Team <linux@simtec.co.uk>
15544 S:      Supported
15545 W:      http://www.simtec.co.uk/products/EB110ATX/
15546
15547 SIMTEC EB2410ITX (BAST)
15548 M:      Vincent Sanders <vince@simtec.co.uk>
15549 M:      Simtec Linux Team <linux@simtec.co.uk>
15550 S:      Supported
15551 W:      http://www.simtec.co.uk/products/EB2410ITX/
15552 F:      arch/arm/mach-s3c24xx/bast-ide.c
15553 F:      arch/arm/mach-s3c24xx/bast-irq.c
15554 F:      arch/arm/mach-s3c24xx/mach-bast.c
15555
15556 SIOX
15557 M:      Thorsten Scherer <t.scherer@eckelmann.de>
15558 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15559 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15560 S:      Supported
15561 F:      drivers/gpio/gpio-siox.c
15562 F:      drivers/siox/*
15563 F:      include/trace/events/siox.h
15564
15565 SIPHASH PRF ROUTINES
15566 M:      Jason A. Donenfeld <Jason@zx2c4.com>
15567 S:      Maintained
15568 F:      include/linux/siphash.h
15569 F:      lib/siphash.c
15570 F:      lib/test_siphash.c
15571
15572 SIS 190 ETHERNET DRIVER
15573 M:      Francois Romieu <romieu@fr.zoreil.com>
15574 L:      netdev@vger.kernel.org
15575 S:      Maintained
15576 F:      drivers/net/ethernet/sis/sis190.c
15577
15578 SIS 900/7016 FAST ETHERNET DRIVER
15579 M:      Daniele Venzano <venza@brownhat.org>
15580 L:      netdev@vger.kernel.org
15581 S:      Maintained
15582 W:      http://www.brownhat.org/sis900.html
15583 F:      drivers/net/ethernet/sis/sis900.*
15584
15585 SIS FRAMEBUFFER DRIVER
15586 M:      Thomas Winischhofer <thomas@winischhofer.net>
15587 S:      Maintained
15588 W:      http://www.winischhofer.net/linuxsisvga.shtml
15589 F:      Documentation/fb/sisfb.rst
15590 F:      drivers/video/fbdev/sis/
15591 F:      include/video/sisfb.h
15592
15593 SIS USB2VGA DRIVER
15594 M:      Thomas Winischhofer <thomas@winischhofer.net>
15595 S:      Maintained
15596 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
15597 F:      drivers/usb/misc/sisusbvga/
15598
15599 SLAB ALLOCATOR
15600 M:      Christoph Lameter <cl@linux.com>
15601 M:      Pekka Enberg <penberg@kernel.org>
15602 M:      David Rientjes <rientjes@google.com>
15603 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
15604 M:      Andrew Morton <akpm@linux-foundation.org>
15605 L:      linux-mm@kvack.org
15606 S:      Maintained
15607 F:      include/linux/sl?b*.h
15608 F:      mm/sl?b*
15609
15610 SLEEPABLE READ-COPY UPDATE (SRCU)
15611 M:      Lai Jiangshan <jiangshanlai@gmail.com>
15612 M:      "Paul E. McKenney" <paulmck@kernel.org>
15613 M:      Josh Triplett <josh@joshtriplett.org>
15614 R:      Steven Rostedt <rostedt@goodmis.org>
15615 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15616 L:      rcu@vger.kernel.org
15617 S:      Supported
15618 W:      http://www.rdrop.com/users/paulmck/RCU/
15619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15620 F:      include/linux/srcu*.h
15621 F:      kernel/rcu/srcu*.c
15622
15623 SMACK SECURITY MODULE
15624 M:      Casey Schaufler <casey@schaufler-ca.com>
15625 L:      linux-security-module@vger.kernel.org
15626 S:      Maintained
15627 W:      http://schaufler-ca.com
15628 T:      git git://github.com/cschaufler/smack-next
15629 F:      Documentation/admin-guide/LSM/Smack.rst
15630 F:      security/smack/
15631
15632 SMC91x ETHERNET DRIVER
15633 M:      Nicolas Pitre <nico@fluxnic.net>
15634 S:      Odd Fixes
15635 F:      drivers/net/ethernet/smsc/smc91x.*
15636
15637 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
15638 M:      Mark Rutland <mark.rutland@arm.com>
15639 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15640 M:      Sudeep Holla <sudeep.holla@arm.com>
15641 L:      linux-arm-kernel@lists.infradead.org
15642 S:      Maintained
15643 F:      drivers/firmware/smccc/
15644 F:      include/linux/arm-smccc.h
15645
15646 SMIA AND SMIA++ IMAGE SENSOR DRIVER
15647 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15648 L:      linux-media@vger.kernel.org
15649 S:      Maintained
15650 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
15651 F:      drivers/media/i2c/smiapp-pll.c
15652 F:      drivers/media/i2c/smiapp-pll.h
15653 F:      drivers/media/i2c/smiapp/
15654 F:      include/uapi/linux/smiapp.h
15655
15656 SMM665 HARDWARE MONITOR DRIVER
15657 M:      Guenter Roeck <linux@roeck-us.net>
15658 L:      linux-hwmon@vger.kernel.org
15659 S:      Maintained
15660 F:      Documentation/hwmon/smm665.rst
15661 F:      drivers/hwmon/smm665.c
15662
15663 SMSC EMC2103 HARDWARE MONITOR DRIVER
15664 M:      Steve Glendinning <steve.glendinning@shawell.net>
15665 L:      linux-hwmon@vger.kernel.org
15666 S:      Maintained
15667 F:      Documentation/hwmon/emc2103.rst
15668 F:      drivers/hwmon/emc2103.c
15669
15670 SMSC SCH5627 HARDWARE MONITOR DRIVER
15671 M:      Hans de Goede <hdegoede@redhat.com>
15672 L:      linux-hwmon@vger.kernel.org
15673 S:      Supported
15674 F:      Documentation/hwmon/sch5627.rst
15675 F:      drivers/hwmon/sch5627.c
15676
15677 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
15678 M:      Steve Glendinning <steve.glendinning@shawell.net>
15679 L:      linux-fbdev@vger.kernel.org
15680 S:      Maintained
15681 F:      drivers/video/fbdev/smscufx.c
15682
15683 SMSC47B397 HARDWARE MONITOR DRIVER
15684 M:      Jean Delvare <jdelvare@suse.com>
15685 L:      linux-hwmon@vger.kernel.org
15686 S:      Maintained
15687 F:      Documentation/hwmon/smsc47b397.rst
15688 F:      drivers/hwmon/smsc47b397.c
15689
15690 SMSC911x ETHERNET DRIVER
15691 M:      Steve Glendinning <steve.glendinning@shawell.net>
15692 L:      netdev@vger.kernel.org
15693 S:      Maintained
15694 F:      drivers/net/ethernet/smsc/smsc911x.*
15695 F:      include/linux/smsc911x.h
15696
15697 SMSC9420 PCI ETHERNET DRIVER
15698 M:      Steve Glendinning <steve.glendinning@shawell.net>
15699 L:      netdev@vger.kernel.org
15700 S:      Maintained
15701 F:      drivers/net/ethernet/smsc/smsc9420.*
15702
15703 SOC-CAMERA V4L2 SUBSYSTEM
15704 L:      linux-media@vger.kernel.org
15705 S:      Orphan
15706 T:      git git://linuxtv.org/media_tree.git
15707 F:      drivers/staging/media/soc_camera/
15708 F:      include/media/soc_camera.h
15709
15710 SOCIONEXT (SNI) AVE NETWORK DRIVER
15711 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15712 L:      netdev@vger.kernel.org
15713 S:      Maintained
15714 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
15715 F:      drivers/net/ethernet/socionext/sni_ave.c
15716
15717 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
15718 M:      Jassi Brar <jaswinder.singh@linaro.org>
15719 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15720 L:      netdev@vger.kernel.org
15721 S:      Maintained
15722 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
15723 F:      drivers/net/ethernet/socionext/netsec.c
15724
15725 SOCIONEXT (SNI) Synquacer SPI DRIVER
15726 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
15727 M:      Jassi Brar <jaswinder.singh@linaro.org>
15728 L:      linux-spi@vger.kernel.org
15729 S:      Maintained
15730 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
15731 F:      drivers/spi/spi-synquacer.c
15732
15733 SOCIONEXT SYNQUACER I2C DRIVER
15734 M:      Ard Biesheuvel <ardb@kernel.org>
15735 L:      linux-i2c@vger.kernel.org
15736 S:      Maintained
15737 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
15738 F:      drivers/i2c/busses/i2c-synquacer.c
15739
15740 SOCIONEXT UNIPHIER SOUND DRIVER
15741 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15742 S:      Orphan
15743 F:      sound/soc/uniphier/
15744
15745 SOEKRIS NET48XX LED SUPPORT
15746 M:      Chris Boot <bootc@bootc.net>
15747 S:      Maintained
15748 F:      drivers/leds/leds-net48xx.c
15749
15750 SOFT-IWARP DRIVER (siw)
15751 M:      Bernard Metzler <bmt@zurich.ibm.com>
15752 L:      linux-rdma@vger.kernel.org
15753 S:      Supported
15754 F:      drivers/infiniband/sw/siw/
15755 F:      include/uapi/rdma/siw-abi.h
15756
15757 SOFT-ROCE DRIVER (rxe)
15758 M:      Zhu Yanjun <yanjunz@mellanox.com>
15759 L:      linux-rdma@vger.kernel.org
15760 S:      Supported
15761 F:      drivers/infiniband/sw/rxe/
15762 F:      include/uapi/rdma/rdma_user_rxe.h
15763
15764 SOFTLOGIC 6x10 MPEG CODEC
15765 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
15766 M:      Anton Sviridenko <anton@corp.bluecherry.net>
15767 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
15768 M:      Andrey Utkin <andrey_utkin@fastmail.com>
15769 M:      Ismael Luceno <ismael@iodev.co.uk>
15770 L:      linux-media@vger.kernel.org
15771 S:      Supported
15772 F:      drivers/media/pci/solo6x10/
15773
15774 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
15775 M:      James Morse <james.morse@arm.com>
15776 L:      linux-arm-kernel@lists.infradead.org
15777 S:      Maintained
15778 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
15779 F:      drivers/firmware/arm_sdei.c
15780 F:      include/linux/arm_sdei.h
15781 F:      include/uapi/linux/arm_sdei.h
15782
15783 SOFTWARE RAID (Multiple Disks) SUPPORT
15784 M:      Song Liu <song@kernel.org>
15785 L:      linux-raid@vger.kernel.org
15786 S:      Supported
15787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
15788 F:      drivers/md/Kconfig
15789 F:      drivers/md/Makefile
15790 F:      drivers/md/md*
15791 F:      drivers/md/raid*
15792 F:      include/linux/raid/
15793 F:      include/uapi/linux/raid/
15794
15795 SOLIDRUN CLEARFOG SUPPORT
15796 M:      Russell King <linux@armlinux.org.uk>
15797 S:      Maintained
15798 F:      arch/arm/boot/dts/armada-388-clearfog*
15799 F:      arch/arm/boot/dts/armada-38x-solidrun-*
15800
15801 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
15802 M:      Russell King <linux@armlinux.org.uk>
15803 S:      Maintained
15804 F:      arch/arm/boot/dts/imx6*-cubox-i*
15805 F:      arch/arm/boot/dts/imx6*-hummingboard*
15806 F:      arch/arm/boot/dts/imx6*-sr-*
15807
15808 SONIC NETWORK DRIVER
15809 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
15810 L:      netdev@vger.kernel.org
15811 S:      Maintained
15812 F:      drivers/net/ethernet/natsemi/sonic.*
15813
15814 SONICS SILICON BACKPLANE DRIVER (SSB)
15815 M:      Michael Buesch <m@bues.ch>
15816 L:      linux-wireless@vger.kernel.org
15817 S:      Maintained
15818 F:      drivers/ssb/
15819 F:      include/linux/ssb/
15820
15821 SONY IMX214 SENSOR DRIVER
15822 M:      Ricardo Ribalda <ribalda@kernel.org>
15823 L:      linux-media@vger.kernel.org
15824 S:      Maintained
15825 T:      git git://linuxtv.org/media_tree.git
15826 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.txt
15827 F:      drivers/media/i2c/imx214.c
15828
15829 SONY IMX219 SENSOR DRIVER
15830 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
15831 L:      linux-media@vger.kernel.org
15832 S:      Maintained
15833 T:      git git://linuxtv.org/media_tree.git
15834 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
15835 F:      drivers/media/i2c/imx219.c
15836
15837 SONY IMX258 SENSOR DRIVER
15838 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15839 L:      linux-media@vger.kernel.org
15840 S:      Maintained
15841 T:      git git://linuxtv.org/media_tree.git
15842 F:      drivers/media/i2c/imx258.c
15843
15844 SONY IMX274 SENSOR DRIVER
15845 M:      Leon Luo <leonl@leopardimaging.com>
15846 L:      linux-media@vger.kernel.org
15847 S:      Maintained
15848 T:      git git://linuxtv.org/media_tree.git
15849 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
15850 F:      drivers/media/i2c/imx274.c
15851
15852 SONY IMX290 SENSOR DRIVER
15853 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15854 L:      linux-media@vger.kernel.org
15855 S:      Maintained
15856 T:      git git://linuxtv.org/media_tree.git
15857 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
15858 F:      drivers/media/i2c/imx290.c
15859
15860 SONY IMX319 SENSOR DRIVER
15861 M:      Bingbu Cao <bingbu.cao@intel.com>
15862 L:      linux-media@vger.kernel.org
15863 S:      Maintained
15864 T:      git git://linuxtv.org/media_tree.git
15865 F:      drivers/media/i2c/imx319.c
15866
15867 SONY IMX355 SENSOR DRIVER
15868 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15869 L:      linux-media@vger.kernel.org
15870 S:      Maintained
15871 T:      git git://linuxtv.org/media_tree.git
15872 F:      drivers/media/i2c/imx355.c
15873
15874 SONY MEMORYSTICK SUBSYSTEM
15875 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15876 M:      Alex Dubov <oakad@yahoo.com>
15877 M:      Ulf Hansson <ulf.hansson@linaro.org>
15878 L:      linux-mmc@vger.kernel.org
15879 S:      Maintained
15880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
15881 F:      drivers/memstick/
15882 F:      include/linux/memstick.h
15883
15884 SONY VAIO CONTROL DEVICE DRIVER
15885 M:      Mattia Dongili <malattia@linux.it>
15886 L:      platform-driver-x86@vger.kernel.org
15887 S:      Maintained
15888 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
15889 F:      Documentation/admin-guide/laptops/sony-laptop.rst
15890 F:      drivers/char/sonypi.c
15891 F:      drivers/platform/x86/sony-laptop.c
15892 F:      include/linux/sony-laptop.h
15893
15894 SOUND
15895 M:      Jaroslav Kysela <perex@perex.cz>
15896 M:      Takashi Iwai <tiwai@suse.com>
15897 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15898 S:      Maintained
15899 W:      http://www.alsa-project.org/
15900 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
15901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15902 F:      Documentation/sound/
15903 F:      include/sound/
15904 F:      include/uapi/sound/
15905 F:      sound/
15906
15907 SOUND - COMPRESSED AUDIO
15908 M:      Vinod Koul <vkoul@kernel.org>
15909 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15910 S:      Supported
15911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15912 F:      Documentation/sound/designs/compress-offload.rst
15913 F:      include/sound/compress_driver.h
15914 F:      include/uapi/sound/compress_*
15915 F:      sound/core/compress_offload.c
15916 F:      sound/soc/soc-compress.c
15917
15918 SOUND - DMAENGINE HELPERS
15919 M:      Lars-Peter Clausen <lars@metafoo.de>
15920 S:      Supported
15921 F:      include/sound/dmaengine_pcm.h
15922 F:      sound/core/pcm_dmaengine.c
15923 F:      sound/soc/soc-generic-dmaengine-pcm.c
15924
15925 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
15926 M:      Liam Girdwood <lgirdwood@gmail.com>
15927 M:      Mark Brown <broonie@kernel.org>
15928 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15929 S:      Supported
15930 W:      http://alsa-project.org/main/index.php/ASoC
15931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
15932 F:      Documentation/devicetree/bindings/sound/
15933 F:      Documentation/sound/soc/
15934 F:      include/dt-bindings/sound/
15935 F:      include/sound/soc*
15936 F:      sound/soc/
15937
15938 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
15939 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
15940 M:      Liam Girdwood <lgirdwood@gmail.com>
15941 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
15942 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
15943 M:      Daniel Baluta <daniel.baluta@nxp.com>
15944 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
15945 S:      Supported
15946 W:      https://github.com/thesofproject/linux/
15947 F:      sound/soc/sof/
15948
15949 SOUNDWIRE SUBSYSTEM
15950 M:      Vinod Koul <vkoul@kernel.org>
15951 M:      Sanyog Kale <sanyog.r.kale@intel.com>
15952 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
15953 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15954 S:      Supported
15955 F:      Documentation/driver-api/soundwire/
15956 F:      drivers/soundwire/
15957 F:      include/linux/soundwire/
15958
15959 SP2 MEDIA DRIVER
15960 M:      Olli Salonen <olli.salonen@iki.fi>
15961 L:      linux-media@vger.kernel.org
15962 S:      Maintained
15963 W:      https://linuxtv.org
15964 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15965 F:      drivers/media/dvb-frontends/sp2*
15966
15967 SPARC + UltraSPARC (sparc/sparc64)
15968 M:      "David S. Miller" <davem@davemloft.net>
15969 L:      sparclinux@vger.kernel.org
15970 S:      Maintained
15971 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
15972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15974 F:      arch/sparc/
15975 F:      drivers/sbus/
15976
15977 SPARC SERIAL DRIVERS
15978 M:      "David S. Miller" <davem@davemloft.net>
15979 L:      sparclinux@vger.kernel.org
15980 S:      Maintained
15981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15982 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15983 F:      drivers/tty/serial/suncore.c
15984 F:      drivers/tty/serial/sunhv.c
15985 F:      drivers/tty/serial/sunsab.c
15986 F:      drivers/tty/serial/sunsab.h
15987 F:      drivers/tty/serial/sunsu.c
15988 F:      drivers/tty/serial/sunzilog.c
15989 F:      drivers/tty/serial/sunzilog.h
15990 F:      drivers/tty/vcc.c
15991 F:      include/linux/sunserialcore.h
15992
15993 SPARSE CHECKER
15994 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
15995 L:      linux-sparse@vger.kernel.org
15996 S:      Maintained
15997 W:      https://sparse.wiki.kernel.org/
15998 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
15999 F:      include/linux/compiler.h
16000
16001 SPEAR CLOCK FRAMEWORK SUPPORT
16002 M:      Viresh Kumar <vireshk@kernel.org>
16003 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16004 S:      Maintained
16005 W:      http://www.st.com/spear
16006 F:      drivers/clk/spear/
16007
16008 SPEAR PLATFORM SUPPORT
16009 M:      Viresh Kumar <vireshk@kernel.org>
16010 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
16011 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16012 S:      Maintained
16013 W:      http://www.st.com/spear
16014 F:      arch/arm/boot/dts/spear*
16015 F:      arch/arm/mach-spear/
16016
16017 SPI NOR SUBSYSTEM
16018 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
16019 L:      linux-mtd@lists.infradead.org
16020 S:      Maintained
16021 W:      http://www.linux-mtd.infradead.org/
16022 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
16023 C:      irc://irc.oftc.net/mtd
16024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
16025 F:      drivers/mtd/spi-nor/
16026 F:      include/linux/mtd/spi-nor.h
16027
16028 SPI SUBSYSTEM
16029 M:      Mark Brown <broonie@kernel.org>
16030 L:      linux-spi@vger.kernel.org
16031 S:      Maintained
16032 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
16033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
16034 F:      Documentation/devicetree/bindings/spi/
16035 F:      Documentation/spi/
16036 F:      drivers/spi/
16037 F:      include/linux/spi/
16038 F:      include/uapi/linux/spi/
16039 F:      tools/spi/
16040
16041 SPIDERNET NETWORK DRIVER for CELL
16042 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
16043 L:      netdev@vger.kernel.org
16044 S:      Supported
16045 F:      Documentation/networking/device_drivers/toshiba/spider_net.rst
16046 F:      drivers/net/ethernet/toshiba/spider_net*
16047
16048 SPMI SUBSYSTEM
16049 R:      Stephen Boyd <sboyd@kernel.org>
16050 L:      linux-arm-msm@vger.kernel.org
16051 F:      Documentation/devicetree/bindings/spmi/
16052 F:      drivers/spmi/
16053 F:      include/dt-bindings/spmi/spmi.h
16054 F:      include/linux/spmi.h
16055 F:      include/trace/events/spmi.h
16056
16057 SPU FILE SYSTEM
16058 M:      Jeremy Kerr <jk@ozlabs.org>
16059 L:      linuxppc-dev@lists.ozlabs.org
16060 S:      Supported
16061 W:      http://www.ibm.com/developerworks/power/cell/
16062 F:      Documentation/filesystems/spufs/spufs.rst
16063 F:      arch/powerpc/platforms/cell/spufs/
16064
16065 SQUASHFS FILE SYSTEM
16066 M:      Phillip Lougher <phillip@squashfs.org.uk>
16067 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
16068 S:      Maintained
16069 W:      http://squashfs.org.uk
16070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
16071 F:      Documentation/filesystems/squashfs.rst
16072 F:      fs/squashfs/
16073
16074 SRM (Alpha) environment access
16075 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
16076 S:      Maintained
16077 F:      arch/alpha/kernel/srm_env.c
16078
16079 ST LSM6DSx IMU IIO DRIVER
16080 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
16081 L:      linux-iio@vger.kernel.org
16082 S:      Maintained
16083 W:      http://www.st.com/
16084 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
16085 F:      drivers/iio/imu/st_lsm6dsx/
16086
16087 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
16088 M:      Mickael Guene <mickael.guene@st.com>
16089 L:      linux-media@vger.kernel.org
16090 S:      Maintained
16091 T:      git git://linuxtv.org/media_tree.git
16092 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
16093 F:      drivers/media/i2c/st-mipid02.c
16094
16095 ST STM32 I2C/SMBUS DRIVER
16096 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
16097 L:      linux-i2c@vger.kernel.org
16098 S:      Maintained
16099 F:      drivers/i2c/busses/i2c-stm32*
16100
16101 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
16102 M:      Song Qiang <songqiang1304521@gmail.com>
16103 L:      linux-iio@vger.kernel.org
16104 S:      Maintained
16105 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
16106 F:      drivers/iio/proximity/vl53l0x-i2c.c
16107
16108 STABLE BRANCH
16109 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16110 M:      Sasha Levin <sashal@kernel.org>
16111 L:      stable@vger.kernel.org
16112 S:      Supported
16113 F:      Documentation/process/stable-kernel-rules.rst
16114
16115 STAGING - ATOMISP DRIVER
16116 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16117 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
16118 L:      linux-media@vger.kernel.org
16119 S:      Maintained
16120 F:      drivers/staging/media/atomisp/
16121
16122 STAGING - COMEDI
16123 M:      Ian Abbott <abbotti@mev.co.uk>
16124 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
16125 S:      Odd Fixes
16126 F:      drivers/staging/comedi/
16127
16128 STAGING - FIELDBUS SUBSYSTEM
16129 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16130 S:      Maintained
16131 F:      drivers/staging/fieldbus/*
16132 F:      drivers/staging/fieldbus/Documentation/
16133
16134 STAGING - HMS ANYBUS-S BUS
16135 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16136 S:      Maintained
16137 F:      drivers/staging/fieldbus/anybuss/
16138
16139 STAGING - INDUSTRIAL IO
16140 M:      Jonathan Cameron <jic23@kernel.org>
16141 L:      linux-iio@vger.kernel.org
16142 S:      Odd Fixes
16143 F:      Documentation/devicetree/bindings/staging/iio/
16144 F:      drivers/staging/iio/
16145
16146 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
16147 M:      Marc Dietrich <marvin24@gmx.de>
16148 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
16149 L:      linux-tegra@vger.kernel.org
16150 S:      Maintained
16151 F:      drivers/staging/nvec/
16152
16153 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
16154 M:      Jens Frederich <jfrederich@gmail.com>
16155 M:      Daniel Drake <dsd@laptop.org>
16156 M:      Jon Nettleton <jon.nettleton@gmail.com>
16157 S:      Maintained
16158 W:      http://wiki.laptop.org/go/DCON
16159 F:      drivers/staging/olpc_dcon/
16160
16161 STAGING - REALTEK RTL8188EU DRIVERS
16162 M:      Larry Finger <Larry.Finger@lwfinger.net>
16163 S:      Odd Fixes
16164 F:      drivers/staging/rtl8188eu/
16165
16166 STAGING - REALTEK RTL8712U DRIVERS
16167 M:      Larry Finger <Larry.Finger@lwfinger.net>
16168 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
16169 S:      Odd Fixes
16170 F:      drivers/staging/rtl8712/
16171
16172 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16173 M:      Michael Hennerich <michael.hennerich@analog.com>
16174 M:      Beniamin Bia <beniamin.bia@analog.com>
16175 L:      linux-fbdev@vger.kernel.org
16176 S:      Supported
16177 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16178 F:      drivers/staging/fbtft/fb_seps525.c
16179
16180 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
16181 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16182 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16183 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16184 L:      linux-fbdev@vger.kernel.org
16185 S:      Maintained
16186 F:      drivers/staging/sm750fb/
16187
16188 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
16189 M:      William Hubbs <w.d.hubbs@gmail.com>
16190 M:      Chris Brannon <chris@the-brannons.com>
16191 M:      Kirk Reiser <kirk@reisers.ca>
16192 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
16193 L:      speakup@linux-speakup.org
16194 S:      Odd Fixes
16195 W:      http://www.linux-speakup.org/
16196 F:      drivers/staging/speakup/
16197
16198 STAGING - VIA VT665X DRIVERS
16199 M:      Forest Bond <forest@alittletooquiet.net>
16200 S:      Odd Fixes
16201 F:      drivers/staging/vt665?/
16202
16203 STAGING - WILC1000 WIFI DRIVER
16204 M:      Adham Abozaeid <adham.abozaeid@microchip.com>
16205 M:      Ajay Singh <ajay.kathat@microchip.com>
16206 L:      linux-wireless@vger.kernel.org
16207 S:      Supported
16208 F:      drivers/staging/wilc1000/
16209
16210 STAGING SUBSYSTEM
16211 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16212 L:      devel@driverdev.osuosl.org
16213 S:      Supported
16214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16215 F:      drivers/staging/
16216
16217 STARFIRE/DURALAN NETWORK DRIVER
16218 M:      Ion Badulescu <ionut@badula.org>
16219 S:      Odd Fixes
16220 F:      drivers/net/ethernet/adaptec/starfire*
16221
16222 STEC S1220 SKD DRIVER
16223 M:      Damien Le Moal <Damien.LeMoal@wdc.com>
16224 L:      linux-block@vger.kernel.org
16225 S:      Maintained
16226 F:      drivers/block/skd*[ch]
16227
16228 STI AUDIO (ASoC) DRIVERS
16229 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16230 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16231 S:      Maintained
16232 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16233 F:      sound/soc/sti/
16234
16235 STI CEC DRIVER
16236 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
16237 S:      Maintained
16238 F:      Documentation/devicetree/bindings/media/stih-cec.txt
16239 F:      drivers/media/platform/sti/cec/
16240
16241 STK1160 USB VIDEO CAPTURE DRIVER
16242 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16243 L:      linux-media@vger.kernel.org
16244 S:      Maintained
16245 T:      git git://linuxtv.org/media_tree.git
16246 F:      drivers/media/usb/stk1160/
16247
16248 STM32 AUDIO (ASoC) DRIVERS
16249 M:      Olivier Moysan <olivier.moysan@st.com>
16250 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16251 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16252 S:      Maintained
16253 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
16254 F:      sound/soc/stm/
16255
16256 STM32 TIMER/LPTIMER DRIVERS
16257 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
16258 S:      Maintained
16259 F:      Documentation/ABI/testing/*timer-stm32
16260 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
16261 F:      drivers/*/stm32-*timer*
16262 F:      drivers/pwm/pwm-stm32*
16263 F:      include/linux/*/stm32-*tim*
16264
16265 STMMAC ETHERNET DRIVER
16266 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
16267 M:      Alexandre Torgue <alexandre.torgue@st.com>
16268 M:      Jose Abreu <joabreu@synopsys.com>
16269 L:      netdev@vger.kernel.org
16270 S:      Supported
16271 W:      http://www.stlinux.com
16272 F:      Documentation/networking/device_drivers/stmicro/
16273 F:      drivers/net/ethernet/stmicro/stmmac/
16274
16275 SUN3/3X
16276 M:      Sam Creasey <sammy@sammy.net>
16277 S:      Maintained
16278 W:      http://sammy.net/sun3/
16279 F:      arch/m68k/include/asm/sun3*
16280 F:      arch/m68k/kernel/*sun3*
16281 F:      arch/m68k/sun3*/
16282 F:      drivers/net/ethernet/i825xx/sun3*
16283
16284 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
16285 M:      Hans de Goede <hdegoede@redhat.com>
16286 L:      linux-input@vger.kernel.org
16287 S:      Maintained
16288 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
16289 F:      drivers/input/keyboard/sun4i-lradc-keys.c
16290
16291 SUNDANCE NETWORK DRIVER
16292 M:      Denis Kirjanov <kda@linux-powerpc.org>
16293 L:      netdev@vger.kernel.org
16294 S:      Maintained
16295 F:      drivers/net/ethernet/dlink/sundance.c
16296
16297 SUPERH
16298 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
16299 M:      Rich Felker <dalias@libc.org>
16300 L:      linux-sh@vger.kernel.org
16301 S:      Maintained
16302 Q:      http://patchwork.kernel.org/project/linux-sh/list/
16303 F:      Documentation/sh/
16304 F:      arch/sh/
16305 F:      drivers/sh/
16306
16307 SUSPEND TO RAM
16308 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
16309 M:      Len Brown <len.brown@intel.com>
16310 M:      Pavel Machek <pavel@ucw.cz>
16311 L:      linux-pm@vger.kernel.org
16312 S:      Supported
16313 B:      https://bugzilla.kernel.org
16314 F:      Documentation/power/
16315 F:      arch/x86/kernel/acpi/
16316 F:      drivers/base/power/
16317 F:      include/linux/freezer.h
16318 F:      include/linux/pm.h
16319 F:      include/linux/suspend.h
16320 F:      kernel/power/
16321
16322 SVGA HANDLING
16323 M:      Martin Mares <mj@ucw.cz>
16324 L:      linux-video@atrey.karlin.mff.cuni.cz
16325 S:      Maintained
16326 F:      Documentation/admin-guide/svga.rst
16327 F:      arch/x86/boot/video*
16328
16329 SWIOTLB SUBSYSTEM
16330 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
16331 L:      iommu@lists.linux-foundation.org
16332 S:      Supported
16333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
16334 F:      arch/*/kernel/pci-swiotlb.c
16335 F:      include/linux/swiotlb.h
16336 F:      kernel/dma/swiotlb.c
16337
16338 SWITCHDEV
16339 M:      Jiri Pirko <jiri@resnulli.us>
16340 M:      Ivan Vecera <ivecera@redhat.com>
16341 L:      netdev@vger.kernel.org
16342 S:      Supported
16343 F:      include/net/switchdev.h
16344 F:      net/switchdev/
16345
16346 SY8106A REGULATOR DRIVER
16347 M:      Icenowy Zheng <icenowy@aosc.io>
16348 S:      Maintained
16349 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
16350 F:      drivers/regulator/sy8106a-regulator.c
16351
16352 SYNC FILE FRAMEWORK
16353 M:      Sumit Semwal <sumit.semwal@linaro.org>
16354 R:      Gustavo Padovan <gustavo@padovan.org>
16355 L:      linux-media@vger.kernel.org
16356 L:      dri-devel@lists.freedesktop.org
16357 S:      Maintained
16358 T:      git git://anongit.freedesktop.org/drm/drm-misc
16359 F:      Documentation/driver-api/sync_file.rst
16360 F:      drivers/dma-buf/dma-fence*
16361 F:      drivers/dma-buf/sw_sync.c
16362 F:      drivers/dma-buf/sync_*
16363 F:      include/linux/sync_file.h
16364 F:      include/uapi/linux/sync_file.h
16365
16366 SYNOPSYS ARC ARCHITECTURE
16367 M:      Vineet Gupta <vgupta@synopsys.com>
16368 L:      linux-snps-arc@lists.infradead.org
16369 S:      Supported
16370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
16371 F:      Documentation/devicetree/bindings/arc/*
16372 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
16373 F:      arch/arc/
16374 F:      drivers/clocksource/arc_timer.c
16375 F:      drivers/tty/serial/arc_uart.c
16376
16377 SYNOPSYS ARC HSDK SDP pll clock driver
16378 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16379 S:      Supported
16380 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
16381 F:      drivers/clk/clk-hsdk-pll.c
16382
16383 SYNOPSYS ARC SDP clock driver
16384 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16385 S:      Supported
16386 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
16387 F:      drivers/clk/axs10x/*
16388
16389 SYNOPSYS ARC SDP platform support
16390 M:      Alexey Brodkin <abrodkin@synopsys.com>
16391 S:      Supported
16392 F:      Documentation/devicetree/bindings/arc/axs10*
16393 F:      arch/arc/boot/dts/ax*
16394 F:      arch/arc/plat-axs10x
16395
16396 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
16397 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16398 S:      Supported
16399 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
16400 F:      drivers/reset/reset-axs10x.c
16401
16402 SYNOPSYS CREG GPIO DRIVER
16403 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16404 S:      Maintained
16405 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
16406 F:      drivers/gpio/gpio-creg-snps.c
16407
16408 SYNOPSYS DESIGNWARE 8250 UART DRIVER
16409 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16410 S:      Maintained
16411 F:      drivers/tty/serial/8250/8250_dw.c
16412 F:      drivers/tty/serial/8250/8250_dwlib.*
16413 F:      drivers/tty/serial/8250/8250_lpss.c
16414
16415 SYNOPSYS DESIGNWARE APB GPIO DRIVER
16416 M:      Hoan Tran <hoan@os.amperecomputing.com>
16417 M:      Serge Semin <fancer.lancer@gmail.com>
16418 L:      linux-gpio@vger.kernel.org
16419 S:      Maintained
16420 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
16421 F:      drivers/gpio/gpio-dwapb.c
16422
16423 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
16424 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16425 S:      Maintained
16426 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
16427 F:      drivers/dma/dw-axi-dmac/
16428
16429 SYNOPSYS DESIGNWARE DMAC DRIVER
16430 M:      Viresh Kumar <vireshk@kernel.org>
16431 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16432 S:      Maintained
16433 F:      Documentation/devicetree/bindings/dma/snps-dma.txt
16434 F:      drivers/dma/dw/
16435 F:      include/dt-bindings/dma/dw-dmac.h
16436 F:      include/linux/dma/dw.h
16437 F:      include/linux/platform_data/dma-dw.h
16438
16439 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
16440 M:      Jose Abreu <Jose.Abreu@synopsys.com>
16441 L:      netdev@vger.kernel.org
16442 S:      Supported
16443 F:      drivers/net/ethernet/synopsys/
16444
16445 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
16446 M:      Jose Abreu <Jose.Abreu@synopsys.com>
16447 L:      netdev@vger.kernel.org
16448 S:      Supported
16449 F:      drivers/net/phy/mdio-xpcs.c
16450 F:      include/linux/mdio-xpcs.h
16451
16452 SYNOPSYS DESIGNWARE I2C DRIVER
16453 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
16454 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16455 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
16456 L:      linux-i2c@vger.kernel.org
16457 S:      Maintained
16458 F:      drivers/i2c/busses/i2c-designware-*
16459 F:      include/linux/platform_data/i2c-designware.h
16460
16461 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
16462 M:      Jaehoon Chung <jh80.chung@samsung.com>
16463 L:      linux-mmc@vger.kernel.org
16464 S:      Maintained
16465 F:      drivers/mmc/host/dw_mmc*
16466
16467 SYNOPSYS HSDK RESET CONTROLLER DRIVER
16468 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16469 S:      Supported
16470 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
16471 F:      drivers/reset/reset-hsdk.c
16472 F:      include/dt-bindings/reset/snps,hsdk-reset.h
16473
16474 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
16475 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
16476 M:      Manjunath M B <manjumb@synopsys.com>
16477 L:      linux-mmc@vger.kernel.org
16478 S:      Maintained
16479 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
16480
16481 SYSTEM CONFIGURATION (SYSCON)
16482 M:      Lee Jones <lee.jones@linaro.org>
16483 M:      Arnd Bergmann <arnd@arndb.de>
16484 S:      Supported
16485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
16486 F:      drivers/mfd/syscon.c
16487
16488 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
16489 M:      Sudeep Holla <sudeep.holla@arm.com>
16490 L:      linux-arm-kernel@lists.infradead.org
16491 S:      Maintained
16492 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
16493 F:      drivers/clk/clk-sc[mp]i.c
16494 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
16495 F:      drivers/firmware/arm_scmi/
16496 F:      drivers/firmware/arm_scpi.c
16497 F:      drivers/reset/reset-scmi.c
16498 F:      include/linux/sc[mp]i_protocol.h
16499 F:      include/trace/events/scmi.h
16500
16501 SYSTEM RESET/SHUTDOWN DRIVERS
16502 M:      Sebastian Reichel <sre@kernel.org>
16503 L:      linux-pm@vger.kernel.org
16504 S:      Maintained
16505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16506 F:      Documentation/devicetree/bindings/power/reset/
16507 F:      drivers/power/reset/
16508
16509 SYSTEM TRACE MODULE CLASS
16510 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
16511 S:      Maintained
16512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
16513 F:      Documentation/trace/stm.rst
16514 F:      drivers/hwtracing/stm/
16515 F:      include/linux/stm.h
16516 F:      include/uapi/linux/stm.h
16517
16518 SYSTEM76 ACPI DRIVER
16519 M:      Jeremy Soller <jeremy@system76.com>
16520 M:      System76 Product Development <productdev@system76.com>
16521 L:      platform-driver-x86@vger.kernel.org
16522 S:      Maintained
16523 F:      drivers/platform/x86/system76_acpi.c
16524
16525 SYSV FILESYSTEM
16526 M:      Christoph Hellwig <hch@infradead.org>
16527 S:      Maintained
16528 F:      Documentation/filesystems/sysv-fs.rst
16529 F:      fs/sysv/
16530 F:      include/linux/sysv_fs.h
16531
16532 TASKSTATS STATISTICS INTERFACE
16533 M:      Balbir Singh <bsingharora@gmail.com>
16534 S:      Maintained
16535 F:      Documentation/accounting/taskstats*
16536 F:      include/linux/taskstats*
16537 F:      kernel/taskstats.c
16538
16539 TC subsystem
16540 M:      Jamal Hadi Salim <jhs@mojatatu.com>
16541 M:      Cong Wang <xiyou.wangcong@gmail.com>
16542 M:      Jiri Pirko <jiri@resnulli.us>
16543 L:      netdev@vger.kernel.org
16544 S:      Maintained
16545 F:      include/net/pkt_cls.h
16546 F:      include/net/pkt_sched.h
16547 F:      include/net/tc_act/
16548 F:      include/uapi/linux/pkt_cls.h
16549 F:      include/uapi/linux/pkt_sched.h
16550 F:      include/uapi/linux/tc_act/
16551 F:      include/uapi/linux/tc_ematch/
16552 F:      net/sched/
16553
16554 TC90522 MEDIA DRIVER
16555 M:      Akihiro Tsukada <tskd08@gmail.com>
16556 L:      linux-media@vger.kernel.org
16557 S:      Odd Fixes
16558 F:      drivers/media/dvb-frontends/tc90522*
16559
16560 TCP LOW PRIORITY MODULE
16561 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
16562 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
16563 S:      Maintained
16564 W:      http://tcp-lp-mod.sourceforge.net/
16565 F:      net/ipv4/tcp_lp.c
16566
16567 TDA10071 MEDIA DRIVER
16568 M:      Antti Palosaari <crope@iki.fi>
16569 L:      linux-media@vger.kernel.org
16570 S:      Maintained
16571 W:      https://linuxtv.org
16572 W:      http://palosaari.fi/linux/
16573 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16574 T:      git git://linuxtv.org/anttip/media_tree.git
16575 F:      drivers/media/dvb-frontends/tda10071*
16576
16577 TDA18212 MEDIA DRIVER
16578 M:      Antti Palosaari <crope@iki.fi>
16579 L:      linux-media@vger.kernel.org
16580 S:      Maintained
16581 W:      https://linuxtv.org
16582 W:      http://palosaari.fi/linux/
16583 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16584 T:      git git://linuxtv.org/anttip/media_tree.git
16585 F:      drivers/media/tuners/tda18212*
16586
16587 TDA18218 MEDIA DRIVER
16588 M:      Antti Palosaari <crope@iki.fi>
16589 L:      linux-media@vger.kernel.org
16590 S:      Maintained
16591 W:      https://linuxtv.org
16592 W:      http://palosaari.fi/linux/
16593 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16594 T:      git git://linuxtv.org/anttip/media_tree.git
16595 F:      drivers/media/tuners/tda18218*
16596
16597 TDA18250 MEDIA DRIVER
16598 M:      Olli Salonen <olli.salonen@iki.fi>
16599 L:      linux-media@vger.kernel.org
16600 S:      Maintained
16601 W:      https://linuxtv.org
16602 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16603 T:      git git://linuxtv.org/media_tree.git
16604 F:      drivers/media/tuners/tda18250*
16605
16606 TDA18271 MEDIA DRIVER
16607 M:      Michael Krufky <mkrufky@linuxtv.org>
16608 L:      linux-media@vger.kernel.org
16609 S:      Maintained
16610 W:      https://linuxtv.org
16611 W:      http://github.com/mkrufky
16612 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16613 T:      git git://linuxtv.org/mkrufky/tuners.git
16614 F:      drivers/media/tuners/tda18271*
16615
16616 TDA1997x MEDIA DRIVER
16617 M:      Tim Harvey <tharvey@gateworks.com>
16618 L:      linux-media@vger.kernel.org
16619 S:      Maintained
16620 W:      https://linuxtv.org
16621 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16622 F:      drivers/media/i2c/tda1997x.*
16623
16624 TDA827x MEDIA DRIVER
16625 M:      Michael Krufky <mkrufky@linuxtv.org>
16626 L:      linux-media@vger.kernel.org
16627 S:      Maintained
16628 W:      https://linuxtv.org
16629 W:      http://github.com/mkrufky
16630 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16631 T:      git git://linuxtv.org/mkrufky/tuners.git
16632 F:      drivers/media/tuners/tda8290.*
16633
16634 TDA8290 MEDIA DRIVER
16635 M:      Michael Krufky <mkrufky@linuxtv.org>
16636 L:      linux-media@vger.kernel.org
16637 S:      Maintained
16638 W:      https://linuxtv.org
16639 W:      http://github.com/mkrufky
16640 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16641 T:      git git://linuxtv.org/mkrufky/tuners.git
16642 F:      drivers/media/tuners/tda8290.*
16643
16644 TDA9840 MEDIA DRIVER
16645 M:      Hans Verkuil <hverkuil@xs4all.nl>
16646 L:      linux-media@vger.kernel.org
16647 S:      Maintained
16648 W:      https://linuxtv.org
16649 T:      git git://linuxtv.org/media_tree.git
16650 F:      drivers/media/i2c/tda9840*
16651
16652 TEA5761 TUNER DRIVER
16653 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16654 L:      linux-media@vger.kernel.org
16655 S:      Odd fixes
16656 W:      https://linuxtv.org
16657 T:      git git://linuxtv.org/media_tree.git
16658 F:      drivers/media/tuners/tea5761.*
16659
16660 TEA5767 TUNER DRIVER
16661 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16662 L:      linux-media@vger.kernel.org
16663 S:      Maintained
16664 W:      https://linuxtv.org
16665 T:      git git://linuxtv.org/media_tree.git
16666 F:      drivers/media/tuners/tea5767.*
16667
16668 TEA6415C MEDIA DRIVER
16669 M:      Hans Verkuil <hverkuil@xs4all.nl>
16670 L:      linux-media@vger.kernel.org
16671 S:      Maintained
16672 W:      https://linuxtv.org
16673 T:      git git://linuxtv.org/media_tree.git
16674 F:      drivers/media/i2c/tea6415c*
16675
16676 TEA6420 MEDIA DRIVER
16677 M:      Hans Verkuil <hverkuil@xs4all.nl>
16678 L:      linux-media@vger.kernel.org
16679 S:      Maintained
16680 W:      https://linuxtv.org
16681 T:      git git://linuxtv.org/media_tree.git
16682 F:      drivers/media/i2c/tea6420*
16683
16684 TEAM DRIVER
16685 M:      Jiri Pirko <jiri@resnulli.us>
16686 L:      netdev@vger.kernel.org
16687 S:      Supported
16688 F:      drivers/net/team/
16689 F:      include/linux/if_team.h
16690 F:      include/uapi/linux/if_team.h
16691
16692 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
16693 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
16694 S:      Maintained
16695 F:      arch/x86/platform/ts5500/
16696
16697 TECHNOTREND USB IR RECEIVER
16698 M:      Sean Young <sean@mess.org>
16699 L:      linux-media@vger.kernel.org
16700 S:      Maintained
16701 F:      drivers/media/rc/ttusbir.c
16702
16703 TECHWELL TW9910 VIDEO DECODER
16704 L:      linux-media@vger.kernel.org
16705 S:      Orphan
16706 F:      drivers/media/i2c/tw9910.c
16707 F:      include/media/i2c/tw9910.h
16708
16709 TEE SUBSYSTEM
16710 M:      Jens Wiklander <jens.wiklander@linaro.org>
16711 L:      tee-dev@lists.linaro.org
16712 S:      Maintained
16713 F:      Documentation/tee.txt
16714 F:      drivers/tee/
16715 F:      include/linux/tee_drv.h
16716 F:      include/uapi/linux/tee.h
16717
16718 TEGRA ARCHITECTURE SUPPORT
16719 M:      Thierry Reding <thierry.reding@gmail.com>
16720 M:      Jonathan Hunter <jonathanh@nvidia.com>
16721 L:      linux-tegra@vger.kernel.org
16722 S:      Supported
16723 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
16724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
16725 N:      [^a-z]tegra
16726
16727 TEGRA CLOCK DRIVER
16728 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
16729 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
16730 S:      Supported
16731 F:      drivers/clk/tegra/
16732
16733 TEGRA DMA DRIVERS
16734 M:      Laxman Dewangan <ldewangan@nvidia.com>
16735 M:      Jon Hunter <jonathanh@nvidia.com>
16736 S:      Supported
16737 F:      drivers/dma/tegra*
16738
16739 TEGRA I2C DRIVER
16740 M:      Laxman Dewangan <ldewangan@nvidia.com>
16741 R:      Dmitry Osipenko <digetx@gmail.com>
16742 S:      Supported
16743 F:      drivers/i2c/busses/i2c-tegra.c
16744
16745 TEGRA IOMMU DRIVERS
16746 M:      Thierry Reding <thierry.reding@gmail.com>
16747 L:      linux-tegra@vger.kernel.org
16748 S:      Supported
16749 F:      drivers/iommu/tegra*
16750
16751 TEGRA KBC DRIVER
16752 M:      Laxman Dewangan <ldewangan@nvidia.com>
16753 S:      Supported
16754 F:      drivers/input/keyboard/tegra-kbc.c
16755
16756 TEGRA NAND DRIVER
16757 M:      Stefan Agner <stefan@agner.ch>
16758 M:      Lucas Stach <dev@lynxeye.de>
16759 S:      Maintained
16760 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
16761 F:      drivers/mtd/nand/raw/tegra_nand.c
16762
16763 TEGRA PWM DRIVER
16764 M:      Thierry Reding <thierry.reding@gmail.com>
16765 S:      Supported
16766 F:      drivers/pwm/pwm-tegra.c
16767
16768 TEGRA SERIAL DRIVER
16769 M:      Laxman Dewangan <ldewangan@nvidia.com>
16770 S:      Supported
16771 F:      drivers/tty/serial/serial-tegra.c
16772
16773 TEGRA SPI DRIVER
16774 M:      Laxman Dewangan <ldewangan@nvidia.com>
16775 S:      Supported
16776 F:      drivers/spi/spi-tegra*
16777
16778 TEGRA VIDEO DRIVER
16779 M:      Thierry Reding <thierry.reding@gmail.com>
16780 M:      Jonathan Hunter <jonathanh@nvidia.com>
16781 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
16782 L:      linux-media@vger.kernel.org
16783 L:      linux-tegra@vger.kernel.org
16784 S:      Maintained
16785 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
16786 F:      drivers/staging/media/tegra-video/
16787
16788 TEGRA XUSB PADCTL DRIVER
16789 M:      JC Kuo <jckuo@nvidia.com>
16790 S:      Supported
16791 F:      drivers/phy/tegra/xusb*
16792
16793 TEHUTI ETHERNET DRIVER
16794 M:      Andy Gospodarek <andy@greyhouse.net>
16795 L:      netdev@vger.kernel.org
16796 S:      Supported
16797 F:      drivers/net/ethernet/tehuti/*
16798
16799 TELECOM CLOCK DRIVER FOR MCPL0010
16800 M:      Mark Gross <mark.gross@intel.com>
16801 S:      Supported
16802 F:      drivers/char/tlclk.c
16803
16804 TEMPO SEMICONDUCTOR DRIVERS
16805 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
16806 S:      Maintained
16807 F:      Documentation/devicetree/bindings/sound/tscs*.txt
16808 F:      sound/soc/codecs/tscs*.c
16809 F:      sound/soc/codecs/tscs*.h
16810
16811 TENSILICA XTENSA PORT (xtensa)
16812 M:      Chris Zankel <chris@zankel.net>
16813 M:      Max Filippov <jcmvbkbc@gmail.com>
16814 L:      linux-xtensa@linux-xtensa.org
16815 S:      Maintained
16816 T:      git git://github.com/czankel/xtensa-linux.git
16817 F:      arch/xtensa/
16818 F:      drivers/irqchip/irq-xtensa-*
16819
16820 TEXAS INSTRUMENTS ASoC DRIVERS
16821 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
16822 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16823 S:      Maintained
16824 F:      sound/soc/ti/
16825
16826 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
16827 M:      Ricardo Ribalda <ribalda@kernel.org>
16828 L:      linux-iio@vger.kernel.org
16829 S:      Supported
16830 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
16831 F:      drivers/iio/dac/ti-dac7612.c
16832
16833 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
16834 M:      Nishanth Menon <nm@ti.com>
16835 M:      Tero Kristo <t-kristo@ti.com>
16836 M:      Santosh Shilimkar <ssantosh@kernel.org>
16837 L:      linux-arm-kernel@lists.infradead.org
16838 S:      Maintained
16839 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
16840 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
16841 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.txt
16842 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.txt
16843 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
16844 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
16845 F:      drivers/clk/keystone/sci-clk.c
16846 F:      drivers/firmware/ti_sci*
16847 F:      drivers/irqchip/irq-ti-sci-inta.c
16848 F:      drivers/irqchip/irq-ti-sci-intr.c
16849 F:      drivers/reset/reset-ti-sci.c
16850 F:      drivers/soc/ti/ti_sci_inta_msi.c
16851 F:      drivers/soc/ti/ti_sci_pm_domains.c
16852 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
16853 F:      include/linux/soc/ti/ti_sci_inta_msi.h
16854 F:      include/linux/soc/ti/ti_sci_protocol.h
16855
16856 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
16857 M:      Hans Verkuil <hverkuil@xs4all.nl>
16858 L:      linux-media@vger.kernel.org
16859 S:      Maintained
16860 W:      https://linuxtv.org
16861 T:      git git://linuxtv.org/media_tree.git
16862 F:      drivers/media/radio/radio-raremono.c
16863
16864 THERMAL
16865 M:      Zhang Rui <rui.zhang@intel.com>
16866 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
16867 R:      Amit Kucheria <amit.kucheria@verdurent.com>
16868 L:      linux-pm@vger.kernel.org
16869 S:      Supported
16870 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
16872 F:      Documentation/devicetree/bindings/thermal/
16873 F:      drivers/thermal/
16874 F:      include/linux/cpu_cooling.h
16875 F:      include/linux/thermal.h
16876 F:      include/uapi/linux/thermal.h
16877
16878 THERMAL DRIVER FOR AMLOGIC SOCS
16879 M:      Guillaume La Roque <glaroque@baylibre.com>
16880 L:      linux-pm@vger.kernel.org
16881 L:      linux-amlogic@lists.infradead.org
16882 S:      Supported
16883 W:      http://linux-meson.com/
16884 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
16885 F:      drivers/thermal/amlogic_thermal.c
16886
16887 THERMAL/CPU_COOLING
16888 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
16889 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
16890 M:      Viresh Kumar <viresh.kumar@linaro.org>
16891 M:      Javi Merino <javi.merino@kernel.org>
16892 L:      linux-pm@vger.kernel.org
16893 S:      Supported
16894 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
16895 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
16896 F:      drivers/thermal/cpufreq_cooling.c
16897 F:      drivers/thermal/cpuidle_cooling.c
16898 F:      include/linux/cpu_cooling.h
16899
16900 THINKPAD ACPI EXTRAS DRIVER
16901 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
16902 L:      ibm-acpi-devel@lists.sourceforge.net
16903 L:      platform-driver-x86@vger.kernel.org
16904 S:      Maintained
16905 W:      http://ibm-acpi.sourceforge.net
16906 W:      http://thinkwiki.org/wiki/Ibm-acpi
16907 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
16908 F:      drivers/platform/x86/thinkpad_acpi.c
16909
16910 THUNDERBOLT DRIVER
16911 M:      Andreas Noever <andreas.noever@gmail.com>
16912 M:      Michael Jamet <michael.jamet@intel.com>
16913 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16914 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16915 L:      linux-usb@vger.kernel.org
16916 S:      Maintained
16917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
16918 F:      Documentation/admin-guide/thunderbolt.rst
16919 F:      drivers/thunderbolt/
16920 F:      include/linux/thunderbolt.h
16921
16922 THUNDERBOLT NETWORK DRIVER
16923 M:      Michael Jamet <michael.jamet@intel.com>
16924 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16925 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16926 L:      netdev@vger.kernel.org
16927 S:      Maintained
16928 F:      drivers/net/thunderbolt.c
16929
16930 THUNDERX GPIO DRIVER
16931 M:      Robert Richter <rrichter@marvell.com>
16932 S:      Maintained
16933 F:      drivers/gpio/gpio-thunderx.c
16934
16935 TI AM437X VPFE DRIVER
16936 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
16937 L:      linux-media@vger.kernel.org
16938 S:      Maintained
16939 W:      https://linuxtv.org
16940 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16941 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16942 F:      drivers/media/platform/am437x/
16943
16944 TI BANDGAP AND THERMAL DRIVER
16945 M:      Eduardo Valentin <edubezval@gmail.com>
16946 M:      Keerthy <j-keerthy@ti.com>
16947 L:      linux-pm@vger.kernel.org
16948 L:      linux-omap@vger.kernel.org
16949 S:      Maintained
16950 F:      drivers/thermal/ti-soc-thermal/
16951
16952 TI BQ27XXX POWER SUPPLY DRIVER
16953 R:      Andrew F. Davis <afd@ti.com>
16954 F:      drivers/power/supply/bq27xxx_battery.c
16955 F:      drivers/power/supply/bq27xxx_battery_i2c.c
16956 F:      include/linux/power/bq27xxx_battery.h
16957
16958 TI CDCE706 CLOCK DRIVER
16959 M:      Max Filippov <jcmvbkbc@gmail.com>
16960 S:      Maintained
16961 F:      drivers/clk/clk-cdce706.c
16962
16963 TI CLOCK DRIVER
16964 M:      Tero Kristo <t-kristo@ti.com>
16965 L:      linux-omap@vger.kernel.org
16966 S:      Maintained
16967 F:      drivers/clk/ti/
16968 F:      include/linux/clk/ti.h
16969
16970 TI DAVINCI MACHINE SUPPORT
16971 M:      Sekhar Nori <nsekhar@ti.com>
16972 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
16973 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16974 S:      Supported
16975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
16976 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
16977 F:      arch/arm/boot/dts/da850*
16978 F:      arch/arm/mach-davinci/
16979 F:      drivers/i2c/busses/i2c-davinci.c
16980
16981 TI DAVINCI SERIES CLOCK DRIVER
16982 M:      David Lechner <david@lechnology.com>
16983 R:      Sekhar Nori <nsekhar@ti.com>
16984 S:      Maintained
16985 F:      Documentation/devicetree/bindings/clock/ti/davinci/
16986 F:      drivers/clk/davinci/
16987
16988 TI DAVINCI SERIES GPIO DRIVER
16989 M:      Keerthy <j-keerthy@ti.com>
16990 L:      linux-gpio@vger.kernel.org
16991 S:      Maintained
16992 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
16993 F:      drivers/gpio/gpio-davinci.c
16994
16995 TI DAVINCI SERIES MEDIA DRIVER
16996 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
16997 L:      linux-media@vger.kernel.org
16998 S:      Maintained
16999 W:      https://linuxtv.org
17000 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17001 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17002 F:      drivers/media/platform/davinci/
17003 F:      include/media/davinci/
17004
17005 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
17006 R:      David Lechner <david@lechnology.com>
17007 L:      linux-iio@vger.kernel.org
17008 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
17009 F:      drivers/counter/ti-eqep.c
17010
17011 TI ETHERNET SWITCH DRIVER (CPSW)
17012 R:      Grygorii Strashko <grygorii.strashko@ti.com>
17013 L:      linux-omap@vger.kernel.org
17014 L:      netdev@vger.kernel.org
17015 S:      Maintained
17016 F:      drivers/net/ethernet/ti/cpsw*
17017 F:      drivers/net/ethernet/ti/davinci*
17018
17019 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
17020 M:      Alex Dubov <oakad@yahoo.com>
17021 S:      Maintained
17022 W:      http://tifmxx.berlios.de/
17023 F:      drivers/memstick/host/tifm_ms.c
17024 F:      drivers/misc/tifm*
17025 F:      drivers/mmc/host/tifm_sd.c
17026 F:      include/linux/tifm.h
17027
17028 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
17029 M:      Santosh Shilimkar <ssantosh@kernel.org>
17030 L:      linux-kernel@vger.kernel.org
17031 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17032 S:      Maintained
17033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
17034 F:      drivers/soc/ti/*
17035
17036 TI LM49xxx FAMILY ASoC CODEC DRIVERS
17037 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
17038 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
17039 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17040 S:      Maintained
17041 F:      sound/soc/codecs/isabelle*
17042 F:      sound/soc/codecs/lm49453*
17043
17044 TI LP855x BACKLIGHT DRIVER
17045 M:      Milo Kim <milo.kim@ti.com>
17046 S:      Maintained
17047 F:      Documentation/driver-api/backlight/lp855x-driver.rst
17048 F:      drivers/video/backlight/lp855x_bl.c
17049 F:      include/linux/platform_data/lp855x.h
17050
17051 TI LP8727 CHARGER DRIVER
17052 M:      Milo Kim <milo.kim@ti.com>
17053 S:      Maintained
17054 F:      drivers/power/supply/lp8727_charger.c
17055 F:      include/linux/platform_data/lp8727.h
17056
17057 TI LP8788 MFD DRIVER
17058 M:      Milo Kim <milo.kim@ti.com>
17059 S:      Maintained
17060 F:      drivers/iio/adc/lp8788_adc.c
17061 F:      drivers/leds/leds-lp8788.c
17062 F:      drivers/mfd/lp8788*.c
17063 F:      drivers/power/supply/lp8788-charger.c
17064 F:      drivers/regulator/lp8788-*.c
17065 F:      include/linux/mfd/lp8788*.h
17066
17067 TI NETCP ETHERNET DRIVER
17068 M:      Wingman Kwok <w-kwok2@ti.com>
17069 M:      Murali Karicheri <m-karicheri2@ti.com>
17070 L:      netdev@vger.kernel.org
17071 S:      Maintained
17072 F:      drivers/net/ethernet/ti/netcp*
17073
17074 TI PCM3060 ASoC CODEC DRIVER
17075 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
17076 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17077 S:      Maintained
17078 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
17079 F:      sound/soc/codecs/pcm3060*
17080
17081 TI TAS571X FAMILY ASoC CODEC DRIVER
17082 M:      Kevin Cernekee <cernekee@chromium.org>
17083 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17084 S:      Odd Fixes
17085 F:      sound/soc/codecs/tas571x*
17086
17087 TI TCAN4X5X DEVICE DRIVER
17088 M:      Dan Murphy <dmurphy@ti.com>
17089 L:      linux-can@vger.kernel.org
17090 S:      Maintained
17091 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
17092 F:      drivers/net/can/m_can/tcan4x5x.c
17093
17094 TI TRF7970A NFC DRIVER
17095 M:      Mark Greer <mgreer@animalcreek.com>
17096 L:      linux-wireless@vger.kernel.org
17097 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
17098 S:      Supported
17099 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
17100 F:      drivers/nfc/trf7970a.c
17101
17102 TI TWL4030 SERIES SOC CODEC DRIVER
17103 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
17104 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17105 S:      Maintained
17106 F:      sound/soc/codecs/twl4030*
17107
17108 TI VPE/CAL DRIVERS
17109 M:      Benoit Parrot <bparrot@ti.com>
17110 L:      linux-media@vger.kernel.org
17111 S:      Maintained
17112 W:      http://linuxtv.org/
17113 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17114 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
17115 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
17116 F:      drivers/media/platform/ti-vpe/
17117
17118 TI WILINK WIRELESS DRIVERS
17119 L:      linux-wireless@vger.kernel.org
17120 S:      Orphan
17121 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
17122 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
17123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
17124 F:      drivers/net/wireless/ti/
17125 F:      include/linux/wl12xx.h
17126
17127 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
17128 M:      John Stultz <john.stultz@linaro.org>
17129 M:      Thomas Gleixner <tglx@linutronix.de>
17130 R:      Stephen Boyd <sboyd@kernel.org>
17131 L:      linux-kernel@vger.kernel.org
17132 S:      Supported
17133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
17134 F:      include/linux/clocksource.h
17135 F:      include/linux/time.h
17136 F:      include/linux/timex.h
17137 F:      include/uapi/linux/time.h
17138 F:      include/uapi/linux/timex.h
17139 F:      kernel/time/alarmtimer.c
17140 F:      kernel/time/clocksource.c
17141 F:      kernel/time/ntp.c
17142 F:      kernel/time/time*.c
17143 F:      tools/testing/selftests/timers/
17144
17145 TIPC NETWORK LAYER
17146 M:      Jon Maloy <jmaloy@redhat.com>
17147 M:      Ying Xue <ying.xue@windriver.com>
17148 L:      netdev@vger.kernel.org (core kernel code)
17149 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
17150 S:      Maintained
17151 W:      http://tipc.sourceforge.net/
17152 F:      include/uapi/linux/tipc*.h
17153 F:      net/tipc/
17154
17155 TLAN NETWORK DRIVER
17156 M:      Samuel Chessman <chessman@tux.org>
17157 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
17158 S:      Maintained
17159 W:      http://sourceforge.net/projects/tlan/
17160 F:      Documentation/networking/device_drivers/ti/tlan.rst
17161 F:      drivers/net/ethernet/ti/tlan.*
17162
17163 TM6000 VIDEO4LINUX DRIVER
17164 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17165 L:      linux-media@vger.kernel.org
17166 S:      Odd fixes
17167 W:      https://linuxtv.org
17168 T:      git git://linuxtv.org/media_tree.git
17169 F:      Documentation/admin-guide/media/tm6000*
17170 F:      drivers/media/usb/tm6000/
17171
17172 TMIO/SDHI MMC DRIVER
17173 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17174 L:      linux-mmc@vger.kernel.org
17175 S:      Supported
17176 F:      drivers/mmc/host/renesas_sdhi*
17177 F:      drivers/mmc/host/tmio_mmc*
17178 F:      include/linux/mfd/tmio.h
17179
17180 TMP401 HARDWARE MONITOR DRIVER
17181 M:      Guenter Roeck <linux@roeck-us.net>
17182 L:      linux-hwmon@vger.kernel.org
17183 S:      Maintained
17184 F:      Documentation/hwmon/tmp401.rst
17185 F:      drivers/hwmon/tmp401.c
17186
17187 TMP513 HARDWARE MONITOR DRIVER
17188 M:      Eric Tremblay <etremblay@distech-controls.com>
17189 L:      linux-hwmon@vger.kernel.org
17190 S:      Maintained
17191 F:      Documentation/hwmon/tmp513.rst
17192 F:      drivers/hwmon/tmp513.c
17193
17194 TMPFS (SHMEM FILESYSTEM)
17195 M:      Hugh Dickins <hughd@google.com>
17196 L:      linux-mm@kvack.org
17197 S:      Maintained
17198 F:      include/linux/shmem_fs.h
17199 F:      mm/shmem.c
17200
17201 TOMOYO SECURITY MODULE
17202 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
17203 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
17204 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
17205 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
17206 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
17207 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
17208 S:      Maintained
17209 W:      https://tomoyo.osdn.jp/
17210 F:      security/tomoyo/
17211
17212 TOPSTAR LAPTOP EXTRAS DRIVER
17213 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17214 L:      platform-driver-x86@vger.kernel.org
17215 S:      Maintained
17216 F:      drivers/platform/x86/topstar-laptop.c
17217
17218 TORTURE-TEST MODULES
17219 M:      Davidlohr Bueso <dave@stgolabs.net>
17220 M:      "Paul E. McKenney" <paulmck@kernel.org>
17221 M:      Josh Triplett <josh@joshtriplett.org>
17222 L:      linux-kernel@vger.kernel.org
17223 S:      Supported
17224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17225 F:      Documentation/RCU/torture.txt
17226 F:      kernel/locking/locktorture.c
17227 F:      kernel/rcu/rcuperf.c
17228 F:      kernel/rcu/rcutorture.c
17229 F:      kernel/torture.c
17230
17231 TOSHIBA ACPI EXTRAS DRIVER
17232 M:      Azael Avalos <coproscefalo@gmail.com>
17233 L:      platform-driver-x86@vger.kernel.org
17234 S:      Maintained
17235 F:      drivers/platform/x86/toshiba_acpi.c
17236
17237 TOSHIBA BLUETOOTH DRIVER
17238 M:      Azael Avalos <coproscefalo@gmail.com>
17239 L:      platform-driver-x86@vger.kernel.org
17240 S:      Maintained
17241 F:      drivers/platform/x86/toshiba_bluetooth.c
17242
17243 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
17244 M:      Azael Avalos <coproscefalo@gmail.com>
17245 L:      platform-driver-x86@vger.kernel.org
17246 S:      Maintained
17247 F:      drivers/platform/x86/toshiba_haps.c
17248
17249 TOSHIBA SMM DRIVER
17250 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
17251 S:      Maintained
17252 W:      http://www.buzzard.org.uk/toshiba/
17253 F:      drivers/char/toshiba.c
17254 F:      include/linux/toshiba.h
17255 F:      include/uapi/linux/toshiba.h
17256
17257 TOSHIBA TC358743 DRIVER
17258 M:      Mats Randgaard <matrandg@cisco.com>
17259 L:      linux-media@vger.kernel.org
17260 S:      Maintained
17261 F:      drivers/media/i2c/tc358743*
17262 F:      include/media/i2c/tc358743.h
17263
17264 TOSHIBA WMI HOTKEYS DRIVER
17265 M:      Azael Avalos <coproscefalo@gmail.com>
17266 L:      platform-driver-x86@vger.kernel.org
17267 S:      Maintained
17268 F:      drivers/platform/x86/toshiba-wmi.c
17269
17270 TPM DEVICE DRIVER
17271 M:      Peter Huewe <peterhuewe@gmx.de>
17272 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
17273 R:      Jason Gunthorpe <jgg@ziepe.ca>
17274 L:      linux-integrity@vger.kernel.org
17275 S:      Maintained
17276 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
17277 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
17278 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
17279 F:      drivers/char/tpm/
17280
17281 TRACING
17282 M:      Steven Rostedt <rostedt@goodmis.org>
17283 M:      Ingo Molnar <mingo@redhat.com>
17284 S:      Maintained
17285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
17286 F:      Documentation/trace/ftrace.rst
17287 F:      arch/*/*/*/ftrace.h
17288 F:      arch/*/kernel/ftrace.c
17289 F:      include/*/ftrace.h
17290 F:      include/linux/trace*.h
17291 F:      include/trace/
17292 F:      kernel/trace/
17293 F:      tools/testing/selftests/ftrace/
17294
17295 TRACING MMIO ACCESSES (MMIOTRACE)
17296 M:      Steven Rostedt <rostedt@goodmis.org>
17297 M:      Ingo Molnar <mingo@kernel.org>
17298 R:      Karol Herbst <karolherbst@gmail.com>
17299 R:      Pekka Paalanen <ppaalanen@gmail.com>
17300 L:      linux-kernel@vger.kernel.org
17301 L:      nouveau@lists.freedesktop.org
17302 S:      Maintained
17303 F:      arch/x86/mm/kmmio.c
17304 F:      arch/x86/mm/mmio-mod.c
17305 F:      arch/x86/mm/testmmiotrace.c
17306 F:      include/linux/mmiotrace.h
17307 F:      kernel/trace/trace_mmiotrace.c
17308
17309 TRIVIAL PATCHES
17310 M:      Jiri Kosina <trivial@kernel.org>
17311 S:      Maintained
17312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
17313 K:      ^Subject:.*(?i)trivial
17314
17315 TTY LAYER
17316 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17317 M:      Jiri Slaby <jslaby@suse.com>
17318 S:      Supported
17319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
17320 F:      Documentation/driver-api/serial/
17321 F:      drivers/tty/
17322 F:      drivers/tty/serial/serial_core.c
17323 F:      include/linux/serial.h
17324 F:      include/linux/serial_core.h
17325 F:      include/linux/tty.h
17326 F:      include/uapi/linux/serial.h
17327 F:      include/uapi/linux/serial_core.h
17328 F:      include/uapi/linux/tty.h
17329
17330 TUA9001 MEDIA DRIVER
17331 M:      Antti Palosaari <crope@iki.fi>
17332 L:      linux-media@vger.kernel.org
17333 S:      Maintained
17334 W:      https://linuxtv.org
17335 W:      http://palosaari.fi/linux/
17336 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17337 T:      git git://linuxtv.org/anttip/media_tree.git
17338 F:      drivers/media/tuners/tua9001*
17339
17340 TULIP NETWORK DRIVERS
17341 L:      netdev@vger.kernel.org
17342 L:      linux-parisc@vger.kernel.org
17343 S:      Orphan
17344 F:      drivers/net/ethernet/dec/tulip/
17345
17346 TUN/TAP driver
17347 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
17348 S:      Maintained
17349 W:      http://vtun.sourceforge.net/tun
17350 F:      Documentation/networking/tuntap.rst
17351 F:      arch/um/os-Linux/drivers/
17352
17353 TURBOCHANNEL SUBSYSTEM
17354 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
17355 M:      Ralf Baechle <ralf@linux-mips.org>
17356 L:      linux-mips@vger.kernel.org
17357 S:      Maintained
17358 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
17359 F:      drivers/tc/
17360 F:      include/linux/tc.h
17361
17362 TURBOSTAT UTILITY
17363 M:      "Len Brown" <lenb@kernel.org>
17364 L:      linux-pm@vger.kernel.org
17365 S:      Supported
17366 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17367 B:      https://bugzilla.kernel.org
17368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
17369 F:      tools/power/x86/turbostat/
17370
17371 TW5864 VIDEO4LINUX DRIVER
17372 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17373 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17374 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
17375 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17376 L:      linux-media@vger.kernel.org
17377 S:      Supported
17378 F:      drivers/media/pci/tw5864/
17379
17380 TW68 VIDEO4LINUX DRIVER
17381 M:      Hans Verkuil <hverkuil@xs4all.nl>
17382 L:      linux-media@vger.kernel.org
17383 S:      Odd Fixes
17384 W:      https://linuxtv.org
17385 T:      git git://linuxtv.org/media_tree.git
17386 F:      drivers/media/pci/tw68/
17387
17388 TW686X VIDEO4LINUX DRIVER
17389 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17390 L:      linux-media@vger.kernel.org
17391 S:      Maintained
17392 W:      http://linuxtv.org
17393 T:      git git://linuxtv.org/media_tree.git
17394 F:      drivers/media/pci/tw686x/
17395
17396 UACCE ACCELERATOR FRAMEWORK
17397 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
17398 M:      Zhou Wang <wangzhou1@hisilicon.com>
17399 L:      linux-accelerators@lists.ozlabs.org
17400 L:      linux-kernel@vger.kernel.org
17401 S:      Maintained
17402 F:      Documentation/ABI/testing/sysfs-driver-uacce
17403 F:      Documentation/misc-devices/uacce.rst
17404 F:      drivers/misc/uacce/
17405 F:      include/linux/uacce.h
17406 F:      include/uapi/misc/uacce/
17407
17408 UBI FILE SYSTEM (UBIFS)
17409 M:      Richard Weinberger <richard@nod.at>
17410 L:      linux-mtd@lists.infradead.org
17411 S:      Supported
17412 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
17413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17415 F:      Documentation/filesystems/ubifs.rst
17416 F:      fs/ubifs/
17417
17418 UCLINUX (M68KNOMMU AND COLDFIRE)
17419 M:      Greg Ungerer <gerg@linux-m68k.org>
17420 L:      linux-m68k@lists.linux-m68k.org
17421 L:      uclinux-dev@uclinux.org  (subscribers-only)
17422 S:      Maintained
17423 W:      http://www.linux-m68k.org/
17424 W:      http://www.uclinux.org/
17425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
17426 F:      arch/m68k/*/*_no.*
17427 F:      arch/m68k/68*/
17428 F:      arch/m68k/coldfire/
17429 F:      arch/m68k/include/asm/*_no.*
17430
17431 UDF FILESYSTEM
17432 M:      Jan Kara <jack@suse.com>
17433 S:      Maintained
17434 F:      Documentation/filesystems/udf.rst
17435 F:      fs/udf/
17436
17437 UDRAW TABLET
17438 M:      Bastien Nocera <hadess@hadess.net>
17439 L:      linux-input@vger.kernel.org
17440 S:      Maintained
17441 F:      drivers/hid/hid-udraw-ps3.c
17442
17443 UFS FILESYSTEM
17444 M:      Evgeniy Dushistov <dushistov@mail.ru>
17445 S:      Maintained
17446 F:      Documentation/admin-guide/ufs.rst
17447 F:      fs/ufs/
17448
17449 UHID USERSPACE HID IO DRIVER
17450 M:      David Herrmann <dh.herrmann@googlemail.com>
17451 L:      linux-input@vger.kernel.org
17452 S:      Maintained
17453 F:      drivers/hid/uhid.c
17454 F:      include/uapi/linux/uhid.h
17455
17456 ULPI BUS
17457 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17458 L:      linux-usb@vger.kernel.org
17459 S:      Maintained
17460 F:      drivers/usb/common/ulpi.c
17461 F:      include/linux/ulpi/
17462
17463 UNICODE SUBSYSTEM
17464 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
17465 L:      linux-fsdevel@vger.kernel.org
17466 S:      Supported
17467 F:      fs/unicode/
17468
17469 UNICORE32 ARCHITECTURE
17470 M:      Guan Xuetao <gxt@pku.edu.cn>
17471 S:      Maintained
17472 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
17473 T:      git git://github.com/gxt/linux.git
17474 F:      arch/unicore32/
17475
17476 UNIFDEF
17477 M:      Tony Finch <dot@dotat.at>
17478 S:      Maintained
17479 W:      http://dotat.at/prog/unifdef
17480 F:      scripts/unifdef.c
17481
17482 UNIFORM CDROM DRIVER
17483 M:      Jens Axboe <axboe@kernel.dk>
17484 S:      Maintained
17485 W:      http://www.kernel.dk
17486 F:      Documentation/cdrom/
17487 F:      drivers/cdrom/cdrom.c
17488 F:      include/linux/cdrom.h
17489 F:      include/uapi/linux/cdrom.h
17490
17491 UNISYS S-PAR DRIVERS
17492 M:      David Kershner <david.kershner@unisys.com>
17493 L:      sparmaintainer@unisys.com (Unisys internal)
17494 S:      Supported
17495 F:      drivers/staging/unisys/
17496 F:      drivers/visorbus/
17497 F:      include/linux/visorbus.h
17498
17499 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
17500 R:      Alim Akhtar <alim.akhtar@samsung.com>
17501 R:      Avri Altman <avri.altman@wdc.com>
17502 L:      linux-scsi@vger.kernel.org
17503 S:      Supported
17504 F:      Documentation/scsi/ufs.rst
17505 F:      drivers/scsi/ufs/
17506
17507 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
17508 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
17509 L:      linux-scsi@vger.kernel.org
17510 S:      Supported
17511 F:      drivers/scsi/ufs/*dwc*
17512
17513 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
17514 M:      Stanley Chu <stanley.chu@mediatek.com>
17515 L:      linux-scsi@vger.kernel.org
17516 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
17517 S:      Maintained
17518 F:      drivers/scsi/ufs/ufs-mediatek*
17519
17520 UNSORTED BLOCK IMAGES (UBI)
17521 M:      Richard Weinberger <richard@nod.at>
17522 L:      linux-mtd@lists.infradead.org
17523 S:      Supported
17524 W:      http://www.linux-mtd.infradead.org/
17525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17527 F:      drivers/mtd/ubi/
17528 F:      include/linux/mtd/ubi.h
17529 F:      include/uapi/mtd/ubi-user.h
17530
17531 USB "USBNET" DRIVER FRAMEWORK
17532 M:      Oliver Neukum <oneukum@suse.com>
17533 L:      netdev@vger.kernel.org
17534 S:      Maintained
17535 W:      http://www.linux-usb.org/usbnet
17536 F:      drivers/net/usb/usbnet.c
17537 F:      include/linux/usb/usbnet.h
17538
17539 USB ACM DRIVER
17540 M:      Oliver Neukum <oneukum@suse.com>
17541 L:      linux-usb@vger.kernel.org
17542 S:      Maintained
17543 F:      Documentation/usb/acm.rst
17544 F:      drivers/usb/class/cdc-acm.*
17545
17546 USB APPLE MFI FASTCHARGE DRIVER
17547 M:      Bastien Nocera <hadess@hadess.net>
17548 L:      linux-usb@vger.kernel.org
17549 S:      Maintained
17550 F:      drivers/usb/misc/apple-mfi-fastcharge.c
17551
17552 USB AR5523 WIRELESS DRIVER
17553 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
17554 L:      linux-wireless@vger.kernel.org
17555 S:      Maintained
17556 F:      drivers/net/wireless/ath/ar5523/
17557
17558 USB ATTACHED SCSI
17559 M:      Oliver Neukum <oneukum@suse.com>
17560 L:      linux-usb@vger.kernel.org
17561 L:      linux-scsi@vger.kernel.org
17562 S:      Maintained
17563 F:      drivers/usb/storage/uas.c
17564
17565 USB CDC ETHERNET DRIVER
17566 M:      Oliver Neukum <oliver@neukum.org>
17567 L:      linux-usb@vger.kernel.org
17568 S:      Maintained
17569 F:      drivers/net/usb/cdc_*.c
17570 F:      include/uapi/linux/usb/cdc.h
17571
17572 USB CHAOSKEY DRIVER
17573 M:      Keith Packard <keithp@keithp.com>
17574 L:      linux-usb@vger.kernel.org
17575 S:      Maintained
17576 F:      drivers/usb/misc/chaoskey.c
17577
17578 USB CYPRESS C67X00 DRIVER
17579 M:      Peter Korsgaard <jacmet@sunsite.dk>
17580 L:      linux-usb@vger.kernel.org
17581 S:      Maintained
17582 F:      drivers/usb/c67x00/
17583
17584 USB DAVICOM DM9601 DRIVER
17585 M:      Peter Korsgaard <jacmet@sunsite.dk>
17586 L:      netdev@vger.kernel.org
17587 S:      Maintained
17588 W:      http://www.linux-usb.org/usbnet
17589 F:      drivers/net/usb/dm9601.c
17590
17591 USB EHCI DRIVER
17592 M:      Alan Stern <stern@rowland.harvard.edu>
17593 L:      linux-usb@vger.kernel.org
17594 S:      Maintained
17595 F:      Documentation/usb/ehci.rst
17596 F:      drivers/usb/host/ehci*
17597
17598 USB GADGET/PERIPHERAL SUBSYSTEM
17599 M:      Felipe Balbi <balbi@kernel.org>
17600 L:      linux-usb@vger.kernel.org
17601 S:      Maintained
17602 W:      http://www.linux-usb.org/gadget
17603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17604 F:      drivers/usb/gadget/
17605 F:      include/linux/usb/gadget*
17606
17607 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
17608 M:      Jiri Kosina <jikos@kernel.org>
17609 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
17610 L:      linux-usb@vger.kernel.org
17611 S:      Maintained
17612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
17613 F:      Documentation/hid/hiddev.rst
17614 F:      drivers/hid/usbhid/
17615
17616 USB INTEL XHCI ROLE MUX DRIVER
17617 M:      Hans de Goede <hdegoede@redhat.com>
17618 L:      linux-usb@vger.kernel.org
17619 S:      Maintained
17620 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
17621
17622 USB IP DRIVER FOR HISILICON KIRIN
17623 M:      Yu Chen <chenyu56@huawei.com>
17624 M:      Binghui Wang <wangbinghui@hisilicon.com>
17625 L:      linux-usb@vger.kernel.org
17626 S:      Maintained
17627 F:      Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
17628 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
17629
17630 USB ISP116X DRIVER
17631 M:      Olav Kongas <ok@artecdesign.ee>
17632 L:      linux-usb@vger.kernel.org
17633 S:      Maintained
17634 F:      drivers/usb/host/isp116x*
17635 F:      include/linux/usb/isp116x.h
17636
17637 USB LAN78XX ETHERNET DRIVER
17638 M:      Woojung Huh <woojung.huh@microchip.com>
17639 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
17640 L:      netdev@vger.kernel.org
17641 S:      Maintained
17642 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
17643 F:      drivers/net/usb/lan78xx.*
17644 F:      include/dt-bindings/net/microchip-lan78xx.h
17645
17646 USB MASS STORAGE DRIVER
17647 M:      Alan Stern <stern@rowland.harvard.edu>
17648 L:      linux-usb@vger.kernel.org
17649 L:      usb-storage@lists.one-eyed-alien.net
17650 S:      Maintained
17651 F:      drivers/usb/storage/
17652
17653 USB MIDI DRIVER
17654 M:      Clemens Ladisch <clemens@ladisch.de>
17655 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17656 S:      Maintained
17657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17658 F:      sound/usb/midi.*
17659
17660 USB NETWORKING DRIVERS
17661 L:      linux-usb@vger.kernel.org
17662 S:      Odd Fixes
17663 F:      drivers/net/usb/
17664
17665 USB OHCI DRIVER
17666 M:      Alan Stern <stern@rowland.harvard.edu>
17667 L:      linux-usb@vger.kernel.org
17668 S:      Maintained
17669 F:      Documentation/usb/ohci.rst
17670 F:      drivers/usb/host/ohci*
17671
17672 USB OTG FSM (Finite State Machine)
17673 M:      Peter Chen <Peter.Chen@nxp.com>
17674 L:      linux-usb@vger.kernel.org
17675 S:      Maintained
17676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
17677 F:      drivers/usb/common/usb-otg-fsm.c
17678
17679 USB OVER IP DRIVER
17680 M:      Valentina Manea <valentina.manea.m@gmail.com>
17681 M:      Shuah Khan <shuah@kernel.org>
17682 M:      Shuah Khan <skhan@linuxfoundation.org>
17683 L:      linux-usb@vger.kernel.org
17684 S:      Maintained
17685 F:      Documentation/usb/usbip_protocol.rst
17686 F:      drivers/usb/usbip/
17687 F:      tools/testing/selftests/drivers/usb/usbip/
17688 F:      tools/usb/usbip/
17689
17690 USB PEGASUS DRIVER
17691 M:      Petko Manolov <petkan@nucleusys.com>
17692 L:      linux-usb@vger.kernel.org
17693 L:      netdev@vger.kernel.org
17694 S:      Maintained
17695 W:      https://github.com/petkan/pegasus
17696 T:      git git://github.com/petkan/pegasus.git
17697 F:      drivers/net/usb/pegasus.*
17698
17699 USB PHY LAYER
17700 M:      Felipe Balbi <balbi@kernel.org>
17701 L:      linux-usb@vger.kernel.org
17702 S:      Maintained
17703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17704 F:      drivers/usb/phy/
17705
17706 USB PRINTER DRIVER (usblp)
17707 M:      Pete Zaitcev <zaitcev@redhat.com>
17708 L:      linux-usb@vger.kernel.org
17709 S:      Supported
17710 F:      drivers/usb/class/usblp.c
17711
17712 USB QMI WWAN NETWORK DRIVER
17713 M:      Bjørn Mork <bjorn@mork.no>
17714 L:      netdev@vger.kernel.org
17715 S:      Maintained
17716 F:      Documentation/ABI/testing/sysfs-class-net-qmi
17717 F:      drivers/net/usb/qmi_wwan.c
17718
17719 USB RTL8150 DRIVER
17720 M:      Petko Manolov <petkan@nucleusys.com>
17721 L:      linux-usb@vger.kernel.org
17722 L:      netdev@vger.kernel.org
17723 S:      Maintained
17724 W:      https://github.com/petkan/rtl8150
17725 T:      git git://github.com/petkan/rtl8150.git
17726 F:      drivers/net/usb/rtl8150.c
17727
17728 USB SERIAL SUBSYSTEM
17729 M:      Johan Hovold <johan@kernel.org>
17730 L:      linux-usb@vger.kernel.org
17731 S:      Maintained
17732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
17733 F:      Documentation/usb/usb-serial.rst
17734 F:      drivers/usb/serial/
17735 F:      include/linux/usb/serial.h
17736
17737 USB SMSC75XX ETHERNET DRIVER
17738 M:      Steve Glendinning <steve.glendinning@shawell.net>
17739 L:      netdev@vger.kernel.org
17740 S:      Maintained
17741 F:      drivers/net/usb/smsc75xx.*
17742
17743 USB SMSC95XX ETHERNET DRIVER
17744 M:      Steve Glendinning <steve.glendinning@shawell.net>
17745 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
17746 L:      netdev@vger.kernel.org
17747 S:      Maintained
17748 F:      drivers/net/usb/smsc95xx.*
17749
17750 USB SUBSYSTEM
17751 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17752 L:      linux-usb@vger.kernel.org
17753 S:      Supported
17754 W:      http://www.linux-usb.org
17755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
17756 F:      Documentation/devicetree/bindings/usb/
17757 F:      Documentation/usb/
17758 F:      drivers/usb/
17759 F:      include/linux/usb.h
17760 F:      include/linux/usb/
17761
17762 USB TYPEC BUS FOR ALTERNATE MODES
17763 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17764 L:      linux-usb@vger.kernel.org
17765 S:      Maintained
17766 F:      Documentation/ABI/testing/sysfs-bus-typec
17767 F:      Documentation/driver-api/usb/typec_bus.rst
17768 F:      drivers/usb/typec/altmodes/
17769 F:      include/linux/usb/typec_altmode.h
17770
17771 USB TYPEC CLASS
17772 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17773 L:      linux-usb@vger.kernel.org
17774 S:      Maintained
17775 F:      Documentation/ABI/testing/sysfs-class-typec
17776 F:      Documentation/driver-api/usb/typec.rst
17777 F:      drivers/usb/typec/
17778 F:      include/linux/usb/typec.h
17779
17780 USB TYPEC INTEL PMC MUX DRIVER
17781 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17782 L:      linux-usb@vger.kernel.org
17783 S:      Maintained
17784 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
17785 F:      drivers/usb/typec/mux/intel_pmc_mux.c
17786
17787 USB TYPEC PI3USB30532 MUX DRIVER
17788 M:      Hans de Goede <hdegoede@redhat.com>
17789 L:      linux-usb@vger.kernel.org
17790 S:      Maintained
17791 F:      drivers/usb/typec/mux/pi3usb30532.c
17792
17793 USB TYPEC PORT CONTROLLER DRIVERS
17794 M:      Guenter Roeck <linux@roeck-us.net>
17795 L:      linux-usb@vger.kernel.org
17796 S:      Maintained
17797 F:      drivers/usb/typec/tcpm/
17798
17799 USB UHCI DRIVER
17800 M:      Alan Stern <stern@rowland.harvard.edu>
17801 L:      linux-usb@vger.kernel.org
17802 S:      Maintained
17803 F:      drivers/usb/host/uhci*
17804
17805 USB VIDEO CLASS
17806 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17807 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
17808 L:      linux-media@vger.kernel.org
17809 S:      Maintained
17810 W:      http://www.ideasonboard.org/uvc/
17811 T:      git git://linuxtv.org/media_tree.git
17812 F:      drivers/media/usb/uvc/
17813 F:      include/uapi/linux/uvcvideo.h
17814
17815 USB VISION DRIVER
17816 M:      Hans Verkuil <hverkuil@xs4all.nl>
17817 L:      linux-media@vger.kernel.org
17818 S:      Odd Fixes
17819 W:      https://linuxtv.org
17820 T:      git git://linuxtv.org/media_tree.git
17821 F:      drivers/staging/media/usbvision/
17822
17823 USB WEBCAM GADGET
17824 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17825 L:      linux-usb@vger.kernel.org
17826 S:      Maintained
17827 F:      drivers/usb/gadget/function/*uvc*
17828 F:      drivers/usb/gadget/legacy/webcam.c
17829 F:      include/uapi/linux/usb/g_uvc.h
17830
17831 USB WIRELESS RNDIS DRIVER (rndis_wlan)
17832 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
17833 L:      linux-wireless@vger.kernel.org
17834 S:      Maintained
17835 F:      drivers/net/wireless/rndis_wlan.c
17836
17837 USB XHCI DRIVER
17838 M:      Mathias Nyman <mathias.nyman@intel.com>
17839 L:      linux-usb@vger.kernel.org
17840 S:      Supported
17841 F:      drivers/usb/host/pci-quirks*
17842 F:      drivers/usb/host/xhci*
17843
17844 USB ZD1201 DRIVER
17845 L:      linux-wireless@vger.kernel.org
17846 S:      Orphan
17847 W:      http://linux-lc100020.sourceforge.net
17848 F:      drivers/net/wireless/zydas/zd1201.*
17849
17850 USB ZR364XX DRIVER
17851 M:      Antoine Jacquet <royale@zerezo.com>
17852 L:      linux-usb@vger.kernel.org
17853 L:      linux-media@vger.kernel.org
17854 S:      Maintained
17855 W:      http://royale.zerezo.com/zr364xx/
17856 T:      git git://linuxtv.org/media_tree.git
17857 F:      Documentation/admin-guide/media/zr364xx*
17858 F:      drivers/media/usb/zr364xx/
17859
17860 USER-MODE LINUX (UML)
17861 M:      Jeff Dike <jdike@addtoit.com>
17862 M:      Richard Weinberger <richard@nod.at>
17863 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
17864 L:      linux-um@lists.infradead.org
17865 S:      Maintained
17866 W:      http://user-mode-linux.sourceforge.net
17867 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
17868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
17869 F:      Documentation/virt/uml/
17870 F:      arch/um/
17871 F:      arch/x86/um/
17872 F:      fs/hostfs/
17873
17874 USERSPACE COPYIN/COPYOUT (UIOVEC)
17875 M:      Alexander Viro <viro@zeniv.linux.org.uk>
17876 S:      Maintained
17877 F:      include/linux/uio.h
17878 F:      lib/iov_iter.c
17879
17880 USERSPACE DMA BUFFER DRIVER
17881 M:      Gerd Hoffmann <kraxel@redhat.com>
17882 L:      dri-devel@lists.freedesktop.org
17883 S:      Maintained
17884 T:      git git://anongit.freedesktop.org/drm/drm-misc
17885 F:      drivers/dma-buf/udmabuf.c
17886 F:      include/uapi/linux/udmabuf.h
17887
17888 USERSPACE I/O (UIO)
17889 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17890 S:      Maintained
17891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17892 F:      Documentation/driver-api/uio-howto.rst
17893 F:      drivers/uio/
17894 F:      include/linux/uio_driver.h
17895
17896 UTIL-LINUX PACKAGE
17897 M:      Karel Zak <kzak@redhat.com>
17898 L:      util-linux@vger.kernel.org
17899 S:      Maintained
17900 W:      http://en.wikipedia.org/wiki/Util-linux
17901 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
17902
17903 UUID HELPERS
17904 M:      Christoph Hellwig <hch@lst.de>
17905 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17906 L:      linux-kernel@vger.kernel.org
17907 S:      Maintained
17908 T:      git git://git.infradead.org/users/hch/uuid.git
17909 F:      include/linux/uuid.h
17910 F:      include/uapi/linux/uuid.h
17911 F:      lib/test_uuid.c
17912 F:      lib/uuid.c
17913
17914 UVESAFB DRIVER
17915 M:      Michal Januszewski <spock@gentoo.org>
17916 L:      linux-fbdev@vger.kernel.org
17917 S:      Maintained
17918 W:      https://github.com/mjanusz/v86d
17919 F:      Documentation/fb/uvesafb.rst
17920 F:      drivers/video/fbdev/uvesafb.*
17921
17922 Ux500 CLOCK DRIVERS
17923 M:      Ulf Hansson <ulf.hansson@linaro.org>
17924 L:      linux-clk@vger.kernel.org
17925 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17926 S:      Maintained
17927 F:      drivers/clk/ux500/
17928
17929 VF610 NAND DRIVER
17930 M:      Stefan Agner <stefan@agner.ch>
17931 L:      linux-mtd@lists.infradead.org
17932 S:      Supported
17933 F:      drivers/mtd/nand/raw/vf610_nfc.c
17934
17935 VFAT/FAT/MSDOS FILESYSTEM
17936 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
17937 S:      Maintained
17938 F:      Documentation/filesystems/vfat.rst
17939 F:      fs/fat/
17940
17941 VFIO DRIVER
17942 M:      Alex Williamson <alex.williamson@redhat.com>
17943 R:      Cornelia Huck <cohuck@redhat.com>
17944 L:      kvm@vger.kernel.org
17945 S:      Maintained
17946 T:      git git://github.com/awilliam/linux-vfio.git
17947 F:      Documentation/driver-api/vfio.rst
17948 F:      drivers/vfio/
17949 F:      include/linux/vfio.h
17950 F:      include/uapi/linux/vfio.h
17951
17952 VFIO MEDIATED DEVICE DRIVERS
17953 M:      Kirti Wankhede <kwankhede@nvidia.com>
17954 L:      kvm@vger.kernel.org
17955 S:      Maintained
17956 F:      Documentation/driver-api/vfio-mediated-device.rst
17957 F:      drivers/vfio/mdev/
17958 F:      include/linux/mdev.h
17959 F:      samples/vfio-mdev/
17960
17961 VFIO PLATFORM DRIVER
17962 M:      Eric Auger <eric.auger@redhat.com>
17963 L:      kvm@vger.kernel.org
17964 S:      Maintained
17965 F:      drivers/vfio/platform/
17966
17967 VGA_SWITCHEROO
17968 R:      Lukas Wunner <lukas@wunner.de>
17969 S:      Maintained
17970 T:      git git://anongit.freedesktop.org/drm/drm-misc
17971 F:      Documentation/gpu/vga-switcheroo.rst
17972 F:      drivers/gpu/vga/vga_switcheroo.c
17973 F:      include/linux/vga_switcheroo.h
17974
17975 VIA RHINE NETWORK DRIVER
17976 S:      Orphan
17977 F:      drivers/net/ethernet/via/via-rhine.c
17978
17979 VIA SD/MMC CARD CONTROLLER DRIVER
17980 M:      Bruce Chang <brucechang@via.com.tw>
17981 M:      Harald Welte <HaraldWelte@viatech.com>
17982 S:      Maintained
17983 F:      drivers/mmc/host/via-sdmmc.c
17984
17985 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
17986 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
17987 L:      linux-fbdev@vger.kernel.org
17988 S:      Maintained
17989 F:      drivers/video/fbdev/via/
17990 F:      include/linux/via-core.h
17991 F:      include/linux/via-gpio.h
17992 F:      include/linux/via_i2c.h
17993
17994 VIA VELOCITY NETWORK DRIVER
17995 M:      Francois Romieu <romieu@fr.zoreil.com>
17996 L:      netdev@vger.kernel.org
17997 S:      Maintained
17998 F:      drivers/net/ethernet/via/via-velocity.*
17999
18000 VICODEC VIRTUAL CODEC DRIVER
18001 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
18002 L:      linux-media@vger.kernel.org
18003 S:      Maintained
18004 W:      https://linuxtv.org
18005 T:      git git://linuxtv.org/media_tree.git
18006 F:      drivers/media/test-drivers/vicodec/*
18007
18008 VIDEO I2C POLLING DRIVER
18009 M:      Matt Ranostay <matt.ranostay@konsulko.com>
18010 L:      linux-media@vger.kernel.org
18011 S:      Maintained
18012 F:      drivers/media/i2c/video-i2c.c
18013
18014 VIDEO MULTIPLEXER DRIVER
18015 M:      Philipp Zabel <p.zabel@pengutronix.de>
18016 L:      linux-media@vger.kernel.org
18017 S:      Maintained
18018 F:      drivers/media/platform/video-mux.c
18019
18020 VIDEOBUF2 FRAMEWORK
18021 M:      Pawel Osciak <pawel@osciak.com>
18022 M:      Marek Szyprowski <m.szyprowski@samsung.com>
18023 M:      Kyungmin Park <kyungmin.park@samsung.com>
18024 R:      Tomasz Figa <tfiga@chromium.org>
18025 L:      linux-media@vger.kernel.org
18026 S:      Maintained
18027 F:      drivers/media/common/videobuf2/*
18028 F:      include/media/videobuf2-*
18029
18030 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
18031 M:      Helen Koike <helen.koike@collabora.com>
18032 R:      Shuah Khan <skhan@linuxfoundation.org>
18033 L:      linux-media@vger.kernel.org
18034 S:      Maintained
18035 W:      https://linuxtv.org
18036 T:      git git://linuxtv.org/media_tree.git
18037 F:      drivers/media/test-drivers/vimc/*
18038
18039 VIRT LIB
18040 M:      Alex Williamson <alex.williamson@redhat.com>
18041 M:      Paolo Bonzini <pbonzini@redhat.com>
18042 L:      kvm@vger.kernel.org
18043 S:      Supported
18044 F:      virt/lib/
18045
18046 VIRTIO AND VHOST VSOCK DRIVER
18047 M:      Stefan Hajnoczi <stefanha@redhat.com>
18048 M:      Stefano Garzarella <sgarzare@redhat.com>
18049 L:      kvm@vger.kernel.org
18050 L:      virtualization@lists.linux-foundation.org
18051 L:      netdev@vger.kernel.org
18052 S:      Maintained
18053 F:      drivers/net/vsockmon.c
18054 F:      drivers/vhost/vsock.c
18055 F:      include/linux/virtio_vsock.h
18056 F:      include/uapi/linux/virtio_vsock.h
18057 F:      include/uapi/linux/vm_sockets_diag.h
18058 F:      include/uapi/linux/vsockmon.h
18059 F:      net/vmw_vsock/af_vsock_tap.c
18060 F:      net/vmw_vsock/diag.c
18061 F:      net/vmw_vsock/virtio_transport.c
18062 F:      net/vmw_vsock/virtio_transport_common.c
18063 F:      net/vmw_vsock/vsock_loopback.c
18064 F:      tools/testing/vsock/
18065
18066 VIRTIO BLOCK AND SCSI DRIVERS
18067 M:      "Michael S. Tsirkin" <mst@redhat.com>
18068 M:      Jason Wang <jasowang@redhat.com>
18069 R:      Paolo Bonzini <pbonzini@redhat.com>
18070 R:      Stefan Hajnoczi <stefanha@redhat.com>
18071 L:      virtualization@lists.linux-foundation.org
18072 S:      Maintained
18073 F:      drivers/block/virtio_blk.c
18074 F:      drivers/scsi/virtio_scsi.c
18075 F:      drivers/vhost/scsi.c
18076 F:      include/uapi/linux/virtio_blk.h
18077 F:      include/uapi/linux/virtio_scsi.h
18078
18079 VIRTIO CONSOLE DRIVER
18080 M:      Amit Shah <amit@kernel.org>
18081 L:      virtualization@lists.linux-foundation.org
18082 S:      Maintained
18083 F:      drivers/char/virtio_console.c
18084 F:      include/linux/virtio_console.h
18085 F:      include/uapi/linux/virtio_console.h
18086
18087 VIRTIO CORE AND NET DRIVERS
18088 M:      "Michael S. Tsirkin" <mst@redhat.com>
18089 M:      Jason Wang <jasowang@redhat.com>
18090 L:      virtualization@lists.linux-foundation.org
18091 S:      Maintained
18092 F:      Documentation/devicetree/bindings/virtio/
18093 F:      drivers/block/virtio_blk.c
18094 F:      drivers/crypto/virtio/
18095 F:      drivers/net/virtio_net.c
18096 F:      drivers/vdpa/
18097 F:      drivers/virtio/
18098 F:      include/linux/vdpa.h
18099 F:      include/linux/virtio*.h
18100 F:      include/uapi/linux/virtio_*.h
18101 F:      mm/balloon_compaction.c
18102 F:      tools/virtio/
18103
18104 VIRTIO CRYPTO DRIVER
18105 M:      Gonglei <arei.gonglei@huawei.com>
18106 L:      virtualization@lists.linux-foundation.org
18107 L:      linux-crypto@vger.kernel.org
18108 S:      Maintained
18109 F:      drivers/crypto/virtio/
18110 F:      include/uapi/linux/virtio_crypto.h
18111
18112 VIRTIO DRIVERS FOR S390
18113 M:      Cornelia Huck <cohuck@redhat.com>
18114 M:      Halil Pasic <pasic@linux.ibm.com>
18115 L:      linux-s390@vger.kernel.org
18116 L:      virtualization@lists.linux-foundation.org
18117 L:      kvm@vger.kernel.org
18118 S:      Supported
18119 F:      arch/s390/include/uapi/asm/virtio-ccw.h
18120 F:      drivers/s390/virtio/
18121
18122 VIRTIO FILE SYSTEM
18123 M:      Vivek Goyal <vgoyal@redhat.com>
18124 M:      Stefan Hajnoczi <stefanha@redhat.com>
18125 M:      Miklos Szeredi <miklos@szeredi.hu>
18126 L:      virtualization@lists.linux-foundation.org
18127 L:      linux-fsdevel@vger.kernel.org
18128 S:      Supported
18129 W:      https://virtio-fs.gitlab.io/
18130 F:      Documentation/filesystems/virtiofs.rst
18131 F:      fs/fuse/virtio_fs.c
18132 F:      include/uapi/linux/virtio_fs.h
18133
18134 VIRTIO GPU DRIVER
18135 M:      David Airlie <airlied@linux.ie>
18136 M:      Gerd Hoffmann <kraxel@redhat.com>
18137 L:      dri-devel@lists.freedesktop.org
18138 L:      virtualization@lists.linux-foundation.org
18139 S:      Maintained
18140 T:      git git://anongit.freedesktop.org/drm/drm-misc
18141 F:      drivers/gpu/drm/virtio/
18142 F:      include/uapi/linux/virtio_gpu.h
18143
18144 VIRTIO HOST (VHOST)
18145 M:      "Michael S. Tsirkin" <mst@redhat.com>
18146 M:      Jason Wang <jasowang@redhat.com>
18147 L:      kvm@vger.kernel.org
18148 L:      virtualization@lists.linux-foundation.org
18149 L:      netdev@vger.kernel.org
18150 S:      Maintained
18151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
18152 F:      drivers/vhost/
18153 F:      include/linux/vhost_iotlb.h
18154 F:      include/uapi/linux/vhost.h
18155
18156 VIRTIO INPUT DRIVER
18157 M:      Gerd Hoffmann <kraxel@redhat.com>
18158 S:      Maintained
18159 F:      drivers/virtio/virtio_input.c
18160 F:      include/uapi/linux/virtio_input.h
18161
18162 VIRTIO IOMMU DRIVER
18163 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
18164 L:      virtualization@lists.linux-foundation.org
18165 S:      Maintained
18166 F:      drivers/iommu/virtio-iommu.c
18167 F:      include/uapi/linux/virtio_iommu.h
18168
18169 VIRTUAL BOX GUEST DEVICE DRIVER
18170 M:      Hans de Goede <hdegoede@redhat.com>
18171 M:      Arnd Bergmann <arnd@arndb.de>
18172 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18173 S:      Maintained
18174 F:      drivers/virt/vboxguest/
18175 F:      include/linux/vbox_utils.h
18176 F:      include/uapi/linux/vbox*.h
18177
18178 VIRTUAL BOX SHARED FOLDER VFS DRIVER
18179 M:      Hans de Goede <hdegoede@redhat.com>
18180 L:      linux-fsdevel@vger.kernel.org
18181 S:      Maintained
18182 F:      fs/vboxsf/*
18183
18184 VIRTUAL SERIO DEVICE DRIVER
18185 M:      Stephen Chandler Paul <thatslyude@gmail.com>
18186 S:      Maintained
18187 F:      drivers/input/serio/userio.c
18188 F:      include/uapi/linux/userio.h
18189
18190 VITESSE FELIX ETHERNET SWITCH DRIVER
18191 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
18192 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
18193 L:      netdev@vger.kernel.org
18194 S:      Maintained
18195 F:      drivers/net/dsa/ocelot/*
18196 F:      net/dsa/tag_ocelot.c
18197
18198 VIVID VIRTUAL VIDEO DRIVER
18199 M:      Hans Verkuil <hverkuil@xs4all.nl>
18200 L:      linux-media@vger.kernel.org
18201 S:      Maintained
18202 W:      https://linuxtv.org
18203 T:      git git://linuxtv.org/media_tree.git
18204 F:      drivers/media/test-drivers/vivid/*
18205
18206 VLYNQ BUS
18207 M:      Florian Fainelli <f.fainelli@gmail.com>
18208 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
18209 S:      Maintained
18210 F:      drivers/vlynq/vlynq.c
18211 F:      include/linux/vlynq.h
18212
18213 VME SUBSYSTEM
18214 M:      Martyn Welch <martyn@welchs.me.uk>
18215 M:      Manohar Vanga <manohar.vanga@gmail.com>
18216 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18217 L:      devel@driverdev.osuosl.org
18218 S:      Maintained
18219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18220 F:      Documentation/driver-api/vme.rst
18221 F:      drivers/staging/vme/
18222 F:      drivers/vme/
18223 F:      include/linux/vme*
18224
18225 VMWARE BALLOON DRIVER
18226 M:      Nadav Amit <namit@vmware.com>
18227 M:      "VMware, Inc." <pv-drivers@vmware.com>
18228 L:      linux-kernel@vger.kernel.org
18229 S:      Maintained
18230 F:      drivers/misc/vmw_balloon.c
18231
18232 VMWARE HYPERVISOR INTERFACE
18233 M:      Thomas Hellstrom <thellstrom@vmware.com>
18234 M:      "VMware, Inc." <pv-drivers@vmware.com>
18235 L:      virtualization@lists.linux-foundation.org
18236 S:      Supported
18237 F:      arch/x86/include/asm/vmware.h
18238 F:      arch/x86/kernel/cpu/vmware.c
18239
18240 VMWARE PVRDMA DRIVER
18241 M:      Adit Ranadive <aditr@vmware.com>
18242 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18243 L:      linux-rdma@vger.kernel.org
18244 S:      Maintained
18245 F:      drivers/infiniband/hw/vmw_pvrdma/
18246
18247 VMware PVSCSI driver
18248 M:      Jim Gill <jgill@vmware.com>
18249 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18250 L:      linux-scsi@vger.kernel.org
18251 S:      Maintained
18252 F:      drivers/scsi/vmw_pvscsi.c
18253 F:      drivers/scsi/vmw_pvscsi.h
18254
18255 VMWARE VIRTUAL PTP CLOCK DRIVER
18256 M:      Vivek Thampi <vithampi@vmware.com>
18257 M:      "VMware, Inc." <pv-drivers@vmware.com>
18258 L:      netdev@vger.kernel.org
18259 S:      Supported
18260 F:      drivers/ptp/ptp_vmw.c
18261
18262 VMWARE VMMOUSE SUBDRIVER
18263 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
18264 M:      "VMware, Inc." <pv-drivers@vmware.com>
18265 L:      linux-input@vger.kernel.org
18266 S:      Maintained
18267 F:      drivers/input/mouse/vmmouse.c
18268 F:      drivers/input/mouse/vmmouse.h
18269
18270 VMWARE VMXNET3 ETHERNET DRIVER
18271 M:      Ronak Doshi <doshir@vmware.com>
18272 M:      "VMware, Inc." <pv-drivers@vmware.com>
18273 L:      netdev@vger.kernel.org
18274 S:      Maintained
18275 F:      drivers/net/vmxnet3/
18276
18277 VOCORE VOCORE2 BOARD
18278 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
18279 L:      linux-mips@vger.kernel.org
18280 S:      Maintained
18281 F:      arch/mips/boot/dts/ralink/vocore2.dts
18282
18283 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
18284 M:      Liam Girdwood <lgirdwood@gmail.com>
18285 M:      Mark Brown <broonie@kernel.org>
18286 L:      linux-kernel@vger.kernel.org
18287 S:      Supported
18288 W:      http://www.slimlogic.co.uk/?p=48
18289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
18290 F:      Documentation/devicetree/bindings/regulator/
18291 F:      Documentation/power/regulator/
18292 F:      drivers/regulator/
18293 F:      include/dt-bindings/regulator/
18294 F:      include/linux/regulator/
18295 K:      regulator_get_optional
18296
18297 VRF
18298 M:      David Ahern <dsahern@kernel.org>
18299 M:      Shrijeet Mukherjee <shrijeet@gmail.com>
18300 L:      netdev@vger.kernel.org
18301 S:      Maintained
18302 F:      Documentation/networking/vrf.rst
18303 F:      drivers/net/vrf.c
18304
18305 VSPRINTF
18306 M:      Petr Mladek <pmladek@suse.com>
18307 M:      Steven Rostedt <rostedt@goodmis.org>
18308 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
18309 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18310 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
18311 S:      Maintained
18312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
18313 F:      Documentation/core-api/printk-formats.rst
18314 F:      lib/test_printf.c
18315 F:      lib/vsprintf.c
18316
18317 VT1211 HARDWARE MONITOR DRIVER
18318 M:      Juerg Haefliger <juergh@gmail.com>
18319 L:      linux-hwmon@vger.kernel.org
18320 S:      Maintained
18321 F:      Documentation/hwmon/vt1211.rst
18322 F:      drivers/hwmon/vt1211.c
18323
18324 VT8231 HARDWARE MONITOR DRIVER
18325 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
18326 L:      linux-hwmon@vger.kernel.org
18327 S:      Maintained
18328 F:      drivers/hwmon/vt8231.c
18329
18330 VUB300 USB to SDIO/SD/MMC bridge chip
18331 L:      linux-mmc@vger.kernel.org
18332 S:      Orphan
18333 F:      drivers/mmc/host/vub300.c
18334
18335 W1 DALLAS'S 1-WIRE BUS
18336 M:      Evgeniy Polyakov <zbr@ioremap.net>
18337 S:      Maintained
18338 F:      Documentation/devicetree/bindings/w1/
18339 F:      Documentation/w1/
18340 F:      drivers/w1/
18341 F:      include/linux/w1.h
18342
18343 W83791D HARDWARE MONITORING DRIVER
18344 M:      Marc Hulsman <m.hulsman@tudelft.nl>
18345 L:      linux-hwmon@vger.kernel.org
18346 S:      Maintained
18347 F:      Documentation/hwmon/w83791d.rst
18348 F:      drivers/hwmon/w83791d.c
18349
18350 W83793 HARDWARE MONITORING DRIVER
18351 M:      Rudolf Marek <r.marek@assembler.cz>
18352 L:      linux-hwmon@vger.kernel.org
18353 S:      Maintained
18354 F:      Documentation/hwmon/w83793.rst
18355 F:      drivers/hwmon/w83793.c
18356
18357 W83795 HARDWARE MONITORING DRIVER
18358 M:      Jean Delvare <jdelvare@suse.com>
18359 L:      linux-hwmon@vger.kernel.org
18360 S:      Maintained
18361 F:      drivers/hwmon/w83795.c
18362
18363 W83L51xD SD/MMC CARD INTERFACE DRIVER
18364 M:      Pierre Ossman <pierre@ossman.eu>
18365 S:      Maintained
18366 F:      drivers/mmc/host/wbsd.*
18367
18368 WACOM PROTOCOL 4 SERIAL TABLETS
18369 M:      Julian Squires <julian@cipht.net>
18370 M:      Hans de Goede <hdegoede@redhat.com>
18371 L:      linux-input@vger.kernel.org
18372 S:      Maintained
18373 F:      drivers/input/tablet/wacom_serial4.c
18374
18375 WATCHDOG DEVICE DRIVERS
18376 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
18377 M:      Guenter Roeck <linux@roeck-us.net>
18378 L:      linux-watchdog@vger.kernel.org
18379 S:      Maintained
18380 W:      http://www.linux-watchdog.org/
18381 T:      git git://www.linux-watchdog.org/linux-watchdog.git
18382 F:      Documentation/devicetree/bindings/watchdog/
18383 F:      Documentation/watchdog/
18384 F:      drivers/watchdog/
18385 F:      include/linux/watchdog.h
18386 F:      include/uapi/linux/watchdog.h
18387
18388 WHISKEYCOVE PMIC GPIO DRIVER
18389 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
18390 L:      linux-gpio@vger.kernel.org
18391 S:      Maintained
18392 F:      drivers/gpio/gpio-wcove.c
18393
18394 WHWAVE RTC DRIVER
18395 M:      Dianlong Li <long17.cool@163.com>
18396 L:      linux-rtc@vger.kernel.org
18397 S:      Maintained
18398 F:      drivers/rtc/rtc-sd3078.c
18399
18400 WIIMOTE HID DRIVER
18401 M:      David Herrmann <dh.herrmann@googlemail.com>
18402 L:      linux-input@vger.kernel.org
18403 S:      Maintained
18404 F:      drivers/hid/hid-wiimote*
18405
18406 WILOCITY WIL6210 WIRELESS DRIVER
18407 M:      Maya Erez <merez@codeaurora.org>
18408 L:      linux-wireless@vger.kernel.org
18409 L:      wil6210@qti.qualcomm.com
18410 S:      Supported
18411 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
18412 F:      drivers/net/wireless/ath/wil6210/
18413
18414 WIMAX STACK
18415 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
18416 M:      linux-wimax@intel.com
18417 L:      wimax@linuxwimax.org (subscribers-only)
18418 S:      Supported
18419 W:      http://linuxwimax.org
18420 F:      Documentation/admin-guide/wimax/wimax.rst
18421 F:      include/linux/wimax/debug.h
18422 F:      include/net/wimax.h
18423 F:      include/uapi/linux/wimax.h
18424 F:      net/wimax/
18425
18426 WINBOND CIR DRIVER
18427 M:      David Härdeman <david@hardeman.nu>
18428 S:      Maintained
18429 F:      drivers/media/rc/winbond-cir.c
18430
18431 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
18432 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
18433 L:      linux-watchdog@vger.kernel.org
18434 S:      Maintained
18435 F:      drivers/watchdog/ebc-c384_wdt.c
18436
18437 WINSYSTEMS WS16C48 GPIO DRIVER
18438 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
18439 L:      linux-gpio@vger.kernel.org
18440 S:      Maintained
18441 F:      drivers/gpio/gpio-ws16c48.c
18442
18443 WIREGUARD SECURE NETWORK TUNNEL
18444 M:      Jason A. Donenfeld <Jason@zx2c4.com>
18445 L:      wireguard@lists.zx2c4.com
18446 L:      netdev@vger.kernel.org
18447 S:      Maintained
18448 F:      drivers/net/wireguard/
18449 F:      tools/testing/selftests/wireguard/
18450
18451 WISTRON LAPTOP BUTTON DRIVER
18452 M:      Miloslav Trmac <mitr@volny.cz>
18453 S:      Maintained
18454 F:      drivers/input/misc/wistron_btns.c
18455
18456 WL3501 WIRELESS PCMCIA CARD DRIVER
18457 L:      linux-wireless@vger.kernel.org
18458 S:      Odd fixes
18459 F:      drivers/net/wireless/wl3501*
18460
18461 WOLFSON MICROELECTRONICS DRIVERS
18462 L:      patches@opensource.cirrus.com
18463 S:      Supported
18464 W:      https://github.com/CirrusLogic/linux-drivers/wiki
18465 T:      git https://github.com/CirrusLogic/linux-drivers.git
18466 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
18467 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
18468 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
18469 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
18470 F:      Documentation/devicetree/bindings/sound/wlf,arizona.yaml
18471 F:      Documentation/hwmon/wm83??.rst
18472 F:      arch/arm/mach-s3c64xx/mach-crag6410*
18473 F:      drivers/clk/clk-wm83*.c
18474 F:      drivers/extcon/extcon-arizona.c
18475 F:      drivers/gpio/gpio-*wm*.c
18476 F:      drivers/gpio/gpio-arizona.c
18477 F:      drivers/hwmon/wm83??-hwmon.c
18478 F:      drivers/input/misc/wm831x-on.c
18479 F:      drivers/input/touchscreen/wm831x-ts.c
18480 F:      drivers/input/touchscreen/wm97*.c
18481 F:      drivers/leds/leds-wm83*.c
18482 F:      drivers/mfd/arizona*
18483 F:      drivers/mfd/cs47l24*
18484 F:      drivers/mfd/wm*.c
18485 F:      drivers/power/supply/wm83*.c
18486 F:      drivers/regulator/arizona*
18487 F:      drivers/regulator/wm8*.c
18488 F:      drivers/rtc/rtc-wm83*.c
18489 F:      drivers/video/backlight/wm83*_bl.c
18490 F:      drivers/watchdog/wm83*_wdt.c
18491 F:      include/linux/mfd/arizona/
18492 F:      include/linux/mfd/wm831x/
18493 F:      include/linux/mfd/wm8350/
18494 F:      include/linux/mfd/wm8400*
18495 F:      include/linux/regulator/arizona*
18496 F:      include/linux/wm97xx.h
18497 F:      include/sound/wm????.h
18498 F:      sound/soc/codecs/arizona.?
18499 F:      sound/soc/codecs/cs47l24*
18500 F:      sound/soc/codecs/wm*
18501
18502 WORKQUEUE
18503 M:      Tejun Heo <tj@kernel.org>
18504 R:      Lai Jiangshan <jiangshanlai@gmail.com>
18505 S:      Maintained
18506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
18507 F:      Documentation/core-api/workqueue.rst
18508 F:      include/linux/workqueue.h
18509 F:      kernel/workqueue.c
18510
18511 X-POWERS AXP288 PMIC DRIVERS
18512 M:      Hans de Goede <hdegoede@redhat.com>
18513 S:      Maintained
18514 F:      drivers/acpi/pmic/intel_pmic_xpower.c
18515 N:      axp288
18516
18517 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
18518 M:      Chen-Yu Tsai <wens@csie.org>
18519 L:      linux-kernel@vger.kernel.org
18520 S:      Maintained
18521 N:      axp[128]
18522
18523 X.25 NETWORK LAYER
18524 M:      Andrew Hendry <andrew.hendry@gmail.com>
18525 L:      linux-x25@vger.kernel.org
18526 S:      Odd Fixes
18527 F:      Documentation/networking/x25*
18528 F:      include/net/x25*
18529 F:      net/x25/
18530
18531 X86 ARCHITECTURE (32-BIT AND 64-BIT)
18532 M:      Thomas Gleixner <tglx@linutronix.de>
18533 M:      Ingo Molnar <mingo@redhat.com>
18534 M:      Borislav Petkov <bp@alien8.de>
18535 M:      x86@kernel.org
18536 R:      "H. Peter Anvin" <hpa@zytor.com>
18537 L:      linux-kernel@vger.kernel.org
18538 S:      Maintained
18539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18540 F:      Documentation/devicetree/bindings/x86/
18541 F:      Documentation/x86/
18542 F:      arch/x86/
18543
18544 X86 ENTRY CODE
18545 M:      Andy Lutomirski <luto@kernel.org>
18546 L:      linux-kernel@vger.kernel.org
18547 S:      Maintained
18548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
18549 F:      arch/x86/entry/
18550
18551 X86 MCE INFRASTRUCTURE
18552 M:      Tony Luck <tony.luck@intel.com>
18553 M:      Borislav Petkov <bp@alien8.de>
18554 L:      linux-edac@vger.kernel.org
18555 S:      Maintained
18556 F:      arch/x86/kernel/cpu/mce/*
18557
18558 X86 MICROCODE UPDATE SUPPORT
18559 M:      Borislav Petkov <bp@alien8.de>
18560 S:      Maintained
18561 F:      arch/x86/kernel/cpu/microcode/*
18562
18563 X86 MM
18564 M:      Dave Hansen <dave.hansen@linux.intel.com>
18565 M:      Andy Lutomirski <luto@kernel.org>
18566 M:      Peter Zijlstra <peterz@infradead.org>
18567 L:      linux-kernel@vger.kernel.org
18568 S:      Maintained
18569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
18570 F:      arch/x86/mm/
18571
18572 X86 PLATFORM DRIVERS
18573 M:      Darren Hart <dvhart@infradead.org>
18574 M:      Andy Shevchenko <andy@infradead.org>
18575 L:      platform-driver-x86@vger.kernel.org
18576 S:      Odd Fixes
18577 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
18578 F:      drivers/platform/olpc/
18579 F:      drivers/platform/x86/
18580
18581 X86 PLATFORM DRIVERS - ARCH
18582 R:      Darren Hart <dvhart@infradead.org>
18583 R:      Andy Shevchenko <andy@infradead.org>
18584 L:      platform-driver-x86@vger.kernel.org
18585 L:      x86@kernel.org
18586 S:      Maintained
18587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18588 F:      arch/x86/platform
18589
18590 X86 VDSO
18591 M:      Andy Lutomirski <luto@kernel.org>
18592 L:      linux-kernel@vger.kernel.org
18593 S:      Maintained
18594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
18595 F:      arch/x86/entry/vdso/
18596
18597 XARRAY
18598 M:      Matthew Wilcox <willy@infradead.org>
18599 L:      linux-fsdevel@vger.kernel.org
18600 S:      Supported
18601 F:      Documentation/core-api/xarray.rst
18602 F:      include/linux/idr.h
18603 F:      include/linux/xarray.h
18604 F:      lib/idr.c
18605 F:      lib/xarray.c
18606 F:      tools/testing/radix-tree
18607
18608 XBOX DVD IR REMOTE
18609 M:      Benjamin Valentin <benpicco@googlemail.com>
18610 S:      Maintained
18611 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
18612 F:      drivers/media/rc/xbox_remote.c
18613
18614 XC2028/3028 TUNER DRIVER
18615 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18616 L:      linux-media@vger.kernel.org
18617 S:      Maintained
18618 W:      https://linuxtv.org
18619 T:      git git://linuxtv.org/media_tree.git
18620 F:      drivers/media/tuners/tuner-xc2028.*
18621
18622 XDP (eXpress Data Path)
18623 M:      Alexei Starovoitov <ast@kernel.org>
18624 M:      Daniel Borkmann <daniel@iogearbox.net>
18625 M:      David S. Miller <davem@davemloft.net>
18626 M:      Jakub Kicinski <kuba@kernel.org>
18627 M:      Jesper Dangaard Brouer <hawk@kernel.org>
18628 M:      John Fastabend <john.fastabend@gmail.com>
18629 L:      netdev@vger.kernel.org
18630 L:      bpf@vger.kernel.org
18631 S:      Supported
18632 F:      include/net/xdp.h
18633 F:      include/trace/events/xdp.h
18634 F:      kernel/bpf/cpumap.c
18635 F:      kernel/bpf/devmap.c
18636 F:      net/core/xdp.c
18637 N:      xdp
18638 K:      xdp
18639
18640 XDP SOCKETS (AF_XDP)
18641 M:      Björn Töpel <bjorn.topel@intel.com>
18642 M:      Magnus Karlsson <magnus.karlsson@intel.com>
18643 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
18644 L:      netdev@vger.kernel.org
18645 L:      bpf@vger.kernel.org
18646 S:      Maintained
18647 F:      include/net/xdp_sock*
18648 F:      include/net/xsk_buff_pool.h
18649 F:      include/uapi/linux/if_xdp.h
18650 F:      net/xdp/
18651 F:      samples/bpf/xdpsock*
18652 F:      tools/lib/bpf/xsk*
18653
18654 XEN BLOCK SUBSYSTEM
18655 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18656 M:      Roger Pau Monné <roger.pau@citrix.com>
18657 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18658 S:      Supported
18659 F:      drivers/block/xen*
18660 F:      drivers/block/xen-blkback/*
18661
18662 XEN HYPERVISOR ARM
18663 M:      Stefano Stabellini <sstabellini@kernel.org>
18664 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18665 S:      Maintained
18666 F:      arch/arm/include/asm/xen/
18667 F:      arch/arm/xen/
18668
18669 XEN HYPERVISOR ARM64
18670 M:      Stefano Stabellini <sstabellini@kernel.org>
18671 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18672 S:      Maintained
18673 F:      arch/arm64/include/asm/xen/
18674 F:      arch/arm64/xen/
18675
18676 XEN HYPERVISOR INTERFACE
18677 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
18678 M:      Juergen Gross <jgross@suse.com>
18679 R:      Stefano Stabellini <sstabellini@kernel.org>
18680 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18681 S:      Supported
18682 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
18683 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
18684 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
18685 F:      arch/x86/include/asm/pvclock-abi.h
18686 F:      arch/x86/include/asm/xen/
18687 F:      arch/x86/platform/pvh/
18688 F:      arch/x86/xen/
18689 F:      drivers/*/xen-*front.c
18690 F:      drivers/xen/
18691 F:      include/uapi/xen/
18692 F:      include/xen/
18693
18694 XEN NETWORK BACKEND DRIVER
18695 M:      Wei Liu <wei.liu@kernel.org>
18696 M:      Paul Durrant <paul@xen.org>
18697 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18698 L:      netdev@vger.kernel.org
18699 S:      Supported
18700 F:      drivers/net/xen-netback/*
18701
18702 XEN PCI SUBSYSTEM
18703 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18704 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18705 S:      Supported
18706 F:      arch/x86/pci/*xen*
18707 F:      drivers/pci/*xen*
18708
18709 XEN PVSCSI DRIVERS
18710 M:      Juergen Gross <jgross@suse.com>
18711 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18712 L:      linux-scsi@vger.kernel.org
18713 S:      Supported
18714 F:      drivers/scsi/xen-scsifront.c
18715 F:      drivers/xen/xen-scsiback.c
18716 F:      include/xen/interface/io/vscsiif.h
18717
18718 XEN SOUND FRONTEND DRIVER
18719 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
18720 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18721 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18722 S:      Supported
18723 F:      sound/xen/*
18724
18725 XEN SWIOTLB SUBSYSTEM
18726 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18727 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18728 L:      iommu@lists.linux-foundation.org
18729 S:      Supported
18730 F:      arch/x86/xen/*swiotlb*
18731 F:      drivers/xen/*swiotlb*
18732
18733 XFS FILESYSTEM
18734 M:      Darrick J. Wong <darrick.wong@oracle.com>
18735 M:      linux-xfs@vger.kernel.org
18736 L:      linux-xfs@vger.kernel.org
18737 S:      Supported
18738 W:      http://xfs.org/
18739 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
18740 F:      Documentation/ABI/testing/sysfs-fs-xfs
18741 F:      Documentation/admin-guide/xfs.rst
18742 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
18743 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
18744 F:      fs/xfs/
18745 F:      include/uapi/linux/dqblk_xfs.h
18746 F:      include/uapi/linux/fsmap.h
18747
18748 XILINX AXI ETHERNET DRIVER
18749 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
18750 S:      Maintained
18751 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
18752
18753 XILINX CAN DRIVER
18754 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
18755 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
18756 L:      linux-can@vger.kernel.org
18757 S:      Maintained
18758 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
18759 F:      drivers/net/can/xilinx_can.c
18760
18761 XILINX SD-FEC IP CORES
18762 M:      Derek Kiernan <derek.kiernan@xilinx.com>
18763 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
18764 S:      Maintained
18765 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
18766 F:      Documentation/misc-devices/xilinx_sdfec.rst
18767 F:      drivers/misc/Kconfig
18768 F:      drivers/misc/Makefile
18769 F:      drivers/misc/xilinx_sdfec.c
18770 F:      include/uapi/misc/xilinx_sdfec.h
18771
18772 XILINX UARTLITE SERIAL DRIVER
18773 M:      Peter Korsgaard <jacmet@sunsite.dk>
18774 L:      linux-serial@vger.kernel.org
18775 S:      Maintained
18776 F:      drivers/tty/serial/uartlite.c
18777
18778 XILINX VIDEO IP CORES
18779 M:      Hyun Kwon <hyun.kwon@xilinx.com>
18780 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18781 L:      linux-media@vger.kernel.org
18782 S:      Supported
18783 T:      git git://linuxtv.org/media_tree.git
18784 F:      Documentation/devicetree/bindings/media/xilinx/
18785 F:      drivers/media/platform/xilinx/
18786 F:      include/uapi/linux/xilinx-v4l2-controls.h
18787
18788 XILLYBUS DRIVER
18789 M:      Eli Billauer <eli.billauer@gmail.com>
18790 L:      linux-kernel@vger.kernel.org
18791 S:      Supported
18792 F:      drivers/char/xillybus/
18793
18794 XLP9XX I2C DRIVER
18795 M:      George Cherian <gcherian@marvell.com>
18796 L:      linux-i2c@vger.kernel.org
18797 S:      Supported
18798 W:      http://www.marvell.com
18799 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
18800 F:      drivers/i2c/busses/i2c-xlp9xx.c
18801
18802 XRA1403 GPIO EXPANDER
18803 M:      Nandor Han <nandor.han@ge.com>
18804 M:      Semi Malinen <semi.malinen@ge.com>
18805 L:      linux-gpio@vger.kernel.org
18806 S:      Maintained
18807 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
18808 F:      drivers/gpio/gpio-xra1403.c
18809
18810 XTENSA XTFPGA PLATFORM SUPPORT
18811 M:      Max Filippov <jcmvbkbc@gmail.com>
18812 L:      linux-xtensa@linux-xtensa.org
18813 S:      Maintained
18814 F:      drivers/spi/spi-xtensa-xtfpga.c
18815 F:      sound/soc/xtensa/xtfpga-i2s.c
18816
18817 YAM DRIVER FOR AX.25
18818 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
18819 L:      linux-hams@vger.kernel.org
18820 S:      Maintained
18821 F:      drivers/net/hamradio/yam*
18822 F:      include/linux/yam.h
18823
18824 YAMA SECURITY MODULE
18825 M:      Kees Cook <keescook@chromium.org>
18826 S:      Supported
18827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
18828 F:      Documentation/admin-guide/LSM/Yama.rst
18829 F:      security/yama/
18830
18831 YEALINK PHONE DRIVER
18832 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
18833 L:      usbb2k-api-dev@nongnu.org
18834 S:      Maintained
18835 F:      Documentation/input/devices/yealink.rst
18836 F:      drivers/input/misc/yealink.*
18837
18838 Z8530 DRIVER FOR AX.25
18839 M:      Joerg Reuter <jreuter@yaina.de>
18840 L:      linux-hams@vger.kernel.org
18841 S:      Maintained
18842 W:      http://yaina.de/jreuter/
18843 W:      http://www.qsl.net/dl1bke/
18844 F:      Documentation/networking/z8530drv.rst
18845 F:      drivers/net/hamradio/*scc.c
18846 F:      drivers/net/hamradio/z8530.h
18847
18848 ZBUD COMPRESSED PAGE ALLOCATOR
18849 M:      Seth Jennings <sjenning@redhat.com>
18850 M:      Dan Streetman <ddstreet@ieee.org>
18851 L:      linux-mm@kvack.org
18852 S:      Maintained
18853 F:      include/linux/zbud.h
18854 F:      mm/zbud.c
18855
18856 ZD1211RW WIRELESS DRIVER
18857 M:      Daniel Drake <dsd@gentoo.org>
18858 M:      Ulrich Kunitz <kune@deine-taler.de>
18859 L:      linux-wireless@vger.kernel.org
18860 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
18861 S:      Maintained
18862 W:      http://zd1211.ath.cx/wiki/DriverRewrite
18863 F:      drivers/net/wireless/zydas/zd1211rw/
18864
18865 ZD1301 MEDIA DRIVER
18866 M:      Antti Palosaari <crope@iki.fi>
18867 L:      linux-media@vger.kernel.org
18868 S:      Maintained
18869 W:      https://linuxtv.org/
18870 W:      http://palosaari.fi/linux/
18871 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18872 F:      drivers/media/usb/dvb-usb-v2/zd1301*
18873
18874 ZD1301_DEMOD MEDIA DRIVER
18875 M:      Antti Palosaari <crope@iki.fi>
18876 L:      linux-media@vger.kernel.org
18877 S:      Maintained
18878 W:      https://linuxtv.org/
18879 W:      http://palosaari.fi/linux/
18880 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18881 F:      drivers/media/dvb-frontends/zd1301_demod*
18882
18883 ZHAOXIN PROCESSOR SUPPORT
18884 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
18885 L:      linux-kernel@vger.kernel.org
18886 S:      Maintained
18887 F:      arch/x86/kernel/cpu/zhaoxin.c
18888
18889 ZONEFS FILESYSTEM
18890 M:      Damien Le Moal <damien.lemoal@wdc.com>
18891 M:      Naohiro Aota <naohiro.aota@wdc.com>
18892 R:      Johannes Thumshirn <jth@kernel.org>
18893 L:      linux-fsdevel@vger.kernel.org
18894 S:      Maintained
18895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
18896 F:      Documentation/filesystems/zonefs.rst
18897 F:      fs/zonefs/
18898
18899 ZPOOL COMPRESSED PAGE STORAGE API
18900 M:      Dan Streetman <ddstreet@ieee.org>
18901 L:      linux-mm@kvack.org
18902 S:      Maintained
18903 F:      include/linux/zpool.h
18904 F:      mm/zpool.c
18905
18906 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
18907 M:      Minchan Kim <minchan@kernel.org>
18908 M:      Nitin Gupta <ngupta@vflare.org>
18909 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
18910 L:      linux-kernel@vger.kernel.org
18911 S:      Maintained
18912 F:      Documentation/admin-guide/blockdev/zram.rst
18913 F:      drivers/block/zram/
18914
18915 ZS DECSTATION Z85C30 SERIAL DRIVER
18916 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
18917 S:      Maintained
18918 F:      drivers/tty/serial/zs.*
18919
18920 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
18921 M:      Minchan Kim <minchan@kernel.org>
18922 M:      Nitin Gupta <ngupta@vflare.org>
18923 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
18924 L:      linux-mm@kvack.org
18925 S:      Maintained
18926 F:      Documentation/vm/zsmalloc.rst
18927 F:      include/linux/zsmalloc.h
18928 F:      mm/zsmalloc.c
18929
18930 ZSWAP COMPRESSED SWAP CACHING
18931 M:      Seth Jennings <sjenning@redhat.com>
18932 M:      Dan Streetman <ddstreet@ieee.org>
18933 M:      Vitaly Wool <vitaly.wool@konsulko.com>
18934 L:      linux-mm@kvack.org
18935 S:      Maintained
18936 F:      mm/zswap.c
18937
18938 THE REST
18939 M:      Linus Torvalds <torvalds@linux-foundation.org>
18940 L:      linux-kernel@vger.kernel.org
18941 S:      Buried alive in reporters
18942 Q:      http://patchwork.kernel.org/project/LKML/list/
18943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
18944 F:      *
18945 F:      */