Merge tag 'gpio-updates-for-v5.12' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-microblaze.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries 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/ethernet/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:      Heiner Kallweit <hkallweit1@gmail.com>
207 M:      nic_swsd@realtek.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 <andy@kernel.org>
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:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
703 F:      drivers/media/platform/allegro-dvt/
704
705 ALLWINNER A10 CSI DRIVER
706 M:      Maxime Ripard <mripard@kernel.org>
707 L:      linux-media@vger.kernel.org
708 S:      Maintained
709 T:      git git://linuxtv.org/media_tree.git
710 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
711 F:      drivers/media/platform/sunxi/sun4i-csi/
712
713 ALLWINNER CPUFREQ DRIVER
714 M:      Yangtao Li <tiny.windzz@gmail.com>
715 L:      linux-pm@vger.kernel.org
716 S:      Maintained
717 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
718 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
719
720 ALLWINNER CRYPTO DRIVERS
721 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
722 L:      linux-crypto@vger.kernel.org
723 S:      Maintained
724 F:      drivers/crypto/allwinner/
725
726 ALLWINNER THERMAL DRIVER
727 M:      Vasily Khoruzhick <anarsoul@gmail.com>
728 M:      Yangtao Li <tiny.windzz@gmail.com>
729 L:      linux-pm@vger.kernel.org
730 S:      Maintained
731 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
732 F:      drivers/thermal/sun8i_thermal.c
733
734 ALLWINNER VPU DRIVER
735 M:      Maxime Ripard <mripard@kernel.org>
736 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
737 L:      linux-media@vger.kernel.org
738 S:      Maintained
739 F:      drivers/staging/media/sunxi/cedrus/
740
741 ALPHA PORT
742 M:      Richard Henderson <rth@twiddle.net>
743 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
744 M:      Matt Turner <mattst88@gmail.com>
745 L:      linux-alpha@vger.kernel.org
746 S:      Odd Fixes
747 F:      arch/alpha/
748
749 ALPS PS/2 TOUCHPAD DRIVER
750 R:      Pali Rohár <pali@kernel.org>
751 F:      drivers/input/mouse/alps.*
752
753 ALTERA I2C CONTROLLER DRIVER
754 M:      Thor Thayer <thor.thayer@linux.intel.com>
755 S:      Maintained
756 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
757 F:      drivers/i2c/busses/i2c-altera.c
758
759 ALTERA MAILBOX DRIVER
760 M:      Ley Foon Tan <ley.foon.tan@intel.com>
761 S:      Maintained
762 F:      drivers/mailbox/mailbox-altera.c
763
764 ALTERA PIO DRIVER
765 M:      Joyce Ooi <joyce.ooi@intel.com>
766 L:      linux-gpio@vger.kernel.org
767 S:      Maintained
768 F:      drivers/gpio/gpio-altera.c
769
770 ALTERA SYSTEM MANAGER DRIVER
771 M:      Thor Thayer <thor.thayer@linux.intel.com>
772 S:      Maintained
773 F:      drivers/mfd/altera-sysmgr.c
774 F:      include/linux/mfd/altera-sysmgr.h
775
776 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
777 M:      Thor Thayer <thor.thayer@linux.intel.com>
778 S:      Maintained
779 F:      drivers/gpio/gpio-altera-a10sr.c
780 F:      drivers/mfd/altera-a10sr.c
781 F:      drivers/reset/reset-a10sr.c
782 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
783 F:      include/linux/mfd/altera-a10sr.h
784
785 ALTERA TRIPLE SPEED ETHERNET DRIVER
786 M:      Joyce Ooi <joyce.ooi@intel.com>
787 L:      netdev@vger.kernel.org
788 S:      Maintained
789 F:      drivers/net/ethernet/altera/
790
791 ALTERA UART/JTAG UART SERIAL DRIVERS
792 M:      Tobias Klauser <tklauser@distanz.ch>
793 L:      linux-serial@vger.kernel.org
794 S:      Maintained
795 F:      drivers/tty/serial/altera_jtaguart.c
796 F:      drivers/tty/serial/altera_uart.c
797 F:      include/linux/altera_jtaguart.h
798 F:      include/linux/altera_uart.h
799
800 AMAZON ANNAPURNA LABS FIC DRIVER
801 M:      Talel Shenhar <talel@amazon.com>
802 S:      Maintained
803 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
804 F:      drivers/irqchip/irq-al-fic.c
805
806 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
807 M:      Talel Shenhar <talel@amazon.com>
808 M:      Talel Shenhar <talelshenhar@gmail.com>
809 S:      Maintained
810 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
811 F:      drivers/edac/al_mc_edac.c
812
813 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
814 M:      Talel Shenhar <talel@amazon.com>
815 S:      Maintained
816 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
817 F:      drivers/thermal/thermal_mmio.c
818
819 AMAZON ETHERNET DRIVERS
820 M:      Netanel Belgazal <netanel@amazon.com>
821 M:      Arthur Kiyanovski <akiyano@amazon.com>
822 R:      Guy Tzalik <gtzalik@amazon.com>
823 R:      Saeed Bishara <saeedb@amazon.com>
824 L:      netdev@vger.kernel.org
825 S:      Supported
826 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
827 F:      drivers/net/ethernet/amazon/
828
829 AMAZON RDMA EFA DRIVER
830 M:      Gal Pressman <galpress@amazon.com>
831 R:      Yossi Leybovich <sleybo@amazon.com>
832 L:      linux-rdma@vger.kernel.org
833 S:      Supported
834 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
835 F:      drivers/infiniband/hw/efa/
836 F:      include/uapi/rdma/efa-abi.h
837
838 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
839 M:      Tom Lendacky <thomas.lendacky@amd.com>
840 M:      John Allen <john.allen@amd.com>
841 L:      linux-crypto@vger.kernel.org
842 S:      Supported
843 F:      drivers/crypto/ccp/
844 F:      include/linux/ccp.h
845
846 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
847 M:      Brijesh Singh <brijesh.singh@amd.com>
848 M:      Tom Lendacky <thomas.lendacky@amd.com>
849 L:      linux-crypto@vger.kernel.org
850 S:      Supported
851 F:      drivers/crypto/ccp/sev*
852 F:      include/uapi/linux/psp-sev.h
853
854 AMD DISPLAY CORE
855 M:      Harry Wentland <harry.wentland@amd.com>
856 M:      Leo Li <sunpeng.li@amd.com>
857 L:      amd-gfx@lists.freedesktop.org
858 S:      Supported
859 T:      git git://people.freedesktop.org/~agd5f/linux
860 F:      drivers/gpu/drm/amd/display/
861
862 AMD ENERGY DRIVER
863 M:      Naveen Krishna Chatradhi <nchatrad@amd.com>
864 L:      linux-hwmon@vger.kernel.org
865 S:      Maintained
866 F:      Documentation/hwmon/amd_energy.rst
867 F:      drivers/hwmon/amd_energy.c
868
869 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
870 M:      Huang Rui <ray.huang@amd.com>
871 L:      linux-hwmon@vger.kernel.org
872 S:      Supported
873 F:      Documentation/hwmon/fam15h_power.rst
874 F:      drivers/hwmon/fam15h_power.c
875
876 AMD FCH GPIO DRIVER
877 M:      Enrico Weigelt, metux IT consult <info@metux.net>
878 L:      linux-gpio@vger.kernel.org
879 S:      Maintained
880 F:      drivers/gpio/gpio-amd-fch.c
881 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
882
883 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
884 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
885 S:      Orphan
886 F:      drivers/usb/gadget/udc/amd5536udc.*
887
888 AMD GEODE PROCESSOR/CHIPSET SUPPORT
889 M:      Andres Salomon <dilinger@queued.net>
890 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
891 S:      Supported
892 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
893 F:      arch/x86/include/asm/geode.h
894 F:      drivers/char/hw_random/geode-rng.c
895 F:      drivers/crypto/geode*
896 F:      drivers/video/fbdev/geode/
897
898 AMD IOMMU (AMD-VI)
899 M:      Joerg Roedel <joro@8bytes.org>
900 L:      iommu@lists.linux-foundation.org
901 S:      Maintained
902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
903 F:      drivers/iommu/amd/
904 F:      include/linux/amd-iommu.h
905
906 AMD KFD
907 M:      Felix Kuehling <Felix.Kuehling@amd.com>
908 L:      amd-gfx@lists.freedesktop.org
909 S:      Supported
910 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
911 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
912 F:      drivers/gpu/drm/amd/amdkfd/
913 F:      drivers/gpu/drm/amd/include/cik_structs.h
914 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
915 F:      drivers/gpu/drm/amd/include/v9_structs.h
916 F:      drivers/gpu/drm/amd/include/vi_structs.h
917 F:      include/uapi/linux/kfd_ioctl.h
918
919 AMD SPI DRIVER
920 M:      Sanjay R Mehta <sanju.mehta@amd.com>
921 S:      Maintained
922 F:      drivers/spi/spi-amd.c
923
924 AMD MP2 I2C DRIVER
925 M:      Elie Morisse <syniurge@gmail.com>
926 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
927 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
928 L:      linux-i2c@vger.kernel.org
929 S:      Maintained
930 F:      drivers/i2c/busses/i2c-amd-mp2*
931
932 AMD PMC DRIVER
933 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
934 L:      platform-driver-x86@vger.kernel.org
935 S:      Maintained
936 F:      drivers/platform/x86/amd-pmc.*
937
938 AMD POWERPLAY
939 M:      Evan Quan <evan.quan@amd.com>
940 L:      amd-gfx@lists.freedesktop.org
941 S:      Supported
942 T:      git git://people.freedesktop.org/~agd5f/linux
943 F:      drivers/gpu/drm/amd/pm/powerplay/
944
945 AMD SEATTLE DEVICE TREE SUPPORT
946 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
947 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
948 M:      Tom Lendacky <thomas.lendacky@amd.com>
949 S:      Supported
950 F:      arch/arm64/boot/dts/amd/
951
952 AMD XGBE DRIVER
953 M:      Tom Lendacky <thomas.lendacky@amd.com>
954 L:      netdev@vger.kernel.org
955 S:      Supported
956 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
957 F:      drivers/net/ethernet/amd/xgbe/
958
959 AMD SENSOR FUSION HUB DRIVER
960 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
961 M:      Sandeep Singh <sandeep.singh@amd.com>
962 L:      linux-input@vger.kernel.org
963 S:      Maintained
964 F:      Documentation/hid/amd-sfh*
965 F:      drivers/hid/amd-sfh-hid/
966
967 AMS AS73211 DRIVER
968 M:      Christian Eggers <ceggers@arri.de>
969 L:      linux-iio@vger.kernel.org
970 S:      Maintained
971 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
972 F:      drivers/iio/light/as73211.c
973
974 ANALOG DEVICES INC AD7192 DRIVER
975 M:      Alexandru Tachici <alexandru.tachici@analog.com>
976 L:      linux-iio@vger.kernel.org
977 S:      Supported
978 W:      http://ez.analog.com/community/linux-device-drivers
979 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
980 F:      drivers/iio/adc/ad7192.c
981
982 ANALOG DEVICES INC AD7292 DRIVER
983 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
984 L:      linux-iio@vger.kernel.org
985 S:      Supported
986 W:      http://ez.analog.com/community/linux-device-drivers
987 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
988 F:      drivers/iio/adc/ad7292.c
989
990 ANALOG DEVICES INC AD7768-1 DRIVER
991 M:      Michael Hennerich <Michael.Hennerich@analog.com>
992 L:      linux-iio@vger.kernel.org
993 S:      Supported
994 W:      http://ez.analog.com/community/linux-device-drivers
995 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
996 F:      drivers/iio/adc/ad7768-1.c
997
998 ANALOG DEVICES INC AD7780 DRIVER
999 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1000 M:      Renato Lui Geh <renatogeh@gmail.com>
1001 L:      linux-iio@vger.kernel.org
1002 S:      Supported
1003 W:      http://ez.analog.com/community/linux-device-drivers
1004 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1005 F:      drivers/iio/adc/ad7780.c
1006
1007 ANALOG DEVICES INC AD9389B DRIVER
1008 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1009 L:      linux-media@vger.kernel.org
1010 S:      Maintained
1011 F:      drivers/media/i2c/ad9389b*
1012
1013 ANALOG DEVICES INC ADGS1408 DRIVER
1014 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1015 S:      Supported
1016 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1017 F:      drivers/mux/adgs1408.c
1018
1019 ANALOG DEVICES INC ADIN DRIVER
1020 M:      Alexandru Ardelean <alexaundru.ardelean@analog.com>
1021 L:      netdev@vger.kernel.org
1022 S:      Supported
1023 W:      http://ez.analog.com/community/linux-device-drivers
1024 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1025 F:      drivers/net/phy/adin.c
1026
1027 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1028 M:      Alexandru Ardelean <alexandru.ardelean@analog.com>
1029 L:      linux-iio@vger.kernel.org
1030 S:      Supported
1031 F:      drivers/iio/imu/adis.c
1032 F:      include/linux/iio/imu/adis.h
1033
1034 ANALOG DEVICES INC ADIS16460 DRIVER
1035 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1036 L:      linux-iio@vger.kernel.org
1037 S:      Supported
1038 W:      http://ez.analog.com/community/linux-device-drivers
1039 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1040 F:      drivers/iio/imu/adis16460.c
1041
1042 ANALOG DEVICES INC ADIS16475 DRIVER
1043 M:      Nuno Sa <nuno.sa@analog.com>
1044 L:      linux-iio@vger.kernel.org
1045 W:      http://ez.analog.com/community/linux-device-drivers
1046 S:      Supported
1047 F:      drivers/iio/imu/adis16475.c
1048 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1049
1050 ANALOG DEVICES INC ADM1177 DRIVER
1051 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1052 L:      linux-hwmon@vger.kernel.org
1053 S:      Supported
1054 W:      http://ez.analog.com/community/linux-device-drivers
1055 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1056 F:      drivers/hwmon/adm1177.c
1057
1058 ANALOG DEVICES INC ADP5061 DRIVER
1059 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1060 L:      linux-pm@vger.kernel.org
1061 S:      Supported
1062 W:      http://ez.analog.com/community/linux-device-drivers
1063 F:      drivers/power/supply/adp5061.c
1064
1065 ANALOG DEVICES INC ADV7180 DRIVER
1066 M:      Lars-Peter Clausen <lars@metafoo.de>
1067 L:      linux-media@vger.kernel.org
1068 S:      Supported
1069 W:      http://ez.analog.com/community/linux-device-drivers
1070 F:      drivers/media/i2c/adv7180.c
1071 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1072
1073 ANALOG DEVICES INC ADV748X DRIVER
1074 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1075 L:      linux-media@vger.kernel.org
1076 S:      Maintained
1077 F:      drivers/media/i2c/adv748x/*
1078
1079 ANALOG DEVICES INC ADV7511 DRIVER
1080 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1081 L:      linux-media@vger.kernel.org
1082 S:      Maintained
1083 F:      drivers/media/i2c/adv7511*
1084
1085 ANALOG DEVICES INC ADV7604 DRIVER
1086 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1087 L:      linux-media@vger.kernel.org
1088 S:      Maintained
1089 F:      drivers/media/i2c/adv7604*
1090 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1091
1092 ANALOG DEVICES INC ADV7842 DRIVER
1093 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1094 L:      linux-media@vger.kernel.org
1095 S:      Maintained
1096 F:      drivers/media/i2c/adv7842*
1097
1098 ANALOG DEVICES INC ADXRS290 DRIVER
1099 M:      Nishant Malpani <nish.malpani25@gmail.com>
1100 L:      linux-iio@vger.kernel.org
1101 S:      Supported
1102 F:      drivers/iio/gyro/adxrs290.c
1103 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1104
1105 ANALOG DEVICES INC ASOC CODEC DRIVERS
1106 M:      Lars-Peter Clausen <lars@metafoo.de>
1107 M:      Nuno Sá <nuno.sa@analog.com>
1108 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1109 S:      Supported
1110 W:      http://wiki.analog.com/
1111 W:      http://ez.analog.com/community/linux-device-drivers
1112 F:      sound/soc/codecs/ad1*
1113 F:      sound/soc/codecs/ad7*
1114 F:      sound/soc/codecs/adau*
1115 F:      sound/soc/codecs/adav*
1116 F:      sound/soc/codecs/sigmadsp.*
1117 F:      sound/soc/codecs/ssm*
1118
1119 ANALOG DEVICES INC DMA DRIVERS
1120 M:      Lars-Peter Clausen <lars@metafoo.de>
1121 S:      Supported
1122 W:      http://ez.analog.com/community/linux-device-drivers
1123 F:      drivers/dma/dma-axi-dmac.c
1124
1125 ANALOG DEVICES INC IIO DRIVERS
1126 M:      Lars-Peter Clausen <lars@metafoo.de>
1127 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1128 S:      Supported
1129 W:      http://wiki.analog.com/
1130 W:      http://ez.analog.com/community/linux-device-drivers
1131 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1132 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1133 F:      Documentation/devicetree/bindings/iio/*/adi,*
1134 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
1135 F:      drivers/iio/*/ad*
1136 F:      drivers/iio/adc/ltc249*
1137 F:      drivers/iio/amplifiers/hmc425a.c
1138 F:      drivers/staging/iio/*/ad*
1139 X:      drivers/iio/*/adjd*
1140
1141 ANALOGBITS PLL LIBRARIES
1142 M:      Paul Walmsley <paul.walmsley@sifive.com>
1143 S:      Supported
1144 F:      drivers/clk/analogbits/*
1145 F:      include/linux/clk/analogbits*
1146
1147 ANDES ARCHITECTURE
1148 M:      Nick Hu <nickhu@andestech.com>
1149 M:      Greentime Hu <green.hu@gmail.com>
1150 M:      Vincent Chen <deanbo422@gmail.com>
1151 S:      Supported
1152 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1153 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1154 F:      Documentation/devicetree/bindings/nds32/
1155 F:      arch/nds32/
1156 N:      nds32
1157 K:      nds32
1158
1159 ANDROID CONFIG FRAGMENTS
1160 M:      Rob Herring <robh@kernel.org>
1161 S:      Supported
1162 F:      kernel/configs/android*
1163
1164 ANDROID DRIVERS
1165 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1166 M:      Arve Hjønnevåg <arve@android.com>
1167 M:      Todd Kjos <tkjos@android.com>
1168 M:      Martijn Coenen <maco@android.com>
1169 M:      Joel Fernandes <joel@joelfernandes.org>
1170 M:      Christian Brauner <christian@brauner.io>
1171 M:      Hridya Valsaraju <hridya@google.com>
1172 M:      Suren Baghdasaryan <surenb@google.com>
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:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1187 S:      Supported
1188 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1189 F:      drivers/rtc/rtc-goldfish.c
1190
1191 AOA (Apple Onboard Audio) ALSA DRIVER
1192 M:      Johannes Berg <johannes@sipsolutions.net>
1193 L:      linuxppc-dev@lists.ozlabs.org
1194 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1195 S:      Maintained
1196 F:      sound/aoa/
1197
1198 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1199 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1200 L:      linux-iio@vger.kernel.org
1201 S:      Maintained
1202 F:      drivers/iio/adc/stx104.c
1203
1204 APM DRIVER
1205 M:      Jiri Kosina <jikos@kernel.org>
1206 S:      Odd fixes
1207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1208 F:      arch/x86/kernel/apm_32.c
1209 F:      drivers/char/apm-emulation.c
1210 F:      include/linux/apm_bios.h
1211 F:      include/uapi/linux/apm_bios.h
1212
1213 APPARMOR SECURITY MODULE
1214 M:      John Johansen <john.johansen@canonical.com>
1215 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1216 S:      Supported
1217 W:      wiki.apparmor.net
1218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1219 F:      Documentation/admin-guide/LSM/apparmor.rst
1220 F:      security/apparmor/
1221
1222 APPLE BCM5974 MULTITOUCH DRIVER
1223 M:      Henrik Rydberg <rydberg@bitmath.org>
1224 L:      linux-input@vger.kernel.org
1225 S:      Odd fixes
1226 F:      drivers/input/mouse/bcm5974.c
1227
1228 APPLE SMC DRIVER
1229 M:      Henrik Rydberg <rydberg@bitmath.org>
1230 L:      linux-hwmon@vger.kernel.org
1231 S:      Odd fixes
1232 F:      drivers/hwmon/applesmc.c
1233
1234 APPLETALK NETWORK LAYER
1235 L:      netdev@vger.kernel.org
1236 S:      Odd fixes
1237 F:      drivers/net/appletalk/
1238 F:      include/linux/atalk.h
1239 F:      include/uapi/linux/atalk.h
1240 F:      net/appletalk/
1241
1242 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1243 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1244 S:      Supported
1245 F:      arch/arm64/boot/dts/apm/
1246
1247 APPLIED MICRO (APM) X-GENE SOC EDAC
1248 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1249 S:      Supported
1250 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1251 F:      drivers/edac/xgene_edac.c
1252
1253 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1254 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1255 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1256 S:      Supported
1257 F:      drivers/net/ethernet/apm/xgene-v2/
1258
1259 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1260 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1261 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1262 M:      Quan Nguyen <quan@os.amperecomputing.com>
1263 S:      Supported
1264 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1265 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1266 F:      drivers/net/ethernet/apm/xgene/
1267 F:      drivers/net/mdio/mdio-xgene.c
1268
1269 APPLIED MICRO (APM) X-GENE SOC PMU
1270 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1271 S:      Supported
1272 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1273 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1274 F:      drivers/perf/xgene_pmu.c
1275
1276 APTINA CAMERA SENSOR PLL
1277 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1278 L:      linux-media@vger.kernel.org
1279 S:      Maintained
1280 F:      drivers/media/i2c/aptina-pll.*
1281
1282 AQUANTIA ETHERNET DRIVER (atlantic)
1283 M:      Igor Russkikh <irusskikh@marvell.com>
1284 L:      netdev@vger.kernel.org
1285 S:      Supported
1286 W:      https://www.marvell.com/
1287 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1288 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1289 F:      drivers/net/ethernet/aquantia/atlantic/
1290
1291 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1292 M:      Egor Pomozov <epomozov@marvell.com>
1293 L:      netdev@vger.kernel.org
1294 S:      Supported
1295 W:      http://www.aquantia.com
1296 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1297
1298 ARASAN NAND CONTROLLER DRIVER
1299 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1300 L:      linux-mtd@lists.infradead.org
1301 S:      Maintained
1302 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1303 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1304
1305 ARC FRAMEBUFFER DRIVER
1306 M:      Jaya Kumar <jayalk@intworks.biz>
1307 S:      Maintained
1308 F:      drivers/video/fbdev/arcfb.c
1309 F:      drivers/video/fbdev/core/fb_defio.c
1310
1311 ARC PGU DRM DRIVER
1312 M:      Alexey Brodkin <abrodkin@synopsys.com>
1313 S:      Supported
1314 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1315 F:      drivers/gpu/drm/arc/
1316
1317 ARCNET NETWORK LAYER
1318 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1319 L:      netdev@vger.kernel.org
1320 S:      Maintained
1321 F:      drivers/net/arcnet/
1322 F:      include/uapi/linux/if_arcnet.h
1323
1324 ARM ARCHITECTED TIMER DRIVER
1325 M:      Mark Rutland <mark.rutland@arm.com>
1326 M:      Marc Zyngier <maz@kernel.org>
1327 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1328 S:      Maintained
1329 F:      arch/arm/include/asm/arch_timer.h
1330 F:      arch/arm64/include/asm/arch_timer.h
1331 F:      drivers/clocksource/arm_arch_timer.c
1332
1333 ARM HDLCD DRM DRIVER
1334 M:      Liviu Dudau <liviu.dudau@arm.com>
1335 S:      Supported
1336 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1337 F:      drivers/gpu/drm/arm/hdlcd_*
1338
1339 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1340 M:      Linus Walleij <linus.walleij@linaro.org>
1341 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1342 S:      Maintained
1343 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1344 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1345 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1346 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1347 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1348 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1349 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1350 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1351 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1352 F:      arch/arm/boot/dts/arm-realview-*
1353 F:      arch/arm/boot/dts/integrator*
1354 F:      arch/arm/boot/dts/versatile*
1355 F:      arch/arm/mach-integrator/
1356 F:      arch/arm/mach-realview/
1357 F:      arch/arm/mach-versatile/
1358 F:      arch/arm/plat-versatile/
1359 F:      drivers/bus/arm-integrator-lm.c
1360 F:      drivers/clk/versatile/
1361 F:      drivers/i2c/busses/i2c-versatile.c
1362 F:      drivers/irqchip/irq-versatile-fpga.c
1363 F:      drivers/mtd/maps/physmap-versatile.*
1364 F:      drivers/power/reset/arm-versatile-reboot.c
1365 F:      drivers/soc/versatile/
1366
1367 ARM KOMEDA DRM-KMS DRIVER
1368 M:      James (Qian) Wang <james.qian.wang@arm.com>
1369 M:      Liviu Dudau <liviu.dudau@arm.com>
1370 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1371 L:      Mali DP Maintainers <malidp@foss.arm.com>
1372 S:      Supported
1373 T:      git git://anongit.freedesktop.org/drm/drm-misc
1374 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1375 F:      Documentation/gpu/komeda-kms.rst
1376 F:      drivers/gpu/drm/arm/display/include/
1377 F:      drivers/gpu/drm/arm/display/komeda/
1378
1379 ARM MALI PANFROST DRM DRIVER
1380 M:      Rob Herring <robh@kernel.org>
1381 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1382 R:      Steven Price <steven.price@arm.com>
1383 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1384 L:      dri-devel@lists.freedesktop.org
1385 S:      Supported
1386 T:      git git://anongit.freedesktop.org/drm/drm-misc
1387 F:      drivers/gpu/drm/panfrost/
1388 F:      include/uapi/drm/panfrost_drm.h
1389
1390 ARM MALI-DP DRM DRIVER
1391 M:      Liviu Dudau <liviu.dudau@arm.com>
1392 M:      Brian Starkey <brian.starkey@arm.com>
1393 L:      Mali DP Maintainers <malidp@foss.arm.com>
1394 S:      Supported
1395 T:      git git://anongit.freedesktop.org/drm/drm-misc
1396 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1397 F:      Documentation/gpu/afbc.rst
1398 F:      drivers/gpu/drm/arm/
1399
1400 ARM MFM AND FLOPPY DRIVERS
1401 M:      Ian Molton <spyro@f2s.com>
1402 S:      Maintained
1403 F:      arch/arm/include/asm/floppy.h
1404 F:      arch/arm/mach-rpc/floppydma.S
1405
1406 ARM PMU PROFILING AND DEBUGGING
1407 M:      Will Deacon <will@kernel.org>
1408 M:      Mark Rutland <mark.rutland@arm.com>
1409 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1410 S:      Maintained
1411 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1412 F:      Documentation/devicetree/bindings/perf/
1413 F:      arch/arm*/include/asm/hw_breakpoint.h
1414 F:      arch/arm*/include/asm/perf_event.h
1415 F:      arch/arm*/kernel/hw_breakpoint.c
1416 F:      arch/arm*/kernel/perf_*
1417 F:      drivers/perf/
1418 F:      include/linux/perf/arm_pmu.h
1419
1420 ARM PORT
1421 M:      Russell King <linux@armlinux.org.uk>
1422 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1423 S:      Odd Fixes
1424 W:      http://www.armlinux.org.uk/
1425 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1426 F:      arch/arm/
1427 X:      arch/arm/boot/dts/
1428
1429 ARM PRIMECELL AACI PL041 DRIVER
1430 M:      Russell King <linux@armlinux.org.uk>
1431 S:      Odd Fixes
1432 F:      sound/arm/aaci.*
1433
1434 ARM PRIMECELL BUS SUPPORT
1435 M:      Russell King <linux@armlinux.org.uk>
1436 S:      Odd Fixes
1437 F:      drivers/amba/
1438 F:      include/linux/amba/bus.h
1439
1440 ARM PRIMECELL CLCD PL110 DRIVER
1441 M:      Russell King <linux@armlinux.org.uk>
1442 S:      Odd Fixes
1443 F:      drivers/video/fbdev/amba-clcd.*
1444
1445 ARM PRIMECELL KMI PL050 DRIVER
1446 M:      Russell King <linux@armlinux.org.uk>
1447 S:      Odd Fixes
1448 F:      drivers/input/serio/ambakmi.*
1449 F:      include/linux/amba/kmi.h
1450
1451 ARM PRIMECELL MMCI PL180/1 DRIVER
1452 M:      Russell King <linux@armlinux.org.uk>
1453 S:      Odd Fixes
1454 F:      drivers/mmc/host/mmci.*
1455 F:      include/linux/amba/mmci.h
1456
1457 ARM PRIMECELL SSP PL022 SPI DRIVER
1458 M:      Linus Walleij <linus.walleij@linaro.org>
1459 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1460 S:      Maintained
1461 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1462 F:      drivers/spi/spi-pl022.c
1463
1464 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1465 M:      Russell King <linux@armlinux.org.uk>
1466 S:      Odd Fixes
1467 F:      drivers/tty/serial/amba-pl01*.c
1468 F:      include/linux/amba/serial.h
1469
1470 ARM PRIMECELL VIC PL190/PL192 DRIVER
1471 M:      Linus Walleij <linus.walleij@linaro.org>
1472 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1473 S:      Maintained
1474 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1475 F:      drivers/irqchip/irq-vic.c
1476
1477 ARM SMC WATCHDOG DRIVER
1478 M:      Julius Werner <jwerner@chromium.org>
1479 R:      Evan Benn <evanbenn@chromium.org>
1480 S:      Maintained
1481 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1482 F:      drivers/watchdog/arm_smc_wdt.c
1483
1484 ARM SMMU DRIVERS
1485 M:      Will Deacon <will@kernel.org>
1486 R:      Robin Murphy <robin.murphy@arm.com>
1487 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1488 S:      Maintained
1489 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1490 F:      drivers/iommu/arm/
1491 F:      drivers/iommu/io-pgtable-arm*
1492
1493 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1494 M:      Arnd Bergmann <arnd@arndb.de>
1495 M:      Olof Johansson <olof@lixom.net>
1496 M:      soc@kernel.org
1497 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1498 S:      Maintained
1499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1500 F:      arch/arm/boot/dts/Makefile
1501 F:      arch/arm64/boot/dts/Makefile
1502
1503 ARM SUB-ARCHITECTURES
1504 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1505 S:      Maintained
1506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1507 F:      arch/arm/mach-*/
1508 F:      arch/arm/plat-*/
1509
1510 ARM/ACTIONS SEMI ARCHITECTURE
1511 M:      Andreas Färber <afaerber@suse.de>
1512 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1513 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1514 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1515 S:      Maintained
1516 F:      Documentation/devicetree/bindings/arm/actions.yaml
1517 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1518 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1519 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1520 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1521 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1522 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1523 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1524 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1525 F:      arch/arm/boot/dts/owl-*
1526 F:      arch/arm/mach-actions/
1527 F:      arch/arm64/boot/dts/actions/
1528 F:      drivers/clk/actions/
1529 F:      drivers/clocksource/timer-owl*
1530 F:      drivers/dma/owl-dma.c
1531 F:      drivers/i2c/busses/i2c-owl.c
1532 F:      drivers/irqchip/irq-owl-sirq.c
1533 F:      drivers/mmc/host/owl-mmc.c
1534 F:      drivers/pinctrl/actions/*
1535 F:      drivers/soc/actions/
1536 F:      include/dt-bindings/power/owl-*
1537 F:      include/dt-bindings/reset/actions,*
1538 F:      include/linux/soc/actions/
1539 N:      owl
1540
1541 ARM/ADS SPHERE MACHINE SUPPORT
1542 M:      Lennert Buytenhek <kernel@wantstofly.org>
1543 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1544 S:      Maintained
1545
1546 ARM/AFEB9260 MACHINE SUPPORT
1547 M:      Sergey Lapin <slapin@ossfans.org>
1548 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1549 S:      Maintained
1550
1551 ARM/AJECO 1ARM MACHINE SUPPORT
1552 M:      Lennert Buytenhek <kernel@wantstofly.org>
1553 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1554 S:      Maintained
1555
1556 ARM/Allwinner SoC Clock Support
1557 M:      Emilio López <emilio@elopez.com.ar>
1558 S:      Maintained
1559 F:      drivers/clk/sunxi/
1560
1561 ARM/Allwinner sunXi SoC support
1562 M:      Maxime Ripard <mripard@kernel.org>
1563 M:      Chen-Yu Tsai <wens@csie.org>
1564 R:      Jernej Skrabec <jernej.skrabec@siol.net>
1565 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1566 S:      Maintained
1567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1568 F:      arch/arm/mach-sunxi/
1569 F:      arch/arm64/boot/dts/allwinner/
1570 F:      drivers/clk/sunxi-ng/
1571 F:      drivers/pinctrl/sunxi/
1572 F:      drivers/soc/sunxi/
1573 N:      sun[x456789]i
1574 N:      sun50i
1575
1576 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1577 M:      Neil Armstrong <narmstrong@baylibre.com>
1578 M:      Jerome Brunet <jbrunet@baylibre.com>
1579 L:      linux-amlogic@lists.infradead.org
1580 S:      Maintained
1581 F:      Documentation/devicetree/bindings/clock/amlogic*
1582 F:      drivers/clk/meson/
1583 F:      include/dt-bindings/clock/gxbb*
1584 F:      include/dt-bindings/clock/meson*
1585
1586 ARM/Amlogic Meson SoC Crypto Drivers
1587 M:      Corentin Labbe <clabbe@baylibre.com>
1588 L:      linux-crypto@vger.kernel.org
1589 L:      linux-amlogic@lists.infradead.org
1590 S:      Maintained
1591 F:      Documentation/devicetree/bindings/crypto/amlogic*
1592 F:      drivers/crypto/amlogic/
1593
1594 ARM/Amlogic Meson SoC Sound Drivers
1595 M:      Jerome Brunet <jbrunet@baylibre.com>
1596 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1597 S:      Maintained
1598 F:      Documentation/devicetree/bindings/sound/amlogic*
1599 F:      sound/soc/meson/
1600
1601 ARM/Amlogic Meson SoC support
1602 M:      Kevin Hilman <khilman@baylibre.com>
1603 R:      Neil Armstrong <narmstrong@baylibre.com>
1604 R:      Jerome Brunet <jbrunet@baylibre.com>
1605 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1606 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1607 L:      linux-amlogic@lists.infradead.org
1608 S:      Maintained
1609 W:      http://linux-meson.com/
1610 F:      arch/arm/boot/dts/meson*
1611 F:      arch/arm/mach-meson/
1612 F:      arch/arm64/boot/dts/amlogic/
1613 F:      drivers/mmc/host/meson*
1614 F:      drivers/pinctrl/meson/
1615 F:      drivers/rtc/rtc-meson*
1616 F:      drivers/soc/amlogic/
1617 N:      meson
1618
1619 ARM/Annapurna Labs ALPINE ARCHITECTURE
1620 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1621 M:      Antoine Tenart <atenart@kernel.org>
1622 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1623 S:      Maintained
1624 F:      arch/arm/boot/dts/alpine*
1625 F:      arch/arm/mach-alpine/
1626 F:      arch/arm64/boot/dts/amazon/
1627 F:      drivers/*/*alpine*
1628
1629 ARM/ARTPEC MACHINE SUPPORT
1630 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1631 M:      Lars Persson <lars.persson@axis.com>
1632 L:      linux-arm-kernel@axis.com
1633 S:      Maintained
1634 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1635 F:      arch/arm/boot/dts/artpec6*
1636 F:      arch/arm/mach-artpec
1637 F:      drivers/clk/axis
1638 F:      drivers/crypto/axis
1639 F:      drivers/mmc/host/usdhi6rol0.c
1640 F:      drivers/pinctrl/pinctrl-artpec*
1641
1642 ARM/ASPEED I2C DRIVER
1643 M:      Brendan Higgins <brendanhiggins@google.com>
1644 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1645 R:      Joel Stanley <joel@jms.id.au>
1646 L:      linux-i2c@vger.kernel.org
1647 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1648 S:      Maintained
1649 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1650 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1651 F:      drivers/i2c/busses/i2c-aspeed.c
1652 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1653
1654 ARM/ASPEED MACHINE SUPPORT
1655 M:      Joel Stanley <joel@jms.id.au>
1656 R:      Andrew Jeffery <andrew@aj.id.au>
1657 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1658 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1659 S:      Supported
1660 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1662 F:      arch/arm/boot/dts/aspeed-*
1663 F:      arch/arm/mach-aspeed/
1664 N:      aspeed
1665
1666 ARM/BITMAIN ARCHITECTURE
1667 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1668 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1669 S:      Maintained
1670 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1671 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1672 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1673 F:      arch/arm64/boot/dts/bitmain/
1674 F:      drivers/clk/clk-bm1880.c
1675 F:      drivers/pinctrl/pinctrl-bm1880.c
1676
1677 ARM/CALXEDA HIGHBANK ARCHITECTURE
1678 M:      Andre Przywara <andre.przywara@arm.com>
1679 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1680 S:      Maintained
1681 F:      arch/arm/boot/dts/ecx-*.dts*
1682 F:      arch/arm/boot/dts/highbank.dts
1683 F:      arch/arm/mach-highbank/
1684
1685 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1686 M:      Krzysztof Halasa <khalasa@piap.pl>
1687 S:      Maintained
1688 F:      arch/arm/mach-cns3xxx/
1689
1690 ARM/CAVIUM THUNDER NETWORK DRIVER
1691 M:      Sunil Goutham <sgoutham@marvell.com>
1692 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1693 S:      Supported
1694 F:      drivers/net/ethernet/cavium/thunder/
1695
1696 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1697 M:      Lukasz Majewski <lukma@denx.de>
1698 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1699 S:      Maintained
1700 F:      arch/arm/mach-ep93xx/ts72xx.c
1701
1702 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1703 M:      Alexander Shiyan <shc_work@mail.ru>
1704 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1705 S:      Odd Fixes
1706 N:      clps711x
1707
1708 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1709 M:      Lennert Buytenhek <kernel@wantstofly.org>
1710 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1711 S:      Maintained
1712
1713 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1714 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1715 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1716 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1717 S:      Maintained
1718 F:      arch/arm/mach-ep93xx/
1719 F:      arch/arm/mach-ep93xx/include/mach/
1720
1721 ARM/CLKDEV SUPPORT
1722 M:      Russell King <linux@armlinux.org.uk>
1723 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1724 S:      Maintained
1725 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1726 F:      drivers/clk/clkdev.c
1727
1728 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1729 M:      Baruch Siach <baruch@tkos.co.il>
1730 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1731 S:      Maintained
1732 F:      arch/arm/boot/dts/cx92755*
1733 N:      digicolor
1734
1735 ARM/CONTEC MICRO9 MACHINE SUPPORT
1736 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1737 S:      Maintained
1738 F:      arch/arm/mach-ep93xx/micro9.c
1739
1740 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1741 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1742 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1743 R:      Mike Leach <mike.leach@linaro.org>
1744 R:      Leo Yan <leo.yan@linaro.org>
1745 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1746 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1747 S:      Maintained
1748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1749 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1750 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1751 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1752 F:      Documentation/devicetree/bindings/arm/coresight.txt
1753 F:      Documentation/trace/coresight/*
1754 F:      drivers/hwtracing/coresight/*
1755 F:      include/dt-bindings/arm/coresight-cti-dt.h
1756 F:      tools/perf/arch/arm/util/auxtrace.c
1757 F:      tools/perf/arch/arm/util/cs-etm.c
1758 F:      tools/perf/arch/arm/util/cs-etm.h
1759 F:      tools/perf/arch/arm/util/pmu.c
1760 F:      tools/perf/util/cs-etm-decoder/*
1761 F:      tools/perf/util/cs-etm.*
1762
1763 ARM/CORGI MACHINE SUPPORT
1764 M:      Richard Purdie <rpurdie@rpsys.net>
1765 S:      Maintained
1766
1767 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1768 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1769 M:      Linus Walleij <linus.walleij@linaro.org>
1770 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1771 S:      Maintained
1772 T:      git git://github.com/ulli-kroll/linux.git
1773 F:      Documentation/devicetree/bindings/arm/gemini.txt
1774 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1775 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1776 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1777 F:      arch/arm/mach-gemini/
1778 F:      drivers/net/ethernet/cortina/
1779 F:      drivers/pinctrl/pinctrl-gemini.c
1780 F:      drivers/rtc/rtc-ftrtc010.c
1781
1782 ARM/CZ.NIC TURRIS MOX SUPPORT
1783 M:      Marek Behun <marek.behun@nic.cz>
1784 S:      Maintained
1785 W:      http://mox.turris.cz
1786 F:      Documentation/ABI/testing/debugfs-moxtet
1787 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1788 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1789 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1790 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1791 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1792 F:      drivers/bus/moxtet.c
1793 F:      drivers/firmware/turris-mox-rwtm.c
1794 F:      drivers/gpio/gpio-moxtet.c
1795 F:      include/linux/moxtet.h
1796
1797 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1798 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1799 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1800 S:      Maintained
1801 F:      arch/arm/mach-pxa/ezx.c
1802
1803 ARM/FARADAY FA526 PORT
1804 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1805 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1806 S:      Maintained
1807 T:      git git://git.berlios.de/gemini-board
1808 F:      arch/arm/mm/*-fa*
1809
1810 ARM/FOOTBRIDGE ARCHITECTURE
1811 M:      Russell King <linux@armlinux.org.uk>
1812 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1813 S:      Maintained
1814 W:      http://www.armlinux.org.uk/
1815 F:      arch/arm/include/asm/hardware/dec21285.h
1816 F:      arch/arm/mach-footbridge/
1817
1818 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1819 M:      Shawn Guo <shawnguo@kernel.org>
1820 M:      Sascha Hauer <s.hauer@pengutronix.de>
1821 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1822 R:      Fabio Estevam <festevam@gmail.com>
1823 R:      NXP Linux Team <linux-imx@nxp.com>
1824 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1825 S:      Maintained
1826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1827 X:      drivers/media/i2c/
1828 N:      imx
1829 N:      mxs
1830
1831 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1832 M:      Shawn Guo <shawnguo@kernel.org>
1833 M:      Li Yang <leoyang.li@nxp.com>
1834 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1835 S:      Maintained
1836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1837 F:      arch/arm/boot/dts/ls1021a*
1838 F:      arch/arm64/boot/dts/freescale/fsl-*
1839 F:      arch/arm64/boot/dts/freescale/qoriq-*
1840
1841 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1842 M:      Shawn Guo <shawnguo@kernel.org>
1843 M:      Sascha Hauer <s.hauer@pengutronix.de>
1844 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1845 R:      Stefan Agner <stefan@agner.ch>
1846 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1847 S:      Maintained
1848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1849 F:      arch/arm/boot/dts/vf*
1850 F:      arch/arm/mach-imx/*vf610*
1851
1852 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1853 M:      Lennert Buytenhek <kernel@wantstofly.org>
1854 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1855 S:      Maintained
1856
1857 ARM/GUMSTIX MACHINE SUPPORT
1858 M:      Steve Sakoman <sakoman@gmail.com>
1859 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1860 S:      Maintained
1861
1862 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1863 M:      Philipp Zabel <philipp.zabel@gmail.com>
1864 M:      Paul Parsons <lost.distance@yahoo.com>
1865 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1866 S:      Maintained
1867 F:      arch/arm/mach-pxa/hx4700.c
1868 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1869 F:      sound/soc/pxa/hx4700.c
1870
1871 ARM/HISILICON SOC SUPPORT
1872 M:      Wei Xu <xuwei5@hisilicon.com>
1873 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1874 S:      Supported
1875 W:      http://www.hisilicon.com
1876 T:      git git://github.com/hisilicon/linux-hisi.git
1877 F:      arch/arm/boot/dts/hi3*
1878 F:      arch/arm/boot/dts/hip*
1879 F:      arch/arm/boot/dts/hisi*
1880 F:      arch/arm/mach-hisi/
1881 F:      arch/arm64/boot/dts/hisilicon/
1882
1883 ARM/HP JORNADA 7XX MACHINE SUPPORT
1884 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1885 S:      Maintained
1886 W:      www.jlime.com
1887 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1888 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1889 F:      arch/arm/mach-sa1100/jornada720.c
1890
1891 ARM/IGEP MACHINE SUPPORT
1892 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1893 M:      Javier Martinez Canillas <javier@dowhile0.org>
1894 L:      linux-omap@vger.kernel.org
1895 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1896 S:      Maintained
1897 F:      arch/arm/boot/dts/omap3-igep*
1898
1899 ARM/INCOME PXA270 SUPPORT
1900 M:      Marek Vasut <marek.vasut@gmail.com>
1901 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1902 S:      Maintained
1903 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1904
1905 ARM/INTEL IOP32X ARM ARCHITECTURE
1906 M:      Lennert Buytenhek <kernel@wantstofly.org>
1907 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1908 S:      Maintained
1909
1910 ARM/INTEL IQ81342EX MACHINE SUPPORT
1911 M:      Lennert Buytenhek <kernel@wantstofly.org>
1912 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1913 S:      Maintained
1914
1915 ARM/INTEL IXDP2850 MACHINE SUPPORT
1916 M:      Lennert Buytenhek <kernel@wantstofly.org>
1917 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1918 S:      Maintained
1919
1920 ARM/INTEL IXP4XX ARM ARCHITECTURE
1921 M:      Linus Walleij <linusw@kernel.org>
1922 M:      Imre Kaloz <kaloz@openwrt.org>
1923 M:      Krzysztof Halasa <khalasa@piap.pl>
1924 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1925 S:      Maintained
1926 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1927 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1928 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1929 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1930 F:      arch/arm/mach-ixp4xx/
1931 F:      drivers/clocksource/timer-ixp4xx.c
1932 F:      drivers/gpio/gpio-ixp4xx.c
1933 F:      drivers/irqchip/irq-ixp4xx.c
1934 F:      include/linux/irqchip/irq-ixp4xx.h
1935 F:      include/linux/platform_data/timer-ixp4xx.h
1936
1937 ARM/INTEL KEEMBAY ARCHITECTURE
1938 M:      Paul J. Murphy <paul.j.murphy@intel.com>
1939 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
1940 S:      Maintained
1941 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
1942 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
1943 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
1944
1945 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1946 M:      Jonathan Cameron <jic23@cam.ac.uk>
1947 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1948 S:      Maintained
1949 F:      arch/arm/mach-pxa/stargate2.c
1950 F:      drivers/pcmcia/pxa2xx_stargate2.c
1951
1952 ARM/INTEL XSC3 (MANZANO) ARM CORE
1953 M:      Lennert Buytenhek <kernel@wantstofly.org>
1954 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1955 S:      Maintained
1956
1957 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
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/LG1K ARCHITECTURE
1963 M:      Chanho Min <chanho.min@lge.com>
1964 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1965 S:      Maintained
1966 F:      arch/arm64/boot/dts/lg/
1967
1968 ARM/LOGICPD PXA270 MACHINE SUPPORT
1969 M:      Lennert Buytenhek <kernel@wantstofly.org>
1970 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1971 S:      Maintained
1972
1973 ARM/LPC18XX ARCHITECTURE
1974 M:      Vladimir Zapolskiy <vz@mleia.com>
1975 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1976 S:      Maintained
1977 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1978 F:      arch/arm/boot/dts/lpc43*
1979 F:      drivers/i2c/busses/i2c-lpc2k.c
1980 F:      drivers/memory/pl172.c
1981 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
1982 F:      drivers/rtc/rtc-lpc24xx.c
1983 N:      lpc18xx
1984
1985 ARM/LPC32XX SOC SUPPORT
1986 M:      Vladimir Zapolskiy <vz@mleia.com>
1987 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1988 S:      Maintained
1989 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1990 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
1991 F:      arch/arm/boot/dts/lpc32*
1992 F:      arch/arm/mach-lpc32xx/
1993 F:      drivers/i2c/busses/i2c-pnx.c
1994 F:      drivers/net/ethernet/nxp/lpc_eth.c
1995 F:      drivers/usb/host/ohci-nxp.c
1996 F:      drivers/watchdog/pnx4008_wdt.c
1997 N:      lpc32xx
1998
1999 ARM/MAGICIAN MACHINE SUPPORT
2000 M:      Philipp Zabel <philipp.zabel@gmail.com>
2001 S:      Maintained
2002
2003 ARM/Marvell Dove/MV78xx0/Orion SOC support
2004 M:      Andrew Lunn <andrew@lunn.ch>
2005 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2006 M:      Gregory Clement <gregory.clement@bootlin.com>
2007 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2008 S:      Maintained
2009 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2010 F:      Documentation/devicetree/bindings/soc/dove/
2011 F:      arch/arm/boot/dts/dove*
2012 F:      arch/arm/boot/dts/orion5x*
2013 F:      arch/arm/mach-dove/
2014 F:      arch/arm/mach-mv78xx0/
2015 F:      arch/arm/mach-orion5x/
2016 F:      arch/arm/plat-orion/
2017 F:      drivers/soc/dove/
2018
2019 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2020 M:      Andrew Lunn <andrew@lunn.ch>
2021 M:      Gregory Clement <gregory.clement@bootlin.com>
2022 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2023 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2024 S:      Maintained
2025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2026 F:      arch/arm/boot/dts/armada*
2027 F:      arch/arm/boot/dts/kirkwood*
2028 F:      arch/arm/configs/mvebu_*_defconfig
2029 F:      arch/arm/mach-mvebu/
2030 F:      arch/arm64/boot/dts/marvell/armada*
2031 F:      arch/arm64/boot/dts/marvell/cn913*
2032 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2033 F:      drivers/cpufreq/armada-8k-cpufreq.c
2034 F:      drivers/cpufreq/mvebu-cpufreq.c
2035 F:      drivers/irqchip/irq-armada-370-xp.c
2036 F:      drivers/irqchip/irq-mvebu-*
2037 F:      drivers/pinctrl/mvebu/
2038 F:      drivers/rtc/rtc-armada38x.c
2039
2040 ARM/Mediatek RTC DRIVER
2041 M:      Eddie Huang <eddie.huang@mediatek.com>
2042 M:      Sean Wang <sean.wang@mediatek.com>
2043 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2044 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2045 S:      Maintained
2046 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2047 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2048 F:      drivers/rtc/rtc-mt2712.c
2049 F:      drivers/rtc/rtc-mt6397.c
2050 F:      drivers/rtc/rtc-mt7622.c
2051
2052 ARM/Mediatek SoC support
2053 M:      Matthias Brugger <matthias.bgg@gmail.com>
2054 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2055 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2056 S:      Maintained
2057 W:      https://mtk.wiki.kernel.org/
2058 C:      irc://chat.freenode.net/linux-mediatek
2059 F:      arch/arm/boot/dts/mt6*
2060 F:      arch/arm/boot/dts/mt7*
2061 F:      arch/arm/boot/dts/mt8*
2062 F:      arch/arm/mach-mediatek/
2063 F:      arch/arm64/boot/dts/mediatek/
2064 F:      drivers/soc/mediatek/
2065 N:      mtk
2066 N:      mt[678]
2067 K:      mediatek
2068
2069 ARM/Mediatek USB3 PHY DRIVER
2070 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2071 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2072 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2073 S:      Maintained
2074 F:      Documentation/devicetree/bindings/phy/mediatek,*
2075 F:      drivers/phy/mediatek/
2076
2077 ARM/Microchip (AT91) SoC support
2078 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2079 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2080 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2081 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2082 S:      Supported
2083 W:      http://www.linux4sam.org
2084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2085 F:      arch/arm/boot/dts/at91*.dts
2086 F:      arch/arm/boot/dts/at91*.dtsi
2087 F:      arch/arm/boot/dts/sama*.dts
2088 F:      arch/arm/boot/dts/sama*.dtsi
2089 F:      arch/arm/include/debug/at91.S
2090 F:      arch/arm/mach-at91/
2091 F:      drivers/memory/atmel*
2092 F:      drivers/watchdog/sama5d4_wdt.c
2093 F:      include/soc/at91/
2094 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2095 X:      drivers/net/wireless/atmel/
2096 N:      at91
2097 N:      atmel
2098
2099 ARM/Microchip Sparx5 SoC support
2100 M:      Lars Povlsen <lars.povlsen@microchip.com>
2101 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2102 M:      UNGLinuxDriver@microchip.com
2103 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2104 S:      Supported
2105 T:      git git://github.com/microchip-ung/linux-upstream.git
2106 F:      arch/arm64/boot/dts/microchip/
2107 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2108 N:      sparx5
2109
2110 Microchip Timer Counter Block (TCB) Capture Driver
2111 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2112 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2113 L:      linux-iio@vger.kernel.org
2114 S:      Maintained
2115 F:      drivers/counter/microchip-tcb-capture.c
2116
2117 ARM/MIOA701 MACHINE SUPPORT
2118 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2119 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2120 S:      Maintained
2121 F:      arch/arm/mach-pxa/mioa701.c
2122
2123 ARM/MStar/Sigmastar Armv7 SoC support
2124 M:      Daniel Palmer <daniel@thingy.jp>
2125 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2126 S:      Maintained
2127 W:      http://linux-chenxing.org/
2128 F:      Documentation/devicetree/bindings/arm/mstar/*
2129 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2130 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2131 F:      arch/arm/boot/dts/mstar-*
2132 F:      arch/arm/mach-mstar/
2133 F:      drivers/clk/mstar/
2134 F:      drivers/gpio/gpio-msc313.c
2135 F:      include/dt-bindings/clock/mstar-*
2136 F:      include/dt-bindings/gpio/msc313-gpio.h
2137
2138 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2139 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2140 S:      Maintained
2141
2142 ARM/NOMADIK/Ux500 ARCHITECTURES
2143 M:      Linus Walleij <linus.walleij@linaro.org>
2144 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2145 S:      Maintained
2146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2147 F:      Documentation/devicetree/bindings/arm/ste-*
2148 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2149 F:      Documentation/devicetree/bindings/arm/ux500/
2150 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2151 F:      arch/arm/boot/dts/ste-*
2152 F:      arch/arm/mach-nomadik/
2153 F:      arch/arm/mach-ux500/
2154 F:      drivers/clk/clk-nomadik.c
2155 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2156 F:      drivers/dma/ste_dma40*
2157 F:      drivers/hwspinlock/u8500_hsem.c
2158 F:      drivers/i2c/busses/i2c-nomadik.c
2159 F:      drivers/iio/adc/ab8500-gpadc.c
2160 F:      drivers/mfd/ab8500*
2161 F:      drivers/mfd/abx500*
2162 F:      drivers/mfd/db8500*
2163 F:      drivers/mfd/dbx500*
2164 F:      drivers/pinctrl/nomadik/
2165 F:      drivers/rtc/rtc-ab8500.c
2166 F:      drivers/rtc/rtc-pl031.c
2167 F:      drivers/soc/ux500/
2168
2169 ARM/NUVOTON NPCM ARCHITECTURE
2170 M:      Avi Fishman <avifishman70@gmail.com>
2171 M:      Tomer Maimon <tmaimon77@gmail.com>
2172 M:      Tali Perry <tali.perry1@gmail.com>
2173 R:      Patrick Venture <venture@google.com>
2174 R:      Nancy Yuen <yuenn@google.com>
2175 R:      Benjamin Fair <benjaminfair@google.com>
2176 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2177 S:      Supported
2178 F:      Documentation/devicetree/bindings/*/*/*npcm*
2179 F:      Documentation/devicetree/bindings/*/*npcm*
2180 F:      arch/arm/boot/dts/nuvoton-npcm*
2181 F:      arch/arm/mach-npcm/
2182 F:      drivers/*/*npcm*
2183 F:      drivers/*/*/*npcm*
2184 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2185
2186 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2187 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2188 S:      Orphan
2189 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2190 F:      arch/arm/mach-s3c/gta02.h
2191 F:      arch/arm/mach-s3c/mach-gta02.c
2192
2193 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2194 M:      Alexander Clouter <alex@digriz.org.uk>
2195 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2196 S:      Maintained
2197 W:      http://www.digriz.org.uk/ts78xx/kernel
2198 F:      arch/arm/mach-orion5x/ts78xx-*
2199
2200 ARM/OXNAS platform support
2201 M:      Neil Armstrong <narmstrong@baylibre.com>
2202 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2203 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2204 S:      Maintained
2205 F:      arch/arm/boot/dts/ox8*.dts*
2206 F:      arch/arm/mach-oxnas/
2207 F:      drivers/power/reset/oxnas-restart.c
2208 N:      oxnas
2209
2210 ARM/PALM TREO SUPPORT
2211 M:      Tomas Cech <sleep_walker@suse.com>
2212 L:      linux-arm-kernel@lists.infradead.org
2213 S:      Maintained
2214 W:      http://hackndev.com
2215 F:      arch/arm/mach-pxa/palmtreo.*
2216
2217 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2218 M:      Marek Vasut <marek.vasut@gmail.com>
2219 L:      linux-arm-kernel@lists.infradead.org
2220 S:      Maintained
2221 W:      http://hackndev.com
2222 F:      arch/arm/mach-pxa/include/mach/palmld.h
2223 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2224 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2225 F:      arch/arm/mach-pxa/palmld.c
2226 F:      arch/arm/mach-pxa/palmt5.*
2227 F:      arch/arm/mach-pxa/palmtc.c
2228 F:      arch/arm/mach-pxa/palmte2.*
2229 F:      arch/arm/mach-pxa/palmtx.c
2230
2231 ARM/PALMZ72 SUPPORT
2232 M:      Sergey Lapin <slapin@ossfans.org>
2233 L:      linux-arm-kernel@lists.infradead.org
2234 S:      Maintained
2235 W:      http://hackndev.com
2236 F:      arch/arm/mach-pxa/palmz72.*
2237
2238 ARM/PLEB SUPPORT
2239 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2240 S:      Maintained
2241 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2242
2243 ARM/PT DIGITAL BOARD PORT
2244 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2245 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2246 S:      Maintained
2247 W:      http://www.armlinux.org.uk/
2248
2249 ARM/QUALCOMM SUPPORT
2250 M:      Andy Gross <agross@kernel.org>
2251 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2252 L:      linux-arm-msm@vger.kernel.org
2253 S:      Maintained
2254 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2255 F:      Documentation/devicetree/bindings/*/qcom*
2256 F:      Documentation/devicetree/bindings/soc/qcom/
2257 F:      arch/arm/boot/dts/qcom-*.dts
2258 F:      arch/arm/boot/dts/qcom-*.dtsi
2259 F:      arch/arm/mach-qcom/
2260 F:      arch/arm64/boot/dts/qcom/
2261 F:      drivers/*/*/qcom*
2262 F:      drivers/*/*/qcom/
2263 F:      drivers/*/pm8???-*
2264 F:      drivers/*/qcom*
2265 F:      drivers/*/qcom/
2266 F:      drivers/bluetooth/btqcomsmd.c
2267 F:      drivers/clocksource/timer-qcom.c
2268 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2269 F:      drivers/extcon/extcon-qcom*
2270 F:      drivers/i2c/busses/i2c-qcom-geni.c
2271 F:      drivers/i2c/busses/i2c-qup.c
2272 F:      drivers/iommu/msm*
2273 F:      drivers/mfd/ssbi.c
2274 F:      drivers/mmc/host/mmci_qcom*
2275 F:      drivers/mmc/host/sdhci-msm.c
2276 F:      drivers/pci/controller/dwc/pcie-qcom.c
2277 F:      drivers/phy/qualcomm/
2278 F:      drivers/power/*/msm*
2279 F:      drivers/reset/reset-qcom-*
2280 F:      drivers/scsi/ufs/ufs-qcom*
2281 F:      drivers/spi/spi-geni-qcom.c
2282 F:      drivers/spi/spi-qcom-qspi.c
2283 F:      drivers/spi/spi-qup.c
2284 F:      drivers/tty/serial/msm_serial.c
2285 F:      drivers/usb/dwc3/dwc3-qcom.c
2286 F:      include/dt-bindings/*/qcom*
2287 F:      include/linux/*/qcom*
2288
2289 ARM/RADISYS ENP2611 MACHINE SUPPORT
2290 M:      Lennert Buytenhek <kernel@wantstofly.org>
2291 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2292 S:      Maintained
2293
2294 ARM/RDA MICRO ARCHITECTURE
2295 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2296 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2297 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2298 S:      Maintained
2299 F:      Documentation/devicetree/bindings/arm/rda.yaml
2300 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2301 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2302 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2303 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2304 F:      arch/arm/boot/dts/rda8810pl-*
2305 F:      drivers/clocksource/timer-rda.c
2306 F:      drivers/gpio/gpio-rda.c
2307 F:      drivers/irqchip/irq-rda-intc.c
2308 F:      drivers/tty/serial/rda-uart.c
2309
2310 ARM/REALTEK ARCHITECTURE
2311 M:      Andreas Färber <afaerber@suse.de>
2312 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2313 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2314 S:      Maintained
2315 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2316 F:      arch/arm/boot/dts/rtd*
2317 F:      arch/arm/mach-realtek/
2318 F:      arch/arm64/boot/dts/realtek/
2319
2320 ARM/RENESAS ARM64 ARCHITECTURE
2321 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2322 M:      Magnus Damm <magnus.damm@gmail.com>
2323 L:      linux-renesas-soc@vger.kernel.org
2324 S:      Supported
2325 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2327 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2328 F:      arch/arm64/boot/dts/renesas/
2329 F:      drivers/soc/renesas/
2330 F:      include/linux/soc/renesas/
2331
2332 ARM/RISCPC ARCHITECTURE
2333 M:      Russell King <linux@armlinux.org.uk>
2334 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2335 S:      Maintained
2336 W:      http://www.armlinux.org.uk/
2337 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2338 F:      arch/arm/include/asm/hardware/ioc.h
2339 F:      arch/arm/include/asm/hardware/iomd.h
2340 F:      arch/arm/include/asm/hardware/memc.h
2341 F:      arch/arm/mach-rpc/
2342 F:      drivers/net/ethernet/8390/etherh.c
2343 F:      drivers/net/ethernet/i825xx/ether1*
2344 F:      drivers/net/ethernet/seeq/ether3*
2345 F:      drivers/scsi/arm/
2346
2347 ARM/Rockchip SoC support
2348 M:      Heiko Stuebner <heiko@sntech.de>
2349 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2350 L:      linux-rockchip@lists.infradead.org
2351 S:      Maintained
2352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2353 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2354 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2355 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2356 F:      arch/arm/boot/dts/rk3*
2357 F:      arch/arm/boot/dts/rv1108*
2358 F:      arch/arm/mach-rockchip/
2359 F:      drivers/*/*/*rockchip*
2360 F:      drivers/*/*rockchip*
2361 F:      drivers/clk/rockchip/
2362 F:      drivers/i2c/busses/i2c-rk3x.c
2363 F:      sound/soc/rockchip/
2364 N:      rockchip
2365
2366 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2367 M:      Krzysztof Kozlowski <krzk@kernel.org>
2368 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2369 L:      linux-samsung-soc@vger.kernel.org
2370 S:      Maintained
2371 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2372 F:      Documentation/arm/samsung/
2373 F:      Documentation/devicetree/bindings/arm/samsung/
2374 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2375 F:      arch/arm/boot/dts/exynos*
2376 F:      arch/arm/boot/dts/s3c*
2377 F:      arch/arm/boot/dts/s5p*
2378 F:      arch/arm/mach-exynos*/
2379 F:      arch/arm/mach-s3c/
2380 F:      arch/arm/mach-s5p*/
2381 F:      arch/arm64/boot/dts/exynos/
2382 F:      drivers/*/*/*s3c24*
2383 F:      drivers/*/*s3c24*
2384 F:      drivers/*/*s3c64xx*
2385 F:      drivers/*/*s5pv210*
2386 F:      drivers/memory/samsung/
2387 F:      drivers/soc/samsung/
2388 F:      drivers/tty/serial/samsung*
2389 F:      include/linux/platform_data/*s3c*
2390 F:      include/linux/serial_s3c.h
2391 F:      include/linux/soc/samsung/
2392 N:      exynos
2393 N:      s3c2410
2394 N:      s3c64xx
2395 N:      s5pv210
2396
2397 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2398 M:      Andrzej Hajda <a.hajda@samsung.com>
2399 L:      linux-arm-kernel@lists.infradead.org
2400 L:      linux-media@vger.kernel.org
2401 S:      Maintained
2402 F:      drivers/media/platform/s5p-g2d/
2403
2404 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2405 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2406 L:      linux-samsung-soc@vger.kernel.org
2407 L:      linux-media@vger.kernel.org
2408 S:      Maintained
2409 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2410 F:      drivers/media/cec/platform/s5p/
2411
2412 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2413 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2414 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2415 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2416 L:      linux-arm-kernel@lists.infradead.org
2417 L:      linux-media@vger.kernel.org
2418 S:      Maintained
2419 F:      drivers/media/platform/s5p-jpeg/
2420
2421 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2422 M:      Andrzej Hajda <a.hajda@samsung.com>
2423 L:      linux-arm-kernel@lists.infradead.org
2424 L:      linux-media@vger.kernel.org
2425 S:      Maintained
2426 F:      drivers/media/platform/s5p-mfc/
2427
2428 ARM/SHMOBILE ARM ARCHITECTURE
2429 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2430 M:      Magnus Damm <magnus.damm@gmail.com>
2431 L:      linux-renesas-soc@vger.kernel.org
2432 S:      Supported
2433 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2435 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2436 F:      arch/arm/boot/dts/emev2*
2437 F:      arch/arm/boot/dts/gr-peach*
2438 F:      arch/arm/boot/dts/iwg20d-q7*
2439 F:      arch/arm/boot/dts/r7s*
2440 F:      arch/arm/boot/dts/r8a*
2441 F:      arch/arm/boot/dts/r9a*
2442 F:      arch/arm/boot/dts/sh*
2443 F:      arch/arm/configs/shmobile_defconfig
2444 F:      arch/arm/include/debug/renesas-scif.S
2445 F:      arch/arm/mach-shmobile/
2446 F:      drivers/soc/renesas/
2447 F:      include/linux/soc/renesas/
2448
2449 ARM/SOCFPGA ARCHITECTURE
2450 M:      Dinh Nguyen <dinguyen@kernel.org>
2451 S:      Maintained
2452 W:      http://www.rocketboards.org
2453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2454 F:      arch/arm/boot/dts/socfpga*
2455 F:      arch/arm/configs/socfpga_defconfig
2456 F:      arch/arm/mach-socfpga/
2457 F:      arch/arm64/boot/dts/altera/
2458 F:      arch/arm64/boot/dts/intel/
2459
2460 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2461 M:      Dinh Nguyen <dinguyen@kernel.org>
2462 S:      Maintained
2463 F:      drivers/clk/socfpga/
2464
2465 ARM/SOCFPGA EDAC SUPPORT
2466 M:      Dinh Nguyen <dinguyen@kernel.org>
2467 S:      Maintained
2468 F:      drivers/edac/altera_edac.[ch]
2469
2470 ARM/SPREADTRUM SoC SUPPORT
2471 M:      Orson Zhai <orsonzhai@gmail.com>
2472 M:      Baolin Wang <baolin.wang7@gmail.com>
2473 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2474 S:      Maintained
2475 F:      arch/arm64/boot/dts/sprd
2476 N:      sprd
2477 N:      sc27xx
2478 N:      sc2731
2479
2480 ARM/STI ARCHITECTURE
2481 M:      Patrice Chotard <patrice.chotard@st.com>
2482 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2483 S:      Maintained
2484 W:      http://www.stlinux.com
2485 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2486 F:      arch/arm/boot/dts/sti*
2487 F:      arch/arm/mach-sti/
2488 F:      drivers/ata/ahci_st.c
2489 F:      drivers/char/hw_random/st-rng.c
2490 F:      drivers/clocksource/arm_global_timer.c
2491 F:      drivers/clocksource/clksrc_st_lpc.c
2492 F:      drivers/cpufreq/sti-cpufreq.c
2493 F:      drivers/dma/st_fdma*
2494 F:      drivers/i2c/busses/i2c-st.c
2495 F:      drivers/media/platform/sti/c8sectpfe/
2496 F:      drivers/media/rc/st_rc.c
2497 F:      drivers/mmc/host/sdhci-st.c
2498 F:      drivers/phy/st/phy-miphy28lp.c
2499 F:      drivers/phy/st/phy-stih407-usb.c
2500 F:      drivers/pinctrl/pinctrl-st.c
2501 F:      drivers/remoteproc/st_remoteproc.c
2502 F:      drivers/remoteproc/st_slim_rproc.c
2503 F:      drivers/reset/sti/
2504 F:      drivers/rtc/rtc-st-lpc.c
2505 F:      drivers/tty/serial/st-asc.c
2506 F:      drivers/usb/dwc3/dwc3-st.c
2507 F:      drivers/usb/host/ehci-st.c
2508 F:      drivers/usb/host/ohci-st.c
2509 F:      drivers/watchdog/st_lpc_wdt.c
2510 F:      include/linux/remoteproc/st_slim_rproc.h
2511
2512 ARM/STM32 ARCHITECTURE
2513 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2514 M:      Alexandre Torgue <alexandre.torgue@st.com>
2515 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2516 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2517 S:      Maintained
2518 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2519 F:      arch/arm/boot/dts/stm32*
2520 F:      arch/arm/mach-stm32/
2521 F:      drivers/clocksource/armv7m_systick.c
2522 N:      stm32
2523 N:      stm
2524
2525 ARM/Synaptics SoC support
2526 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2527 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2528 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2529 S:      Maintained
2530 F:      arch/arm/boot/dts/berlin*
2531 F:      arch/arm/mach-berlin/
2532 F:      arch/arm64/boot/dts/synaptics/
2533
2534 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2535 M:      Lennert Buytenhek <kernel@wantstofly.org>
2536 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2537 S:      Maintained
2538
2539 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2540 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2541 L:      linux-tegra@vger.kernel.org
2542 L:      linux-media@vger.kernel.org
2543 S:      Maintained
2544 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2545 F:      drivers/media/cec/platform/tegra/
2546
2547 ARM/TETON BGA MACHINE SUPPORT
2548 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2549 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2550 S:      Maintained
2551
2552 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2553 M:      Santosh Shilimkar <ssantosh@kernel.org>
2554 L:      linux-kernel@vger.kernel.org
2555 S:      Maintained
2556 F:      drivers/memory/*emif*
2557
2558 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2559 M:      Santosh Shilimkar <ssantosh@kernel.org>
2560 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2561 S:      Maintained
2562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2563 F:      arch/arm/boot/dts/keystone-*
2564 F:      arch/arm/mach-keystone/
2565
2566 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2567 M:      Santosh Shilimkar <ssantosh@kernel.org>
2568 L:      linux-kernel@vger.kernel.org
2569 S:      Maintained
2570 F:      drivers/clk/keystone/
2571
2572 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2573 M:      Santosh Shilimkar <ssantosh@kernel.org>
2574 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2575 L:      linux-kernel@vger.kernel.org
2576 S:      Maintained
2577 F:      drivers/clocksource/timer-keystone.c
2578
2579 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2580 M:      Santosh Shilimkar <ssantosh@kernel.org>
2581 L:      linux-kernel@vger.kernel.org
2582 S:      Maintained
2583 F:      drivers/power/reset/keystone-reset.c
2584
2585 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2586 M:      Nishanth Menon <nm@ti.com>
2587 M:      Tero Kristo <kristo@kernel.org>
2588 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2589 S:      Supported
2590 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2591 F:      arch/arm64/boot/dts/ti/Makefile
2592 F:      arch/arm64/boot/dts/ti/k3-*
2593 F:      include/dt-bindings/pinctrl/k3.h
2594
2595 ARM/THECUS N2100 MACHINE SUPPORT
2596 M:      Lennert Buytenhek <kernel@wantstofly.org>
2597 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2598 S:      Maintained
2599
2600 ARM/TOSA MACHINE SUPPORT
2601 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2602 M:      Dirk Opfer <dirk@opfer-online.de>
2603 S:      Maintained
2604
2605 ARM/TOSHIBA VISCONTI ARCHITECTURE
2606 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2607 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2608 S:      Supported
2609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2610 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2611 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2612 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2613 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2614 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2615 F:      arch/arm64/boot/dts/toshiba/
2616 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2617 F:      drivers/gpio/gpio-visconti.c
2618 F:      drivers/pinctrl/visconti/
2619 F:      drivers/watchdog/visconti_wdt.c
2620 N:      visconti
2621
2622 ARM/UNIPHIER ARCHITECTURE
2623 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2624 S:      Orphan
2625 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2626 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2627 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2628 F:      arch/arm/boot/dts/uniphier*
2629 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2630 F:      arch/arm/mach-uniphier/
2631 F:      arch/arm/mm/cache-uniphier.c
2632 F:      arch/arm64/boot/dts/socionext/uniphier*
2633 F:      drivers/bus/uniphier-system-bus.c
2634 F:      drivers/clk/uniphier/
2635 F:      drivers/dma/uniphier-mdmac.c
2636 F:      drivers/gpio/gpio-uniphier.c
2637 F:      drivers/i2c/busses/i2c-uniphier*
2638 F:      drivers/irqchip/irq-uniphier-aidet.c
2639 F:      drivers/mmc/host/uniphier-sd.c
2640 F:      drivers/pinctrl/uniphier/
2641 F:      drivers/reset/reset-uniphier.c
2642 F:      drivers/tty/serial/8250/8250_uniphier.c
2643 N:      uniphier
2644
2645 ARM/VERSATILE EXPRESS PLATFORM
2646 M:      Liviu Dudau <liviu.dudau@arm.com>
2647 M:      Sudeep Holla <sudeep.holla@arm.com>
2648 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2649 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2650 S:      Maintained
2651 F:      */*/*/vexpress*
2652 F:      */*/vexpress*
2653 F:      arch/arm/boot/dts/vexpress*
2654 F:      arch/arm/mach-vexpress/
2655 F:      arch/arm64/boot/dts/arm/
2656 F:      drivers/clk/versatile/clk-vexpress-osc.c
2657 F:      drivers/clocksource/timer-versatile.c
2658 N:      mps2
2659
2660 ARM/VFP SUPPORT
2661 M:      Russell King <linux@armlinux.org.uk>
2662 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2663 S:      Maintained
2664 W:      http://www.armlinux.org.uk/
2665 F:      arch/arm/vfp/
2666
2667 ARM/VOIPAC PXA270 SUPPORT
2668 M:      Marek Vasut <marek.vasut@gmail.com>
2669 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2670 S:      Maintained
2671 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2672 F:      arch/arm/mach-pxa/vpac270.c
2673
2674 ARM/VT8500 ARM ARCHITECTURE
2675 M:      Tony Prisk <linux@prisktech.co.nz>
2676 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2677 S:      Maintained
2678 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2679 F:      arch/arm/mach-vt8500/
2680 F:      drivers/clocksource/timer-vt8500.c
2681 F:      drivers/i2c/busses/i2c-wmt.c
2682 F:      drivers/mmc/host/wmt-sdmmc.c
2683 F:      drivers/pwm/pwm-vt8500.c
2684 F:      drivers/rtc/rtc-vt8500.c
2685 F:      drivers/tty/serial/vt8500_serial.c
2686 F:      drivers/usb/host/ehci-platform.c
2687 F:      drivers/usb/host/uhci-platform.c
2688 F:      drivers/video/fbdev/vt8500lcdfb.*
2689 F:      drivers/video/fbdev/wm8505fb*
2690 F:      drivers/video/fbdev/wmt_ge_rops.*
2691
2692 ARM/ZIPIT Z2 SUPPORT
2693 M:      Marek Vasut <marek.vasut@gmail.com>
2694 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2695 S:      Maintained
2696 F:      arch/arm/mach-pxa/include/mach/z2.h
2697 F:      arch/arm/mach-pxa/z2.c
2698
2699 ARM/ZYNQ ARCHITECTURE
2700 M:      Michal Simek <michal.simek@xilinx.com>
2701 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2702 S:      Supported
2703 W:      http://wiki.xilinx.com
2704 T:      git https://github.com/Xilinx/linux-xlnx.git
2705 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2706 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2707 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2708 F:      arch/arm/mach-zynq/
2709 F:      drivers/block/xsysace.c
2710 F:      drivers/clocksource/timer-cadence-ttc.c
2711 F:      drivers/cpuidle/cpuidle-zynq.c
2712 F:      drivers/edac/synopsys_edac.c
2713 F:      drivers/i2c/busses/i2c-cadence.c
2714 F:      drivers/i2c/busses/i2c-xiic.c
2715 F:      drivers/mmc/host/sdhci-of-arasan.c
2716 N:      zynq
2717 N:      xilinx
2718
2719 ARM64 PORT (AARCH64 ARCHITECTURE)
2720 M:      Catalin Marinas <catalin.marinas@arm.com>
2721 M:      Will Deacon <will@kernel.org>
2722 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2723 S:      Maintained
2724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2725 F:      Documentation/arm64/
2726 F:      arch/arm64/
2727 F:      tools/testing/selftests/arm64/
2728 X:      arch/arm64/boot/dts/
2729
2730 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2731 M:      George McCollister <george.mccollister@gmail.com>
2732 L:      netdev@vger.kernel.org
2733 S:      Maintained
2734 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2735 F:      drivers/net/dsa/xrs700x/*
2736 F:      net/dsa/tag_xrs700x.c
2737
2738 AS3645A LED FLASH CONTROLLER DRIVER
2739 M:      Sakari Ailus <sakari.ailus@iki.fi>
2740 L:      linux-leds@vger.kernel.org
2741 S:      Maintained
2742 F:      drivers/leds/leds-as3645a.c
2743
2744 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2745 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2746 L:      linux-media@vger.kernel.org
2747 S:      Maintained
2748 T:      git git://linuxtv.org/media_tree.git
2749 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2750 F:      drivers/media/i2c/ak7375.c
2751
2752 ASAHI KASEI AK8974 DRIVER
2753 M:      Linus Walleij <linus.walleij@linaro.org>
2754 L:      linux-iio@vger.kernel.org
2755 S:      Supported
2756 W:      http://www.akm.com/
2757 F:      drivers/iio/magnetometer/ak8974.c
2758
2759 ASC7621 HARDWARE MONITOR DRIVER
2760 M:      George Joseph <george.joseph@fairview5.com>
2761 L:      linux-hwmon@vger.kernel.org
2762 S:      Maintained
2763 F:      Documentation/hwmon/asc7621.rst
2764 F:      drivers/hwmon/asc7621.c
2765
2766 ASPEED PINCTRL DRIVERS
2767 M:      Andrew Jeffery <andrew@aj.id.au>
2768 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2769 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2770 L:      linux-gpio@vger.kernel.org
2771 S:      Maintained
2772 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2773 F:      drivers/pinctrl/aspeed/
2774
2775 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2776 M:      Eddie James <eajames@linux.ibm.com>
2777 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2778 S:      Maintained
2779 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2780 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2781 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2782
2783 ASPEED SD/MMC DRIVER
2784 M:      Andrew Jeffery <andrew@aj.id.au>
2785 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2786 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2787 L:      linux-mmc@vger.kernel.org
2788 S:      Maintained
2789 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
2790 F:      drivers/mmc/host/sdhci-of-aspeed*
2791
2792 ASPEED VIDEO ENGINE DRIVER
2793 M:      Eddie James <eajames@linux.ibm.com>
2794 L:      linux-media@vger.kernel.org
2795 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2796 S:      Maintained
2797 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2798 F:      drivers/media/platform/aspeed-video.c
2799
2800 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2801 M:      Corentin Chary <corentin.chary@gmail.com>
2802 L:      acpi4asus-user@lists.sourceforge.net
2803 L:      platform-driver-x86@vger.kernel.org
2804 S:      Maintained
2805 W:      http://acpi4asus.sf.net
2806 F:      drivers/platform/x86/asus*.c
2807 F:      drivers/platform/x86/eeepc*.c
2808
2809 ASUS WIRELESS RADIO CONTROL DRIVER
2810 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2811 L:      platform-driver-x86@vger.kernel.org
2812 S:      Maintained
2813 F:      drivers/platform/x86/asus-wireless.c
2814
2815 ASYMMETRIC KEYS
2816 M:      David Howells <dhowells@redhat.com>
2817 L:      keyrings@vger.kernel.org
2818 S:      Maintained
2819 F:      Documentation/crypto/asymmetric-keys.rst
2820 F:      crypto/asymmetric_keys/
2821 F:      include/crypto/pkcs7.h
2822 F:      include/crypto/public_key.h
2823 F:      include/linux/verification.h
2824
2825 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2826 R:      Dan Williams <dan.j.williams@intel.com>
2827 S:      Odd fixes
2828 W:      http://sourceforge.net/projects/xscaleiop
2829 F:      Documentation/crypto/async-tx-api.rst
2830 F:      crypto/async_tx/
2831 F:      drivers/dma/
2832 F:      include/linux/async_tx.h
2833 F:      include/linux/dmaengine.h
2834
2835 AT24 EEPROM DRIVER
2836 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2837 L:      linux-i2c@vger.kernel.org
2838 S:      Maintained
2839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2840 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2841 F:      drivers/misc/eeprom/at24.c
2842
2843 ATA OVER ETHERNET (AOE) DRIVER
2844 M:      "Justin Sanders" <justin@coraid.com>
2845 S:      Supported
2846 W:      http://www.openaoe.org/
2847 F:      Documentation/admin-guide/aoe/
2848 F:      drivers/block/aoe/
2849
2850 ATHEROS 71XX/9XXX GPIO DRIVER
2851 M:      Alban Bedel <albeu@free.fr>
2852 S:      Maintained
2853 W:      https://github.com/AlbanBedel/linux
2854 T:      git git://github.com/AlbanBedel/linux
2855 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2856 F:      drivers/gpio/gpio-ath79.c
2857
2858 ATHEROS 71XX/9XXX USB PHY DRIVER
2859 M:      Alban Bedel <albeu@free.fr>
2860 S:      Maintained
2861 W:      https://github.com/AlbanBedel/linux
2862 T:      git git://github.com/AlbanBedel/linux
2863 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2864 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2865
2866 ATHEROS ATH GENERIC UTILITIES
2867 M:      Kalle Valo <kvalo@codeaurora.org>
2868 L:      linux-wireless@vger.kernel.org
2869 S:      Supported
2870 F:      drivers/net/wireless/ath/*
2871
2872 ATHEROS ATH5K WIRELESS DRIVER
2873 M:      Jiri Slaby <jirislaby@kernel.org>
2874 M:      Nick Kossifidis <mickflemm@gmail.com>
2875 M:      Luis Chamberlain <mcgrof@kernel.org>
2876 L:      linux-wireless@vger.kernel.org
2877 S:      Maintained
2878 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2879 F:      drivers/net/wireless/ath/ath5k/
2880
2881 ATHEROS ATH6KL WIRELESS DRIVER
2882 M:      Kalle Valo <kvalo@codeaurora.org>
2883 L:      linux-wireless@vger.kernel.org
2884 S:      Supported
2885 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2887 F:      drivers/net/wireless/ath/ath6kl/
2888
2889 ATI_REMOTE2 DRIVER
2890 M:      Ville Syrjala <syrjala@sci.fi>
2891 S:      Maintained
2892 F:      drivers/input/misc/ati_remote2.c
2893
2894 ATK0110 HWMON DRIVER
2895 M:      Luca Tettamanti <kronos.it@gmail.com>
2896 L:      linux-hwmon@vger.kernel.org
2897 S:      Maintained
2898 F:      drivers/hwmon/asus_atk0110.c
2899
2900 ATLX ETHERNET DRIVERS
2901 M:      Chris Snook <chris.snook@gmail.com>
2902 L:      netdev@vger.kernel.org
2903 S:      Maintained
2904 W:      http://sourceforge.net/projects/atl1
2905 W:      http://atl1.sourceforge.net
2906 F:      drivers/net/ethernet/atheros/
2907
2908 ATM
2909 M:      Chas Williams <3chas3@gmail.com>
2910 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2911 L:      netdev@vger.kernel.org
2912 S:      Maintained
2913 W:      http://linux-atm.sourceforge.net
2914 F:      drivers/atm/
2915 F:      include/linux/atm*
2916 F:      include/uapi/linux/atm*
2917
2918 ATMEL MACB ETHERNET DRIVER
2919 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2920 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2921 S:      Supported
2922 F:      drivers/net/ethernet/cadence/
2923
2924 ATMEL MAXTOUCH DRIVER
2925 M:      Nick Dyer <nick@shmanahar.org>
2926 S:      Maintained
2927 T:      git git://github.com/ndyer/linux.git
2928 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
2929 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2930
2931 ATMEL WIRELESS DRIVER
2932 M:      Simon Kelley <simon@thekelleys.org.uk>
2933 L:      linux-wireless@vger.kernel.org
2934 S:      Maintained
2935 W:      http://www.thekelleys.org.uk/atmel
2936 W:      http://atmelwlandriver.sourceforge.net/
2937 F:      drivers/net/wireless/atmel/atmel*
2938
2939 ATOMIC INFRASTRUCTURE
2940 M:      Will Deacon <will@kernel.org>
2941 M:      Peter Zijlstra <peterz@infradead.org>
2942 R:      Boqun Feng <boqun.feng@gmail.com>
2943 L:      linux-kernel@vger.kernel.org
2944 S:      Maintained
2945 F:      arch/*/include/asm/atomic*.h
2946 F:      include/*/atomic*.h
2947 F:      include/linux/refcount.h
2948 F:      Documentation/atomic_*.txt
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/networking/batman-adv.rst
3088 F:      include/uapi/linux/batadv_packet.h
3089 F:      include/uapi/linux/batman_adv.h
3090 F:      net/batman-adv/
3091
3092 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3093 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3094 L:      linux-hams@vger.kernel.org
3095 S:      Maintained
3096 W:      http://www.baycom.org/~tom/ham/ham.html
3097 F:      drivers/net/hamradio/baycom*
3098
3099 BCACHE (BLOCK LAYER CACHE)
3100 M:      Coly Li <colyli@suse.de>
3101 M:      Kent Overstreet <kent.overstreet@gmail.com>
3102 L:      linux-bcache@vger.kernel.org
3103 S:      Maintained
3104 W:      http://bcache.evilpiepirate.org
3105 C:      irc://irc.oftc.net/bcache
3106 F:      drivers/md/bcache/
3107
3108 BDISP ST MEDIA DRIVER
3109 M:      Fabien Dessenne <fabien.dessenne@st.com>
3110 L:      linux-media@vger.kernel.org
3111 S:      Supported
3112 W:      https://linuxtv.org
3113 T:      git git://linuxtv.org/media_tree.git
3114 F:      drivers/media/platform/sti/bdisp
3115
3116 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3117 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3118 L:      netdev@vger.kernel.org
3119 S:      Maintained
3120 F:      drivers/net/ethernet/ec_bhf.c
3121
3122 BEFS FILE SYSTEM
3123 M:      Luis de Bethencourt <luisbg@kernel.org>
3124 M:      Salah Triki <salah.triki@gmail.com>
3125 S:      Maintained
3126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3127 F:      Documentation/filesystems/befs.rst
3128 F:      fs/befs/
3129
3130 BFQ I/O SCHEDULER
3131 M:      Paolo Valente <paolo.valente@linaro.org>
3132 M:      Jens Axboe <axboe@kernel.dk>
3133 L:      linux-block@vger.kernel.org
3134 S:      Maintained
3135 F:      Documentation/block/bfq-iosched.rst
3136 F:      block/bfq-*
3137
3138 BFS FILE SYSTEM
3139 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3140 S:      Maintained
3141 F:      Documentation/filesystems/bfs.rst
3142 F:      fs/bfs/
3143 F:      include/uapi/linux/bfs_fs.h
3144
3145 BLINKM RGB LED DRIVER
3146 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3147 S:      Maintained
3148 F:      drivers/leds/leds-blinkm.c
3149
3150 BLOCK LAYER
3151 M:      Jens Axboe <axboe@kernel.dk>
3152 L:      linux-block@vger.kernel.org
3153 S:      Maintained
3154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3155 F:      block/
3156 F:      drivers/block/
3157 F:      fs/block_dev.c
3158 F:      include/linux/blk*
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 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3172 L:      linux-bluetooth@vger.kernel.org
3173 S:      Supported
3174 W:      http://www.bluez.org/
3175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3176 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3177 F:      drivers/bluetooth/
3178
3179 BLUETOOTH SUBSYSTEM
3180 M:      Marcel Holtmann <marcel@holtmann.org>
3181 M:      Johan Hedberg <johan.hedberg@gmail.com>
3182 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3183 L:      linux-bluetooth@vger.kernel.org
3184 S:      Supported
3185 W:      http://www.bluez.org/
3186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3188 F:      include/net/bluetooth/
3189 F:      net/bluetooth/
3190
3191 BONDING DRIVER
3192 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3193 M:      Veaceslav Falico <vfalico@gmail.com>
3194 M:      Andy Gospodarek <andy@greyhouse.net>
3195 L:      netdev@vger.kernel.org
3196 S:      Supported
3197 W:      http://sourceforge.net/projects/bonding/
3198 F:      drivers/net/bonding/
3199 F:      include/net/bonding.h
3200 F:      include/uapi/linux/if_bonding.h
3201
3202 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3203 M:      Dan Robertson <dan@dlrobertson.com>
3204 L:      linux-iio@vger.kernel.org
3205 S:      Maintained
3206 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3207 F:      drivers/iio/accel/bma400*
3208
3209 BPF (Safe dynamic programs and tools)
3210 M:      Alexei Starovoitov <ast@kernel.org>
3211 M:      Daniel Borkmann <daniel@iogearbox.net>
3212 M:      Andrii Nakryiko <andrii@kernel.org>
3213 R:      Martin KaFai Lau <kafai@fb.com>
3214 R:      Song Liu <songliubraving@fb.com>
3215 R:      Yonghong Song <yhs@fb.com>
3216 R:      John Fastabend <john.fastabend@gmail.com>
3217 R:      KP Singh <kpsingh@kernel.org>
3218 L:      netdev@vger.kernel.org
3219 L:      bpf@vger.kernel.org
3220 S:      Supported
3221 W:      https://bpf.io/
3222 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3225 F:      Documentation/bpf/
3226 F:      Documentation/networking/filter.rst
3227 F:      arch/*/net/*
3228 F:      include/linux/bpf*
3229 F:      include/linux/filter.h
3230 F:      include/trace/events/xdp.h
3231 F:      include/uapi/linux/bpf*
3232 F:      include/uapi/linux/filter.h
3233 F:      kernel/bpf/
3234 F:      kernel/trace/bpf_trace.c
3235 F:      lib/test_bpf.c
3236 F:      net/bpf/
3237 F:      net/core/filter.c
3238 F:      net/sched/act_bpf.c
3239 F:      net/sched/cls_bpf.c
3240 F:      samples/bpf/
3241 F:      tools/bpf/
3242 F:      tools/lib/bpf/
3243 F:      tools/testing/selftests/bpf/
3244 N:      bpf
3245 K:      bpf
3246
3247 BPF JIT for ARM
3248 M:      Shubham Bansal <illusionist.neo@gmail.com>
3249 L:      netdev@vger.kernel.org
3250 L:      bpf@vger.kernel.org
3251 S:      Maintained
3252 F:      arch/arm/net/
3253
3254 BPF JIT for ARM64
3255 M:      Daniel Borkmann <daniel@iogearbox.net>
3256 M:      Alexei Starovoitov <ast@kernel.org>
3257 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3258 L:      netdev@vger.kernel.org
3259 L:      bpf@vger.kernel.org
3260 S:      Supported
3261 F:      arch/arm64/net/
3262
3263 BPF JIT for MIPS (32-BIT AND 64-BIT)
3264 M:      Paul Burton <paulburton@kernel.org>
3265 L:      netdev@vger.kernel.org
3266 L:      bpf@vger.kernel.org
3267 S:      Maintained
3268 F:      arch/mips/net/
3269
3270 BPF JIT for NFP NICs
3271 M:      Jakub Kicinski <kuba@kernel.org>
3272 L:      netdev@vger.kernel.org
3273 L:      bpf@vger.kernel.org
3274 S:      Supported
3275 F:      drivers/net/ethernet/netronome/nfp/bpf/
3276
3277 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3278 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3279 M:      Sandipan Das <sandipan@linux.ibm.com>
3280 L:      netdev@vger.kernel.org
3281 L:      bpf@vger.kernel.org
3282 S:      Maintained
3283 F:      arch/powerpc/net/
3284
3285 BPF JIT for RISC-V (32-bit)
3286 M:      Luke Nelson <luke.r.nels@gmail.com>
3287 M:      Xi Wang <xi.wang@gmail.com>
3288 L:      netdev@vger.kernel.org
3289 L:      bpf@vger.kernel.org
3290 S:      Maintained
3291 F:      arch/riscv/net/
3292 X:      arch/riscv/net/bpf_jit_comp64.c
3293
3294 BPF JIT for RISC-V (64-bit)
3295 M:      Björn Töpel <bjorn@kernel.org>
3296 L:      netdev@vger.kernel.org
3297 L:      bpf@vger.kernel.org
3298 S:      Maintained
3299 F:      arch/riscv/net/
3300 X:      arch/riscv/net/bpf_jit_comp32.c
3301
3302 BPF JIT for S390
3303 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3304 M:      Heiko Carstens <hca@linux.ibm.com>
3305 M:      Vasily Gorbik <gor@linux.ibm.com>
3306 L:      netdev@vger.kernel.org
3307 L:      bpf@vger.kernel.org
3308 S:      Maintained
3309 F:      arch/s390/net/
3310 X:      arch/s390/net/pnet.c
3311
3312 BPF JIT for SPARC (32-BIT AND 64-BIT)
3313 M:      David S. Miller <davem@davemloft.net>
3314 L:      netdev@vger.kernel.org
3315 L:      bpf@vger.kernel.org
3316 S:      Maintained
3317 F:      arch/sparc/net/
3318
3319 BPF JIT for X86 32-BIT
3320 M:      Wang YanQing <udknight@gmail.com>
3321 L:      netdev@vger.kernel.org
3322 L:      bpf@vger.kernel.org
3323 S:      Maintained
3324 F:      arch/x86/net/bpf_jit_comp32.c
3325
3326 BPF JIT for X86 64-BIT
3327 M:      Alexei Starovoitov <ast@kernel.org>
3328 M:      Daniel Borkmann <daniel@iogearbox.net>
3329 L:      netdev@vger.kernel.org
3330 L:      bpf@vger.kernel.org
3331 S:      Supported
3332 F:      arch/x86/net/
3333 X:      arch/x86/net/bpf_jit_comp32.c
3334
3335 BPF LSM (Security Audit and Enforcement using BPF)
3336 M:      KP Singh <kpsingh@kernel.org>
3337 R:      Florent Revest <revest@chromium.org>
3338 R:      Brendan Jackman <jackmanb@chromium.org>
3339 L:      bpf@vger.kernel.org
3340 S:      Maintained
3341 F:      Documentation/bpf/bpf_lsm.rst
3342 F:      include/linux/bpf_lsm.h
3343 F:      kernel/bpf/bpf_lsm.c
3344 F:      security/bpf/
3345
3346 BROADCOM B44 10/100 ETHERNET DRIVER
3347 M:      Michael Chan <michael.chan@broadcom.com>
3348 L:      netdev@vger.kernel.org
3349 S:      Supported
3350 F:      drivers/net/ethernet/broadcom/b44.*
3351
3352 BROADCOM B53 ETHERNET SWITCH DRIVER
3353 M:      Florian Fainelli <f.fainelli@gmail.com>
3354 L:      netdev@vger.kernel.org
3355 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3356 S:      Supported
3357 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3358 F:      drivers/net/dsa/b53/*
3359 F:      include/linux/dsa/brcm.h
3360 F:      include/linux/platform_data/b53.h
3361
3362 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3363 M:      Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
3364 L:      bcm-kernel-feedback-list@broadcom.com
3365 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3366 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3367 S:      Maintained
3368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3369 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3370 F:      drivers/pci/controller/pcie-brcmstb.c
3371 F:      drivers/staging/vc04_services
3372 N:      bcm2711
3373 N:      bcm283*
3374
3375 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3376 M:      Florian Fainelli <f.fainelli@gmail.com>
3377 M:      Ray Jui <rjui@broadcom.com>
3378 M:      Scott Branden <sbranden@broadcom.com>
3379 M:      bcm-kernel-feedback-list@broadcom.com
3380 S:      Maintained
3381 T:      git git://github.com/broadcom/mach-bcm
3382 F:      arch/arm/mach-bcm/
3383 N:      bcm281*
3384 N:      bcm113*
3385 N:      bcm216*
3386 N:      kona
3387
3388 BROADCOM BCM47XX MIPS ARCHITECTURE
3389 M:      Hauke Mehrtens <hauke@hauke-m.de>
3390 M:      Rafał Miłecki <zajec5@gmail.com>
3391 L:      linux-mips@vger.kernel.org
3392 S:      Maintained
3393 F:      Documentation/devicetree/bindings/mips/brcm/
3394 F:      arch/mips/bcm47xx/*
3395 F:      arch/mips/include/asm/mach-bcm47xx/*
3396
3397 BROADCOM BCM4908 ETHERNET DRIVER
3398 M:      Rafał Miłecki <rafal@milecki.pl>
3399 M:      bcm-kernel-feedback-list@broadcom.com
3400 L:      netdev@vger.kernel.org
3401 S:      Maintained
3402 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3403 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3404 F:      drivers/net/ethernet/broadcom/unimac.h
3405
3406 BROADCOM BCM5301X ARM ARCHITECTURE
3407 M:      Hauke Mehrtens <hauke@hauke-m.de>
3408 M:      Rafał Miłecki <zajec5@gmail.com>
3409 M:      bcm-kernel-feedback-list@broadcom.com
3410 L:      linux-arm-kernel@lists.infradead.org
3411 S:      Maintained
3412 F:      arch/arm/boot/dts/bcm470*
3413 F:      arch/arm/boot/dts/bcm5301*
3414 F:      arch/arm/boot/dts/bcm953012*
3415 F:      arch/arm/mach-bcm/bcm_5301x.c
3416
3417 BROADCOM BCM53573 ARM ARCHITECTURE
3418 M:      Rafał Miłecki <rafal@milecki.pl>
3419 L:      bcm-kernel-feedback-list@broadcom.com
3420 L:      linux-arm-kernel@lists.infradead.org
3421 S:      Maintained
3422 F:      arch/arm/boot/dts/bcm47189*
3423 F:      arch/arm/boot/dts/bcm53573*
3424
3425 BROADCOM BCM63XX ARM ARCHITECTURE
3426 M:      Florian Fainelli <f.fainelli@gmail.com>
3427 M:      bcm-kernel-feedback-list@broadcom.com
3428 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3429 S:      Maintained
3430 T:      git git://github.com/broadcom/stblinux.git
3431 N:      bcm63xx
3432
3433 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3434 M:      Kevin Cernekee <cernekee@gmail.com>
3435 L:      linux-usb@vger.kernel.org
3436 S:      Maintained
3437 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3438
3439 BROADCOM BCM7XXX ARM ARCHITECTURE
3440 M:      Florian Fainelli <f.fainelli@gmail.com>
3441 M:      bcm-kernel-feedback-list@broadcom.com
3442 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3443 S:      Maintained
3444 T:      git git://github.com/broadcom/stblinux.git
3445 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3446 F:      arch/arm/boot/dts/bcm7*.dts*
3447 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3448 F:      arch/arm/mach-bcm/*brcmstb*
3449 F:      arch/arm/mm/cache-b15-rac.c
3450 F:      drivers/bus/brcmstb_gisb.c
3451 F:      drivers/pci/controller/pcie-brcmstb.c
3452 N:      brcmstb
3453
3454 BROADCOM BDC DRIVER
3455 M:      Al Cooper <alcooperx@gmail.com>
3456 L:      linux-usb@vger.kernel.org
3457 L:      bcm-kernel-feedback-list@broadcom.com
3458 S:      Maintained
3459 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3460 F:      drivers/usb/gadget/udc/bdc/
3461
3462 BROADCOM BMIPS CPUFREQ DRIVER
3463 M:      Markus Mayer <mmayer@broadcom.com>
3464 M:      bcm-kernel-feedback-list@broadcom.com
3465 L:      linux-pm@vger.kernel.org
3466 S:      Maintained
3467 F:      drivers/cpufreq/bmips-cpufreq.c
3468
3469 BROADCOM BMIPS MIPS ARCHITECTURE
3470 M:      Florian Fainelli <f.fainelli@gmail.com>
3471 L:      bcm-kernel-feedback-list@broadcom.com
3472 L:      linux-mips@vger.kernel.org
3473 S:      Maintained
3474 T:      git git://github.com/broadcom/stblinux.git
3475 F:      arch/mips/bmips/*
3476 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3477 F:      arch/mips/include/asm/mach-bmips/*
3478 F:      arch/mips/kernel/*bmips*
3479 F:      drivers/soc/bcm/bcm63xx
3480 F:      drivers/irqchip/irq-bcm63*
3481 F:      drivers/irqchip/irq-bcm7*
3482 F:      drivers/irqchip/irq-brcmstb*
3483 F:      include/linux/bcm963xx_nvram.h
3484 F:      include/linux/bcm963xx_tag.h
3485
3486 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3487 M:      Rasesh Mody <rmody@marvell.com>
3488 M:      GR-Linux-NIC-Dev@marvell.com
3489 L:      netdev@vger.kernel.org
3490 S:      Supported
3491 F:      drivers/net/ethernet/broadcom/bnx2.*
3492 F:      drivers/net/ethernet/broadcom/bnx2_*
3493
3494 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3495 M:      Saurav Kashyap <skashyap@marvell.com>
3496 M:      Javed Hasan <jhasan@marvell.com>
3497 M:      GR-QLogic-Storage-Upstream@marvell.com
3498 L:      linux-scsi@vger.kernel.org
3499 S:      Supported
3500 F:      drivers/scsi/bnx2fc/
3501
3502 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3503 M:      Nilesh Javali <njavali@marvell.com>
3504 M:      Manish Rangankar <mrangankar@marvell.com>
3505 M:      GR-QLogic-Storage-Upstream@marvell.com
3506 L:      linux-scsi@vger.kernel.org
3507 S:      Supported
3508 F:      drivers/scsi/bnx2i/
3509
3510 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3511 M:      Ariel Elior <aelior@marvell.com>
3512 M:      Sudarsana Kalluru <skalluru@marvell.com>
3513 M:      GR-everest-linux-l2@marvell.com
3514 L:      netdev@vger.kernel.org
3515 S:      Supported
3516 F:      drivers/net/ethernet/broadcom/bnx2x/
3517
3518 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3519 M:      Michael Chan <michael.chan@broadcom.com>
3520 L:      netdev@vger.kernel.org
3521 S:      Supported
3522 F:      drivers/net/ethernet/broadcom/bnxt/
3523
3524 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3525 M:      Arend van Spriel <aspriel@gmail.com>
3526 M:      Franky Lin <franky.lin@broadcom.com>
3527 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3528 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3529 M:      Wright Feng <wright.feng@infineon.com>
3530 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3531 L:      linux-wireless@vger.kernel.org
3532 L:      brcm80211-dev-list.pdl@broadcom.com
3533 L:      SHA-cyfmac-dev-list@infineon.com
3534 S:      Supported
3535 F:      drivers/net/wireless/broadcom/brcm80211/
3536
3537 BROADCOM BRCMSTB GPIO DRIVER
3538 M:      Gregory Fong <gregory.0xf0@gmail.com>
3539 L:      bcm-kernel-feedback-list@broadcom.com
3540 S:      Supported
3541 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3542 F:      drivers/gpio/gpio-brcmstb.c
3543
3544 BROADCOM BRCMSTB I2C DRIVER
3545 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3546 L:      linux-i2c@vger.kernel.org
3547 L:      bcm-kernel-feedback-list@broadcom.com
3548 S:      Supported
3549 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3550 F:      drivers/i2c/busses/i2c-brcmstb.c
3551
3552 BROADCOM BRCMSTB USB EHCI DRIVER
3553 M:      Al Cooper <alcooperx@gmail.com>
3554 L:      linux-usb@vger.kernel.org
3555 L:      bcm-kernel-feedback-list@broadcom.com
3556 S:      Maintained
3557 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3558 F:      drivers/usb/host/ehci-brcm.*
3559
3560 BROADCOM BRCMSTB USB PIN MAP DRIVER
3561 M:      Al Cooper <alcooperx@gmail.com>
3562 L:      linux-usb@vger.kernel.org
3563 L:      bcm-kernel-feedback-list@broadcom.com
3564 S:      Maintained
3565 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3566 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3567
3568 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3569 M:      Al Cooper <alcooperx@gmail.com>
3570 L:      linux-kernel@vger.kernel.org
3571 L:      bcm-kernel-feedback-list@broadcom.com
3572 S:      Maintained
3573 F:      drivers/phy/broadcom/phy-brcm-usb*
3574
3575 BROADCOM ETHERNET PHY DRIVERS
3576 M:      Florian Fainelli <f.fainelli@gmail.com>
3577 L:      bcm-kernel-feedback-list@broadcom.com
3578 L:      netdev@vger.kernel.org
3579 S:      Supported
3580 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3581 F:      drivers/net/phy/bcm*.[ch]
3582 F:      drivers/net/phy/broadcom.c
3583 F:      include/linux/brcmphy.h
3584
3585 BROADCOM GENET ETHERNET DRIVER
3586 M:      Doug Berger <opendmb@gmail.com>
3587 M:      Florian Fainelli <f.fainelli@gmail.com>
3588 L:      bcm-kernel-feedback-list@broadcom.com
3589 L:      netdev@vger.kernel.org
3590 S:      Supported
3591 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3592 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3593 F:      drivers/net/ethernet/broadcom/genet/
3594 F:      drivers/net/ethernet/broadcom/unimac.h
3595 F:      drivers/net/mdio/mdio-bcm-unimac.c
3596 F:      include/linux/platform_data/bcmgenet.h
3597 F:      include/linux/platform_data/mdio-bcm-unimac.h
3598
3599 BROADCOM IPROC ARM ARCHITECTURE
3600 M:      Ray Jui <rjui@broadcom.com>
3601 M:      Scott Branden <sbranden@broadcom.com>
3602 M:      bcm-kernel-feedback-list@broadcom.com
3603 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3604 S:      Maintained
3605 T:      git git://github.com/broadcom/cygnus-linux.git
3606 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3607 F:      arch/arm64/boot/dts/broadcom/stingray/*
3608 F:      drivers/clk/bcm/clk-ns*
3609 F:      drivers/clk/bcm/clk-sr*
3610 F:      drivers/pinctrl/bcm/pinctrl-ns*
3611 F:      include/dt-bindings/clock/bcm-sr*
3612 N:      iproc
3613 N:      cygnus
3614 N:      bcm[-_]nsp
3615 N:      bcm9113*
3616 N:      bcm9583*
3617 N:      bcm9585*
3618 N:      bcm9586*
3619 N:      bcm988312
3620 N:      bcm113*
3621 N:      bcm583*
3622 N:      bcm585*
3623 N:      bcm586*
3624 N:      bcm88312
3625 N:      hr2
3626 N:      stingray
3627
3628 BROADCOM IPROC GBIT ETHERNET DRIVER
3629 M:      Rafał Miłecki <rafal@milecki.pl>
3630 M:      bcm-kernel-feedback-list@broadcom.com
3631 L:      netdev@vger.kernel.org
3632 S:      Maintained
3633 F:      Documentation/devicetree/bindings/net/brcm,amac.txt
3634 F:      drivers/net/ethernet/broadcom/bgmac*
3635 F:      drivers/net/ethernet/broadcom/unimac.h
3636
3637 BROADCOM KONA GPIO DRIVER
3638 M:      Ray Jui <rjui@broadcom.com>
3639 L:      bcm-kernel-feedback-list@broadcom.com
3640 S:      Supported
3641 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3642 F:      drivers/gpio/gpio-bcm-kona.c
3643
3644 BROADCOM NETXTREME-E ROCE DRIVER
3645 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3646 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3647 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3648 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3649 M:      Naresh Kumar PBS <nareshkumar.pbs@broadcom.com>
3650 L:      linux-rdma@vger.kernel.org
3651 S:      Supported
3652 W:      http://www.broadcom.com
3653 F:      drivers/infiniband/hw/bnxt_re/
3654 F:      include/uapi/rdma/bnxt_re-abi.h
3655
3656 BROADCOM NVRAM DRIVER
3657 M:      Rafał Miłecki <zajec5@gmail.com>
3658 L:      linux-mips@vger.kernel.org
3659 S:      Maintained
3660 F:      drivers/firmware/broadcom/*
3661
3662 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3663 M:      Rafał Miłecki <rafal@milecki.pl>
3664 M:      Florian Fainelli <f.fainelli@gmail.com>
3665 M:      bcm-kernel-feedback-list@broadcom.com
3666 L:      linux-pm@vger.kernel.org
3667 S:      Maintained
3668 T:      git git://github.com/broadcom/stblinux.git
3669 F:      drivers/soc/bcm/bcm-pmb.c
3670 F:      include/dt-bindings/soc/bcm-pmb.h
3671
3672 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3673 M:      Rafał Miłecki <zajec5@gmail.com>
3674 L:      linux-wireless@vger.kernel.org
3675 S:      Maintained
3676 F:      drivers/bcma/
3677 F:      include/linux/bcma/
3678
3679 BROADCOM SPI DRIVER
3680 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3681 M:      bcm-kernel-feedback-list@broadcom.com
3682 S:      Maintained
3683 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3684 F:      drivers/spi/spi-bcm-qspi.*
3685 F:      drivers/spi/spi-brcmstb-qspi.c
3686 F:      drivers/spi/spi-iproc-qspi.c
3687
3688 BROADCOM STB AVS CPUFREQ DRIVER
3689 M:      Markus Mayer <mmayer@broadcom.com>
3690 M:      bcm-kernel-feedback-list@broadcom.com
3691 L:      linux-pm@vger.kernel.org
3692 S:      Maintained
3693 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3694 F:      drivers/cpufreq/brcmstb*
3695
3696 BROADCOM STB AVS TMON DRIVER
3697 M:      Markus Mayer <mmayer@broadcom.com>
3698 M:      bcm-kernel-feedback-list@broadcom.com
3699 L:      linux-pm@vger.kernel.org
3700 S:      Maintained
3701 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3702 F:      drivers/thermal/broadcom/brcmstb*
3703
3704 BROADCOM STB DPFE DRIVER
3705 M:      Markus Mayer <mmayer@broadcom.com>
3706 M:      bcm-kernel-feedback-list@broadcom.com
3707 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3708 S:      Maintained
3709 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3710 F:      drivers/memory/brcmstb_dpfe.c
3711
3712 BROADCOM STB NAND FLASH DRIVER
3713 M:      Brian Norris <computersforpeace@gmail.com>
3714 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3715 L:      linux-mtd@lists.infradead.org
3716 L:      bcm-kernel-feedback-list@broadcom.com
3717 S:      Maintained
3718 F:      drivers/mtd/nand/raw/brcmnand/
3719
3720 BROADCOM SYSTEMPORT ETHERNET DRIVER
3721 M:      Florian Fainelli <f.fainelli@gmail.com>
3722 L:      bcm-kernel-feedback-list@broadcom.com
3723 L:      netdev@vger.kernel.org
3724 S:      Supported
3725 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3726 F:      drivers/net/ethernet/broadcom/unimac.h
3727
3728 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3729 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3730 M:      Prashant Sreedharan <prashant@broadcom.com>
3731 M:      Michael Chan <mchan@broadcom.com>
3732 L:      netdev@vger.kernel.org
3733 S:      Supported
3734 F:      drivers/net/ethernet/broadcom/tg3.*
3735
3736 BROCADE BFA FC SCSI DRIVER
3737 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3738 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3739 L:      linux-scsi@vger.kernel.org
3740 S:      Supported
3741 F:      drivers/scsi/bfa/
3742
3743 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3744 M:      Rasesh Mody <rmody@marvell.com>
3745 M:      Sudarsana Kalluru <skalluru@marvell.com>
3746 M:      GR-Linux-NIC-Dev@marvell.com
3747 L:      netdev@vger.kernel.org
3748 S:      Supported
3749 F:      drivers/net/ethernet/brocade/bna/
3750
3751 BSG (block layer generic sg v4 driver)
3752 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3753 L:      linux-scsi@vger.kernel.org
3754 S:      Supported
3755 F:      block/bsg.c
3756 F:      include/linux/bsg.h
3757 F:      include/uapi/linux/bsg.h
3758
3759 BT87X AUDIO DRIVER
3760 M:      Clemens Ladisch <clemens@ladisch.de>
3761 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3762 S:      Maintained
3763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3764 F:      Documentation/sound/cards/bt87x.rst
3765 F:      sound/pci/bt87x.c
3766
3767 BT8XXGPIO DRIVER
3768 M:      Michael Buesch <m@bues.ch>
3769 S:      Maintained
3770 W:      http://bu3sch.de/btgpio.php
3771 F:      drivers/gpio/gpio-bt8xx.c
3772
3773 BTRFS FILE SYSTEM
3774 M:      Chris Mason <clm@fb.com>
3775 M:      Josef Bacik <josef@toxicpanda.com>
3776 M:      David Sterba <dsterba@suse.com>
3777 L:      linux-btrfs@vger.kernel.org
3778 S:      Maintained
3779 W:      http://btrfs.wiki.kernel.org/
3780 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3782 F:      Documentation/filesystems/btrfs.rst
3783 F:      fs/btrfs/
3784 F:      include/linux/btrfs*
3785 F:      include/uapi/linux/btrfs*
3786
3787 BTTV VIDEO4LINUX DRIVER
3788 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3789 L:      linux-media@vger.kernel.org
3790 S:      Odd fixes
3791 W:      https://linuxtv.org
3792 T:      git git://linuxtv.org/media_tree.git
3793 F:      Documentation/driver-api/media/drivers/bttv*
3794 F:      drivers/media/pci/bt8xx/bttv*
3795
3796 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3797 M:      Chanwoo Choi <cw00.choi@samsung.com>
3798 L:      linux-pm@vger.kernel.org
3799 L:      linux-samsung-soc@vger.kernel.org
3800 S:      Maintained
3801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3802 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3803 F:      drivers/devfreq/exynos-bus.c
3804
3805 BUSLOGIC SCSI DRIVER
3806 M:      Khalid Aziz <khalid@gonehiking.org>
3807 L:      linux-scsi@vger.kernel.org
3808 S:      Maintained
3809 F:      drivers/scsi/BusLogic.*
3810 F:      drivers/scsi/FlashPoint.*
3811
3812 C-MEDIA CMI8788 DRIVER
3813 M:      Clemens Ladisch <clemens@ladisch.de>
3814 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3815 S:      Maintained
3816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3817 F:      sound/pci/oxygen/
3818
3819 C-SKY ARCHITECTURE
3820 M:      Guo Ren <guoren@kernel.org>
3821 L:      linux-csky@vger.kernel.org
3822 S:      Supported
3823 T:      git https://github.com/c-sky/csky-linux.git
3824 F:      Documentation/devicetree/bindings/csky/
3825 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3826 F:      Documentation/devicetree/bindings/timer/csky,*
3827 F:      arch/csky/
3828 F:      drivers/clocksource/timer-gx6605s.c
3829 F:      drivers/clocksource/timer-mp-csky.c
3830 F:      drivers/irqchip/irq-csky-*
3831 N:      csky
3832 K:      csky
3833
3834 CA8210 IEEE-802.15.4 RADIO DRIVER
3835 M:      Harry Morris <h.morris@cascoda.com>
3836 L:      linux-wpan@vger.kernel.org
3837 S:      Maintained
3838 W:      https://github.com/Cascoda/ca8210-linux.git
3839 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3840 F:      drivers/net/ieee802154/ca8210.c
3841
3842 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3843 M:      David Howells <dhowells@redhat.com>
3844 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3845 S:      Supported
3846 F:      Documentation/filesystems/caching/cachefiles.rst
3847 F:      fs/cachefiles/
3848
3849 CADENCE MIPI-CSI2 BRIDGES
3850 M:      Maxime Ripard <mripard@kernel.org>
3851 L:      linux-media@vger.kernel.org
3852 S:      Maintained
3853 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3854 F:      drivers/media/platform/cadence/cdns-csi2*
3855
3856 CADENCE NAND DRIVER
3857 L:      linux-mtd@lists.infradead.org
3858 S:      Orphan
3859 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3860 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3861
3862 CADENCE USB3 DRD IP DRIVER
3863 M:      Peter Chen <peter.chen@kernel.org>
3864 M:      Pawel Laszczak <pawell@cadence.com>
3865 R:      Roger Quadros <rogerq@kernel.org>
3866 R:      Aswath Govindraju <a-govindraju@ti.com>
3867 L:      linux-usb@vger.kernel.org
3868 S:      Maintained
3869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3870 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
3871 F:      drivers/usb/cdns3/
3872 X:      drivers/usb/cdns3/cdnsp*
3873
3874 CADENCE USBSSP DRD IP DRIVER
3875 M:      Pawel Laszczak <pawell@cadence.com>
3876 L:      linux-usb@vger.kernel.org
3877 S:      Maintained
3878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3879 F:      drivers/usb/cdns3/
3880 X:      drivers/usb/cdns3/cdns3*
3881
3882 CADET FM/AM RADIO RECEIVER DRIVER
3883 M:      Hans Verkuil <hverkuil@xs4all.nl>
3884 L:      linux-media@vger.kernel.org
3885 S:      Maintained
3886 W:      https://linuxtv.org
3887 T:      git git://linuxtv.org/media_tree.git
3888 F:      drivers/media/radio/radio-cadet*
3889
3890 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3891 L:      linux-media@vger.kernel.org
3892 S:      Orphan
3893 T:      git git://linuxtv.org/media_tree.git
3894 F:      Documentation/admin-guide/media/cafe_ccic*
3895 F:      drivers/media/platform/marvell-ccic/
3896
3897 CAIF NETWORK LAYER
3898 L:      netdev@vger.kernel.org
3899 S:      Orphan
3900 F:      Documentation/networking/caif/
3901 F:      drivers/net/caif/
3902 F:      include/net/caif/
3903 F:      include/uapi/linux/caif/
3904 F:      net/caif/
3905
3906 CAKE QDISC
3907 M:      Toke Høiland-Jørgensen <toke@toke.dk>
3908 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
3909 S:      Maintained
3910 F:      net/sched/sch_cake.c
3911
3912 CAN NETWORK DRIVERS
3913 M:      Wolfgang Grandegger <wg@grandegger.com>
3914 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3915 L:      linux-can@vger.kernel.org
3916 S:      Maintained
3917 W:      https://github.com/linux-can
3918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3920 F:      Documentation/devicetree/bindings/net/can/
3921 F:      drivers/net/can/
3922 F:      include/linux/can/bittiming.h
3923 F:      include/linux/can/dev.h
3924 F:      include/linux/can/led.h
3925 F:      include/linux/can/length.h
3926 F:      include/linux/can/platform/
3927 F:      include/linux/can/rx-offload.h
3928 F:      include/uapi/linux/can/error.h
3929 F:      include/uapi/linux/can/netlink.h
3930 F:      include/uapi/linux/can/vxcan.h
3931
3932 CAN NETWORK LAYER
3933 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3934 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3935 L:      linux-can@vger.kernel.org
3936 S:      Maintained
3937 W:      https://github.com/linux-can
3938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3940 F:      Documentation/networking/can.rst
3941 F:      include/linux/can/can-ml.h
3942 F:      include/linux/can/core.h
3943 F:      include/linux/can/skb.h
3944 F:      include/net/netns/can.h
3945 F:      include/uapi/linux/can.h
3946 F:      include/uapi/linux/can/bcm.h
3947 F:      include/uapi/linux/can/gw.h
3948 F:      include/uapi/linux/can/isotp.h
3949 F:      include/uapi/linux/can/raw.h
3950 F:      net/can/
3951
3952 CAN-J1939 NETWORK LAYER
3953 M:      Robin van der Gracht <robin@protonic.nl>
3954 M:      Oleksij Rempel <o.rempel@pengutronix.de>
3955 R:      kernel@pengutronix.de
3956 L:      linux-can@vger.kernel.org
3957 S:      Maintained
3958 F:      Documentation/networking/j1939.rst
3959 F:      include/uapi/linux/can/j1939.h
3960 F:      net/can/j1939/
3961
3962 CAPABILITIES
3963 M:      Serge Hallyn <serge@hallyn.com>
3964 L:      linux-security-module@vger.kernel.org
3965 S:      Supported
3966 F:      include/linux/capability.h
3967 F:      include/uapi/linux/capability.h
3968 F:      kernel/capability.c
3969 F:      security/commoncap.c
3970
3971 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3972 M:      Kevin Tsai <ktsai@capellamicro.com>
3973 S:      Maintained
3974 F:      drivers/iio/light/cm*
3975
3976 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3977 M:      Christian Lamparter <chunkeey@googlemail.com>
3978 L:      linux-wireless@vger.kernel.org
3979 S:      Maintained
3980 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
3981 F:      drivers/net/wireless/ath/carl9170/
3982
3983 CAVIUM I2C DRIVER
3984 M:      Robert Richter <rric@kernel.org>
3985 S:      Odd Fixes
3986 W:      http://www.marvell.com
3987 F:      drivers/i2c/busses/i2c-octeon*
3988 F:      drivers/i2c/busses/i2c-thunderx*
3989
3990 CAVIUM LIQUIDIO NETWORK DRIVER
3991 M:      Derek Chickles <dchickles@marvell.com>
3992 M:      Satanand Burla <sburla@marvell.com>
3993 M:      Felix Manlunas <fmanlunas@marvell.com>
3994 L:      netdev@vger.kernel.org
3995 S:      Supported
3996 W:      http://www.marvell.com
3997 F:      drivers/net/ethernet/cavium/liquidio/
3998
3999 CAVIUM MMC DRIVER
4000 M:      Robert Richter <rric@kernel.org>
4001 S:      Odd Fixes
4002 W:      http://www.marvell.com
4003 F:      drivers/mmc/host/cavium*
4004
4005 CAVIUM OCTEON-TX CRYPTO DRIVER
4006 M:      George Cherian <gcherian@marvell.com>
4007 L:      linux-crypto@vger.kernel.org
4008 S:      Supported
4009 W:      http://www.marvell.com
4010 F:      drivers/crypto/cavium/cpt/
4011
4012 CAVIUM THUNDERX2 ARM64 SOC
4013 M:      Robert Richter <rric@kernel.org>
4014 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4015 S:      Odd Fixes
4016 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4017 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4018
4019 CC2520 IEEE-802.15.4 RADIO DRIVER
4020 M:      Varka Bhadram <varkabhadram@gmail.com>
4021 L:      linux-wpan@vger.kernel.org
4022 S:      Maintained
4023 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4024 F:      drivers/net/ieee802154/cc2520.c
4025 F:      include/linux/spi/cc2520.h
4026
4027 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4028 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4029 L:      linux-crypto@vger.kernel.org
4030 S:      Supported
4031 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4032 F:      drivers/crypto/ccree/
4033
4034 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4035 M:      Hadar Gat <hadar.gat@arm.com>
4036 L:      linux-crypto@vger.kernel.org
4037 S:      Supported
4038 F:      drivers/char/hw_random/cctrng.c
4039 F:      drivers/char/hw_random/cctrng.h
4040 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4041 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4042
4043 CEC FRAMEWORK
4044 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4045 L:      linux-media@vger.kernel.org
4046 S:      Supported
4047 W:      http://linuxtv.org
4048 T:      git git://linuxtv.org/media_tree.git
4049 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4050 F:      Documentation/devicetree/bindings/media/cec.txt
4051 F:      Documentation/driver-api/media/cec-core.rst
4052 F:      Documentation/userspace-api/media/cec
4053 F:      drivers/media/cec/
4054 F:      drivers/media/rc/keymaps/rc-cec.c
4055 F:      include/media/cec-notifier.h
4056 F:      include/media/cec.h
4057 F:      include/uapi/linux/cec-funcs.h
4058 F:      include/uapi/linux/cec.h
4059
4060 CEC GPIO DRIVER
4061 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4062 L:      linux-media@vger.kernel.org
4063 S:      Supported
4064 W:      http://linuxtv.org
4065 T:      git git://linuxtv.org/media_tree.git
4066 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4067 F:      drivers/media/cec/platform/cec-gpio/
4068
4069 CELL BROADBAND ENGINE ARCHITECTURE
4070 M:      Arnd Bergmann <arnd@arndb.de>
4071 L:      linuxppc-dev@lists.ozlabs.org
4072 S:      Supported
4073 W:      http://www.ibm.com/developerworks/power/cell/
4074 F:      arch/powerpc/include/asm/cell*.h
4075 F:      arch/powerpc/include/asm/spu*.h
4076 F:      arch/powerpc/include/uapi/asm/spu*.h
4077 F:      arch/powerpc/platforms/cell/
4078
4079 CELLWISE CW2015 BATTERY DRIVER
4080 M:      Tobias Schrammm <t.schramm@manjaro.org>
4081 S:      Maintained
4082 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4083 F:      drivers/power/supply/cw2015_battery.c
4084
4085 CEPH COMMON CODE (LIBCEPH)
4086 M:      Ilya Dryomov <idryomov@gmail.com>
4087 M:      Jeff Layton <jlayton@kernel.org>
4088 L:      ceph-devel@vger.kernel.org
4089 S:      Supported
4090 W:      http://ceph.com/
4091 T:      git git://github.com/ceph/ceph-client.git
4092 F:      include/linux/ceph/
4093 F:      include/linux/crush/
4094 F:      net/ceph/
4095
4096 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4097 M:      Jeff Layton <jlayton@kernel.org>
4098 M:      Ilya Dryomov <idryomov@gmail.com>
4099 L:      ceph-devel@vger.kernel.org
4100 S:      Supported
4101 W:      http://ceph.com/
4102 T:      git git://github.com/ceph/ceph-client.git
4103 F:      Documentation/filesystems/ceph.rst
4104 F:      fs/ceph/
4105
4106 CERTIFICATE HANDLING
4107 M:      David Howells <dhowells@redhat.com>
4108 M:      David Woodhouse <dwmw2@infradead.org>
4109 L:      keyrings@vger.kernel.org
4110 S:      Maintained
4111 F:      Documentation/admin-guide/module-signing.rst
4112 F:      certs/
4113 F:      scripts/extract-cert.c
4114 F:      scripts/sign-file.c
4115
4116 CFAG12864B LCD DRIVER
4117 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4118 S:      Maintained
4119 F:      drivers/auxdisplay/cfag12864b.c
4120 F:      include/linux/cfag12864b.h
4121
4122 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4123 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4124 S:      Maintained
4125 F:      drivers/auxdisplay/cfag12864bfb.c
4126 F:      include/linux/cfag12864b.h
4127
4128 CHAR and MISC DRIVERS
4129 M:      Arnd Bergmann <arnd@arndb.de>
4130 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4131 S:      Supported
4132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4133 F:      drivers/char/
4134 F:      drivers/misc/
4135 F:      include/linux/miscdevice.h
4136 X:      drivers/char/agp/
4137 X:      drivers/char/hw_random/
4138 X:      drivers/char/ipmi/
4139 X:      drivers/char/random.c
4140 X:      drivers/char/tpm/
4141
4142 CHECKPATCH
4143 M:      Andy Whitcroft <apw@canonical.com>
4144 M:      Joe Perches <joe@perches.com>
4145 S:      Maintained
4146 F:      scripts/checkpatch.pl
4147
4148 CHINESE DOCUMENTATION
4149 M:      Harry Wei <harryxiyou@gmail.com>
4150 M:      Alex Shi <alex.shi@linux.alibaba.com>
4151 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
4152 S:      Maintained
4153 F:      Documentation/translations/zh_CN/
4154
4155 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4156 M:      Peter Chen <peter.chen@kernel.org>
4157 L:      linux-usb@vger.kernel.org
4158 S:      Maintained
4159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4160 F:      drivers/usb/chipidea/
4161
4162 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4163 M:      Hans de Goede <hdegoede@redhat.com>
4164 L:      linux-input@vger.kernel.org
4165 S:      Maintained
4166 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4167 F:      drivers/input/touchscreen/chipone_icn8318.c
4168
4169 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4170 M:      Hans de Goede <hdegoede@redhat.com>
4171 L:      linux-input@vger.kernel.org
4172 S:      Maintained
4173 F:      drivers/input/touchscreen/chipone_icn8505.c
4174
4175 CHROME HARDWARE PLATFORM SUPPORT
4176 M:      Benson Leung <bleung@chromium.org>
4177 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4178 S:      Maintained
4179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4180 F:      drivers/platform/chrome/
4181
4182 CHROMEOS EC CODEC DRIVER
4183 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4184 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4185 R:      Guenter Roeck <groeck@chromium.org>
4186 S:      Maintained
4187 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4188 F:      sound/soc/codecs/cros_ec_codec.*
4189
4190 CHROMEOS EC SUBDRIVERS
4191 M:      Benson Leung <bleung@chromium.org>
4192 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4193 R:      Guenter Roeck <groeck@chromium.org>
4194 S:      Maintained
4195 F:      drivers/power/supply/cros_usbpd-charger.c
4196 N:      cros_ec
4197 N:      cros-ec
4198
4199 CHRONTEL CH7322 CEC DRIVER
4200 M:      Jeff Chase <jnchase@google.com>
4201 L:      linux-media@vger.kernel.org
4202 S:      Maintained
4203 T:      git git://linuxtv.org/media_tree.git
4204 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4205 F:      drivers/media/cec/i2c/ch7322.c
4206
4207 CIRRUS LOGIC AUDIO CODEC DRIVERS
4208 M:      James Schulman <james.schulman@cirrus.com>
4209 M:      David Rhodes <david.rhodes@cirrus.com>
4210 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4211 L:      patches@opensource.cirrus.com
4212 S:      Maintained
4213 F:      sound/soc/codecs/cs*
4214
4215 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4216 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4217 L:      netdev@vger.kernel.org
4218 S:      Maintained
4219 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4220
4221 CIRRUS LOGIC LOCHNAGAR DRIVER
4222 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4223 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4224 L:      patches@opensource.cirrus.com
4225 S:      Supported
4226 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4227 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4228 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4229 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4230 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4231 F:      Documentation/hwmon/lochnagar.rst
4232 F:      drivers/clk/clk-lochnagar.c
4233 F:      drivers/hwmon/lochnagar-hwmon.c
4234 F:      drivers/mfd/lochnagar-i2c.c
4235 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4236 F:      drivers/regulator/lochnagar-regulator.c
4237 F:      include/dt-bindings/clk/lochnagar.h
4238 F:      include/dt-bindings/pinctrl/lochnagar.h
4239 F:      include/linux/mfd/lochnagar*
4240 F:      sound/soc/codecs/lochnagar-sc.c
4241
4242 CIRRUS LOGIC MADERA CODEC DRIVERS
4243 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4244 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4245 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4246 L:      patches@opensource.cirrus.com
4247 S:      Supported
4248 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4249 T:      git https://github.com/CirrusLogic/linux-drivers.git
4250 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4251 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4252 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4253 F:      drivers/gpio/gpio-madera*
4254 F:      drivers/irqchip/irq-madera*
4255 F:      drivers/mfd/cs47l*
4256 F:      drivers/mfd/madera*
4257 F:      drivers/pinctrl/cirrus/*
4258 F:      include/dt-bindings/sound/madera*
4259 F:      include/linux/irqchip/irq-madera*
4260 F:      include/linux/mfd/madera/*
4261 F:      include/sound/madera*
4262 F:      sound/soc/codecs/cs47l*
4263 F:      sound/soc/codecs/madera*
4264
4265 CISCO FCOE HBA DRIVER
4266 M:      Satish Kharat <satishkh@cisco.com>
4267 M:      Sesidhar Baddela <sebaddel@cisco.com>
4268 M:      Karan Tilak Kumar <kartilak@cisco.com>
4269 L:      linux-scsi@vger.kernel.org
4270 S:      Supported
4271 F:      drivers/scsi/fnic/
4272
4273 CISCO SCSI HBA DRIVER
4274 M:      Karan Tilak Kumar <kartilak@cisco.com>
4275 M:      Sesidhar Baddela <sebaddel@cisco.com>
4276 L:      linux-scsi@vger.kernel.org
4277 S:      Supported
4278 F:      drivers/scsi/snic/
4279
4280 CISCO VIC ETHERNET NIC DRIVER
4281 M:      Christian Benvenuti <benve@cisco.com>
4282 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4283 S:      Supported
4284 F:      drivers/net/ethernet/cisco/enic/
4285
4286 CISCO VIC LOW LATENCY NIC DRIVER
4287 M:      Christian Benvenuti <benve@cisco.com>
4288 M:      Nelson Escobar <neescoba@cisco.com>
4289 S:      Supported
4290 F:      drivers/infiniband/hw/usnic/
4291
4292 CLANG-FORMAT FILE
4293 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4294 S:      Maintained
4295 F:      .clang-format
4296
4297 CLANG/LLVM BUILD SUPPORT
4298 M:      Nathan Chancellor <nathan@kernel.org>
4299 M:      Nick Desaulniers <ndesaulniers@google.com>
4300 L:      clang-built-linux@googlegroups.com
4301 S:      Supported
4302 W:      https://clangbuiltlinux.github.io/
4303 B:      https://github.com/ClangBuiltLinux/linux/issues
4304 C:      irc://chat.freenode.net/clangbuiltlinux
4305 F:      Documentation/kbuild/llvm.rst
4306 F:      include/linux/compiler-clang.h
4307 F:      scripts/clang-tools/
4308 F:      scripts/clang-version.sh
4309 F:      scripts/lld-version.sh
4310 K:      \b(?i:clang|llvm)\b
4311
4312 CLEANCACHE API
4313 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4314 L:      linux-kernel@vger.kernel.org
4315 S:      Maintained
4316 F:      include/linux/cleancache.h
4317 F:      mm/cleancache.c
4318
4319 CLK API
4320 M:      Russell King <linux@armlinux.org.uk>
4321 L:      linux-clk@vger.kernel.org
4322 S:      Maintained
4323 F:      include/linux/clk.h
4324
4325 CLOCKSOURCE, CLOCKEVENT DRIVERS
4326 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4327 M:      Thomas Gleixner <tglx@linutronix.de>
4328 L:      linux-kernel@vger.kernel.org
4329 S:      Supported
4330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4331 F:      Documentation/devicetree/bindings/timer/
4332 F:      drivers/clocksource/
4333
4334 CMPC ACPI DRIVER
4335 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4336 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4337 L:      platform-driver-x86@vger.kernel.org
4338 S:      Supported
4339 F:      drivers/platform/x86/classmate-laptop.c
4340
4341 COBALT MEDIA DRIVER
4342 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4343 L:      linux-media@vger.kernel.org
4344 S:      Supported
4345 W:      https://linuxtv.org
4346 T:      git git://linuxtv.org/media_tree.git
4347 F:      drivers/media/pci/cobalt/
4348
4349 COCCINELLE/Semantic Patches (SmPL)
4350 M:      Julia Lawall <Julia.Lawall@inria.fr>
4351 M:      Gilles Muller <Gilles.Muller@inria.fr>
4352 M:      Nicolas Palix <nicolas.palix@imag.fr>
4353 M:      Michal Marek <michal.lkml@markovi.net>
4354 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4355 S:      Supported
4356 W:      http://coccinelle.lip6.fr/
4357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4358 F:      Documentation/dev-tools/coccinelle.rst
4359 F:      scripts/coccicheck
4360 F:      scripts/coccinelle/
4361
4362 CODA FILE SYSTEM
4363 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4364 M:      coda@cs.cmu.edu
4365 L:      codalist@coda.cs.cmu.edu
4366 S:      Maintained
4367 W:      http://www.coda.cs.cmu.edu/
4368 F:      Documentation/filesystems/coda.rst
4369 F:      fs/coda/
4370 F:      include/linux/coda*.h
4371 F:      include/uapi/linux/coda*.h
4372
4373 CODA V4L2 MEM2MEM DRIVER
4374 M:      Philipp Zabel <p.zabel@pengutronix.de>
4375 L:      linux-media@vger.kernel.org
4376 S:      Maintained
4377 F:      Documentation/devicetree/bindings/media/coda.yaml
4378 F:      drivers/media/platform/coda/
4379
4380 CODE OF CONDUCT
4381 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4382 S:      Supported
4383 F:      Documentation/process/code-of-conduct-interpretation.rst
4384 F:      Documentation/process/code-of-conduct.rst
4385
4386 COMMON CLK FRAMEWORK
4387 M:      Michael Turquette <mturquette@baylibre.com>
4388 M:      Stephen Boyd <sboyd@kernel.org>
4389 L:      linux-clk@vger.kernel.org
4390 S:      Maintained
4391 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4393 F:      Documentation/devicetree/bindings/clock/
4394 F:      drivers/clk/
4395 F:      include/linux/clk-pr*
4396 F:      include/linux/clk/
4397 F:      include/linux/of_clk.h
4398 X:      drivers/clk/clkdev.c
4399
4400 COMMON INTERNET FILE SYSTEM (CIFS)
4401 M:      Steve French <sfrench@samba.org>
4402 L:      linux-cifs@vger.kernel.org
4403 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4404 S:      Supported
4405 W:      http://linux-cifs.samba.org/
4406 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4407 F:      Documentation/admin-guide/cifs/
4408 F:      fs/cifs/
4409
4410 COMPACTPCI HOTPLUG CORE
4411 M:      Scott Murray <scott@spiteful.org>
4412 L:      linux-pci@vger.kernel.org
4413 S:      Maintained
4414 F:      drivers/pci/hotplug/cpci_hotplug*
4415
4416 COMPACTPCI HOTPLUG GENERIC DRIVER
4417 M:      Scott Murray <scott@spiteful.org>
4418 L:      linux-pci@vger.kernel.org
4419 S:      Maintained
4420 F:      drivers/pci/hotplug/cpcihp_generic.c
4421
4422 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4423 M:      Scott Murray <scott@spiteful.org>
4424 L:      linux-pci@vger.kernel.org
4425 S:      Maintained
4426 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4427
4428 COMPAL LAPTOP SUPPORT
4429 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4430 L:      platform-driver-x86@vger.kernel.org
4431 S:      Maintained
4432 F:      drivers/platform/x86/compal-laptop.c
4433
4434 COMPILER ATTRIBUTES
4435 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4436 S:      Maintained
4437 F:      include/linux/compiler_attributes.h
4438
4439 CONEXANT ACCESSRUNNER USB DRIVER
4440 L:      accessrunner-general@lists.sourceforge.net
4441 S:      Orphan
4442 W:      http://accessrunner.sourceforge.net/
4443 F:      drivers/usb/atm/cxacru.c
4444
4445 CONFIGFS
4446 M:      Joel Becker <jlbec@evilplan.org>
4447 M:      Christoph Hellwig <hch@lst.de>
4448 S:      Supported
4449 T:      git git://git.infradead.org/users/hch/configfs.git
4450 F:      fs/configfs/
4451 F:      include/linux/configfs.h
4452 F:      samples/configfs/
4453
4454 CONSOLE SUBSYSTEM
4455 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4456 S:      Supported
4457 F:      drivers/video/console/
4458 F:      include/linux/console*
4459
4460 CONTROL GROUP (CGROUP)
4461 M:      Tejun Heo <tj@kernel.org>
4462 M:      Zefan Li <lizefan.x@bytedance.com>
4463 M:      Johannes Weiner <hannes@cmpxchg.org>
4464 L:      cgroups@vger.kernel.org
4465 S:      Maintained
4466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4467 F:      Documentation/admin-guide/cgroup-v1/
4468 F:      Documentation/admin-guide/cgroup-v2.rst
4469 F:      include/linux/cgroup*
4470 F:      kernel/cgroup/
4471
4472 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4473 M:      Tejun Heo <tj@kernel.org>
4474 M:      Jens Axboe <axboe@kernel.dk>
4475 L:      cgroups@vger.kernel.org
4476 L:      linux-block@vger.kernel.org
4477 T:      git git://git.kernel.dk/linux-block
4478 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4479 F:      block/bfq-cgroup.c
4480 F:      block/blk-cgroup.c
4481 F:      block/blk-iolatency.c
4482 F:      block/blk-throttle.c
4483 F:      include/linux/blk-cgroup.h
4484
4485 CONTROL GROUP - CPUSET
4486 M:      Zefan Li <lizefan.x@bytedance.com>
4487 L:      cgroups@vger.kernel.org
4488 S:      Maintained
4489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4490 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4491 F:      include/linux/cpuset.h
4492 F:      kernel/cgroup/cpuset.c
4493
4494 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4495 M:      Johannes Weiner <hannes@cmpxchg.org>
4496 M:      Michal Hocko <mhocko@kernel.org>
4497 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4498 L:      cgroups@vger.kernel.org
4499 L:      linux-mm@kvack.org
4500 S:      Maintained
4501 F:      mm/memcontrol.c
4502 F:      mm/swap_cgroup.c
4503
4504 CORETEMP HARDWARE MONITORING DRIVER
4505 M:      Fenghua Yu <fenghua.yu@intel.com>
4506 L:      linux-hwmon@vger.kernel.org
4507 S:      Maintained
4508 F:      Documentation/hwmon/coretemp.rst
4509 F:      drivers/hwmon/coretemp.c
4510
4511 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4512 M:      Marius Zachmann <mail@mariuszachmann.de>
4513 L:      linux-hwmon@vger.kernel.org
4514 S:      Maintained
4515 F:      drivers/hwmon/corsair-cpro.c
4516
4517 CORSAIR-PSU HARDWARE MONITOR DRIVER
4518 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4519 L:      linux-hwmon@vger.kernel.org
4520 S:      Maintained
4521 F:      Documentation/hwmon/corsair-psu.rst
4522 F:      drivers/hwmon/corsair-psu.c
4523
4524 COSA/SRP SYNC SERIAL DRIVER
4525 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4526 S:      Maintained
4527 W:      http://www.fi.muni.cz/~kas/cosa/
4528 F:      drivers/net/wan/cosa*
4529
4530 COUNTER SUBSYSTEM
4531 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4532 L:      linux-iio@vger.kernel.org
4533 S:      Maintained
4534 F:      Documentation/ABI/testing/sysfs-bus-counter*
4535 F:      Documentation/driver-api/generic-counter.rst
4536 F:      drivers/counter/
4537 F:      include/linux/counter.h
4538 F:      include/linux/counter_enum.h
4539
4540 CPMAC ETHERNET DRIVER
4541 M:      Florian Fainelli <f.fainelli@gmail.com>
4542 L:      netdev@vger.kernel.org
4543 S:      Maintained
4544 F:      drivers/net/ethernet/ti/cpmac.c
4545
4546 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4547 M:      Viresh Kumar <viresh.kumar@linaro.org>
4548 M:      Sudeep Holla <sudeep.holla@arm.com>
4549 L:      linux-pm@vger.kernel.org
4550 S:      Maintained
4551 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4552 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4553
4554 CPU FREQUENCY SCALING FRAMEWORK
4555 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4556 M:      Viresh Kumar <viresh.kumar@linaro.org>
4557 L:      linux-pm@vger.kernel.org
4558 S:      Maintained
4559 B:      https://bugzilla.kernel.org
4560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4562 F:      Documentation/admin-guide/pm/cpufreq.rst
4563 F:      Documentation/admin-guide/pm/intel_pstate.rst
4564 F:      Documentation/cpu-freq/
4565 F:      Documentation/devicetree/bindings/cpufreq/
4566 F:      drivers/cpufreq/
4567 F:      include/linux/cpufreq.h
4568 F:      include/linux/sched/cpufreq.h
4569 F:      kernel/sched/cpufreq*.c
4570 F:      tools/testing/selftests/cpufreq/
4571
4572 CPU IDLE TIME MANAGEMENT FRAMEWORK
4573 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4574 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4575 L:      linux-pm@vger.kernel.org
4576 S:      Maintained
4577 B:      https://bugzilla.kernel.org
4578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4579 F:      Documentation/admin-guide/pm/cpuidle.rst
4580 F:      Documentation/driver-api/pm/cpuidle.rst
4581 F:      drivers/cpuidle/
4582 F:      include/linux/cpuidle.h
4583
4584 CPU POWER MONITORING SUBSYSTEM
4585 M:      Thomas Renninger <trenn@suse.com>
4586 M:      Shuah Khan <shuah@kernel.org>
4587 M:      Shuah Khan <skhan@linuxfoundation.org>
4588 L:      linux-pm@vger.kernel.org
4589 S:      Maintained
4590 F:      tools/power/cpupower/
4591
4592 CPUID/MSR DRIVER
4593 M:      "H. Peter Anvin" <hpa@zytor.com>
4594 S:      Maintained
4595 F:      arch/x86/kernel/cpuid.c
4596 F:      arch/x86/kernel/msr.c
4597
4598 CPUIDLE DRIVER - ARM BIG LITTLE
4599 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4600 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4601 L:      linux-pm@vger.kernel.org
4602 L:      linux-arm-kernel@lists.infradead.org
4603 S:      Maintained
4604 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4605 F:      drivers/cpuidle/cpuidle-big_little.c
4606
4607 CPUIDLE DRIVER - ARM EXYNOS
4608 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4609 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4610 M:      Kukjin Kim <kgene@kernel.org>
4611 L:      linux-pm@vger.kernel.org
4612 L:      linux-samsung-soc@vger.kernel.org
4613 S:      Supported
4614 F:      arch/arm/mach-exynos/pm.c
4615 F:      drivers/cpuidle/cpuidle-exynos.c
4616 F:      include/linux/platform_data/cpuidle-exynos.h
4617
4618 CPUIDLE DRIVER - ARM PSCI
4619 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4620 M:      Sudeep Holla <sudeep.holla@arm.com>
4621 L:      linux-pm@vger.kernel.org
4622 L:      linux-arm-kernel@lists.infradead.org
4623 S:      Supported
4624 F:      drivers/cpuidle/cpuidle-psci.c
4625
4626 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4627 M:      Ulf Hansson <ulf.hansson@linaro.org>
4628 L:      linux-pm@vger.kernel.org
4629 L:      linux-arm-kernel@lists.infradead.org
4630 S:      Supported
4631 F:      drivers/cpuidle/cpuidle-psci.h
4632 F:      drivers/cpuidle/cpuidle-psci-domain.c
4633
4634 CRAMFS FILESYSTEM
4635 M:      Nicolas Pitre <nico@fluxnic.net>
4636 S:      Maintained
4637 F:      Documentation/filesystems/cramfs.rst
4638 F:      fs/cramfs/
4639
4640 CREATIVE SB0540
4641 M:      Bastien Nocera <hadess@hadess.net>
4642 L:      linux-input@vger.kernel.org
4643 S:      Maintained
4644 F:      drivers/hid/hid-creative-sb0540.c
4645
4646 CRYPTO API
4647 M:      Herbert Xu <herbert@gondor.apana.org.au>
4648 M:      "David S. Miller" <davem@davemloft.net>
4649 L:      linux-crypto@vger.kernel.org
4650 S:      Maintained
4651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4653 F:      Documentation/crypto/
4654 F:      Documentation/devicetree/bindings/crypto/
4655 F:      arch/*/crypto/
4656 F:      crypto/
4657 F:      drivers/crypto/
4658 F:      include/crypto/
4659 F:      include/linux/crypto*
4660 F:      lib/crypto/
4661
4662 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4663 M:      Neil Horman <nhorman@tuxdriver.com>
4664 L:      linux-crypto@vger.kernel.org
4665 S:      Maintained
4666 F:      crypto/ansi_cprng.c
4667 F:      crypto/rng.c
4668
4669 CS3308 MEDIA DRIVER
4670 M:      Hans Verkuil <hverkuil@xs4all.nl>
4671 L:      linux-media@vger.kernel.org
4672 S:      Odd Fixes
4673 W:      http://linuxtv.org
4674 T:      git git://linuxtv.org/media_tree.git
4675 F:      drivers/media/i2c/cs3308.c
4676
4677 CS5535 Audio ALSA driver
4678 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4679 S:      Maintained
4680 F:      sound/pci/cs5535audio/
4681
4682 CSI DRIVERS FOR ALLWINNER V3s
4683 M:      Yong Deng <yong.deng@magewell.com>
4684 L:      linux-media@vger.kernel.org
4685 S:      Maintained
4686 T:      git git://linuxtv.org/media_tree.git
4687 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4688 F:      drivers/media/platform/sunxi/sun6i-csi/
4689
4690 CW1200 WLAN driver
4691 M:      Solomon Peachy <pizza@shaftnet.org>
4692 S:      Maintained
4693 F:      drivers/net/wireless/st/cw1200/
4694
4695 CX18 VIDEO4LINUX DRIVER
4696 M:      Andy Walls <awalls@md.metrocast.net>
4697 L:      linux-media@vger.kernel.org
4698 S:      Maintained
4699 W:      https://linuxtv.org
4700 T:      git git://linuxtv.org/media_tree.git
4701 F:      drivers/media/pci/cx18/
4702 F:      include/uapi/linux/ivtv*
4703
4704 CX2341X MPEG ENCODER HELPER MODULE
4705 M:      Hans Verkuil <hverkuil@xs4all.nl>
4706 L:      linux-media@vger.kernel.org
4707 S:      Maintained
4708 W:      https://linuxtv.org
4709 T:      git git://linuxtv.org/media_tree.git
4710 F:      drivers/media/common/cx2341x*
4711 F:      include/media/drv-intf/cx2341x.h
4712
4713 CX24120 MEDIA DRIVER
4714 M:      Jemma Denson <jdenson@gmail.com>
4715 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4716 L:      linux-media@vger.kernel.org
4717 S:      Maintained
4718 W:      https://linuxtv.org
4719 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4720 F:      drivers/media/dvb-frontends/cx24120*
4721
4722 CX88 VIDEO4LINUX DRIVER
4723 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4724 L:      linux-media@vger.kernel.org
4725 S:      Odd fixes
4726 W:      https://linuxtv.org
4727 T:      git git://linuxtv.org/media_tree.git
4728 F:      Documentation/driver-api/media/drivers/cx88*
4729 F:      drivers/media/pci/cx88/
4730
4731 CXD2820R MEDIA DRIVER
4732 M:      Antti Palosaari <crope@iki.fi>
4733 L:      linux-media@vger.kernel.org
4734 S:      Maintained
4735 W:      https://linuxtv.org
4736 W:      http://palosaari.fi/linux/
4737 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4738 T:      git git://linuxtv.org/anttip/media_tree.git
4739 F:      drivers/media/dvb-frontends/cxd2820r*
4740
4741 CXGB3 ETHERNET DRIVER (CXGB3)
4742 M:      Raju Rangoju <rajur@chelsio.com>
4743 L:      netdev@vger.kernel.org
4744 S:      Supported
4745 W:      http://www.chelsio.com
4746 F:      drivers/net/ethernet/chelsio/cxgb3/
4747
4748 CXGB3 ISCSI DRIVER (CXGB3I)
4749 M:      Karen Xie <kxie@chelsio.com>
4750 L:      linux-scsi@vger.kernel.org
4751 S:      Supported
4752 W:      http://www.chelsio.com
4753 F:      drivers/scsi/cxgbi/cxgb3i
4754
4755 CXGB4 CRYPTO DRIVER (chcr)
4756 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4757 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4758 M:      Rohit Maheshwari <rohitm@chelsio.com>
4759 L:      linux-crypto@vger.kernel.org
4760 S:      Supported
4761 W:      http://www.chelsio.com
4762 F:      drivers/crypto/chelsio
4763
4764 CXGB4 INLINE CRYPTO DRIVER
4765 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4766 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4767 M:      Rohit Maheshwari <rohitm@chelsio.com>
4768 L:      netdev@vger.kernel.org
4769 S:      Supported
4770 W:      http://www.chelsio.com
4771 F:      drivers/net/ethernet/chelsio/inline_crypto/
4772
4773 CXGB4 ETHERNET DRIVER (CXGB4)
4774 M:      Raju Rangoju <rajur@chelsio.com>
4775 L:      netdev@vger.kernel.org
4776 S:      Supported
4777 W:      http://www.chelsio.com
4778 F:      drivers/net/ethernet/chelsio/cxgb4/
4779
4780 CXGB4 ISCSI DRIVER (CXGB4I)
4781 M:      Karen Xie <kxie@chelsio.com>
4782 L:      linux-scsi@vger.kernel.org
4783 S:      Supported
4784 W:      http://www.chelsio.com
4785 F:      drivers/scsi/cxgbi/cxgb4i
4786
4787 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4788 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4789 L:      linux-rdma@vger.kernel.org
4790 S:      Supported
4791 W:      http://www.openfabrics.org
4792 F:      drivers/infiniband/hw/cxgb4/
4793 F:      include/uapi/rdma/cxgb4-abi.h
4794
4795 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4796 M:      Raju Rangoju <rajur@chelsio.com>
4797 L:      netdev@vger.kernel.org
4798 S:      Supported
4799 W:      http://www.chelsio.com
4800 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4801
4802 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4803 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4804 M:      Andrew Donnellan <ajd@linux.ibm.com>
4805 L:      linuxppc-dev@lists.ozlabs.org
4806 S:      Supported
4807 F:      Documentation/ABI/testing/sysfs-class-cxl
4808 F:      Documentation/powerpc/cxl.rst
4809 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4810 F:      drivers/misc/cxl/
4811 F:      include/misc/cxl*
4812 F:      include/uapi/misc/cxl.h
4813
4814 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4815 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4816 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4817 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4818 L:      linux-scsi@vger.kernel.org
4819 S:      Supported
4820 F:      Documentation/powerpc/cxlflash.rst
4821 F:      drivers/scsi/cxlflash/
4822 F:      include/uapi/scsi/cxlflash_ioctl.h
4823
4824 CYBERPRO FB DRIVER
4825 M:      Russell King <linux@armlinux.org.uk>
4826 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4827 S:      Maintained
4828 W:      http://www.armlinux.org.uk/
4829 F:      drivers/video/fbdev/cyber2000fb.*
4830
4831 CYCLADES ASYNC MUX DRIVER
4832 S:      Orphan
4833 W:      http://www.cyclades.com/
4834 F:      drivers/tty/cyclades.c
4835 F:      include/linux/cyclades.h
4836 F:      include/uapi/linux/cyclades.h
4837
4838 CYCLADES PC300 DRIVER
4839 S:      Orphan
4840 W:      http://www.cyclades.com/
4841 F:      drivers/net/wan/pc300*
4842
4843 CYPRESS_FIRMWARE MEDIA DRIVER
4844 M:      Antti Palosaari <crope@iki.fi>
4845 L:      linux-media@vger.kernel.org
4846 S:      Maintained
4847 W:      https://linuxtv.org
4848 W:      http://palosaari.fi/linux/
4849 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4850 T:      git git://linuxtv.org/anttip/media_tree.git
4851 F:      drivers/media/common/cypress_firmware*
4852
4853 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
4854 M:      Linus Walleij <linus.walleij@linaro.org>
4855 L:      linux-input@vger.kernel.org
4856 S:      Maintained
4857 F:      drivers/input/touchscreen/cy8ctma140.c
4858
4859 CYTTSP TOUCHSCREEN DRIVER
4860 M:      Ferruh Yigit <fery@cypress.com>
4861 L:      linux-input@vger.kernel.org
4862 S:      Supported
4863 F:      drivers/input/touchscreen/cyttsp*
4864 F:      include/linux/input/cyttsp.h
4865
4866 D-LINK DIR-685 TOUCHKEYS DRIVER
4867 M:      Linus Walleij <linus.walleij@linaro.org>
4868 L:      linux-input@vger.kernel.org
4869 S:      Supported
4870 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4871
4872 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4873 M:      Joshua Kinard <kumba@gentoo.org>
4874 S:      Maintained
4875 F:      drivers/rtc/rtc-ds1685.c
4876 F:      include/linux/rtc/ds1685.h
4877
4878 DAMA SLAVE for AX.25
4879 M:      Joerg Reuter <jreuter@yaina.de>
4880 L:      linux-hams@vger.kernel.org
4881 S:      Maintained
4882 W:      http://yaina.de/jreuter/
4883 W:      http://www.qsl.net/dl1bke/
4884 F:      net/ax25/af_ax25.c
4885 F:      net/ax25/ax25_dev.c
4886 F:      net/ax25/ax25_ds_*
4887 F:      net/ax25/ax25_in.c
4888 F:      net/ax25/ax25_out.c
4889 F:      net/ax25/ax25_timer.c
4890 F:      net/ax25/sysctl_net_ax25.c
4891
4892 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4893 L:      netdev@vger.kernel.org
4894 S:      Orphan
4895 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
4896 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4897
4898 DC390/AM53C974 SCSI driver
4899 M:      Hannes Reinecke <hare@suse.com>
4900 L:      linux-scsi@vger.kernel.org
4901 S:      Maintained
4902 F:      drivers/scsi/am53c974.c
4903
4904 DC395x SCSI driver
4905 M:      Oliver Neukum <oliver@neukum.org>
4906 M:      Ali Akcaagac <aliakc@web.de>
4907 M:      Jamie Lenehan <lenehan@twibble.org>
4908 L:      dc395x@twibble.org
4909 S:      Maintained
4910 W:      http://twibble.org/dist/dc395x/
4911 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4912 F:      Documentation/scsi/dc395x.rst
4913 F:      drivers/scsi/dc395x.*
4914
4915 DCCP PROTOCOL
4916 L:      dccp@vger.kernel.org
4917 S:      Orphan
4918 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4919 F:      include/linux/dccp.h
4920 F:      include/linux/tfrc.h
4921 F:      include/uapi/linux/dccp.h
4922 F:      net/dccp/
4923
4924 DECnet NETWORK LAYER
4925 L:      linux-decnet-user@lists.sourceforge.net
4926 S:      Orphan
4927 W:      http://linux-decnet.sourceforge.net
4928 F:      Documentation/networking/decnet.rst
4929 F:      net/decnet/
4930
4931 DECSTATION PLATFORM SUPPORT
4932 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
4933 L:      linux-mips@vger.kernel.org
4934 S:      Maintained
4935 W:      http://www.linux-mips.org/wiki/DECstation
4936 F:      arch/mips/dec/
4937 F:      arch/mips/include/asm/dec/
4938 F:      arch/mips/include/asm/mach-dec/
4939
4940 DEFXX FDDI NETWORK DRIVER
4941 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
4942 S:      Maintained
4943 F:      drivers/net/fddi/defxx.*
4944
4945 DEFZA FDDI NETWORK DRIVER
4946 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
4947 S:      Maintained
4948 F:      drivers/net/fddi/defza.*
4949
4950 DEINTERLACE DRIVERS FOR ALLWINNER H3
4951 M:      Jernej Skrabec <jernej.skrabec@siol.net>
4952 L:      linux-media@vger.kernel.org
4953 S:      Maintained
4954 T:      git git://linuxtv.org/media_tree.git
4955 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4956 F:      drivers/media/platform/sunxi/sun8i-di/
4957
4958 DELL LAPTOP DRIVER
4959 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4960 M:      Pali Rohár <pali@kernel.org>
4961 L:      platform-driver-x86@vger.kernel.org
4962 S:      Maintained
4963 F:      drivers/platform/x86/dell/dell-laptop.c
4964
4965 DELL LAPTOP FREEFALL DRIVER
4966 M:      Pali Rohár <pali@kernel.org>
4967 S:      Maintained
4968 F:      drivers/platform/x86/dell/dell-smo8800.c
4969
4970 DELL LAPTOP RBTN DRIVER
4971 M:      Pali Rohár <pali@kernel.org>
4972 S:      Maintained
4973 F:      drivers/platform/x86/dell/dell-rbtn.*
4974
4975 DELL LAPTOP SMM DRIVER
4976 M:      Pali Rohár <pali@kernel.org>
4977 S:      Maintained
4978 F:      drivers/hwmon/dell-smm-hwmon.c
4979 F:      include/uapi/linux/i8k.h
4980
4981 DELL REMOTE BIOS UPDATE DRIVER
4982 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4983 L:      platform-driver-x86@vger.kernel.org
4984 S:      Maintained
4985 F:      drivers/platform/x86/dell/dell_rbu.c
4986
4987 DELL SMBIOS DRIVER
4988 M:      Pali Rohár <pali@kernel.org>
4989 M:      Mario Limonciello <mario.limonciello@dell.com>
4990 L:      platform-driver-x86@vger.kernel.org
4991 S:      Maintained
4992 F:      drivers/platform/x86/dell/dell-smbios.*
4993
4994 DELL SMBIOS SMM DRIVER
4995 M:      Mario Limonciello <mario.limonciello@dell.com>
4996 L:      platform-driver-x86@vger.kernel.org
4997 S:      Maintained
4998 F:      drivers/platform/x86/dell/dell-smbios-smm.c
4999
5000 DELL SMBIOS WMI DRIVER
5001 M:      Mario Limonciello <mario.limonciello@dell.com>
5002 L:      platform-driver-x86@vger.kernel.org
5003 S:      Maintained
5004 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5005 F:      tools/wmi/dell-smbios-example.c
5006
5007 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5008 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5009 L:      platform-driver-x86@vger.kernel.org
5010 S:      Maintained
5011 F:      Documentation/driver-api/dcdbas.rst
5012 F:      drivers/platform/x86/dell/dcdbas.*
5013
5014 DELL WMI DESCRIPTOR DRIVER
5015 M:      Mario Limonciello <mario.limonciello@dell.com>
5016 S:      Maintained
5017 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5018
5019 DELL WMI SYSMAN DRIVER
5020 M:      Divya Bharathi <divya.bharathi@dell.com>
5021 M:      Mario Limonciello <mario.limonciello@dell.com>
5022 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5023 L:      platform-driver-x86@vger.kernel.org
5024 S:      Maintained
5025 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5026 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5027
5028 DELL WMI NOTIFICATIONS DRIVER
5029 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5030 M:      Pali Rohár <pali@kernel.org>
5031 S:      Maintained
5032 F:      drivers/platform/x86/dell/dell-wmi.c
5033
5034 DELTA ST MEDIA DRIVER
5035 M:      Hugues Fruchet <hugues.fruchet@st.com>
5036 L:      linux-media@vger.kernel.org
5037 S:      Supported
5038 W:      https://linuxtv.org
5039 T:      git git://linuxtv.org/media_tree.git
5040 F:      drivers/media/platform/sti/delta
5041
5042 DENALI NAND DRIVER
5043 L:      linux-mtd@lists.infradead.org
5044 S:      Orphan
5045 F:      drivers/mtd/nand/raw/denali*
5046
5047 DESIGNWARE EDMA CORE IP DRIVER
5048 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5049 L:      dmaengine@vger.kernel.org
5050 S:      Maintained
5051 F:      drivers/dma/dw-edma/
5052 F:      include/linux/dma/edma.h
5053
5054 DESIGNWARE USB2 DRD IP DRIVER
5055 M:      Minas Harutyunyan <hminas@synopsys.com>
5056 L:      linux-usb@vger.kernel.org
5057 S:      Maintained
5058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5059 F:      drivers/usb/dwc2/
5060
5061 DESIGNWARE USB3 DRD IP DRIVER
5062 M:      Felipe Balbi <balbi@kernel.org>
5063 L:      linux-usb@vger.kernel.org
5064 S:      Maintained
5065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5066 F:      drivers/usb/dwc3/
5067
5068 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5069 M:      Andreas Klinger <ak@it-klinger.de>
5070 L:      linux-iio@vger.kernel.org
5071 S:      Maintained
5072 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5073 F:      drivers/iio/proximity/srf*.c
5074
5075 DEVICE COREDUMP (DEV_COREDUMP)
5076 M:      Johannes Berg <johannes@sipsolutions.net>
5077 L:      linux-kernel@vger.kernel.org
5078 S:      Maintained
5079 F:      drivers/base/devcoredump.c
5080 F:      include/linux/devcoredump.h
5081
5082 DEVICE DEPENDENCY HELPER SCRIPT
5083 M:      Saravana Kannan <saravanak@google.com>
5084 L:      linux-kernel@vger.kernel.org
5085 S:      Maintained
5086 F:      scripts/dev-needs.sh
5087
5088 DEVICE DIRECT ACCESS (DAX)
5089 M:      Dan Williams <dan.j.williams@intel.com>
5090 M:      Vishal Verma <vishal.l.verma@intel.com>
5091 M:      Dave Jiang <dave.jiang@intel.com>
5092 L:      linux-nvdimm@lists.01.org
5093 S:      Supported
5094 F:      drivers/dax/
5095
5096 DEVICE FREQUENCY (DEVFREQ)
5097 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5098 M:      Kyungmin Park <kyungmin.park@samsung.com>
5099 M:      Chanwoo Choi <cw00.choi@samsung.com>
5100 L:      linux-pm@vger.kernel.org
5101 S:      Maintained
5102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5103 F:      Documentation/devicetree/bindings/devfreq/
5104 F:      drivers/devfreq/
5105 F:      include/linux/devfreq.h
5106 F:      include/trace/events/devfreq.h
5107
5108 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5109 M:      Chanwoo Choi <cw00.choi@samsung.com>
5110 L:      linux-pm@vger.kernel.org
5111 S:      Supported
5112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5113 F:      Documentation/devicetree/bindings/devfreq/event/
5114 F:      drivers/devfreq/devfreq-event.c
5115 F:      drivers/devfreq/event/
5116 F:      include/dt-bindings/pmu/exynos_ppmu.h
5117 F:      include/linux/devfreq-event.h
5118
5119 DEVICE NUMBER REGISTRY
5120 M:      Torben Mathiasen <device@lanana.org>
5121 S:      Maintained
5122 W:      http://lanana.org/docs/device-list/index.html
5123
5124 DEVICE-MAPPER  (LVM)
5125 M:      Alasdair Kergon <agk@redhat.com>
5126 M:      Mike Snitzer <snitzer@redhat.com>
5127 M:      dm-devel@redhat.com
5128 L:      dm-devel@redhat.com
5129 S:      Maintained
5130 W:      http://sources.redhat.com/dm
5131 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5133 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5134 F:      Documentation/admin-guide/device-mapper/
5135 F:      drivers/md/Kconfig
5136 F:      drivers/md/Makefile
5137 F:      drivers/md/dm*
5138 F:      drivers/md/persistent-data/
5139 F:      include/linux/device-mapper.h
5140 F:      include/linux/dm-*.h
5141 F:      include/uapi/linux/dm-*.h
5142
5143 DEVLINK
5144 M:      Jiri Pirko <jiri@nvidia.com>
5145 L:      netdev@vger.kernel.org
5146 S:      Supported
5147 F:      Documentation/networking/devlink
5148 F:      include/net/devlink.h
5149 F:      include/uapi/linux/devlink.h
5150 F:      net/core/devlink.c
5151
5152 DIALOG SEMICONDUCTOR DRIVERS
5153 M:      Support Opensource <support.opensource@diasemi.com>
5154 S:      Supported
5155 W:      http://www.dialog-semiconductor.com/products
5156 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5157 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5158 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5159 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5160 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5161 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5162 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5163 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5164 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5165 F:      Documentation/hwmon/da90??.rst
5166 F:      drivers/gpio/gpio-da90??.c
5167 F:      drivers/hwmon/da90??-hwmon.c
5168 F:      drivers/iio/adc/da91??-*.c
5169 F:      drivers/input/misc/da72??.[ch]
5170 F:      drivers/input/misc/da90??_onkey.c
5171 F:      drivers/input/touchscreen/da9052_tsi.c
5172 F:      drivers/leds/leds-da90??.c
5173 F:      drivers/mfd/da903x.c
5174 F:      drivers/mfd/da90??-*.c
5175 F:      drivers/mfd/da91??-*.c
5176 F:      drivers/pinctrl/pinctrl-da90??.c
5177 F:      drivers/power/supply/da9052-battery.c
5178 F:      drivers/power/supply/da91??-*.c
5179 F:      drivers/regulator/da9???-regulator.[ch]
5180 F:      drivers/regulator/slg51000-regulator.[ch]
5181 F:      drivers/rtc/rtc-da90??.c
5182 F:      drivers/thermal/da90??-thermal.c
5183 F:      drivers/video/backlight/da90??_bl.c
5184 F:      drivers/watchdog/da90??_wdt.c
5185 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5186 F:      include/linux/mfd/da903x.h
5187 F:      include/linux/mfd/da9052/
5188 F:      include/linux/mfd/da9055/
5189 F:      include/linux/mfd/da9062/
5190 F:      include/linux/mfd/da9063/
5191 F:      include/linux/mfd/da9150/
5192 F:      include/linux/regulator/da9211.h
5193 F:      include/sound/da[79]*.h
5194 F:      sound/soc/codecs/da[79]*.[ch]
5195
5196 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5197 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5198 L:      linux-gpio@vger.kernel.org
5199 S:      Maintained
5200 F:      drivers/gpio/gpio-gpio-mm.c
5201
5202 DIOLAN U2C-12 I2C DRIVER
5203 M:      Guenter Roeck <linux@roeck-us.net>
5204 L:      linux-i2c@vger.kernel.org
5205 S:      Maintained
5206 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5207
5208 DIRECTORY NOTIFICATION (DNOTIFY)
5209 M:      Jan Kara <jack@suse.cz>
5210 R:      Amir Goldstein <amir73il@gmail.com>
5211 L:      linux-fsdevel@vger.kernel.org
5212 S:      Maintained
5213 F:      Documentation/filesystems/dnotify.rst
5214 F:      fs/notify/dnotify/
5215 F:      include/linux/dnotify.h
5216
5217 DISK GEOMETRY AND PARTITION HANDLING
5218 M:      Andries Brouwer <aeb@cwi.nl>
5219 S:      Maintained
5220 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5221 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5222 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5223
5224 DISKQUOTA
5225 M:      Jan Kara <jack@suse.com>
5226 S:      Maintained
5227 F:      Documentation/filesystems/quota.rst
5228 F:      fs/quota/
5229 F:      include/linux/quota*.h
5230 F:      include/uapi/linux/quota*.h
5231
5232 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5233 M:      Bernie Thompson <bernie@plugable.com>
5234 L:      linux-fbdev@vger.kernel.org
5235 S:      Maintained
5236 W:      http://plugable.com/category/projects/udlfb/
5237 F:      Documentation/fb/udlfb.rst
5238 F:      drivers/video/fbdev/udlfb.c
5239 F:      include/video/udlfb.h
5240
5241 DISTRIBUTED LOCK MANAGER (DLM)
5242 M:      Christine Caulfield <ccaulfie@redhat.com>
5243 M:      David Teigland <teigland@redhat.com>
5244 L:      cluster-devel@redhat.com
5245 S:      Supported
5246 W:      http://sources.redhat.com/cluster/
5247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5248 F:      fs/dlm/
5249
5250 DMA BUFFER SHARING FRAMEWORK
5251 M:      Sumit Semwal <sumit.semwal@linaro.org>
5252 M:      Christian König <christian.koenig@amd.com>
5253 L:      linux-media@vger.kernel.org
5254 L:      dri-devel@lists.freedesktop.org
5255 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5256 S:      Maintained
5257 T:      git git://anongit.freedesktop.org/drm/drm-misc
5258 F:      Documentation/driver-api/dma-buf.rst
5259 F:      drivers/dma-buf/
5260 F:      include/linux/*fence.h
5261 F:      include/linux/dma-buf*
5262 F:      include/linux/dma-resv.h
5263 K:      \bdma_(?:buf|fence|resv)\b
5264
5265 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5266 M:      Vinod Koul <vkoul@kernel.org>
5267 L:      dmaengine@vger.kernel.org
5268 S:      Maintained
5269 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5271 F:      Documentation/devicetree/bindings/dma/
5272 F:      Documentation/driver-api/dmaengine/
5273 F:      drivers/dma/
5274 F:      include/linux/dmaengine.h
5275 F:      include/linux/of_dma.h
5276
5277 DMA MAPPING HELPERS
5278 M:      Christoph Hellwig <hch@lst.de>
5279 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5280 R:      Robin Murphy <robin.murphy@arm.com>
5281 L:      iommu@lists.linux-foundation.org
5282 S:      Supported
5283 W:      http://git.infradead.org/users/hch/dma-mapping.git
5284 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5285 F:      include/asm-generic/dma-mapping.h
5286 F:      include/linux/dma-direct.h
5287 F:      include/linux/dma-mapping.h
5288 F:      include/linux/dma-map-ops.h
5289 F:      kernel/dma/
5290
5291 DMA MAPPING BENCHMARK
5292 M:      Barry Song <song.bao.hua@hisilicon.com>
5293 L:      iommu@lists.linux-foundation.org
5294 F:      kernel/dma/map_benchmark.c
5295 F:      tools/testing/selftests/dma/
5296
5297 DMA-BUF HEAPS FRAMEWORK
5298 M:      Sumit Semwal <sumit.semwal@linaro.org>
5299 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5300 R:      Liam Mark <lmark@codeaurora.org>
5301 R:      Laura Abbott <labbott@redhat.com>
5302 R:      Brian Starkey <Brian.Starkey@arm.com>
5303 R:      John Stultz <john.stultz@linaro.org>
5304 L:      linux-media@vger.kernel.org
5305 L:      dri-devel@lists.freedesktop.org
5306 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5307 S:      Maintained
5308 T:      git git://anongit.freedesktop.org/drm/drm-misc
5309 F:      drivers/dma-buf/dma-heap.c
5310 F:      drivers/dma-buf/heaps/*
5311 F:      include/linux/dma-heap.h
5312 F:      include/uapi/linux/dma-heap.h
5313
5314 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5315 M:      Lukasz Luba <lukasz.luba@arm.com>
5316 L:      linux-pm@vger.kernel.org
5317 L:      linux-samsung-soc@vger.kernel.org
5318 S:      Maintained
5319 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5320 F:      drivers/memory/samsung/exynos5422-dmc.c
5321
5322 DME1737 HARDWARE MONITOR DRIVER
5323 M:      Juerg Haefliger <juergh@gmail.com>
5324 L:      linux-hwmon@vger.kernel.org
5325 S:      Maintained
5326 F:      Documentation/hwmon/dme1737.rst
5327 F:      drivers/hwmon/dme1737.c
5328
5329 DMI/SMBIOS SUPPORT
5330 M:      Jean Delvare <jdelvare@suse.com>
5331 S:      Maintained
5332 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5333 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5334 F:      drivers/firmware/dmi-id.c
5335 F:      drivers/firmware/dmi_scan.c
5336 F:      include/linux/dmi.h
5337
5338 DOCUMENTATION
5339 M:      Jonathan Corbet <corbet@lwn.net>
5340 L:      linux-doc@vger.kernel.org
5341 S:      Maintained
5342 P:      Documentation/doc-guide/maintainer-profile.rst
5343 T:      git git://git.lwn.net/linux.git docs-next
5344 F:      Documentation/
5345 F:      scripts/documentation-file-ref-check
5346 F:      scripts/kernel-doc
5347 F:      scripts/sphinx-pre-install
5348 X:      Documentation/ABI/
5349 X:      Documentation/admin-guide/media/
5350 X:      Documentation/devicetree/
5351 X:      Documentation/driver-api/media/
5352 X:      Documentation/firmware-guide/acpi/
5353 X:      Documentation/i2c/
5354 X:      Documentation/power/
5355 X:      Documentation/spi/
5356 X:      Documentation/userspace-api/media/
5357
5358 DOCUMENTATION SCRIPTS
5359 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5360 L:      linux-doc@vger.kernel.org
5361 S:      Maintained
5362 F:      Documentation/sphinx/parse-headers.pl
5363 F:      scripts/documentation-file-ref-check
5364 F:      scripts/sphinx-pre-install
5365
5366 DOCUMENTATION/ITALIAN
5367 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5368 L:      linux-doc@vger.kernel.org
5369 S:      Maintained
5370 F:      Documentation/translations/it_IT
5371
5372 DONGWOON DW9714 LENS VOICE COIL DRIVER
5373 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5374 L:      linux-media@vger.kernel.org
5375 S:      Maintained
5376 T:      git git://linuxtv.org/media_tree.git
5377 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5378 F:      drivers/media/i2c/dw9714.c
5379
5380 DONGWOON DW9768 LENS VOICE COIL DRIVER
5381 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5382 L:      linux-media@vger.kernel.org
5383 S:      Maintained
5384 T:      git git://linuxtv.org/media_tree.git
5385 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5386 F:      drivers/media/i2c/dw9768.c
5387
5388 DONGWOON DW9807 LENS VOICE COIL DRIVER
5389 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5390 L:      linux-media@vger.kernel.org
5391 S:      Maintained
5392 T:      git git://linuxtv.org/media_tree.git
5393 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5394 F:      drivers/media/i2c/dw9807-vcm.c
5395
5396 DOUBLETALK DRIVER
5397 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5398 L:      blinux-list@redhat.com
5399 S:      Maintained
5400 F:      drivers/char/dtlk.c
5401 F:      include/linux/dtlk.h
5402
5403 DPAA2 DATAPATH I/O (DPIO) DRIVER
5404 M:      Roy Pledge <Roy.Pledge@nxp.com>
5405 L:      linux-kernel@vger.kernel.org
5406 S:      Maintained
5407 F:      drivers/soc/fsl/dpio
5408
5409 DPAA2 ETHERNET DRIVER
5410 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5411 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5412 L:      netdev@vger.kernel.org
5413 S:      Maintained
5414 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5415 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5416 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5417 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5418 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5419 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5420 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5421 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5422 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5423
5424 DPAA2 ETHERNET SWITCH DRIVER
5425 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5426 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5427 L:      linux-kernel@vger.kernel.org
5428 S:      Maintained
5429 F:      drivers/staging/fsl-dpaa2/ethsw
5430
5431 DPT_I2O SCSI RAID DRIVER
5432 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5433 L:      linux-scsi@vger.kernel.org
5434 S:      Maintained
5435 W:      http://www.adaptec.com/
5436 F:      drivers/scsi/dpt*
5437 F:      drivers/scsi/dpt/
5438
5439 DRBD DRIVER
5440 M:      Philipp Reisner <philipp.reisner@linbit.com>
5441 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5442 L:      drbd-dev@lists.linbit.com
5443 S:      Supported
5444 W:      http://www.drbd.org
5445 T:      git git://git.linbit.com/linux-drbd.git
5446 T:      git git://git.linbit.com/drbd-8.4.git
5447 F:      Documentation/admin-guide/blockdev/
5448 F:      drivers/block/drbd/
5449 F:      lib/lru_cache.c
5450
5451 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5452 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5453 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5454 S:      Supported
5455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5456 F:      Documentation/core-api/kobject.rst
5457 F:      drivers/base/
5458 F:      fs/debugfs/
5459 F:      fs/sysfs/
5460 F:      include/linux/debugfs.h
5461 F:      include/linux/kobj*
5462 F:      lib/kobj*
5463
5464 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5465 M:      Nishanth Menon <nm@ti.com>
5466 L:      linux-pm@vger.kernel.org
5467 S:      Maintained
5468 F:      drivers/soc/ti/smartreflex.c
5469 F:      include/linux/power/smartreflex.h
5470
5471 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5472 M:      Maxime Ripard <mripard@kernel.org>
5473 M:      Chen-Yu Tsai <wens@csie.org>
5474 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5475 L:      dri-devel@lists.freedesktop.org
5476 S:      Supported
5477 T:      git git://anongit.freedesktop.org/drm/drm-misc
5478 F:      drivers/gpu/drm/sun4i/sun8i*
5479
5480 DRM DRIVER FOR ARM PL111 CLCD
5481 M:      Eric Anholt <eric@anholt.net>
5482 S:      Supported
5483 T:      git git://anongit.freedesktop.org/drm/drm-misc
5484 F:      drivers/gpu/drm/pl111/
5485
5486 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5487 M:      Linus Walleij <linus.walleij@linaro.org>
5488 S:      Maintained
5489 T:      git git://anongit.freedesktop.org/drm/drm-misc
5490 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5491 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5492
5493 DRM DRIVER FOR ASPEED BMC GFX
5494 M:      Joel Stanley <joel@jms.id.au>
5495 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5496 S:      Supported
5497 T:      git git://anongit.freedesktop.org/drm/drm-misc
5498 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5499 F:      drivers/gpu/drm/aspeed/
5500
5501 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5502 M:      Dave Airlie <airlied@redhat.com>
5503 R:      Thomas Zimmermann <tzimmermann@suse.de>
5504 L:      dri-devel@lists.freedesktop.org
5505 S:      Supported
5506 T:      git git://anongit.freedesktop.org/drm/drm-misc
5507 F:      drivers/gpu/drm/ast/
5508
5509 DRM DRIVER FOR BOCHS VIRTUAL GPU
5510 M:      Gerd Hoffmann <kraxel@redhat.com>
5511 L:      virtualization@lists.linux-foundation.org
5512 S:      Maintained
5513 T:      git git://anongit.freedesktop.org/drm/drm-misc
5514 F:      drivers/gpu/drm/bochs/
5515
5516 DRM DRIVER FOR BOE HIMAX8279D PANELS
5517 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5518 S:      Maintained
5519 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5520 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5521
5522 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5523 M:      Linus Walleij <linus.walleij@linaro.org>
5524 S:      Maintained
5525 T:      git git://anongit.freedesktop.org/drm/drm-misc
5526 F:      drivers/gpu/drm/tve200/
5527
5528 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5529 M:      Icenowy Zheng <icenowy@aosc.io>
5530 S:      Maintained
5531 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5532 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5533
5534 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5535 M:      Jagan Teki <jagan@amarulasolutions.com>
5536 S:      Maintained
5537 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5538 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5539
5540 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5541 M:      Hans de Goede <hdegoede@redhat.com>
5542 S:      Maintained
5543 T:      git git://anongit.freedesktop.org/drm/drm-misc
5544 F:      drivers/gpu/drm/tiny/gm12u320.c
5545
5546 DRM DRIVER FOR HX8357D PANELS
5547 M:      Eric Anholt <eric@anholt.net>
5548 S:      Maintained
5549 T:      git git://anongit.freedesktop.org/drm/drm-misc
5550 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5551 F:      drivers/gpu/drm/tiny/hx8357d.c
5552
5553 DRM DRIVER FOR ILITEK ILI9225 PANELS
5554 M:      David Lechner <david@lechnology.com>
5555 S:      Maintained
5556 T:      git git://anongit.freedesktop.org/drm/drm-misc
5557 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5558 F:      drivers/gpu/drm/tiny/ili9225.c
5559
5560 DRM DRIVER FOR ILITEK ILI9486 PANELS
5561 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5562 S:      Maintained
5563 T:      git git://anongit.freedesktop.org/drm/drm-misc
5564 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5565 F:      drivers/gpu/drm/tiny/ili9486.c
5566
5567 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5568 S:      Orphan / Obsolete
5569 F:      drivers/gpu/drm/i810/
5570 F:      include/uapi/drm/i810_drm.h
5571
5572 DRM DRIVER FOR LVDS PANELS
5573 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5574 L:      dri-devel@lists.freedesktop.org
5575 T:      git git://anongit.freedesktop.org/drm/drm-misc
5576 S:      Maintained
5577 F:      drivers/gpu/drm/panel/panel-lvds.c
5578 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5579
5580 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5581 M:      Guido Günther <agx@sigxcpu.org>
5582 R:      Purism Kernel Team <kernel@puri.sm>
5583 S:      Maintained
5584 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5585 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5586
5587 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5588 S:      Orphan / Obsolete
5589 F:      drivers/gpu/drm/mga/
5590 F:      include/uapi/drm/mga_drm.h
5591
5592 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5593 M:      Dave Airlie <airlied@redhat.com>
5594 R:      Thomas Zimmermann <tzimmermann@suse.de>
5595 L:      dri-devel@lists.freedesktop.org
5596 S:      Supported
5597 T:      git git://anongit.freedesktop.org/drm/drm-misc
5598 F:      drivers/gpu/drm/mgag200/
5599
5600 DRM DRIVER FOR MI0283QT
5601 M:      Noralf Trønnes <noralf@tronnes.org>
5602 S:      Maintained
5603 T:      git git://anongit.freedesktop.org/drm/drm-misc
5604 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5605 F:      drivers/gpu/drm/tiny/mi0283qt.c
5606
5607 DRM DRIVER FOR MSM ADRENO GPU
5608 M:      Rob Clark <robdclark@gmail.com>
5609 M:      Sean Paul <sean@poorly.run>
5610 L:      linux-arm-msm@vger.kernel.org
5611 L:      dri-devel@lists.freedesktop.org
5612 L:      freedreno@lists.freedesktop.org
5613 S:      Maintained
5614 T:      git https://gitlab.freedesktop.org/drm/msm.git
5615 F:      Documentation/devicetree/bindings/display/msm/
5616 F:      drivers/gpu/drm/msm/
5617 F:      include/uapi/drm/msm_drm.h
5618
5619 DRM DRIVER FOR NOVATEK NT35510 PANELS
5620 M:      Linus Walleij <linus.walleij@linaro.org>
5621 S:      Maintained
5622 T:      git git://anongit.freedesktop.org/drm/drm-misc
5623 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5624 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5625
5626 DRM DRIVER FOR NOVATEK NT36672A PANELS
5627 M:      Sumit Semwal <sumit.semwal@linaro.org>
5628 S:      Maintained
5629 T:      git git://anongit.freedesktop.org/drm/drm-misc
5630 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
5631 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
5632
5633 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5634 M:      Ben Skeggs <bskeggs@redhat.com>
5635 L:      dri-devel@lists.freedesktop.org
5636 L:      nouveau@lists.freedesktop.org
5637 S:      Supported
5638 T:      git git://github.com/skeggsb/linux
5639 F:      drivers/gpu/drm/nouveau/
5640 F:      include/uapi/drm/nouveau_drm.h
5641
5642 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5643 M:      Stefan Mavrodiev <stefan@olimex.com>
5644 S:      Maintained
5645 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5646 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5647
5648 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5649 M:      Noralf Trønnes <noralf@tronnes.org>
5650 S:      Maintained
5651 T:      git git://anongit.freedesktop.org/drm/drm-misc
5652 F:      Documentation/devicetree/bindings/display/repaper.txt
5653 F:      drivers/gpu/drm/tiny/repaper.c
5654
5655 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5656 M:      Dave Airlie <airlied@redhat.com>
5657 M:      Gerd Hoffmann <kraxel@redhat.com>
5658 L:      virtualization@lists.linux-foundation.org
5659 S:      Obsolete
5660 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5661 T:      git git://anongit.freedesktop.org/drm/drm-misc
5662 F:      drivers/gpu/drm/tiny/cirrus.c
5663
5664 DRM DRIVER FOR QXL VIRTUAL GPU
5665 M:      Dave Airlie <airlied@redhat.com>
5666 M:      Gerd Hoffmann <kraxel@redhat.com>
5667 L:      virtualization@lists.linux-foundation.org
5668 L:      spice-devel@lists.freedesktop.org
5669 S:      Maintained
5670 T:      git git://anongit.freedesktop.org/drm/drm-misc
5671 F:      drivers/gpu/drm/qxl/
5672 F:      include/uapi/drm/qxl_drm.h
5673
5674 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5675 S:      Orphan / Obsolete
5676 F:      drivers/gpu/drm/r128/
5677 F:      include/uapi/drm/r128_drm.h
5678
5679 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5680 M:      Robert Chiras <robert.chiras@nxp.com>
5681 S:      Maintained
5682 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
5683 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5684
5685 DRM DRIVER FOR SITRONIX ST7703 PANELS
5686 M:      Guido Günther <agx@sigxcpu.org>
5687 R:      Purism Kernel Team <kernel@puri.sm>
5688 R:      Ondrej Jirman <megous@megous.com>
5689 S:      Maintained
5690 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
5691 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
5692
5693 DRM DRIVER FOR SAVAGE VIDEO CARDS
5694 S:      Orphan / Obsolete
5695 F:      drivers/gpu/drm/savage/
5696 F:      include/uapi/drm/savage_drm.h
5697
5698 DRM DRIVER FOR SIS VIDEO CARDS
5699 S:      Orphan / Obsolete
5700 F:      drivers/gpu/drm/sis/
5701 F:      include/uapi/drm/sis_drm.h
5702
5703 DRM DRIVER FOR SITRONIX ST7586 PANELS
5704 M:      David Lechner <david@lechnology.com>
5705 S:      Maintained
5706 T:      git git://anongit.freedesktop.org/drm/drm-misc
5707 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5708 F:      drivers/gpu/drm/tiny/st7586.c
5709
5710 DRM DRIVER FOR SITRONIX ST7701 PANELS
5711 M:      Jagan Teki <jagan@amarulasolutions.com>
5712 S:      Maintained
5713 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5714 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5715
5716 DRM DRIVER FOR SITRONIX ST7735R PANELS
5717 M:      David Lechner <david@lechnology.com>
5718 S:      Maintained
5719 T:      git git://anongit.freedesktop.org/drm/drm-misc
5720 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5721 F:      drivers/gpu/drm/tiny/st7735r.c
5722
5723 DRM DRIVER FOR SONY ACX424AKP PANELS
5724 M:      Linus Walleij <linus.walleij@linaro.org>
5725 S:      Maintained
5726 T:      git git://anongit.freedesktop.org/drm/drm-misc
5727 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5728
5729 DRM DRIVER FOR ST-ERICSSON MCDE
5730 M:      Linus Walleij <linus.walleij@linaro.org>
5731 S:      Maintained
5732 T:      git git://anongit.freedesktop.org/drm/drm-misc
5733 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5734 F:      drivers/gpu/drm/mcde/
5735
5736 DRM DRIVER FOR TDFX VIDEO CARDS
5737 S:      Orphan / Obsolete
5738 F:      drivers/gpu/drm/tdfx/
5739
5740 DRM DRIVER FOR TPO TPG110 PANELS
5741 M:      Linus Walleij <linus.walleij@linaro.org>
5742 S:      Maintained
5743 T:      git git://anongit.freedesktop.org/drm/drm-misc
5744 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5745 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5746
5747 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5748 M:      Dave Airlie <airlied@redhat.com>
5749 R:      Sean Paul <sean@poorly.run>
5750 R:      Thomas Zimmermann <tzimmermann@suse.de>
5751 L:      dri-devel@lists.freedesktop.org
5752 S:      Supported
5753 T:      git git://anongit.freedesktop.org/drm/drm-misc
5754 F:      drivers/gpu/drm/udl/
5755
5756 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5757 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5758 M:      Melissa Wen <melissa.srw@gmail.com>
5759 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5760 R:      Daniel Vetter <daniel@ffwll.ch>
5761 L:      dri-devel@lists.freedesktop.org
5762 S:      Maintained
5763 T:      git git://anongit.freedesktop.org/drm/drm-misc
5764 F:      Documentation/gpu/vkms.rst
5765 F:      drivers/gpu/drm/vkms/
5766
5767 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5768 M:      Hans de Goede <hdegoede@redhat.com>
5769 L:      dri-devel@lists.freedesktop.org
5770 S:      Maintained
5771 T:      git git://anongit.freedesktop.org/drm/drm-misc
5772 F:      drivers/gpu/drm/vboxvideo/
5773
5774 DRM DRIVER FOR VMWARE VIRTUAL GPU
5775 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5776 M:      Roland Scheidegger <sroland@vmware.com>
5777 M:      Zack Rusin <zackr@vmware.com>
5778 L:      dri-devel@lists.freedesktop.org
5779 S:      Supported
5780 T:      git git://people.freedesktop.org/~sroland/linux
5781 F:      drivers/gpu/drm/vmwgfx/
5782 F:      include/uapi/drm/vmwgfx_drm.h
5783
5784 DRM DRIVERS
5785 M:      David Airlie <airlied@linux.ie>
5786 M:      Daniel Vetter <daniel@ffwll.ch>
5787 L:      dri-devel@lists.freedesktop.org
5788 S:      Maintained
5789 B:      https://bugs.freedesktop.org/
5790 C:      irc://chat.freenode.net/dri-devel
5791 T:      git git://anongit.freedesktop.org/drm/drm
5792 F:      Documentation/devicetree/bindings/display/
5793 F:      Documentation/devicetree/bindings/gpu/
5794 F:      Documentation/gpu/
5795 F:      drivers/gpu/drm/
5796 F:      drivers/gpu/vga/
5797 F:      include/drm/
5798 F:      include/linux/vga*
5799 F:      include/uapi/drm/
5800
5801 DRM DRIVERS AND MISC GPU PATCHES
5802 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5803 M:      Maxime Ripard <mripard@kernel.org>
5804 M:      Thomas Zimmermann <tzimmermann@suse.de>
5805 S:      Maintained
5806 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5807 T:      git git://anongit.freedesktop.org/drm/drm-misc
5808 F:      Documentation/gpu/
5809 F:      drivers/gpu/drm/*
5810 F:      drivers/gpu/vga/
5811 F:      include/drm/drm*
5812 F:      include/linux/vga*
5813 F:      include/uapi/drm/drm*
5814
5815 DRM DRIVERS FOR ALLWINNER A10
5816 M:      Maxime Ripard <mripard@kernel.org>
5817 M:      Chen-Yu Tsai <wens@csie.org>
5818 L:      dri-devel@lists.freedesktop.org
5819 S:      Supported
5820 T:      git git://anongit.freedesktop.org/drm/drm-misc
5821 F:      Documentation/devicetree/bindings/display/allwinner*
5822 F:      drivers/gpu/drm/sun4i/
5823
5824 DRM DRIVERS FOR AMLOGIC SOCS
5825 M:      Neil Armstrong <narmstrong@baylibre.com>
5826 L:      dri-devel@lists.freedesktop.org
5827 L:      linux-amlogic@lists.infradead.org
5828 S:      Supported
5829 W:      http://linux-meson.com/
5830 T:      git git://anongit.freedesktop.org/drm/drm-misc
5831 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5832 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5833 F:      Documentation/gpu/meson.rst
5834 F:      drivers/gpu/drm/meson/
5835
5836 DRM DRIVERS FOR ATMEL HLCDC
5837 M:      Sam Ravnborg <sam@ravnborg.org>
5838 M:      Boris Brezillon <bbrezillon@kernel.org>
5839 L:      dri-devel@lists.freedesktop.org
5840 S:      Supported
5841 T:      git git://anongit.freedesktop.org/drm/drm-misc
5842 F:      Documentation/devicetree/bindings/display/atmel/
5843 F:      drivers/gpu/drm/atmel-hlcdc/
5844
5845 DRM DRIVERS FOR BRIDGE CHIPS
5846 M:      Andrzej Hajda <a.hajda@samsung.com>
5847 M:      Neil Armstrong <narmstrong@baylibre.com>
5848 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5849 R:      Jonas Karlman <jonas@kwiboo.se>
5850 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5851 S:      Maintained
5852 T:      git git://anongit.freedesktop.org/drm/drm-misc
5853 F:      drivers/gpu/drm/bridge/
5854
5855 DRM DRIVERS FOR EXYNOS
5856 M:      Inki Dae <inki.dae@samsung.com>
5857 M:      Joonyoung Shim <jy0922.shim@samsung.com>
5858 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
5859 M:      Kyungmin Park <kyungmin.park@samsung.com>
5860 L:      dri-devel@lists.freedesktop.org
5861 S:      Supported
5862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5863 F:      Documentation/devicetree/bindings/display/exynos/
5864 F:      drivers/gpu/drm/exynos/
5865 F:      include/uapi/drm/exynos_drm.h
5866
5867 DRM DRIVERS FOR FREESCALE DCU
5868 M:      Stefan Agner <stefan@agner.ch>
5869 M:      Alison Wang <alison.wang@nxp.com>
5870 L:      dri-devel@lists.freedesktop.org
5871 S:      Supported
5872 T:      git git://anongit.freedesktop.org/drm/drm-misc
5873 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5874 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5875 F:      drivers/gpu/drm/fsl-dcu/
5876
5877 DRM DRIVERS FOR FREESCALE IMX
5878 M:      Philipp Zabel <p.zabel@pengutronix.de>
5879 L:      dri-devel@lists.freedesktop.org
5880 S:      Maintained
5881 F:      Documentation/devicetree/bindings/display/imx/
5882 F:      drivers/gpu/drm/imx/
5883 F:      drivers/gpu/ipu-v3/
5884
5885 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5886 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5887 L:      dri-devel@lists.freedesktop.org
5888 S:      Maintained
5889 T:      git git://github.com/patjak/drm-gma500
5890 F:      drivers/gpu/drm/gma500/
5891
5892 DRM DRIVERS FOR HISILICON
5893 M:      Xinliang Liu <xinliang.liu@linaro.org>
5894 M:      Tian Tao  <tiantao6@hisilicon.com>
5895 R:      John Stultz <john.stultz@linaro.org>
5896 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
5897 R:      Chen Feng <puck.chen@hisilicon.com>
5898 L:      dri-devel@lists.freedesktop.org
5899 S:      Maintained
5900 T:      git git://anongit.freedesktop.org/drm/drm-misc
5901 F:      Documentation/devicetree/bindings/display/hisilicon/
5902 F:      drivers/gpu/drm/hisilicon/
5903
5904 DRM DRIVERS FOR LIMA
5905 M:      Qiang Yu <yuq825@gmail.com>
5906 L:      dri-devel@lists.freedesktop.org
5907 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
5908 S:      Maintained
5909 T:      git git://anongit.freedesktop.org/drm/drm-misc
5910 F:      drivers/gpu/drm/lima/
5911 F:      include/uapi/drm/lima_drm.h
5912
5913 DRM DRIVERS FOR MEDIATEK
5914 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
5915 M:      Philipp Zabel <p.zabel@pengutronix.de>
5916 L:      dri-devel@lists.freedesktop.org
5917 S:      Supported
5918 F:      Documentation/devicetree/bindings/display/mediatek/
5919 F:      drivers/gpu/drm/mediatek/
5920 F:      drivers/phy/mediatek/phy-mtk-hdmi*
5921 F:      drivers/phy/mediatek/phy-mtk-mipi*
5922
5923 DRM DRIVERS FOR NVIDIA TEGRA
5924 M:      Thierry Reding <thierry.reding@gmail.com>
5925 L:      dri-devel@lists.freedesktop.org
5926 L:      linux-tegra@vger.kernel.org
5927 S:      Supported
5928 T:      git git://anongit.freedesktop.org/tegra/linux.git
5929 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5930 F:      drivers/gpu/drm/tegra/
5931 F:      drivers/gpu/host1x/
5932 F:      include/linux/host1x.h
5933 F:      include/uapi/drm/tegra_drm.h
5934
5935 DRM DRIVERS FOR RENESAS
5936 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5937 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5938 L:      dri-devel@lists.freedesktop.org
5939 L:      linux-renesas-soc@vger.kernel.org
5940 S:      Supported
5941 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5942 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5943 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
5944 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5945 F:      drivers/gpu/drm/rcar-du/
5946 F:      drivers/gpu/drm/shmobile/
5947 F:      include/linux/platform_data/shmob_drm.h
5948
5949 DRM DRIVERS FOR ROCKCHIP
5950 M:      Sandy Huang <hjc@rock-chips.com>
5951 M:      Heiko Stübner <heiko@sntech.de>
5952 L:      dri-devel@lists.freedesktop.org
5953 S:      Maintained
5954 T:      git git://anongit.freedesktop.org/drm/drm-misc
5955 F:      Documentation/devicetree/bindings/display/rockchip/
5956 F:      drivers/gpu/drm/rockchip/
5957
5958 DRM DRIVERS FOR STI
5959 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5960 M:      Vincent Abriou <vincent.abriou@st.com>
5961 L:      dri-devel@lists.freedesktop.org
5962 S:      Maintained
5963 T:      git git://anongit.freedesktop.org/drm/drm-misc
5964 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5965 F:      drivers/gpu/drm/sti
5966
5967 DRM DRIVERS FOR STM
5968 M:      Yannick Fertre <yannick.fertre@st.com>
5969 M:      Philippe Cornu <philippe.cornu@st.com>
5970 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5971 M:      Vincent Abriou <vincent.abriou@st.com>
5972 L:      dri-devel@lists.freedesktop.org
5973 S:      Maintained
5974 T:      git git://anongit.freedesktop.org/drm/drm-misc
5975 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5976 F:      drivers/gpu/drm/stm
5977
5978 DRM DRIVERS FOR TI KEYSTONE
5979 M:      Jyri Sarha <jyri.sarha@iki.fi>
5980 M:      Tomi Valkeinen <tomba@kernel.org>
5981 L:      dri-devel@lists.freedesktop.org
5982 S:      Maintained
5983 T:      git git://anongit.freedesktop.org/drm/drm-misc
5984 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5985 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5986 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5987 F:      drivers/gpu/drm/tidss/
5988
5989 DRM DRIVERS FOR TI LCDC
5990 M:      Jyri Sarha <jyri.sarha@iki.fi>
5991 R:      Tomi Valkeinen <tomba@kernel.org>
5992 L:      dri-devel@lists.freedesktop.org
5993 S:      Maintained
5994 F:      Documentation/devicetree/bindings/display/tilcdc/
5995 F:      drivers/gpu/drm/tilcdc/
5996
5997 DRM DRIVERS FOR TI OMAP
5998 M:      Tomi Valkeinen <tomba@kernel.org>
5999 L:      dri-devel@lists.freedesktop.org
6000 S:      Maintained
6001 F:      Documentation/devicetree/bindings/display/ti/
6002 F:      drivers/gpu/drm/omapdrm/
6003
6004 DRM DRIVERS FOR V3D
6005 M:      Eric Anholt <eric@anholt.net>
6006 S:      Supported
6007 T:      git git://anongit.freedesktop.org/drm/drm-misc
6008 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
6009 F:      drivers/gpu/drm/v3d/
6010 F:      include/uapi/drm/v3d_drm.h
6011
6012 DRM DRIVERS FOR VC4
6013 M:      Eric Anholt <eric@anholt.net>
6014 M:      Maxime Ripard <mripard@kernel.org>
6015 S:      Supported
6016 T:      git git://github.com/anholt/linux
6017 T:      git git://anongit.freedesktop.org/drm/drm-misc
6018 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6019 F:      drivers/gpu/drm/vc4/
6020 F:      include/uapi/drm/vc4_drm.h
6021
6022 DRM DRIVERS FOR VIVANTE GPU IP
6023 M:      Lucas Stach <l.stach@pengutronix.de>
6024 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6025 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6026 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6027 L:      dri-devel@lists.freedesktop.org
6028 S:      Maintained
6029 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6030 F:      drivers/gpu/drm/etnaviv/
6031 F:      include/uapi/drm/etnaviv_drm.h
6032
6033 DRM DRIVERS FOR XEN
6034 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6035 L:      dri-devel@lists.freedesktop.org
6036 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6037 S:      Supported
6038 T:      git git://anongit.freedesktop.org/drm/drm-misc
6039 F:      Documentation/gpu/xen-front.rst
6040 F:      drivers/gpu/drm/xen/
6041
6042 DRM DRIVERS FOR XILINX
6043 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6044 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6045 L:      dri-devel@lists.freedesktop.org
6046 S:      Maintained
6047 T:      git git://anongit.freedesktop.org/drm/drm-misc
6048 F:      Documentation/devicetree/bindings/display/xlnx/
6049 F:      drivers/gpu/drm/xlnx/
6050
6051 DRM PANEL DRIVERS
6052 M:      Thierry Reding <thierry.reding@gmail.com>
6053 R:      Sam Ravnborg <sam@ravnborg.org>
6054 L:      dri-devel@lists.freedesktop.org
6055 S:      Maintained
6056 T:      git git://anongit.freedesktop.org/drm/drm-misc
6057 F:      Documentation/devicetree/bindings/display/panel/
6058 F:      drivers/gpu/drm/drm_panel.c
6059 F:      drivers/gpu/drm/panel/
6060 F:      include/drm/drm_panel.h
6061
6062 DRM TTM SUBSYSTEM
6063 M:      Christian Koenig <christian.koenig@amd.com>
6064 M:      Huang Rui <ray.huang@amd.com>
6065 L:      dri-devel@lists.freedesktop.org
6066 S:      Maintained
6067 T:      git git://people.freedesktop.org/~agd5f/linux
6068 F:      drivers/gpu/drm/ttm/
6069 F:      include/drm/ttm/
6070
6071 DSBR100 USB FM RADIO DRIVER
6072 M:      Alexey Klimov <klimov.linux@gmail.com>
6073 L:      linux-media@vger.kernel.org
6074 S:      Maintained
6075 T:      git git://linuxtv.org/media_tree.git
6076 F:      drivers/media/radio/dsbr100.c
6077
6078 DT3155 MEDIA DRIVER
6079 M:      Hans Verkuil <hverkuil@xs4all.nl>
6080 L:      linux-media@vger.kernel.org
6081 S:      Odd Fixes
6082 W:      https://linuxtv.org
6083 T:      git git://linuxtv.org/media_tree.git
6084 F:      drivers/media/pci/dt3155/
6085
6086 DVB_USB_AF9015 MEDIA DRIVER
6087 M:      Antti Palosaari <crope@iki.fi>
6088 L:      linux-media@vger.kernel.org
6089 S:      Maintained
6090 W:      https://linuxtv.org
6091 W:      http://palosaari.fi/linux/
6092 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6093 T:      git git://linuxtv.org/anttip/media_tree.git
6094 F:      drivers/media/usb/dvb-usb-v2/af9015*
6095
6096 DVB_USB_AF9035 MEDIA DRIVER
6097 M:      Antti Palosaari <crope@iki.fi>
6098 L:      linux-media@vger.kernel.org
6099 S:      Maintained
6100 W:      https://linuxtv.org
6101 W:      http://palosaari.fi/linux/
6102 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6103 T:      git git://linuxtv.org/anttip/media_tree.git
6104 F:      drivers/media/usb/dvb-usb-v2/af9035*
6105
6106 DVB_USB_ANYSEE MEDIA DRIVER
6107 M:      Antti Palosaari <crope@iki.fi>
6108 L:      linux-media@vger.kernel.org
6109 S:      Maintained
6110 W:      https://linuxtv.org
6111 W:      http://palosaari.fi/linux/
6112 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6113 T:      git git://linuxtv.org/anttip/media_tree.git
6114 F:      drivers/media/usb/dvb-usb-v2/anysee*
6115
6116 DVB_USB_AU6610 MEDIA DRIVER
6117 M:      Antti Palosaari <crope@iki.fi>
6118 L:      linux-media@vger.kernel.org
6119 S:      Maintained
6120 W:      https://linuxtv.org
6121 W:      http://palosaari.fi/linux/
6122 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6123 T:      git git://linuxtv.org/anttip/media_tree.git
6124 F:      drivers/media/usb/dvb-usb-v2/au6610*
6125
6126 DVB_USB_CE6230 MEDIA DRIVER
6127 M:      Antti Palosaari <crope@iki.fi>
6128 L:      linux-media@vger.kernel.org
6129 S:      Maintained
6130 W:      https://linuxtv.org
6131 W:      http://palosaari.fi/linux/
6132 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6133 T:      git git://linuxtv.org/anttip/media_tree.git
6134 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6135
6136 DVB_USB_CXUSB MEDIA DRIVER
6137 M:      Michael Krufky <mkrufky@linuxtv.org>
6138 L:      linux-media@vger.kernel.org
6139 S:      Maintained
6140 W:      https://linuxtv.org
6141 W:      http://github.com/mkrufky
6142 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6143 T:      git git://linuxtv.org/media_tree.git
6144 F:      drivers/media/usb/dvb-usb/cxusb*
6145
6146 DVB_USB_EC168 MEDIA DRIVER
6147 M:      Antti Palosaari <crope@iki.fi>
6148 L:      linux-media@vger.kernel.org
6149 S:      Maintained
6150 W:      https://linuxtv.org
6151 W:      http://palosaari.fi/linux/
6152 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6153 T:      git git://linuxtv.org/anttip/media_tree.git
6154 F:      drivers/media/usb/dvb-usb-v2/ec168*
6155
6156 DVB_USB_GL861 MEDIA DRIVER
6157 M:      Antti Palosaari <crope@iki.fi>
6158 L:      linux-media@vger.kernel.org
6159 S:      Maintained
6160 W:      https://linuxtv.org
6161 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6162 T:      git git://linuxtv.org/anttip/media_tree.git
6163 F:      drivers/media/usb/dvb-usb-v2/gl861*
6164
6165 DVB_USB_MXL111SF MEDIA DRIVER
6166 M:      Michael Krufky <mkrufky@linuxtv.org>
6167 L:      linux-media@vger.kernel.org
6168 S:      Maintained
6169 W:      https://linuxtv.org
6170 W:      http://github.com/mkrufky
6171 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6172 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6173 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6174
6175 DVB_USB_RTL28XXU MEDIA DRIVER
6176 M:      Antti Palosaari <crope@iki.fi>
6177 L:      linux-media@vger.kernel.org
6178 S:      Maintained
6179 W:      https://linuxtv.org
6180 W:      http://palosaari.fi/linux/
6181 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6182 T:      git git://linuxtv.org/anttip/media_tree.git
6183 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6184
6185 DVB_USB_V2 MEDIA DRIVER
6186 M:      Antti Palosaari <crope@iki.fi>
6187 L:      linux-media@vger.kernel.org
6188 S:      Maintained
6189 W:      https://linuxtv.org
6190 W:      http://palosaari.fi/linux/
6191 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6192 T:      git git://linuxtv.org/anttip/media_tree.git
6193 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6194 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6195
6196 DYNAMIC DEBUG
6197 M:      Jason Baron <jbaron@akamai.com>
6198 S:      Maintained
6199 F:      include/linux/dynamic_debug.h
6200 F:      lib/dynamic_debug.c
6201
6202 DYNAMIC INTERRUPT MODERATION
6203 M:      Tal Gilboa <talgi@nvidia.com>
6204 S:      Maintained
6205 F:      Documentation/networking/net_dim.rst
6206 F:      include/linux/dim.h
6207 F:      lib/dim/
6208
6209 DZ DECSTATION DZ11 SERIAL DRIVER
6210 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6211 S:      Maintained
6212 F:      drivers/tty/serial/dz.*
6213
6214 E3X0 POWER BUTTON DRIVER
6215 M:      Moritz Fischer <moritz.fischer@ettus.com>
6216 L:      usrp-users@lists.ettus.com
6217 S:      Supported
6218 W:      http://www.ettus.com
6219 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6220 F:      drivers/input/misc/e3x0-button.c
6221
6222 E4000 MEDIA DRIVER
6223 M:      Antti Palosaari <crope@iki.fi>
6224 L:      linux-media@vger.kernel.org
6225 S:      Maintained
6226 W:      https://linuxtv.org
6227 W:      http://palosaari.fi/linux/
6228 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6229 T:      git git://linuxtv.org/anttip/media_tree.git
6230 F:      drivers/media/tuners/e4000*
6231
6232 EARTH_PT1 MEDIA DRIVER
6233 M:      Akihiro Tsukada <tskd08@gmail.com>
6234 L:      linux-media@vger.kernel.org
6235 S:      Odd Fixes
6236 F:      drivers/media/pci/pt1/
6237
6238 EARTH_PT3 MEDIA DRIVER
6239 M:      Akihiro Tsukada <tskd08@gmail.com>
6240 L:      linux-media@vger.kernel.org
6241 S:      Odd Fixes
6242 F:      drivers/media/pci/pt3/
6243
6244 EC100 MEDIA DRIVER
6245 M:      Antti Palosaari <crope@iki.fi>
6246 L:      linux-media@vger.kernel.org
6247 S:      Maintained
6248 W:      https://linuxtv.org
6249 W:      http://palosaari.fi/linux/
6250 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6251 T:      git git://linuxtv.org/anttip/media_tree.git
6252 F:      drivers/media/dvb-frontends/ec100*
6253
6254 ECRYPT FILE SYSTEM
6255 M:      Tyler Hicks <code@tyhicks.com>
6256 L:      ecryptfs@vger.kernel.org
6257 S:      Odd Fixes
6258 W:      http://ecryptfs.org
6259 W:      https://launchpad.net/ecryptfs
6260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6261 F:      Documentation/filesystems/ecryptfs.rst
6262 F:      fs/ecryptfs/
6263
6264 EDAC-AMD64
6265 M:      Borislav Petkov <bp@alien8.de>
6266 L:      linux-edac@vger.kernel.org
6267 S:      Maintained
6268 F:      drivers/edac/amd64_edac*
6269
6270 EDAC-ARMADA
6271 M:      Jan Luebbe <jlu@pengutronix.de>
6272 L:      linux-edac@vger.kernel.org
6273 S:      Maintained
6274 F:      drivers/edac/armada_xp_*
6275
6276 EDAC-AST2500
6277 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6278 S:      Supported
6279 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6280 F:      drivers/edac/aspeed_edac.c
6281
6282 EDAC-BLUEFIELD
6283 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6284 S:      Supported
6285 F:      drivers/edac/bluefield_edac.c
6286
6287 EDAC-CALXEDA
6288 M:      Andre Przywara <andre.przywara@arm.com>
6289 L:      linux-edac@vger.kernel.org
6290 S:      Maintained
6291 F:      drivers/edac/highbank*
6292
6293 EDAC-CAVIUM OCTEON
6294 M:      Ralf Baechle <ralf@linux-mips.org>
6295 L:      linux-edac@vger.kernel.org
6296 L:      linux-mips@vger.kernel.org
6297 S:      Supported
6298 F:      drivers/edac/octeon_edac*
6299
6300 EDAC-CAVIUM THUNDERX
6301 M:      Robert Richter <rric@kernel.org>
6302 L:      linux-edac@vger.kernel.org
6303 S:      Odd Fixes
6304 F:      drivers/edac/thunderx_edac*
6305
6306 EDAC-CORE
6307 M:      Borislav Petkov <bp@alien8.de>
6308 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6309 M:      Tony Luck <tony.luck@intel.com>
6310 R:      James Morse <james.morse@arm.com>
6311 R:      Robert Richter <rric@kernel.org>
6312 L:      linux-edac@vger.kernel.org
6313 S:      Supported
6314 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6315 F:      Documentation/admin-guide/ras.rst
6316 F:      Documentation/driver-api/edac.rst
6317 F:      drivers/edac/
6318 F:      include/linux/edac.h
6319
6320 EDAC-DMC520
6321 M:      Lei Wang <lewan@microsoft.com>
6322 L:      linux-edac@vger.kernel.org
6323 S:      Supported
6324 F:      drivers/edac/dmc520_edac.c
6325
6326 EDAC-E752X
6327 M:      Mark Gross <mark.gross@intel.com>
6328 L:      linux-edac@vger.kernel.org
6329 S:      Maintained
6330 F:      drivers/edac/e752x_edac.c
6331
6332 EDAC-E7XXX
6333 L:      linux-edac@vger.kernel.org
6334 S:      Maintained
6335 F:      drivers/edac/e7xxx_edac.c
6336
6337 EDAC-FSL_DDR
6338 M:      York Sun <york.sun@nxp.com>
6339 L:      linux-edac@vger.kernel.org
6340 S:      Maintained
6341 F:      drivers/edac/fsl_ddr_edac.*
6342
6343 EDAC-GHES
6344 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6345 L:      linux-edac@vger.kernel.org
6346 S:      Maintained
6347 F:      drivers/edac/ghes_edac.c
6348
6349 EDAC-I10NM
6350 M:      Tony Luck <tony.luck@intel.com>
6351 L:      linux-edac@vger.kernel.org
6352 S:      Maintained
6353 F:      drivers/edac/i10nm_base.c
6354
6355 EDAC-I3000
6356 L:      linux-edac@vger.kernel.org
6357 S:      Orphan
6358 F:      drivers/edac/i3000_edac.c
6359
6360 EDAC-I5000
6361 L:      linux-edac@vger.kernel.org
6362 S:      Maintained
6363 F:      drivers/edac/i5000_edac.c
6364
6365 EDAC-I5400
6366 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6367 L:      linux-edac@vger.kernel.org
6368 S:      Maintained
6369 F:      drivers/edac/i5400_edac.c
6370
6371 EDAC-I7300
6372 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6373 L:      linux-edac@vger.kernel.org
6374 S:      Maintained
6375 F:      drivers/edac/i7300_edac.c
6376
6377 EDAC-I7CORE
6378 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6379 L:      linux-edac@vger.kernel.org
6380 S:      Maintained
6381 F:      drivers/edac/i7core_edac.c
6382
6383 EDAC-I82443BXGX
6384 M:      Tim Small <tim@buttersideup.com>
6385 L:      linux-edac@vger.kernel.org
6386 S:      Maintained
6387 F:      drivers/edac/i82443bxgx_edac.c
6388
6389 EDAC-I82975X
6390 M:      "Arvind R." <arvino55@gmail.com>
6391 L:      linux-edac@vger.kernel.org
6392 S:      Maintained
6393 F:      drivers/edac/i82975x_edac.c
6394
6395 EDAC-IE31200
6396 M:      Jason Baron <jbaron@akamai.com>
6397 L:      linux-edac@vger.kernel.org
6398 S:      Maintained
6399 F:      drivers/edac/ie31200_edac.c
6400
6401 EDAC-IGEN6
6402 M:      Tony Luck <tony.luck@intel.com>
6403 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6404 L:      linux-edac@vger.kernel.org
6405 S:      Maintained
6406 F:      drivers/edac/igen6_edac.c
6407
6408 EDAC-MPC85XX
6409 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6410 L:      linux-edac@vger.kernel.org
6411 S:      Maintained
6412 F:      drivers/edac/mpc85xx_edac.[ch]
6413
6414 EDAC-PASEMI
6415 M:      Egor Martovetsky <egor@pasemi.com>
6416 L:      linux-edac@vger.kernel.org
6417 S:      Maintained
6418 F:      drivers/edac/pasemi_edac.c
6419
6420 EDAC-PND2
6421 M:      Tony Luck <tony.luck@intel.com>
6422 L:      linux-edac@vger.kernel.org
6423 S:      Maintained
6424 F:      drivers/edac/pnd2_edac.[ch]
6425
6426 EDAC-QCOM
6427 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6428 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6429 L:      linux-arm-msm@vger.kernel.org
6430 L:      linux-edac@vger.kernel.org
6431 S:      Maintained
6432 F:      drivers/edac/qcom_edac.c
6433
6434 EDAC-R82600
6435 M:      Tim Small <tim@buttersideup.com>
6436 L:      linux-edac@vger.kernel.org
6437 S:      Maintained
6438 F:      drivers/edac/r82600_edac.c
6439
6440 EDAC-SBRIDGE
6441 M:      Tony Luck <tony.luck@intel.com>
6442 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6443 L:      linux-edac@vger.kernel.org
6444 S:      Maintained
6445 F:      drivers/edac/sb_edac.c
6446
6447 EDAC-SIFIVE
6448 M:      Yash Shah <yash.shah@sifive.com>
6449 L:      linux-edac@vger.kernel.org
6450 S:      Supported
6451 F:      drivers/edac/sifive_edac.c
6452
6453 EDAC-SKYLAKE
6454 M:      Tony Luck <tony.luck@intel.com>
6455 L:      linux-edac@vger.kernel.org
6456 S:      Maintained
6457 F:      drivers/edac/skx_*.[ch]
6458
6459 EDAC-TI
6460 M:      Tero Kristo <kristo@kernel.org>
6461 L:      linux-edac@vger.kernel.org
6462 S:      Odd Fixes
6463 F:      drivers/edac/ti_edac.c
6464
6465 EDIROL UA-101/UA-1000 DRIVER
6466 M:      Clemens Ladisch <clemens@ladisch.de>
6467 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6468 S:      Maintained
6469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6470 F:      sound/usb/misc/ua101.c
6471
6472 EFI TEST DRIVER
6473 M:      Ivan Hu <ivan.hu@canonical.com>
6474 M:      Ard Biesheuvel <ardb@kernel.org>
6475 L:      linux-efi@vger.kernel.org
6476 S:      Maintained
6477 F:      drivers/firmware/efi/test/
6478
6479 EFI VARIABLE FILESYSTEM
6480 M:      Matthew Garrett <matthew.garrett@nebula.com>
6481 M:      Jeremy Kerr <jk@ozlabs.org>
6482 M:      Ard Biesheuvel <ardb@kernel.org>
6483 L:      linux-efi@vger.kernel.org
6484 S:      Maintained
6485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6486 F:      fs/efivarfs/
6487
6488 EFIFB FRAMEBUFFER DRIVER
6489 M:      Peter Jones <pjones@redhat.com>
6490 L:      linux-fbdev@vger.kernel.org
6491 S:      Maintained
6492 F:      drivers/video/fbdev/efifb.c
6493
6494 EFS FILESYSTEM
6495 S:      Orphan
6496 W:      http://aeschi.ch.eu.org/efs/
6497 F:      fs/efs/
6498
6499 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6500 M:      Douglas Miller <dougmill@linux.ibm.com>
6501 L:      netdev@vger.kernel.org
6502 S:      Maintained
6503 F:      drivers/net/ethernet/ibm/ehea/
6504
6505 EM28XX VIDEO4LINUX DRIVER
6506 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6507 L:      linux-media@vger.kernel.org
6508 S:      Maintained
6509 W:      https://linuxtv.org
6510 T:      git git://linuxtv.org/media_tree.git
6511 F:      Documentation/admin-guide/media/em28xx*
6512 F:      drivers/media/usb/em28xx/
6513
6514 EMBEDDED LINUX
6515 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6516 M:      Matt Mackall <mpm@selenic.com>
6517 M:      David Woodhouse <dwmw2@infradead.org>
6518 L:      linux-embedded@vger.kernel.org
6519 S:      Maintained
6520
6521 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6522 M:      Adrian Hunter <adrian.hunter@intel.com>
6523 M:      Ritesh Harjani <riteshh@codeaurora.org>
6524 M:      Asutosh Das <asutoshd@codeaurora.org>
6525 L:      linux-mmc@vger.kernel.org
6526 S:      Maintained
6527 F:      drivers/mmc/host/cqhci*
6528
6529 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6530 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6531 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6532 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6533 L:      linux-scsi@vger.kernel.org
6534 S:      Supported
6535 W:      http://www.broadcom.com
6536 F:      drivers/scsi/be2iscsi/
6537
6538 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6539 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6540 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6541 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6542 L:      netdev@vger.kernel.org
6543 S:      Supported
6544 W:      http://www.emulex.com
6545 F:      drivers/net/ethernet/emulex/benet/
6546
6547 EMULEX ONECONNECT ROCE DRIVER
6548 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6549 M:      Devesh Sharma <devesh.sharma@broadcom.com>
6550 L:      linux-rdma@vger.kernel.org
6551 S:      Odd Fixes
6552 W:      http://www.broadcom.com
6553 F:      drivers/infiniband/hw/ocrdma/
6554 F:      include/uapi/rdma/ocrdma-abi.h
6555
6556 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6557 M:      James Smart <james.smart@broadcom.com>
6558 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6559 L:      linux-scsi@vger.kernel.org
6560 S:      Supported
6561 W:      http://www.broadcom.com
6562 F:      drivers/scsi/lpfc/
6563
6564 ENE CB710 FLASH CARD READER DRIVER
6565 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6566 S:      Maintained
6567 F:      drivers/misc/cb710/
6568 F:      drivers/mmc/host/cb710-mmc.*
6569 F:      include/linux/cb710.h
6570
6571 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6572 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6573 S:      Maintained
6574 F:      drivers/media/rc/ene_ir.*
6575
6576 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6577 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6578 L:      linuxppc-dev@lists.ozlabs.org
6579 S:      Maintained
6580 F:      drivers/tty/ehv_bytechan.c
6581
6582 EPSON S1D13XXX FRAMEBUFFER DRIVER
6583 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6584 S:      Maintained
6585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6586 F:      drivers/video/fbdev/s1d13xxxfb.c
6587 F:      include/video/s1d13xxxfb.h
6588
6589 EROFS FILE SYSTEM
6590 M:      Gao Xiang <xiang@kernel.org>
6591 M:      Chao Yu <yuchao0@huawei.com>
6592 L:      linux-erofs@lists.ozlabs.org
6593 S:      Maintained
6594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6595 F:      Documentation/filesystems/erofs.rst
6596 F:      fs/erofs/
6597 F:      include/trace/events/erofs.h
6598
6599 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6600 M:      Jeff Layton <jlayton@kernel.org>
6601 S:      Maintained
6602 F:      include/linux/errseq.h
6603 F:      lib/errseq.c
6604
6605 ET131X NETWORK DRIVER
6606 M:      Mark Einon <mark.einon@gmail.com>
6607 S:      Odd Fixes
6608 F:      drivers/net/ethernet/agere/
6609
6610 ETHERNET BRIDGE
6611 M:      Roopa Prabhu <roopa@nvidia.com>
6612 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
6613 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6614 L:      netdev@vger.kernel.org
6615 S:      Maintained
6616 W:      http://www.linuxfoundation.org/en/Net:Bridge
6617 F:      include/linux/netfilter_bridge/
6618 F:      net/bridge/
6619
6620 ETHERNET PHY LIBRARY
6621 M:      Andrew Lunn <andrew@lunn.ch>
6622 M:      Heiner Kallweit <hkallweit1@gmail.com>
6623 R:      Russell King <linux@armlinux.org.uk>
6624 L:      netdev@vger.kernel.org
6625 S:      Maintained
6626 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6627 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6628 F:      Documentation/devicetree/bindings/net/mdio*
6629 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6630 F:      Documentation/networking/phy.rst
6631 F:      drivers/net/mdio/
6632 F:      drivers/net/mdio/of_mdio.c
6633 F:      drivers/net/pcs/
6634 F:      drivers/net/phy/
6635 F:      drivers/of/of_net.c
6636 F:      include/dt-bindings/net/qca-ar803x.h
6637 F:      include/linux/*mdio*.h
6638 F:      include/linux/mdio/*.h
6639 F:      include/linux/of_net.h
6640 F:      include/linux/phy.h
6641 F:      include/linux/phy_fixed.h
6642 F:      include/linux/platform_data/mdio-bcm-unimac.h
6643 F:      include/linux/platform_data/mdio-gpio.h
6644 F:      include/trace/events/mdio.h
6645 F:      include/uapi/linux/mdio.h
6646 F:      include/uapi/linux/mii.h
6647
6648 EXFAT FILE SYSTEM
6649 M:      Namjae Jeon <namjae.jeon@samsung.com>
6650 M:      Sungjong Seo <sj1557.seo@samsung.com>
6651 L:      linux-fsdevel@vger.kernel.org
6652 S:      Maintained
6653 F:      fs/exfat/
6654
6655 EXT2 FILE SYSTEM
6656 M:      Jan Kara <jack@suse.com>
6657 L:      linux-ext4@vger.kernel.org
6658 S:      Maintained
6659 F:      Documentation/filesystems/ext2.rst
6660 F:      fs/ext2/
6661 F:      include/linux/ext2*
6662
6663 EXT4 FILE SYSTEM
6664 M:      "Theodore Ts'o" <tytso@mit.edu>
6665 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6666 L:      linux-ext4@vger.kernel.org
6667 S:      Maintained
6668 W:      http://ext4.wiki.kernel.org
6669 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6671 F:      Documentation/filesystems/ext4/
6672 F:      fs/ext4/
6673 F:      include/trace/events/ext4.h
6674
6675 Extended Verification Module (EVM)
6676 M:      Mimi Zohar <zohar@linux.ibm.com>
6677 L:      linux-integrity@vger.kernel.org
6678 S:      Supported
6679 F:      security/integrity/evm/
6680
6681 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6682 M:      Ard Biesheuvel <ardb@kernel.org>
6683 L:      linux-efi@vger.kernel.org
6684 S:      Maintained
6685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6686 F:      Documentation/admin-guide/efi-stub.rst
6687 F:      arch/*/include/asm/efi.h
6688 F:      arch/*/kernel/efi.c
6689 F:      arch/arm/boot/compressed/efi-header.S
6690 F:      arch/arm64/kernel/efi-entry.S
6691 F:      arch/x86/platform/efi/
6692 F:      drivers/firmware/efi/
6693 F:      include/linux/efi*.h
6694
6695 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6696 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6697 M:      Chanwoo Choi <cw00.choi@samsung.com>
6698 L:      linux-kernel@vger.kernel.org
6699 S:      Maintained
6700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6701 F:      Documentation/devicetree/bindings/extcon/
6702 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6703 F:      drivers/extcon/
6704 F:      include/linux/extcon.h
6705 F:      include/linux/extcon/
6706
6707 EXTRA BOOT CONFIG
6708 M:      Masami Hiramatsu <mhiramat@kernel.org>
6709 S:      Maintained
6710 F:      Documentation/admin-guide/bootconfig.rst
6711 F:      fs/proc/bootconfig.c
6712 F:      include/linux/bootconfig.h
6713 F:      lib/bootconfig.c
6714 F:      tools/bootconfig/*
6715 F:      tools/bootconfig/scripts/*
6716
6717 EXYNOS DP DRIVER
6718 M:      Jingoo Han <jingoohan1@gmail.com>
6719 L:      dri-devel@lists.freedesktop.org
6720 S:      Maintained
6721 F:      drivers/gpu/drm/exynos/exynos_dp*
6722
6723 EXYNOS SYSMMU (IOMMU) driver
6724 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6725 L:      iommu@lists.linux-foundation.org
6726 S:      Maintained
6727 F:      drivers/iommu/exynos-iommu.c
6728
6729 F2FS FILE SYSTEM
6730 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6731 M:      Chao Yu <yuchao0@huawei.com>
6732 L:      linux-f2fs-devel@lists.sourceforge.net
6733 S:      Maintained
6734 W:      https://f2fs.wiki.kernel.org/
6735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6736 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6737 F:      Documentation/filesystems/f2fs.rst
6738 F:      fs/f2fs/
6739 F:      include/linux/f2fs_fs.h
6740 F:      include/trace/events/f2fs.h
6741 F:      include/uapi/linux/f2fs.h
6742
6743 F71805F HARDWARE MONITORING DRIVER
6744 M:      Jean Delvare <jdelvare@suse.com>
6745 L:      linux-hwmon@vger.kernel.org
6746 S:      Maintained
6747 F:      Documentation/hwmon/f71805f.rst
6748 F:      drivers/hwmon/f71805f.c
6749
6750 FADDR2LINE
6751 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6752 S:      Maintained
6753 F:      scripts/faddr2line
6754
6755 FAILOVER MODULE
6756 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
6757 L:      netdev@vger.kernel.org
6758 S:      Supported
6759 F:      Documentation/networking/failover.rst
6760 F:      include/net/failover.h
6761 F:      net/core/failover.c
6762
6763 FANOTIFY
6764 M:      Jan Kara <jack@suse.cz>
6765 R:      Amir Goldstein <amir73il@gmail.com>
6766 L:      linux-fsdevel@vger.kernel.org
6767 S:      Maintained
6768 F:      fs/notify/fanotify/
6769 F:      include/linux/fanotify.h
6770 F:      include/uapi/linux/fanotify.h
6771
6772 FARSYNC SYNCHRONOUS DRIVER
6773 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
6774 S:      Supported
6775 W:      http://www.farsite.co.uk/
6776 F:      drivers/net/wan/farsync.*
6777
6778 FAULT INJECTION SUPPORT
6779 M:      Akinobu Mita <akinobu.mita@gmail.com>
6780 S:      Supported
6781 F:      Documentation/fault-injection/
6782 F:      lib/fault-inject.c
6783
6784 FBTFT Framebuffer drivers
6785 L:      dri-devel@lists.freedesktop.org
6786 L:      linux-fbdev@vger.kernel.org
6787 S:      Orphan
6788 F:      drivers/staging/fbtft/
6789
6790 FC0011 TUNER DRIVER
6791 M:      Michael Buesch <m@bues.ch>
6792 L:      linux-media@vger.kernel.org
6793 S:      Maintained
6794 F:      drivers/media/tuners/fc0011.c
6795 F:      drivers/media/tuners/fc0011.h
6796
6797 FC2580 MEDIA DRIVER
6798 M:      Antti Palosaari <crope@iki.fi>
6799 L:      linux-media@vger.kernel.org
6800 S:      Maintained
6801 W:      https://linuxtv.org
6802 W:      http://palosaari.fi/linux/
6803 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6804 T:      git git://linuxtv.org/anttip/media_tree.git
6805 F:      drivers/media/tuners/fc2580*
6806
6807 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6808 M:      Hannes Reinecke <hare@suse.de>
6809 L:      linux-scsi@vger.kernel.org
6810 S:      Supported
6811 W:      www.Open-FCoE.org
6812 F:      drivers/scsi/fcoe/
6813 F:      drivers/scsi/libfc/
6814 F:      include/scsi/fc/
6815 F:      include/scsi/libfc.h
6816 F:      include/scsi/libfcoe.h
6817 F:      include/uapi/scsi/fc/
6818
6819 FILE LOCKING (flock() and fcntl()/lockf())
6820 M:      Jeff Layton <jlayton@kernel.org>
6821 M:      "J. Bruce Fields" <bfields@fieldses.org>
6822 L:      linux-fsdevel@vger.kernel.org
6823 S:      Maintained
6824 F:      fs/fcntl.c
6825 F:      fs/locks.c
6826 F:      include/linux/fcntl.h
6827 F:      include/uapi/linux/fcntl.h
6828
6829 FILESYSTEM DIRECT ACCESS (DAX)
6830 M:      Dan Williams <dan.j.williams@intel.com>
6831 R:      Matthew Wilcox <willy@infradead.org>
6832 R:      Jan Kara <jack@suse.cz>
6833 L:      linux-fsdevel@vger.kernel.org
6834 L:      linux-nvdimm@lists.01.org
6835 S:      Supported
6836 F:      fs/dax.c
6837 F:      include/linux/dax.h
6838 F:      include/trace/events/fs_dax.h
6839
6840 FILESYSTEMS (VFS and infrastructure)
6841 M:      Alexander Viro <viro@zeniv.linux.org.uk>
6842 L:      linux-fsdevel@vger.kernel.org
6843 S:      Maintained
6844 F:      fs/*
6845 F:      include/linux/fs.h
6846 F:      include/linux/fs_types.h
6847 F:      include/uapi/linux/fs.h
6848 F:      include/uapi/linux/openat2.h
6849 X:      fs/io-wq.c
6850 X:      fs/io-wq.h
6851 X:      fs/io_uring.c
6852
6853 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6854 M:      Riku Voipio <riku.voipio@iki.fi>
6855 L:      linux-hwmon@vger.kernel.org
6856 S:      Maintained
6857 F:      drivers/hwmon/f75375s.c
6858 F:      include/linux/f75375s.h
6859
6860 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6861 M:      Clemens Ladisch <clemens@ladisch.de>
6862 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
6863 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6864 S:      Maintained
6865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6866 F:      include/uapi/sound/firewire.h
6867 F:      sound/firewire/
6868
6869 FIREWIRE MEDIA DRIVERS (firedtv)
6870 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6871 L:      linux-media@vger.kernel.org
6872 L:      linux1394-devel@lists.sourceforge.net
6873 S:      Maintained
6874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6875 F:      drivers/media/firewire/
6876
6877 FIREWIRE SBP-2 TARGET
6878 M:      Chris Boot <bootc@bootc.net>
6879 L:      linux-scsi@vger.kernel.org
6880 L:      target-devel@vger.kernel.org
6881 L:      linux1394-devel@lists.sourceforge.net
6882 S:      Maintained
6883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6884 F:      drivers/target/sbp/
6885
6886 FIREWIRE SUBSYSTEM
6887 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6888 L:      linux1394-devel@lists.sourceforge.net
6889 S:      Maintained
6890 W:      http://ieee1394.wiki.kernel.org/
6891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6892 F:      drivers/firewire/
6893 F:      include/linux/firewire.h
6894 F:      include/uapi/linux/firewire*.h
6895 F:      tools/firewire/
6896
6897 FIRMWARE LOADER (request_firmware)
6898 M:      Luis Chamberlain <mcgrof@kernel.org>
6899 L:      linux-kernel@vger.kernel.org
6900 S:      Maintained
6901 F:      Documentation/firmware_class/
6902 F:      drivers/base/firmware_loader/
6903 F:      include/linux/firmware.h
6904
6905 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6906 M:      Joshua Morris <josh.h.morris@us.ibm.com>
6907 M:      Philip Kelleher <pjk1939@linux.ibm.com>
6908 S:      Maintained
6909 F:      drivers/block/rsxx/
6910
6911 FLEXTIMER FTM-QUADDEC DRIVER
6912 M:      Patrick Havelange <patrick.havelange@essensium.com>
6913 L:      linux-iio@vger.kernel.org
6914 S:      Maintained
6915 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6916 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6917 F:      drivers/counter/ftm-quaddec.c
6918
6919 FLOPPY DRIVER
6920 M:      Denis Efremov <efremov@linux.com>
6921 L:      linux-block@vger.kernel.org
6922 S:      Odd Fixes
6923 F:      drivers/block/floppy.c
6924
6925 FLYSKY FSIA6B RC RECEIVER
6926 M:      Markus Koch <markus@notsyncing.net>
6927 L:      linux-input@vger.kernel.org
6928 S:      Maintained
6929 F:      drivers/input/joystick/fsia6b.c
6930
6931 FORCEDETH GIGABIT ETHERNET DRIVER
6932 M:      Rain River <rain.1986.08.12@gmail.com>
6933 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
6934 L:      netdev@vger.kernel.org
6935 S:      Maintained
6936 F:      drivers/net/ethernet/nvidia/*
6937
6938 FPGA DFL DRIVERS
6939 M:      Wu Hao <hao.wu@intel.com>
6940 R:      Tom Rix <trix@redhat.com>
6941 L:      linux-fpga@vger.kernel.org
6942 S:      Maintained
6943 F:      Documentation/ABI/testing/sysfs-bus-dfl
6944 F:      Documentation/fpga/dfl.rst
6945 F:      drivers/fpga/dfl*
6946 F:      include/uapi/linux/fpga-dfl.h
6947
6948 FPGA MANAGER FRAMEWORK
6949 M:      Moritz Fischer <mdf@kernel.org>
6950 R:      Tom Rix <trix@redhat.com>
6951 L:      linux-fpga@vger.kernel.org
6952 S:      Maintained
6953 W:      http://www.rocketboards.org
6954 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6956 F:      Documentation/devicetree/bindings/fpga/
6957 F:      Documentation/driver-api/fpga/
6958 F:      Documentation/fpga/
6959 F:      drivers/fpga/
6960 F:      include/linux/fpga/
6961
6962 FPU EMULATOR
6963 M:      Bill Metzenthen <billm@melbpc.org.au>
6964 S:      Maintained
6965 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6966 F:      arch/x86/math-emu/
6967
6968 FRAMEBUFFER LAYER
6969 L:      dri-devel@lists.freedesktop.org
6970 L:      linux-fbdev@vger.kernel.org
6971 S:      Orphan
6972 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6973 T:      git git://anongit.freedesktop.org/drm/drm-misc
6974 F:      Documentation/fb/
6975 F:      drivers/video/
6976 F:      include/linux/fb.h
6977 F:      include/uapi/linux/fb.h
6978 F:      include/uapi/video/
6979 F:      include/video/
6980
6981 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6982 M:      Horia Geantă <horia.geanta@nxp.com>
6983 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
6984 L:      linux-crypto@vger.kernel.org
6985 S:      Maintained
6986 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6987 F:      drivers/crypto/caam/
6988
6989 FREESCALE COLDFIRE M5441X MMC DRIVER
6990 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
6991 L:      linux-mmc@vger.kernel.org
6992 S:      Maintained
6993 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
6994 F:      include/linux/platform_data/mmc-esdhc-mcf.h
6995
6996 FREESCALE DIU FRAMEBUFFER DRIVER
6997 M:      Timur Tabi <timur@kernel.org>
6998 L:      linux-fbdev@vger.kernel.org
6999 S:      Maintained
7000 F:      drivers/video/fbdev/fsl-diu-fb.*
7001
7002 FREESCALE DMA DRIVER
7003 M:      Li Yang <leoyang.li@nxp.com>
7004 M:      Zhang Wei <zw@zh-kernel.org>
7005 L:      linuxppc-dev@lists.ozlabs.org
7006 S:      Maintained
7007 F:      drivers/dma/fsldma.*
7008
7009 FREESCALE DSPI DRIVER
7010 M:      Vladimir Oltean <olteanv@gmail.com>
7011 L:      linux-spi@vger.kernel.org
7012 S:      Maintained
7013 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7014 F:      drivers/spi/spi-fsl-dspi.c
7015 F:      include/linux/spi/spi-fsl-dspi.h
7016
7017 FREESCALE ENETC ETHERNET DRIVERS
7018 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7019 L:      netdev@vger.kernel.org
7020 S:      Maintained
7021 F:      drivers/net/ethernet/freescale/enetc/
7022
7023 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7024 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7025 L:      netdev@vger.kernel.org
7026 S:      Maintained
7027 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7028 F:      drivers/net/ethernet/freescale/gianfar*
7029
7030 FREESCALE GPMI NAND DRIVER
7031 M:      Han Xu <han.xu@nxp.com>
7032 L:      linux-mtd@lists.infradead.org
7033 S:      Maintained
7034 F:      drivers/mtd/nand/raw/gpmi-nand/*
7035
7036 FREESCALE I2C CPM DRIVER
7037 M:      Jochen Friedrich <jochen@scram.de>
7038 L:      linuxppc-dev@lists.ozlabs.org
7039 L:      linux-i2c@vger.kernel.org
7040 S:      Maintained
7041 F:      drivers/i2c/busses/i2c-cpm.c
7042
7043 FREESCALE IMX / MXC FEC DRIVER
7044 M:      Fugang Duan <fugang.duan@nxp.com>
7045 L:      netdev@vger.kernel.org
7046 S:      Maintained
7047 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
7048 F:      drivers/net/ethernet/freescale/fec.h
7049 F:      drivers/net/ethernet/freescale/fec_main.c
7050 F:      drivers/net/ethernet/freescale/fec_ptp.c
7051
7052 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7053 M:      Sascha Hauer <s.hauer@pengutronix.de>
7054 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7055 L:      linux-fbdev@vger.kernel.org
7056 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7057 S:      Maintained
7058 F:      drivers/video/fbdev/imxfb.c
7059 F:      include/linux/platform_data/video-imxfb.h
7060
7061 FREESCALE IMX DDR PMU DRIVER
7062 M:      Frank Li <Frank.li@nxp.com>
7063 L:      linux-arm-kernel@lists.infradead.org
7064 S:      Maintained
7065 F:      Documentation/admin-guide/perf/imx-ddr.rst
7066 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7067 F:      drivers/perf/fsl_imx8_ddr_perf.c
7068
7069 FREESCALE IMX I2C DRIVER
7070 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7071 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7072 L:      linux-i2c@vger.kernel.org
7073 S:      Maintained
7074 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7075 F:      drivers/i2c/busses/i2c-imx.c
7076
7077 FREESCALE IMX LPI2C DRIVER
7078 M:      Dong Aisheng <aisheng.dong@nxp.com>
7079 L:      linux-i2c@vger.kernel.org
7080 L:      linux-imx@nxp.com
7081 S:      Maintained
7082 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7083 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7084
7085 FREESCALE QORIQ DPAA ETHERNET DRIVER
7086 M:      Madalin Bucur <madalin.bucur@nxp.com>
7087 L:      netdev@vger.kernel.org
7088 S:      Maintained
7089 F:      drivers/net/ethernet/freescale/dpaa
7090
7091 FREESCALE QORIQ DPAA FMAN DRIVER
7092 M:      Madalin Bucur <madalin.bucur@nxp.com>
7093 L:      netdev@vger.kernel.org
7094 S:      Maintained
7095 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7096 F:      drivers/net/ethernet/freescale/fman
7097
7098 FREESCALE QORIQ PTP CLOCK DRIVER
7099 M:      Yangbo Lu <yangbo.lu@nxp.com>
7100 L:      netdev@vger.kernel.org
7101 S:      Maintained
7102 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7103 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7104 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7105 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7106 F:      drivers/ptp/ptp_qoriq.c
7107 F:      drivers/ptp/ptp_qoriq_debugfs.c
7108 F:      include/linux/fsl/ptp_qoriq.h
7109
7110 FREESCALE QUAD SPI DRIVER
7111 M:      Han Xu <han.xu@nxp.com>
7112 L:      linux-spi@vger.kernel.org
7113 S:      Maintained
7114 F:      drivers/spi/spi-fsl-qspi.c
7115
7116 FREESCALE QUICC ENGINE LIBRARY
7117 M:      Qiang Zhao <qiang.zhao@nxp.com>
7118 L:      linuxppc-dev@lists.ozlabs.org
7119 S:      Maintained
7120 F:      drivers/soc/fsl/qe/
7121 F:      include/soc/fsl/*qe*.h
7122 F:      include/soc/fsl/*ucc*.h
7123
7124 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7125 M:      Li Yang <leoyang.li@nxp.com>
7126 L:      netdev@vger.kernel.org
7127 L:      linuxppc-dev@lists.ozlabs.org
7128 S:      Maintained
7129 F:      drivers/net/ethernet/freescale/ucc_geth*
7130
7131 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7132 M:      Zhao Qiang <qiang.zhao@nxp.com>
7133 L:      netdev@vger.kernel.org
7134 L:      linuxppc-dev@lists.ozlabs.org
7135 S:      Maintained
7136 F:      drivers/net/wan/fsl_ucc_hdlc*
7137
7138 FREESCALE QUICC ENGINE UCC UART DRIVER
7139 M:      Timur Tabi <timur@kernel.org>
7140 L:      linuxppc-dev@lists.ozlabs.org
7141 S:      Maintained
7142 F:      drivers/tty/serial/ucc_uart.c
7143
7144 FREESCALE SOC DRIVERS
7145 M:      Li Yang <leoyang.li@nxp.com>
7146 L:      linuxppc-dev@lists.ozlabs.org
7147 L:      linux-arm-kernel@lists.infradead.org
7148 S:      Maintained
7149 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
7150 F:      Documentation/devicetree/bindings/soc/fsl/
7151 F:      drivers/soc/fsl/
7152 F:      include/linux/fsl/
7153
7154 FREESCALE SOC FS_ENET DRIVER
7155 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7156 L:      linuxppc-dev@lists.ozlabs.org
7157 L:      netdev@vger.kernel.org
7158 S:      Maintained
7159 F:      drivers/net/ethernet/freescale/fs_enet/
7160 F:      include/linux/fs_enet_pd.h
7161
7162 FREESCALE SOC SOUND DRIVERS
7163 M:      Timur Tabi <timur@kernel.org>
7164 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7165 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7166 R:      Fabio Estevam <festevam@gmail.com>
7167 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7168 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7169 L:      linuxppc-dev@lists.ozlabs.org
7170 S:      Maintained
7171 F:      sound/soc/fsl/fsl*
7172 F:      sound/soc/fsl/imx*
7173 F:      sound/soc/fsl/mpc8610_hpcd.c
7174
7175 FREESCALE USB PERIPHERAL DRIVERS
7176 M:      Li Yang <leoyang.li@nxp.com>
7177 L:      linux-usb@vger.kernel.org
7178 L:      linuxppc-dev@lists.ozlabs.org
7179 S:      Maintained
7180 F:      drivers/usb/gadget/udc/fsl*
7181
7182 FREESCALE USB PHY DRIVER
7183 M:      Ran Wang <ran.wang_1@nxp.com>
7184 L:      linux-usb@vger.kernel.org
7185 L:      linuxppc-dev@lists.ozlabs.org
7186 S:      Maintained
7187 F:      drivers/usb/phy/phy-fsl-usb*
7188
7189 FREEVXFS FILESYSTEM
7190 M:      Christoph Hellwig <hch@infradead.org>
7191 S:      Maintained
7192 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7193 F:      fs/freevxfs/
7194
7195 FREEZER
7196 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7197 M:      Pavel Machek <pavel@ucw.cz>
7198 L:      linux-pm@vger.kernel.org
7199 S:      Supported
7200 F:      Documentation/power/freezing-of-tasks.rst
7201 F:      include/linux/freezer.h
7202 F:      kernel/freezer.c
7203
7204 FRONTSWAP API
7205 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7206 L:      linux-kernel@vger.kernel.org
7207 S:      Maintained
7208 F:      include/linux/frontswap.h
7209 F:      mm/frontswap.c
7210
7211 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7212 M:      David Howells <dhowells@redhat.com>
7213 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7214 S:      Supported
7215 F:      Documentation/filesystems/caching/
7216 F:      fs/fscache/
7217 F:      include/linux/fscache*.h
7218
7219 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7220 M:      Theodore Y. Ts'o <tytso@mit.edu>
7221 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7222 M:      Eric Biggers <ebiggers@kernel.org>
7223 L:      linux-fscrypt@vger.kernel.org
7224 S:      Supported
7225 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7226 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7227 F:      Documentation/filesystems/fscrypt.rst
7228 F:      fs/crypto/
7229 F:      include/linux/fscrypt*.h
7230 F:      include/uapi/linux/fscrypt.h
7231
7232 FSI SUBSYSTEM
7233 M:      Jeremy Kerr <jk@ozlabs.org>
7234 M:      Joel Stanley <joel@jms.id.au>
7235 R:      Alistar Popple <alistair@popple.id.au>
7236 R:      Eddie James <eajames@linux.ibm.com>
7237 L:      linux-fsi@lists.ozlabs.org
7238 S:      Supported
7239 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7241 F:      drivers/fsi/
7242 F:      include/linux/fsi*.h
7243 F:      include/trace/events/fsi*.h
7244
7245 FSI-ATTACHED I2C DRIVER
7246 M:      Eddie James <eajames@linux.ibm.com>
7247 L:      linux-i2c@vger.kernel.org
7248 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7249 S:      Maintained
7250 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7251 F:      drivers/i2c/busses/i2c-fsi.c
7252
7253 FSI-ATTACHED SPI DRIVER
7254 M:      Eddie James <eajames@linux.ibm.com>
7255 L:      linux-spi@vger.kernel.org
7256 S:      Maintained
7257 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7258 F:      drivers/spi/spi-fsi.c
7259
7260 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7261 M:      Jan Kara <jack@suse.cz>
7262 R:      Amir Goldstein <amir73il@gmail.com>
7263 L:      linux-fsdevel@vger.kernel.org
7264 S:      Maintained
7265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7266 F:      fs/notify/
7267 F:      include/linux/fsnotify*.h
7268
7269 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7270 M:      Eric Biggers <ebiggers@kernel.org>
7271 M:      Theodore Y. Ts'o <tytso@mit.edu>
7272 L:      linux-fscrypt@vger.kernel.org
7273 S:      Supported
7274 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7275 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7276 F:      Documentation/filesystems/fsverity.rst
7277 F:      fs/verity/
7278 F:      include/linux/fsverity.h
7279 F:      include/uapi/linux/fsverity.h
7280
7281 FUJITSU LAPTOP EXTRAS
7282 M:      Jonathan Woithe <jwoithe@just42.net>
7283 L:      platform-driver-x86@vger.kernel.org
7284 S:      Maintained
7285 F:      drivers/platform/x86/fujitsu-laptop.c
7286
7287 FUJITSU M-5MO LS CAMERA ISP DRIVER
7288 M:      Kyungmin Park <kyungmin.park@samsung.com>
7289 M:      Heungjun Kim <riverful.kim@samsung.com>
7290 L:      linux-media@vger.kernel.org
7291 S:      Maintained
7292 F:      drivers/media/i2c/m5mols/
7293 F:      include/media/i2c/m5mols.h
7294
7295 FUJITSU TABLET EXTRAS
7296 M:      Robert Gerlach <khnz@gmx.de>
7297 L:      platform-driver-x86@vger.kernel.org
7298 S:      Maintained
7299 F:      drivers/platform/x86/fujitsu-tablet.c
7300
7301 FUSE: FILESYSTEM IN USERSPACE
7302 M:      Miklos Szeredi <miklos@szeredi.hu>
7303 L:      linux-fsdevel@vger.kernel.org
7304 S:      Maintained
7305 W:      https://github.com/libfuse/
7306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7307 F:      Documentation/filesystems/fuse.rst
7308 F:      fs/fuse/
7309 F:      include/uapi/linux/fuse.h
7310
7311 FUTEX SUBSYSTEM
7312 M:      Thomas Gleixner <tglx@linutronix.de>
7313 M:      Ingo Molnar <mingo@redhat.com>
7314 R:      Peter Zijlstra <peterz@infradead.org>
7315 R:      Darren Hart <dvhart@infradead.org>
7316 L:      linux-kernel@vger.kernel.org
7317 S:      Maintained
7318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7319 F:      Documentation/locking/*futex*
7320 F:      include/asm-generic/futex.h
7321 F:      include/linux/futex.h
7322 F:      include/uapi/linux/futex.h
7323 F:      kernel/futex.c
7324 F:      tools/perf/bench/futex*
7325 F:      tools/testing/selftests/futex/
7326
7327 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7328 M:      Tim Harvey <tharvey@gateworks.com>
7329 M:      Robert Jones <rjones@gateworks.com>
7330 S:      Maintained
7331 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7332 F:      drivers/mfd/gateworks-gsc.c
7333 F:      include/linux/mfd/gsc.h
7334 F:      Documentation/hwmon/gsc-hwmon.rst
7335 F:      drivers/hwmon/gsc-hwmon.c
7336 F:      include/linux/platform_data/gsc_hwmon.h
7337
7338 GASKET DRIVER FRAMEWORK
7339 M:      Rob Springer <rspringer@google.com>
7340 M:      Todd Poynor <toddpoynor@google.com>
7341 M:      Ben Chan <benchan@chromium.org>
7342 M:      Richard Yeh <rcy@google.com>
7343 S:      Maintained
7344 F:      drivers/staging/gasket/
7345
7346 GCC PLUGINS
7347 M:      Kees Cook <keescook@chromium.org>
7348 L:      linux-hardening@vger.kernel.org
7349 S:      Maintained
7350 F:      Documentation/kbuild/gcc-plugins.rst
7351 F:      scripts/Makefile.gcc-plugins
7352 F:      scripts/gcc-plugins/
7353
7354 GCOV BASED KERNEL PROFILING
7355 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7356 S:      Maintained
7357 F:      Documentation/dev-tools/gcov.rst
7358 F:      kernel/gcov/
7359
7360 GDB KERNEL DEBUGGING HELPER SCRIPTS
7361 M:      Jan Kiszka <jan.kiszka@siemens.com>
7362 M:      Kieran Bingham <kbingham@kernel.org>
7363 S:      Supported
7364 F:      scripts/gdb/
7365
7366 GDT SCSI DISK ARRAY CONTROLLER DRIVER
7367 M:      Achim Leubner <achim_leubner@adaptec.com>
7368 L:      linux-scsi@vger.kernel.org
7369 S:      Supported
7370 W:      http://www.icp-vortex.com/
7371 F:      drivers/scsi/gdt*
7372
7373 GEMTEK FM RADIO RECEIVER DRIVER
7374 M:      Hans Verkuil <hverkuil@xs4all.nl>
7375 L:      linux-media@vger.kernel.org
7376 S:      Maintained
7377 W:      https://linuxtv.org
7378 T:      git git://linuxtv.org/media_tree.git
7379 F:      drivers/media/radio/radio-gemtek*
7380
7381 GENERIC ARCHITECTURE TOPOLOGY
7382 M:      Sudeep Holla <sudeep.holla@arm.com>
7383 L:      linux-kernel@vger.kernel.org
7384 S:      Maintained
7385 F:      drivers/base/arch_topology.c
7386 F:      include/linux/arch_topology.h
7387
7388 GENERIC ENTRY CODE
7389 M:      Thomas Gleixner <tglx@linutronix.de>
7390 M:      Peter Zijlstra <peterz@infradead.org>
7391 M:      Andy Lutomirski <luto@kernel.org>
7392 L:      linux-kernel@vger.kernel.org
7393 S:      Maintained
7394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7395 F:      include/linux/entry-common.h
7396 F:      include/linux/entry-kvm.h
7397 F:      kernel/entry/
7398
7399 GENERIC GPIO I2C DRIVER
7400 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7401 S:      Supported
7402 F:      drivers/i2c/busses/i2c-gpio.c
7403 F:      include/linux/platform_data/i2c-gpio.h
7404
7405 GENERIC GPIO I2C MULTIPLEXER DRIVER
7406 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7407 L:      linux-i2c@vger.kernel.org
7408 S:      Supported
7409 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7410 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7411 F:      include/linux/platform_data/i2c-mux-gpio.h
7412
7413 GENERIC HDLC (WAN) DRIVERS
7414 M:      Krzysztof Halasa <khc@pm.waw.pl>
7415 S:      Maintained
7416 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7417 F:      drivers/net/wan/c101.c
7418 F:      drivers/net/wan/hd6457*
7419 F:      drivers/net/wan/hdlc*
7420 F:      drivers/net/wan/n2.c
7421 F:      drivers/net/wan/pc300too.c
7422 F:      drivers/net/wan/pci200syn.c
7423 F:      drivers/net/wan/wanxl*
7424
7425 GENERIC INCLUDE/ASM HEADER FILES
7426 M:      Arnd Bergmann <arnd@arndb.de>
7427 L:      linux-arch@vger.kernel.org
7428 S:      Maintained
7429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7430 F:      include/asm-generic/
7431 F:      include/uapi/asm-generic/
7432
7433 GENERIC PHY FRAMEWORK
7434 M:      Kishon Vijay Abraham I <kishon@ti.com>
7435 M:      Vinod Koul <vkoul@kernel.org>
7436 L:      linux-kernel@vger.kernel.org
7437 S:      Supported
7438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7439 F:      Documentation/devicetree/bindings/phy/
7440 F:      drivers/phy/
7441 F:      include/linux/phy/
7442
7443 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7444 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7445 S:      Supported
7446 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7447
7448 GENERIC PM DOMAINS
7449 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7450 M:      Kevin Hilman <khilman@kernel.org>
7451 M:      Ulf Hansson <ulf.hansson@linaro.org>
7452 L:      linux-pm@vger.kernel.org
7453 S:      Supported
7454 F:      Documentation/devicetree/bindings/power/power?domain*
7455 F:      drivers/base/power/domain*.c
7456 F:      include/linux/pm_domain.h
7457
7458 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7459 M:      Eugen Hristev <eugen.hristev@microchip.com>
7460 L:      linux-input@vger.kernel.org
7461 S:      Maintained
7462 F:      drivers/input/touchscreen/resistive-adc-touch.c
7463
7464 GENERIC UIO DRIVER FOR PCI DEVICES
7465 M:      "Michael S. Tsirkin" <mst@redhat.com>
7466 L:      kvm@vger.kernel.org
7467 S:      Supported
7468 F:      drivers/uio/uio_pci_generic.c
7469
7470 GENERIC VDSO LIBRARY
7471 M:      Andy Lutomirski <luto@kernel.org>
7472 M:      Thomas Gleixner <tglx@linutronix.de>
7473 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7474 L:      linux-kernel@vger.kernel.org
7475 S:      Maintained
7476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7477 F:      include/asm-generic/vdso/vsyscall.h
7478 F:      include/vdso/
7479 F:      kernel/time/vsyscall.c
7480 F:      lib/vdso/
7481
7482 GENWQE (IBM Generic Workqueue Card)
7483 M:      Frank Haverkamp <haver@linux.ibm.com>
7484 S:      Supported
7485 F:      drivers/misc/genwqe/
7486
7487 GET_MAINTAINER SCRIPT
7488 M:      Joe Perches <joe@perches.com>
7489 S:      Maintained
7490 F:      scripts/get_maintainer.pl
7491
7492 GFS2 FILE SYSTEM
7493 M:      Bob Peterson <rpeterso@redhat.com>
7494 M:      Andreas Gruenbacher <agruenba@redhat.com>
7495 L:      cluster-devel@redhat.com
7496 S:      Supported
7497 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
7498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7499 F:      Documentation/filesystems/gfs2*
7500 F:      fs/gfs2/
7501 F:      include/uapi/linux/gfs2_ondisk.h
7502
7503 GNSS SUBSYSTEM
7504 M:      Johan Hovold <johan@kernel.org>
7505 S:      Maintained
7506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7507 F:      Documentation/ABI/testing/sysfs-class-gnss
7508 F:      Documentation/devicetree/bindings/gnss/
7509 F:      drivers/gnss/
7510 F:      include/linux/gnss.h
7511
7512 GO7007 MPEG CODEC
7513 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7514 L:      linux-media@vger.kernel.org
7515 S:      Maintained
7516 F:      drivers/media/usb/go7007/
7517
7518 GOODIX TOUCHSCREEN
7519 M:      Bastien Nocera <hadess@hadess.net>
7520 L:      linux-input@vger.kernel.org
7521 S:      Maintained
7522 F:      drivers/input/touchscreen/goodix.c
7523
7524 GOOGLE ETHERNET DRIVERS
7525 M:      Catherine Sullivan <csully@google.com>
7526 R:      Sagi Shahar <sagis@google.com>
7527 R:      Jon Olson <jonolson@google.com>
7528 L:      netdev@vger.kernel.org
7529 S:      Supported
7530 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
7531 F:      drivers/net/ethernet/google
7532
7533 GPD POCKET FAN DRIVER
7534 M:      Hans de Goede <hdegoede@redhat.com>
7535 L:      platform-driver-x86@vger.kernel.org
7536 S:      Maintained
7537 F:      drivers/platform/x86/gpd-pocket-fan.c
7538
7539 GPIO ACPI SUPPORT
7540 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7541 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7542 L:      linux-gpio@vger.kernel.org
7543 L:      linux-acpi@vger.kernel.org
7544 S:      Maintained
7545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
7546 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7547 F:      drivers/gpio/gpiolib-acpi.c
7548 F:      drivers/gpio/gpiolib-acpi.h
7549
7550 GPIO AGGREGATOR
7551 M:      Geert Uytterhoeven <geert+renesas@glider.be>
7552 L:      linux-gpio@vger.kernel.org
7553 S:      Supported
7554 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7555 F:      drivers/gpio/gpio-aggregator.c
7556
7557 GPIO IR Transmitter
7558 M:      Sean Young <sean@mess.org>
7559 L:      linux-media@vger.kernel.org
7560 S:      Maintained
7561 F:      drivers/media/rc/gpio-ir-tx.c
7562
7563 GPIO MOCKUP DRIVER
7564 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7565 L:      linux-gpio@vger.kernel.org
7566 S:      Maintained
7567 F:      drivers/gpio/gpio-mockup.c
7568 F:      tools/testing/selftests/gpio/
7569
7570 GPIO REGMAP
7571 R:      Michael Walle <michael@walle.cc>
7572 S:      Maintained
7573 F:      drivers/gpio/gpio-regmap.c
7574 F:      include/linux/gpio/regmap.h
7575
7576 GPIO SUBSYSTEM
7577 M:      Linus Walleij <linus.walleij@linaro.org>
7578 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7579 L:      linux-gpio@vger.kernel.org
7580 S:      Maintained
7581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7582 F:      Documentation/ABI/obsolete/sysfs-gpio
7583 F:      Documentation/ABI/testing/gpio-cdev
7584 F:      Documentation/admin-guide/gpio/
7585 F:      Documentation/devicetree/bindings/gpio/
7586 F:      Documentation/driver-api/gpio/
7587 F:      drivers/gpio/
7588 F:      include/asm-generic/gpio.h
7589 F:      include/linux/gpio.h
7590 F:      include/linux/gpio/
7591 F:      include/linux/of_gpio.h
7592 F:      include/uapi/linux/gpio.h
7593 F:      tools/gpio/
7594
7595 GRE DEMULTIPLEXER DRIVER
7596 M:      Dmitry Kozlov <xeb@mail.ru>
7597 L:      netdev@vger.kernel.org
7598 S:      Maintained
7599 F:      include/net/gre.h
7600 F:      net/ipv4/gre_demux.c
7601 F:      net/ipv4/gre_offload.c
7602
7603 GRETH 10/100/1G Ethernet MAC device driver
7604 M:      Andreas Larsson <andreas@gaisler.com>
7605 L:      netdev@vger.kernel.org
7606 S:      Maintained
7607 F:      drivers/net/ethernet/aeroflex/
7608
7609 GREYBUS AUDIO PROTOCOLS DRIVERS
7610 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7611 M:      Mark Greer <mgreer@animalcreek.com>
7612 S:      Maintained
7613 F:      drivers/staging/greybus/audio_apbridgea.c
7614 F:      drivers/staging/greybus/audio_apbridgea.h
7615 F:      drivers/staging/greybus/audio_codec.c
7616 F:      drivers/staging/greybus/audio_codec.h
7617 F:      drivers/staging/greybus/audio_gb.c
7618 F:      drivers/staging/greybus/audio_manager.c
7619 F:      drivers/staging/greybus/audio_manager.h
7620 F:      drivers/staging/greybus/audio_manager_module.c
7621 F:      drivers/staging/greybus/audio_manager_private.h
7622 F:      drivers/staging/greybus/audio_manager_sysfs.c
7623 F:      drivers/staging/greybus/audio_module.c
7624 F:      drivers/staging/greybus/audio_topology.c
7625
7626 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7627 M:      Viresh Kumar <vireshk@kernel.org>
7628 S:      Maintained
7629 F:      drivers/staging/greybus/authentication.c
7630 F:      drivers/staging/greybus/bootrom.c
7631 F:      drivers/staging/greybus/firmware.h
7632 F:      drivers/staging/greybus/fw-core.c
7633 F:      drivers/staging/greybus/fw-download.c
7634 F:      drivers/staging/greybus/fw-management.c
7635 F:      drivers/staging/greybus/greybus_authentication.h
7636 F:      drivers/staging/greybus/greybus_firmware.h
7637 F:      drivers/staging/greybus/hid.c
7638 F:      drivers/staging/greybus/i2c.c
7639 F:      drivers/staging/greybus/spi.c
7640 F:      drivers/staging/greybus/spilib.c
7641 F:      drivers/staging/greybus/spilib.h
7642
7643 GREYBUS LOOPBACK DRIVER
7644 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7645 S:      Maintained
7646 F:      drivers/staging/greybus/loopback.c
7647
7648 GREYBUS PLATFORM DRIVERS
7649 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7650 S:      Maintained
7651 F:      drivers/staging/greybus/arche-apb-ctrl.c
7652 F:      drivers/staging/greybus/arche-platform.c
7653 F:      drivers/staging/greybus/arche_platform.h
7654
7655 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7656 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7657 S:      Maintained
7658 F:      drivers/staging/greybus/gpio.c
7659 F:      drivers/staging/greybus/light.c
7660 F:      drivers/staging/greybus/power_supply.c
7661 F:      drivers/staging/greybus/sdio.c
7662 F:      drivers/staging/greybus/spi.c
7663 F:      drivers/staging/greybus/spilib.c
7664
7665 GREYBUS SUBSYSTEM
7666 M:      Johan Hovold <johan@kernel.org>
7667 M:      Alex Elder <elder@kernel.org>
7668 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7669 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7670 S:      Maintained
7671 F:      drivers/greybus/
7672 F:      drivers/staging/greybus/
7673 F:      include/linux/greybus.h
7674 F:      include/linux/greybus/
7675
7676 GREYBUS UART PROTOCOLS DRIVERS
7677 M:      David Lin <dtwlin@gmail.com>
7678 S:      Maintained
7679 F:      drivers/staging/greybus/log.c
7680 F:      drivers/staging/greybus/uart.c
7681
7682 GS1662 VIDEO SERIALIZER
7683 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7684 L:      linux-media@vger.kernel.org
7685 S:      Maintained
7686 T:      git git://linuxtv.org/media_tree.git
7687 F:      drivers/media/spi/gs1662.c
7688
7689 GSPCA FINEPIX SUBDRIVER
7690 M:      Frank Zago <frank@zago.net>
7691 L:      linux-media@vger.kernel.org
7692 S:      Maintained
7693 T:      git git://linuxtv.org/media_tree.git
7694 F:      drivers/media/usb/gspca/finepix.c
7695
7696 GSPCA GL860 SUBDRIVER
7697 M:      Olivier Lorin <o.lorin@laposte.net>
7698 L:      linux-media@vger.kernel.org
7699 S:      Maintained
7700 T:      git git://linuxtv.org/media_tree.git
7701 F:      drivers/media/usb/gspca/gl860/
7702
7703 GSPCA M5602 SUBDRIVER
7704 M:      Erik Andren <erik.andren@gmail.com>
7705 L:      linux-media@vger.kernel.org
7706 S:      Maintained
7707 T:      git git://linuxtv.org/media_tree.git
7708 F:      drivers/media/usb/gspca/m5602/
7709
7710 GSPCA PAC207 SONIXB SUBDRIVER
7711 M:      Hans Verkuil <hverkuil@xs4all.nl>
7712 L:      linux-media@vger.kernel.org
7713 S:      Odd Fixes
7714 T:      git git://linuxtv.org/media_tree.git
7715 F:      drivers/media/usb/gspca/pac207.c
7716
7717 GSPCA SN9C20X SUBDRIVER
7718 M:      Brian Johnson <brijohn@gmail.com>
7719 L:      linux-media@vger.kernel.org
7720 S:      Maintained
7721 T:      git git://linuxtv.org/media_tree.git
7722 F:      drivers/media/usb/gspca/sn9c20x.c
7723
7724 GSPCA T613 SUBDRIVER
7725 M:      Leandro Costantino <lcostantino@gmail.com>
7726 L:      linux-media@vger.kernel.org
7727 S:      Maintained
7728 T:      git git://linuxtv.org/media_tree.git
7729 F:      drivers/media/usb/gspca/t613.c
7730
7731 GSPCA USB WEBCAM DRIVER
7732 M:      Hans Verkuil <hverkuil@xs4all.nl>
7733 L:      linux-media@vger.kernel.org
7734 S:      Odd Fixes
7735 T:      git git://linuxtv.org/media_tree.git
7736 F:      drivers/media/usb/gspca/
7737
7738 GTP (GPRS Tunneling Protocol)
7739 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7740 M:      Harald Welte <laforge@gnumonks.org>
7741 L:      osmocom-net-gprs@lists.osmocom.org
7742 S:      Maintained
7743 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7744 F:      drivers/net/gtp.c
7745
7746 GUID PARTITION TABLE (GPT)
7747 M:      Davidlohr Bueso <dave@stgolabs.net>
7748 L:      linux-efi@vger.kernel.org
7749 S:      Maintained
7750 F:      block/partitions/efi.*
7751
7752 H8/300 ARCHITECTURE
7753 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
7754 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7755 S:      Maintained
7756 W:      http://uclinux-h8.sourceforge.jp
7757 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7758 F:      arch/h8300/
7759 F:      drivers/clk/h8300/
7760 F:      drivers/clocksource/h8300_*.c
7761 F:      drivers/irqchip/irq-renesas-h8*.c
7762
7763 HABANALABS PCI DRIVER
7764 M:      Oded Gabbay <ogabbay@kernel.org>
7765 S:      Supported
7766 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
7767 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7768 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7769 F:      drivers/misc/habanalabs/
7770 F:      include/uapi/misc/habanalabs.h
7771
7772 HACKRF MEDIA DRIVER
7773 M:      Antti Palosaari <crope@iki.fi>
7774 L:      linux-media@vger.kernel.org
7775 S:      Maintained
7776 W:      https://linuxtv.org
7777 W:      http://palosaari.fi/linux/
7778 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7779 T:      git git://linuxtv.org/anttip/media_tree.git
7780 F:      drivers/media/usb/hackrf/
7781
7782 HANTRO VPU CODEC DRIVER
7783 M:      Ezequiel Garcia <ezequiel@collabora.com>
7784 M:      Philipp Zabel <p.zabel@pengutronix.de>
7785 L:      linux-media@vger.kernel.org
7786 L:      linux-rockchip@lists.infradead.org
7787 S:      Maintained
7788 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
7789 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
7790 F:      drivers/staging/media/hantro/
7791
7792 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7793 M:      Frank Seidel <frank@f-seidel.de>
7794 L:      platform-driver-x86@vger.kernel.org
7795 S:      Maintained
7796 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7797 F:      drivers/platform/x86/hdaps.c
7798
7799 HARDWARE MONITORING
7800 M:      Jean Delvare <jdelvare@suse.com>
7801 M:      Guenter Roeck <linux@roeck-us.net>
7802 L:      linux-hwmon@vger.kernel.org
7803 S:      Maintained
7804 W:      http://hwmon.wiki.kernel.org/
7805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7806 F:      Documentation/devicetree/bindings/hwmon/
7807 F:      Documentation/hwmon/
7808 F:      drivers/hwmon/
7809 F:      include/linux/hwmon*.h
7810 F:      include/trace/events/hwmon*.h
7811
7812 HARDWARE RANDOM NUMBER GENERATOR CORE
7813 M:      Matt Mackall <mpm@selenic.com>
7814 M:      Herbert Xu <herbert@gondor.apana.org.au>
7815 L:      linux-crypto@vger.kernel.org
7816 S:      Odd fixes
7817 F:      Documentation/admin-guide/hw_random.rst
7818 F:      Documentation/devicetree/bindings/rng/
7819 F:      drivers/char/hw_random/
7820 F:      include/linux/hw_random.h
7821
7822 HARDWARE SPINLOCK CORE
7823 M:      Ohad Ben-Cohen <ohad@wizery.com>
7824 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
7825 R:      Baolin Wang <baolin.wang7@gmail.com>
7826 L:      linux-remoteproc@vger.kernel.org
7827 S:      Maintained
7828 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7829 F:      Documentation/devicetree/bindings/hwlock/
7830 F:      Documentation/locking/hwspinlock.rst
7831 F:      drivers/hwspinlock/
7832 F:      include/linux/hwspinlock.h
7833
7834 HARDWARE TRACING FACILITIES
7835 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7836 S:      Maintained
7837 F:      drivers/hwtracing/
7838
7839 HARMONY SOUND DRIVER
7840 L:      linux-parisc@vger.kernel.org
7841 S:      Maintained
7842 F:      sound/parisc/harmony.*
7843
7844 HDPVR USB VIDEO ENCODER DRIVER
7845 M:      Hans Verkuil <hverkuil@xs4all.nl>
7846 L:      linux-media@vger.kernel.org
7847 S:      Odd Fixes
7848 W:      https://linuxtv.org
7849 T:      git git://linuxtv.org/media_tree.git
7850 F:      drivers/media/usb/hdpvr/
7851
7852 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7853 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
7854 S:      Supported
7855 F:      Documentation/watchdog/hpwdt.rst
7856 F:      drivers/watchdog/hpwdt.c
7857
7858 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7859 M:      Don Brace <don.brace@microchip.com>
7860 L:      storagedev@microchip.com
7861 L:      linux-scsi@vger.kernel.org
7862 S:      Supported
7863 F:      Documentation/scsi/hpsa.rst
7864 F:      drivers/scsi/hpsa*.[ch]
7865 F:      include/linux/cciss*.h
7866 F:      include/uapi/linux/cciss*.h
7867
7868 HFI1 DRIVER
7869 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
7870 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
7871 L:      linux-rdma@vger.kernel.org
7872 S:      Supported
7873 F:      drivers/infiniband/hw/hfi1
7874
7875 HFS FILESYSTEM
7876 L:      linux-fsdevel@vger.kernel.org
7877 S:      Orphan
7878 F:      Documentation/filesystems/hfs.rst
7879 F:      fs/hfs/
7880
7881 HFSPLUS FILESYSTEM
7882 L:      linux-fsdevel@vger.kernel.org
7883 S:      Orphan
7884 F:      Documentation/filesystems/hfsplus.rst
7885 F:      fs/hfsplus/
7886
7887 HGA FRAMEBUFFER DRIVER
7888 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7889 L:      linux-nvidia@lists.surfsouth.com
7890 S:      Maintained
7891 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7892 F:      drivers/video/fbdev/hgafb.c
7893
7894 HIBERNATION (aka Software Suspend, aka swsusp)
7895 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7896 M:      Pavel Machek <pavel@ucw.cz>
7897 L:      linux-pm@vger.kernel.org
7898 S:      Supported
7899 B:      https://bugzilla.kernel.org
7900 F:      arch/*/include/asm/suspend*.h
7901 F:      arch/x86/power/
7902 F:      drivers/base/power/
7903 F:      include/linux/freezer.h
7904 F:      include/linux/pm.h
7905 F:      include/linux/suspend.h
7906 F:      kernel/power/
7907
7908 HID CORE LAYER
7909 M:      Jiri Kosina <jikos@kernel.org>
7910 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
7911 L:      linux-input@vger.kernel.org
7912 S:      Maintained
7913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7914 F:      drivers/hid/
7915 F:      include/linux/hid*
7916 F:      include/uapi/linux/hid*
7917
7918 HID SENSOR HUB DRIVERS
7919 M:      Jiri Kosina <jikos@kernel.org>
7920 M:      Jonathan Cameron <jic23@kernel.org>
7921 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7922 L:      linux-input@vger.kernel.org
7923 L:      linux-iio@vger.kernel.org
7924 S:      Maintained
7925 F:      Documentation/hid/hid-sensor*
7926 F:      drivers/hid/hid-sensor-*
7927 F:      drivers/iio/*/hid-*
7928 F:      include/linux/hid-sensor-*
7929
7930 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7931 M:      Thomas Gleixner <tglx@linutronix.de>
7932 L:      linux-kernel@vger.kernel.org
7933 S:      Maintained
7934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7935 F:      Documentation/timers/
7936 F:      include/linux/clockchips.h
7937 F:      include/linux/hrtimer.h
7938 F:      kernel/time/clockevents.c
7939 F:      kernel/time/hrtimer.c
7940 F:      kernel/time/timer_*.c
7941
7942 HIGH-SPEED SCC DRIVER FOR AX.25
7943 L:      linux-hams@vger.kernel.org
7944 S:      Orphan
7945 F:      drivers/net/hamradio/dmascc.c
7946 F:      drivers/net/hamradio/scc.c
7947
7948 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7949 M:      HighPoint Linux Team <linux@highpoint-tech.com>
7950 S:      Supported
7951 W:      http://www.highpoint-tech.com
7952 F:      Documentation/scsi/hptiop.rst
7953 F:      drivers/scsi/hptiop.c
7954
7955 HIPPI
7956 M:      Jes Sorensen <jes@trained-monkey.org>
7957 L:      linux-hippi@sunsite.dk
7958 S:      Maintained
7959 F:      drivers/net/hippi/
7960 F:      include/linux/hippidevice.h
7961 F:      include/uapi/linux/if_hippi.h
7962 F:      net/802/hippi.c
7963
7964 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
7965 M:      Kurt Kanzenbach <kurt@linutronix.de>
7966 L:      netdev@vger.kernel.org
7967 S:      Maintained
7968 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
7969 F:      drivers/net/dsa/hirschmann/*
7970 F:      include/linux/platform_data/hirschmann-hellcreek.h
7971 F:      net/dsa/tag_hellcreek.c
7972
7973 HISILICON DMA DRIVER
7974 M:      Zhou Wang <wangzhou1@hisilicon.com>
7975 L:      dmaengine@vger.kernel.org
7976 S:      Maintained
7977 F:      drivers/dma/hisi_dma.c
7978
7979 HISILICON GPIO DRIVER
7980 M:      Luo Jiaxing <luojiaxing@huawei.com>
7981 L:      linux-gpio@vger.kernel.org
7982 S:      Maintained
7983 F:      drivers/gpio/gpio-hisi.c
7984
7985 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7986 M:      Zaibo Xu <xuzaibo@huawei.com>
7987 L:      linux-crypto@vger.kernel.org
7988 S:      Maintained
7989 F:      Documentation/ABI/testing/debugfs-hisi-hpre
7990 F:      drivers/crypto/hisilicon/hpre/hpre.h
7991 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
7992 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
7993
7994 HISILICON LPC BUS DRIVER
7995 M:      john.garry@huawei.com
7996 S:      Maintained
7997 W:      http://www.hisilicon.com
7998 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
7999 F:      drivers/bus/hisi_lpc.c
8000
8001 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8002 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8003 M:      Salil Mehta <salil.mehta@huawei.com>
8004 L:      netdev@vger.kernel.org
8005 S:      Maintained
8006 W:      http://www.hisilicon.com
8007 F:      drivers/net/ethernet/hisilicon/hns3/
8008
8009 HISILICON NETWORK SUBSYSTEM DRIVER
8010 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8011 M:      Salil Mehta <salil.mehta@huawei.com>
8012 L:      netdev@vger.kernel.org
8013 S:      Maintained
8014 W:      http://www.hisilicon.com
8015 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8016 F:      drivers/net/ethernet/hisilicon/
8017
8018 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8019 M:      John Stultz <john.stultz@linaro.org>
8020 L:      linux-kernel@vger.kernel.org
8021 S:      Maintained
8022 F:      drivers/misc/hisi_hikey_usb.c
8023 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8024
8025 HISILICON PMU DRIVER
8026 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8027 S:      Supported
8028 W:      http://www.hisilicon.com
8029 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8030 F:      drivers/perf/hisilicon
8031
8032 HISILICON QM AND ZIP Controller DRIVER
8033 M:      Zhou Wang <wangzhou1@hisilicon.com>
8034 L:      linux-crypto@vger.kernel.org
8035 S:      Maintained
8036 F:      Documentation/ABI/testing/debugfs-hisi-zip
8037 F:      drivers/crypto/hisilicon/qm.c
8038 F:      drivers/crypto/hisilicon/qm.h
8039 F:      drivers/crypto/hisilicon/sgl.c
8040 F:      drivers/crypto/hisilicon/zip/
8041
8042 HISILICON ROCE DRIVER
8043 M:      Lijun Ou <oulijun@huawei.com>
8044 M:      Wei Hu(Xavier) <huwei87@hisilicon.com>
8045 M:      Weihang Li <liweihang@huawei.com>
8046 L:      linux-rdma@vger.kernel.org
8047 S:      Maintained
8048 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8049 F:      drivers/infiniband/hw/hns/
8050
8051 HISILICON SAS Controller
8052 M:      John Garry <john.garry@huawei.com>
8053 S:      Supported
8054 W:      http://www.hisilicon.com
8055 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8056 F:      drivers/scsi/hisi_sas/
8057
8058 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8059 M:      Zaibo Xu <xuzaibo@huawei.com>
8060 L:      linux-crypto@vger.kernel.org
8061 S:      Maintained
8062 F:      Documentation/ABI/testing/debugfs-hisi-sec
8063 F:      drivers/crypto/hisilicon/sec2/sec.h
8064 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8065 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8066 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8067
8068 HISILICON STAGING DRIVERS FOR HIKEY 960/970
8069 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8070 L:      devel@driverdev.osuosl.org
8071 S:      Maintained
8072 F:      drivers/staging/hikey9xx/
8073
8074 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8075 M:      Zaibo Xu <xuzaibo@huawei.com>
8076 S:      Maintained
8077 F:      drivers/crypto/hisilicon/trng/trng.c
8078
8079 HISILICON V3XX SPI NOR FLASH Controller Driver
8080 M:      John Garry <john.garry@huawei.com>
8081 S:      Maintained
8082 W:      http://www.hisilicon.com
8083 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8084
8085 HMM - Heterogeneous Memory Management
8086 M:      Jérôme Glisse <jglisse@redhat.com>
8087 L:      linux-mm@kvack.org
8088 S:      Maintained
8089 F:      Documentation/vm/hmm.rst
8090 F:      include/linux/hmm*
8091 F:      lib/test_hmm*
8092 F:      mm/hmm*
8093 F:      tools/testing/selftests/vm/*hmm*
8094
8095 HOST AP DRIVER
8096 M:      Jouni Malinen <j@w1.fi>
8097 L:      linux-wireless@vger.kernel.org
8098 S:      Obsolete
8099 W:      http://w1.fi/hostap-driver.html
8100 F:      drivers/net/wireless/intersil/hostap/
8101
8102 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8103 L:      platform-driver-x86@vger.kernel.org
8104 S:      Orphan
8105 F:      drivers/platform/x86/tc1100-wmi.c
8106
8107 HPET:   High Precision Event Timers driver
8108 M:      Clemens Ladisch <clemens@ladisch.de>
8109 S:      Maintained
8110 F:      Documentation/timers/hpet.rst
8111 F:      drivers/char/hpet.c
8112 F:      include/linux/hpet.h
8113 F:      include/uapi/linux/hpet.h
8114
8115 HPET:   x86
8116 S:      Orphan
8117 F:      arch/x86/include/asm/hpet.h
8118 F:      arch/x86/kernel/hpet.c
8119
8120 HPFS FILESYSTEM
8121 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8122 S:      Maintained
8123 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8124 F:      fs/hpfs/
8125
8126 HSI SUBSYSTEM
8127 M:      Sebastian Reichel <sre@kernel.org>
8128 S:      Maintained
8129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8130 F:      Documentation/ABI/testing/sysfs-bus-hsi
8131 F:      Documentation/driver-api/hsi.rst
8132 F:      drivers/hsi/
8133 F:      include/linux/hsi/
8134 F:      include/uapi/linux/hsi/
8135
8136 HSO 3G MODEM DRIVER
8137 L:      linux-usb@vger.kernel.org
8138 S:      Orphan
8139 F:      drivers/net/usb/hso.c
8140
8141 HSR NETWORK PROTOCOL
8142 L:      netdev@vger.kernel.org
8143 S:      Orphan
8144 F:      net/hsr/
8145
8146 HT16K33 LED CONTROLLER DRIVER
8147 M:      Robin van der Gracht <robin@protonic.nl>
8148 S:      Maintained
8149 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8150 F:      drivers/auxdisplay/ht16k33.c
8151
8152 HTCPEN TOUCHSCREEN DRIVER
8153 M:      Pau Oliva Fora <pof@eslack.org>
8154 L:      linux-input@vger.kernel.org
8155 S:      Maintained
8156 F:      drivers/input/touchscreen/htcpen.c
8157
8158 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8159 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8160 L:      linux-iio@vger.kernel.org
8161 S:      Maintained
8162 W:      http://www.st.com/
8163 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
8164 F:      drivers/iio/humidity/hts221*
8165
8166 HUAWEI ETHERNET DRIVER
8167 M:      Bin Luo <luobin9@huawei.com>
8168 L:      netdev@vger.kernel.org
8169 S:      Supported
8170 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8171 F:      drivers/net/ethernet/huawei/hinic/
8172
8173 HUGETLB FILESYSTEM
8174 M:      Mike Kravetz <mike.kravetz@oracle.com>
8175 L:      linux-mm@kvack.org
8176 S:      Maintained
8177 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8178 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8179 F:      Documentation/vm/hugetlbfs_reserv.rst
8180 F:      fs/hugetlbfs/
8181 F:      include/linux/hugetlb.h
8182 F:      mm/hugetlb.c
8183
8184 HVA ST MEDIA DRIVER
8185 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
8186 L:      linux-media@vger.kernel.org
8187 S:      Supported
8188 W:      https://linuxtv.org
8189 T:      git git://linuxtv.org/media_tree.git
8190 F:      drivers/media/platform/sti/hva
8191
8192 HWPOISON MEMORY FAILURE HANDLING
8193 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8194 L:      linux-mm@kvack.org
8195 S:      Maintained
8196 F:      mm/hwpoison-inject.c
8197 F:      mm/memory-failure.c
8198
8199 HYGON PROCESSOR SUPPORT
8200 M:      Pu Wen <puwen@hygon.cn>
8201 L:      linux-kernel@vger.kernel.org
8202 S:      Maintained
8203 F:      arch/x86/kernel/cpu/hygon.c
8204
8205 HYNIX HI556 SENSOR DRIVER
8206 M:      Shawn Tu <shawnx.tu@intel.com>
8207 L:      linux-media@vger.kernel.org
8208 S:      Maintained
8209 T:      git git://linuxtv.org/media_tree.git
8210 F:      drivers/media/i2c/hi556.c
8211
8212 Hyper-V CORE AND DRIVERS
8213 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8214 M:      Haiyang Zhang <haiyangz@microsoft.com>
8215 M:      Stephen Hemminger <sthemmin@microsoft.com>
8216 M:      Wei Liu <wei.liu@kernel.org>
8217 L:      linux-hyperv@vger.kernel.org
8218 S:      Supported
8219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8220 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8221 F:      Documentation/ABI/testing/debugfs-hyperv
8222 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8223 F:      arch/x86/hyperv
8224 F:      arch/x86/include/asm/hyperv-tlfs.h
8225 F:      arch/x86/include/asm/mshyperv.h
8226 F:      arch/x86/include/asm/trace/hyperv.h
8227 F:      arch/x86/kernel/cpu/mshyperv.c
8228 F:      drivers/clocksource/hyperv_timer.c
8229 F:      drivers/hid/hid-hyperv.c
8230 F:      drivers/hv/
8231 F:      drivers/input/serio/hyperv-keyboard.c
8232 F:      drivers/iommu/hyperv-iommu.c
8233 F:      drivers/net/hyperv/
8234 F:      drivers/pci/controller/pci-hyperv-intf.c
8235 F:      drivers/pci/controller/pci-hyperv.c
8236 F:      drivers/scsi/storvsc_drv.c
8237 F:      drivers/uio/uio_hv_generic.c
8238 F:      drivers/video/fbdev/hyperv_fb.c
8239 F:      include/asm-generic/hyperv-tlfs.h
8240 F:      include/asm-generic/mshyperv.h
8241 F:      include/clocksource/hyperv_timer.h
8242 F:      include/linux/hyperv.h
8243 F:      include/uapi/linux/hyperv.h
8244 F:      net/vmw_vsock/hyperv_transport.c
8245 F:      tools/hv/
8246
8247 HYPERBUS SUPPORT
8248 M:      Vignesh Raghavendra <vigneshr@ti.com>
8249 L:      linux-mtd@lists.infradead.org
8250 S:      Supported
8251 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8252 C:      irc://irc.oftc.net/mtd
8253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8254 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8255 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8256 F:      drivers/mtd/hyperbus/
8257 F:      include/linux/mtd/hyperbus.h
8258
8259 HYPERVISOR VIRTUAL CONSOLE DRIVER
8260 L:      linuxppc-dev@lists.ozlabs.org
8261 S:      Odd Fixes
8262 F:      drivers/tty/hvc/
8263
8264 I2C ACPI SUPPORT
8265 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8266 L:      linux-i2c@vger.kernel.org
8267 L:      linux-acpi@vger.kernel.org
8268 S:      Maintained
8269 F:      drivers/i2c/i2c-core-acpi.c
8270
8271 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8272 M:      Ajay Gupta <ajayg@nvidia.com>
8273 L:      linux-i2c@vger.kernel.org
8274 S:      Maintained
8275 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8276 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8277
8278 I2C MUXES
8279 M:      Peter Rosin <peda@axentia.se>
8280 L:      linux-i2c@vger.kernel.org
8281 S:      Maintained
8282 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8283 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8284 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8285 F:      Documentation/i2c/i2c-topology.rst
8286 F:      Documentation/i2c/muxes/
8287 F:      drivers/i2c/i2c-mux.c
8288 F:      drivers/i2c/muxes/
8289 F:      include/linux/i2c-mux.h
8290
8291 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8292 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8293 L:      linux-i2c@vger.kernel.org
8294 S:      Maintained
8295 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8296 F:      drivers/i2c/busses/i2c-mv64xxx.c
8297
8298 I2C OVER PARALLEL PORT
8299 M:      Jean Delvare <jdelvare@suse.com>
8300 L:      linux-i2c@vger.kernel.org
8301 S:      Maintained
8302 F:      Documentation/i2c/busses/i2c-parport.rst
8303 F:      drivers/i2c/busses/i2c-parport.c
8304
8305 I2C SUBSYSTEM
8306 M:      Wolfram Sang <wsa@kernel.org>
8307 L:      linux-i2c@vger.kernel.org
8308 S:      Maintained
8309 W:      https://i2c.wiki.kernel.org/
8310 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8312 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8313 F:      Documentation/i2c/
8314 F:      drivers/i2c/*
8315 F:      include/linux/i2c-dev.h
8316 F:      include/linux/i2c-smbus.h
8317 F:      include/linux/i2c.h
8318 F:      include/uapi/linux/i2c-*.h
8319 F:      include/uapi/linux/i2c.h
8320
8321 I2C SUBSYSTEM HOST DRIVERS
8322 L:      linux-i2c@vger.kernel.org
8323 S:      Odd Fixes
8324 W:      https://i2c.wiki.kernel.org/
8325 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8327 F:      Documentation/devicetree/bindings/i2c/
8328 F:      drivers/i2c/algos/
8329 F:      drivers/i2c/busses/
8330
8331 I2C-TAOS-EVM DRIVER
8332 M:      Jean Delvare <jdelvare@suse.com>
8333 L:      linux-i2c@vger.kernel.org
8334 S:      Maintained
8335 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8336 F:      drivers/i2c/busses/i2c-taos-evm.c
8337
8338 I2C-TINY-USB DRIVER
8339 M:      Till Harbaum <till@harbaum.org>
8340 L:      linux-i2c@vger.kernel.org
8341 S:      Maintained
8342 W:      http://www.harbaum.org/till/i2c_tiny_usb
8343 F:      drivers/i2c/busses/i2c-tiny-usb.c
8344
8345 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8346 M:      Jean Delvare <jdelvare@suse.com>
8347 L:      linux-i2c@vger.kernel.org
8348 S:      Maintained
8349 F:      Documentation/i2c/busses/i2c-ali1535.rst
8350 F:      Documentation/i2c/busses/i2c-ali1563.rst
8351 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8352 F:      Documentation/i2c/busses/i2c-amd756.rst
8353 F:      Documentation/i2c/busses/i2c-amd8111.rst
8354 F:      Documentation/i2c/busses/i2c-i801.rst
8355 F:      Documentation/i2c/busses/i2c-nforce2.rst
8356 F:      Documentation/i2c/busses/i2c-piix4.rst
8357 F:      Documentation/i2c/busses/i2c-sis5595.rst
8358 F:      Documentation/i2c/busses/i2c-sis630.rst
8359 F:      Documentation/i2c/busses/i2c-sis96x.rst
8360 F:      Documentation/i2c/busses/i2c-via.rst
8361 F:      Documentation/i2c/busses/i2c-viapro.rst
8362 F:      drivers/i2c/busses/i2c-ali1535.c
8363 F:      drivers/i2c/busses/i2c-ali1563.c
8364 F:      drivers/i2c/busses/i2c-ali15x3.c
8365 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8366 F:      drivers/i2c/busses/i2c-amd756.c
8367 F:      drivers/i2c/busses/i2c-amd8111.c
8368 F:      drivers/i2c/busses/i2c-i801.c
8369 F:      drivers/i2c/busses/i2c-isch.c
8370 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8371 F:      drivers/i2c/busses/i2c-nforce2.c
8372 F:      drivers/i2c/busses/i2c-piix4.c
8373 F:      drivers/i2c/busses/i2c-sis5595.c
8374 F:      drivers/i2c/busses/i2c-sis630.c
8375 F:      drivers/i2c/busses/i2c-sis96x.c
8376 F:      drivers/i2c/busses/i2c-via.c
8377 F:      drivers/i2c/busses/i2c-viapro.c
8378
8379 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8380 M:      Hans de Goede <hdegoede@redhat.com>
8381 L:      linux-i2c@vger.kernel.org
8382 S:      Maintained
8383 F:      drivers/i2c/busses/i2c-cht-wc.c
8384
8385 I2C/SMBUS ISMT DRIVER
8386 M:      Seth Heasley <seth.heasley@intel.com>
8387 M:      Neil Horman <nhorman@tuxdriver.com>
8388 L:      linux-i2c@vger.kernel.org
8389 F:      Documentation/i2c/busses/i2c-ismt.rst
8390 F:      drivers/i2c/busses/i2c-ismt.c
8391
8392 I2C/SMBUS STUB DRIVER
8393 M:      Jean Delvare <jdelvare@suse.com>
8394 L:      linux-i2c@vger.kernel.org
8395 S:      Maintained
8396 F:      drivers/i2c/i2c-stub.c
8397
8398 I3C DRIVER FOR CADENCE I3C MASTER IP
8399 M:      Przemysław Gaj <pgaj@cadence.com>
8400 S:      Maintained
8401 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8402 F:      drivers/i3c/master/i3c-master-cdns.c
8403
8404 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8405 M:      Vitor Soares <vitor.soares@synopsys.com>
8406 S:      Maintained
8407 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8408 F:      drivers/i3c/master/dw*
8409
8410 I3C SUBSYSTEM
8411 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
8412 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8413 S:      Maintained
8414 C:      irc://chat.freenode.net/linux-i3c
8415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8416 F:      Documentation/ABI/testing/sysfs-bus-i3c
8417 F:      Documentation/devicetree/bindings/i3c/
8418 F:      Documentation/driver-api/i3c
8419 F:      drivers/i3c/
8420 F:      include/linux/i3c/
8421
8422 IA64 (Itanium) PLATFORM
8423 L:      linux-ia64@vger.kernel.org
8424 S:      Orphan
8425 F:      Documentation/ia64/
8426 F:      arch/ia64/
8427
8428 IBM Power 842 compression accelerator
8429 M:      Haren Myneni <haren@us.ibm.com>
8430 S:      Supported
8431 F:      crypto/842.c
8432 F:      drivers/crypto/nx/Kconfig
8433 F:      drivers/crypto/nx/Makefile
8434 F:      drivers/crypto/nx/nx-842*
8435 F:      include/linux/sw842.h
8436 F:      lib/842/
8437
8438 IBM Power in-Nest Crypto Acceleration
8439 M:      Breno Leitão <leitao@debian.org>
8440 M:      Nayna Jain <nayna@linux.ibm.com>
8441 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8442 L:      linux-crypto@vger.kernel.org
8443 S:      Supported
8444 F:      drivers/crypto/nx/Kconfig
8445 F:      drivers/crypto/nx/Makefile
8446 F:      drivers/crypto/nx/nx-aes*
8447 F:      drivers/crypto/nx/nx-sha*
8448 F:      drivers/crypto/nx/nx.*
8449 F:      drivers/crypto/nx/nx_csbcpb.h
8450 F:      drivers/crypto/nx/nx_debugfs.c
8451
8452 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8453 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8454 L:      linux-pci@vger.kernel.org
8455 L:      linuxppc-dev@lists.ozlabs.org
8456 S:      Supported
8457 F:      drivers/pci/hotplug/rpadlpar*
8458
8459 IBM Power Linux RAID adapter
8460 M:      Brian King <brking@us.ibm.com>
8461 S:      Supported
8462 F:      drivers/scsi/ipr.*
8463
8464 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8465 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8466 L:      linux-pci@vger.kernel.org
8467 L:      linuxppc-dev@lists.ozlabs.org
8468 S:      Supported
8469 F:      drivers/pci/hotplug/rpaphp*
8470
8471 IBM Power SRIOV Virtual NIC Device Driver
8472 M:      Dany Madden <drt@linux.ibm.com>
8473 M:      Lijun Pan <ljp@linux.ibm.com>
8474 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8475 L:      netdev@vger.kernel.org
8476 S:      Supported
8477 F:      drivers/net/ethernet/ibm/ibmvnic.*
8478
8479 IBM Power Virtual Accelerator Switchboard
8480 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8481 L:      linuxppc-dev@lists.ozlabs.org
8482 S:      Supported
8483 F:      arch/powerpc/include/asm/vas.h
8484 F:      arch/powerpc/platforms/powernv/copy-paste.h
8485 F:      arch/powerpc/platforms/powernv/vas*
8486
8487 IBM Power Virtual Ethernet Device Driver
8488 M:      Cristobal Forno <cforno12@linux.ibm.com>
8489 L:      netdev@vger.kernel.org
8490 S:      Supported
8491 F:      drivers/net/ethernet/ibm/ibmveth.*
8492
8493 IBM Power Virtual FC Device Drivers
8494 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8495 L:      linux-scsi@vger.kernel.org
8496 S:      Supported
8497 F:      drivers/scsi/ibmvscsi/ibmvfc*
8498
8499 IBM Power Virtual Management Channel Driver
8500 M:      Steven Royer <seroyer@linux.ibm.com>
8501 S:      Supported
8502 F:      drivers/misc/ibmvmc.*
8503
8504 IBM Power Virtual SCSI Device Drivers
8505 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8506 L:      linux-scsi@vger.kernel.org
8507 S:      Supported
8508 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8509 F:      include/scsi/viosrp.h
8510
8511 IBM Power Virtual SCSI Device Target Driver
8512 M:      Michael Cyr <mikecyr@linux.ibm.com>
8513 L:      linux-scsi@vger.kernel.org
8514 L:      target-devel@vger.kernel.org
8515 S:      Supported
8516 F:      drivers/scsi/ibmvscsi_tgt/
8517
8518 IBM Power VMX Cryptographic instructions
8519 M:      Breno Leitão <leitao@debian.org>
8520 M:      Nayna Jain <nayna@linux.ibm.com>
8521 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8522 L:      linux-crypto@vger.kernel.org
8523 S:      Supported
8524 F:      drivers/crypto/vmx/Kconfig
8525 F:      drivers/crypto/vmx/Makefile
8526 F:      drivers/crypto/vmx/aes*
8527 F:      drivers/crypto/vmx/ghash*
8528 F:      drivers/crypto/vmx/ppc-xlate.pl
8529 F:      drivers/crypto/vmx/vmx.c
8530
8531 IBM ServeRAID RAID DRIVER
8532 S:      Orphan
8533 F:      drivers/scsi/ips.*
8534
8535 ICH LPC AND GPIO DRIVER
8536 M:      Peter Tyser <ptyser@xes-inc.com>
8537 S:      Maintained
8538 F:      drivers/gpio/gpio-ich.c
8539 F:      drivers/mfd/lpc_ich.c
8540
8541 ICY I2C DRIVER
8542 M:      Max Staudt <max@enpas.org>
8543 L:      linux-i2c@vger.kernel.org
8544 S:      Maintained
8545 F:      drivers/i2c/busses/i2c-icy.c
8546
8547 IDE SUBSYSTEM
8548 M:      "David S. Miller" <davem@davemloft.net>
8549 L:      linux-ide@vger.kernel.org
8550 S:      Maintained
8551 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8552 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8553 F:      Documentation/ide/
8554 F:      drivers/ide/
8555 F:      include/linux/ide.h
8556
8557 IDE/ATAPI DRIVERS
8558 M:      Borislav Petkov <bp@alien8.de>
8559 L:      linux-ide@vger.kernel.org
8560 S:      Maintained
8561 F:      Documentation/cdrom/ide-cd.rst
8562 F:      drivers/ide/ide-cd*
8563
8564 IDEAPAD LAPTOP EXTRAS DRIVER
8565 M:      Ike Panhc <ike.pan@canonical.com>
8566 L:      platform-driver-x86@vger.kernel.org
8567 S:      Maintained
8568 W:      http://launchpad.net/ideapad-laptop
8569 F:      drivers/platform/x86/ideapad-laptop.c
8570
8571 IDEAPAD LAPTOP SLIDEBAR DRIVER
8572 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
8573 L:      linux-input@vger.kernel.org
8574 S:      Maintained
8575 W:      https://github.com/o2genum/ideapad-slidebar
8576 F:      drivers/input/misc/ideapad_slidebar.c
8577
8578 IDT VersaClock 5 CLOCK DRIVER
8579 M:      Luca Ceresoli <luca@lucaceresoli.net>
8580 S:      Maintained
8581 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
8582 F:      drivers/clk/clk-versaclock5.c
8583
8584 IEEE 802.15.4 SUBSYSTEM
8585 M:      Alexander Aring <alex.aring@gmail.com>
8586 M:      Stefan Schmidt <stefan@datenfreihafen.org>
8587 L:      linux-wpan@vger.kernel.org
8588 S:      Maintained
8589 W:      https://linux-wpan.org/
8590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8592 F:      Documentation/networking/ieee802154.rst
8593 F:      drivers/net/ieee802154/
8594 F:      include/linux/ieee802154.h
8595 F:      include/linux/nl802154.h
8596 F:      include/net/af_ieee802154.h
8597 F:      include/net/cfg802154.h
8598 F:      include/net/ieee802154_netdev.h
8599 F:      include/net/mac802154.h
8600 F:      include/net/nl802154.h
8601 F:      net/ieee802154/
8602 F:      net/mac802154/
8603
8604 IFE PROTOCOL
8605 M:      Yotam Gigi <yotam.gi@gmail.com>
8606 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8607 F:      include/net/ife.h
8608 F:      include/uapi/linux/ife.h
8609 F:      net/ife
8610
8611 IGORPLUG-USB IR RECEIVER
8612 M:      Sean Young <sean@mess.org>
8613 L:      linux-media@vger.kernel.org
8614 S:      Maintained
8615 F:      drivers/media/rc/igorplugusb.c
8616
8617 IGUANAWORKS USB IR TRANSCEIVER
8618 M:      Sean Young <sean@mess.org>
8619 L:      linux-media@vger.kernel.org
8620 S:      Maintained
8621 F:      drivers/media/rc/iguanair.c
8622
8623 IIO DIGITAL POTENTIOMETER DAC
8624 M:      Peter Rosin <peda@axentia.se>
8625 L:      linux-iio@vger.kernel.org
8626 S:      Maintained
8627 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8628 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8629 F:      drivers/iio/dac/dpot-dac.c
8630
8631 IIO ENVELOPE DETECTOR
8632 M:      Peter Rosin <peda@axentia.se>
8633 L:      linux-iio@vger.kernel.org
8634 S:      Maintained
8635 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8636 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8637 F:      drivers/iio/adc/envelope-detector.c
8638
8639 IIO MULTIPLEXER
8640 M:      Peter Rosin <peda@axentia.se>
8641 L:      linux-iio@vger.kernel.org
8642 S:      Maintained
8643 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8644 F:      drivers/iio/multiplexer/iio-mux.c
8645
8646 IIO SUBSYSTEM AND DRIVERS
8647 M:      Jonathan Cameron <jic23@kernel.org>
8648 R:      Lars-Peter Clausen <lars@metafoo.de>
8649 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
8650 L:      linux-iio@vger.kernel.org
8651 S:      Maintained
8652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8653 F:      Documentation/ABI/testing/configfs-iio*
8654 F:      Documentation/ABI/testing/sysfs-bus-iio*
8655 F:      Documentation/devicetree/bindings/iio/
8656 F:      drivers/iio/
8657 F:      drivers/staging/iio/
8658 F:      include/linux/iio/
8659 F:      tools/iio/
8660
8661 IIO UNIT CONVERTER
8662 M:      Peter Rosin <peda@axentia.se>
8663 L:      linux-iio@vger.kernel.org
8664 S:      Maintained
8665 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8666 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8667 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8668 F:      drivers/iio/afe/iio-rescale.c
8669
8670 IKANOS/ADI EAGLE ADSL USB DRIVER
8671 M:      Matthieu Castet <castet.matthieu@free.fr>
8672 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8673 S:      Maintained
8674 F:      drivers/usb/atm/ueagle-atm.c
8675
8676 IMGTEC ASCII LCD DRIVER
8677 M:      Paul Burton <paulburton@kernel.org>
8678 S:      Maintained
8679 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8680 F:      drivers/auxdisplay/img-ascii-lcd.c
8681
8682 IMGTEC IR DECODER DRIVER
8683 S:      Orphan
8684 F:      drivers/media/rc/img-ir/
8685
8686 IMON SOUNDGRAPH USB IR RECEIVER
8687 M:      Sean Young <sean@mess.org>
8688 L:      linux-media@vger.kernel.org
8689 S:      Maintained
8690 F:      drivers/media/rc/imon.c
8691 F:      drivers/media/rc/imon_raw.c
8692
8693 IMS TWINTURBO FRAMEBUFFER DRIVER
8694 L:      linux-fbdev@vger.kernel.org
8695 S:      Orphan
8696 F:      drivers/video/fbdev/imsttfb.c
8697
8698 INA209 HARDWARE MONITOR DRIVER
8699 M:      Guenter Roeck <linux@roeck-us.net>
8700 L:      linux-hwmon@vger.kernel.org
8701 S:      Maintained
8702 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
8703 F:      Documentation/hwmon/ina209.rst
8704 F:      drivers/hwmon/ina209.c
8705
8706 INA2XX HARDWARE MONITOR DRIVER
8707 M:      Guenter Roeck <linux@roeck-us.net>
8708 L:      linux-hwmon@vger.kernel.org
8709 S:      Maintained
8710 F:      Documentation/hwmon/ina2xx.rst
8711 F:      drivers/hwmon/ina2xx.c
8712 F:      include/linux/platform_data/ina2xx.h
8713
8714 INDUSTRY PACK SUBSYSTEM (IPACK)
8715 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8716 M:      Jens Taprogge <jens.taprogge@taprogge.org>
8717 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8718 L:      industrypack-devel@lists.sourceforge.net
8719 S:      Maintained
8720 W:      http://industrypack.sourceforge.net
8721 F:      drivers/ipack/
8722
8723 INFINEON DPS310 Driver
8724 M:      Eddie James <eajames@linux.ibm.com>
8725 L:      linux-iio@vger.kernel.org
8726 S:      Maintained
8727 F:      drivers/iio/pressure/dps310.c
8728
8729 INFINIBAND SUBSYSTEM
8730 M:      Doug Ledford <dledford@redhat.com>
8731 M:      Jason Gunthorpe <jgg@nvidia.com>
8732 L:      linux-rdma@vger.kernel.org
8733 S:      Supported
8734 W:      https://github.com/linux-rdma/rdma-core
8735 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8737 F:      Documentation/devicetree/bindings/infiniband/
8738 F:      Documentation/infiniband/
8739 F:      drivers/infiniband/
8740 F:      include/rdma/
8741 F:      include/trace/events/ib_mad.h
8742 F:      include/trace/events/ib_umad.h
8743 F:      include/uapi/linux/if_infiniband.h
8744 F:      include/uapi/rdma/
8745 F:      samples/bpf/ibumad_kern.c
8746 F:      samples/bpf/ibumad_user.c
8747
8748 INGENIC JZ4780 NAND DRIVER
8749 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
8750 L:      linux-mtd@lists.infradead.org
8751 L:      linux-mips@vger.kernel.org
8752 S:      Maintained
8753 F:      drivers/mtd/nand/raw/ingenic/
8754
8755 INGENIC JZ47xx SoCs
8756 M:      Paul Cercueil <paul@crapouillou.net>
8757 L:      linux-mips@vger.kernel.org
8758 S:      Maintained
8759 F:      arch/mips/boot/dts/ingenic/
8760 F:      arch/mips/generic/board-ingenic.c
8761 F:      arch/mips/include/asm/mach-ingenic/
8762 F:      arch/mips/ingenic/Kconfig
8763 F:      drivers/clk/ingenic/
8764 F:      drivers/dma/dma-jz4780.c
8765 F:      drivers/gpu/drm/ingenic/
8766 F:      drivers/i2c/busses/i2c-jz4780.c
8767 F:      drivers/iio/adc/ingenic-adc.c
8768 F:      drivers/irqchip/irq-ingenic.c
8769 F:      drivers/memory/jz4780-nemc.c
8770 F:      drivers/mmc/host/jz4740_mmc.c
8771 F:      drivers/mtd/nand/raw/ingenic/
8772 F:      drivers/pinctrl/pinctrl-ingenic.c
8773 F:      drivers/power/supply/ingenic-battery.c
8774 F:      drivers/pwm/pwm-jz4740.c
8775 F:      drivers/remoteproc/ingenic_rproc.c
8776 F:      drivers/rtc/rtc-jz4740.c
8777 F:      drivers/tty/serial/8250/8250_ingenic.c
8778 F:      drivers/usb/musb/jz4740.c
8779 F:      drivers/watchdog/jz4740_wdt.c
8780 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8781 F:      include/linux/mfd/ingenic-tcu.h
8782 F:      sound/soc/codecs/jz47*
8783 F:      sound/soc/jz4740/
8784
8785 INOTIFY
8786 M:      Jan Kara <jack@suse.cz>
8787 R:      Amir Goldstein <amir73il@gmail.com>
8788 L:      linux-fsdevel@vger.kernel.org
8789 S:      Maintained
8790 F:      Documentation/filesystems/inotify.rst
8791 F:      fs/notify/inotify/
8792 F:      include/linux/inotify.h
8793 F:      include/uapi/linux/inotify.h
8794
8795 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8796 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
8797 L:      linux-input@vger.kernel.org
8798 S:      Maintained
8799 Q:      http://patchwork.kernel.org/project/linux-input/list/
8800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8801 F:      Documentation/devicetree/bindings/input/
8802 F:      Documentation/devicetree/bindings/serio/
8803 F:      Documentation/input/
8804 F:      drivers/input/
8805 F:      include/linux/input.h
8806 F:      include/linux/input/
8807 F:      include/uapi/linux/input-event-codes.h
8808 F:      include/uapi/linux/input.h
8809
8810 INPUT MULTITOUCH (MT) PROTOCOL
8811 M:      Henrik Rydberg <rydberg@bitmath.org>
8812 L:      linux-input@vger.kernel.org
8813 S:      Odd fixes
8814 F:      Documentation/input/multi-touch-protocol.rst
8815 F:      drivers/input/input-mt.c
8816 K:      \b(ABS|SYN)_MT_
8817
8818 INSIDE SECURE CRYPTO DRIVER
8819 M:      Antoine Tenart <atenart@kernel.org>
8820 L:      linux-crypto@vger.kernel.org
8821 S:      Maintained
8822 F:      drivers/crypto/inside-secure/
8823
8824 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8825 M:      Mimi Zohar <zohar@linux.ibm.com>
8826 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
8827 L:      linux-integrity@vger.kernel.org
8828 S:      Supported
8829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8830 F:      security/integrity/ima/
8831
8832 INTEL 810/815 FRAMEBUFFER DRIVER
8833 M:      Antonino Daplas <adaplas@gmail.com>
8834 L:      linux-fbdev@vger.kernel.org
8835 S:      Maintained
8836 F:      drivers/video/fbdev/i810/
8837
8838 INTEL ASoC DRIVERS
8839 M:      Cezary Rojewski <cezary.rojewski@intel.com>
8840 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
8841 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
8842 M:      Jie Yang <yang.jie@linux.intel.com>
8843 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8844 S:      Supported
8845 F:      sound/soc/intel/
8846
8847 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8848 M:      Hans de Goede <hdegoede@redhat.com>
8849 L:      platform-driver-x86@vger.kernel.org
8850 S:      Maintained
8851 F:      drivers/platform/x86/intel_atomisp2_pm.c
8852
8853 INTEL ATOMISP2 LED DRIVER
8854 M:      Hans de Goede <hdegoede@redhat.com>
8855 L:      platform-driver-x86@vger.kernel.org
8856 S:      Maintained
8857 F:      drivers/platform/x86/intel_atomisp2_led.c
8858
8859 INTEL BROXTON PMC DRIVER
8860 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8861 M:      Zha Qipeng <qipeng.zha@intel.com>
8862 S:      Maintained
8863 F:      drivers/mfd/intel_pmc_bxt.c
8864 F:      include/linux/mfd/intel_pmc_bxt.h
8865
8866 INTEL C600 SERIES SAS CONTROLLER DRIVER
8867 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
8868 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
8869 L:      linux-scsi@vger.kernel.org
8870 S:      Supported
8871 T:      git git://git.code.sf.net/p/intel-sas/isci
8872 F:      drivers/scsi/isci/
8873
8874 INTEL CPU family model numbers
8875 M:      Tony Luck <tony.luck@intel.com>
8876 M:      x86@kernel.org
8877 L:      linux-kernel@vger.kernel.org
8878 S:      Supported
8879 F:      arch/x86/include/asm/intel-family.h
8880
8881 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8882 M:      Jani Nikula <jani.nikula@linux.intel.com>
8883 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
8884 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
8885 L:      intel-gfx@lists.freedesktop.org
8886 S:      Supported
8887 W:      https://01.org/linuxgraphics/
8888 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8889 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8890 C:      irc://chat.freenode.net/intel-gfx
8891 T:      git git://anongit.freedesktop.org/drm-intel
8892 F:      Documentation/gpu/i915.rst
8893 F:      drivers/gpu/drm/i915/
8894 F:      include/drm/i915*
8895 F:      include/uapi/drm/i915_drm.h
8896
8897 INTEL ETHERNET DRIVERS
8898 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
8899 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
8900 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
8901 S:      Supported
8902 W:      http://www.intel.com/support/feedback.htm
8903 W:      http://e1000.sourceforge.net/
8904 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
8906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
8907 F:      Documentation/networking/device_drivers/ethernet/intel/
8908 F:      drivers/net/ethernet/intel/
8909 F:      drivers/net/ethernet/intel/*/
8910 F:      include/linux/avf/virtchnl.h
8911
8912 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8913 M:      Maik Broemme <mbroemme@libmpq.org>
8914 L:      linux-fbdev@vger.kernel.org
8915 S:      Maintained
8916 F:      Documentation/fb/intelfb.rst
8917 F:      drivers/video/fbdev/intelfb/
8918
8919 INTEL GPIO DRIVERS
8920 M:      Andy Shevchenko <andy@kernel.org>
8921 L:      linux-gpio@vger.kernel.org
8922 S:      Maintained
8923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8924 F:      drivers/gpio/gpio-ich.c
8925 F:      drivers/gpio/gpio-merrifield.c
8926 F:      drivers/gpio/gpio-ml-ioh.c
8927 F:      drivers/gpio/gpio-pch.c
8928 F:      drivers/gpio/gpio-sch.c
8929 F:      drivers/gpio/gpio-sodaville.c
8930
8931 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8932 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
8933 M:      Zhi Wang <zhi.a.wang@intel.com>
8934 L:      intel-gvt-dev@lists.freedesktop.org
8935 L:      intel-gfx@lists.freedesktop.org
8936 S:      Supported
8937 W:      https://01.org/igvt-g
8938 T:      git https://github.com/intel/gvt-linux.git
8939 F:      drivers/gpu/drm/i915/gvt/
8940
8941 INTEL HID EVENT DRIVER
8942 M:      Alex Hung <alex.hung@canonical.com>
8943 L:      platform-driver-x86@vger.kernel.org
8944 S:      Maintained
8945 F:      drivers/platform/x86/intel-hid.c
8946
8947 INTEL I/OAT DMA DRIVER
8948 M:      Dave Jiang <dave.jiang@intel.com>
8949 R:      Dan Williams <dan.j.williams@intel.com>
8950 L:      dmaengine@vger.kernel.org
8951 S:      Supported
8952 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8953 F:      drivers/dma/ioat*
8954
8955 INTEL IADX DRIVER
8956 M:      Dave Jiang <dave.jiang@intel.com>
8957 L:      dmaengine@vger.kernel.org
8958 S:      Supported
8959 F:      drivers/dma/idxd/*
8960 F:      include/uapi/linux/idxd.h
8961
8962 INTEL IDLE DRIVER
8963 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
8964 M:      Len Brown <lenb@kernel.org>
8965 L:      linux-pm@vger.kernel.org
8966 S:      Supported
8967 B:      https://bugzilla.kernel.org
8968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8969 F:      drivers/idle/intel_idle.c
8970
8971 INTEL INTEGRATED SENSOR HUB DRIVER
8972 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8973 M:      Jiri Kosina <jikos@kernel.org>
8974 L:      linux-input@vger.kernel.org
8975 S:      Maintained
8976 F:      drivers/hid/intel-ish-hid/
8977
8978 INTEL IOMMU (VT-d)
8979 M:      David Woodhouse <dwmw2@infradead.org>
8980 M:      Lu Baolu <baolu.lu@linux.intel.com>
8981 L:      iommu@lists.linux-foundation.org
8982 S:      Supported
8983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8984 F:      drivers/iommu/intel/
8985 F:      include/linux/intel-iommu.h
8986 F:      include/linux/intel-svm.h
8987
8988 INTEL IOP-ADMA DMA DRIVER
8989 R:      Dan Williams <dan.j.williams@intel.com>
8990 S:      Odd fixes
8991 F:      drivers/dma/iop-adma.c
8992
8993 INTEL IPU3 CSI-2 CIO2 DRIVER
8994 M:      Yong Zhi <yong.zhi@intel.com>
8995 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8996 M:      Bingbu Cao <bingbu.cao@intel.com>
8997 M:      Dan Scally <djrscally@gmail.com>
8998 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
8999 L:      linux-media@vger.kernel.org
9000 S:      Maintained
9001 T:      git git://linuxtv.org/media_tree.git
9002 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9003 F:      drivers/media/pci/intel/ipu3/
9004
9005 INTEL IPU3 CSI-2 IMGU DRIVER
9006 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9007 R:      Bingbu Cao <bingbu.cao@intel.com>
9008 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9009 L:      linux-media@vger.kernel.org
9010 S:      Maintained
9011 F:      Documentation/admin-guide/media/ipu3.rst
9012 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9013 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9014 F:      drivers/staging/media/ipu3/
9015
9016 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9017 M:      Krzysztof Halasa <khalasa@piap.pl>
9018 S:      Maintained
9019 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9020 F:      drivers/net/wan/ixp4xx_hss.c
9021 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9022 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9023 F:      include/linux/soc/ixp4xx/npe.h
9024 F:      include/linux/soc/ixp4xx/qmgr.h
9025
9026 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9027 M:      Deepak Saxena <dsaxena@plexity.net>
9028 S:      Maintained
9029 F:      drivers/char/hw_random/ixp4xx-rng.c
9030
9031 INTEL KEEM BAY DRM DRIVER
9032 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9033 M:      Edmund Dea <edmund.j.dea@intel.com>
9034 S:      Maintained
9035 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9036 F:      drivers/gpu/drm/kmb/
9037
9038 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9039 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9040 S:      Maintained
9041 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9042 F:      drivers/crypto/keembay/Kconfig
9043 F:      drivers/crypto/keembay/Makefile
9044 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9045 F:      drivers/crypto/keembay/ocs-aes.c
9046 F:      drivers/crypto/keembay/ocs-aes.h
9047
9048 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9049 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9050 M:      Declan Murphy <declan.murphy@intel.com>
9051 S:      Maintained
9052 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9053 F:      drivers/crypto/keembay/Kconfig
9054 F:      drivers/crypto/keembay/Makefile
9055 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9056 F:      drivers/crypto/keembay/ocs-hcu.c
9057 F:      drivers/crypto/keembay/ocs-hcu.h
9058
9059 INTEL MANAGEMENT ENGINE (mei)
9060 M:      Tomas Winkler <tomas.winkler@intel.com>
9061 L:      linux-kernel@vger.kernel.org
9062 S:      Supported
9063 F:      Documentation/driver-api/mei/*
9064 F:      drivers/misc/mei/
9065 F:      drivers/watchdog/mei_wdt.c
9066 F:      include/linux/mei_cl_bus.h
9067 F:      include/uapi/linux/mei.h
9068 F:      samples/mei/*
9069
9070 INTEL MENLOW THERMAL DRIVER
9071 M:      Sujith Thomas <sujith.thomas@intel.com>
9072 L:      platform-driver-x86@vger.kernel.org
9073 S:      Supported
9074 W:      https://01.org/linux-acpi
9075 F:      drivers/platform/x86/intel_menlow.c
9076
9077 INTEL P-Unit IPC DRIVER
9078 M:      Zha Qipeng <qipeng.zha@intel.com>
9079 L:      platform-driver-x86@vger.kernel.org
9080 S:      Maintained
9081 F:      arch/x86/include/asm/intel_punit_ipc.h
9082 F:      drivers/platform/x86/intel_punit_ipc.c
9083
9084 INTEL PMC CORE DRIVER
9085 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9086 M:      David E Box <david.e.box@intel.com>
9087 L:      platform-driver-x86@vger.kernel.org
9088 S:      Maintained
9089 F:      drivers/platform/x86/intel_pmc_core*
9090
9091 INTEL PMIC GPIO DRIVERS
9092 M:      Andy Shevchenko <andy@kernel.org>
9093 S:      Maintained
9094 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9095 F:      drivers/gpio/gpio-*cove.c
9096
9097 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9098 M:      Andy Shevchenko <andy@kernel.org>
9099 S:      Maintained
9100 F:      drivers/mfd/intel_msic.c
9101 F:      drivers/mfd/intel_soc_pmic*
9102 F:      include/linux/mfd/intel_msic.h
9103 F:      include/linux/mfd/intel_soc_pmic*
9104
9105 INTEL PMT DRIVER
9106 M:      "David E. Box" <david.e.box@linux.intel.com>
9107 S:      Maintained
9108 F:      drivers/mfd/intel_pmt.c
9109 F:      drivers/platform/x86/intel_pmt_*
9110
9111 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9112 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9113 L:      linux-wireless@vger.kernel.org
9114 S:      Maintained
9115 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9116 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9117 F:      drivers/net/wireless/intel/ipw2x00/
9118
9119 INTEL PSTATE DRIVER
9120 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9121 M:      Len Brown <lenb@kernel.org>
9122 L:      linux-pm@vger.kernel.org
9123 S:      Supported
9124 F:      drivers/cpufreq/intel_pstate.c
9125
9126 INTEL RDMA RNIC DRIVER
9127 M:      Faisal Latif <faisal.latif@intel.com>
9128 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9129 L:      linux-rdma@vger.kernel.org
9130 S:      Supported
9131 F:      drivers/infiniband/hw/i40iw/
9132 F:      include/uapi/rdma/i40iw-abi.h
9133
9134 INTEL SCU DRIVERS
9135 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9136 S:      Maintained
9137 F:      arch/x86/include/asm/intel_scu_ipc.h
9138 F:      drivers/platform/x86/intel_scu_*
9139
9140 INTEL SPEED SELECT TECHNOLOGY
9141 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9142 L:      platform-driver-x86@vger.kernel.org
9143 S:      Maintained
9144 F:      drivers/platform/x86/intel_speed_select_if/
9145 F:      include/uapi/linux/isst_if.h
9146 F:      tools/power/x86/intel-speed-select/
9147
9148 INTEL STRATIX10 FIRMWARE DRIVERS
9149 M:      Richard Gong <richard.gong@linux.intel.com>
9150 L:      linux-kernel@vger.kernel.org
9151 S:      Maintained
9152 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9153 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9154 F:      drivers/firmware/stratix10-rsu.c
9155 F:      drivers/firmware/stratix10-svc.c
9156 F:      include/linux/firmware/intel/stratix10-smc.h
9157 F:      include/linux/firmware/intel/stratix10-svc-client.h
9158
9159 INTEL TELEMETRY DRIVER
9160 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
9161 M:      "David E. Box" <david.e.box@linux.intel.com>
9162 L:      platform-driver-x86@vger.kernel.org
9163 S:      Maintained
9164 F:      arch/x86/include/asm/intel_telemetry.h
9165 F:      drivers/platform/x86/intel_telemetry*
9166
9167 INTEL UNCORE FREQUENCY CONTROL
9168 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9169 L:      platform-driver-x86@vger.kernel.org
9170 S:      Maintained
9171 F:      drivers/platform/x86/intel-uncore-frequency.c
9172
9173 INTEL VIRTUAL BUTTON DRIVER
9174 M:      AceLan Kao <acelan.kao@canonical.com>
9175 L:      platform-driver-x86@vger.kernel.org
9176 S:      Maintained
9177 F:      drivers/platform/x86/intel-vbtn.c
9178
9179 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9180 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9181 L:      linux-wireless@vger.kernel.org
9182 S:      Supported
9183 F:      drivers/net/wireless/intel/iwlegacy/
9184
9185 INTEL WIRELESS WIFI LINK (iwlwifi)
9186 M:      Luca Coelho <luciano.coelho@intel.com>
9187 L:      linux-wireless@vger.kernel.org
9188 S:      Supported
9189 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9191 F:      drivers/net/wireless/intel/iwlwifi/
9192
9193 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9194 M:      Jithu Joseph <jithu.joseph@intel.com>
9195 R:      Maurice Ma <maurice.ma@intel.com>
9196 S:      Maintained
9197 W:      https://slimbootloader.github.io/security/firmware-update.html
9198 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
9199
9200 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9201 M:      Mario Limonciello <mario.limonciello@dell.com>
9202 S:      Maintained
9203 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
9204
9205 INTEL(R) TRACE HUB
9206 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9207 S:      Supported
9208 F:      Documentation/trace/intel_th.rst
9209 F:      drivers/hwtracing/intel_th/
9210 F:      include/linux/intel_th.h
9211
9212 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9213 M:      Ning Sun <ning.sun@intel.com>
9214 L:      tboot-devel@lists.sourceforge.net
9215 S:      Supported
9216 W:      http://tboot.sourceforge.net
9217 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9218 F:      Documentation/x86/intel_txt.rst
9219 F:      arch/x86/kernel/tboot.c
9220 F:      include/linux/tboot.h
9221
9222 INTEL SGX
9223 M:      Jarkko Sakkinen <jarkko@kernel.org>
9224 R:      Dave Hansen <dave.hansen@linux.intel.com>
9225 L:      linux-sgx@vger.kernel.org
9226 S:      Supported
9227 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9229 F:      Documentation/x86/sgx.rst
9230 F:      arch/x86/entry/vdso/vsgx.S
9231 F:      arch/x86/include/uapi/asm/sgx.h
9232 F:      arch/x86/kernel/cpu/sgx/*
9233 F:      tools/testing/selftests/sgx/*
9234 K:      \bSGX_
9235
9236 INTERCONNECT API
9237 M:      Georgi Djakov <djakov@kernel.org>
9238 L:      linux-pm@vger.kernel.org
9239 S:      Maintained
9240 F:      Documentation/devicetree/bindings/interconnect/
9241 F:      Documentation/driver-api/interconnect.rst
9242 F:      drivers/interconnect/
9243 F:      include/dt-bindings/interconnect/
9244 F:      include/linux/interconnect-provider.h
9245 F:      include/linux/interconnect.h
9246
9247 INVENSENSE ICM-426xx IMU DRIVER
9248 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9249 L:      linux-iio@vger.kernel.org
9250 S:      Maintained
9251 W:      https://invensense.tdk.com/
9252 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9253 F:      drivers/iio/imu/inv_icm42600/
9254
9255 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9256 M:      Linus Walleij <linus.walleij@linaro.org>
9257 L:      linux-iio@vger.kernel.org
9258 S:      Maintained
9259 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
9260 F:      drivers/iio/gyro/mpu3050*
9261
9262 IOC3 ETHERNET DRIVER
9263 M:      Ralf Baechle <ralf@linux-mips.org>
9264 L:      linux-mips@vger.kernel.org
9265 S:      Maintained
9266 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9267
9268 IOMAP FILESYSTEM LIBRARY
9269 M:      Christoph Hellwig <hch@infradead.org>
9270 M:      Darrick J. Wong <djwong@kernel.org>
9271 M:      linux-xfs@vger.kernel.org
9272 M:      linux-fsdevel@vger.kernel.org
9273 L:      linux-xfs@vger.kernel.org
9274 L:      linux-fsdevel@vger.kernel.org
9275 S:      Supported
9276 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9277 F:      fs/iomap/
9278 F:      include/linux/iomap.h
9279
9280 IOMMU DRIVERS
9281 M:      Joerg Roedel <joro@8bytes.org>
9282 M:      Will Deacon <will@kernel.org>
9283 L:      iommu@lists.linux-foundation.org
9284 S:      Maintained
9285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9286 F:      Documentation/devicetree/bindings/iommu/
9287 F:      Documentation/userspace-api/iommu.rst
9288 F:      drivers/iommu/
9289 F:      include/linux/iommu.h
9290 F:      include/linux/iova.h
9291 F:      include/linux/of_iommu.h
9292 F:      include/uapi/linux/iommu.h
9293
9294 IO_URING
9295 M:      Jens Axboe <axboe@kernel.dk>
9296 R:      Pavel Begunkov <asml.silence@gmail.com>
9297 L:      io-uring@vger.kernel.org
9298 S:      Maintained
9299 T:      git git://git.kernel.dk/linux-block
9300 T:      git git://git.kernel.dk/liburing
9301 F:      fs/io-wq.c
9302 F:      fs/io-wq.h
9303 F:      fs/io_uring.c
9304 F:      include/linux/io_uring.h
9305 F:      include/uapi/linux/io_uring.h
9306
9307 IPMI SUBSYSTEM
9308 M:      Corey Minyard <minyard@acm.org>
9309 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9310 S:      Supported
9311 W:      http://openipmi.sourceforge.net/
9312 F:      Documentation/driver-api/ipmi.rst
9313 F:      Documentation/devicetree/bindings/ipmi/
9314 F:      drivers/char/ipmi/
9315 F:      include/linux/ipmi*
9316 F:      include/uapi/linux/ipmi*
9317
9318 IPS SCSI RAID DRIVER
9319 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9320 L:      linux-scsi@vger.kernel.org
9321 S:      Maintained
9322 W:      http://www.adaptec.com/
9323 F:      drivers/scsi/ips*
9324
9325 IPVS
9326 M:      Simon Horman <horms@verge.net.au>
9327 M:      Julian Anastasov <ja@ssi.bg>
9328 L:      netdev@vger.kernel.org
9329 L:      lvs-devel@vger.kernel.org
9330 S:      Maintained
9331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9333 F:      Documentation/networking/ipvs-sysctl.rst
9334 F:      include/net/ip_vs.h
9335 F:      include/uapi/linux/ip_vs.h
9336 F:      net/netfilter/ipvs/
9337
9338 IPWIRELESS DRIVER
9339 M:      Jiri Kosina <jikos@kernel.org>
9340 M:      David Sterba <dsterba@suse.com>
9341 S:      Odd Fixes
9342 F:      drivers/tty/ipwireless/
9343
9344 IPX NETWORK LAYER
9345 L:      netdev@vger.kernel.org
9346 S:      Obsolete
9347 F:      include/uapi/linux/ipx.h
9348
9349 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9350 M:      Marc Zyngier <maz@kernel.org>
9351 S:      Maintained
9352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9353 F:      Documentation/core-api/irq/irq-domain.rst
9354 F:      include/linux/irqdomain.h
9355 F:      kernel/irq/irqdomain.c
9356 F:      kernel/irq/msi.c
9357
9358 IRQ SUBSYSTEM
9359 M:      Thomas Gleixner <tglx@linutronix.de>
9360 L:      linux-kernel@vger.kernel.org
9361 S:      Maintained
9362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9363 F:      kernel/irq/
9364
9365 IRQCHIP DRIVERS
9366 M:      Thomas Gleixner <tglx@linutronix.de>
9367 M:      Marc Zyngier <maz@kernel.org>
9368 L:      linux-kernel@vger.kernel.org
9369 S:      Maintained
9370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9371 F:      Documentation/devicetree/bindings/interrupt-controller/
9372 F:      drivers/irqchip/
9373
9374 ISA
9375 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9376 S:      Maintained
9377 F:      Documentation/driver-api/isa.rst
9378 F:      drivers/base/isa.c
9379 F:      include/linux/isa.h
9380
9381 ISA RADIO MODULE
9382 M:      Hans Verkuil <hverkuil@xs4all.nl>
9383 L:      linux-media@vger.kernel.org
9384 S:      Maintained
9385 W:      https://linuxtv.org
9386 T:      git git://linuxtv.org/media_tree.git
9387 F:      drivers/media/radio/radio-isa*
9388
9389 ISAPNP
9390 M:      Jaroslav Kysela <perex@perex.cz>
9391 S:      Maintained
9392 F:      Documentation/driver-api/isapnp.rst
9393 F:      drivers/pnp/isapnp/
9394 F:      include/linux/isapnp.h
9395
9396 ISCSI
9397 M:      Lee Duncan <lduncan@suse.com>
9398 M:      Chris Leech <cleech@redhat.com>
9399 L:      open-iscsi@googlegroups.com
9400 L:      linux-scsi@vger.kernel.org
9401 S:      Maintained
9402 W:      www.open-iscsi.com
9403 F:      drivers/scsi/*iscsi*
9404 F:      include/scsi/*iscsi*
9405
9406 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9407 M:      Peter Jones <pjones@redhat.com>
9408 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9409 S:      Maintained
9410 F:      drivers/firmware/iscsi_ibft*
9411
9412 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9413 M:      Sagi Grimberg <sagi@grimberg.me>
9414 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
9415 L:      linux-rdma@vger.kernel.org
9416 S:      Supported
9417 W:      http://www.openfabrics.org
9418 W:      www.open-iscsi.org
9419 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9420 F:      drivers/infiniband/ulp/iser/
9421
9422 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9423 M:      Sagi Grimberg <sagi@grimberg.me>
9424 L:      linux-rdma@vger.kernel.org
9425 L:      target-devel@vger.kernel.org
9426 S:      Supported
9427 W:      http://www.linux-iscsi.org
9428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9429 F:      drivers/infiniband/ulp/isert
9430
9431 ISDN/CMTP OVER BLUETOOTH
9432 M:      Karsten Keil <isdn@linux-pingi.de>
9433 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9434 L:      netdev@vger.kernel.org
9435 S:      Odd Fixes
9436 W:      http://www.isdn4linux.de
9437 F:      Documentation/isdn/
9438 F:      drivers/isdn/capi/
9439 F:      include/linux/isdn/
9440 F:      include/uapi/linux/isdn/
9441 F:      net/bluetooth/cmtp/
9442
9443 ISDN/mISDN SUBSYSTEM
9444 M:      Karsten Keil <isdn@linux-pingi.de>
9445 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9446 L:      netdev@vger.kernel.org
9447 S:      Maintained
9448 W:      http://www.isdn4linux.de
9449 F:      drivers/isdn/Kconfig
9450 F:      drivers/isdn/Makefile
9451 F:      drivers/isdn/hardware/
9452 F:      drivers/isdn/mISDN/
9453
9454 IT87 HARDWARE MONITORING DRIVER
9455 M:      Jean Delvare <jdelvare@suse.com>
9456 L:      linux-hwmon@vger.kernel.org
9457 S:      Maintained
9458 F:      Documentation/hwmon/it87.rst
9459 F:      drivers/hwmon/it87.c
9460
9461 IT913X MEDIA DRIVER
9462 M:      Antti Palosaari <crope@iki.fi>
9463 L:      linux-media@vger.kernel.org
9464 S:      Maintained
9465 W:      https://linuxtv.org
9466 W:      http://palosaari.fi/linux/
9467 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9468 T:      git git://linuxtv.org/anttip/media_tree.git
9469 F:      drivers/media/tuners/it913x*
9470
9471 IVTV VIDEO4LINUX DRIVER
9472 M:      Andy Walls <awalls@md.metrocast.net>
9473 L:      linux-media@vger.kernel.org
9474 S:      Maintained
9475 W:      https://linuxtv.org
9476 T:      git git://linuxtv.org/media_tree.git
9477 F:      Documentation/admin-guide/media/ivtv*
9478 F:      drivers/media/pci/ivtv/
9479 F:      include/uapi/linux/ivtv*
9480
9481 IX2505V MEDIA DRIVER
9482 M:      Malcolm Priestley <tvboxspy@gmail.com>
9483 L:      linux-media@vger.kernel.org
9484 S:      Maintained
9485 W:      https://linuxtv.org
9486 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9487 F:      drivers/media/dvb-frontends/ix2505v*
9488
9489 JAILHOUSE HYPERVISOR INTERFACE
9490 M:      Jan Kiszka <jan.kiszka@siemens.com>
9491 L:      jailhouse-dev@googlegroups.com
9492 S:      Maintained
9493 F:      arch/x86/include/asm/jailhouse_para.h
9494 F:      arch/x86/kernel/jailhouse.c
9495
9496 JC42.4 TEMPERATURE SENSOR DRIVER
9497 M:      Guenter Roeck <linux@roeck-us.net>
9498 L:      linux-hwmon@vger.kernel.org
9499 S:      Maintained
9500 F:      Documentation/hwmon/jc42.rst
9501 F:      drivers/hwmon/jc42.c
9502
9503 JFS FILESYSTEM
9504 M:      Dave Kleikamp <shaggy@kernel.org>
9505 L:      jfs-discussion@lists.sourceforge.net
9506 S:      Maintained
9507 W:      http://jfs.sourceforge.net/
9508 T:      git git://github.com/kleikamp/linux-shaggy.git
9509 F:      Documentation/admin-guide/jfs.rst
9510 F:      fs/jfs/
9511
9512 JME NETWORK DRIVER
9513 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
9514 L:      netdev@vger.kernel.org
9515 S:      Maintained
9516 F:      drivers/net/ethernet/jme.*
9517
9518 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9519 M:      David Woodhouse <dwmw2@infradead.org>
9520 M:      Richard Weinberger <richard@nod.at>
9521 L:      linux-mtd@lists.infradead.org
9522 S:      Odd Fixes
9523 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9524 T:      git git://git.infradead.org/ubifs-2.6.git
9525 F:      fs/jffs2/
9526 F:      include/uapi/linux/jffs2.h
9527
9528 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9529 M:      "Theodore Ts'o" <tytso@mit.edu>
9530 M:      Jan Kara <jack@suse.com>
9531 L:      linux-ext4@vger.kernel.org
9532 S:      Maintained
9533 F:      fs/jbd2/
9534 F:      include/linux/jbd2.h
9535
9536 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9537 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9538 L:      linux-media@vger.kernel.org
9539 S:      Maintained
9540 F:      drivers/media/platform/rcar_jpu.c
9541
9542 JSM Neo PCI based serial card
9543 L:      linux-serial@vger.kernel.org
9544 S:      Orphan
9545 F:      drivers/tty/serial/jsm/
9546
9547 K10TEMP HARDWARE MONITORING DRIVER
9548 M:      Clemens Ladisch <clemens@ladisch.de>
9549 L:      linux-hwmon@vger.kernel.org
9550 S:      Maintained
9551 F:      Documentation/hwmon/k10temp.rst
9552 F:      drivers/hwmon/k10temp.c
9553
9554 K8TEMP HARDWARE MONITORING DRIVER
9555 M:      Rudolf Marek <r.marek@assembler.cz>
9556 L:      linux-hwmon@vger.kernel.org
9557 S:      Maintained
9558 F:      Documentation/hwmon/k8temp.rst
9559 F:      drivers/hwmon/k8temp.c
9560
9561 KASAN
9562 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
9563 R:      Alexander Potapenko <glider@google.com>
9564 R:      Andrey Konovalov <andreyknvl@gmail.com>
9565 R:      Dmitry Vyukov <dvyukov@google.com>
9566 L:      kasan-dev@googlegroups.com
9567 S:      Maintained
9568 F:      Documentation/dev-tools/kasan.rst
9569 F:      arch/*/include/asm/*kasan.h
9570 F:      arch/*/mm/kasan_init*
9571 F:      include/linux/kasan*.h
9572 F:      lib/Kconfig.kasan
9573 F:      lib/test_kasan*.c
9574 F:      mm/kasan/
9575 F:      scripts/Makefile.kasan
9576
9577 KCONFIG
9578 M:      Masahiro Yamada <masahiroy@kernel.org>
9579 L:      linux-kbuild@vger.kernel.org
9580 S:      Maintained
9581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9582 F:      Documentation/kbuild/kconfig*
9583 F:      scripts/Kconfig.include
9584 F:      scripts/kconfig/
9585
9586 KCOV
9587 R:      Dmitry Vyukov <dvyukov@google.com>
9588 R:      Andrey Konovalov <andreyknvl@gmail.com>
9589 L:      kasan-dev@googlegroups.com
9590 S:      Maintained
9591 F:      Documentation/dev-tools/kcov.rst
9592 F:      include/linux/kcov.h
9593 F:      include/uapi/linux/kcov.h
9594 F:      kernel/kcov.c
9595 F:      scripts/Makefile.kcov
9596
9597 KCSAN
9598 M:      Marco Elver <elver@google.com>
9599 R:      Dmitry Vyukov <dvyukov@google.com>
9600 L:      kasan-dev@googlegroups.com
9601 S:      Maintained
9602 F:      Documentation/dev-tools/kcsan.rst
9603 F:      include/linux/kcsan*.h
9604 F:      kernel/kcsan/
9605 F:      lib/Kconfig.kcsan
9606 F:      scripts/Makefile.kcsan
9607
9608 KDUMP
9609 M:      Dave Young <dyoung@redhat.com>
9610 M:      Baoquan He <bhe@redhat.com>
9611 R:      Vivek Goyal <vgoyal@redhat.com>
9612 L:      kexec@lists.infradead.org
9613 S:      Maintained
9614 W:      http://lse.sourceforge.net/kdump/
9615 F:      Documentation/admin-guide/kdump/
9616 F:      fs/proc/vmcore.c
9617 F:      include/linux/crash_core.h
9618 F:      include/linux/crash_dump.h
9619 F:      include/uapi/linux/vmcore.h
9620 F:      kernel/crash_*.c
9621
9622 KEENE FM RADIO TRANSMITTER DRIVER
9623 M:      Hans Verkuil <hverkuil@xs4all.nl>
9624 L:      linux-media@vger.kernel.org
9625 S:      Maintained
9626 W:      https://linuxtv.org
9627 T:      git git://linuxtv.org/media_tree.git
9628 F:      drivers/media/radio/radio-keene*
9629
9630 KERNEL AUTOMOUNTER
9631 M:      Ian Kent <raven@themaw.net>
9632 L:      autofs@vger.kernel.org
9633 S:      Maintained
9634 F:      fs/autofs/
9635
9636 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9637 M:      Masahiro Yamada <masahiroy@kernel.org>
9638 M:      Michal Marek <michal.lkml@markovi.net>
9639 L:      linux-kbuild@vger.kernel.org
9640 S:      Maintained
9641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9642 F:      Documentation/kbuild/
9643 F:      Makefile
9644 F:      scripts/*vmlinux*
9645 F:      scripts/Kbuild*
9646 F:      scripts/Makefile*
9647 F:      scripts/basic/
9648 F:      scripts/mk*
9649 F:      scripts/mod/
9650 F:      scripts/package/
9651
9652 KERNEL JANITORS
9653 L:      kernel-janitors@vger.kernel.org
9654 S:      Odd Fixes
9655 W:      http://kernelnewbies.org/KernelJanitors
9656
9657 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9658 M:      "J. Bruce Fields" <bfields@fieldses.org>
9659 M:      Chuck Lever <chuck.lever@oracle.com>
9660 L:      linux-nfs@vger.kernel.org
9661 S:      Supported
9662 W:      http://nfs.sourceforge.net/
9663 T:      git git://linux-nfs.org/~bfields/linux.git
9664 F:      fs/lockd/
9665 F:      fs/nfs_common/
9666 F:      fs/nfsd/
9667 F:      include/linux/lockd/
9668 F:      include/linux/sunrpc/
9669 F:      include/uapi/linux/nfsd/
9670 F:      include/uapi/linux/sunrpc/
9671 F:      net/sunrpc/
9672 F:      Documentation/filesystems/nfs/
9673
9674 KERNEL SELFTEST FRAMEWORK
9675 M:      Shuah Khan <shuah@kernel.org>
9676 M:      Shuah Khan <skhan@linuxfoundation.org>
9677 L:      linux-kselftest@vger.kernel.org
9678 S:      Maintained
9679 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9681 F:      Documentation/dev-tools/kselftest*
9682 F:      tools/testing/selftests/
9683
9684 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9685 M:      Brendan Higgins <brendanhiggins@google.com>
9686 L:      linux-kselftest@vger.kernel.org
9687 L:      kunit-dev@googlegroups.com
9688 S:      Maintained
9689 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9690 F:      Documentation/dev-tools/kunit/
9691 F:      include/kunit/
9692 F:      lib/kunit/
9693 F:      tools/testing/kunit/
9694
9695 KERNEL USERMODE HELPER
9696 M:      Luis Chamberlain <mcgrof@kernel.org>
9697 L:      linux-kernel@vger.kernel.org
9698 S:      Maintained
9699 F:      include/linux/umh.h
9700 F:      kernel/umh.c
9701
9702 KERNEL VIRTUAL MACHINE (KVM)
9703 M:      Paolo Bonzini <pbonzini@redhat.com>
9704 L:      kvm@vger.kernel.org
9705 S:      Supported
9706 W:      http://www.linux-kvm.org
9707 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9708 F:      Documentation/virt/kvm/
9709 F:      include/asm-generic/kvm*
9710 F:      include/kvm/iodev.h
9711 F:      include/linux/kvm*
9712 F:      include/trace/events/kvm.h
9713 F:      include/uapi/asm-generic/kvm*
9714 F:      include/uapi/linux/kvm*
9715 F:      tools/kvm/
9716 F:      tools/testing/selftests/kvm/
9717 F:      virt/kvm/*
9718
9719 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9720 M:      Marc Zyngier <maz@kernel.org>
9721 R:      James Morse <james.morse@arm.com>
9722 R:      Julien Thierry <julien.thierry.kdev@gmail.com>
9723 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
9724 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9725 L:      kvmarm@lists.cs.columbia.edu
9726 S:      Maintained
9727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9728 F:      arch/arm64/include/asm/kvm*
9729 F:      arch/arm64/include/uapi/asm/kvm*
9730 F:      arch/arm64/kvm/
9731 F:      include/kvm/arm_*
9732
9733 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9734 M:      Huacai Chen <chenhuacai@kernel.org>
9735 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
9736 L:      linux-mips@vger.kernel.org
9737 L:      kvm@vger.kernel.org
9738 S:      Maintained
9739 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9740 F:      arch/mips/include/asm/kvm*
9741 F:      arch/mips/include/uapi/asm/kvm*
9742 F:      arch/mips/kvm/
9743
9744 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9745 M:      Paul Mackerras <paulus@ozlabs.org>
9746 L:      kvm-ppc@vger.kernel.org
9747 S:      Supported
9748 W:      http://www.linux-kvm.org/
9749 T:      git git://github.com/agraf/linux-2.6.git
9750 F:      arch/powerpc/include/asm/kvm*
9751 F:      arch/powerpc/include/uapi/asm/kvm*
9752 F:      arch/powerpc/kernel/kvm*
9753 F:      arch/powerpc/kvm/
9754
9755 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9756 M:      Christian Borntraeger <borntraeger@de.ibm.com>
9757 M:      Janosch Frank <frankja@linux.ibm.com>
9758 R:      David Hildenbrand <david@redhat.com>
9759 R:      Cornelia Huck <cohuck@redhat.com>
9760 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
9761 L:      kvm@vger.kernel.org
9762 S:      Supported
9763 W:      http://www.ibm.com/developerworks/linux/linux390/
9764 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9765 F:      Documentation/virt/kvm/s390*
9766 F:      arch/s390/include/asm/gmap.h
9767 F:      arch/s390/include/asm/kvm*
9768 F:      arch/s390/include/uapi/asm/kvm*
9769 F:      arch/s390/kernel/uv.c
9770 F:      arch/s390/kvm/
9771 F:      arch/s390/mm/gmap.c
9772 F:      tools/testing/selftests/kvm/*/s390x/
9773 F:      tools/testing/selftests/kvm/s390x/
9774
9775 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9776 M:      Paolo Bonzini <pbonzini@redhat.com>
9777 R:      Sean Christopherson <seanjc@google.com>
9778 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
9779 R:      Wanpeng Li <wanpengli@tencent.com>
9780 R:      Jim Mattson <jmattson@google.com>
9781 R:      Joerg Roedel <joro@8bytes.org>
9782 L:      kvm@vger.kernel.org
9783 S:      Supported
9784 W:      http://www.linux-kvm.org
9785 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9786 F:      arch/x86/include/asm/kvm*
9787 F:      arch/x86/include/asm/pvclock-abi.h
9788 F:      arch/x86/include/asm/svm.h
9789 F:      arch/x86/include/asm/vmx*.h
9790 F:      arch/x86/include/uapi/asm/kvm*
9791 F:      arch/x86/include/uapi/asm/svm.h
9792 F:      arch/x86/include/uapi/asm/vmx.h
9793 F:      arch/x86/kernel/kvm.c
9794 F:      arch/x86/kernel/kvmclock.c
9795 F:      arch/x86/kvm/
9796 F:      arch/x86/kvm/*/
9797
9798 KERNFS
9799 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9800 M:      Tejun Heo <tj@kernel.org>
9801 S:      Supported
9802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9803 F:      fs/kernfs/
9804 F:      include/linux/kernfs.h
9805
9806 KEXEC
9807 M:      Eric Biederman <ebiederm@xmission.com>
9808 L:      kexec@lists.infradead.org
9809 S:      Maintained
9810 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9811 F:      include/linux/kexec.h
9812 F:      include/uapi/linux/kexec.h
9813 F:      kernel/kexec*
9814
9815 KEYS-ENCRYPTED
9816 M:      Mimi Zohar <zohar@linux.ibm.com>
9817 L:      linux-integrity@vger.kernel.org
9818 L:      keyrings@vger.kernel.org
9819 S:      Supported
9820 F:      Documentation/security/keys/trusted-encrypted.rst
9821 F:      include/keys/encrypted-type.h
9822 F:      security/keys/encrypted-keys/
9823
9824 KEYS-TRUSTED
9825 M:      James Bottomley <jejb@linux.ibm.com>
9826 M:      Jarkko Sakkinen <jarkko@kernel.org>
9827 M:      Mimi Zohar <zohar@linux.ibm.com>
9828 L:      linux-integrity@vger.kernel.org
9829 L:      keyrings@vger.kernel.org
9830 S:      Supported
9831 F:      Documentation/security/keys/trusted-encrypted.rst
9832 F:      include/keys/trusted-type.h
9833 F:      include/keys/trusted_tpm.h
9834 F:      security/keys/trusted-keys/
9835
9836 KEYS/KEYRINGS
9837 M:      David Howells <dhowells@redhat.com>
9838 M:      Jarkko Sakkinen <jarkko@kernel.org>
9839 L:      keyrings@vger.kernel.org
9840 S:      Maintained
9841 F:      Documentation/security/keys/core.rst
9842 F:      include/keys/
9843 F:      include/linux/key-type.h
9844 F:      include/linux/key.h
9845 F:      include/linux/keyctl.h
9846 F:      include/uapi/linux/keyctl.h
9847 F:      security/keys/
9848
9849 KFIFO
9850 M:      Stefani Seibold <stefani@seibold.net>
9851 S:      Maintained
9852 F:      include/linux/kfifo.h
9853 F:      lib/kfifo.c
9854 F:      samples/kfifo/
9855
9856 KGDB / KDB /debug_core
9857 M:      Jason Wessel <jason.wessel@windriver.com>
9858 M:      Daniel Thompson <daniel.thompson@linaro.org>
9859 R:      Douglas Anderson <dianders@chromium.org>
9860 L:      kgdb-bugreport@lists.sourceforge.net
9861 S:      Maintained
9862 W:      http://kgdb.wiki.kernel.org/
9863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9864 F:      Documentation/dev-tools/kgdb.rst
9865 F:      drivers/misc/kgdbts.c
9866 F:      drivers/tty/serial/kgdboc.c
9867 F:      include/linux/kdb.h
9868 F:      include/linux/kgdb.h
9869 F:      kernel/debug/
9870
9871 KHADAS MCU MFD DRIVER
9872 M:      Neil Armstrong <narmstrong@baylibre.com>
9873 L:      linux-amlogic@lists.infradead.org
9874 S:      Maintained
9875 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
9876 F:      drivers/mfd/khadas-mcu.c
9877 F:      include/linux/mfd/khadas-mcu.h
9878 F:      drivers/thermal/khadas_mcu_fan.c
9879
9880 KMEMLEAK
9881 M:      Catalin Marinas <catalin.marinas@arm.com>
9882 S:      Maintained
9883 F:      Documentation/dev-tools/kmemleak.rst
9884 F:      include/linux/kmemleak.h
9885 F:      mm/kmemleak.c
9886 F:      samples/kmemleak/kmemleak-test.c
9887
9888 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9889 M:      Luis Chamberlain <mcgrof@kernel.org>
9890 L:      linux-kernel@vger.kernel.org
9891 S:      Maintained
9892 F:      include/linux/kmod.h
9893 F:      kernel/kmod.c
9894 F:      lib/test_kmod.c
9895 F:      tools/testing/selftests/kmod/
9896
9897 KPROBES
9898 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
9899 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9900 M:      "David S. Miller" <davem@davemloft.net>
9901 M:      Masami Hiramatsu <mhiramat@kernel.org>
9902 S:      Maintained
9903 F:      Documentation/trace/kprobes.rst
9904 F:      include/asm-generic/kprobes.h
9905 F:      include/linux/kprobes.h
9906 F:      kernel/kprobes.c
9907
9908 KS0108 LCD CONTROLLER DRIVER
9909 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
9910 S:      Maintained
9911 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9912 F:      drivers/auxdisplay/ks0108.c
9913 F:      include/linux/ks0108.h
9914
9915 KTD253 BACKLIGHT DRIVER
9916 M:      Linus Walleij <linus.walleij@linaro.org>
9917 S:      Maintained
9918 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
9919 F:      drivers/video/backlight/ktd253-backlight.c
9920
9921 L3MDEV
9922 M:      David Ahern <dsahern@kernel.org>
9923 L:      netdev@vger.kernel.org
9924 S:      Maintained
9925 F:      include/net/l3mdev.h
9926 F:      net/l3mdev
9927
9928 L7 BPF FRAMEWORK
9929 M:      John Fastabend <john.fastabend@gmail.com>
9930 M:      Daniel Borkmann <daniel@iogearbox.net>
9931 M:      Jakub Sitnicki <jakub@cloudflare.com>
9932 M:      Lorenz Bauer <lmb@cloudflare.com>
9933 L:      netdev@vger.kernel.org
9934 L:      bpf@vger.kernel.org
9935 S:      Maintained
9936 F:      include/linux/skmsg.h
9937 F:      net/core/skmsg.c
9938 F:      net/core/sock_map.c
9939 F:      net/ipv4/tcp_bpf.c
9940 F:      net/ipv4/udp_bpf.c
9941
9942 LANTIQ / INTEL Ethernet drivers
9943 M:      Hauke Mehrtens <hauke@hauke-m.de>
9944 L:      netdev@vger.kernel.org
9945 S:      Maintained
9946 F:      drivers/net/dsa/lantiq_gswip.c
9947 F:      drivers/net/dsa/lantiq_pce.h
9948 F:      drivers/net/ethernet/lantiq_xrx200.c
9949 F:      net/dsa/tag_gswip.c
9950
9951 LANTIQ MIPS ARCHITECTURE
9952 M:      John Crispin <john@phrozen.org>
9953 L:      linux-mips@vger.kernel.org
9954 S:      Maintained
9955 F:      arch/mips/lantiq
9956 F:      drivers/soc/lantiq
9957
9958 LASI 53c700 driver for PARISC
9959 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9960 L:      linux-scsi@vger.kernel.org
9961 S:      Maintained
9962 F:      Documentation/scsi/53c700.rst
9963 F:      drivers/scsi/53c700*
9964
9965 LEAKING_ADDRESSES
9966 M:      Tobin C. Harding <me@tobin.cc>
9967 M:      Tycho Andersen <tycho@tycho.pizza>
9968 L:      linux-hardening@vger.kernel.org
9969 S:      Maintained
9970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9971 F:      scripts/leaking_addresses.pl
9972
9973 LED SUBSYSTEM
9974 M:      Pavel Machek <pavel@ucw.cz>
9975 R:      Dan Murphy <dmurphy@ti.com>
9976 L:      linux-leds@vger.kernel.org
9977 S:      Maintained
9978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9979 F:      Documentation/devicetree/bindings/leds/
9980 F:      drivers/leds/
9981 F:      include/linux/leds.h
9982
9983 LEGACY EEPROM DRIVER
9984 M:      Jean Delvare <jdelvare@suse.com>
9985 S:      Maintained
9986 F:      Documentation/misc-devices/eeprom.rst
9987 F:      drivers/misc/eeprom/eeprom.c
9988
9989 LEGO MINDSTORMS EV3
9990 R:      David Lechner <david@lechnology.com>
9991 S:      Maintained
9992 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9993 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9994 F:      drivers/power/supply/lego_ev3_battery.c
9995
9996 LEGO USB Tower driver
9997 M:      Juergen Stuber <starblue@users.sourceforge.net>
9998 L:      legousb-devel@lists.sourceforge.net
9999 S:      Maintained
10000 W:      http://legousb.sourceforge.net/
10001 F:      drivers/usb/misc/legousbtower.c
10002
10003 LG LAPTOP EXTRAS
10004 M:      Matan Ziv-Av <matan@svgalib.org>
10005 L:      platform-driver-x86@vger.kernel.org
10006 S:      Maintained
10007 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
10008 F:      Documentation/admin-guide/laptops/lg-laptop.rst
10009 F:      drivers/platform/x86/lg-laptop.c
10010
10011 LG2160 MEDIA DRIVER
10012 M:      Michael Krufky <mkrufky@linuxtv.org>
10013 L:      linux-media@vger.kernel.org
10014 S:      Maintained
10015 W:      https://linuxtv.org
10016 W:      http://github.com/mkrufky
10017 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10018 T:      git git://linuxtv.org/mkrufky/tuners.git
10019 F:      drivers/media/dvb-frontends/lg2160.*
10020
10021 LGDT3305 MEDIA DRIVER
10022 M:      Michael Krufky <mkrufky@linuxtv.org>
10023 L:      linux-media@vger.kernel.org
10024 S:      Maintained
10025 W:      https://linuxtv.org
10026 W:      http://github.com/mkrufky
10027 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10028 T:      git git://linuxtv.org/mkrufky/tuners.git
10029 F:      drivers/media/dvb-frontends/lgdt3305.*
10030
10031 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10032 M:      Viresh Kumar <vireshk@kernel.org>
10033 L:      linux-ide@vger.kernel.org
10034 S:      Maintained
10035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10036 F:      drivers/ata/pata_arasan_cf.c
10037 F:      include/linux/pata_arasan_cf_data.h
10038
10039 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10040 M:      Linus Walleij <linus.walleij@linaro.org>
10041 L:      linux-ide@vger.kernel.org
10042 S:      Maintained
10043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10044 F:      drivers/ata/pata_ftide010.c
10045 F:      drivers/ata/sata_gemini.c
10046 F:      drivers/ata/sata_gemini.h
10047
10048 LIBATA SATA AHCI PLATFORM devices support
10049 M:      Hans de Goede <hdegoede@redhat.com>
10050 M:      Jens Axboe <axboe@kernel.dk>
10051 L:      linux-ide@vger.kernel.org
10052 S:      Maintained
10053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10054 F:      drivers/ata/ahci_platform.c
10055 F:      drivers/ata/libahci_platform.c
10056 F:      include/linux/ahci_platform.h
10057
10058 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10059 M:      Mikael Pettersson <mikpelinux@gmail.com>
10060 L:      linux-ide@vger.kernel.org
10061 S:      Maintained
10062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10063 F:      drivers/ata/sata_promise.*
10064
10065 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10066 M:      Jens Axboe <axboe@kernel.dk>
10067 L:      linux-ide@vger.kernel.org
10068 S:      Maintained
10069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10070 F:      Documentation/devicetree/bindings/ata/
10071 F:      drivers/ata/
10072 F:      include/linux/ata.h
10073 F:      include/linux/libata.h
10074
10075 LIBLOCKDEP
10076 M:      Sasha Levin <alexander.levin@microsoft.com>
10077 S:      Maintained
10078 F:      tools/lib/lockdep/
10079
10080 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10081 M:      Dan Williams <dan.j.williams@intel.com>
10082 M:      Vishal Verma <vishal.l.verma@intel.com>
10083 M:      Dave Jiang <dave.jiang@intel.com>
10084 L:      linux-nvdimm@lists.01.org
10085 S:      Supported
10086 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10087 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10088 F:      drivers/nvdimm/blk.c
10089 F:      drivers/nvdimm/region_devs.c
10090
10091 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10092 M:      Vishal Verma <vishal.l.verma@intel.com>
10093 M:      Dan Williams <dan.j.williams@intel.com>
10094 M:      Dave Jiang <dave.jiang@intel.com>
10095 L:      linux-nvdimm@lists.01.org
10096 S:      Supported
10097 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10098 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10099 F:      drivers/nvdimm/btt*
10100
10101 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10102 M:      Dan Williams <dan.j.williams@intel.com>
10103 M:      Vishal Verma <vishal.l.verma@intel.com>
10104 M:      Dave Jiang <dave.jiang@intel.com>
10105 L:      linux-nvdimm@lists.01.org
10106 S:      Supported
10107 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10108 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10109 F:      drivers/nvdimm/pmem*
10110
10111 LIBNVDIMM: DEVICETREE BINDINGS
10112 M:      Oliver O'Halloran <oohall@gmail.com>
10113 L:      linux-nvdimm@lists.01.org
10114 S:      Supported
10115 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10116 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10117 F:      drivers/nvdimm/of_pmem.c
10118
10119 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10120 M:      Dan Williams <dan.j.williams@intel.com>
10121 M:      Vishal Verma <vishal.l.verma@intel.com>
10122 M:      Dave Jiang <dave.jiang@intel.com>
10123 M:      Ira Weiny <ira.weiny@intel.com>
10124 L:      linux-nvdimm@lists.01.org
10125 S:      Supported
10126 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10127 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10129 F:      drivers/acpi/nfit/*
10130 F:      drivers/nvdimm/*
10131 F:      include/linux/libnvdimm.h
10132 F:      include/linux/nd.h
10133 F:      include/uapi/linux/ndctl.h
10134 F:      tools/testing/nvdimm/
10135
10136 LICENSES and SPDX stuff
10137 M:      Thomas Gleixner <tglx@linutronix.de>
10138 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10139 L:      linux-spdx@vger.kernel.org
10140 S:      Maintained
10141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10142 F:      COPYING
10143 F:      Documentation/process/license-rules.rst
10144 F:      LICENSES/
10145 F:      scripts/spdxcheck-test.sh
10146 F:      scripts/spdxcheck.py
10147
10148 LIGHTNVM PLATFORM SUPPORT
10149 M:      Matias Bjorling <mb@lightnvm.io>
10150 L:      linux-block@vger.kernel.org
10151 S:      Maintained
10152 W:      http://github/OpenChannelSSD
10153 F:      drivers/lightnvm/
10154 F:      include/linux/lightnvm.h
10155 F:      include/uapi/linux/lightnvm.h
10156
10157 LINEAR RANGES HELPERS
10158 M:      Mark Brown <broonie@kernel.org>
10159 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10160 F:      lib/linear_ranges.c
10161 F:      lib/test_linear_ranges.c
10162 F:      include/linux/linear_range.h
10163
10164 LINUX FOR POWER MACINTOSH
10165 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10166 L:      linuxppc-dev@lists.ozlabs.org
10167 S:      Odd Fixes
10168 F:      arch/powerpc/platforms/powermac/
10169 F:      drivers/macintosh/
10170
10171 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10172 M:      Michael Ellerman <mpe@ellerman.id.au>
10173 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10174 R:      Paul Mackerras <paulus@samba.org>
10175 L:      linuxppc-dev@lists.ozlabs.org
10176 S:      Supported
10177 W:      https://github.com/linuxppc/wiki/wiki
10178 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10180 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10181 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10182 F:      Documentation/devicetree/bindings/powerpc/
10183 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10184 F:      Documentation/powerpc/
10185 F:      arch/powerpc/
10186 F:      drivers/*/*/*pasemi*
10187 F:      drivers/*/*pasemi*
10188 F:      drivers/char/tpm/tpm_ibmvtpm*
10189 F:      drivers/crypto/nx/
10190 F:      drivers/crypto/vmx/
10191 F:      drivers/i2c/busses/i2c-opal.c
10192 F:      drivers/net/ethernet/ibm/ibmveth.*
10193 F:      drivers/net/ethernet/ibm/ibmvnic.*
10194 F:      drivers/pci/hotplug/pnv_php.c
10195 F:      drivers/pci/hotplug/rpa*
10196 F:      drivers/rtc/rtc-opal.c
10197 F:      drivers/scsi/ibmvscsi/
10198 F:      drivers/tty/hvc/hvc_opal.c
10199 F:      drivers/watchdog/wdrtas.c
10200 F:      tools/testing/selftests/powerpc
10201 N:      /pmac
10202 N:      powermac
10203 N:      powernv
10204 N:      [^a-z0-9]ps3
10205 N:      pseries
10206
10207 LINUX FOR POWERPC EMBEDDED MPC5XXX
10208 M:      Anatolij Gustschin <agust@denx.de>
10209 L:      linuxppc-dev@lists.ozlabs.org
10210 S:      Odd Fixes
10211 F:      arch/powerpc/platforms/512x/
10212 F:      arch/powerpc/platforms/52xx/
10213
10214 LINUX FOR POWERPC EMBEDDED PPC4XX
10215 L:      linuxppc-dev@lists.ozlabs.org
10216 S:      Orphan
10217 F:      arch/powerpc/platforms/40x/
10218 F:      arch/powerpc/platforms/44x/
10219
10220 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10221 M:      Scott Wood <oss@buserror.net>
10222 L:      linuxppc-dev@lists.ozlabs.org
10223 S:      Odd fixes
10224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10225 F:      Documentation/devicetree/bindings/powerpc/fsl/
10226 F:      arch/powerpc/platforms/83xx/
10227 F:      arch/powerpc/platforms/85xx/
10228
10229 LINUX FOR POWERPC EMBEDDED PPC8XX
10230 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10231 L:      linuxppc-dev@lists.ozlabs.org
10232 S:      Maintained
10233 F:      arch/powerpc/platforms/8xx/
10234
10235 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10236 M:      Kees Cook <keescook@chromium.org>
10237 S:      Maintained
10238 F:      drivers/misc/lkdtm/*
10239 F:      tools/testing/selftests/lkdtm/*
10240
10241 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10242 M:      Alan Stern <stern@rowland.harvard.edu>
10243 M:      Andrea Parri <parri.andrea@gmail.com>
10244 M:      Will Deacon <will@kernel.org>
10245 M:      Peter Zijlstra <peterz@infradead.org>
10246 M:      Boqun Feng <boqun.feng@gmail.com>
10247 M:      Nicholas Piggin <npiggin@gmail.com>
10248 M:      David Howells <dhowells@redhat.com>
10249 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10250 M:      Luc Maranget <luc.maranget@inria.fr>
10251 M:      "Paul E. McKenney" <paulmck@kernel.org>
10252 R:      Akira Yokosawa <akiyks@gmail.com>
10253 R:      Daniel Lustig <dlustig@nvidia.com>
10254 R:      Joel Fernandes <joel@joelfernandes.org>
10255 L:      linux-kernel@vger.kernel.org
10256 L:      linux-arch@vger.kernel.org
10257 S:      Supported
10258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10259 F:      Documentation/atomic_bitops.txt
10260 F:      Documentation/atomic_t.txt
10261 F:      Documentation/core-api/refcount-vs-atomic.rst
10262 F:      Documentation/litmus-tests/
10263 F:      Documentation/memory-barriers.txt
10264 F:      tools/memory-model/
10265
10266 LIS3LV02D ACCELEROMETER DRIVER
10267 M:      Eric Piel <eric.piel@tremplin-utc.net>
10268 S:      Maintained
10269 F:      Documentation/misc-devices/lis3lv02d.rst
10270 F:      drivers/misc/lis3lv02d/
10271 F:      drivers/platform/x86/hp_accel.c
10272
10273 LIST KUNIT TEST
10274 M:      David Gow <davidgow@google.com>
10275 L:      linux-kselftest@vger.kernel.org
10276 L:      kunit-dev@googlegroups.com
10277 S:      Maintained
10278 F:      lib/list-test.c
10279
10280 LITEX PLATFORM
10281 M:      Karol Gugala <kgugala@antmicro.com>
10282 M:      Mateusz Holenko <mholenko@antmicro.com>
10283 S:      Maintained
10284 F:      Documentation/devicetree/bindings/*/litex,*.yaml
10285 F:      arch/openrisc/boot/dts/or1klitex.dts
10286 F:      drivers/soc/litex/litex_soc_ctrl.c
10287 F:      drivers/tty/serial/liteuart.c
10288 F:      include/linux/litex.h
10289
10290 LIVE PATCHING
10291 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10292 M:      Jiri Kosina <jikos@kernel.org>
10293 M:      Miroslav Benes <mbenes@suse.cz>
10294 M:      Petr Mladek <pmladek@suse.com>
10295 R:      Joe Lawrence <joe.lawrence@redhat.com>
10296 L:      live-patching@vger.kernel.org
10297 S:      Maintained
10298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10299 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10300 F:      Documentation/livepatch/
10301 F:      arch/powerpc/include/asm/livepatch.h
10302 F:      arch/s390/include/asm/livepatch.h
10303 F:      arch/x86/include/asm/livepatch.h
10304 F:      include/linux/livepatch.h
10305 F:      kernel/livepatch/
10306 F:      lib/livepatch/
10307 F:      samples/livepatch/
10308 F:      tools/testing/selftests/livepatch/
10309
10310 LLC (802.2)
10311 L:      netdev@vger.kernel.org
10312 S:      Odd fixes
10313 F:      include/linux/llc.h
10314 F:      include/net/llc*
10315 F:      include/uapi/linux/llc.h
10316 F:      net/llc/
10317
10318 LM73 HARDWARE MONITOR DRIVER
10319 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10320 L:      linux-hwmon@vger.kernel.org
10321 S:      Maintained
10322 F:      drivers/hwmon/lm73.c
10323
10324 LM78 HARDWARE MONITOR DRIVER
10325 M:      Jean Delvare <jdelvare@suse.com>
10326 L:      linux-hwmon@vger.kernel.org
10327 S:      Maintained
10328 F:      Documentation/hwmon/lm78.rst
10329 F:      drivers/hwmon/lm78.c
10330
10331 LM83 HARDWARE MONITOR DRIVER
10332 M:      Jean Delvare <jdelvare@suse.com>
10333 L:      linux-hwmon@vger.kernel.org
10334 S:      Maintained
10335 F:      Documentation/hwmon/lm83.rst
10336 F:      drivers/hwmon/lm83.c
10337
10338 LM90 HARDWARE MONITOR DRIVER
10339 M:      Jean Delvare <jdelvare@suse.com>
10340 L:      linux-hwmon@vger.kernel.org
10341 S:      Maintained
10342 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10343 F:      Documentation/hwmon/lm90.rst
10344 F:      drivers/hwmon/lm90.c
10345 F:      include/dt-bindings/thermal/lm90.h
10346
10347 LM95234 HARDWARE MONITOR DRIVER
10348 M:      Guenter Roeck <linux@roeck-us.net>
10349 L:      linux-hwmon@vger.kernel.org
10350 S:      Maintained
10351 F:      Documentation/hwmon/lm95234.rst
10352 F:      drivers/hwmon/lm95234.c
10353
10354 LME2510 MEDIA DRIVER
10355 M:      Malcolm Priestley <tvboxspy@gmail.com>
10356 L:      linux-media@vger.kernel.org
10357 S:      Maintained
10358 W:      https://linuxtv.org
10359 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10360 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10361
10362 LOADPIN SECURITY MODULE
10363 M:      Kees Cook <keescook@chromium.org>
10364 S:      Supported
10365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10366 F:      Documentation/admin-guide/LSM/LoadPin.rst
10367 F:      security/loadpin/
10368
10369 LOCKING PRIMITIVES
10370 M:      Peter Zijlstra <peterz@infradead.org>
10371 M:      Ingo Molnar <mingo@redhat.com>
10372 M:      Will Deacon <will@kernel.org>
10373 R:      Waiman Long <longman@redhat.com>
10374 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
10375 L:      linux-kernel@vger.kernel.org
10376 S:      Maintained
10377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10378 F:      Documentation/locking/
10379 F:      arch/*/include/asm/spinlock*.h
10380 F:      include/linux/lockdep.h
10381 F:      include/linux/mutex*.h
10382 F:      include/linux/rwlock*.h
10383 F:      include/linux/rwsem*.h
10384 F:      include/linux/seqlock.h
10385 F:      include/linux/spinlock*.h
10386 F:      kernel/locking/
10387 F:      lib/locking*.[ch]
10388 X:      kernel/locking/locktorture.c
10389
10390 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10391 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
10392 L:      linux-ntfs-dev@lists.sourceforge.net
10393 S:      Maintained
10394 W:      http://www.linux-ntfs.org/content/view/19/37/
10395 F:      Documentation/admin-guide/ldm.rst
10396 F:      block/partitions/ldm.*
10397
10398 LOGITECH HID GAMING KEYBOARDS
10399 M:      Hans de Goede <hdegoede@redhat.com>
10400 L:      linux-input@vger.kernel.org
10401 S:      Maintained
10402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10403 F:      drivers/hid/hid-lg-g15.c
10404
10405 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10406 M:      Sathya Prakash <sathya.prakash@broadcom.com>
10407 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
10408 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10409 L:      MPT-FusionLinux.pdl@broadcom.com
10410 L:      linux-scsi@vger.kernel.org
10411 S:      Supported
10412 W:      http://www.avagotech.com/support/
10413 F:      drivers/message/fusion/
10414 F:      drivers/scsi/mpt3sas/
10415
10416 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10417 M:      Matthew Wilcox <willy@infradead.org>
10418 L:      linux-scsi@vger.kernel.org
10419 S:      Maintained
10420 F:      drivers/scsi/sym53c8xx_2/
10421
10422 LTC1660 DAC DRIVER
10423 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10424 L:      linux-iio@vger.kernel.org
10425 S:      Maintained
10426 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10427 F:      drivers/iio/dac/ltc1660.c
10428
10429 LTC2947 HARDWARE MONITOR DRIVER
10430 M:      Nuno Sá <nuno.sa@analog.com>
10431 L:      linux-hwmon@vger.kernel.org
10432 S:      Supported
10433 W:      http://ez.analog.com/community/linux-device-drivers
10434 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10435 F:      drivers/hwmon/ltc2947-core.c
10436 F:      drivers/hwmon/ltc2947-i2c.c
10437 F:      drivers/hwmon/ltc2947-spi.c
10438 F:      drivers/hwmon/ltc2947.h
10439
10440 LTC2983 IIO TEMPERATURE DRIVER
10441 M:      Nuno Sá <nuno.sa@analog.com>
10442 L:      linux-iio@vger.kernel.org
10443 S:      Supported
10444 W:      http://ez.analog.com/community/linux-device-drivers
10445 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10446 F:      drivers/iio/temperature/ltc2983.c
10447
10448 LTC4261 HARDWARE MONITOR DRIVER
10449 M:      Guenter Roeck <linux@roeck-us.net>
10450 L:      linux-hwmon@vger.kernel.org
10451 S:      Maintained
10452 F:      Documentation/hwmon/ltc4261.rst
10453 F:      drivers/hwmon/ltc4261.c
10454
10455 LTC4306 I2C MULTIPLEXER DRIVER
10456 M:      Michael Hennerich <michael.hennerich@analog.com>
10457 L:      linux-i2c@vger.kernel.org
10458 S:      Supported
10459 W:      http://ez.analog.com/community/linux-device-drivers
10460 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10461 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10462
10463 LTP (Linux Test Project)
10464 M:      Mike Frysinger <vapier@gentoo.org>
10465 M:      Cyril Hrubis <chrubis@suse.cz>
10466 M:      Wanlong Gao <wanlong.gao@gmail.com>
10467 M:      Jan Stancek <jstancek@redhat.com>
10468 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
10469 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
10470 L:      ltp@lists.linux.it (subscribers-only)
10471 S:      Maintained
10472 W:      http://linux-test-project.github.io/
10473 T:      git git://github.com/linux-test-project/ltp.git
10474
10475 LYNX PCS MODULE
10476 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
10477 L:      netdev@vger.kernel.org
10478 S:      Supported
10479 F:      drivers/net/pcs/pcs-lynx.c
10480 F:      include/linux/pcs-lynx.h
10481
10482 M68K ARCHITECTURE
10483 M:      Geert Uytterhoeven <geert@linux-m68k.org>
10484 L:      linux-m68k@lists.linux-m68k.org
10485 S:      Maintained
10486 W:      http://www.linux-m68k.org/
10487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10488 F:      arch/m68k/
10489 F:      drivers/zorro/
10490
10491 M68K ON APPLE MACINTOSH
10492 M:      Joshua Thompson <funaho@jurai.org>
10493 L:      linux-m68k@lists.linux-m68k.org
10494 S:      Maintained
10495 W:      http://www.mac.linux-m68k.org/
10496 F:      arch/m68k/mac/
10497 F:      drivers/macintosh/adb-iop.c
10498 F:      drivers/macintosh/via-macii.c
10499
10500 M68K ON HP9000/300
10501 M:      Philip Blundell <philb@gnu.org>
10502 S:      Maintained
10503 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10504 F:      arch/m68k/hp300/
10505
10506 M88DS3103 MEDIA DRIVER
10507 M:      Antti Palosaari <crope@iki.fi>
10508 L:      linux-media@vger.kernel.org
10509 S:      Maintained
10510 W:      https://linuxtv.org
10511 W:      http://palosaari.fi/linux/
10512 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10513 T:      git git://linuxtv.org/anttip/media_tree.git
10514 F:      drivers/media/dvb-frontends/m88ds3103*
10515
10516 M88RS2000 MEDIA DRIVER
10517 M:      Malcolm Priestley <tvboxspy@gmail.com>
10518 L:      linux-media@vger.kernel.org
10519 S:      Maintained
10520 W:      https://linuxtv.org
10521 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10522 F:      drivers/media/dvb-frontends/m88rs2000*
10523
10524 MA901 MASTERKIT USB FM RADIO DRIVER
10525 M:      Alexey Klimov <klimov.linux@gmail.com>
10526 L:      linux-media@vger.kernel.org
10527 S:      Maintained
10528 T:      git git://linuxtv.org/media_tree.git
10529 F:      drivers/media/radio/radio-ma901.c
10530
10531 MAC80211
10532 M:      Johannes Berg <johannes@sipsolutions.net>
10533 L:      linux-wireless@vger.kernel.org
10534 S:      Maintained
10535 W:      https://wireless.wiki.kernel.org/
10536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10538 F:      Documentation/networking/mac80211-injection.rst
10539 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10540 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10541 F:      include/net/mac80211.h
10542 F:      net/mac80211/
10543
10544 MAILBOX API
10545 M:      Jassi Brar <jassisinghbrar@gmail.com>
10546 L:      linux-kernel@vger.kernel.org
10547 S:      Maintained
10548 F:      drivers/mailbox/
10549 F:      include/linux/mailbox_client.h
10550 F:      include/linux/mailbox_controller.h
10551
10552 MAILBOX ARM MHUv2
10553 M:      Viresh Kumar <viresh.kumar@linaro.org>
10554 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
10555 L:      linux-kernel@vger.kernel.org
10556 S:      Maintained
10557 F:      drivers/mailbox/arm_mhuv2.c
10558 F:      include/linux/mailbox/arm_mhuv2_message.h
10559 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
10560
10561 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10562 M:      Michael Kerrisk <mtk.manpages@gmail.com>
10563 L:      linux-man@vger.kernel.org
10564 S:      Maintained
10565 W:      http://www.kernel.org/doc/man-pages
10566
10567 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10568 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
10569 L:      linux-mips@vger.kernel.org
10570 S:      Maintained
10571 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10572
10573 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10574 M:      Andrew Lunn <andrew@lunn.ch>
10575 M:      Vivien Didelot <vivien.didelot@gmail.com>
10576 L:      netdev@vger.kernel.org
10577 S:      Maintained
10578 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10579 F:      Documentation/networking/devlink/mv88e6xxx.rst
10580 F:      drivers/net/dsa/mv88e6xxx/
10581 F:      include/linux/platform_data/mv88e6xxx.h
10582
10583 MARVELL ARMADA 3700 PHY DRIVERS
10584 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10585 S:      Maintained
10586 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10587 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10588 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10589 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10590
10591 MARVELL ARMADA DRM SUPPORT
10592 M:      Russell King <linux@armlinux.org.uk>
10593 S:      Maintained
10594 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10595 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10596 F:      Documentation/devicetree/bindings/display/armada/
10597 F:      drivers/gpu/drm/armada/
10598 F:      include/uapi/drm/armada_drm.h
10599
10600 MARVELL CRYPTO DRIVER
10601 M:      Boris Brezillon <bbrezillon@kernel.org>
10602 M:      Arnaud Ebalard <arno@natisbad.org>
10603 M:      Srujana Challa <schalla@marvell.com>
10604 L:      linux-crypto@vger.kernel.org
10605 S:      Maintained
10606 F:      drivers/crypto/marvell/
10607 F:      include/linux/soc/marvell/octeontx2/
10608
10609 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10610 M:      Mirko Lindner <mlindner@marvell.com>
10611 M:      Stephen Hemminger <stephen@networkplumber.org>
10612 L:      netdev@vger.kernel.org
10613 S:      Maintained
10614 F:      drivers/net/ethernet/marvell/sk*
10615
10616 MARVELL LIBERTAS WIRELESS DRIVER
10617 L:      libertas-dev@lists.infradead.org
10618 S:      Orphan
10619 F:      drivers/net/wireless/marvell/libertas/
10620
10621 MARVELL MACCHIATOBIN SUPPORT
10622 M:      Russell King <linux@armlinux.org.uk>
10623 L:      linux-arm-kernel@lists.infradead.org
10624 S:      Maintained
10625 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10626
10627 MARVELL MV643XX ETHERNET DRIVER
10628 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
10629 L:      netdev@vger.kernel.org
10630 S:      Maintained
10631 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10632 F:      include/linux/mv643xx.h
10633
10634 MARVELL MV88X3310 PHY DRIVER
10635 M:      Russell King <linux@armlinux.org.uk>
10636 L:      netdev@vger.kernel.org
10637 S:      Maintained
10638 F:      drivers/net/phy/marvell10g.c
10639
10640 MARVELL MVEBU THERMAL DRIVER
10641 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10642 S:      Maintained
10643 F:      drivers/thermal/armada_thermal.c
10644
10645 MARVELL MVNETA ETHERNET DRIVER
10646 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
10647 L:      netdev@vger.kernel.org
10648 S:      Maintained
10649 F:      drivers/net/ethernet/marvell/mvneta.*
10650
10651 MARVELL MVPP2 ETHERNET DRIVER
10652 M:      Marcin Wojtas <mw@semihalf.com>
10653 M:      Russell King <linux@armlinux.org.uk>
10654 L:      netdev@vger.kernel.org
10655 S:      Maintained
10656 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
10657 F:      drivers/net/ethernet/marvell/mvpp2/
10658
10659 MARVELL MWIFIEX WIRELESS DRIVER
10660 M:      Amitkumar Karwar <amitkarwar@gmail.com>
10661 M:      Ganapathi Bhat <ganapathi.bhat@nxp.com>
10662 M:      Xinming Hu <huxinming820@gmail.com>
10663 L:      linux-wireless@vger.kernel.org
10664 S:      Maintained
10665 F:      drivers/net/wireless/marvell/mwifiex/
10666
10667 MARVELL MWL8K WIRELESS DRIVER
10668 M:      Lennert Buytenhek <buytenh@wantstofly.org>
10669 L:      linux-wireless@vger.kernel.org
10670 S:      Odd Fixes
10671 F:      drivers/net/wireless/marvell/mwl8k.c
10672
10673 MARVELL NAND CONTROLLER DRIVER
10674 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10675 L:      linux-mtd@lists.infradead.org
10676 S:      Maintained
10677 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10678 F:      drivers/mtd/nand/raw/marvell_nand.c
10679
10680 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10681 M:      Sunil Goutham <sgoutham@marvell.com>
10682 M:      Geetha sowjanya <gakula@marvell.com>
10683 M:      Subbaraya Sundeep <sbhatta@marvell.com>
10684 M:      hariprasad <hkelam@marvell.com>
10685 L:      netdev@vger.kernel.org
10686 S:      Supported
10687 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10688 F:      include/linux/soc/marvell/octeontx2/
10689
10690 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10691 M:      Sunil Goutham <sgoutham@marvell.com>
10692 M:      Linu Cherian <lcherian@marvell.com>
10693 M:      Geetha sowjanya <gakula@marvell.com>
10694 M:      Jerin Jacob <jerinj@marvell.com>
10695 M:      hariprasad <hkelam@marvell.com>
10696 M:      Subbaraya Sundeep <sbhatta@marvell.com>
10697 L:      netdev@vger.kernel.org
10698 S:      Supported
10699 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
10700 F:      drivers/net/ethernet/marvell/octeontx2/af/
10701
10702 MARVELL PRESTERA ETHERNET SWITCH DRIVER
10703 M:      Vadym Kochan <vkochan@marvell.com>
10704 M:      Taras Chornyi <tchornyi@marvell.com>
10705 S:      Supported
10706 W:      https://github.com/Marvell-switching/switchdev-prestera
10707 F:      drivers/net/ethernet/marvell/prestera/
10708
10709 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10710 M:      Nicolas Pitre <nico@fluxnic.net>
10711 S:      Odd Fixes
10712 F:      drivers/mmc/host/mvsdio.*
10713
10714 MARVELL USB MDIO CONTROLLER DRIVER
10715 M:      Tobias Waldekranz <tobias@waldekranz.com>
10716 L:      netdev@vger.kernel.org
10717 S:      Maintained
10718 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10719 F:      drivers/net/mdio/mdio-mvusb.c
10720
10721 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10722 M:      Hu Ziji <huziji@marvell.com>
10723 L:      linux-mmc@vger.kernel.org
10724 S:      Supported
10725 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10726 F:      drivers/mmc/host/sdhci-xenon*
10727
10728 MATROX FRAMEBUFFER DRIVER
10729 L:      linux-fbdev@vger.kernel.org
10730 S:      Orphan
10731 F:      drivers/video/fbdev/matrox/matroxfb_*
10732 F:      include/uapi/linux/matroxfb.h
10733
10734 MAX16065 HARDWARE MONITOR DRIVER
10735 M:      Guenter Roeck <linux@roeck-us.net>
10736 L:      linux-hwmon@vger.kernel.org
10737 S:      Maintained
10738 F:      Documentation/hwmon/max16065.rst
10739 F:      drivers/hwmon/max16065.c
10740
10741 MAX2175 SDR TUNER DRIVER
10742 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10743 L:      linux-media@vger.kernel.org
10744 S:      Maintained
10745 T:      git git://linuxtv.org/media_tree.git
10746 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10747 F:      Documentation/userspace-api/media/drivers/max2175.rst
10748 F:      drivers/media/i2c/max2175*
10749 F:      include/uapi/linux/max2175.h
10750
10751 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10752 L:      linux-hwmon@vger.kernel.org
10753 S:      Orphan
10754 F:      Documentation/hwmon/max6650.rst
10755 F:      drivers/hwmon/max6650.c
10756
10757 MAX6697 HARDWARE MONITOR DRIVER
10758 M:      Guenter Roeck <linux@roeck-us.net>
10759 L:      linux-hwmon@vger.kernel.org
10760 S:      Maintained
10761 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10762 F:      Documentation/hwmon/max6697.rst
10763 F:      drivers/hwmon/max6697.c
10764 F:      include/linux/platform_data/max6697.h
10765
10766 MAX9286 QUAD GMSL DESERIALIZER DRIVER
10767 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
10768 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10769 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
10770 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
10771 L:      linux-media@vger.kernel.org
10772 S:      Maintained
10773 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
10774 F:      drivers/media/i2c/max9286.c
10775
10776 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10777 M:      Peter Rosin <peda@axentia.se>
10778 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10779 S:      Maintained
10780 F:      Documentation/devicetree/bindings/sound/max9860.txt
10781 F:      sound/soc/codecs/max9860.*
10782
10783 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10784 M:      Andreas Klinger <ak@it-klinger.de>
10785 L:      linux-iio@vger.kernel.org
10786 S:      Maintained
10787 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10788 F:      drivers/iio/proximity/mb1232.c
10789
10790 MAXIM MAX77650 PMIC MFD DRIVER
10791 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
10792 L:      linux-kernel@vger.kernel.org
10793 S:      Maintained
10794 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10795 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10796 F:      drivers/gpio/gpio-max77650.c
10797 F:      drivers/input/misc/max77650-onkey.c
10798 F:      drivers/leds/leds-max77650.c
10799 F:      drivers/mfd/max77650.c
10800 F:      drivers/power/supply/max77650-charger.c
10801 F:      drivers/regulator/max77650-regulator.c
10802 F:      include/linux/mfd/max77650.h
10803
10804 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10805 M:      Javier Martinez Canillas <javier@dowhile0.org>
10806 L:      linux-kernel@vger.kernel.org
10807 S:      Supported
10808 F:      Documentation/devicetree/bindings/*/*max77802.txt
10809 F:      drivers/regulator/max77802-regulator.c
10810 F:      include/dt-bindings/*/*max77802.h
10811
10812 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10813 M:      Krzysztof Kozlowski <krzk@kernel.org>
10814 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10815 L:      linux-pm@vger.kernel.org
10816 S:      Supported
10817 F:      drivers/power/supply/max14577_charger.c
10818 F:      drivers/power/supply/max77693_charger.c
10819
10820 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10821 M:      Chanwoo Choi <cw00.choi@samsung.com>
10822 M:      Krzysztof Kozlowski <krzk@kernel.org>
10823 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10824 L:      linux-kernel@vger.kernel.org
10825 S:      Supported
10826 F:      Documentation/devicetree/bindings/*/max77686.txt
10827 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10828 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10829 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10830 F:      drivers/*/max14577*.c
10831 F:      drivers/*/max77686*.c
10832 F:      drivers/*/max77693*.c
10833 F:      drivers/clk/clk-max77686.c
10834 F:      drivers/extcon/extcon-max14577.c
10835 F:      drivers/extcon/extcon-max77693.c
10836 F:      drivers/rtc/rtc-max77686.c
10837 F:      include/linux/mfd/max14577*.h
10838 F:      include/linux/mfd/max77686*.h
10839 F:      include/linux/mfd/max77693*.h
10840
10841 MAXIRADIO FM RADIO RECEIVER DRIVER
10842 M:      Hans Verkuil <hverkuil@xs4all.nl>
10843 L:      linux-media@vger.kernel.org
10844 S:      Maintained
10845 W:      https://linuxtv.org
10846 T:      git git://linuxtv.org/media_tree.git
10847 F:      drivers/media/radio/radio-maxiradio*
10848
10849 MCAN MMIO DEVICE DRIVER
10850 M:      Dan Murphy <dmurphy@ti.com>
10851 M:      Pankaj Sharma <pankj.sharma@samsung.com>
10852 L:      linux-can@vger.kernel.org
10853 S:      Maintained
10854 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10855 F:      drivers/net/can/m_can/m_can.c
10856 F:      drivers/net/can/m_can/m_can.h
10857 F:      drivers/net/can/m_can/m_can_platform.c
10858
10859 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10860 M:      Rishi Gupta <gupt21@gmail.com>
10861 L:      linux-i2c@vger.kernel.org
10862 L:      linux-input@vger.kernel.org
10863 S:      Maintained
10864 F:      drivers/hid/hid-mcp2221.c
10865
10866 MCP251XFD SPI-CAN NETWORK DRIVER
10867 M:      Marc Kleine-Budde <mkl@pengutronix.de>
10868 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
10869 R:      Thomas Kopp <thomas.kopp@microchip.com>
10870 L:      linux-can@vger.kernel.org
10871 S:      Maintained
10872 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
10873 F:      drivers/net/can/spi/mcp251xfd/
10874
10875 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10876 M:      Peter Rosin <peda@axentia.se>
10877 L:      linux-iio@vger.kernel.org
10878 S:      Maintained
10879 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10880 F:      drivers/iio/potentiometer/mcp4018.c
10881 F:      drivers/iio/potentiometer/mcp4531.c
10882
10883 MCR20A IEEE-802.15.4 RADIO DRIVER
10884 M:      Xue Liu <liuxuenetmail@gmail.com>
10885 L:      linux-wpan@vger.kernel.org
10886 S:      Maintained
10887 W:      https://github.com/xueliu/mcr20a-linux
10888 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10889 F:      drivers/net/ieee802154/mcr20a.c
10890 F:      drivers/net/ieee802154/mcr20a.h
10891
10892 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10893 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10894 L:      linux-iio@vger.kernel.org
10895 S:      Maintained
10896 F:      drivers/iio/dac/cio-dac.c
10897
10898 MEDIA CONTROLLER FRAMEWORK
10899 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10900 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10901 L:      linux-media@vger.kernel.org
10902 S:      Supported
10903 W:      https://www.linuxtv.org
10904 T:      git git://linuxtv.org/media_tree.git
10905 F:      drivers/media/mc/
10906 F:      include/media/media-*.h
10907 F:      include/uapi/linux/media.h
10908
10909 MEDIA DRIVER FOR FREESCALE IMX PXP
10910 M:      Philipp Zabel <p.zabel@pengutronix.de>
10911 L:      linux-media@vger.kernel.org
10912 S:      Maintained
10913 T:      git git://linuxtv.org/media_tree.git
10914 F:      drivers/media/platform/imx-pxp.[ch]
10915
10916 MEDIA DRIVERS FOR ASCOT2E
10917 M:      Sergey Kozlov <serjk@netup.ru>
10918 M:      Abylay Ospan <aospan@netup.ru>
10919 L:      linux-media@vger.kernel.org
10920 S:      Supported
10921 W:      https://linuxtv.org
10922 W:      http://netup.tv/
10923 T:      git git://linuxtv.org/media_tree.git
10924 F:      drivers/media/dvb-frontends/ascot2e*
10925
10926 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10927 M:      Jasmin Jessich <jasmin@anw.at>
10928 L:      linux-media@vger.kernel.org
10929 S:      Maintained
10930 W:      https://linuxtv.org
10931 T:      git git://linuxtv.org/media_tree.git
10932 F:      drivers/media/dvb-frontends/cxd2099*
10933
10934 MEDIA DRIVERS FOR CXD2841ER
10935 M:      Sergey Kozlov <serjk@netup.ru>
10936 M:      Abylay Ospan <aospan@netup.ru>
10937 L:      linux-media@vger.kernel.org
10938 S:      Supported
10939 W:      https://linuxtv.org
10940 W:      http://netup.tv/
10941 T:      git git://linuxtv.org/media_tree.git
10942 F:      drivers/media/dvb-frontends/cxd2841er*
10943
10944 MEDIA DRIVERS FOR CXD2880
10945 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
10946 L:      linux-media@vger.kernel.org
10947 S:      Supported
10948 W:      http://linuxtv.org/
10949 T:      git git://linuxtv.org/media_tree.git
10950 F:      drivers/media/dvb-frontends/cxd2880/*
10951 F:      drivers/media/spi/cxd2880*
10952
10953 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10954 L:      linux-media@vger.kernel.org
10955 S:      Orphan
10956 W:      https://linuxtv.org
10957 T:      git git://linuxtv.org/media_tree.git
10958 F:      drivers/media/pci/ddbridge/*
10959
10960 MEDIA DRIVERS FOR FREESCALE IMX
10961 M:      Steve Longerbeam <slongerbeam@gmail.com>
10962 M:      Philipp Zabel <p.zabel@pengutronix.de>
10963 L:      linux-media@vger.kernel.org
10964 S:      Maintained
10965 T:      git git://linuxtv.org/media_tree.git
10966 F:      Documentation/admin-guide/media/imx.rst
10967 F:      Documentation/devicetree/bindings/media/imx.txt
10968 F:      drivers/staging/media/imx/
10969 F:      include/linux/imx-media.h
10970 F:      include/media/imx.h
10971
10972 MEDIA DRIVERS FOR FREESCALE IMX7
10973 M:      Rui Miguel Silva <rmfrfs@gmail.com>
10974 L:      linux-media@vger.kernel.org
10975 S:      Maintained
10976 T:      git git://linuxtv.org/media_tree.git
10977 F:      Documentation/admin-guide/media/imx7.rst
10978 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
10979 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
10980 F:      drivers/staging/media/imx/imx7-media-csi.c
10981 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10982
10983 MEDIA DRIVERS FOR HELENE
10984 M:      Abylay Ospan <aospan@netup.ru>
10985 L:      linux-media@vger.kernel.org
10986 S:      Supported
10987 W:      https://linuxtv.org
10988 W:      http://netup.tv/
10989 T:      git git://linuxtv.org/media_tree.git
10990 F:      drivers/media/dvb-frontends/helene*
10991
10992 MEDIA DRIVERS FOR HORUS3A
10993 M:      Sergey Kozlov <serjk@netup.ru>
10994 M:      Abylay Ospan <aospan@netup.ru>
10995 L:      linux-media@vger.kernel.org
10996 S:      Supported
10997 W:      https://linuxtv.org
10998 W:      http://netup.tv/
10999 T:      git git://linuxtv.org/media_tree.git
11000 F:      drivers/media/dvb-frontends/horus3a*
11001
11002 MEDIA DRIVERS FOR LNBH25
11003 M:      Sergey Kozlov <serjk@netup.ru>
11004 M:      Abylay Ospan <aospan@netup.ru>
11005 L:      linux-media@vger.kernel.org
11006 S:      Supported
11007 W:      https://linuxtv.org
11008 W:      http://netup.tv/
11009 T:      git git://linuxtv.org/media_tree.git
11010 F:      drivers/media/dvb-frontends/lnbh25*
11011
11012 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11013 L:      linux-media@vger.kernel.org
11014 S:      Orphan
11015 W:      https://linuxtv.org
11016 T:      git git://linuxtv.org/media_tree.git
11017 F:      drivers/media/dvb-frontends/mxl5xx*
11018
11019 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11020 M:      Sergey Kozlov <serjk@netup.ru>
11021 M:      Abylay Ospan <aospan@netup.ru>
11022 L:      linux-media@vger.kernel.org
11023 S:      Supported
11024 W:      https://linuxtv.org
11025 W:      http://netup.tv/
11026 T:      git git://linuxtv.org/media_tree.git
11027 F:      drivers/media/pci/netup_unidvb/*
11028
11029 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11030 M:      Dmitry Osipenko <digetx@gmail.com>
11031 L:      linux-media@vger.kernel.org
11032 L:      linux-tegra@vger.kernel.org
11033 S:      Maintained
11034 T:      git git://linuxtv.org/media_tree.git
11035 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11036 F:      drivers/staging/media/tegra-vde/
11037
11038 MEDIA DRIVERS FOR RENESAS - CEU
11039 M:      Jacopo Mondi <jacopo@jmondi.org>
11040 L:      linux-media@vger.kernel.org
11041 L:      linux-renesas-soc@vger.kernel.org
11042 S:      Supported
11043 T:      git git://linuxtv.org/media_tree.git
11044 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
11045 F:      drivers/media/platform/renesas-ceu.c
11046 F:      include/media/drv-intf/renesas-ceu.h
11047
11048 MEDIA DRIVERS FOR RENESAS - DRIF
11049 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11050 L:      linux-media@vger.kernel.org
11051 L:      linux-renesas-soc@vger.kernel.org
11052 S:      Supported
11053 T:      git git://linuxtv.org/media_tree.git
11054 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
11055 F:      drivers/media/platform/rcar_drif.c
11056
11057 MEDIA DRIVERS FOR RENESAS - FCP
11058 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11059 L:      linux-media@vger.kernel.org
11060 L:      linux-renesas-soc@vger.kernel.org
11061 S:      Supported
11062 T:      git git://linuxtv.org/media_tree.git
11063 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11064 F:      drivers/media/platform/rcar-fcp.c
11065 F:      include/media/rcar-fcp.h
11066
11067 MEDIA DRIVERS FOR RENESAS - FDP1
11068 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11069 L:      linux-media@vger.kernel.org
11070 L:      linux-renesas-soc@vger.kernel.org
11071 S:      Supported
11072 T:      git git://linuxtv.org/media_tree.git
11073 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11074 F:      drivers/media/platform/rcar_fdp1.c
11075
11076 MEDIA DRIVERS FOR RENESAS - VIN
11077 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11078 L:      linux-media@vger.kernel.org
11079 L:      linux-renesas-soc@vger.kernel.org
11080 S:      Supported
11081 T:      git git://linuxtv.org/media_tree.git
11082 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11083 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11084 F:      drivers/media/platform/rcar-vin/
11085
11086 MEDIA DRIVERS FOR RENESAS - VSP1
11087 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11088 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11089 L:      linux-media@vger.kernel.org
11090 L:      linux-renesas-soc@vger.kernel.org
11091 S:      Supported
11092 T:      git git://linuxtv.org/media_tree.git
11093 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11094 F:      drivers/media/platform/vsp1/
11095
11096 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11097 L:      linux-media@vger.kernel.org
11098 S:      Orphan
11099 W:      https://linuxtv.org
11100 T:      git git://linuxtv.org/media_tree.git
11101 F:      drivers/media/dvb-frontends/stv0910*
11102
11103 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11104 L:      linux-media@vger.kernel.org
11105 S:      Orphan
11106 W:      https://linuxtv.org
11107 T:      git git://linuxtv.org/media_tree.git
11108 F:      drivers/media/dvb-frontends/stv6111*
11109
11110 MEDIA DRIVERS FOR STM32 - DCMI
11111 M:      Hugues Fruchet <hugues.fruchet@st.com>
11112 L:      linux-media@vger.kernel.org
11113 S:      Supported
11114 T:      git git://linuxtv.org/media_tree.git
11115 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11116 F:      drivers/media/platform/stm32/stm32-dcmi.c
11117
11118 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11119 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11120 L:      linux-media@vger.kernel.org
11121 S:      Maintained
11122 W:      https://linuxtv.org
11123 Q:      http://patchwork.kernel.org/project/linux-media/list/
11124 T:      git git://linuxtv.org/media_tree.git
11125 F:      Documentation/admin-guide/media/
11126 F:      Documentation/devicetree/bindings/media/
11127 F:      Documentation/driver-api/media/
11128 F:      Documentation/userspace-api/media/
11129 F:      drivers/media/
11130 F:      drivers/staging/media/
11131 F:      include/linux/platform_data/media/
11132 F:      include/media/
11133 F:      include/uapi/linux/dvb/
11134 F:      include/uapi/linux/ivtv*
11135 F:      include/uapi/linux/media.h
11136 F:      include/uapi/linux/meye.h
11137 F:      include/uapi/linux/uvcvideo.h
11138 F:      include/uapi/linux/v4l2-*
11139 F:      include/uapi/linux/videodev2.h
11140
11141 MEDIATEK BLUETOOTH DRIVER
11142 M:      Sean Wang <sean.wang@mediatek.com>
11143 L:      linux-bluetooth@vger.kernel.org
11144 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11145 S:      Maintained
11146 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11147 F:      drivers/bluetooth/btmtkuart.c
11148
11149 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11150 M:      Sean Wang <sean.wang@mediatek.com>
11151 L:      linux-pm@vger.kernel.org
11152 S:      Maintained
11153 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11154 F:      drivers/power/reset/mt6323-poweroff.c
11155
11156 MEDIATEK CIR DRIVER
11157 M:      Sean Wang <sean.wang@mediatek.com>
11158 S:      Maintained
11159 F:      drivers/media/rc/mtk-cir.c
11160
11161 MEDIATEK DMA DRIVER
11162 M:      Sean Wang <sean.wang@mediatek.com>
11163 L:      dmaengine@vger.kernel.org
11164 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11165 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11166 S:      Maintained
11167 F:      Documentation/devicetree/bindings/dma/mtk-*
11168 F:      drivers/dma/mediatek/
11169
11170 MEDIATEK ETHERNET DRIVER
11171 M:      Felix Fietkau <nbd@nbd.name>
11172 M:      John Crispin <john@phrozen.org>
11173 M:      Sean Wang <sean.wang@mediatek.com>
11174 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11175 L:      netdev@vger.kernel.org
11176 S:      Maintained
11177 F:      drivers/net/ethernet/mediatek/
11178
11179 MEDIATEK I2C CONTROLLER DRIVER
11180 M:      Qii Wang <qii.wang@mediatek.com>
11181 L:      linux-i2c@vger.kernel.org
11182 S:      Maintained
11183 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11184 F:      drivers/i2c/busses/i2c-mt65xx.c
11185
11186 MEDIATEK JPEG DRIVER
11187 M:      Rick Chang <rick.chang@mediatek.com>
11188 M:      Bin Liu <bin.liu@mediatek.com>
11189 S:      Supported
11190 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11191 F:      drivers/media/platform/mtk-jpeg/
11192
11193 MEDIATEK MDP DRIVER
11194 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11195 M:      Houlong Wei <houlong.wei@mediatek.com>
11196 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11197 S:      Supported
11198 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11199 F:      drivers/media/platform/mtk-mdp/
11200 F:      drivers/media/platform/mtk-vpu/
11201
11202 MEDIATEK MEDIA DRIVER
11203 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11204 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11205 S:      Supported
11206 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11207 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11208 F:      drivers/media/platform/mtk-vcodec/
11209 F:      drivers/media/platform/mtk-vpu/
11210
11211 MEDIATEK MMC/SD/SDIO DRIVER
11212 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11213 S:      Maintained
11214 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
11215 F:      drivers/mmc/host/mtk-sd.c
11216
11217 MEDIATEK MT76 WIRELESS LAN DRIVER
11218 M:      Felix Fietkau <nbd@nbd.name>
11219 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11220 R:      Ryder Lee <ryder.lee@mediatek.com>
11221 L:      linux-wireless@vger.kernel.org
11222 S:      Maintained
11223 F:      drivers/net/wireless/mediatek/mt76/
11224
11225 MEDIATEK MT7601U WIRELESS LAN DRIVER
11226 M:      Jakub Kicinski <kubakici@wp.pl>
11227 L:      linux-wireless@vger.kernel.org
11228 S:      Maintained
11229 F:      drivers/net/wireless/mediatek/mt7601u/
11230
11231 MEDIATEK MT7621/28/88 I2C DRIVER
11232 M:      Stefan Roese <sr@denx.de>
11233 L:      linux-i2c@vger.kernel.org
11234 S:      Maintained
11235 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11236 F:      drivers/i2c/busses/i2c-mt7621.c
11237
11238 MEDIATEK MT7621 PHY PCI DRIVER
11239 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11240 S:      Maintained
11241 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11242 F:      drivers/phy/ralink/phy-mt7621-pci.c
11243
11244 MEDIATEK NAND CONTROLLER DRIVER
11245 L:      linux-mtd@lists.infradead.org
11246 S:      Orphan
11247 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11248 F:      drivers/mtd/nand/raw/mtk_*
11249
11250 MEDIATEK PMIC LED DRIVER
11251 M:      Sean Wang <sean.wang@mediatek.com>
11252 S:      Maintained
11253 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11254 F:      drivers/leds/leds-mt6323.c
11255
11256 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11257 M:      Sean Wang <sean.wang@mediatek.com>
11258 S:      Maintained
11259 F:      drivers/char/hw_random/mtk-rng.c
11260
11261 MEDIATEK SWITCH DRIVER
11262 M:      Sean Wang <sean.wang@mediatek.com>
11263 M:      Landen Chao <Landen.Chao@mediatek.com>
11264 L:      netdev@vger.kernel.org
11265 S:      Maintained
11266 F:      drivers/net/dsa/mt7530.*
11267 F:      net/dsa/tag_mtk.c
11268
11269 MEDIATEK USB3 DRD IP DRIVER
11270 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
11271 L:      linux-usb@vger.kernel.org
11272 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11273 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11274 S:      Maintained
11275 F:      Documentation/devicetree/bindings/usb/mediatek,*
11276 F:      drivers/usb/host/xhci-mtk*
11277 F:      drivers/usb/mtu3/
11278
11279 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11280 M:      Peter Senna Tschudin <peter.senna@gmail.com>
11281 M:      Martin Donnelly <martin.donnelly@ge.com>
11282 M:      Martyn Welch <martyn.welch@collabora.co.uk>
11283 S:      Maintained
11284 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11285 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11286
11287 MEGARAID SCSI/SAS DRIVERS
11288 M:      Kashyap Desai <kashyap.desai@broadcom.com>
11289 M:      Sumit Saxena <sumit.saxena@broadcom.com>
11290 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11291 L:      megaraidlinux.pdl@broadcom.com
11292 L:      linux-scsi@vger.kernel.org
11293 S:      Maintained
11294 W:      http://www.avagotech.com/support/
11295 F:      Documentation/scsi/megaraid.rst
11296 F:      drivers/scsi/megaraid.*
11297 F:      drivers/scsi/megaraid/
11298
11299 MELEXIS MLX90614 DRIVER
11300 M:      Crt Mori <cmo@melexis.com>
11301 L:      linux-iio@vger.kernel.org
11302 S:      Supported
11303 W:      http://www.melexis.com
11304 F:      drivers/iio/temperature/mlx90614.c
11305
11306 MELEXIS MLX90632 DRIVER
11307 M:      Crt Mori <cmo@melexis.com>
11308 L:      linux-iio@vger.kernel.org
11309 S:      Supported
11310 W:      http://www.melexis.com
11311 F:      drivers/iio/temperature/mlx90632.c
11312
11313 MELFAS MIP4 TOUCHSCREEN DRIVER
11314 M:      Sangwon Jee <jeesw@melfas.com>
11315 S:      Supported
11316 W:      http://www.melfas.com
11317 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11318 F:      drivers/input/touchscreen/melfas_mip4.c
11319
11320 MELLANOX BLUEFIELD I2C DRIVER
11321 M:      Khalil Blaiech <kblaiech@nvidia.com>
11322 L:      linux-i2c@vger.kernel.org
11323 S:      Supported
11324 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
11325 F:      drivers/i2c/busses/i2c-mlxbf.c
11326
11327 MELLANOX ETHERNET DRIVER (mlx4_en)
11328 M:      Tariq Toukan <tariqt@nvidia.com>
11329 L:      netdev@vger.kernel.org
11330 S:      Supported
11331 W:      http://www.mellanox.com
11332 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11333 F:      drivers/net/ethernet/mellanox/mlx4/en_*
11334
11335 MELLANOX ETHERNET DRIVER (mlx5e)
11336 M:      Saeed Mahameed <saeedm@nvidia.com>
11337 L:      netdev@vger.kernel.org
11338 S:      Supported
11339 W:      http://www.mellanox.com
11340 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11341 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
11342
11343 MELLANOX ETHERNET INNOVA DRIVERS
11344 R:      Boris Pismenny <borisp@nvidia.com>
11345 L:      netdev@vger.kernel.org
11346 S:      Supported
11347 W:      http://www.mellanox.com
11348 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11349 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
11350 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
11351 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
11352 F:      include/linux/mlx5/mlx5_ifc_fpga.h
11353
11354 MELLANOX ETHERNET SWITCH DRIVERS
11355 M:      Jiri Pirko <jiri@nvidia.com>
11356 M:      Ido Schimmel <idosch@nvidia.com>
11357 L:      netdev@vger.kernel.org
11358 S:      Supported
11359 W:      http://www.mellanox.com
11360 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11361 F:      drivers/net/ethernet/mellanox/mlxsw/
11362 F:      tools/testing/selftests/drivers/net/mlxsw/
11363
11364 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
11365 M:      mlxsw@nvidia.com
11366 L:      netdev@vger.kernel.org
11367 S:      Supported
11368 W:      http://www.mellanox.com
11369 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11370 F:      drivers/net/ethernet/mellanox/mlxfw/
11371
11372 MELLANOX HARDWARE PLATFORM SUPPORT
11373 M:      Andy Shevchenko <andy@infradead.org>
11374 M:      Darren Hart <dvhart@infradead.org>
11375 M:      Vadim Pasternak <vadimp@nvidia.com>
11376 L:      platform-driver-x86@vger.kernel.org
11377 S:      Supported
11378 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
11379 F:      drivers/platform/mellanox/
11380 F:      include/linux/platform_data/mlxreg.h
11381
11382 MELLANOX MLX4 core VPI driver
11383 M:      Tariq Toukan <tariqt@nvidia.com>
11384 L:      netdev@vger.kernel.org
11385 L:      linux-rdma@vger.kernel.org
11386 S:      Supported
11387 W:      http://www.mellanox.com
11388 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11389 F:      drivers/net/ethernet/mellanox/mlx4/
11390 F:      include/linux/mlx4/
11391
11392 MELLANOX MLX4 IB driver
11393 M:      Yishai Hadas <yishaih@nvidia.com>
11394 L:      linux-rdma@vger.kernel.org
11395 S:      Supported
11396 W:      http://www.mellanox.com
11397 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11398 F:      drivers/infiniband/hw/mlx4/
11399 F:      include/linux/mlx4/
11400 F:      include/uapi/rdma/mlx4-abi.h
11401
11402 MELLANOX MLX5 core VPI driver
11403 M:      Saeed Mahameed <saeedm@nvidia.com>
11404 M:      Leon Romanovsky <leonro@nvidia.com>
11405 L:      netdev@vger.kernel.org
11406 L:      linux-rdma@vger.kernel.org
11407 S:      Supported
11408 W:      http://www.mellanox.com
11409 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11410 F:      Documentation/networking/device_drivers/ethernet/mellanox/
11411 F:      drivers/net/ethernet/mellanox/mlx5/core/
11412 F:      include/linux/mlx5/
11413
11414 MELLANOX MLX5 IB driver
11415 M:      Leon Romanovsky <leonro@nvidia.com>
11416 L:      linux-rdma@vger.kernel.org
11417 S:      Supported
11418 W:      http://www.mellanox.com
11419 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11420 F:      drivers/infiniband/hw/mlx5/
11421 F:      include/linux/mlx5/
11422 F:      include/uapi/rdma/mlx5-abi.h
11423
11424 MELLANOX MLXCPLD I2C AND MUX DRIVER
11425 M:      Vadim Pasternak <vadimp@nvidia.com>
11426 M:      Michael Shych <michaelsh@nvidia.com>
11427 L:      linux-i2c@vger.kernel.org
11428 S:      Supported
11429 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11430 F:      drivers/i2c/busses/i2c-mlxcpld.c
11431 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11432
11433 MELLANOX MLXCPLD LED DRIVER
11434 M:      Vadim Pasternak <vadimp@nvidia.com>
11435 L:      linux-leds@vger.kernel.org
11436 S:      Supported
11437 F:      Documentation/leds/leds-mlxcpld.rst
11438 F:      drivers/leds/leds-mlxcpld.c
11439 F:      drivers/leds/leds-mlxreg.c
11440
11441 MELLANOX PLATFORM DRIVER
11442 M:      Vadim Pasternak <vadimp@nvidia.com>
11443 L:      platform-driver-x86@vger.kernel.org
11444 S:      Supported
11445 F:      drivers/platform/x86/mlx-platform.c
11446
11447 MEMBARRIER SUPPORT
11448 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11449 M:      "Paul E. McKenney" <paulmck@kernel.org>
11450 L:      linux-kernel@vger.kernel.org
11451 S:      Supported
11452 F:      arch/powerpc/include/asm/membarrier.h
11453 F:      include/uapi/linux/membarrier.h
11454 F:      kernel/sched/membarrier.c
11455
11456 MEMBLOCK
11457 M:      Mike Rapoport <rppt@linux.ibm.com>
11458 L:      linux-mm@kvack.org
11459 S:      Maintained
11460 F:      Documentation/core-api/boot-time-mm.rst
11461 F:      include/linux/memblock.h
11462 F:      mm/memblock.c
11463
11464 MEMORY CONTROLLER DRIVERS
11465 M:      Krzysztof Kozlowski <krzk@kernel.org>
11466 L:      linux-kernel@vger.kernel.org
11467 S:      Maintained
11468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
11469 F:      Documentation/devicetree/bindings/memory-controllers/
11470 F:      drivers/memory/
11471 F:      include/dt-bindings/memory/
11472
11473 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
11474 M:      Dmitry Osipenko <digetx@gmail.com>
11475 L:      linux-pm@vger.kernel.org
11476 L:      linux-tegra@vger.kernel.org
11477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
11478 S:      Maintained
11479 F:      drivers/devfreq/tegra30-devfreq.c
11480
11481 MEMORY MANAGEMENT
11482 M:      Andrew Morton <akpm@linux-foundation.org>
11483 L:      linux-mm@kvack.org
11484 S:      Maintained
11485 W:      http://www.linux-mm.org
11486 T:      quilt https://ozlabs.org/~akpm/mmotm/
11487 T:      quilt https://ozlabs.org/~akpm/mmots/
11488 T:      git git://github.com/hnaz/linux-mm.git
11489 F:      include/linux/gfp.h
11490 F:      include/linux/memory_hotplug.h
11491 F:      include/linux/mm.h
11492 F:      include/linux/mmzone.h
11493 F:      include/linux/vmalloc.h
11494 F:      mm/
11495
11496 MEMORY TECHNOLOGY DEVICES (MTD)
11497 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11498 M:      Richard Weinberger <richard@nod.at>
11499 M:      Vignesh Raghavendra <vigneshr@ti.com>
11500 L:      linux-mtd@lists.infradead.org
11501 S:      Maintained
11502 W:      http://www.linux-mtd.infradead.org/
11503 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11504 C:      irc://irc.oftc.net/mtd
11505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11507 F:      Documentation/devicetree/bindings/mtd/
11508 F:      drivers/mtd/
11509 F:      include/linux/mtd/
11510 F:      include/uapi/mtd/
11511
11512 MEN A21 WATCHDOG DRIVER
11513 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11514 L:      linux-watchdog@vger.kernel.org
11515 S:      Maintained
11516 F:      drivers/watchdog/mena21_wdt.c
11517
11518 MEN CHAMELEON BUS (mcb)
11519 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11520 S:      Maintained
11521 F:      Documentation/driver-api/men-chameleon-bus.rst
11522 F:      drivers/mcb/
11523 F:      include/linux/mcb.h
11524
11525 MEN F21BMC (Board Management Controller)
11526 M:      Andreas Werner <andreas.werner@men.de>
11527 S:      Supported
11528 F:      Documentation/hwmon/menf21bmc.rst
11529 F:      drivers/hwmon/menf21bmc_hwmon.c
11530 F:      drivers/leds/leds-menf21bmc.c
11531 F:      drivers/mfd/menf21bmc.c
11532 F:      drivers/watchdog/menf21bmc_wdt.c
11533
11534 MEN Z069 WATCHDOG DRIVER
11535 M:      Johannes Thumshirn <jth@kernel.org>
11536 L:      linux-watchdog@vger.kernel.org
11537 S:      Maintained
11538 F:      drivers/watchdog/menz69_wdt.c
11539
11540 MESON AO CEC DRIVER FOR AMLOGIC SOCS
11541 M:      Neil Armstrong <narmstrong@baylibre.com>
11542 L:      linux-media@vger.kernel.org
11543 L:      linux-amlogic@lists.infradead.org
11544 S:      Supported
11545 W:      http://linux-meson.com/
11546 T:      git git://linuxtv.org/media_tree.git
11547 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
11548 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
11549 F:      drivers/media/cec/platform/meson/ao-cec.c
11550
11551 MESON GE2D DRIVER FOR AMLOGIC SOCS
11552 M:      Neil Armstrong <narmstrong@baylibre.com>
11553 L:      linux-media@vger.kernel.org
11554 L:      linux-amlogic@lists.infradead.org
11555 S:      Supported
11556 T:      git git://linuxtv.org/media_tree.git
11557 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
11558 F:      drivers/media/platform/meson/ge2d/
11559
11560 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
11561 M:      Liang Yang <liang.yang@amlogic.com>
11562 L:      linux-mtd@lists.infradead.org
11563 S:      Maintained
11564 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
11565 F:      drivers/mtd/nand/raw/meson_*
11566
11567 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
11568 M:      Neil Armstrong <narmstrong@baylibre.com>
11569 L:      linux-media@vger.kernel.org
11570 L:      linux-amlogic@lists.infradead.org
11571 S:      Supported
11572 T:      git git://linuxtv.org/media_tree.git
11573 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
11574 F:      drivers/staging/media/meson/vdec/
11575
11576 METHODE UDPU SUPPORT
11577 M:      Vladimir Vid <vladimir.vid@sartura.hr>
11578 S:      Maintained
11579 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11580
11581 MHI BUS
11582 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11583 M:      Hemant Kumar <hemantk@codeaurora.org>
11584 L:      linux-arm-msm@vger.kernel.org
11585 S:      Maintained
11586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11587 F:      Documentation/ABI/stable/sysfs-bus-mhi
11588 F:      Documentation/mhi/
11589 F:      drivers/bus/mhi/
11590 F:      include/linux/mhi.h
11591
11592 MICROBLAZE ARCHITECTURE
11593 M:      Michal Simek <monstr@monstr.eu>
11594 S:      Supported
11595 W:      http://www.monstr.eu/fdt/
11596 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11597 F:      arch/microblaze/
11598
11599 MICROCHIP AT91 DMA DRIVERS
11600 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11601 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11602 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11603 L:      dmaengine@vger.kernel.org
11604 S:      Supported
11605 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11606 F:      drivers/dma/at_hdmac.c
11607 F:      drivers/dma/at_hdmac_regs.h
11608 F:      drivers/dma/at_xdmac.c
11609 F:      include/dt-bindings/dma/at91.h
11610 F:      include/linux/platform_data/dma-atmel.h
11611
11612 MICROCHIP AT91 SERIAL DRIVER
11613 M:      Richard Genoud <richard.genoud@gmail.com>
11614 S:      Maintained
11615 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11616 F:      drivers/tty/serial/atmel_serial.c
11617 F:      drivers/tty/serial/atmel_serial.h
11618
11619 MICROCHIP AT91 USART MFD DRIVER
11620 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11621 L:      linux-kernel@vger.kernel.org
11622 S:      Supported
11623 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11624 F:      drivers/mfd/at91-usart.c
11625 F:      include/dt-bindings/mfd/at91-usart.h
11626
11627 MICROCHIP AT91 USART SPI DRIVER
11628 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11629 L:      linux-spi@vger.kernel.org
11630 S:      Supported
11631 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11632 F:      drivers/spi/spi-at91-usart.c
11633
11634 MICROCHIP AUDIO ASOC DRIVERS
11635 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11636 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11637 S:      Supported
11638 F:      sound/soc/atmel
11639
11640 MICROCHIP ECC DRIVER
11641 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11642 L:      linux-crypto@vger.kernel.org
11643 S:      Maintained
11644 F:      drivers/crypto/atmel-ecc.*
11645
11646 MICROCHIP I2C DRIVER
11647 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11648 L:      linux-i2c@vger.kernel.org
11649 S:      Supported
11650 F:      drivers/i2c/busses/i2c-at91-*.c
11651 F:      drivers/i2c/busses/i2c-at91.h
11652
11653 MICROCHIP ISC DRIVER
11654 M:      Eugen Hristev <eugen.hristev@microchip.com>
11655 L:      linux-media@vger.kernel.org
11656 S:      Supported
11657 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11658 F:      drivers/media/platform/atmel/atmel-isc-base.c
11659 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11660 F:      drivers/media/platform/atmel/atmel-isc.h
11661 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11662 F:      include/linux/atmel-isc-media.h
11663
11664 MICROCHIP ISI DRIVER
11665 M:      Eugen Hristev <eugen.hristev@microchip.com>
11666 L:      linux-media@vger.kernel.org
11667 S:      Supported
11668 F:      drivers/media/platform/atmel/atmel-isi.c
11669 F:      drivers/media/platform/atmel/atmel-isi.h
11670
11671 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11672 M:      Woojung Huh <woojung.huh@microchip.com>
11673 M:      UNGLinuxDriver@microchip.com
11674 L:      netdev@vger.kernel.org
11675 S:      Maintained
11676 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
11677 F:      drivers/net/dsa/microchip/*
11678 F:      include/linux/platform_data/microchip-ksz.h
11679 F:      net/dsa/tag_ksz.c
11680
11681 MICROCHIP LAN743X ETHERNET DRIVER
11682 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
11683 M:      UNGLinuxDriver@microchip.com
11684 L:      netdev@vger.kernel.org
11685 S:      Maintained
11686 F:      drivers/net/ethernet/microchip/lan743x_*
11687
11688 MICROCHIP LCDFB DRIVER
11689 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11690 L:      linux-fbdev@vger.kernel.org
11691 S:      Maintained
11692 F:      drivers/video/fbdev/atmel_lcdfb.c
11693 F:      include/video/atmel_lcdc.h
11694
11695 MICROCHIP MCP16502 PMIC DRIVER
11696 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11698 S:      Supported
11699 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11700 F:      drivers/regulator/mcp16502.c
11701
11702 MICROCHIP MCP3911 ADC DRIVER
11703 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11704 M:      Kent Gustavsson <kent@minoris.se>
11705 L:      linux-iio@vger.kernel.org
11706 S:      Supported
11707 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11708 F:      drivers/iio/adc/mcp3911.c
11709
11710 MICROCHIP MMC/SD/SDIO MCI DRIVER
11711 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11712 S:      Maintained
11713 F:      drivers/mmc/host/atmel-mci.c
11714
11715 MICROCHIP NAND DRIVER
11716 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11717 L:      linux-mtd@lists.infradead.org
11718 S:      Supported
11719 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11720 F:      drivers/mtd/nand/raw/atmel/*
11721
11722 MICROCHIP PWM DRIVER
11723 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11724 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11725 L:      linux-pwm@vger.kernel.org
11726 S:      Supported
11727 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11728 F:      drivers/pwm/pwm-atmel.c
11729
11730 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11731 M:      Eugen Hristev <eugen.hristev@microchip.com>
11732 L:      linux-iio@vger.kernel.org
11733 S:      Supported
11734 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11735 F:      drivers/iio/adc/at91-sama5d2_adc.c
11736 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11737
11738 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11739 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11740 S:      Supported
11741 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11742
11743 MICROCHIP SPI DRIVER
11744 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11745 S:      Supported
11746 F:      drivers/spi/spi-atmel.*
11747
11748 MICROCHIP SSC DRIVER
11749 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11750 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11751 S:      Supported
11752 F:      drivers/misc/atmel-ssc.c
11753 F:      include/linux/atmel-ssc.h
11754
11755 MICROCHIP USB251XB DRIVER
11756 M:      Richard Leitner <richard.leitner@skidata.com>
11757 L:      linux-usb@vger.kernel.org
11758 S:      Maintained
11759 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
11760 F:      drivers/usb/misc/usb251xb.c
11761
11762 MICROCHIP USBA UDC DRIVER
11763 M:      Cristian Birsan <cristian.birsan@microchip.com>
11764 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11765 S:      Supported
11766 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
11767
11768 MICROCHIP WILC1000 WIFI DRIVER
11769 M:      Ajay Singh <ajay.kathat@microchip.com>
11770 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11771 L:      linux-wireless@vger.kernel.org
11772 S:      Supported
11773 F:      drivers/net/wireless/microchip/wilc1000/
11774
11775 MICROSEMI MIPS SOCS
11776 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
11777 M:      UNGLinuxDriver@microchip.com
11778 L:      linux-mips@vger.kernel.org
11779 S:      Supported
11780 F:      Documentation/devicetree/bindings/mips/mscc.txt
11781 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
11782 F:      arch/mips/boot/dts/mscc/
11783 F:      arch/mips/configs/generic/board-ocelot.config
11784 F:      arch/mips/generic/board-ocelot.c
11785
11786 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11787 M:      Don Brace <don.brace@microchip.com>
11788 L:      storagedev@microchip.com
11789 L:      linux-scsi@vger.kernel.org
11790 S:      Supported
11791 F:      Documentation/scsi/smartpqi.rst
11792 F:      drivers/scsi/smartpqi/Kconfig
11793 F:      drivers/scsi/smartpqi/Makefile
11794 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
11795 F:      include/linux/cciss*.h
11796 F:      include/uapi/linux/cciss*.h
11797
11798 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
11799 M:      Maximilian Luz <luzmaximilian@gmail.com>
11800 L:      platform-driver-x86@vger.kernel.org
11801 S:      Maintained
11802 F:      drivers/platform/surface/surface_gpe.c
11803
11804 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
11805 M:      Hans de Goede <hdegoede@redhat.com>
11806 M:      Mark Gross <mgross@linux.intel.com>
11807 M:      Maximilian Luz <luzmaximilian@gmail.com>
11808 L:      platform-driver-x86@vger.kernel.org
11809 S:      Maintained
11810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
11811 F:      drivers/platform/surface/
11812
11813 MICROSOFT SURFACE HOT-PLUG DRIVER
11814 M:      Maximilian Luz <luzmaximilian@gmail.com>
11815 L:      platform-driver-x86@vger.kernel.org
11816 S:      Maintained
11817 F:      drivers/platform/surface/surface_hotplug.c
11818
11819 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11820 M:      Chen Yu <yu.c.chen@intel.com>
11821 L:      platform-driver-x86@vger.kernel.org
11822 S:      Supported
11823 F:      drivers/platform/surface/surfacepro3_button.c
11824
11825 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
11826 M:      Maximilian Luz <luzmaximilian@gmail.com>
11827 S:      Maintained
11828 W:      https://github.com/linux-surface/surface-aggregator-module
11829 C:      irc://chat.freenode.net/##linux-surface
11830 F:      Documentation/driver-api/surface_aggregator/
11831 F:      drivers/platform/surface/aggregator/
11832 F:      drivers/platform/surface/surface_acpi_notify.c
11833 F:      drivers/platform/surface/surface_aggregator_cdev.c
11834 F:      include/linux/surface_acpi_notify.h
11835 F:      include/linux/surface_aggregator/
11836 F:      include/uapi/linux/surface_aggregator/
11837
11838 MICROTEK X6 SCANNER
11839 M:      Oliver Neukum <oliver@neukum.org>
11840 S:      Maintained
11841 F:      drivers/usb/image/microtek.*
11842
11843 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
11844 M:      Luka Kovacic <luka.kovacic@sartura.hr>
11845 M:      Luka Perkov <luka.perkov@sartura.hr>
11846 S:      Maintained
11847 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
11848 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
11849 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
11850 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
11851 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
11852 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
11853
11854 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
11855 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11856 L:      linux-media@vger.kernel.org
11857 S:      Maintained
11858 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
11859 F:      Documentation/driver-api/media/drivers/ccs/
11860 F:      Documentation/userspace-api/media/drivers/ccs.rst
11861 F:      drivers/media/i2c/ccs-pll.c
11862 F:      drivers/media/i2c/ccs-pll.h
11863 F:      drivers/media/i2c/ccs/
11864 F:      include/uapi/linux/ccs.h
11865 F:      include/uapi/linux/smiapp.h
11866
11867 MIPS
11868 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11869 L:      linux-mips@vger.kernel.org
11870 S:      Maintained
11871 W:      http://www.linux-mips.org/
11872 Q:      https://patchwork.kernel.org/project/linux-mips/list/
11873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11874 F:      Documentation/devicetree/bindings/mips/
11875 F:      Documentation/mips/
11876 F:      arch/mips/
11877 F:      drivers/platform/mips/
11878
11879 MIPS BOSTON DEVELOPMENT BOARD
11880 M:      Paul Burton <paulburton@kernel.org>
11881 L:      linux-mips@vger.kernel.org
11882 S:      Maintained
11883 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11884 F:      arch/mips/boot/dts/img/boston.dts
11885 F:      arch/mips/configs/generic/board-boston.config
11886 F:      drivers/clk/imgtec/clk-boston.c
11887 F:      include/dt-bindings/clock/boston-clock.h
11888
11889 MIPS CORE DRIVERS
11890 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11891 M:      Serge Semin <fancer.lancer@gmail.com>
11892 L:      linux-mips@vger.kernel.org
11893 S:      Supported
11894 F:      drivers/bus/mips_cdmm.c
11895 F:      drivers/clocksource/mips-gic-timer.c
11896 F:      drivers/cpuidle/cpuidle-cps.c
11897 F:      drivers/irqchip/irq-mips-cpu.c
11898 F:      drivers/irqchip/irq-mips-gic.c
11899
11900 MIPS GENERIC PLATFORM
11901 M:      Paul Burton <paulburton@kernel.org>
11902 L:      linux-mips@vger.kernel.org
11903 S:      Supported
11904 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
11905 F:      arch/mips/generic/
11906 F:      arch/mips/tools/generic-board-config.sh
11907
11908 MIPS RINT INSTRUCTION EMULATION
11909 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
11910 L:      linux-mips@vger.kernel.org
11911 S:      Supported
11912 F:      arch/mips/math-emu/dp_rint.c
11913 F:      arch/mips/math-emu/sp_rint.c
11914
11915 MIPS/LOONGSON1 ARCHITECTURE
11916 M:      Keguang Zhang <keguang.zhang@gmail.com>
11917 L:      linux-mips@vger.kernel.org
11918 S:      Maintained
11919 F:      arch/mips/include/asm/mach-loongson32/
11920 F:      arch/mips/loongson32/
11921 F:      drivers/*/*/*loongson1*
11922 F:      drivers/*/*loongson1*
11923
11924 MIPS/LOONGSON2EF ARCHITECTURE
11925 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11926 L:      linux-mips@vger.kernel.org
11927 S:      Maintained
11928 F:      arch/mips/include/asm/mach-loongson2ef/
11929 F:      arch/mips/loongson2ef/
11930 F:      drivers/cpufreq/loongson2_cpufreq.c
11931
11932 MIPS/LOONGSON64 ARCHITECTURE
11933 M:      Huacai Chen <chenhuacai@kernel.org>
11934 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11935 L:      linux-mips@vger.kernel.org
11936 S:      Maintained
11937 F:      arch/mips/include/asm/mach-loongson64/
11938 F:      arch/mips/loongson64/
11939 F:      drivers/irqchip/irq-loongson*
11940 F:      drivers/platform/mips/cpu_hwmon.c
11941
11942 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11943 M:      Hans Verkuil <hverkuil@xs4all.nl>
11944 L:      linux-media@vger.kernel.org
11945 S:      Odd Fixes
11946 W:      https://linuxtv.org
11947 T:      git git://linuxtv.org/media_tree.git
11948 F:      drivers/media/radio/radio-miropcm20*
11949
11950 MMP SUPPORT
11951 R:      Lubomir Rintel <lkundrak@v3.sk>
11952 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11953 S:      Odd Fixes
11954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11955 F:      arch/arm/boot/dts/mmp*
11956 F:      arch/arm/mach-mmp/
11957 F:      include/linux/soc/mmp/
11958
11959 MMP USB PHY DRIVERS
11960 R:      Lubomir Rintel <lkundrak@v3.sk>
11961 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11962 S:      Maintained
11963 F:      drivers/phy/marvell/phy-mmp3-usb.c
11964 F:      drivers/phy/marvell/phy-pxa-usb.c
11965
11966 MMU GATHER AND TLB INVALIDATION
11967 M:      Will Deacon <will@kernel.org>
11968 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
11969 M:      Andrew Morton <akpm@linux-foundation.org>
11970 M:      Nick Piggin <npiggin@gmail.com>
11971 M:      Peter Zijlstra <peterz@infradead.org>
11972 L:      linux-arch@vger.kernel.org
11973 L:      linux-mm@kvack.org
11974 S:      Maintained
11975 F:      arch/*/include/asm/tlb.h
11976 F:      include/asm-generic/tlb.h
11977 F:      mm/mmu_gather.c
11978
11979 MN88472 MEDIA DRIVER
11980 M:      Antti Palosaari <crope@iki.fi>
11981 L:      linux-media@vger.kernel.org
11982 S:      Maintained
11983 W:      https://linuxtv.org
11984 W:      http://palosaari.fi/linux/
11985 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11986 F:      drivers/media/dvb-frontends/mn88472*
11987
11988 MN88473 MEDIA DRIVER
11989 M:      Antti Palosaari <crope@iki.fi>
11990 L:      linux-media@vger.kernel.org
11991 S:      Maintained
11992 W:      https://linuxtv.org
11993 W:      http://palosaari.fi/linux/
11994 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11995 F:      drivers/media/dvb-frontends/mn88473*
11996
11997 MODULE SUPPORT
11998 M:      Jessica Yu <jeyu@kernel.org>
11999 S:      Maintained
12000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12001 F:      include/linux/module.h
12002 F:      kernel/module.c
12003
12004 MONOLITHIC POWER SYSTEM PMIC DRIVER
12005 M:      Saravanan Sekar <sravanhome@gmail.com>
12006 S:      Maintained
12007 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12008 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12009 F:      drivers/iio/adc/mp2629_adc.c
12010 F:      drivers/mfd/mp2629.c
12011 F:      drivers/power/supply/mp2629_charger.c
12012 F:      drivers/regulator/mp5416.c
12013 F:      drivers/regulator/mpq7920.c
12014 F:      drivers/regulator/mpq7920.h
12015 F:      include/linux/mfd/mp2629.h
12016
12017 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12018 S:      Orphan
12019 W:      http://popies.net/meye/
12020 F:      Documentation/userspace-api/media/drivers/meye*
12021 F:      drivers/media/pci/meye/
12022 F:      include/uapi/linux/meye.h
12023
12024 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12025 M:      Jiri Slaby <jirislaby@kernel.org>
12026 S:      Maintained
12027 F:      Documentation/driver-api/serial/moxa-smartio.rst
12028 F:      drivers/tty/mxser.*
12029
12030 MR800 AVERMEDIA USB FM RADIO DRIVER
12031 M:      Alexey Klimov <klimov.linux@gmail.com>
12032 L:      linux-media@vger.kernel.org
12033 S:      Maintained
12034 T:      git git://linuxtv.org/media_tree.git
12035 F:      drivers/media/radio/radio-mr800.c
12036
12037 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12038 M:      Alan Ott <alan@signal11.us>
12039 L:      linux-wpan@vger.kernel.org
12040 S:      Maintained
12041 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12042 F:      drivers/net/ieee802154/mrf24j40.c
12043
12044 MSI LAPTOP SUPPORT
12045 M:      "Lee, Chun-Yi" <jlee@suse.com>
12046 L:      platform-driver-x86@vger.kernel.org
12047 S:      Maintained
12048 F:      drivers/platform/x86/msi-laptop.c
12049
12050 MSI WMI SUPPORT
12051 L:      platform-driver-x86@vger.kernel.org
12052 S:      Orphan
12053 F:      drivers/platform/x86/msi-wmi.c
12054
12055 MSI001 MEDIA DRIVER
12056 M:      Antti Palosaari <crope@iki.fi>
12057 L:      linux-media@vger.kernel.org
12058 S:      Maintained
12059 W:      https://linuxtv.org
12060 W:      http://palosaari.fi/linux/
12061 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12062 T:      git git://linuxtv.org/anttip/media_tree.git
12063 F:      drivers/media/tuners/msi001*
12064
12065 MSI2500 MEDIA DRIVER
12066 M:      Antti Palosaari <crope@iki.fi>
12067 L:      linux-media@vger.kernel.org
12068 S:      Maintained
12069 W:      https://linuxtv.org
12070 W:      http://palosaari.fi/linux/
12071 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12072 T:      git git://linuxtv.org/anttip/media_tree.git
12073 F:      drivers/media/usb/msi2500/
12074
12075 MSTAR INTERRUPT CONTROLLER DRIVER
12076 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12077 M:      Daniel Palmer <daniel@thingy.jp>
12078 S:      Maintained
12079 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12080 F:      drivers/irqchip/irq-mst-intc.c
12081
12082 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12083 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12084 L:      linux-mtd@lists.infradead.org
12085 S:      Maintained
12086 F:      drivers/mtd/devices/docg3*
12087
12088 MT9M032 APTINA SENSOR DRIVER
12089 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12090 L:      linux-media@vger.kernel.org
12091 S:      Maintained
12092 T:      git git://linuxtv.org/media_tree.git
12093 F:      drivers/media/i2c/mt9m032.c
12094 F:      include/media/i2c/mt9m032.h
12095
12096 MT9P031 APTINA CAMERA SENSOR
12097 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12098 L:      linux-media@vger.kernel.org
12099 S:      Maintained
12100 T:      git git://linuxtv.org/media_tree.git
12101 F:      drivers/media/i2c/mt9p031.c
12102 F:      include/media/i2c/mt9p031.h
12103
12104 MT9T001 APTINA CAMERA SENSOR
12105 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12106 L:      linux-media@vger.kernel.org
12107 S:      Maintained
12108 T:      git git://linuxtv.org/media_tree.git
12109 F:      drivers/media/i2c/mt9t001.c
12110 F:      include/media/i2c/mt9t001.h
12111
12112 MT9T112 APTINA CAMERA SENSOR
12113 M:      Jacopo Mondi <jacopo@jmondi.org>
12114 L:      linux-media@vger.kernel.org
12115 S:      Odd Fixes
12116 T:      git git://linuxtv.org/media_tree.git
12117 F:      drivers/media/i2c/mt9t112.c
12118 F:      include/media/i2c/mt9t112.h
12119
12120 MT9V032 APTINA CAMERA SENSOR
12121 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12122 L:      linux-media@vger.kernel.org
12123 S:      Maintained
12124 T:      git git://linuxtv.org/media_tree.git
12125 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12126 F:      drivers/media/i2c/mt9v032.c
12127 F:      include/media/i2c/mt9v032.h
12128
12129 MT9V111 APTINA CAMERA SENSOR
12130 M:      Jacopo Mondi <jacopo@jmondi.org>
12131 L:      linux-media@vger.kernel.org
12132 S:      Maintained
12133 T:      git git://linuxtv.org/media_tree.git
12134 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12135 F:      drivers/media/i2c/mt9v111.c
12136
12137 MULTIFUNCTION DEVICES (MFD)
12138 M:      Lee Jones <lee.jones@linaro.org>
12139 S:      Supported
12140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12141 F:      Documentation/devicetree/bindings/mfd/
12142 F:      drivers/mfd/
12143 F:      include/dt-bindings/mfd/
12144 F:      include/linux/mfd/
12145
12146 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12147 S:      Orphan
12148 F:      drivers/mmc/host/mmc_spi.c
12149 F:      include/linux/spi/mmc_spi.h
12150
12151 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12152 M:      Ulf Hansson <ulf.hansson@linaro.org>
12153 L:      linux-mmc@vger.kernel.org
12154 S:      Maintained
12155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12156 F:      Documentation/devicetree/bindings/mmc/
12157 F:      drivers/mmc/
12158 F:      include/linux/mmc/
12159 F:      include/uapi/linux/mmc/
12160
12161 MULTIPLEXER SUBSYSTEM
12162 M:      Peter Rosin <peda@axentia.se>
12163 S:      Maintained
12164 F:      Documentation/ABI/testing/sysfs-class-mux*
12165 F:      Documentation/devicetree/bindings/mux/
12166 F:      drivers/mux/
12167 F:      include/dt-bindings/mux/
12168 F:      include/linux/mux/
12169
12170 MULTITECH MULTIPORT CARD (ISICOM)
12171 S:      Orphan
12172 F:      drivers/tty/isicom.c
12173 F:      include/linux/isicom.h
12174
12175 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12176 M:      Bin Liu <b-liu@ti.com>
12177 L:      linux-usb@vger.kernel.org
12178 S:      Maintained
12179 F:      drivers/usb/musb/
12180
12181 MXL301RF MEDIA DRIVER
12182 M:      Akihiro Tsukada <tskd08@gmail.com>
12183 L:      linux-media@vger.kernel.org
12184 S:      Odd Fixes
12185 F:      drivers/media/tuners/mxl301rf*
12186
12187 MXL5007T MEDIA DRIVER
12188 M:      Michael Krufky <mkrufky@linuxtv.org>
12189 L:      linux-media@vger.kernel.org
12190 S:      Maintained
12191 W:      https://linuxtv.org
12192 W:      http://github.com/mkrufky
12193 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12194 T:      git git://linuxtv.org/mkrufky/tuners.git
12195 F:      drivers/media/tuners/mxl5007t.*
12196
12197 MXSFB DRM DRIVER
12198 M:      Marek Vasut <marex@denx.de>
12199 M:      Stefan Agner <stefan@agner.ch>
12200 L:      dri-devel@lists.freedesktop.org
12201 S:      Supported
12202 T:      git git://anongit.freedesktop.org/drm/drm-misc
12203 F:      Documentation/devicetree/bindings/display/mxsfb.txt
12204 F:      drivers/gpu/drm/mxsfb/
12205
12206 MYLEX DAC960 PCI RAID Controller
12207 M:      Hannes Reinecke <hare@kernel.org>
12208 L:      linux-scsi@vger.kernel.org
12209 S:      Supported
12210 F:      drivers/scsi/myrb.*
12211 F:      drivers/scsi/myrs.*
12212
12213 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12214 M:      Chris Lee <christopher.lee@cspi.com>
12215 L:      netdev@vger.kernel.org
12216 S:      Supported
12217 W:      https://www.cspi.com/ethernet-products/support/downloads/
12218 F:      drivers/net/ethernet/myricom/myri10ge/
12219
12220 NAND FLASH SUBSYSTEM
12221 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12222 R:      Richard Weinberger <richard@nod.at>
12223 L:      linux-mtd@lists.infradead.org
12224 S:      Maintained
12225 W:      http://www.linux-mtd.infradead.org/
12226 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12227 C:      irc://irc.oftc.net/mtd
12228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12229 F:      drivers/mtd/nand/
12230 F:      include/linux/mtd/*nand*.h
12231
12232 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12233 M:      Daniel Mack <zonque@gmail.com>
12234 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12235 S:      Maintained
12236 W:      http://www.native-instruments.com
12237 F:      sound/usb/caiaq/
12238
12239 NATSEMI ETHERNET DRIVER (DP8381x)
12240 S:      Orphan
12241 F:      drivers/net/ethernet/natsemi/natsemi.c
12242
12243 NCR 5380 SCSI DRIVERS
12244 M:      Finn Thain <fthain@telegraphics.com.au>
12245 M:      Michael Schmitz <schmitzmic@gmail.com>
12246 L:      linux-scsi@vger.kernel.org
12247 S:      Maintained
12248 F:      Documentation/scsi/g_NCR5380.rst
12249 F:      drivers/scsi/NCR5380.*
12250 F:      drivers/scsi/arm/cumana_1.c
12251 F:      drivers/scsi/arm/oak.c
12252 F:      drivers/scsi/atari_scsi.*
12253 F:      drivers/scsi/dmx3191d.c
12254 F:      drivers/scsi/g_NCR5380.*
12255 F:      drivers/scsi/mac_scsi.*
12256 F:      drivers/scsi/sun3_scsi.*
12257 F:      drivers/scsi/sun3_scsi_vme.c
12258
12259 NCSI LIBRARY
12260 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
12261 S:      Maintained
12262 F:      net/ncsi/
12263
12264 NCT6775 HARDWARE MONITOR DRIVER
12265 M:      Guenter Roeck <linux@roeck-us.net>
12266 L:      linux-hwmon@vger.kernel.org
12267 S:      Maintained
12268 F:      Documentation/hwmon/nct6775.rst
12269 F:      drivers/hwmon/nct6775.c
12270
12271 NETDEVSIM
12272 M:      Jakub Kicinski <kuba@kernel.org>
12273 S:      Maintained
12274 F:      drivers/net/netdevsim/*
12275
12276 NETEM NETWORK EMULATOR
12277 M:      Stephen Hemminger <stephen@networkplumber.org>
12278 L:      netdev@vger.kernel.org
12279 S:      Maintained
12280 F:      net/sched/sch_netem.c
12281
12282 NETERION 10GbE DRIVERS (s2io/vxge)
12283 M:      Jon Mason <jdmason@kudzu.us>
12284 L:      netdev@vger.kernel.org
12285 S:      Supported
12286 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12287 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12288 F:      drivers/net/ethernet/neterion/
12289
12290 NETFILTER
12291 M:      Pablo Neira Ayuso <pablo@netfilter.org>
12292 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
12293 M:      Florian Westphal <fw@strlen.de>
12294 L:      netfilter-devel@vger.kernel.org
12295 L:      coreteam@netfilter.org
12296 S:      Maintained
12297 W:      http://www.netfilter.org/
12298 W:      http://www.iptables.org/
12299 W:      http://www.nftables.org/
12300 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
12301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
12302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
12303 F:      include/linux/netfilter*
12304 F:      include/linux/netfilter/
12305 F:      include/net/netfilter/
12306 F:      include/uapi/linux/netfilter*
12307 F:      include/uapi/linux/netfilter/
12308 F:      net/*/netfilter.c
12309 F:      net/*/netfilter/
12310 F:      net/bridge/br_netfilter*.c
12311 F:      net/netfilter/
12312
12313 NETROM NETWORK LAYER
12314 M:      Ralf Baechle <ralf@linux-mips.org>
12315 L:      linux-hams@vger.kernel.org
12316 S:      Maintained
12317 W:      http://www.linux-ax25.org/
12318 F:      include/net/netrom.h
12319 F:      include/uapi/linux/netrom.h
12320 F:      net/netrom/
12321
12322 NETRONOME ETHERNET DRIVERS
12323 M:      Simon Horman <simon.horman@netronome.com>
12324 R:      Jakub Kicinski <kuba@kernel.org>
12325 L:      oss-drivers@netronome.com
12326 S:      Maintained
12327 F:      drivers/net/ethernet/netronome/
12328
12329 NETWORK BLOCK DEVICE (NBD)
12330 M:      Josef Bacik <josef@toxicpanda.com>
12331 L:      linux-block@vger.kernel.org
12332 L:      nbd@other.debian.org
12333 S:      Maintained
12334 F:      Documentation/admin-guide/blockdev/nbd.rst
12335 F:      drivers/block/nbd.c
12336 F:      include/trace/events/nbd.h
12337 F:      include/uapi/linux/nbd.h
12338
12339 NETWORK DROP MONITOR
12340 M:      Neil Horman <nhorman@tuxdriver.com>
12341 L:      netdev@vger.kernel.org
12342 S:      Maintained
12343 W:      https://fedorahosted.org/dropwatch/
12344 F:      include/uapi/linux/net_dropmon.h
12345 F:      net/core/drop_monitor.c
12346
12347 NETWORKING DRIVERS
12348 M:      "David S. Miller" <davem@davemloft.net>
12349 M:      Jakub Kicinski <kuba@kernel.org>
12350 L:      netdev@vger.kernel.org
12351 S:      Maintained
12352 W:      http://www.linuxfoundation.org/en/Net
12353 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12356 F:      Documentation/devicetree/bindings/net/
12357 F:      drivers/connector/
12358 F:      drivers/net/
12359 F:      include/linux/etherdevice.h
12360 F:      include/linux/fcdevice.h
12361 F:      include/linux/fddidevice.h
12362 F:      include/linux/hippidevice.h
12363 F:      include/linux/if_*
12364 F:      include/linux/inetdevice.h
12365 F:      include/linux/netdevice.h
12366 F:      include/uapi/linux/if_*
12367 F:      include/uapi/linux/netdevice.h
12368
12369 NETWORKING DRIVERS (WIRELESS)
12370 M:      Kalle Valo <kvalo@codeaurora.org>
12371 L:      linux-wireless@vger.kernel.org
12372 S:      Maintained
12373 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
12375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
12376 F:      Documentation/devicetree/bindings/net/wireless/
12377 F:      drivers/net/wireless/
12378
12379 NETWORKING [DSA]
12380 M:      Andrew Lunn <andrew@lunn.ch>
12381 M:      Vivien Didelot <vivien.didelot@gmail.com>
12382 M:      Florian Fainelli <f.fainelli@gmail.com>
12383 M:      Vladimir Oltean <olteanv@gmail.com>
12384 S:      Maintained
12385 F:      Documentation/devicetree/bindings/net/dsa/
12386 F:      drivers/net/dsa/
12387 F:      include/linux/dsa/
12388 F:      include/linux/platform_data/dsa.h
12389 F:      include/net/dsa.h
12390 F:      net/dsa/
12391
12392 NETWORKING [GENERAL]
12393 M:      "David S. Miller" <davem@davemloft.net>
12394 M:      Jakub Kicinski <kuba@kernel.org>
12395 L:      netdev@vger.kernel.org
12396 S:      Maintained
12397 W:      http://www.linuxfoundation.org/en/Net
12398 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12399 B:      mailto:netdev@vger.kernel.org
12400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12402 F:      Documentation/networking/
12403 F:      include/linux/in.h
12404 F:      include/linux/net.h
12405 F:      include/linux/netdevice.h
12406 F:      include/net/
12407 F:      include/uapi/linux/in.h
12408 F:      include/uapi/linux/net.h
12409 F:      include/uapi/linux/net_namespace.h
12410 F:      include/uapi/linux/netdevice.h
12411 F:      lib/net_utils.c
12412 F:      lib/random32.c
12413 F:      net/
12414 F:      tools/testing/selftests/net/
12415
12416 NETWORKING [IPSEC]
12417 M:      Steffen Klassert <steffen.klassert@secunet.com>
12418 M:      Herbert Xu <herbert@gondor.apana.org.au>
12419 M:      "David S. Miller" <davem@davemloft.net>
12420 L:      netdev@vger.kernel.org
12421 S:      Maintained
12422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
12423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
12424 F:      include/net/xfrm.h
12425 F:      include/uapi/linux/xfrm.h
12426 F:      net/ipv4/ah4.c
12427 F:      net/ipv4/esp4*
12428 F:      net/ipv4/ip_vti.c
12429 F:      net/ipv4/ipcomp.c
12430 F:      net/ipv4/xfrm*
12431 F:      net/ipv6/ah6.c
12432 F:      net/ipv6/esp6*
12433 F:      net/ipv6/ip6_vti.c
12434 F:      net/ipv6/ipcomp6.c
12435 F:      net/ipv6/xfrm*
12436 F:      net/key/
12437 F:      net/xfrm/
12438 F:      tools/testing/selftests/net/ipsec.c
12439
12440 NETWORKING [IPv4/IPv6]
12441 M:      "David S. Miller" <davem@davemloft.net>
12442 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
12443 M:      David Ahern <dsahern@kernel.org>
12444 L:      netdev@vger.kernel.org
12445 S:      Maintained
12446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12447 F:      arch/x86/net/*
12448 F:      include/net/ip*
12449 F:      net/ipv4/
12450 F:      net/ipv6/
12451
12452 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
12453 M:      Paul Moore <paul@paul-moore.com>
12454 L:      netdev@vger.kernel.org
12455 L:      linux-security-module@vger.kernel.org
12456 S:      Maintained
12457 W:      https://github.com/netlabel
12458 F:      Documentation/netlabel/
12459 F:      include/net/calipso.h
12460 F:      include/net/cipso_ipv4.h
12461 F:      include/net/netlabel.h
12462 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
12463 F:      include/uapi/linux/netfilter/xt_SECMARK.h
12464 F:      net/ipv4/cipso_ipv4.c
12465 F:      net/ipv6/calipso.c
12466 F:      net/netfilter/xt_CONNSECMARK.c
12467 F:      net/netfilter/xt_SECMARK.c
12468 F:      net/netlabel/
12469
12470 NETWORKING [MPTCP]
12471 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
12472 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
12473 L:      netdev@vger.kernel.org
12474 L:      mptcp@lists.01.org
12475 S:      Maintained
12476 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
12477 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
12478 F:      Documentation/networking/mptcp-sysctl.rst
12479 F:      include/net/mptcp.h
12480 F:      include/uapi/linux/mptcp.h
12481 F:      net/mptcp/
12482 F:      tools/testing/selftests/net/mptcp/
12483
12484 NETWORKING [TCP]
12485 M:      Eric Dumazet <edumazet@google.com>
12486 L:      netdev@vger.kernel.org
12487 S:      Maintained
12488 F:      include/linux/tcp.h
12489 F:      include/net/tcp.h
12490 F:      include/trace/events/tcp.h
12491 F:      include/uapi/linux/tcp.h
12492 F:      net/ipv4/syncookies.c
12493 F:      net/ipv4/tcp*.c
12494 F:      net/ipv6/syncookies.c
12495 F:      net/ipv6/tcp*.c
12496
12497 NETWORKING [TLS]
12498 M:      Boris Pismenny <borisp@nvidia.com>
12499 M:      John Fastabend <john.fastabend@gmail.com>
12500 M:      Daniel Borkmann <daniel@iogearbox.net>
12501 M:      Jakub Kicinski <kuba@kernel.org>
12502 L:      netdev@vger.kernel.org
12503 S:      Maintained
12504 F:      include/net/tls.h
12505 F:      include/uapi/linux/tls.h
12506 F:      net/tls/*
12507
12508 NETWORKING [WIRELESS]
12509 L:      linux-wireless@vger.kernel.org
12510 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12511
12512 NETXEN (1/10) GbE SUPPORT
12513 M:      Manish Chopra <manishc@marvell.com>
12514 M:      Rahul Verma <rahulv@marvell.com>
12515 M:      GR-Linux-NIC-Dev@marvell.com
12516 L:      netdev@vger.kernel.org
12517 S:      Supported
12518 F:      drivers/net/ethernet/qlogic/netxen/
12519
12520 NET_FAILOVER MODULE
12521 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
12522 L:      netdev@vger.kernel.org
12523 S:      Supported
12524 F:      Documentation/networking/net_failover.rst
12525 F:      drivers/net/net_failover.c
12526 F:      include/net/net_failover.h
12527
12528 NEXTHOP
12529 M:      David Ahern <dsahern@kernel.org>
12530 L:      netdev@vger.kernel.org
12531 S:      Maintained
12532 F:      include/net/netns/nexthop.h
12533 F:      include/net/nexthop.h
12534 F:      include/uapi/linux/nexthop.h
12535 F:      net/ipv4/nexthop.c
12536
12537 NFC SUBSYSTEM
12538 L:      netdev@vger.kernel.org
12539 S:      Orphan
12540 F:      Documentation/devicetree/bindings/net/nfc/
12541 F:      drivers/nfc/
12542 F:      include/linux/platform_data/nfcmrvl.h
12543 F:      include/net/nfc/
12544 F:      include/uapi/linux/nfc.h
12545 F:      net/nfc/
12546
12547 NFC VIRTUAL NCI DEVICE DRIVER
12548 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
12549 L:      netdev@vger.kernel.org
12550 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12551 S:      Supported
12552 F:      drivers/nfc/virtual_ncidev.c
12553 F:      tools/testing/selftests/nci/
12554
12555 NFS, SUNRPC, AND LOCKD CLIENTS
12556 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
12557 M:      Anna Schumaker <anna.schumaker@netapp.com>
12558 L:      linux-nfs@vger.kernel.org
12559 S:      Maintained
12560 W:      http://client.linux-nfs.org
12561 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
12562 F:      fs/lockd/
12563 F:      fs/nfs/
12564 F:      fs/nfs_common/
12565 F:      include/linux/lockd/
12566 F:      include/linux/nfs*
12567 F:      include/linux/sunrpc/
12568 F:      include/uapi/linux/nfs*
12569 F:      include/uapi/linux/sunrpc/
12570 F:      net/sunrpc/
12571 F:      Documentation/filesystems/nfs/
12572
12573 NILFS2 FILESYSTEM
12574 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
12575 L:      linux-nilfs@vger.kernel.org
12576 S:      Supported
12577 W:      https://nilfs.sourceforge.io/
12578 W:      https://nilfs.osdn.jp/
12579 T:      git git://github.com/konis/nilfs2.git
12580 F:      Documentation/filesystems/nilfs2.rst
12581 F:      fs/nilfs2/
12582 F:      include/trace/events/nilfs2.h
12583 F:      include/uapi/linux/nilfs2_api.h
12584 F:      include/uapi/linux/nilfs2_ondisk.h
12585
12586 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
12587 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12588 S:      Maintained
12589 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12590 F:      Documentation/scsi/NinjaSCSI.rst
12591 F:      drivers/scsi/pcmcia/nsp_*
12592
12593 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
12594 M:      GOTO Masanori <gotom@debian.or.jp>
12595 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12596 S:      Maintained
12597 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12598 F:      Documentation/scsi/NinjaSCSI.rst
12599 F:      drivers/scsi/nsp32*
12600
12601 NIOS2 ARCHITECTURE
12602 M:      Ley Foon Tan <ley.foon.tan@intel.com>
12603 S:      Maintained
12604 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
12605 F:      arch/nios2/
12606
12607 NITRO ENCLAVES (NE)
12608 M:      Andra Paraschiv <andraprs@amazon.com>
12609 M:      Alexandru Vasile <lexnv@amazon.com>
12610 M:      Alexandru Ciobotaru <alcioa@amazon.com>
12611 L:      linux-kernel@vger.kernel.org
12612 S:      Supported
12613 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
12614 F:      Documentation/virt/ne_overview.rst
12615 F:      drivers/virt/nitro_enclaves/
12616 F:      include/linux/nitro_enclaves.h
12617 F:      include/uapi/linux/nitro_enclaves.h
12618 F:      samples/nitro_enclaves/
12619
12620 NOHZ, DYNTICKS SUPPORT
12621 M:      Frederic Weisbecker <fweisbec@gmail.com>
12622 M:      Thomas Gleixner <tglx@linutronix.de>
12623 M:      Ingo Molnar <mingo@kernel.org>
12624 L:      linux-kernel@vger.kernel.org
12625 S:      Maintained
12626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
12627 F:      include/linux/sched/nohz.h
12628 F:      include/linux/tick.h
12629 F:      kernel/time/tick*.*
12630
12631 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
12632 M:      Pavel Machek <pavel@ucw.cz>
12633 M:      Sakari Ailus <sakari.ailus@iki.fi>
12634 L:      linux-media@vger.kernel.org
12635 S:      Maintained
12636 F:      drivers/media/i2c/ad5820.c
12637 F:      drivers/media/i2c/et8ek8
12638
12639 NOKIA N900 POWER SUPPLY DRIVERS
12640 R:      Pali Rohár <pali@kernel.org>
12641 F:      drivers/power/supply/bq2415x_charger.c
12642 F:      drivers/power/supply/bq27xxx_battery.c
12643 F:      drivers/power/supply/bq27xxx_battery_i2c.c
12644 F:      drivers/power/supply/isp1704_charger.c
12645 F:      drivers/power/supply/rx51_battery.c
12646 F:      include/linux/power/bq2415x_charger.h
12647 F:      include/linux/power/bq27xxx_battery.h
12648
12649 NOLIBC HEADER FILE
12650 M:      Willy Tarreau <w@1wt.eu>
12651 S:      Maintained
12652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
12653 F:      tools/include/nolibc/
12654
12655 NSDEPS
12656 M:      Matthias Maennich <maennich@google.com>
12657 S:      Maintained
12658 F:      Documentation/core-api/symbol-namespaces.rst
12659 F:      scripts/nsdeps
12660
12661 NTB AMD DRIVER
12662 M:      Sanjay R Mehta <sanju.mehta@amd.com>
12663 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
12664 L:      linux-ntb@googlegroups.com
12665 S:      Supported
12666 F:      drivers/ntb/hw/amd/
12667
12668 NTB DRIVER CORE
12669 M:      Jon Mason <jdmason@kudzu.us>
12670 M:      Dave Jiang <dave.jiang@intel.com>
12671 M:      Allen Hubbe <allenbh@gmail.com>
12672 L:      linux-ntb@googlegroups.com
12673 S:      Supported
12674 W:      https://github.com/jonmason/ntb/wiki
12675 T:      git git://github.com/jonmason/ntb.git
12676 F:      drivers/net/ntb_netdev.c
12677 F:      drivers/ntb/
12678 F:      include/linux/ntb.h
12679 F:      include/linux/ntb_transport.h
12680 F:      tools/testing/selftests/ntb/
12681
12682 NTB IDT DRIVER
12683 M:      Serge Semin <fancer.lancer@gmail.com>
12684 L:      linux-ntb@googlegroups.com
12685 S:      Supported
12686 F:      drivers/ntb/hw/idt/
12687
12688 NTB INTEL DRIVER
12689 M:      Dave Jiang <dave.jiang@intel.com>
12690 L:      linux-ntb@googlegroups.com
12691 S:      Supported
12692 W:      https://github.com/davejiang/linux/wiki
12693 T:      git https://github.com/davejiang/linux.git
12694 F:      drivers/ntb/hw/intel/
12695
12696 NTFS FILESYSTEM
12697 M:      Anton Altaparmakov <anton@tuxera.com>
12698 L:      linux-ntfs-dev@lists.sourceforge.net
12699 S:      Supported
12700 W:      http://www.tuxera.com/
12701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12702 F:      Documentation/filesystems/ntfs.rst
12703 F:      fs/ntfs/
12704
12705 NUBUS SUBSYSTEM
12706 M:      Finn Thain <fthain@telegraphics.com.au>
12707 L:      linux-m68k@lists.linux-m68k.org
12708 S:      Maintained
12709 F:      arch/*/include/asm/nubus.h
12710 F:      drivers/nubus/
12711 F:      include/linux/nubus.h
12712 F:      include/uapi/linux/nubus.h
12713
12714 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12715 M:      Antonino Daplas <adaplas@gmail.com>
12716 L:      linux-fbdev@vger.kernel.org
12717 S:      Maintained
12718 F:      drivers/video/fbdev/nvidia/
12719 F:      drivers/video/fbdev/riva/
12720
12721 NVM EXPRESS DRIVER
12722 M:      Keith Busch <kbusch@kernel.org>
12723 M:      Jens Axboe <axboe@fb.com>
12724 M:      Christoph Hellwig <hch@lst.de>
12725 M:      Sagi Grimberg <sagi@grimberg.me>
12726 L:      linux-nvme@lists.infradead.org
12727 S:      Supported
12728 W:      http://git.infradead.org/nvme.git
12729 T:      git://git.infradead.org/nvme.git
12730 F:      drivers/nvme/host/
12731 F:      include/linux/nvme.h
12732 F:      include/uapi/linux/nvme_ioctl.h
12733
12734 NVM EXPRESS FC TRANSPORT DRIVERS
12735 M:      James Smart <james.smart@broadcom.com>
12736 L:      linux-nvme@lists.infradead.org
12737 S:      Supported
12738 F:      drivers/nvme/host/fc.c
12739 F:      drivers/nvme/target/fc.c
12740 F:      drivers/nvme/target/fcloop.c
12741 F:      include/linux/nvme-fc-driver.h
12742 F:      include/linux/nvme-fc.h
12743
12744 NVM EXPRESS TARGET DRIVER
12745 M:      Christoph Hellwig <hch@lst.de>
12746 M:      Sagi Grimberg <sagi@grimberg.me>
12747 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
12748 L:      linux-nvme@lists.infradead.org
12749 S:      Supported
12750 W:      http://git.infradead.org/nvme.git
12751 T:      git://git.infradead.org/nvme.git
12752 F:      drivers/nvme/target/
12753
12754 NVMEM FRAMEWORK
12755 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
12756 S:      Maintained
12757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
12758 F:      Documentation/ABI/stable/sysfs-bus-nvmem
12759 F:      Documentation/devicetree/bindings/nvmem/
12760 F:      drivers/nvmem/
12761 F:      include/linux/nvmem-consumer.h
12762 F:      include/linux/nvmem-provider.h
12763
12764 NXP FSPI DRIVER
12765 M:      Ashish Kumar <ashish.kumar@nxp.com>
12766 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
12767 L:      linux-spi@vger.kernel.org
12768 S:      Maintained
12769 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12770 F:      drivers/spi/spi-nxp-fspi.c
12771
12772 NXP FXAS21002C DRIVER
12773 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12774 L:      linux-iio@vger.kernel.org
12775 S:      Maintained
12776 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
12777 F:      drivers/iio/gyro/fxas21002c.h
12778 F:      drivers/iio/gyro/fxas21002c_core.c
12779 F:      drivers/iio/gyro/fxas21002c_i2c.c
12780 F:      drivers/iio/gyro/fxas21002c_spi.c
12781
12782 NXP i.MX CLOCK DRIVERS
12783 M:      Abel Vesa <abel.vesa@nxp.com>
12784 L:      linux-clk@vger.kernel.org
12785 L:      linux-imx@nxp.com
12786 S:      Maintained
12787 F:      drivers/clk/imx/
12788
12789 NXP i.MX 8MQ DCSS DRIVER
12790 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
12791 R:      Lucas Stach <l.stach@pengutronix.de>
12792 L:      dri-devel@lists.freedesktop.org
12793 S:      Maintained
12794 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
12795 F:      drivers/gpu/drm/imx/dcss/
12796
12797 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
12798 M:      Jagan Teki <jagan@amarulasolutions.com>
12799 S:      Maintained
12800 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
12801 F:      drivers/regulator/pf8x00-regulator.c
12802
12803 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
12804 M:      Krzysztof Kozlowski <krzk@kernel.org>
12805 L:      linux-kernel@vger.kernel.org
12806 S:      Maintained
12807 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
12808 F:      drivers/extcon/extcon-ptn5150.c
12809
12810 NXP SGTL5000 DRIVER
12811 M:      Fabio Estevam <festevam@gmail.com>
12812 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12813 S:      Maintained
12814 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
12815 F:      sound/soc/codecs/sgtl5000*
12816
12817 NXP SJA1105 ETHERNET SWITCH DRIVER
12818 M:      Vladimir Oltean <olteanv@gmail.com>
12819 L:      linux-kernel@vger.kernel.org
12820 S:      Maintained
12821 F:      drivers/net/dsa/sja1105
12822
12823 NXP TDA998X DRM DRIVER
12824 M:      Russell King <linux@armlinux.org.uk>
12825 S:      Maintained
12826 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12827 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12828 F:      drivers/gpu/drm/i2c/tda998x_drv.c
12829 F:      include/drm/i2c/tda998x.h
12830 F:      include/dt-bindings/display/tda998x.h
12831 K:      "nxp,tda998x"
12832
12833 NXP TFA9879 DRIVER
12834 M:      Peter Rosin <peda@axentia.se>
12835 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12836 S:      Maintained
12837 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
12838 F:      sound/soc/codecs/tfa9879*
12839
12840 NXP-NCI NFC DRIVER
12841 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
12842 R:      Charles Gorand <charles.gorand@effinnov.com>
12843 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12844 S:      Supported
12845 F:      drivers/nfc/nxp-nci
12846
12847 OBJAGG
12848 M:      Jiri Pirko <jiri@nvidia.com>
12849 L:      netdev@vger.kernel.org
12850 S:      Supported
12851 F:      include/linux/objagg.h
12852 F:      lib/objagg.c
12853 F:      lib/test_objagg.c
12854
12855 OBJTOOL
12856 M:      Josh Poimboeuf <jpoimboe@redhat.com>
12857 M:      Peter Zijlstra <peterz@infradead.org>
12858 S:      Supported
12859 F:      tools/objtool/
12860 F:      include/linux/objtool.h
12861
12862 OCELOT ETHERNET SWITCH DRIVER
12863 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
12864 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
12865 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12866 M:      UNGLinuxDriver@microchip.com
12867 L:      netdev@vger.kernel.org
12868 S:      Supported
12869 F:      drivers/net/dsa/ocelot/*
12870 F:      drivers/net/ethernet/mscc/
12871 F:      include/soc/mscc/ocelot*
12872 F:      net/dsa/tag_ocelot.c
12873 F:      net/dsa/tag_ocelot_8021q.c
12874 F:      tools/testing/selftests/drivers/net/ocelot/*
12875
12876 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12877 M:      Frederic Barrat <fbarrat@linux.ibm.com>
12878 M:      Andrew Donnellan <ajd@linux.ibm.com>
12879 L:      linuxppc-dev@lists.ozlabs.org
12880 S:      Supported
12881 F:      Documentation/userspace-api/accelerators/ocxl.rst
12882 F:      arch/powerpc/include/asm/pnv-ocxl.h
12883 F:      arch/powerpc/platforms/powernv/ocxl.c
12884 F:      drivers/misc/ocxl/
12885 F:      include/misc/ocxl*
12886 F:      include/uapi/misc/ocxl.h
12887
12888 OMAP AUDIO SUPPORT
12889 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
12890 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
12891 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12892 L:      linux-omap@vger.kernel.org
12893 S:      Maintained
12894 F:      sound/soc/ti/n810.c
12895 F:      sound/soc/ti/omap*
12896 F:      sound/soc/ti/rx51.c
12897 F:      sound/soc/ti/sdma-pcm.*
12898
12899 OMAP CLOCK FRAMEWORK SUPPORT
12900 M:      Paul Walmsley <paul@pwsan.com>
12901 L:      linux-omap@vger.kernel.org
12902 S:      Maintained
12903 F:      arch/arm/*omap*/*clock*
12904
12905 OMAP DEVICE TREE SUPPORT
12906 M:      Benoît Cousson <bcousson@baylibre.com>
12907 M:      Tony Lindgren <tony@atomide.com>
12908 L:      linux-omap@vger.kernel.org
12909 L:      devicetree@vger.kernel.org
12910 S:      Maintained
12911 F:      arch/arm/boot/dts/*am3*
12912 F:      arch/arm/boot/dts/*am4*
12913 F:      arch/arm/boot/dts/*am5*
12914 F:      arch/arm/boot/dts/*dra7*
12915 F:      arch/arm/boot/dts/*omap*
12916 F:      arch/arm/boot/dts/logicpd-som-lv*
12917 F:      arch/arm/boot/dts/logicpd-torpedo*
12918
12919 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12920 L:      linux-omap@vger.kernel.org
12921 L:      linux-fbdev@vger.kernel.org
12922 S:      Orphan
12923 F:      Documentation/arm/omap/dss.rst
12924 F:      drivers/video/fbdev/omap2/
12925
12926 OMAP FRAMEBUFFER SUPPORT
12927 L:      linux-fbdev@vger.kernel.org
12928 L:      linux-omap@vger.kernel.org
12929 S:      Orphan
12930 F:      drivers/video/fbdev/omap/
12931
12932 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12933 M:      Roger Quadros <rogerq@kernel.org>
12934 M:      Tony Lindgren <tony@atomide.com>
12935 L:      linux-omap@vger.kernel.org
12936 S:      Maintained
12937 F:      arch/arm/mach-omap2/*gpmc*
12938 F:      drivers/memory/omap-gpmc.c
12939
12940 OMAP GPIO DRIVER
12941 M:      Grygorii Strashko <grygorii.strashko@ti.com>
12942 M:      Santosh Shilimkar <ssantosh@kernel.org>
12943 M:      Kevin Hilman <khilman@kernel.org>
12944 L:      linux-omap@vger.kernel.org
12945 S:      Maintained
12946 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
12947 F:      drivers/gpio/gpio-omap.c
12948
12949 OMAP HARDWARE SPINLOCK SUPPORT
12950 M:      Ohad Ben-Cohen <ohad@wizery.com>
12951 L:      linux-omap@vger.kernel.org
12952 S:      Maintained
12953 F:      drivers/hwspinlock/omap_hwspinlock.c
12954
12955 OMAP HS MMC SUPPORT
12956 L:      linux-mmc@vger.kernel.org
12957 L:      linux-omap@vger.kernel.org
12958 S:      Orphan
12959 F:      drivers/mmc/host/omap_hsmmc.c
12960
12961 OMAP HWMOD DATA
12962 M:      Paul Walmsley <paul@pwsan.com>
12963 L:      linux-omap@vger.kernel.org
12964 S:      Maintained
12965 F:      arch/arm/mach-omap2/omap_hwmod*data*
12966
12967 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12968 M:      Benoît Cousson <bcousson@baylibre.com>
12969 L:      linux-omap@vger.kernel.org
12970 S:      Maintained
12971 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12972
12973 OMAP HWMOD SUPPORT
12974 M:      Benoît Cousson <bcousson@baylibre.com>
12975 M:      Paul Walmsley <paul@pwsan.com>
12976 L:      linux-omap@vger.kernel.org
12977 S:      Maintained
12978 F:      arch/arm/mach-omap2/omap_hwmod.*
12979
12980 OMAP I2C DRIVER
12981 M:      Vignesh R <vigneshr@ti.com>
12982 L:      linux-omap@vger.kernel.org
12983 L:      linux-i2c@vger.kernel.org
12984 S:      Maintained
12985 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
12986 F:      drivers/i2c/busses/i2c-omap.c
12987
12988 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12989 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12990 L:      linux-media@vger.kernel.org
12991 S:      Maintained
12992 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
12993 F:      drivers/media/platform/omap3isp/
12994 F:      drivers/staging/media/omap4iss/
12995
12996 OMAP MMC SUPPORT
12997 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12998 L:      linux-omap@vger.kernel.org
12999 S:      Odd Fixes
13000 F:      drivers/mmc/host/omap.c
13001
13002 OMAP POWER MANAGEMENT SUPPORT
13003 M:      Kevin Hilman <khilman@kernel.org>
13004 L:      linux-omap@vger.kernel.org
13005 S:      Maintained
13006 F:      arch/arm/*omap*/*pm*
13007 F:      drivers/cpufreq/omap-cpufreq.c
13008
13009 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13010 M:      Rajendra Nayak <rnayak@codeaurora.org>
13011 M:      Paul Walmsley <paul@pwsan.com>
13012 L:      linux-omap@vger.kernel.org
13013 S:      Maintained
13014 F:      arch/arm/mach-omap2/prm*
13015
13016 OMAP RANDOM NUMBER GENERATOR SUPPORT
13017 M:      Deepak Saxena <dsaxena@plexity.net>
13018 S:      Maintained
13019 F:      drivers/char/hw_random/omap-rng.c
13020
13021 OMAP USB SUPPORT
13022 L:      linux-usb@vger.kernel.org
13023 L:      linux-omap@vger.kernel.org
13024 S:      Orphan
13025 F:      arch/arm/*omap*/usb*
13026 F:      drivers/usb/*/*omap*
13027
13028 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13029 M:      Mark Jackson <mpfj@newflow.co.uk>
13030 L:      linux-omap@vger.kernel.org
13031 S:      Maintained
13032 F:      arch/arm/boot/dts/am335x-nano.dts
13033
13034 OMAP1 SUPPORT
13035 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13036 M:      Tony Lindgren <tony@atomide.com>
13037 L:      linux-omap@vger.kernel.org
13038 S:      Maintained
13039 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13041 F:      arch/arm/configs/omap1_defconfig
13042 F:      arch/arm/mach-omap1/
13043 F:      arch/arm/plat-omap/
13044 F:      drivers/i2c/busses/i2c-omap.c
13045 F:      include/linux/platform_data/ams-delta-fiq.h
13046 F:      include/linux/platform_data/i2c-omap.h
13047
13048 OMAP2+ SUPPORT
13049 M:      Tony Lindgren <tony@atomide.com>
13050 L:      linux-omap@vger.kernel.org
13051 S:      Maintained
13052 W:      http://www.muru.com/linux/omap/
13053 W:      http://linux.omap.com/
13054 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13056 F:      arch/arm/configs/omap2plus_defconfig
13057 F:      arch/arm/mach-omap2/
13058 F:      arch/arm/plat-omap/
13059 F:      drivers/bus/ti-sysc.c
13060 F:      drivers/i2c/busses/i2c-omap.c
13061 F:      drivers/irqchip/irq-omap-intc.c
13062 F:      drivers/mfd/*omap*.c
13063 F:      drivers/mfd/menelaus.c
13064 F:      drivers/mfd/palmas.c
13065 F:      drivers/mfd/tps65217.c
13066 F:      drivers/mfd/tps65218.c
13067 F:      drivers/mfd/tps65910.c
13068 F:      drivers/mfd/twl-core.[ch]
13069 F:      drivers/mfd/twl4030*.c
13070 F:      drivers/mfd/twl6030*.c
13071 F:      drivers/mfd/twl6040*.c
13072 F:      drivers/regulator/palmas-regulator*.c
13073 F:      drivers/regulator/pbias-regulator.c
13074 F:      drivers/regulator/tps65217-regulator.c
13075 F:      drivers/regulator/tps65218-regulator.c
13076 F:      drivers/regulator/tps65910-regulator.c
13077 F:      drivers/regulator/twl-regulator.c
13078 F:      drivers/regulator/twl6030-regulator.c
13079 F:      include/linux/platform_data/i2c-omap.h
13080 F:      include/linux/platform_data/ti-sysc.h
13081
13082 OMFS FILESYSTEM
13083 M:      Bob Copeland <me@bobcopeland.com>
13084 L:      linux-karma-devel@lists.sourceforge.net
13085 S:      Maintained
13086 F:      Documentation/filesystems/omfs.rst
13087 F:      fs/omfs/
13088
13089 OMNIKEY CARDMAN 4000 DRIVER
13090 M:      Harald Welte <laforge@gnumonks.org>
13091 S:      Maintained
13092 F:      drivers/char/pcmcia/cm4000_cs.c
13093 F:      include/linux/cm4000_cs.h
13094 F:      include/uapi/linux/cm4000_cs.h
13095
13096 OMNIKEY CARDMAN 4040 DRIVER
13097 M:      Harald Welte <laforge@gnumonks.org>
13098 S:      Maintained
13099 F:      drivers/char/pcmcia/cm4040_cs.*
13100
13101 OMNIVISION OV02A10 SENSOR DRIVER
13102 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13103 L:      linux-media@vger.kernel.org
13104 S:      Maintained
13105 T:      git git://linuxtv.org/media_tree.git
13106 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13107 F:      drivers/media/i2c/ov02a10.c
13108
13109 OMNIVISION OV13858 SENSOR DRIVER
13110 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13111 L:      linux-media@vger.kernel.org
13112 S:      Maintained
13113 T:      git git://linuxtv.org/media_tree.git
13114 F:      drivers/media/i2c/ov13858.c
13115
13116 OMNIVISION OV2680 SENSOR DRIVER
13117 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13118 L:      linux-media@vger.kernel.org
13119 S:      Maintained
13120 T:      git git://linuxtv.org/media_tree.git
13121 F:      Documentation/devicetree/bindings/media/i2c/ov2680.yaml
13122 F:      drivers/media/i2c/ov2680.c
13123
13124 OMNIVISION OV2685 SENSOR DRIVER
13125 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13126 L:      linux-media@vger.kernel.org
13127 S:      Maintained
13128 T:      git git://linuxtv.org/media_tree.git
13129 F:      drivers/media/i2c/ov2685.c
13130
13131 OMNIVISION OV2740 SENSOR DRIVER
13132 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13133 R:      Shawn Tu <shawnx.tu@intel.com>
13134 R:      Bingbu Cao <bingbu.cao@intel.com>
13135 L:      linux-media@vger.kernel.org
13136 S:      Maintained
13137 T:      git git://linuxtv.org/media_tree.git
13138 F:      drivers/media/i2c/ov2740.c
13139
13140 OMNIVISION OV5640 SENSOR DRIVER
13141 M:      Steve Longerbeam <slongerbeam@gmail.com>
13142 L:      linux-media@vger.kernel.org
13143 S:      Maintained
13144 T:      git git://linuxtv.org/media_tree.git
13145 F:      drivers/media/i2c/ov5640.c
13146
13147 OMNIVISION OV5647 SENSOR DRIVER
13148 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
13149 M:      Jacopo Mondi <jacopo@jmondi.org>
13150 L:      linux-media@vger.kernel.org
13151 S:      Maintained
13152 T:      git git://linuxtv.org/media_tree.git
13153 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
13154 F:      drivers/media/i2c/ov5647.c
13155
13156 OMNIVISION OV5670 SENSOR DRIVER
13157 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13158 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
13159 L:      linux-media@vger.kernel.org
13160 S:      Maintained
13161 T:      git git://linuxtv.org/media_tree.git
13162 F:      drivers/media/i2c/ov5670.c
13163
13164 OMNIVISION OV5675 SENSOR DRIVER
13165 M:      Shawn Tu <shawnx.tu@intel.com>
13166 L:      linux-media@vger.kernel.org
13167 S:      Maintained
13168 T:      git git://linuxtv.org/media_tree.git
13169 F:      drivers/media/i2c/ov5675.c
13170
13171 OMNIVISION OV5695 SENSOR DRIVER
13172 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13173 L:      linux-media@vger.kernel.org
13174 S:      Maintained
13175 T:      git git://linuxtv.org/media_tree.git
13176 F:      drivers/media/i2c/ov5695.c
13177
13178 OMNIVISION OV7670 SENSOR DRIVER
13179 L:      linux-media@vger.kernel.org
13180 S:      Orphan
13181 T:      git git://linuxtv.org/media_tree.git
13182 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
13183 F:      drivers/media/i2c/ov7670.c
13184
13185 OMNIVISION OV772x SENSOR DRIVER
13186 M:      Jacopo Mondi <jacopo@jmondi.org>
13187 L:      linux-media@vger.kernel.org
13188 S:      Odd fixes
13189 T:      git git://linuxtv.org/media_tree.git
13190 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13191 F:      drivers/media/i2c/ov772x.c
13192 F:      include/media/i2c/ov772x.h
13193
13194 OMNIVISION OV7740 SENSOR DRIVER
13195 M:      Wenyou Yang <wenyou.yang@microchip.com>
13196 L:      linux-media@vger.kernel.org
13197 S:      Maintained
13198 T:      git git://linuxtv.org/media_tree.git
13199 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
13200 F:      drivers/media/i2c/ov7740.c
13201
13202 OMNIVISION OV8856 SENSOR DRIVER
13203 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13204 L:      linux-media@vger.kernel.org
13205 S:      Maintained
13206 T:      git git://linuxtv.org/media_tree.git
13207 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13208 F:      drivers/media/i2c/ov8856.c
13209
13210 OMNIVISION OV9640 SENSOR DRIVER
13211 M:      Petr Cvek <petrcvekcz@gmail.com>
13212 L:      linux-media@vger.kernel.org
13213 S:      Maintained
13214 F:      drivers/media/i2c/ov9640.*
13215
13216 OMNIVISION OV9650 SENSOR DRIVER
13217 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13218 R:      Akinobu Mita <akinobu.mita@gmail.com>
13219 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13220 L:      linux-media@vger.kernel.org
13221 S:      Maintained
13222 T:      git git://linuxtv.org/media_tree.git
13223 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
13224 F:      drivers/media/i2c/ov9650.c
13225
13226 OMNIVISION OV9734 SENSOR DRIVER
13227 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13228 R:      Bingbu Cao <bingbu.cao@intel.com>
13229 L:      linux-media@vger.kernel.org
13230 S:      Maintained
13231 T:      git git://linuxtv.org/media_tree.git
13232 F:      drivers/media/i2c/ov9734.c
13233
13234 ONENAND FLASH DRIVER
13235 M:      Kyungmin Park <kyungmin.park@samsung.com>
13236 L:      linux-mtd@lists.infradead.org
13237 S:      Maintained
13238 F:      drivers/mtd/nand/onenand/
13239 F:      include/linux/mtd/onenand*.h
13240
13241 ONION OMEGA2+ BOARD
13242 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
13243 L:      linux-mips@vger.kernel.org
13244 S:      Maintained
13245 F:      arch/mips/boot/dts/ralink/omega2p.dts
13246
13247 OP-TEE DRIVER
13248 M:      Jens Wiklander <jens.wiklander@linaro.org>
13249 L:      op-tee@lists.trustedfirmware.org
13250 S:      Maintained
13251 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
13252 F:      drivers/tee/optee/
13253
13254 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
13255 M:      Sumit Garg <sumit.garg@linaro.org>
13256 L:      op-tee@lists.trustedfirmware.org
13257 S:      Maintained
13258 F:      drivers/char/hw_random/optee-rng.c
13259
13260 OPA-VNIC DRIVER
13261 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
13262 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
13263 L:      linux-rdma@vger.kernel.org
13264 S:      Supported
13265 F:      drivers/infiniband/ulp/opa_vnic
13266
13267 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
13268 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
13269 M:      Frank Rowand <frowand.list@gmail.com>
13270 L:      devicetree@vger.kernel.org
13271 S:      Maintained
13272 F:      Documentation/devicetree/dynamic-resolution-notes.rst
13273 F:      Documentation/devicetree/overlay-notes.rst
13274 F:      drivers/of/overlay.c
13275 F:      drivers/of/resolver.c
13276 K:      of_overlay_notifier_
13277
13278 OPEN FIRMWARE AND FLATTENED DEVICE TREE
13279 M:      Rob Herring <robh+dt@kernel.org>
13280 M:      Frank Rowand <frowand.list@gmail.com>
13281 L:      devicetree@vger.kernel.org
13282 S:      Maintained
13283 W:      http://www.devicetree.org/
13284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13285 F:      Documentation/ABI/testing/sysfs-firmware-ofw
13286 F:      drivers/of/
13287 F:      include/linux/of*.h
13288 F:      scripts/dtc/
13289
13290 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
13291 M:      Rob Herring <robh+dt@kernel.org>
13292 L:      devicetree@vger.kernel.org
13293 S:      Maintained
13294 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
13295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13296 F:      Documentation/devicetree/
13297 F:      arch/*/boot/dts/
13298 F:      include/dt-bindings/
13299
13300 OPENCORES I2C BUS DRIVER
13301 M:      Peter Korsgaard <peter@korsgaard.com>
13302 M:      Andrew Lunn <andrew@lunn.ch>
13303 L:      linux-i2c@vger.kernel.org
13304 S:      Maintained
13305 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
13306 F:      Documentation/i2c/busses/i2c-ocores.rst
13307 F:      drivers/i2c/busses/i2c-ocores.c
13308 F:      include/linux/platform_data/i2c-ocores.h
13309
13310 OPENRISC ARCHITECTURE
13311 M:      Jonas Bonn <jonas@southpole.se>
13312 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
13313 M:      Stafford Horne <shorne@gmail.com>
13314 L:      openrisc@lists.librecores.org
13315 S:      Maintained
13316 W:      http://openrisc.io
13317 T:      git git://github.com/openrisc/linux.git
13318 F:      Documentation/devicetree/bindings/openrisc/
13319 F:      Documentation/openrisc/
13320 F:      arch/openrisc/
13321 F:      drivers/irqchip/irq-ompic.c
13322 F:      drivers/irqchip/irq-or1k-*
13323
13324 OPENVSWITCH
13325 M:      Pravin B Shelar <pshelar@ovn.org>
13326 L:      netdev@vger.kernel.org
13327 L:      dev@openvswitch.org
13328 S:      Maintained
13329 W:      http://openvswitch.org
13330 F:      include/uapi/linux/openvswitch.h
13331 F:      net/openvswitch/
13332
13333 OPERATING PERFORMANCE POINTS (OPP)
13334 M:      Viresh Kumar <vireshk@kernel.org>
13335 M:      Nishanth Menon <nm@ti.com>
13336 M:      Stephen Boyd <sboyd@kernel.org>
13337 L:      linux-pm@vger.kernel.org
13338 S:      Maintained
13339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
13340 F:      Documentation/devicetree/bindings/opp/
13341 F:      Documentation/power/opp.rst
13342 F:      drivers/opp/
13343 F:      include/linux/pm_opp.h
13344
13345 OPL4 DRIVER
13346 M:      Clemens Ladisch <clemens@ladisch.de>
13347 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13348 S:      Maintained
13349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
13350 F:      sound/drivers/opl4/
13351
13352 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
13353 M:      Mark Fasheh <mark@fasheh.com>
13354 M:      Joel Becker <jlbec@evilplan.org>
13355 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
13356 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
13357 S:      Supported
13358 W:      http://ocfs2.wiki.kernel.org
13359 F:      Documentation/filesystems/dlmfs.rst
13360 F:      Documentation/filesystems/ocfs2.rst
13361 F:      fs/ocfs2/
13362
13363 ORANGEFS FILESYSTEM
13364 M:      Mike Marshall <hubcap@omnibond.com>
13365 R:      Martin Brandenburg <martin@omnibond.com>
13366 L:      devel@lists.orangefs.org
13367 S:      Supported
13368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
13369 F:      Documentation/filesystems/orangefs.rst
13370 F:      fs/orangefs/
13371
13372 ORINOCO DRIVER
13373 L:      linux-wireless@vger.kernel.org
13374 S:      Orphan
13375 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
13376 W:      http://www.nongnu.org/orinoco/
13377 F:      drivers/net/wireless/intersil/orinoco/
13378
13379 OV2659 OMNIVISION SENSOR DRIVER
13380 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13381 L:      linux-media@vger.kernel.org
13382 S:      Maintained
13383 W:      https://linuxtv.org
13384 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13385 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13386 F:      drivers/media/i2c/ov2659.c
13387 F:      include/media/i2c/ov2659.h
13388
13389 OVERLAY FILESYSTEM
13390 M:      Miklos Szeredi <miklos@szeredi.hu>
13391 L:      linux-unionfs@vger.kernel.org
13392 S:      Supported
13393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
13394 F:      Documentation/filesystems/overlayfs.rst
13395 F:      fs/overlayfs/
13396
13397 P54 WIRELESS DRIVER
13398 M:      Christian Lamparter <chunkeey@googlemail.com>
13399 L:      linux-wireless@vger.kernel.org
13400 S:      Maintained
13401 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
13402 F:      drivers/net/wireless/intersil/p54/
13403
13404 PACKING
13405 M:      Vladimir Oltean <olteanv@gmail.com>
13406 L:      netdev@vger.kernel.org
13407 S:      Supported
13408 F:      Documentation/core-api/packing.rst
13409 F:      include/linux/packing.h
13410 F:      lib/packing.c
13411
13412 PADATA PARALLEL EXECUTION MECHANISM
13413 M:      Steffen Klassert <steffen.klassert@secunet.com>
13414 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
13415 L:      linux-crypto@vger.kernel.org
13416 L:      linux-kernel@vger.kernel.org
13417 S:      Maintained
13418 F:      Documentation/core-api/padata.rst
13419 F:      include/linux/padata.h
13420 F:      kernel/padata.c
13421
13422 PAGE POOL
13423 M:      Jesper Dangaard Brouer <hawk@kernel.org>
13424 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
13425 L:      netdev@vger.kernel.org
13426 S:      Supported
13427 F:      Documentation/networking/page_pool.rst
13428 F:      include/net/page_pool.h
13429 F:      include/trace/events/page_pool.h
13430 F:      net/core/page_pool.c
13431
13432 PANASONIC LAPTOP ACPI EXTRAS DRIVER
13433 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
13434 L:      platform-driver-x86@vger.kernel.org
13435 S:      Maintained
13436 F:      drivers/platform/x86/panasonic-laptop.c
13437
13438 PARALLAX PING IIO SENSOR DRIVER
13439 M:      Andreas Klinger <ak@it-klinger.de>
13440 L:      linux-iio@vger.kernel.org
13441 S:      Maintained
13442 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
13443 F:      drivers/iio/proximity/ping.c
13444
13445 PARALLEL LCD/KEYPAD PANEL DRIVER
13446 M:      Willy Tarreau <willy@haproxy.com>
13447 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
13448 S:      Odd Fixes
13449 F:      Documentation/admin-guide/lcd-panel-cgram.rst
13450 F:      drivers/auxdisplay/panel.c
13451
13452 PARALLEL PORT SUBSYSTEM
13453 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
13454 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
13455 L:      linux-parport@lists.infradead.org (subscribers-only)
13456 S:      Maintained
13457 F:      Documentation/driver-api/parport*.rst
13458 F:      drivers/char/ppdev.c
13459 F:      drivers/parport/
13460 F:      include/linux/parport*.h
13461 F:      include/uapi/linux/ppdev.h
13462
13463 PARAVIRT_OPS INTERFACE
13464 M:      Juergen Gross <jgross@suse.com>
13465 M:      Deep Shah <sdeep@vmware.com>
13466 M:      "VMware, Inc." <pv-drivers@vmware.com>
13467 L:      virtualization@lists.linux-foundation.org
13468 S:      Supported
13469 F:      Documentation/virt/paravirt_ops.rst
13470 F:      arch/*/include/asm/paravirt*.h
13471 F:      arch/*/kernel/paravirt*
13472 F:      include/linux/hypervisor.h
13473
13474 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
13475 M:      Tim Waugh <tim@cyberelk.net>
13476 L:      linux-parport@lists.infradead.org (subscribers-only)
13477 S:      Maintained
13478 F:      Documentation/admin-guide/blockdev/paride.rst
13479 F:      drivers/block/paride/
13480
13481 PARISC ARCHITECTURE
13482 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
13483 M:      Helge Deller <deller@gmx.de>
13484 L:      linux-parisc@vger.kernel.org
13485 S:      Maintained
13486 W:      https://parisc.wiki.kernel.org
13487 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
13488 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
13489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
13490 F:      Documentation/parisc/
13491 F:      arch/parisc/
13492 F:      drivers/char/agp/parisc-agp.c
13493 F:      drivers/input/misc/hp_sdc_rtc.c
13494 F:      drivers/input/serio/gscps2.c
13495 F:      drivers/input/serio/hp_sdc*
13496 F:      drivers/parisc/
13497 F:      drivers/parport/parport_gsc.*
13498 F:      drivers/tty/serial/8250/8250_gsc.c
13499 F:      drivers/video/console/sti*
13500 F:      drivers/video/fbdev/sti*
13501 F:      drivers/video/logo/logo_parisc*
13502 F:      include/linux/hp_sdc.h
13503
13504 PARMAN
13505 M:      Jiri Pirko <jiri@nvidia.com>
13506 L:      netdev@vger.kernel.org
13507 S:      Supported
13508 F:      include/linux/parman.h
13509 F:      lib/parman.c
13510 F:      lib/test_parman.c
13511
13512 PC ENGINES APU BOARD DRIVER
13513 M:      Enrico Weigelt, metux IT consult <info@metux.net>
13514 S:      Maintained
13515 F:      drivers/platform/x86/pcengines-apuv2.c
13516
13517 PC87360 HARDWARE MONITORING DRIVER
13518 M:      Jim Cromie <jim.cromie@gmail.com>
13519 L:      linux-hwmon@vger.kernel.org
13520 S:      Maintained
13521 F:      Documentation/hwmon/pc87360.rst
13522 F:      drivers/hwmon/pc87360.c
13523
13524 PC8736x GPIO DRIVER
13525 M:      Jim Cromie <jim.cromie@gmail.com>
13526 S:      Maintained
13527 F:      drivers/char/pc8736x_gpio.c
13528
13529 PC87427 HARDWARE MONITORING DRIVER
13530 M:      Jean Delvare <jdelvare@suse.com>
13531 L:      linux-hwmon@vger.kernel.org
13532 S:      Maintained
13533 F:      Documentation/hwmon/pc87427.rst
13534 F:      drivers/hwmon/pc87427.c
13535
13536 PCA9532 LED DRIVER
13537 M:      Riku Voipio <riku.voipio@iki.fi>
13538 S:      Maintained
13539 F:      drivers/leds/leds-pca9532.c
13540 F:      include/linux/leds-pca9532.h
13541
13542 PCA9541 I2C BUS MASTER SELECTOR DRIVER
13543 M:      Guenter Roeck <linux@roeck-us.net>
13544 L:      linux-i2c@vger.kernel.org
13545 S:      Maintained
13546 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
13547
13548 PCDP - PRIMARY CONSOLE AND DEBUG PORT
13549 M:      Khalid Aziz <khalid@gonehiking.org>
13550 S:      Maintained
13551 F:      drivers/firmware/pcdp.*
13552
13553 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
13554 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13555 M:      Pali Rohár <pali@kernel.org>
13556 L:      linux-pci@vger.kernel.org
13557 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13558 S:      Maintained
13559 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
13560 F:      drivers/pci/controller/pci-aardvark.c
13561
13562 PCI DRIVER FOR ALTERA PCIE IP
13563 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13564 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13565 L:      linux-pci@vger.kernel.org
13566 S:      Supported
13567 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
13568 F:      drivers/pci/controller/pcie-altera.c
13569
13570 PCI DRIVER FOR APPLIEDMICRO XGENE
13571 M:      Toan Le <toan@os.amperecomputing.com>
13572 L:      linux-pci@vger.kernel.org
13573 L:      linux-arm-kernel@lists.infradead.org
13574 S:      Maintained
13575 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
13576 F:      drivers/pci/controller/pci-xgene.c
13577
13578 PCI DRIVER FOR ARM VERSATILE PLATFORM
13579 M:      Rob Herring <robh@kernel.org>
13580 L:      linux-pci@vger.kernel.org
13581 L:      linux-arm-kernel@lists.infradead.org
13582 S:      Maintained
13583 F:      Documentation/devicetree/bindings/pci/versatile.yaml
13584 F:      drivers/pci/controller/pci-versatile.c
13585
13586 PCI DRIVER FOR ARMADA 8K
13587 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13588 L:      linux-pci@vger.kernel.org
13589 L:      linux-arm-kernel@lists.infradead.org
13590 S:      Maintained
13591 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
13592 F:      drivers/pci/controller/dwc/pcie-armada8k.c
13593
13594 PCI DRIVER FOR CADENCE PCIE IP
13595 M:      Tom Joseph <tjoseph@cadence.com>
13596 L:      linux-pci@vger.kernel.org
13597 S:      Maintained
13598 F:      Documentation/devicetree/bindings/pci/cdns,*
13599 F:      drivers/pci/controller/cadence/
13600
13601 PCI DRIVER FOR FREESCALE LAYERSCAPE
13602 M:      Minghuan Lian <minghuan.Lian@nxp.com>
13603 M:      Mingkai Hu <mingkai.hu@nxp.com>
13604 M:      Roy Zang <roy.zang@nxp.com>
13605 L:      linuxppc-dev@lists.ozlabs.org
13606 L:      linux-pci@vger.kernel.org
13607 L:      linux-arm-kernel@lists.infradead.org
13608 S:      Maintained
13609 F:      drivers/pci/controller/dwc/*layerscape*
13610
13611 PCI DRIVER FOR GENERIC OF HOSTS
13612 M:      Will Deacon <will@kernel.org>
13613 L:      linux-pci@vger.kernel.org
13614 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13615 S:      Maintained
13616 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
13617 F:      drivers/pci/controller/pci-host-common.c
13618 F:      drivers/pci/controller/pci-host-generic.c
13619
13620 PCI DRIVER FOR IMX6
13621 M:      Richard Zhu <hongxing.zhu@nxp.com>
13622 M:      Lucas Stach <l.stach@pengutronix.de>
13623 L:      linux-pci@vger.kernel.org
13624 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13625 S:      Maintained
13626 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
13627 F:      drivers/pci/controller/dwc/*imx6*
13628
13629 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
13630 M:      Jonathan Derrick <jonathan.derrick@intel.com>
13631 L:      linux-pci@vger.kernel.org
13632 S:      Supported
13633 F:      drivers/pci/controller/vmd.c
13634
13635 PCI DRIVER FOR MICROSEMI SWITCHTEC
13636 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
13637 M:      Logan Gunthorpe <logang@deltatee.com>
13638 L:      linux-pci@vger.kernel.org
13639 S:      Maintained
13640 F:      Documentation/ABI/testing/sysfs-class-switchtec
13641 F:      Documentation/driver-api/switchtec.rst
13642 F:      drivers/ntb/hw/mscc/
13643 F:      drivers/pci/switch/switchtec*
13644 F:      include/linux/switchtec.h
13645 F:      include/uapi/linux/switchtec_ioctl.h
13646
13647 PCI DRIVER FOR MOBIVEIL PCIE IP
13648 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
13649 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13650 L:      linux-pci@vger.kernel.org
13651 S:      Supported
13652 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
13653 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
13654
13655 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
13656 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13657 L:      linux-pci@vger.kernel.org
13658 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13659 S:      Maintained
13660 F:      drivers/pci/controller/*mvebu*
13661
13662 PCI DRIVER FOR NVIDIA TEGRA
13663 M:      Thierry Reding <thierry.reding@gmail.com>
13664 L:      linux-tegra@vger.kernel.org
13665 L:      linux-pci@vger.kernel.org
13666 S:      Supported
13667 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
13668 F:      drivers/pci/controller/pci-tegra.c
13669
13670 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
13671 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13672 L:      linux-pci@vger.kernel.org
13673 L:      linux-arm-kernel@lists.infradead.org
13674 S:      Maintained
13675 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
13676 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
13677
13678 PCI DRIVER FOR RENESAS R-CAR
13679 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
13680 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
13681 L:      linux-pci@vger.kernel.org
13682 L:      linux-renesas-soc@vger.kernel.org
13683 S:      Maintained
13684 F:      Documentation/devicetree/bindings/pci/*rcar*
13685 F:      drivers/pci/controller/*rcar*
13686
13687 PCI DRIVER FOR SAMSUNG EXYNOS
13688 M:      Jingoo Han <jingoohan1@gmail.com>
13689 L:      linux-pci@vger.kernel.org
13690 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13691 L:      linux-samsung-soc@vger.kernel.org
13692 S:      Maintained
13693 F:      drivers/pci/controller/dwc/pci-exynos.c
13694
13695 PCI DRIVER FOR SYNOPSYS DESIGNWARE
13696 M:      Jingoo Han <jingoohan1@gmail.com>
13697 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
13698 L:      linux-pci@vger.kernel.org
13699 S:      Maintained
13700 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
13701 F:      drivers/pci/controller/dwc/*designware*
13702
13703 PCI DRIVER FOR TI DRA7XX/J721E
13704 M:      Kishon Vijay Abraham I <kishon@ti.com>
13705 L:      linux-omap@vger.kernel.org
13706 L:      linux-pci@vger.kernel.org
13707 L:      linux-arm-kernel@lists.infradead.org
13708 S:      Supported
13709 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
13710 F:      drivers/pci/controller/cadence/pci-j721e.c
13711 F:      drivers/pci/controller/dwc/pci-dra7xx.c
13712
13713 PCI DRIVER FOR TI KEYSTONE
13714 M:      Murali Karicheri <m-karicheri2@ti.com>
13715 L:      linux-pci@vger.kernel.org
13716 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13717 S:      Maintained
13718 F:      drivers/pci/controller/dwc/pci-keystone.c
13719
13720 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13721 M:      Linus Walleij <linus.walleij@linaro.org>
13722 L:      linux-pci@vger.kernel.org
13723 S:      Maintained
13724 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13725 F:      drivers/pci/controller/pci-v3-semi.c
13726
13727 PCI ENDPOINT SUBSYSTEM
13728 M:      Kishon Vijay Abraham I <kishon@ti.com>
13729 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13730 L:      linux-pci@vger.kernel.org
13731 S:      Supported
13732 F:      Documentation/PCI/endpoint/*
13733 F:      Documentation/misc-devices/pci-endpoint-test.rst
13734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
13735 F:      drivers/misc/pci_endpoint_test.c
13736 F:      drivers/pci/endpoint/
13737 F:      tools/pci/
13738
13739 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
13740 M:      Russell Currey <ruscur@russell.cc>
13741 M:      Oliver O'Halloran <oohall@gmail.com>
13742 L:      linuxppc-dev@lists.ozlabs.org
13743 S:      Supported
13744 F:      Documentation/PCI/pci-error-recovery.rst
13745 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
13746 F:      arch/powerpc/include/*/eeh*.h
13747 F:      arch/powerpc/kernel/eeh*.c
13748 F:      arch/powerpc/platforms/*/eeh*.c
13749 F:      drivers/pci/pcie/aer.c
13750 F:      drivers/pci/pcie/dpc.c
13751 F:      drivers/pci/pcie/err.c
13752
13753 PCI ERROR RECOVERY
13754 M:      Linas Vepstas <linasvepstas@gmail.com>
13755 L:      linux-pci@vger.kernel.org
13756 S:      Supported
13757 F:      Documentation/PCI/pci-error-recovery.rst
13758
13759 PCI MSI DRIVER FOR ALTERA MSI IP
13760 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13761 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13762 L:      linux-pci@vger.kernel.org
13763 S:      Supported
13764 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
13765 F:      drivers/pci/controller/pcie-altera-msi.c
13766
13767 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13768 M:      Toan Le <toan@os.amperecomputing.com>
13769 L:      linux-pci@vger.kernel.org
13770 L:      linux-arm-kernel@lists.infradead.org
13771 S:      Maintained
13772 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13773 F:      drivers/pci/controller/pci-xgene-msi.c
13774
13775 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13776 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13777 R:      Rob Herring <robh@kernel.org>
13778 L:      linux-pci@vger.kernel.org
13779 S:      Supported
13780 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13782 F:      drivers/pci/controller/
13783
13784 PCI SUBSYSTEM
13785 M:      Bjorn Helgaas <bhelgaas@google.com>
13786 L:      linux-pci@vger.kernel.org
13787 S:      Supported
13788 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13790 F:      Documentation/PCI/
13791 F:      Documentation/devicetree/bindings/pci/
13792 F:      arch/x86/kernel/early-quirks.c
13793 F:      arch/x86/kernel/quirks.c
13794 F:      arch/x86/pci/
13795 F:      drivers/acpi/pci*
13796 F:      drivers/pci/
13797 F:      include/asm-generic/pci*
13798 F:      include/linux/of_pci.h
13799 F:      include/linux/pci*
13800 F:      include/uapi/linux/pci*
13801 F:      lib/pci*
13802
13803 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13804 M:      Jonathan Chocron <jonnyc@amazon.com>
13805 L:      linux-pci@vger.kernel.org
13806 S:      Maintained
13807 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
13808 F:      drivers/pci/controller/dwc/pcie-al.c
13809
13810 PCIE DRIVER FOR AMLOGIC MESON
13811 M:      Yue Wang <yue.wang@Amlogic.com>
13812 L:      linux-pci@vger.kernel.org
13813 L:      linux-amlogic@lists.infradead.org
13814 S:      Maintained
13815 F:      drivers/pci/controller/dwc/pci-meson.c
13816
13817 PCIE DRIVER FOR AXIS ARTPEC
13818 M:      Jesper Nilsson <jesper.nilsson@axis.com>
13819 L:      linux-arm-kernel@axis.com
13820 L:      linux-pci@vger.kernel.org
13821 S:      Maintained
13822 F:      Documentation/devicetree/bindings/pci/axis,artpec*
13823 F:      drivers/pci/controller/dwc/*artpec*
13824
13825 PCIE DRIVER FOR CAVIUM THUNDERX
13826 M:      Robert Richter <rric@kernel.org>
13827 L:      linux-pci@vger.kernel.org
13828 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13829 S:      Odd Fixes
13830 F:      drivers/pci/controller/pci-thunder-*
13831
13832 PCIE DRIVER FOR HISILICON
13833 M:      Zhou Wang <wangzhou1@hisilicon.com>
13834 L:      linux-pci@vger.kernel.org
13835 S:      Maintained
13836 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13837 F:      drivers/pci/controller/dwc/pcie-hisi.c
13838
13839 PCIE DRIVER FOR HISILICON KIRIN
13840 M:      Xiaowei Song <songxiaowei@hisilicon.com>
13841 M:      Binghui Wang <wangbinghui@hisilicon.com>
13842 L:      linux-pci@vger.kernel.org
13843 S:      Maintained
13844 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13845 F:      drivers/pci/controller/dwc/pcie-kirin.c
13846
13847 PCIE DRIVER FOR HISILICON STB
13848 M:      Shawn Guo <shawn.guo@linaro.org>
13849 L:      linux-pci@vger.kernel.org
13850 S:      Maintained
13851 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13852 F:      drivers/pci/controller/dwc/pcie-histb.c
13853
13854 PCIE DRIVER FOR MEDIATEK
13855 M:      Ryder Lee <ryder.lee@mediatek.com>
13856 L:      linux-pci@vger.kernel.org
13857 L:      linux-mediatek@lists.infradead.org
13858 S:      Supported
13859 F:      Documentation/devicetree/bindings/pci/mediatek*
13860 F:      drivers/pci/controller/*mediatek*
13861
13862 PCIE DRIVER FOR QUALCOMM MSM
13863 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
13864 L:      linux-pci@vger.kernel.org
13865 L:      linux-arm-msm@vger.kernel.org
13866 S:      Maintained
13867 F:      drivers/pci/controller/dwc/*qcom*
13868
13869 PCIE DRIVER FOR ROCKCHIP
13870 M:      Shawn Lin <shawn.lin@rock-chips.com>
13871 L:      linux-pci@vger.kernel.org
13872 L:      linux-rockchip@lists.infradead.org
13873 S:      Maintained
13874 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13875 F:      drivers/pci/controller/pcie-rockchip*
13876
13877 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13878 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
13879 L:      linux-pci@vger.kernel.org
13880 S:      Maintained
13881 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
13882 F:      drivers/pci/controller/dwc/pcie-uniphier*
13883
13884 PCIE DRIVER FOR ST SPEAR13XX
13885 M:      Pratyush Anand <pratyush.anand@gmail.com>
13886 L:      linux-pci@vger.kernel.org
13887 S:      Maintained
13888 F:      drivers/pci/controller/dwc/*spear*
13889
13890 PCMCIA SUBSYSTEM
13891 M:      Dominik Brodowski <linux@dominikbrodowski.net>
13892 S:      Odd Fixes
13893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13894 F:      Documentation/pcmcia/
13895 F:      drivers/pcmcia/
13896 F:      include/pcmcia/
13897 F:      tools/pcmcia/
13898
13899 PCNET32 NETWORK DRIVER
13900 M:      Don Fry <pcnet32@frontier.com>
13901 L:      netdev@vger.kernel.org
13902 S:      Maintained
13903 F:      drivers/net/ethernet/amd/pcnet32.c
13904
13905 PCRYPT PARALLEL CRYPTO ENGINE
13906 M:      Steffen Klassert <steffen.klassert@secunet.com>
13907 L:      linux-crypto@vger.kernel.org
13908 S:      Maintained
13909 F:      crypto/pcrypt.c
13910 F:      include/crypto/pcrypt.h
13911
13912 PEAQ WMI HOTKEYS DRIVER
13913 M:      Hans de Goede <hdegoede@redhat.com>
13914 L:      platform-driver-x86@vger.kernel.org
13915 S:      Maintained
13916 F:      drivers/platform/x86/peaq-wmi.c
13917
13918 PENSANDO ETHERNET DRIVERS
13919 M:      Shannon Nelson <snelson@pensando.io>
13920 M:      drivers@pensando.io
13921 L:      netdev@vger.kernel.org
13922 S:      Supported
13923 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
13924 F:      drivers/net/ethernet/pensando/
13925
13926 PER-CPU MEMORY ALLOCATOR
13927 M:      Dennis Zhou <dennis@kernel.org>
13928 M:      Tejun Heo <tj@kernel.org>
13929 M:      Christoph Lameter <cl@linux.com>
13930 S:      Maintained
13931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13932 F:      arch/*/include/asm/percpu.h
13933 F:      include/linux/percpu*.h
13934 F:      mm/percpu*.c
13935
13936 PER-TASK DELAY ACCOUNTING
13937 M:      Balbir Singh <bsingharora@gmail.com>
13938 S:      Maintained
13939 F:      include/linux/delayacct.h
13940 F:      kernel/delayacct.c
13941
13942 PERFORMANCE EVENTS SUBSYSTEM
13943 M:      Peter Zijlstra <peterz@infradead.org>
13944 M:      Ingo Molnar <mingo@redhat.com>
13945 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
13946 R:      Mark Rutland <mark.rutland@arm.com>
13947 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
13948 R:      Jiri Olsa <jolsa@redhat.com>
13949 R:      Namhyung Kim <namhyung@kernel.org>
13950 L:      linux-kernel@vger.kernel.org
13951 S:      Supported
13952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13953 F:      arch/*/events/*
13954 F:      arch/*/events/*/*
13955 F:      arch/*/include/asm/perf_event.h
13956 F:      arch/*/kernel/*/*/perf_event*.c
13957 F:      arch/*/kernel/*/perf_event*.c
13958 F:      arch/*/kernel/perf_callchain.c
13959 F:      arch/*/kernel/perf_event*.c
13960 F:      include/linux/perf_event.h
13961 F:      include/uapi/linux/perf_event.h
13962 F:      kernel/events/*
13963 F:      tools/lib/perf/
13964 F:      tools/perf/
13965
13966 PERFORMANCE EVENTS TOOLING ARM64
13967 R:      John Garry <john.garry@huawei.com>
13968 R:      Will Deacon <will@kernel.org>
13969 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
13970 R:      Leo Yan <leo.yan@linaro.org>
13971 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13972 S:      Supported
13973 F:      tools/build/feature/test-libopencsd.c
13974 F:      tools/perf/arch/arm*/
13975 F:      tools/perf/pmu-events/arch/arm64/
13976 F:      tools/perf/util/arm-spe*
13977 F:      tools/perf/util/cs-etm*
13978
13979 PERSONALITY HANDLING
13980 M:      Christoph Hellwig <hch@infradead.org>
13981 L:      linux-abi-devel@lists.sourceforge.net
13982 S:      Maintained
13983 F:      include/linux/personality.h
13984 F:      include/uapi/linux/personality.h
13985
13986 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13987 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13988 L:      linux-input@vger.kernel.org
13989 S:      Maintained
13990 F:      Documentation/input/devices/pxrc.rst
13991 F:      drivers/input/joystick/pxrc.c
13992
13993 PHONET PROTOCOL
13994 M:      Remi Denis-Courmont <courmisch@gmail.com>
13995 S:      Supported
13996 F:      Documentation/networking/phonet.rst
13997 F:      include/linux/phonet.h
13998 F:      include/net/phonet/
13999 F:      include/uapi/linux/phonet.h
14000 F:      net/phonet/
14001
14002 PHRAM MTD DRIVER
14003 M:      Joern Engel <joern@lazybastard.org>
14004 L:      linux-mtd@lists.infradead.org
14005 S:      Maintained
14006 F:      drivers/mtd/devices/phram.c
14007
14008 PICOLCD HID DRIVER
14009 M:      Bruno Prémont <bonbons@linux-vserver.org>
14010 L:      linux-input@vger.kernel.org
14011 S:      Maintained
14012 F:      drivers/hid/hid-picolcd*
14013
14014 PIDFD API
14015 M:      Christian Brauner <christian@brauner.io>
14016 L:      linux-kernel@vger.kernel.org
14017 S:      Maintained
14018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14019 F:      samples/pidfd/
14020 F:      tools/testing/selftests/clone3/
14021 F:      tools/testing/selftests/pid_namespace/
14022 F:      tools/testing/selftests/pidfd/
14023 K:      (?i)pidfd
14024 K:      (?i)clone3
14025 K:      \b(clone_args|kernel_clone_args)\b
14026
14027 PIN CONTROL SUBSYSTEM
14028 M:      Linus Walleij <linus.walleij@linaro.org>
14029 L:      linux-gpio@vger.kernel.org
14030 S:      Maintained
14031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
14032 F:      Documentation/devicetree/bindings/pinctrl/
14033 F:      Documentation/driver-api/pinctl.rst
14034 F:      drivers/pinctrl/
14035 F:      include/linux/pinctrl/
14036
14037 PIN CONTROLLER - FREESCALE
14038 M:      Dong Aisheng <aisheng.dong@nxp.com>
14039 M:      Fabio Estevam <festevam@gmail.com>
14040 M:      Shawn Guo <shawnguo@kernel.org>
14041 M:      Stefan Agner <stefan@agner.ch>
14042 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
14043 L:      linux-gpio@vger.kernel.org
14044 S:      Maintained
14045 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
14046 F:      drivers/pinctrl/freescale/
14047
14048 PIN CONTROLLER - INTEL
14049 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
14050 M:      Andy Shevchenko <andy@kernel.org>
14051 S:      Maintained
14052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
14053 F:      drivers/pinctrl/intel/
14054
14055 PIN CONTROLLER - MEDIATEK
14056 M:      Sean Wang <sean.wang@kernel.org>
14057 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
14058 S:      Maintained
14059 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
14060 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
14061 F:      drivers/pinctrl/mediatek/
14062
14063 PIN CONTROLLER - MICROCHIP AT91
14064 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
14065 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14066 L:      linux-gpio@vger.kernel.org
14067 S:      Supported
14068 F:      drivers/gpio/gpio-sama5d2-piobu.c
14069 F:      drivers/pinctrl/pinctrl-at91*
14070
14071 PIN CONTROLLER - QUALCOMM
14072 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14073 L:      linux-arm-msm@vger.kernel.org
14074 S:      Maintained
14075 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14076 F:      drivers/pinctrl/qcom/
14077
14078 PIN CONTROLLER - RENESAS
14079 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14080 L:      linux-renesas-soc@vger.kernel.org
14081 S:      Supported
14082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14083 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
14084 F:      drivers/pinctrl/renesas/
14085
14086 PIN CONTROLLER - SAMSUNG
14087 M:      Tomasz Figa <tomasz.figa@gmail.com>
14088 M:      Krzysztof Kozlowski <krzk@kernel.org>
14089 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14090 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14091 L:      linux-samsung-soc@vger.kernel.org
14092 S:      Maintained
14093 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
14094 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14095 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14096 F:      drivers/pinctrl/samsung/
14097 F:      include/dt-bindings/pinctrl/samsung.h
14098
14099 PIN CONTROLLER - SINGLE
14100 M:      Tony Lindgren <tony@atomide.com>
14101 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
14102 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14103 L:      linux-omap@vger.kernel.org
14104 S:      Maintained
14105 F:      drivers/pinctrl/pinctrl-single.c
14106
14107 PIN CONTROLLER - ST SPEAR
14108 M:      Viresh Kumar <vireshk@kernel.org>
14109 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14110 S:      Maintained
14111 W:      http://www.st.com/spear
14112 F:      drivers/pinctrl/spear/
14113
14114 PISTACHIO SOC SUPPORT
14115 M:      James Hartley <james.hartley@sondrel.com>
14116 L:      linux-mips@vger.kernel.org
14117 S:      Odd Fixes
14118 F:      arch/mips/boot/dts/img/pistachio*
14119 F:      arch/mips/configs/pistachio*_defconfig
14120 F:      arch/mips/pistachio/
14121
14122 PKTCDVD DRIVER
14123 M:      linux-block@vger.kernel.org
14124 S:      Orphan
14125 F:      drivers/block/pktcdvd.c
14126 F:      include/linux/pktcdvd.h
14127 F:      include/uapi/linux/pktcdvd.h
14128
14129 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14130 M:      Tomasz Duszynski <tduszyns@gmail.com>
14131 S:      Maintained
14132 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14133 F:      drivers/iio/chemical/pms7003.c
14134
14135 PLDMFW LIBRARY
14136 M:      Jacob Keller <jacob.e.keller@intel.com>
14137 S:      Maintained
14138 F:      Documentation/driver-api/pldmfw/
14139 F:      include/linux/pldmfw.h
14140 F:      lib/pldmfw/
14141
14142 PLX DMA DRIVER
14143 M:      Logan Gunthorpe <logang@deltatee.com>
14144 S:      Maintained
14145 F:      drivers/dma/plx_dma.c
14146
14147 PM6764TR DRIVER
14148 M:      Charles Hsu     <hsu.yungteng@gmail.com>
14149 L:      linux-hwmon@vger.kernel.org
14150 S:      Maintained
14151 F:      Documentation/hwmon/pm6764tr.rst
14152 F:      drivers/hwmon/pmbus/pm6764tr.c
14153
14154 PM-GRAPH UTILITY
14155 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
14156 L:      linux-pm@vger.kernel.org
14157 S:      Supported
14158 W:      https://01.org/pm-graph
14159 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
14160 T:      git git://github.com/intel/pm-graph
14161 F:      tools/power/pm-graph
14162
14163 PMBUS HARDWARE MONITORING DRIVERS
14164 M:      Guenter Roeck <linux@roeck-us.net>
14165 L:      linux-hwmon@vger.kernel.org
14166 S:      Maintained
14167 W:      http://hwmon.wiki.kernel.org/
14168 W:      http://www.roeck-us.net/linux/drivers/
14169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
14170 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
14171 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
14172 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
14173 F:      Documentation/hwmon/adm1275.rst
14174 F:      Documentation/hwmon/ibm-cffps.rst
14175 F:      Documentation/hwmon/ir35221.rst
14176 F:      Documentation/hwmon/lm25066.rst
14177 F:      Documentation/hwmon/ltc2978.rst
14178 F:      Documentation/hwmon/ltc3815.rst
14179 F:      Documentation/hwmon/max16064.rst
14180 F:      Documentation/hwmon/max20751.rst
14181 F:      Documentation/hwmon/max31785.rst
14182 F:      Documentation/hwmon/max34440.rst
14183 F:      Documentation/hwmon/max8688.rst
14184 F:      Documentation/hwmon/pmbus-core.rst
14185 F:      Documentation/hwmon/pmbus.rst
14186 F:      Documentation/hwmon/tps40422.rst
14187 F:      Documentation/hwmon/ucd9000.rst
14188 F:      Documentation/hwmon/ucd9200.rst
14189 F:      Documentation/hwmon/zl6100.rst
14190 F:      drivers/hwmon/pmbus/
14191 F:      include/linux/pmbus.h
14192
14193 PMC SIERRA MaxRAID DRIVER
14194 L:      linux-scsi@vger.kernel.org
14195 S:      Orphan
14196 W:      http://www.pmc-sierra.com/
14197 F:      drivers/scsi/pmcraid.*
14198
14199 PMC SIERRA PM8001 DRIVER
14200 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14201 L:      linux-scsi@vger.kernel.org
14202 S:      Supported
14203 F:      drivers/scsi/pm8001/
14204
14205 PNI RM3100 IIO DRIVER
14206 M:      Song Qiang <songqiang1304521@gmail.com>
14207 L:      linux-iio@vger.kernel.org
14208 S:      Maintained
14209 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
14210 F:      drivers/iio/magnetometer/rm3100*
14211
14212 PNP SUPPORT
14213 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
14214 L:      linux-acpi@vger.kernel.org
14215 S:      Maintained
14216 F:      drivers/pnp/
14217 F:      include/linux/pnp.h
14218
14219 POSIX CLOCKS and TIMERS
14220 M:      Thomas Gleixner <tglx@linutronix.de>
14221 L:      linux-kernel@vger.kernel.org
14222 S:      Maintained
14223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
14224 F:      fs/timerfd.c
14225 F:      include/linux/time_namespace.h
14226 F:      include/linux/timer*
14227 F:      kernel/time/*timer*
14228 F:      kernel/time/namespace.c
14229
14230 POWER MANAGEMENT CORE
14231 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
14232 L:      linux-pm@vger.kernel.org
14233 S:      Supported
14234 B:      https://bugzilla.kernel.org
14235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14236 F:      drivers/base/power/
14237 F:      drivers/powercap/
14238 F:      include/linux/intel_rapl.h
14239 F:      include/linux/pm.h
14240 F:      include/linux/pm_*
14241 F:      include/linux/powercap.h
14242 F:      kernel/configs/nopm.config
14243
14244 POWER STATE COORDINATION INTERFACE (PSCI)
14245 M:      Mark Rutland <mark.rutland@arm.com>
14246 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14247 L:      linux-arm-kernel@lists.infradead.org
14248 S:      Maintained
14249 F:      drivers/firmware/psci/
14250 F:      include/linux/psci.h
14251 F:      include/uapi/linux/psci.h
14252
14253 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
14254 M:      Sebastian Reichel <sre@kernel.org>
14255 L:      linux-pm@vger.kernel.org
14256 S:      Maintained
14257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
14258 F:      Documentation/ABI/testing/sysfs-class-power
14259 F:      Documentation/devicetree/bindings/power/supply/
14260 F:      drivers/power/supply/
14261 F:      include/linux/power_supply.h
14262
14263 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
14264 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
14265 L:      linuxppc-dev@lists.ozlabs.org
14266 S:      Maintained
14267 F:      drivers/char/powernv-op-panel.c
14268
14269 PPP OVER ATM (RFC 2364)
14270 M:      Mitchell Blank Jr <mitch@sfgoth.com>
14271 S:      Maintained
14272 F:      include/uapi/linux/atmppp.h
14273 F:      net/atm/pppoatm.c
14274
14275 PPP OVER ETHERNET
14276 M:      Michal Ostrowski <mostrows@earthlink.net>
14277 S:      Maintained
14278 F:      drivers/net/ppp/pppoe.c
14279 F:      drivers/net/ppp/pppox.c
14280
14281 PPP OVER L2TP
14282 M:      James Chapman <jchapman@katalix.com>
14283 S:      Maintained
14284 F:      include/linux/if_pppol2tp.h
14285 F:      include/uapi/linux/if_pppol2tp.h
14286 F:      net/l2tp/l2tp_ppp.c
14287
14288 PPP PROTOCOL DRIVERS AND COMPRESSORS
14289 M:      Paul Mackerras <paulus@samba.org>
14290 L:      linux-ppp@vger.kernel.org
14291 S:      Maintained
14292 F:      drivers/net/ppp/ppp_*
14293
14294 PPS SUPPORT
14295 M:      Rodolfo Giometti <giometti@enneenne.com>
14296 L:      linuxpps@ml.enneenne.com (subscribers-only)
14297 S:      Maintained
14298 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
14299 F:      Documentation/ABI/testing/sysfs-pps
14300 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
14301 F:      Documentation/driver-api/pps.rst
14302 F:      drivers/pps/
14303 F:      include/linux/pps*.h
14304 F:      include/uapi/linux/pps.h
14305
14306 PPTP DRIVER
14307 M:      Dmitry Kozlov <xeb@mail.ru>
14308 L:      netdev@vger.kernel.org
14309 S:      Maintained
14310 W:      http://sourceforge.net/projects/accel-pptp
14311 F:      drivers/net/ppp/pptp.c
14312
14313 PRESSURE STALL INFORMATION (PSI)
14314 M:      Johannes Weiner <hannes@cmpxchg.org>
14315 S:      Maintained
14316 F:      include/linux/psi*
14317 F:      kernel/sched/psi.c
14318
14319 PRINTK
14320 M:      Petr Mladek <pmladek@suse.com>
14321 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
14322 R:      Steven Rostedt <rostedt@goodmis.org>
14323 R:      John Ogness <john.ogness@linutronix.de>
14324 S:      Maintained
14325 F:      include/linux/printk.h
14326 F:      kernel/printk/
14327
14328 PRISM54 WIRELESS DRIVER
14329 M:      Luis Chamberlain <mcgrof@kernel.org>
14330 L:      linux-wireless@vger.kernel.org
14331 S:      Obsolete
14332 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14333 F:      drivers/net/wireless/intersil/prism54/
14334
14335 PROC FILESYSTEM
14336 R:      Alexey Dobriyan <adobriyan@gmail.com>
14337 L:      linux-kernel@vger.kernel.org
14338 L:      linux-fsdevel@vger.kernel.org
14339 S:      Maintained
14340 F:      Documentation/filesystems/proc.rst
14341 F:      fs/proc/
14342 F:      include/linux/proc_fs.h
14343 F:      tools/testing/selftests/proc/
14344
14345 PROC SYSCTL
14346 M:      Luis Chamberlain <mcgrof@kernel.org>
14347 M:      Kees Cook <keescook@chromium.org>
14348 M:      Iurii Zaikin <yzaikin@google.com>
14349 L:      linux-kernel@vger.kernel.org
14350 L:      linux-fsdevel@vger.kernel.org
14351 S:      Maintained
14352 F:      fs/proc/proc_sysctl.c
14353 F:      include/linux/sysctl.h
14354 F:      kernel/sysctl-test.c
14355 F:      kernel/sysctl.c
14356 F:      tools/testing/selftests/sysctl/
14357
14358 PS3 NETWORK SUPPORT
14359 M:      Geoff Levand <geoff@infradead.org>
14360 L:      netdev@vger.kernel.org
14361 L:      linuxppc-dev@lists.ozlabs.org
14362 S:      Maintained
14363 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
14364
14365 PS3 PLATFORM SUPPORT
14366 M:      Geoff Levand <geoff@infradead.org>
14367 L:      linuxppc-dev@lists.ozlabs.org
14368 S:      Maintained
14369 F:      arch/powerpc/boot/ps3*
14370 F:      arch/powerpc/include/asm/lv1call.h
14371 F:      arch/powerpc/include/asm/ps3*.h
14372 F:      arch/powerpc/platforms/ps3/
14373 F:      drivers/*/ps3*
14374 F:      drivers/ps3/
14375 F:      drivers/rtc/rtc-ps3.c
14376 F:      drivers/usb/host/*ps3.c
14377 F:      sound/ppc/snd_ps3*
14378
14379 PS3VRAM DRIVER
14380 M:      Jim Paris <jim@jtan.com>
14381 M:      Geoff Levand <geoff@infradead.org>
14382 L:      linuxppc-dev@lists.ozlabs.org
14383 S:      Maintained
14384 F:      drivers/block/ps3vram.c
14385
14386 PSAMPLE PACKET SAMPLING SUPPORT
14387 M:      Yotam Gigi <yotam.gi@gmail.com>
14388 S:      Maintained
14389 F:      include/net/psample.h
14390 F:      include/uapi/linux/psample.h
14391 F:      net/psample
14392
14393 PSTORE FILESYSTEM
14394 M:      Kees Cook <keescook@chromium.org>
14395 M:      Anton Vorontsov <anton@enomsg.org>
14396 M:      Colin Cross <ccross@android.com>
14397 M:      Tony Luck <tony.luck@intel.com>
14398 S:      Maintained
14399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
14400 F:      Documentation/admin-guide/ramoops.rst
14401 F:      Documentation/admin-guide/pstore-blk.rst
14402 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
14403 F:      drivers/acpi/apei/erst.c
14404 F:      drivers/firmware/efi/efi-pstore.c
14405 F:      fs/pstore/
14406 F:      include/linux/pstore*
14407 K:      \b(pstore|ramoops)
14408
14409 PTP HARDWARE CLOCK SUPPORT
14410 M:      Richard Cochran <richardcochran@gmail.com>
14411 L:      netdev@vger.kernel.org
14412 S:      Maintained
14413 W:      http://linuxptp.sourceforge.net/
14414 F:      Documentation/ABI/testing/sysfs-ptp
14415 F:      Documentation/driver-api/ptp.rst
14416 F:      drivers/net/phy/dp83640*
14417 F:      drivers/ptp/*
14418 F:      include/linux/ptp_cl*
14419
14420 PTRACE SUPPORT
14421 M:      Oleg Nesterov <oleg@redhat.com>
14422 S:      Maintained
14423 F:      arch/*/*/ptrace*.c
14424 F:      arch/*/include/asm/ptrace*.h
14425 F:      arch/*/ptrace*.c
14426 F:      include/asm-generic/syscall.h
14427 F:      include/linux/ptrace.h
14428 F:      include/linux/regset.h
14429 F:      include/linux/tracehook.h
14430 F:      include/uapi/linux/ptrace.h
14431 F:      include/uapi/linux/ptrace.h
14432 F:      kernel/ptrace.c
14433
14434 PULSE8-CEC DRIVER
14435 M:      Hans Verkuil <hverkuil@xs4all.nl>
14436 L:      linux-media@vger.kernel.org
14437 S:      Maintained
14438 T:      git git://linuxtv.org/media_tree.git
14439 F:      Documentation/admin-guide/media/pulse8-cec.rst
14440 F:      drivers/media/cec/usb/pulse8/
14441
14442 PVRUSB2 VIDEO4LINUX DRIVER
14443 M:      Mike Isely <isely@pobox.com>
14444 L:      pvrusb2@isely.net       (subscribers-only)
14445 L:      linux-media@vger.kernel.org
14446 S:      Maintained
14447 W:      http://www.isely.net/pvrusb2/
14448 T:      git git://linuxtv.org/media_tree.git
14449 F:      Documentation/driver-api/media/drivers/pvrusb2*
14450 F:      drivers/media/usb/pvrusb2/
14451
14452 PWC WEBCAM DRIVER
14453 M:      Hans Verkuil <hverkuil@xs4all.nl>
14454 L:      linux-media@vger.kernel.org
14455 S:      Odd Fixes
14456 T:      git git://linuxtv.org/media_tree.git
14457 F:      drivers/media/usb/pwc/*
14458 F:      include/trace/events/pwc.h
14459
14460 PWM FAN DRIVER
14461 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14462 L:      linux-hwmon@vger.kernel.org
14463 S:      Supported
14464 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
14465 F:      Documentation/hwmon/pwm-fan.rst
14466 F:      drivers/hwmon/pwm-fan.c
14467
14468 PWM IR Transmitter
14469 M:      Sean Young <sean@mess.org>
14470 L:      linux-media@vger.kernel.org
14471 S:      Maintained
14472 F:      drivers/media/rc/pwm-ir-tx.c
14473
14474 PWM SUBSYSTEM
14475 M:      Thierry Reding <thierry.reding@gmail.com>
14476 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
14477 M:      Lee Jones <lee.jones@linaro.org>
14478 L:      linux-pwm@vger.kernel.org
14479 S:      Maintained
14480 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
14481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
14482 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
14483 F:      Documentation/devicetree/bindings/pwm/
14484 F:      Documentation/driver-api/pwm.rst
14485 F:      drivers/gpio/gpio-mvebu.c
14486 F:      drivers/pwm/
14487 F:      drivers/video/backlight/pwm_bl.c
14488 F:      include/linux/pwm.h
14489 F:      include/linux/pwm_backlight.h
14490 K:      pwm_(config|apply_state|ops)
14491
14492 PXA GPIO DRIVER
14493 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14494 L:      linux-gpio@vger.kernel.org
14495 S:      Maintained
14496 F:      drivers/gpio/gpio-pxa.c
14497
14498 PXA MMCI DRIVER
14499 S:      Orphan
14500
14501 PXA RTC DRIVER
14502 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14503 L:      linux-rtc@vger.kernel.org
14504 S:      Maintained
14505
14506 PXA2xx/PXA3xx SUPPORT
14507 M:      Daniel Mack <daniel@zonque.org>
14508 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
14509 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14510 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14511 S:      Maintained
14512 T:      git git://github.com/hzhuang1/linux.git
14513 T:      git git://github.com/rjarzmik/linux.git
14514 F:      arch/arm/boot/dts/pxa*
14515 F:      arch/arm/mach-pxa/
14516 F:      drivers/dma/pxa*
14517 F:      drivers/pcmcia/pxa2xx*
14518 F:      drivers/pinctrl/pxa/
14519 F:      drivers/spi/spi-pxa2xx*
14520 F:      drivers/usb/gadget/udc/pxa2*
14521 F:      include/sound/pxa2xx-lib.h
14522 F:      sound/arm/pxa*
14523 F:      sound/soc/pxa/
14524
14525 QAT DRIVER
14526 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
14527 L:      qat-linux@intel.com
14528 S:      Supported
14529 F:      drivers/crypto/qat/
14530
14531 QCOM AUDIO (ASoC) DRIVERS
14532 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14533 M:      Banajit Goswami <bgoswami@codeaurora.org>
14534 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14535 S:      Supported
14536 F:      sound/soc/codecs/lpass-va-macro.c
14537 F:      sound/soc/codecs/lpass-wsa-macro.*
14538 F:      sound/soc/codecs/msm8916-wcd-analog.c
14539 F:      sound/soc/codecs/msm8916-wcd-digital.c
14540 F:      sound/soc/codecs/wcd9335.*
14541 F:      sound/soc/codecs/wcd934x.c
14542 F:      sound/soc/codecs/wcd-clsh-v2.*
14543 F:      sound/soc/codecs/wsa881x.c
14544 F:      sound/soc/qcom/
14545
14546 QCOM IPA DRIVER
14547 M:      Alex Elder <elder@kernel.org>
14548 L:      netdev@vger.kernel.org
14549 S:      Supported
14550 F:      drivers/net/ipa/
14551
14552 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
14553 M:      Gabriel Somlo <somlo@cmu.edu>
14554 M:      "Michael S. Tsirkin" <mst@redhat.com>
14555 L:      qemu-devel@nongnu.org
14556 S:      Maintained
14557 F:      drivers/firmware/qemu_fw_cfg.c
14558 F:      include/uapi/linux/qemu_fw_cfg.h
14559
14560 QIB DRIVER
14561 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14562 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14563 L:      linux-rdma@vger.kernel.org
14564 S:      Supported
14565 F:      drivers/infiniband/hw/qib/
14566
14567 QLOGIC QL41xxx FCOE DRIVER
14568 M:      Saurav Kashyap <skashyap@marvell.com>
14569 M:      Javed Hasan <jhasan@marvell.com>
14570 M:      GR-QLogic-Storage-Upstream@marvell.com
14571 L:      linux-scsi@vger.kernel.org
14572 S:      Supported
14573 F:      drivers/scsi/qedf/
14574
14575 QLOGIC QL41xxx ISCSI DRIVER
14576 M:      Nilesh Javali <njavali@marvell.com>
14577 M:      Manish Rangankar <mrangankar@marvell.com>
14578 M:      GR-QLogic-Storage-Upstream@marvell.com
14579 L:      linux-scsi@vger.kernel.org
14580 S:      Supported
14581 F:      drivers/scsi/qedi/
14582
14583 QLOGIC QL4xxx ETHERNET DRIVER
14584 M:      Ariel Elior <aelior@marvell.com>
14585 M:      GR-everest-linux-l2@marvell.com
14586 L:      netdev@vger.kernel.org
14587 S:      Supported
14588 F:      drivers/net/ethernet/qlogic/qed/
14589 F:      drivers/net/ethernet/qlogic/qede/
14590 F:      include/linux/qed/
14591
14592 QLOGIC QL4xxx RDMA DRIVER
14593 M:      Michal Kalderon <mkalderon@marvell.com>
14594 M:      Ariel Elior <aelior@marvell.com>
14595 L:      linux-rdma@vger.kernel.org
14596 S:      Supported
14597 F:      drivers/infiniband/hw/qedr/
14598 F:      include/uapi/rdma/qedr-abi.h
14599
14600 QLOGIC QLA1280 SCSI DRIVER
14601 M:      Michael Reed <mdr@sgi.com>
14602 L:      linux-scsi@vger.kernel.org
14603 S:      Maintained
14604 F:      drivers/scsi/qla1280.[ch]
14605
14606 QLOGIC QLA2XXX FC-SCSI DRIVER
14607 M:      Nilesh Javali <njavali@marvell.com>
14608 M:      GR-QLogic-Storage-Upstream@marvell.com
14609 L:      linux-scsi@vger.kernel.org
14610 S:      Supported
14611 F:      drivers/scsi/qla2xxx/
14612
14613 QLOGIC QLA3XXX NETWORK DRIVER
14614 M:      GR-Linux-NIC-Dev@marvell.com
14615 L:      netdev@vger.kernel.org
14616 S:      Supported
14617 F:      drivers/net/ethernet/qlogic/qla3xxx.*
14618
14619 QLOGIC QLA4XXX iSCSI DRIVER
14620 M:      Nilesh Javali <njavali@marvell.com>
14621 M:      Manish Rangankar <mrangankar@marvell.com>
14622 M:      GR-QLogic-Storage-Upstream@marvell.com
14623 L:      linux-scsi@vger.kernel.org
14624 S:      Supported
14625 F:      drivers/scsi/qla4xxx/
14626
14627 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
14628 M:      Shahed Shaikh <shshaikh@marvell.com>
14629 M:      Manish Chopra <manishc@marvell.com>
14630 M:      GR-Linux-NIC-Dev@marvell.com
14631 L:      netdev@vger.kernel.org
14632 S:      Supported
14633 F:      drivers/net/ethernet/qlogic/qlcnic/
14634
14635 QLOGIC QLGE 10Gb ETHERNET DRIVER
14636 M:      Manish Chopra <manishc@marvell.com>
14637 M:      GR-Linux-NIC-Dev@marvell.com
14638 L:      netdev@vger.kernel.org
14639 S:      Supported
14640 F:      drivers/staging/qlge/
14641
14642 QLOGIC QLGE 10Gb ETHERNET DRIVER
14643 M:      Coiby Xu <coiby.xu@gmail.com>
14644 L:      netdev@vger.kernel.org
14645 S:      Maintained
14646 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
14647
14648 QM1D1B0004 MEDIA DRIVER
14649 M:      Akihiro Tsukada <tskd08@gmail.com>
14650 L:      linux-media@vger.kernel.org
14651 S:      Odd Fixes
14652 F:      drivers/media/tuners/qm1d1b0004*
14653
14654 QM1D1C0042 MEDIA DRIVER
14655 M:      Akihiro Tsukada <tskd08@gmail.com>
14656 L:      linux-media@vger.kernel.org
14657 S:      Odd Fixes
14658 F:      drivers/media/tuners/qm1d1c0042*
14659
14660 QNX4 FILESYSTEM
14661 M:      Anders Larsen <al@alarsen.net>
14662 S:      Maintained
14663 W:      http://www.alarsen.net/linux/qnx4fs/
14664 F:      fs/qnx4/
14665 F:      include/uapi/linux/qnx4_fs.h
14666 F:      include/uapi/linux/qnxtypes.h
14667
14668 QORIQ DPAA2 FSL-MC BUS DRIVER
14669 M:      Stuart Yoder <stuyoder@gmail.com>
14670 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
14671 L:      linux-kernel@vger.kernel.org
14672 S:      Maintained
14673 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
14674 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
14675 F:      drivers/bus/fsl-mc/
14676
14677 QT1010 MEDIA DRIVER
14678 M:      Antti Palosaari <crope@iki.fi>
14679 L:      linux-media@vger.kernel.org
14680 S:      Maintained
14681 W:      https://linuxtv.org
14682 W:      http://palosaari.fi/linux/
14683 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14684 T:      git git://linuxtv.org/anttip/media_tree.git
14685 F:      drivers/media/tuners/qt1010*
14686
14687 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
14688 M:      Kalle Valo <kvalo@codeaurora.org>
14689 L:      ath10k@lists.infradead.org
14690 S:      Supported
14691 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
14692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14693 F:      drivers/net/wireless/ath/ath10k/
14694
14695 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
14696 M:      Kalle Valo <kvalo@codeaurora.org>
14697 L:      ath11k@lists.infradead.org
14698 S:      Supported
14699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14700 F:      drivers/net/wireless/ath/ath11k/
14701
14702 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
14703 M:      ath9k-devel@qca.qualcomm.com
14704 L:      linux-wireless@vger.kernel.org
14705 S:      Supported
14706 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
14707 F:      drivers/net/wireless/ath/ath9k/
14708
14709 QUALCOMM CAMERA SUBSYSTEM DRIVER
14710 M:      Robert Foss <robert.foss@linaro.org>
14711 M:      Todor Tomov <todor.too@gmail.com>
14712 L:      linux-media@vger.kernel.org
14713 S:      Maintained
14714 F:      Documentation/admin-guide/media/qcom_camss.rst
14715 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
14716 F:      drivers/media/platform/qcom/camss/
14717
14718 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
14719 M:      Niklas Cassel <nks@flawful.org>
14720 L:      linux-pm@vger.kernel.org
14721 L:      linux-arm-msm@vger.kernel.org
14722 S:      Maintained
14723 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
14724 F:      drivers/soc/qcom/cpr.c
14725
14726 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
14727 M:      Ilia Lin <ilia.lin@kernel.org>
14728 L:      linux-pm@vger.kernel.org
14729 S:      Maintained
14730 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
14731 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
14732
14733 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
14734 M:      Timur Tabi <timur@kernel.org>
14735 L:      netdev@vger.kernel.org
14736 S:      Maintained
14737 F:      drivers/net/ethernet/qualcomm/emac/
14738
14739 QUALCOMM ETHQOS ETHERNET DRIVER
14740 M:      Vinod Koul <vkoul@kernel.org>
14741 L:      netdev@vger.kernel.org
14742 S:      Maintained
14743 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
14744 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
14745
14746 QUALCOMM GENERIC INTERFACE I2C DRIVER
14747 M:      Akash Asthana <akashast@codeaurora.org>
14748 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
14749 L:      linux-i2c@vger.kernel.org
14750 L:      linux-arm-msm@vger.kernel.org
14751 S:      Supported
14752 F:      drivers/i2c/busses/i2c-qcom-geni.c
14753
14754 QUALCOMM HEXAGON ARCHITECTURE
14755 M:      Brian Cain <bcain@codeaurora.org>
14756 L:      linux-hexagon@vger.kernel.org
14757 S:      Supported
14758 F:      arch/hexagon/
14759
14760 QUALCOMM HIDMA DRIVER
14761 M:      Sinan Kaya <okaya@kernel.org>
14762 L:      linux-arm-kernel@lists.infradead.org
14763 L:      linux-arm-msm@vger.kernel.org
14764 L:      dmaengine@vger.kernel.org
14765 S:      Supported
14766 F:      drivers/dma/qcom/hidma*
14767
14768 QUALCOMM I2C CCI DRIVER
14769 M:      Loic Poulain <loic.poulain@linaro.org>
14770 M:      Robert Foss <robert.foss@linaro.org>
14771 L:      linux-i2c@vger.kernel.org
14772 L:      linux-arm-msm@vger.kernel.org
14773 S:      Maintained
14774 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
14775 F:      drivers/i2c/busses/i2c-qcom-cci.c
14776
14777 QUALCOMM IOMMU
14778 M:      Rob Clark <robdclark@gmail.com>
14779 L:      iommu@lists.linux-foundation.org
14780 L:      linux-arm-msm@vger.kernel.org
14781 S:      Maintained
14782 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
14783
14784 QUALCOMM IPCC MAILBOX DRIVER
14785 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
14786 L:      linux-arm-msm@vger.kernel.org
14787 S:      Supported
14788 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
14789 F:      drivers/mailbox/qcom-ipcc.c
14790 F:      include/dt-bindings/mailbox/qcom-ipcc.h
14791
14792 QUALCOMM IPQ4019 USB PHY DRIVER
14793 M:      Robert Marko <robert.marko@sartura.hr>
14794 M:      Luka Perkov <luka.perkov@sartura.hr>
14795 L:      linux-arm-msm@vger.kernel.org
14796 S:      Maintained
14797 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
14798 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
14799
14800 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
14801 M:      Robert Marko <robert.marko@sartura.hr>
14802 M:      Luka Perkov <luka.perkov@sartura.hr>
14803 L:      linux-arm-msm@vger.kernel.org
14804 S:      Maintained
14805 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
14806 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
14807
14808 QUALCOMM RMNET DRIVER
14809 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
14810 M:      Sean Tranchetti <stranche@codeaurora.org>
14811 L:      netdev@vger.kernel.org
14812 S:      Maintained
14813 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
14814 F:      drivers/net/ethernet/qualcomm/rmnet/
14815 F:      include/linux/if_rmnet.h
14816
14817 QUALCOMM TSENS THERMAL DRIVER
14818 M:      Amit Kucheria <amitk@kernel.org>
14819 L:      linux-pm@vger.kernel.org
14820 L:      linux-arm-msm@vger.kernel.org
14821 S:      Maintained
14822 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14823 F:      drivers/thermal/qcom/
14824
14825 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14826 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
14827 L:      linux-media@vger.kernel.org
14828 L:      linux-arm-msm@vger.kernel.org
14829 S:      Maintained
14830 T:      git git://linuxtv.org/media_tree.git
14831 F:      Documentation/devicetree/bindings/media/*venus*
14832 F:      drivers/media/platform/qcom/venus/
14833
14834 QUALCOMM WCN36XX WIRELESS DRIVER
14835 M:      Kalle Valo <kvalo@codeaurora.org>
14836 L:      wcn36xx@lists.infradead.org
14837 S:      Supported
14838 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
14839 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
14840 F:      drivers/net/wireless/ath/wcn36xx/
14841
14842 QUANTENNA QTNFMAC WIRELESS DRIVER
14843 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
14844 R:      Sergey Matyukevich <geomatsi@gmail.com>
14845 L:      linux-wireless@vger.kernel.org
14846 S:      Maintained
14847 F:      drivers/net/wireless/quantenna
14848
14849 RADEON and AMDGPU DRM DRIVERS
14850 M:      Alex Deucher <alexander.deucher@amd.com>
14851 M:      Christian König <christian.koenig@amd.com>
14852 L:      amd-gfx@lists.freedesktop.org
14853 S:      Supported
14854 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
14855 F:      drivers/gpu/drm/amd/
14856 F:      drivers/gpu/drm/radeon/
14857 F:      include/uapi/drm/amdgpu_drm.h
14858 F:      include/uapi/drm/radeon_drm.h
14859
14860 RADEON FRAMEBUFFER DISPLAY DRIVER
14861 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
14862 L:      linux-fbdev@vger.kernel.org
14863 S:      Maintained
14864 F:      drivers/video/fbdev/aty/radeon*
14865 F:      include/uapi/linux/radeonfb.h
14866
14867 RADIOSHARK RADIO DRIVER
14868 M:      Hans Verkuil <hverkuil@xs4all.nl>
14869 L:      linux-media@vger.kernel.org
14870 S:      Maintained
14871 T:      git git://linuxtv.org/media_tree.git
14872 F:      drivers/media/radio/radio-shark.c
14873
14874 RADIOSHARK2 RADIO DRIVER
14875 M:      Hans Verkuil <hverkuil@xs4all.nl>
14876 L:      linux-media@vger.kernel.org
14877 S:      Maintained
14878 T:      git git://linuxtv.org/media_tree.git
14879 F:      drivers/media/radio/radio-shark2.c
14880 F:      drivers/media/radio/radio-tea5777.c
14881
14882 RADOS BLOCK DEVICE (RBD)
14883 M:      Ilya Dryomov <idryomov@gmail.com>
14884 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
14885 L:      ceph-devel@vger.kernel.org
14886 S:      Supported
14887 W:      http://ceph.com/
14888 T:      git git://github.com/ceph/ceph-client.git
14889 F:      Documentation/ABI/testing/sysfs-bus-rbd
14890 F:      drivers/block/rbd.c
14891 F:      drivers/block/rbd_types.h
14892
14893 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14894 M:      Paul Mackerras <paulus@samba.org>
14895 L:      linux-fbdev@vger.kernel.org
14896 S:      Maintained
14897 F:      drivers/video/fbdev/aty/aty128fb.c
14898
14899 RAINSHADOW-CEC DRIVER
14900 M:      Hans Verkuil <hverkuil@xs4all.nl>
14901 L:      linux-media@vger.kernel.org
14902 S:      Maintained
14903 T:      git git://linuxtv.org/media_tree.git
14904 F:      drivers/media/cec/usb/rainshadow/
14905
14906 RALINK MIPS ARCHITECTURE
14907 M:      John Crispin <john@phrozen.org>
14908 L:      linux-mips@vger.kernel.org
14909 S:      Maintained
14910 F:      arch/mips/ralink
14911
14912 RALINK RT2X00 WIRELESS LAN DRIVER
14913 M:      Stanislaw Gruszka <stf_xl@wp.pl>
14914 M:      Helmut Schaa <helmut.schaa@googlemail.com>
14915 L:      linux-wireless@vger.kernel.org
14916 S:      Maintained
14917 F:      drivers/net/wireless/ralink/rt2x00/
14918
14919 RAMDISK RAM BLOCK DEVICE DRIVER
14920 M:      Jens Axboe <axboe@kernel.dk>
14921 S:      Maintained
14922 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14923 F:      drivers/block/brd.c
14924
14925 RANCHU VIRTUAL BOARD FOR MIPS
14926 M:      Miodrag Dinic <miodrag.dinic@mips.com>
14927 L:      linux-mips@vger.kernel.org
14928 S:      Supported
14929 F:      arch/mips/configs/generic/board-ranchu.config
14930 F:      arch/mips/generic/board-ranchu.c
14931
14932 RANDOM NUMBER DRIVER
14933 M:      "Theodore Ts'o" <tytso@mit.edu>
14934 S:      Maintained
14935 F:      drivers/char/random.c
14936
14937 RAPIDIO SUBSYSTEM
14938 M:      Matt Porter <mporter@kernel.crashing.org>
14939 M:      Alexandre Bounine <alex.bou9@gmail.com>
14940 S:      Maintained
14941 F:      drivers/rapidio/
14942
14943 RAS INFRASTRUCTURE
14944 M:      Tony Luck <tony.luck@intel.com>
14945 M:      Borislav Petkov <bp@alien8.de>
14946 L:      linux-edac@vger.kernel.org
14947 S:      Maintained
14948 F:      Documentation/admin-guide/ras.rst
14949 F:      drivers/ras/
14950 F:      include/linux/ras.h
14951 F:      include/ras/ras_event.h
14952
14953 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14954 L:      linux-wireless@vger.kernel.org
14955 S:      Orphan
14956 F:      drivers/net/wireless/ray*
14957
14958 RC-CORE / LIRC FRAMEWORK
14959 M:      Sean Young <sean@mess.org>
14960 L:      linux-media@vger.kernel.org
14961 S:      Maintained
14962 W:      http://linuxtv.org
14963 T:      git git://linuxtv.org/media_tree.git
14964 F:      Documentation/driver-api/media/rc-core.rst
14965 F:      Documentation/userspace-api/media/rc/
14966 F:      drivers/media/rc/
14967 F:      include/media/rc-map.h
14968 F:      include/media/rc-core.h
14969 F:      include/uapi/linux/lirc.h
14970
14971 RCMM REMOTE CONTROLS DECODER
14972 M:      Patrick Lerda <patrick9876@free.fr>
14973 S:      Maintained
14974 F:      drivers/media/rc/ir-rcmm-decoder.c
14975
14976 RCUTORTURE TEST FRAMEWORK
14977 M:      "Paul E. McKenney" <paulmck@kernel.org>
14978 M:      Josh Triplett <josh@joshtriplett.org>
14979 R:      Steven Rostedt <rostedt@goodmis.org>
14980 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14981 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14982 L:      rcu@vger.kernel.org
14983 S:      Supported
14984 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14985 F:      tools/testing/selftests/rcutorture
14986
14987 RDACM20 Camera Sensor
14988 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
14989 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
14990 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
14991 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
14992 L:      linux-media@vger.kernel.org
14993 S:      Maintained
14994 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
14995 F:      drivers/media/i2c/max9271.c
14996 F:      drivers/media/i2c/max9271.h
14997 F:      drivers/media/i2c/rdacm20.c
14998
14999 RDACM21 Camera Sensor
15000 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15001 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15002 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15003 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15004 L:      linux-media@vger.kernel.org
15005 S:      Maintained
15006 F:      Documentation/devicetree/bindings/media/i2c/rdacm2x-gmsl.yaml
15007 F:      drivers/media/i2c/max9271.c
15008 F:      drivers/media/i2c/max9271.h
15009 F:      drivers/media/i2c/rdacm21.c
15010
15011 RDC R-321X SoC
15012 M:      Florian Fainelli <florian@openwrt.org>
15013 S:      Maintained
15014
15015 RDC R6040 FAST ETHERNET DRIVER
15016 M:      Florian Fainelli <f.fainelli@gmail.com>
15017 L:      netdev@vger.kernel.org
15018 S:      Maintained
15019 F:      drivers/net/ethernet/rdc/r6040.c
15020
15021 RDMAVT - RDMA verbs software
15022 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15023 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15024 L:      linux-rdma@vger.kernel.org
15025 S:      Supported
15026 F:      drivers/infiniband/sw/rdmavt
15027
15028 RDS - RELIABLE DATAGRAM SOCKETS
15029 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
15030 L:      netdev@vger.kernel.org
15031 L:      linux-rdma@vger.kernel.org
15032 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
15033 S:      Supported
15034 W:      https://oss.oracle.com/projects/rds/
15035 F:      Documentation/networking/rds.rst
15036 F:      net/rds/
15037
15038 RDT - RESOURCE ALLOCATION
15039 M:      Fenghua Yu <fenghua.yu@intel.com>
15040 M:      Reinette Chatre <reinette.chatre@intel.com>
15041 L:      linux-kernel@vger.kernel.org
15042 S:      Supported
15043 F:      Documentation/x86/resctrl*
15044 F:      arch/x86/include/asm/resctrl.h
15045 F:      arch/x86/kernel/cpu/resctrl/
15046 F:      tools/testing/selftests/resctrl/
15047
15048 READ-COPY UPDATE (RCU)
15049 M:      "Paul E. McKenney" <paulmck@kernel.org>
15050 M:      Josh Triplett <josh@joshtriplett.org>
15051 R:      Steven Rostedt <rostedt@goodmis.org>
15052 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15053 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15054 R:      Joel Fernandes <joel@joelfernandes.org>
15055 L:      rcu@vger.kernel.org
15056 S:      Supported
15057 W:      http://www.rdrop.com/users/paulmck/RCU/
15058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15059 F:      Documentation/RCU/
15060 F:      include/linux/rcu*
15061 F:      kernel/rcu/
15062 X:      Documentation/RCU/torture.rst
15063 X:      include/linux/srcu*.h
15064 X:      kernel/rcu/srcu*.c
15065
15066 REAL TIME CLOCK (RTC) SUBSYSTEM
15067 M:      Alessandro Zummo <a.zummo@towertech.it>
15068 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
15069 L:      linux-rtc@vger.kernel.org
15070 S:      Maintained
15071 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
15072 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
15073 F:      Documentation/admin-guide/rtc.rst
15074 F:      Documentation/devicetree/bindings/rtc/
15075 F:      drivers/rtc/
15076 F:      include/linux/platform_data/rtc-*
15077 F:      include/linux/rtc.h
15078 F:      include/linux/rtc/
15079 F:      include/uapi/linux/rtc.h
15080 F:      tools/testing/selftests/rtc/
15081
15082 REALTEK AUDIO CODECS
15083 M:      Oder Chiou <oder_chiou@realtek.com>
15084 S:      Maintained
15085 F:      include/sound/rt*.h
15086 F:      sound/soc/codecs/rt*
15087
15088 REALTEK RTL83xx SMI DSA ROUTER CHIPS
15089 M:      Linus Walleij <linus.walleij@linaro.org>
15090 S:      Maintained
15091 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
15092 F:      drivers/net/dsa/realtek-smi*
15093 F:      drivers/net/dsa/rtl83*
15094
15095 REALTEK WIRELESS DRIVER (rtlwifi family)
15096 M:      Ping-Ke Shih <pkshih@realtek.com>
15097 L:      linux-wireless@vger.kernel.org
15098 S:      Maintained
15099 W:      https://wireless.wiki.kernel.org/
15100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15101 F:      drivers/net/wireless/realtek/rtlwifi/
15102
15103 REALTEK WIRELESS DRIVER (rtw88)
15104 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
15105 L:      linux-wireless@vger.kernel.org
15106 S:      Maintained
15107 F:      drivers/net/wireless/realtek/rtw88/
15108
15109 REDPINE WIRELESS DRIVER
15110 M:      Amitkumar Karwar <amitkarwar@gmail.com>
15111 M:      Siva Rebbagondla <siva8118@gmail.com>
15112 L:      linux-wireless@vger.kernel.org
15113 S:      Maintained
15114 F:      drivers/net/wireless/rsi/
15115
15116 REGISTER MAP ABSTRACTION
15117 M:      Mark Brown <broonie@kernel.org>
15118 L:      linux-kernel@vger.kernel.org
15119 S:      Supported
15120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
15121 F:      Documentation/devicetree/bindings/regmap/
15122 F:      drivers/base/regmap/
15123 F:      include/linux/regmap.h
15124
15125 REISERFS FILE SYSTEM
15126 L:      reiserfs-devel@vger.kernel.org
15127 S:      Supported
15128 F:      fs/reiserfs/
15129
15130 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
15131 M:      Ohad Ben-Cohen <ohad@wizery.com>
15132 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15133 L:      linux-remoteproc@vger.kernel.org
15134 S:      Maintained
15135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
15136 F:      Documentation/ABI/testing/sysfs-class-remoteproc
15137 F:      Documentation/devicetree/bindings/remoteproc/
15138 F:      Documentation/staging/remoteproc.rst
15139 F:      drivers/remoteproc/
15140 F:      include/linux/remoteproc.h
15141 F:      include/linux/remoteproc/
15142
15143 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
15144 M:      Ohad Ben-Cohen <ohad@wizery.com>
15145 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15146 L:      linux-remoteproc@vger.kernel.org
15147 S:      Maintained
15148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
15149 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
15150 F:      Documentation/staging/rpmsg.rst
15151 F:      drivers/rpmsg/
15152 F:      include/linux/rpmsg.h
15153 F:      include/linux/rpmsg/
15154 F:      include/uapi/linux/rpmsg.h
15155 F:      samples/rpmsg/
15156
15157 RENESAS CLOCK DRIVERS
15158 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15159 L:      linux-renesas-soc@vger.kernel.org
15160 S:      Supported
15161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
15162 F:      Documentation/devicetree/bindings/clock/renesas,*
15163 F:      drivers/clk/renesas/
15164
15165 RENESAS EMEV2 I2C DRIVER
15166 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15167 S:      Supported
15168 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
15169 F:      drivers/i2c/busses/i2c-emev2.c
15170
15171 RENESAS ETHERNET DRIVERS
15172 R:      Sergei Shtylyov <sergei.shtylyov@gmail.com>
15173 L:      netdev@vger.kernel.org
15174 L:      linux-renesas-soc@vger.kernel.org
15175 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
15176 F:      drivers/net/ethernet/renesas/
15177 F:      include/linux/sh_eth.h
15178
15179 RENESAS R-CAR GYROADC DRIVER
15180 M:      Marek Vasut <marek.vasut@gmail.com>
15181 L:      linux-iio@vger.kernel.org
15182 S:      Supported
15183 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
15184 F:      drivers/iio/adc/rcar-gyroadc.c
15185
15186 RENESAS R-CAR I2C DRIVERS
15187 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15188 S:      Supported
15189 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
15190 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
15191 F:      drivers/i2c/busses/i2c-rcar.c
15192 F:      drivers/i2c/busses/i2c-sh_mobile.c
15193
15194 RENESAS R-CAR THERMAL DRIVERS
15195 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
15196 L:      linux-renesas-soc@vger.kernel.org
15197 S:      Supported
15198 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
15199 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
15200 F:      drivers/thermal/rcar_gen3_thermal.c
15201 F:      drivers/thermal/rcar_thermal.c
15202
15203 RENESAS RIIC DRIVER
15204 M:      Chris Brandt <chris.brandt@renesas.com>
15205 S:      Supported
15206 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
15207 F:      drivers/i2c/busses/i2c-riic.c
15208
15209 RENESAS USB PHY DRIVER
15210 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15211 L:      linux-renesas-soc@vger.kernel.org
15212 S:      Maintained
15213 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
15214
15215 RESET CONTROLLER FRAMEWORK
15216 M:      Philipp Zabel <p.zabel@pengutronix.de>
15217 S:      Maintained
15218 T:      git git://git.pengutronix.de/git/pza/linux
15219 F:      Documentation/devicetree/bindings/reset/
15220 F:      Documentation/driver-api/reset.rst
15221 F:      drivers/reset/
15222 F:      include/dt-bindings/reset/
15223 F:      include/linux/reset-controller.h
15224 F:      include/linux/reset.h
15225 F:      include/linux/reset/
15226 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
15227
15228 RESTARTABLE SEQUENCES SUPPORT
15229 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15230 M:      Peter Zijlstra <peterz@infradead.org>
15231 M:      "Paul E. McKenney" <paulmck@kernel.org>
15232 M:      Boqun Feng <boqun.feng@gmail.com>
15233 L:      linux-kernel@vger.kernel.org
15234 S:      Supported
15235 F:      include/trace/events/rseq.h
15236 F:      include/uapi/linux/rseq.h
15237 F:      kernel/rseq.c
15238 F:      tools/testing/selftests/rseq/
15239
15240 RFKILL
15241 M:      Johannes Berg <johannes@sipsolutions.net>
15242 L:      linux-wireless@vger.kernel.org
15243 S:      Maintained
15244 W:      https://wireless.wiki.kernel.org/
15245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
15246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
15247 F:      Documentation/ABI/stable/sysfs-class-rfkill
15248 F:      Documentation/driver-api/rfkill.rst
15249 F:      include/linux/rfkill.h
15250 F:      include/uapi/linux/rfkill.h
15251 F:      net/rfkill/
15252
15253 RHASHTABLE
15254 M:      Thomas Graf <tgraf@suug.ch>
15255 M:      Herbert Xu <herbert@gondor.apana.org.au>
15256 L:      netdev@vger.kernel.org
15257 S:      Maintained
15258 F:      include/linux/rhashtable-types.h
15259 F:      include/linux/rhashtable.h
15260 F:      lib/rhashtable.c
15261 F:      lib/test_rhashtable.c
15262
15263 RICOH R5C592 MEMORYSTICK DRIVER
15264 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15265 S:      Maintained
15266 F:      drivers/memstick/host/r592.*
15267
15268 RICOH SMARTMEDIA/XD DRIVER
15269 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15270 S:      Maintained
15271 F:      drivers/mtd/nand/raw/r852.c
15272 F:      drivers/mtd/nand/raw/r852.h
15273
15274 RISC-V ARCHITECTURE
15275 M:      Paul Walmsley <paul.walmsley@sifive.com>
15276 M:      Palmer Dabbelt <palmer@dabbelt.com>
15277 M:      Albert Ou <aou@eecs.berkeley.edu>
15278 L:      linux-riscv@lists.infradead.org
15279 S:      Supported
15280 P:      Documentation/riscv/patch-acceptance.rst
15281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
15282 F:      arch/riscv/
15283 N:      riscv
15284 K:      riscv
15285
15286 RNBD BLOCK DRIVERS
15287 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
15288 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15289 L:      linux-block@vger.kernel.org
15290 S:      Maintained
15291 F:      drivers/block/rnbd/
15292
15293 ROCCAT DRIVERS
15294 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
15295 S:      Maintained
15296 W:      http://sourceforge.net/projects/roccat/
15297 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
15298 F:      drivers/hid/hid-roccat*
15299 F:      include/linux/hid-roccat*
15300
15301 ROCKCHIP ISP V1 DRIVER
15302 M:      Helen Koike <helen.koike@collabora.com>
15303 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
15304 L:      linux-media@vger.kernel.org
15305 L:      linux-rockchip@lists.infradead.org
15306 S:      Maintained
15307 F:      Documentation/admin-guide/media/rkisp1.rst
15308 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
15309 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
15310 F:      drivers/media/platform/rockchip/rkisp1
15311 F:      include/uapi/linux/rkisp1-config.h
15312
15313 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
15314 M:      Jacob Chen <jacob-chen@iotwrt.com>
15315 M:      Ezequiel Garcia <ezequiel@collabora.com>
15316 L:      linux-media@vger.kernel.org
15317 L:      linux-rockchip@lists.infradead.org
15318 S:      Maintained
15319 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
15320 F:      drivers/media/platform/rockchip/rga/
15321
15322 ROCKCHIP VIDEO DECODER DRIVER
15323 M:      Ezequiel Garcia <ezequiel@collabora.com>
15324 L:      linux-media@vger.kernel.org
15325 L:      linux-rockchip@lists.infradead.org
15326 S:      Maintained
15327 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
15328 F:      drivers/staging/media/rkvdec/
15329
15330 ROCKER DRIVER
15331 M:      Jiri Pirko <jiri@resnulli.us>
15332 L:      netdev@vger.kernel.org
15333 S:      Supported
15334 F:      drivers/net/ethernet/rocker/
15335
15336 ROCKETPORT DRIVER
15337 S:      Maintained
15338 W:      http://www.comtrol.com
15339 F:      Documentation/driver-api/serial/rocket.rst
15340 F:      drivers/tty/rocket*
15341
15342 ROCKETPORT EXPRESS/INFINITY DRIVER
15343 M:      Kevin Cernekee <cernekee@gmail.com>
15344 L:      linux-serial@vger.kernel.org
15345 S:      Odd Fixes
15346 F:      drivers/tty/serial/rp2.*
15347
15348 ROHM BD99954 CHARGER IC
15349 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15350 L:      linux-power@fi.rohmeurope.com
15351 S:      Supported
15352 F:      drivers/power/supply/bd99954-charger.c
15353 F:      drivers/power/supply/bd99954-charger.h
15354
15355 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
15356 M:      Tomasz Duszynski <tduszyns@gmail.com>
15357 S:      Maintained
15358 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
15359 F:      drivers/iio/light/bh1750.c
15360
15361 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
15362 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15363 L:      linux-kernel@vger.kernel.org
15364 L:      linux-renesas-soc@vger.kernel.org
15365 S:      Supported
15366 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
15367 F:      drivers/gpio/gpio-bd9571mwv.c
15368 F:      drivers/mfd/bd9571mwv.c
15369 F:      drivers/regulator/bd9571mwv-regulator.c
15370 F:      include/linux/mfd/bd9571mwv.h
15371
15372 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
15373 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15374 L:      linux-power@fi.rohmeurope.com
15375 S:      Supported
15376 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
15377 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
15378 F:      drivers/clk/clk-bd718x7.c
15379 F:      drivers/gpio/gpio-bd70528.c
15380 F:      drivers/gpio/gpio-bd71828.c
15381 F:      drivers/mfd/rohm-bd70528.c
15382 F:      drivers/mfd/rohm-bd71828.c
15383 F:      drivers/mfd/rohm-bd718x7.c
15384 F:      drivers/power/supply/bd70528-charger.c
15385 F:      drivers/regulator/bd70528-regulator.c
15386 F:      drivers/regulator/bd71828-regulator.c
15387 F:      drivers/regulator/bd718x7-regulator.c
15388 F:      drivers/regulator/rohm-regulator.c
15389 F:      drivers/rtc/rtc-bd70528.c
15390 F:      drivers/watchdog/bd70528_wdt.c
15391 F:      include/linux/mfd/rohm-bd70528.h
15392 F:      include/linux/mfd/rohm-bd71828.h
15393 F:      include/linux/mfd/rohm-bd718x7.h
15394 F:      include/linux/mfd/rohm-generic.h
15395 F:      include/linux/mfd/rohm-shared.h
15396
15397 ROSE NETWORK LAYER
15398 M:      Ralf Baechle <ralf@linux-mips.org>
15399 L:      linux-hams@vger.kernel.org
15400 S:      Maintained
15401 W:      http://www.linux-ax25.org/
15402 F:      include/net/rose.h
15403 F:      include/uapi/linux/rose.h
15404 F:      net/rose/
15405
15406 ROTATION DRIVER FOR ALLWINNER A83T
15407 M:      Jernej Skrabec <jernej.skrabec@siol.net>
15408 L:      linux-media@vger.kernel.org
15409 S:      Maintained
15410 T:      git git://linuxtv.org/media_tree.git
15411 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
15412 F:      drivers/media/platform/sunxi/sun8i-rotate/
15413
15414 RTL2830 MEDIA DRIVER
15415 M:      Antti Palosaari <crope@iki.fi>
15416 L:      linux-media@vger.kernel.org
15417 S:      Maintained
15418 W:      https://linuxtv.org
15419 W:      http://palosaari.fi/linux/
15420 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15421 T:      git git://linuxtv.org/anttip/media_tree.git
15422 F:      drivers/media/dvb-frontends/rtl2830*
15423
15424 RTL2832 MEDIA DRIVER
15425 M:      Antti Palosaari <crope@iki.fi>
15426 L:      linux-media@vger.kernel.org
15427 S:      Maintained
15428 W:      https://linuxtv.org
15429 W:      http://palosaari.fi/linux/
15430 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15431 T:      git git://linuxtv.org/anttip/media_tree.git
15432 F:      drivers/media/dvb-frontends/rtl2832*
15433
15434 RTL2832_SDR MEDIA DRIVER
15435 M:      Antti Palosaari <crope@iki.fi>
15436 L:      linux-media@vger.kernel.org
15437 S:      Maintained
15438 W:      https://linuxtv.org
15439 W:      http://palosaari.fi/linux/
15440 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15441 T:      git git://linuxtv.org/anttip/media_tree.git
15442 F:      drivers/media/dvb-frontends/rtl2832_sdr*
15443
15444 RTL8180 WIRELESS DRIVER
15445 L:      linux-wireless@vger.kernel.org
15446 S:      Orphan
15447 W:      https://wireless.wiki.kernel.org/
15448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15449 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
15450
15451 RTL8187 WIRELESS DRIVER
15452 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
15453 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
15454 M:      Larry Finger <Larry.Finger@lwfinger.net>
15455 L:      linux-wireless@vger.kernel.org
15456 S:      Maintained
15457 W:      https://wireless.wiki.kernel.org/
15458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15459 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
15460
15461 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
15462 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
15463 L:      linux-wireless@vger.kernel.org
15464 S:      Maintained
15465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
15466 F:      drivers/net/wireless/realtek/rtl8xxxu/
15467
15468 RTRS TRANSPORT DRIVERS
15469 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
15470 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15471 L:      linux-rdma@vger.kernel.org
15472 S:      Maintained
15473 F:      drivers/infiniband/ulp/rtrs/
15474
15475 RXRPC SOCKETS (AF_RXRPC)
15476 M:      David Howells <dhowells@redhat.com>
15477 L:      linux-afs@lists.infradead.org
15478 S:      Supported
15479 W:      https://www.infradead.org/~dhowells/kafs/
15480 F:      Documentation/networking/rxrpc.rst
15481 F:      include/keys/rxrpc-type.h
15482 F:      include/net/af_rxrpc.h
15483 F:      include/trace/events/rxrpc.h
15484 F:      include/uapi/linux/rxrpc.h
15485 F:      net/rxrpc/
15486
15487 S3 SAVAGE FRAMEBUFFER DRIVER
15488 M:      Antonino Daplas <adaplas@gmail.com>
15489 L:      linux-fbdev@vger.kernel.org
15490 S:      Maintained
15491 F:      drivers/video/fbdev/savage/
15492
15493 S390
15494 M:      Heiko Carstens <hca@linux.ibm.com>
15495 M:      Vasily Gorbik <gor@linux.ibm.com>
15496 M:      Christian Borntraeger <borntraeger@de.ibm.com>
15497 L:      linux-s390@vger.kernel.org
15498 S:      Supported
15499 W:      http://www.ibm.com/developerworks/linux/linux390/
15500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
15501 F:      Documentation/driver-api/s390-drivers.rst
15502 F:      Documentation/s390/
15503 F:      arch/s390/
15504 F:      drivers/s390/
15505
15506 S390 COMMON I/O LAYER
15507 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
15508 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
15509 L:      linux-s390@vger.kernel.org
15510 S:      Supported
15511 W:      http://www.ibm.com/developerworks/linux/linux390/
15512 F:      drivers/s390/cio/
15513
15514 S390 DASD DRIVER
15515 M:      Stefan Haberland <sth@linux.ibm.com>
15516 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
15517 L:      linux-s390@vger.kernel.org
15518 S:      Supported
15519 W:      http://www.ibm.com/developerworks/linux/linux390/
15520 F:      block/partitions/ibm.c
15521 F:      drivers/s390/block/dasd*
15522 F:      include/linux/dasd_mod.h
15523
15524 S390 IOMMU (PCI)
15525 M:      Matthew Rosato <mjrosato@linux.ibm.com>
15526 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
15527 L:      linux-s390@vger.kernel.org
15528 S:      Supported
15529 W:      http://www.ibm.com/developerworks/linux/linux390/
15530 F:      drivers/iommu/s390-iommu.c
15531
15532 S390 IUCV NETWORK LAYER
15533 M:      Julian Wiedmann <jwi@linux.ibm.com>
15534 M:      Karsten Graul <kgraul@linux.ibm.com>
15535 L:      linux-s390@vger.kernel.org
15536 S:      Supported
15537 W:      http://www.ibm.com/developerworks/linux/linux390/
15538 F:      drivers/s390/net/*iucv*
15539 F:      include/net/iucv/
15540 F:      net/iucv/
15541
15542 S390 NETWORK DRIVERS
15543 M:      Julian Wiedmann <jwi@linux.ibm.com>
15544 M:      Karsten Graul <kgraul@linux.ibm.com>
15545 L:      linux-s390@vger.kernel.org
15546 S:      Supported
15547 W:      http://www.ibm.com/developerworks/linux/linux390/
15548 F:      drivers/s390/net/
15549
15550 S390 PCI SUBSYSTEM
15551 M:      Niklas Schnelle <schnelle@linux.ibm.com>
15552 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
15553 L:      linux-s390@vger.kernel.org
15554 S:      Supported
15555 W:      http://www.ibm.com/developerworks/linux/linux390/
15556 F:      arch/s390/pci/
15557 F:      drivers/pci/hotplug/s390_pci_hpc.c
15558 F:      Documentation/s390/pci.rst
15559
15560 S390 VFIO AP DRIVER
15561 M:      Tony Krowiak <akrowiak@linux.ibm.com>
15562 M:      Pierre Morel <pmorel@linux.ibm.com>
15563 M:      Halil Pasic <pasic@linux.ibm.com>
15564 L:      linux-s390@vger.kernel.org
15565 S:      Supported
15566 W:      http://www.ibm.com/developerworks/linux/linux390/
15567 F:      Documentation/s390/vfio-ap.rst
15568 F:      drivers/s390/crypto/vfio_ap_drv.c
15569 F:      drivers/s390/crypto/vfio_ap_ops.c
15570 F:      drivers/s390/crypto/vfio_ap_private.h
15571
15572 S390 VFIO-CCW DRIVER
15573 M:      Cornelia Huck <cohuck@redhat.com>
15574 M:      Eric Farman <farman@linux.ibm.com>
15575 R:      Halil Pasic <pasic@linux.ibm.com>
15576 L:      linux-s390@vger.kernel.org
15577 L:      kvm@vger.kernel.org
15578 S:      Supported
15579 F:      Documentation/s390/vfio-ccw.rst
15580 F:      drivers/s390/cio/vfio_ccw*
15581 F:      include/uapi/linux/vfio_ccw.h
15582
15583 S390 VFIO-PCI DRIVER
15584 M:      Matthew Rosato <mjrosato@linux.ibm.com>
15585 L:      linux-s390@vger.kernel.org
15586 L:      kvm@vger.kernel.org
15587 S:      Supported
15588 F:      drivers/vfio/pci/vfio_pci_zdev.c
15589 F:      include/uapi/linux/vfio_zdev.h
15590
15591 S390 ZCRYPT DRIVER
15592 M:      Harald Freudenberger <freude@linux.ibm.com>
15593 L:      linux-s390@vger.kernel.org
15594 S:      Supported
15595 W:      http://www.ibm.com/developerworks/linux/linux390/
15596 F:      drivers/s390/crypto/
15597
15598 S390 ZFCP DRIVER
15599 M:      Steffen Maier <maier@linux.ibm.com>
15600 M:      Benjamin Block <bblock@linux.ibm.com>
15601 L:      linux-s390@vger.kernel.org
15602 S:      Supported
15603 W:      http://www.ibm.com/developerworks/linux/linux390/
15604 F:      drivers/s390/scsi/zfcp_*
15605
15606 S3C24XX SD/MMC Driver
15607 M:      Ben Dooks <ben-linux@fluff.org>
15608 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15609 S:      Supported
15610 F:      drivers/mmc/host/s3cmci.*
15611
15612 SAA6588 RDS RECEIVER DRIVER
15613 M:      Hans Verkuil <hverkuil@xs4all.nl>
15614 L:      linux-media@vger.kernel.org
15615 S:      Odd Fixes
15616 W:      https://linuxtv.org
15617 T:      git git://linuxtv.org/media_tree.git
15618 F:      drivers/media/i2c/saa6588*
15619
15620 SAA7134 VIDEO4LINUX DRIVER
15621 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15622 L:      linux-media@vger.kernel.org
15623 S:      Odd fixes
15624 W:      https://linuxtv.org
15625 T:      git git://linuxtv.org/media_tree.git
15626 F:      Documentation/driver-api/media/drivers/saa7134*
15627 F:      drivers/media/pci/saa7134/
15628
15629 SAA7146 VIDEO4LINUX-2 DRIVER
15630 M:      Hans Verkuil <hverkuil@xs4all.nl>
15631 L:      linux-media@vger.kernel.org
15632 S:      Maintained
15633 T:      git git://linuxtv.org/media_tree.git
15634 F:      drivers/media/common/saa7146/
15635 F:      drivers/media/pci/saa7146/
15636 F:      include/media/drv-intf/saa7146*
15637
15638 SAFESETID SECURITY MODULE
15639 M:      Micah Morton <mortonm@chromium.org>
15640 S:      Supported
15641 F:      Documentation/admin-guide/LSM/SafeSetID.rst
15642 F:      security/safesetid/
15643
15644 SAMSUNG AUDIO (ASoC) DRIVERS
15645 M:      Krzysztof Kozlowski <krzk@kernel.org>
15646 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15647 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15648 S:      Supported
15649 F:      Documentation/devicetree/bindings/sound/samsung*
15650 F:      sound/soc/samsung/
15651
15652 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
15653 M:      Krzysztof Kozlowski <krzk@kernel.org>
15654 L:      linux-crypto@vger.kernel.org
15655 L:      linux-samsung-soc@vger.kernel.org
15656 S:      Maintained
15657 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
15658 F:      drivers/crypto/exynos-rng.c
15659
15660 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
15661 M:      Łukasz Stelmach <l.stelmach@samsung.com>
15662 L:      linux-samsung-soc@vger.kernel.org
15663 S:      Maintained
15664 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
15665 F:      drivers/char/hw_random/exynos-trng.c
15666
15667 SAMSUNG FRAMEBUFFER DRIVER
15668 M:      Jingoo Han <jingoohan1@gmail.com>
15669 L:      linux-fbdev@vger.kernel.org
15670 S:      Maintained
15671 F:      drivers/video/fbdev/s3c-fb.c
15672
15673 SAMSUNG INTERCONNECT DRIVERS
15674 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15675 M:      Artur Świgoń <a.swigon@samsung.com>
15676 L:      linux-pm@vger.kernel.org
15677 L:      linux-samsung-soc@vger.kernel.org
15678 S:      Supported
15679 F:      drivers/interconnect/samsung/
15680
15681 SAMSUNG LAPTOP DRIVER
15682 M:      Corentin Chary <corentin.chary@gmail.com>
15683 L:      platform-driver-x86@vger.kernel.org
15684 S:      Maintained
15685 F:      drivers/platform/x86/samsung-laptop.c
15686
15687 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
15688 M:      Krzysztof Kozlowski <krzk@kernel.org>
15689 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15690 L:      linux-kernel@vger.kernel.org
15691 L:      linux-samsung-soc@vger.kernel.org
15692 S:      Supported
15693 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
15694 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
15695 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
15696 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
15697 F:      drivers/clk/clk-s2mps11.c
15698 F:      drivers/mfd/sec*.c
15699 F:      drivers/regulator/s2m*.c
15700 F:      drivers/regulator/s5m*.c
15701 F:      drivers/rtc/rtc-s5m.c
15702 F:      include/linux/mfd/samsung/
15703
15704 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
15705 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
15706 L:      linux-media@vger.kernel.org
15707 L:      linux-samsung-soc@vger.kernel.org
15708 S:      Maintained
15709 F:      drivers/media/platform/s3c-camif/
15710 F:      include/media/drv-intf/s3c_camif.h
15711
15712 SAMSUNG S3FWRN5 NFC DRIVER
15713 M:      Krzysztof Kozlowski <krzk@kernel.org>
15714 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
15715 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
15716 S:      Maintained
15717 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
15718 F:      drivers/nfc/s3fwrn5
15719
15720 SAMSUNG S5C73M3 CAMERA DRIVER
15721 M:      Andrzej Hajda <a.hajda@samsung.com>
15722 L:      linux-media@vger.kernel.org
15723 S:      Supported
15724 F:      drivers/media/i2c/s5c73m3/*
15725
15726 SAMSUNG S5K5BAF CAMERA DRIVER
15727 M:      Andrzej Hajda <a.hajda@samsung.com>
15728 L:      linux-media@vger.kernel.org
15729 S:      Supported
15730 F:      drivers/media/i2c/s5k5baf.c
15731
15732 SAMSUNG S5P Security SubSystem (SSS) DRIVER
15733 M:      Krzysztof Kozlowski <krzk@kernel.org>
15734 M:      Vladimir Zapolskiy <vz@mleia.com>
15735 L:      linux-crypto@vger.kernel.org
15736 L:      linux-samsung-soc@vger.kernel.org
15737 S:      Maintained
15738 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
15739 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
15740 F:      drivers/crypto/s5p-sss.c
15741
15742 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
15743 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15744 L:      linux-media@vger.kernel.org
15745 S:      Supported
15746 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
15747 F:      drivers/media/platform/exynos4-is/
15748
15749 SAMSUNG SOC CLOCK DRIVERS
15750 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15751 M:      Tomasz Figa <tomasz.figa@gmail.com>
15752 M:      Chanwoo Choi <cw00.choi@samsung.com>
15753 L:      linux-samsung-soc@vger.kernel.org
15754 S:      Supported
15755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
15756 F:      Documentation/devicetree/bindings/clock/exynos*.txt
15757 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
15758 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
15759 F:      drivers/clk/samsung/
15760 F:      include/dt-bindings/clock/exynos*.h
15761 F:      include/linux/clk/samsung.h
15762 F:      include/linux/platform_data/clk-s3c2410.h
15763
15764 SAMSUNG SPI DRIVERS
15765 M:      Krzysztof Kozlowski <krzk@kernel.org>
15766 M:      Andi Shyti <andi@etezian.org>
15767 L:      linux-spi@vger.kernel.org
15768 L:      linux-samsung-soc@vger.kernel.org
15769 S:      Maintained
15770 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
15771 F:      drivers/spi/spi-s3c*
15772 F:      include/linux/platform_data/spi-s3c64xx.h
15773 F:      include/linux/spi/s3c24xx-fiq.h
15774
15775 SAMSUNG SXGBE DRIVERS
15776 M:      Byungho An <bh74.an@samsung.com>
15777 L:      netdev@vger.kernel.org
15778 S:      Supported
15779 F:      drivers/net/ethernet/samsung/sxgbe/
15780
15781 SAMSUNG THERMAL DRIVER
15782 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15783 L:      linux-pm@vger.kernel.org
15784 L:      linux-samsung-soc@vger.kernel.org
15785 S:      Supported
15786 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
15787 F:      drivers/thermal/samsung/
15788
15789 SAMSUNG USB2 PHY DRIVER
15790 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15791 L:      linux-kernel@vger.kernel.org
15792 S:      Supported
15793 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
15794 F:      Documentation/driver-api/phy/samsung-usb2.rst
15795 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
15796 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
15797 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
15798 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
15799 F:      drivers/phy/samsung/phy-samsung-usb2.c
15800 F:      drivers/phy/samsung/phy-samsung-usb2.h
15801
15802 SC1200 WDT DRIVER
15803 M:      Zwane Mwaikambo <zwanem@gmail.com>
15804 S:      Maintained
15805 F:      drivers/watchdog/sc1200wdt.c
15806
15807 SCHEDULER
15808 M:      Ingo Molnar <mingo@redhat.com>
15809 M:      Peter Zijlstra <peterz@infradead.org>
15810 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
15811 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
15812 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
15813 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
15814 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
15815 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
15816 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
15817 L:      linux-kernel@vger.kernel.org
15818 S:      Maintained
15819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
15820 F:      include/linux/preempt.h
15821 F:      include/linux/sched.h
15822 F:      include/linux/wait.h
15823 F:      include/uapi/linux/sched.h
15824 F:      kernel/sched/
15825
15826 SCR24X CHIP CARD INTERFACE DRIVER
15827 M:      Lubomir Rintel <lkundrak@v3.sk>
15828 S:      Supported
15829 F:      drivers/char/pcmcia/scr24x_cs.c
15830
15831 SCSI CDROM DRIVER
15832 M:      Jens Axboe <axboe@kernel.dk>
15833 L:      linux-scsi@vger.kernel.org
15834 S:      Maintained
15835 W:      http://www.kernel.dk
15836 F:      drivers/scsi/sr*
15837
15838 SCSI RDMA PROTOCOL (SRP) INITIATOR
15839 M:      Bart Van Assche <bvanassche@acm.org>
15840 L:      linux-rdma@vger.kernel.org
15841 S:      Supported
15842 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15843 F:      drivers/infiniband/ulp/srp/
15844 F:      include/scsi/srp.h
15845
15846 SCSI RDMA PROTOCOL (SRP) TARGET
15847 M:      Bart Van Assche <bvanassche@acm.org>
15848 L:      linux-rdma@vger.kernel.org
15849 L:      target-devel@vger.kernel.org
15850 S:      Supported
15851 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15852 F:      drivers/infiniband/ulp/srpt/
15853
15854 SCSI SG DRIVER
15855 M:      Doug Gilbert <dgilbert@interlog.com>
15856 L:      linux-scsi@vger.kernel.org
15857 S:      Maintained
15858 W:      http://sg.danny.cz/sg
15859 F:      Documentation/scsi/scsi-generic.rst
15860 F:      drivers/scsi/sg.c
15861 F:      include/scsi/sg.h
15862
15863 SCSI SUBSYSTEM
15864 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
15865 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15866 L:      linux-scsi@vger.kernel.org
15867 S:      Maintained
15868 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
15869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
15870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15871 F:      Documentation/devicetree/bindings/scsi/
15872 F:      drivers/scsi/
15873 F:      include/scsi/
15874
15875 SCSI TAPE DRIVER
15876 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
15877 L:      linux-scsi@vger.kernel.org
15878 S:      Maintained
15879 F:      Documentation/scsi/st.rst
15880 F:      drivers/scsi/st.*
15881 F:      drivers/scsi/st_*.h
15882
15883 SCSI TARGET CORE USER DRIVER
15884 M:      Bodo Stroesser <bostroesser@gmail.com>
15885 L:      linux-scsi@vger.kernel.org
15886 L:      target-devel@vger.kernel.org
15887 S:      Supported
15888 F:      Documentation/target/tcmu-design.rst
15889 F:      drivers/target/target_core_user.c
15890 F:      include/uapi/linux/target_core_user.h
15891
15892 SCSI TARGET SUBSYSTEM
15893 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15894 L:      linux-scsi@vger.kernel.org
15895 L:      target-devel@vger.kernel.org
15896 S:      Supported
15897 W:      http://www.linux-iscsi.org
15898 Q:      https://patchwork.kernel.org/project/target-devel/list/
15899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15900 F:      Documentation/target/
15901 F:      drivers/target/
15902 F:      include/target/
15903
15904 SCTP PROTOCOL
15905 M:      Vlad Yasevich <vyasevich@gmail.com>
15906 M:      Neil Horman <nhorman@tuxdriver.com>
15907 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
15908 L:      linux-sctp@vger.kernel.org
15909 S:      Maintained
15910 W:      http://lksctp.sourceforge.net
15911 F:      Documentation/networking/sctp.rst
15912 F:      include/linux/sctp.h
15913 F:      include/net/sctp/
15914 F:      include/uapi/linux/sctp.h
15915 F:      net/sctp/
15916
15917 SCx200 CPU SUPPORT
15918 M:      Jim Cromie <jim.cromie@gmail.com>
15919 S:      Odd Fixes
15920 F:      Documentation/i2c/busses/scx200_acb.rst
15921 F:      arch/x86/platform/scx200/
15922 F:      drivers/i2c/busses/scx200*
15923 F:      drivers/mtd/maps/scx200_docflash.c
15924 F:      drivers/watchdog/scx200_wdt.c
15925 F:      include/linux/scx200.h
15926
15927 SCx200 GPIO DRIVER
15928 M:      Jim Cromie <jim.cromie@gmail.com>
15929 S:      Maintained
15930 F:      drivers/char/scx200_gpio.c
15931 F:      include/linux/scx200_gpio.h
15932
15933 SCx200 HRT CLOCKSOURCE DRIVER
15934 M:      Jim Cromie <jim.cromie@gmail.com>
15935 S:      Maintained
15936 F:      drivers/clocksource/scx200_hrt.c
15937
15938 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15939 M:      Sascha Sommer <saschasommer@freenet.de>
15940 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
15941 S:      Maintained
15942 F:      drivers/mmc/host/sdricoh_cs.c
15943
15944 SECO BOARDS CEC DRIVER
15945 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
15946 S:      Maintained
15947 F:      drivers/media/cec/platform/seco/seco-cec.c
15948 F:      drivers/media/cec/platform/seco/seco-cec.h
15949
15950 SECURE COMPUTING
15951 M:      Kees Cook <keescook@chromium.org>
15952 R:      Andy Lutomirski <luto@amacapital.net>
15953 R:      Will Drewry <wad@chromium.org>
15954 S:      Supported
15955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15956 F:      Documentation/userspace-api/seccomp_filter.rst
15957 F:      include/linux/seccomp.h
15958 F:      include/uapi/linux/seccomp.h
15959 F:      kernel/seccomp.c
15960 F:      tools/testing/selftests/kselftest_harness.h
15961 F:      tools/testing/selftests/seccomp/*
15962 K:      \bsecure_computing
15963 K:      \bTIF_SECCOMP\b
15964
15965 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15966 M:      Al Cooper <alcooperx@gmail.com>
15967 L:      linux-mmc@vger.kernel.org
15968 L:      bcm-kernel-feedback-list@broadcom.com
15969 S:      Maintained
15970 F:      drivers/mmc/host/sdhci-brcmstb*
15971
15972 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15973 M:      Adrian Hunter <adrian.hunter@intel.com>
15974 L:      linux-mmc@vger.kernel.org
15975 S:      Maintained
15976 F:      drivers/mmc/host/sdhci*
15977 F:      include/linux/mmc/sdhci*
15978
15979 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15980 M:      Eugen Hristev <eugen.hristev@microchip.com>
15981 L:      linux-mmc@vger.kernel.org
15982 S:      Supported
15983 F:      drivers/mmc/host/sdhci-of-at91.c
15984
15985 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15986 M:      Ben Dooks <ben-linux@fluff.org>
15987 M:      Jaehoon Chung <jh80.chung@samsung.com>
15988 L:      linux-mmc@vger.kernel.org
15989 S:      Maintained
15990 F:      drivers/mmc/host/sdhci-s3c*
15991
15992 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15993 M:      Viresh Kumar <vireshk@kernel.org>
15994 L:      linux-mmc@vger.kernel.org
15995 S:      Maintained
15996 F:      drivers/mmc/host/sdhci-spear.c
15997
15998 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15999 M:      Kishon Vijay Abraham I <kishon@ti.com>
16000 L:      linux-mmc@vger.kernel.org
16001 S:      Maintained
16002 F:      drivers/mmc/host/sdhci-omap.c
16003
16004 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
16005 M:      Jonathan Derrick <jonathan.derrick@intel.com>
16006 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
16007 L:      linux-block@vger.kernel.org
16008 S:      Supported
16009 F:      block/opal_proto.h
16010 F:      block/sed*
16011 F:      include/linux/sed*
16012 F:      include/uapi/linux/sed*
16013
16014 SECURITY CONTACT
16015 M:      Security Officers <security@kernel.org>
16016 S:      Supported
16017 F:      Documentation/admin-guide/security-bugs.rst
16018
16019 SECURITY SUBSYSTEM
16020 M:      James Morris <jmorris@namei.org>
16021 M:      "Serge E. Hallyn" <serge@hallyn.com>
16022 L:      linux-security-module@vger.kernel.org (suggested Cc:)
16023 S:      Supported
16024 W:      http://kernsec.org/
16025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
16026 F:      security/
16027 X:      security/selinux/
16028
16029 SELINUX SECURITY MODULE
16030 M:      Paul Moore <paul@paul-moore.com>
16031 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
16032 M:      Eric Paris <eparis@parisplace.org>
16033 L:      selinux@vger.kernel.org
16034 S:      Supported
16035 W:      https://selinuxproject.org
16036 W:      https://github.com/SELinuxProject
16037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
16038 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
16039 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
16040 F:      Documentation/admin-guide/LSM/SELinux.rst
16041 F:      include/trace/events/avc.h
16042 F:      include/uapi/linux/selinux_netlink.h
16043 F:      scripts/selinux/
16044 F:      security/selinux/
16045
16046 SENSABLE PHANTOM
16047 M:      Jiri Slaby <jirislaby@kernel.org>
16048 S:      Maintained
16049 F:      drivers/misc/phantom.c
16050 F:      include/uapi/linux/phantom.h
16051
16052 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
16053 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
16054 S:      Maintained
16055 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
16056 F:      drivers/iio/chemical/scd30.h
16057 F:      drivers/iio/chemical/scd30_core.c
16058 F:      drivers/iio/chemical/scd30_i2c.c
16059 F:      drivers/iio/chemical/scd30_serial.c
16060
16061 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
16062 M:      Tomasz Duszynski <tduszyns@gmail.com>
16063 S:      Maintained
16064 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
16065 F:      drivers/iio/chemical/sps30.c
16066
16067 SERIAL DEVICE BUS
16068 M:      Rob Herring <robh@kernel.org>
16069 L:      linux-serial@vger.kernel.org
16070 S:      Maintained
16071 F:      Documentation/devicetree/bindings/serial/serial.yaml
16072 F:      drivers/tty/serdev/
16073 F:      include/linux/serdev.h
16074
16075 SERIAL DRIVERS
16076 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16077 L:      linux-serial@vger.kernel.org
16078 S:      Maintained
16079 F:      Documentation/devicetree/bindings/serial/
16080 F:      drivers/tty/serial/
16081
16082 SERIAL IR RECEIVER
16083 M:      Sean Young <sean@mess.org>
16084 L:      linux-media@vger.kernel.org
16085 S:      Maintained
16086 F:      drivers/media/rc/serial_ir.c
16087
16088 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
16089 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16090 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16091 S:      Maintained
16092 F:      Documentation/devicetree/bindings/slimbus/
16093 F:      drivers/slimbus/
16094 F:      include/linux/slimbus.h
16095
16096 SFC NETWORK DRIVER
16097 M:      Edward Cree <ecree.xilinx@gmail.com>
16098 M:      Martin Habets <habetsm.xilinx@gmail.com>
16099 L:      netdev@vger.kernel.org
16100 S:      Supported
16101 F:      drivers/net/ethernet/sfc/
16102
16103 SFF/SFP/SFP+ MODULE SUPPORT
16104 M:      Russell King <linux@armlinux.org.uk>
16105 L:      netdev@vger.kernel.org
16106 S:      Maintained
16107 F:      drivers/net/phy/phylink.c
16108 F:      drivers/net/phy/sfp*
16109 F:      include/linux/mdio/mdio-i2c.h
16110 F:      include/linux/phylink.h
16111 F:      include/linux/sfp.h
16112 K:      phylink\.h|struct\s+phylink|\.phylink|>phylink_|phylink_(autoneg|clear|connect|create|destroy|disconnect|ethtool|helper|mac|mii|of|set|start|stop|test|validate)
16113
16114 SGI GRU DRIVER
16115 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
16116 S:      Maintained
16117 F:      drivers/misc/sgi-gru/
16118
16119 SGI XP/XPC/XPNET DRIVER
16120 M:      Robin Holt <robinmholt@gmail.com>
16121 M:      Steve Wahl <steve.wahl@hpe.com>
16122 R:      Mike Travis <mike.travis@hpe.com>
16123 S:      Maintained
16124 F:      drivers/misc/sgi-xp/
16125
16126 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
16127 M:      Karsten Graul <kgraul@linux.ibm.com>
16128 L:      linux-s390@vger.kernel.org
16129 S:      Supported
16130 W:      http://www.ibm.com/developerworks/linux/linux390/
16131 F:      net/smc/
16132
16133 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
16134 M:      Linus Walleij <linus.walleij@linaro.org>
16135 L:      linux-iio@vger.kernel.org
16136 S:      Maintained
16137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
16138 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
16139 F:      drivers/iio/light/gp2ap002.c
16140
16141 SHARP RJ54N1CB0C SENSOR DRIVER
16142 M:      Jacopo Mondi <jacopo@jmondi.org>
16143 L:      linux-media@vger.kernel.org
16144 S:      Odd fixes
16145 T:      git git://linuxtv.org/media_tree.git
16146 F:      drivers/media/i2c/rj54n1cb0c.c
16147 F:      include/media/i2c/rj54n1cb0c.h
16148
16149 SH_VOU V4L2 OUTPUT DRIVER
16150 L:      linux-media@vger.kernel.org
16151 S:      Orphan
16152 F:      drivers/media/platform/sh_vou.c
16153 F:      include/media/drv-intf/sh_vou.h
16154
16155 SI2157 MEDIA DRIVER
16156 M:      Antti Palosaari <crope@iki.fi>
16157 L:      linux-media@vger.kernel.org
16158 S:      Maintained
16159 W:      https://linuxtv.org
16160 W:      http://palosaari.fi/linux/
16161 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16162 T:      git git://linuxtv.org/anttip/media_tree.git
16163 F:      drivers/media/tuners/si2157*
16164
16165 SI2165 MEDIA DRIVER
16166 M:      Matthias Schwarzott <zzam@gentoo.org>
16167 L:      linux-media@vger.kernel.org
16168 S:      Maintained
16169 W:      https://linuxtv.org
16170 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16171 F:      drivers/media/dvb-frontends/si2165*
16172
16173 SI2168 MEDIA DRIVER
16174 M:      Antti Palosaari <crope@iki.fi>
16175 L:      linux-media@vger.kernel.org
16176 S:      Maintained
16177 W:      https://linuxtv.org
16178 W:      http://palosaari.fi/linux/
16179 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16180 T:      git git://linuxtv.org/anttip/media_tree.git
16181 F:      drivers/media/dvb-frontends/si2168*
16182
16183 SI470X FM RADIO RECEIVER I2C DRIVER
16184 M:      Hans Verkuil <hverkuil@xs4all.nl>
16185 L:      linux-media@vger.kernel.org
16186 S:      Odd Fixes
16187 W:      https://linuxtv.org
16188 T:      git git://linuxtv.org/media_tree.git
16189 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
16190
16191 SI470X FM RADIO RECEIVER USB DRIVER
16192 M:      Hans Verkuil <hverkuil@xs4all.nl>
16193 L:      linux-media@vger.kernel.org
16194 S:      Maintained
16195 W:      https://linuxtv.org
16196 T:      git git://linuxtv.org/media_tree.git
16197 F:      drivers/media/radio/si470x/radio-si470x-common.c
16198 F:      drivers/media/radio/si470x/radio-si470x-usb.c
16199 F:      drivers/media/radio/si470x/radio-si470x.h
16200
16201 SI4713 FM RADIO TRANSMITTER I2C DRIVER
16202 M:      Eduardo Valentin <edubezval@gmail.com>
16203 L:      linux-media@vger.kernel.org
16204 S:      Odd Fixes
16205 W:      https://linuxtv.org
16206 T:      git git://linuxtv.org/media_tree.git
16207 F:      drivers/media/radio/si4713/si4713.?
16208
16209 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
16210 M:      Eduardo Valentin <edubezval@gmail.com>
16211 L:      linux-media@vger.kernel.org
16212 S:      Odd Fixes
16213 W:      https://linuxtv.org
16214 T:      git git://linuxtv.org/media_tree.git
16215 F:      drivers/media/radio/si4713/radio-platform-si4713.c
16216
16217 SI4713 FM RADIO TRANSMITTER USB DRIVER
16218 M:      Hans Verkuil <hverkuil@xs4all.nl>
16219 L:      linux-media@vger.kernel.org
16220 S:      Maintained
16221 W:      https://linuxtv.org
16222 T:      git git://linuxtv.org/media_tree.git
16223 F:      drivers/media/radio/si4713/radio-usb-si4713.c
16224
16225 SIANO DVB DRIVER
16226 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16227 L:      linux-media@vger.kernel.org
16228 S:      Odd fixes
16229 W:      https://linuxtv.org
16230 T:      git git://linuxtv.org/media_tree.git
16231 F:      drivers/media/common/siano/
16232 F:      drivers/media/mmc/siano/
16233 F:      drivers/media/usb/siano/
16234 F:      drivers/media/usb/siano/
16235
16236 SIFIVE DRIVERS
16237 M:      Palmer Dabbelt <palmer@dabbelt.com>
16238 M:      Paul Walmsley <paul.walmsley@sifive.com>
16239 L:      linux-riscv@lists.infradead.org
16240 S:      Supported
16241 T:      git git://github.com/sifive/riscv-linux.git
16242 N:      sifive
16243 K:      [^@]sifive
16244
16245 SIFIVE FU540 SYSTEM-ON-CHIP
16246 M:      Paul Walmsley <paul.walmsley@sifive.com>
16247 M:      Palmer Dabbelt <palmer@dabbelt.com>
16248 L:      linux-riscv@lists.infradead.org
16249 S:      Supported
16250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
16251 N:      fu540
16252 K:      fu540
16253
16254 SIFIVE PDMA DRIVER
16255 M:      Green Wan <green.wan@sifive.com>
16256 S:      Maintained
16257 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
16258 F:      drivers/dma/sf-pdma/
16259
16260 SILEAD TOUCHSCREEN DRIVER
16261 M:      Hans de Goede <hdegoede@redhat.com>
16262 L:      linux-input@vger.kernel.org
16263 L:      platform-driver-x86@vger.kernel.org
16264 S:      Maintained
16265 F:      drivers/input/touchscreen/silead.c
16266 F:      drivers/platform/x86/touchscreen_dmi.c
16267
16268 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
16269 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
16270 S:      Supported
16271 F:      drivers/staging/wfx/
16272
16273 SILICON MOTION SM712 FRAME BUFFER DRIVER
16274 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16275 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16276 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16277 L:      linux-fbdev@vger.kernel.org
16278 S:      Maintained
16279 F:      Documentation/fb/sm712fb.rst
16280 F:      drivers/video/fbdev/sm712*
16281
16282 SILVACO I3C DUAL-ROLE MASTER
16283 M:      Miquel Raynal <miquel.raynal@bootlin.com>
16284 M:      Conor Culhane <conor.culhane@silvaco.com>
16285 L:      linux-i3c@lists.infradead.org
16286 S:      Maintained
16287 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
16288 F:      drivers/i3c/master/svc-i3c-master.c
16289
16290 SIMPLE FIRMWARE INTERFACE (SFI)
16291 S:      Obsolete
16292 W:      http://simplefirmware.org/
16293 F:      arch/x86/platform/sfi/
16294 F:      drivers/sfi/
16295 F:      include/linux/sfi*.h
16296
16297 SIMPLEFB FB DRIVER
16298 M:      Hans de Goede <hdegoede@redhat.com>
16299 L:      linux-fbdev@vger.kernel.org
16300 S:      Maintained
16301 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
16302 F:      drivers/video/fbdev/simplefb.c
16303 F:      include/linux/platform_data/simplefb.h
16304
16305 SIMTEC EB110ATX (Chalice CATS)
16306 M:      Simtec Linux Team <linux@simtec.co.uk>
16307 S:      Supported
16308 W:      http://www.simtec.co.uk/products/EB110ATX/
16309
16310 SIMTEC EB2410ITX (BAST)
16311 M:      Simtec Linux Team <linux@simtec.co.uk>
16312 S:      Supported
16313 W:      http://www.simtec.co.uk/products/EB2410ITX/
16314 F:      arch/arm/mach-s3c/bast-ide.c
16315 F:      arch/arm/mach-s3c/bast-irq.c
16316 F:      arch/arm/mach-s3c/mach-bast.c
16317
16318 SIOX
16319 M:      Thorsten Scherer <t.scherer@eckelmann.de>
16320 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16321 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
16322 S:      Supported
16323 F:      drivers/gpio/gpio-siox.c
16324 F:      drivers/siox/*
16325 F:      include/trace/events/siox.h
16326
16327 SIPHASH PRF ROUTINES
16328 M:      Jason A. Donenfeld <Jason@zx2c4.com>
16329 S:      Maintained
16330 F:      include/linux/siphash.h
16331 F:      lib/siphash.c
16332 F:      lib/test_siphash.c
16333
16334 SIS 190 ETHERNET DRIVER
16335 M:      Francois Romieu <romieu@fr.zoreil.com>
16336 L:      netdev@vger.kernel.org
16337 S:      Maintained
16338 F:      drivers/net/ethernet/sis/sis190.c
16339
16340 SIS 900/7016 FAST ETHERNET DRIVER
16341 M:      Daniele Venzano <venza@brownhat.org>
16342 L:      netdev@vger.kernel.org
16343 S:      Maintained
16344 W:      http://www.brownhat.org/sis900.html
16345 F:      drivers/net/ethernet/sis/sis900.*
16346
16347 SIS FRAMEBUFFER DRIVER
16348 M:      Thomas Winischhofer <thomas@winischhofer.net>
16349 S:      Maintained
16350 W:      http://www.winischhofer.net/linuxsisvga.shtml
16351 F:      Documentation/fb/sisfb.rst
16352 F:      drivers/video/fbdev/sis/
16353 F:      include/video/sisfb.h
16354
16355 SIS I2C TOUCHSCREEN DRIVER
16356 M:      Mika Penttilä <mika.penttila@nextfour.com>
16357 L:      linux-input@vger.kernel.org
16358 S:      Maintained
16359 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
16360 F:      drivers/input/touchscreen/sis_i2c.c
16361
16362 SIS USB2VGA DRIVER
16363 M:      Thomas Winischhofer <thomas@winischhofer.net>
16364 S:      Maintained
16365 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
16366 F:      drivers/usb/misc/sisusbvga/
16367
16368 SLAB ALLOCATOR
16369 M:      Christoph Lameter <cl@linux.com>
16370 M:      Pekka Enberg <penberg@kernel.org>
16371 M:      David Rientjes <rientjes@google.com>
16372 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
16373 M:      Andrew Morton <akpm@linux-foundation.org>
16374 M:      Vlastimil Babka <vbabka@suse.cz>
16375 L:      linux-mm@kvack.org
16376 S:      Maintained
16377 F:      include/linux/sl?b*.h
16378 F:      mm/sl?b*
16379
16380 SLEEPABLE READ-COPY UPDATE (SRCU)
16381 M:      Lai Jiangshan <jiangshanlai@gmail.com>
16382 M:      "Paul E. McKenney" <paulmck@kernel.org>
16383 M:      Josh Triplett <josh@joshtriplett.org>
16384 R:      Steven Rostedt <rostedt@goodmis.org>
16385 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16386 L:      rcu@vger.kernel.org
16387 S:      Supported
16388 W:      http://www.rdrop.com/users/paulmck/RCU/
16389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16390 F:      include/linux/srcu*.h
16391 F:      kernel/rcu/srcu*.c
16392
16393 SMACK SECURITY MODULE
16394 M:      Casey Schaufler <casey@schaufler-ca.com>
16395 L:      linux-security-module@vger.kernel.org
16396 S:      Maintained
16397 W:      http://schaufler-ca.com
16398 T:      git git://github.com/cschaufler/smack-next
16399 F:      Documentation/admin-guide/LSM/Smack.rst
16400 F:      security/smack/
16401
16402 SMC91x ETHERNET DRIVER
16403 M:      Nicolas Pitre <nico@fluxnic.net>
16404 S:      Odd Fixes
16405 F:      drivers/net/ethernet/smsc/smc91x.*
16406
16407 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
16408 M:      Mark Rutland <mark.rutland@arm.com>
16409 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
16410 M:      Sudeep Holla <sudeep.holla@arm.com>
16411 L:      linux-arm-kernel@lists.infradead.org
16412 S:      Maintained
16413 F:      drivers/firmware/smccc/
16414 F:      include/linux/arm-smccc.h
16415
16416 SMM665 HARDWARE MONITOR DRIVER
16417 M:      Guenter Roeck <linux@roeck-us.net>
16418 L:      linux-hwmon@vger.kernel.org
16419 S:      Maintained
16420 F:      Documentation/hwmon/smm665.rst
16421 F:      drivers/hwmon/smm665.c
16422
16423 SMSC EMC2103 HARDWARE MONITOR DRIVER
16424 M:      Steve Glendinning <steve.glendinning@shawell.net>
16425 L:      linux-hwmon@vger.kernel.org
16426 S:      Maintained
16427 F:      Documentation/hwmon/emc2103.rst
16428 F:      drivers/hwmon/emc2103.c
16429
16430 SMSC SCH5627 HARDWARE MONITOR DRIVER
16431 M:      Hans de Goede <hdegoede@redhat.com>
16432 L:      linux-hwmon@vger.kernel.org
16433 S:      Supported
16434 F:      Documentation/hwmon/sch5627.rst
16435 F:      drivers/hwmon/sch5627.c
16436
16437 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
16438 M:      Steve Glendinning <steve.glendinning@shawell.net>
16439 L:      linux-fbdev@vger.kernel.org
16440 S:      Maintained
16441 F:      drivers/video/fbdev/smscufx.c
16442
16443 SMSC47B397 HARDWARE MONITOR DRIVER
16444 M:      Jean Delvare <jdelvare@suse.com>
16445 L:      linux-hwmon@vger.kernel.org
16446 S:      Maintained
16447 F:      Documentation/hwmon/smsc47b397.rst
16448 F:      drivers/hwmon/smsc47b397.c
16449
16450 SMSC911x ETHERNET DRIVER
16451 M:      Steve Glendinning <steve.glendinning@shawell.net>
16452 L:      netdev@vger.kernel.org
16453 S:      Maintained
16454 F:      drivers/net/ethernet/smsc/smsc911x.*
16455 F:      include/linux/smsc911x.h
16456
16457 SMSC9420 PCI ETHERNET DRIVER
16458 M:      Steve Glendinning <steve.glendinning@shawell.net>
16459 L:      netdev@vger.kernel.org
16460 S:      Maintained
16461 F:      drivers/net/ethernet/smsc/smsc9420.*
16462
16463 SOCIONEXT (SNI) AVE NETWORK DRIVER
16464 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
16465 L:      netdev@vger.kernel.org
16466 S:      Maintained
16467 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
16468 F:      drivers/net/ethernet/socionext/sni_ave.c
16469
16470 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
16471 M:      Jassi Brar <jaswinder.singh@linaro.org>
16472 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
16473 L:      netdev@vger.kernel.org
16474 S:      Maintained
16475 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
16476 F:      drivers/net/ethernet/socionext/netsec.c
16477
16478 SOCIONEXT (SNI) Synquacer SPI DRIVER
16479 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
16480 M:      Jassi Brar <jaswinder.singh@linaro.org>
16481 L:      linux-spi@vger.kernel.org
16482 S:      Maintained
16483 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
16484 F:      drivers/spi/spi-synquacer.c
16485
16486 SOCIONEXT SYNQUACER I2C DRIVER
16487 M:      Ard Biesheuvel <ardb@kernel.org>
16488 L:      linux-i2c@vger.kernel.org
16489 S:      Maintained
16490 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
16491 F:      drivers/i2c/busses/i2c-synquacer.c
16492
16493 SOCIONEXT UNIPHIER SOUND DRIVER
16494 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16495 S:      Orphan
16496 F:      sound/soc/uniphier/
16497
16498 SOEKRIS NET48XX LED SUPPORT
16499 M:      Chris Boot <bootc@bootc.net>
16500 S:      Maintained
16501 F:      drivers/leds/leds-net48xx.c
16502
16503 SOFT-IWARP DRIVER (siw)
16504 M:      Bernard Metzler <bmt@zurich.ibm.com>
16505 L:      linux-rdma@vger.kernel.org
16506 S:      Supported
16507 F:      drivers/infiniband/sw/siw/
16508 F:      include/uapi/rdma/siw-abi.h
16509
16510 SOFT-ROCE DRIVER (rxe)
16511 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
16512 L:      linux-rdma@vger.kernel.org
16513 S:      Supported
16514 F:      drivers/infiniband/sw/rxe/
16515 F:      include/uapi/rdma/rdma_user_rxe.h
16516
16517 SOFTLOGIC 6x10 MPEG CODEC
16518 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
16519 M:      Anton Sviridenko <anton@corp.bluecherry.net>
16520 M:      Andrey Utkin <andrey_utkin@fastmail.com>
16521 M:      Ismael Luceno <ismael@iodev.co.uk>
16522 L:      linux-media@vger.kernel.org
16523 S:      Supported
16524 F:      drivers/media/pci/solo6x10/
16525
16526 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
16527 M:      James Morse <james.morse@arm.com>
16528 L:      linux-arm-kernel@lists.infradead.org
16529 S:      Maintained
16530 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
16531 F:      drivers/firmware/arm_sdei.c
16532 F:      include/linux/arm_sdei.h
16533 F:      include/uapi/linux/arm_sdei.h
16534
16535 SOFTWARE RAID (Multiple Disks) SUPPORT
16536 M:      Song Liu <song@kernel.org>
16537 L:      linux-raid@vger.kernel.org
16538 S:      Supported
16539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
16540 F:      drivers/md/Kconfig
16541 F:      drivers/md/Makefile
16542 F:      drivers/md/md*
16543 F:      drivers/md/raid*
16544 F:      include/linux/raid/
16545 F:      include/uapi/linux/raid/
16546
16547 SOLIDRUN CLEARFOG SUPPORT
16548 M:      Russell King <linux@armlinux.org.uk>
16549 S:      Maintained
16550 F:      arch/arm/boot/dts/armada-388-clearfog*
16551 F:      arch/arm/boot/dts/armada-38x-solidrun-*
16552
16553 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
16554 M:      Russell King <linux@armlinux.org.uk>
16555 S:      Maintained
16556 F:      arch/arm/boot/dts/imx6*-cubox-i*
16557 F:      arch/arm/boot/dts/imx6*-hummingboard*
16558 F:      arch/arm/boot/dts/imx6*-sr-*
16559
16560 SONIC NETWORK DRIVER
16561 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
16562 L:      netdev@vger.kernel.org
16563 S:      Maintained
16564 F:      drivers/net/ethernet/natsemi/sonic.*
16565
16566 SONICS SILICON BACKPLANE DRIVER (SSB)
16567 M:      Michael Buesch <m@bues.ch>
16568 L:      linux-wireless@vger.kernel.org
16569 S:      Maintained
16570 F:      drivers/ssb/
16571 F:      include/linux/ssb/
16572
16573 SONY IMX214 SENSOR DRIVER
16574 M:      Ricardo Ribalda <ribalda@kernel.org>
16575 L:      linux-media@vger.kernel.org
16576 S:      Maintained
16577 T:      git git://linuxtv.org/media_tree.git
16578 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
16579 F:      drivers/media/i2c/imx214.c
16580
16581 SONY IMX219 SENSOR DRIVER
16582 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
16583 L:      linux-media@vger.kernel.org
16584 S:      Maintained
16585 T:      git git://linuxtv.org/media_tree.git
16586 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
16587 F:      drivers/media/i2c/imx219.c
16588
16589 SONY IMX258 SENSOR DRIVER
16590 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
16591 L:      linux-media@vger.kernel.org
16592 S:      Maintained
16593 T:      git git://linuxtv.org/media_tree.git
16594 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
16595 F:      drivers/media/i2c/imx258.c
16596
16597 SONY IMX274 SENSOR DRIVER
16598 M:      Leon Luo <leonl@leopardimaging.com>
16599 L:      linux-media@vger.kernel.org
16600 S:      Maintained
16601 T:      git git://linuxtv.org/media_tree.git
16602 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
16603 F:      drivers/media/i2c/imx274.c
16604
16605 SONY IMX290 SENSOR DRIVER
16606 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16607 L:      linux-media@vger.kernel.org
16608 S:      Maintained
16609 T:      git git://linuxtv.org/media_tree.git
16610 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
16611 F:      drivers/media/i2c/imx290.c
16612
16613 SONY IMX319 SENSOR DRIVER
16614 M:      Bingbu Cao <bingbu.cao@intel.com>
16615 L:      linux-media@vger.kernel.org
16616 S:      Maintained
16617 T:      git git://linuxtv.org/media_tree.git
16618 F:      drivers/media/i2c/imx319.c
16619
16620 SONY IMX334 SENSOR DRIVER
16621 M:      Paul J. Murphy <paul.j.murphy@intel.com>
16622 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
16623 L:      linux-media@vger.kernel.org
16624 S:      Maintained
16625 T:      git git://linuxtv.org/media_tree.git
16626 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
16627 F:      drivers/media/i2c/imx334.c
16628
16629 SONY IMX355 SENSOR DRIVER
16630 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
16631 L:      linux-media@vger.kernel.org
16632 S:      Maintained
16633 T:      git git://linuxtv.org/media_tree.git
16634 F:      drivers/media/i2c/imx355.c
16635
16636 SONY MEMORYSTICK SUBSYSTEM
16637 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16638 M:      Alex Dubov <oakad@yahoo.com>
16639 M:      Ulf Hansson <ulf.hansson@linaro.org>
16640 L:      linux-mmc@vger.kernel.org
16641 S:      Maintained
16642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
16643 F:      drivers/memstick/
16644 F:      include/linux/memstick.h
16645
16646 SONY VAIO CONTROL DEVICE DRIVER
16647 M:      Mattia Dongili <malattia@linux.it>
16648 L:      platform-driver-x86@vger.kernel.org
16649 S:      Maintained
16650 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
16651 F:      Documentation/admin-guide/laptops/sony-laptop.rst
16652 F:      drivers/char/sonypi.c
16653 F:      drivers/platform/x86/sony-laptop.c
16654 F:      include/linux/sony-laptop.h
16655
16656 SOUND
16657 M:      Jaroslav Kysela <perex@perex.cz>
16658 M:      Takashi Iwai <tiwai@suse.com>
16659 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16660 S:      Maintained
16661 W:      http://www.alsa-project.org/
16662 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
16663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16664 F:      Documentation/sound/
16665 F:      include/sound/
16666 F:      include/uapi/sound/
16667 F:      sound/
16668
16669 SOUND - COMPRESSED AUDIO
16670 M:      Vinod Koul <vkoul@kernel.org>
16671 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16672 S:      Supported
16673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16674 F:      Documentation/sound/designs/compress-offload.rst
16675 F:      include/sound/compress_driver.h
16676 F:      include/uapi/sound/compress_*
16677 F:      sound/core/compress_offload.c
16678 F:      sound/soc/soc-compress.c
16679
16680 SOUND - DMAENGINE HELPERS
16681 M:      Lars-Peter Clausen <lars@metafoo.de>
16682 S:      Supported
16683 F:      include/sound/dmaengine_pcm.h
16684 F:      sound/core/pcm_dmaengine.c
16685 F:      sound/soc/soc-generic-dmaengine-pcm.c
16686
16687 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
16688 M:      Liam Girdwood <lgirdwood@gmail.com>
16689 M:      Mark Brown <broonie@kernel.org>
16690 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16691 S:      Supported
16692 W:      http://alsa-project.org/main/index.php/ASoC
16693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
16694 F:      Documentation/devicetree/bindings/sound/
16695 F:      Documentation/sound/soc/
16696 F:      include/dt-bindings/sound/
16697 F:      include/sound/soc*
16698 F:      sound/soc/
16699
16700 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
16701 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16702 M:      Liam Girdwood <lgirdwood@gmail.com>
16703 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
16704 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
16705 M:      Daniel Baluta <daniel.baluta@nxp.com>
16706 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
16707 S:      Supported
16708 W:      https://github.com/thesofproject/linux/
16709 F:      sound/soc/sof/
16710
16711 SOUNDWIRE SUBSYSTEM
16712 M:      Vinod Koul <vkoul@kernel.org>
16713 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
16714 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16715 R:      Sanyog Kale <sanyog.r.kale@intel.com>
16716 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16717 S:      Supported
16718 F:      Documentation/driver-api/soundwire/
16719 F:      drivers/soundwire/
16720 F:      include/linux/soundwire/
16721
16722 SP2 MEDIA DRIVER
16723 M:      Olli Salonen <olli.salonen@iki.fi>
16724 L:      linux-media@vger.kernel.org
16725 S:      Maintained
16726 W:      https://linuxtv.org
16727 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16728 F:      drivers/media/dvb-frontends/sp2*
16729
16730 SPARC + UltraSPARC (sparc/sparc64)
16731 M:      "David S. Miller" <davem@davemloft.net>
16732 L:      sparclinux@vger.kernel.org
16733 S:      Maintained
16734 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
16735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16737 F:      arch/sparc/
16738 F:      drivers/sbus/
16739
16740 SPARC SERIAL DRIVERS
16741 M:      "David S. Miller" <davem@davemloft.net>
16742 L:      sparclinux@vger.kernel.org
16743 S:      Maintained
16744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16746 F:      drivers/tty/serial/suncore.c
16747 F:      drivers/tty/serial/sunhv.c
16748 F:      drivers/tty/serial/sunsab.c
16749 F:      drivers/tty/serial/sunsab.h
16750 F:      drivers/tty/serial/sunsu.c
16751 F:      drivers/tty/serial/sunzilog.c
16752 F:      drivers/tty/serial/sunzilog.h
16753 F:      drivers/tty/vcc.c
16754 F:      include/linux/sunserialcore.h
16755
16756 SPARSE CHECKER
16757 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
16758 L:      linux-sparse@vger.kernel.org
16759 S:      Maintained
16760 W:      https://sparse.docs.kernel.org/
16761 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
16762 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
16763 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
16764 F:      include/linux/compiler.h
16765
16766 SPEAKUP CONSOLE SPEECH DRIVER
16767 M:      William Hubbs <w.d.hubbs@gmail.com>
16768 M:      Chris Brannon <chris@the-brannons.com>
16769 M:      Kirk Reiser <kirk@reisers.ca>
16770 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
16771 L:      speakup@linux-speakup.org
16772 S:      Odd Fixes
16773 W:      http://www.linux-speakup.org/
16774 W:      https://github.com/linux-speakup/speakup
16775 B:      https://github.com/linux-speakup/speakup/issues
16776 F:      drivers/accessibility/speakup/
16777
16778 SPEAR CLOCK FRAMEWORK SUPPORT
16779 M:      Viresh Kumar <vireshk@kernel.org>
16780 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16781 S:      Maintained
16782 W:      http://www.st.com/spear
16783 F:      drivers/clk/spear/
16784
16785 SPEAR PLATFORM SUPPORT
16786 M:      Viresh Kumar <vireshk@kernel.org>
16787 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
16788 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16789 S:      Maintained
16790 W:      http://www.st.com/spear
16791 F:      arch/arm/boot/dts/spear*
16792 F:      arch/arm/mach-spear/
16793
16794 SPI NOR SUBSYSTEM
16795 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
16796 L:      linux-mtd@lists.infradead.org
16797 S:      Maintained
16798 W:      http://www.linux-mtd.infradead.org/
16799 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
16800 C:      irc://irc.oftc.net/mtd
16801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
16802 F:      drivers/mtd/spi-nor/
16803 F:      include/linux/mtd/spi-nor.h
16804
16805 SPI SUBSYSTEM
16806 M:      Mark Brown <broonie@kernel.org>
16807 L:      linux-spi@vger.kernel.org
16808 S:      Maintained
16809 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
16810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
16811 F:      Documentation/devicetree/bindings/spi/
16812 F:      Documentation/spi/
16813 F:      drivers/spi/
16814 F:      include/linux/spi/
16815 F:      include/uapi/linux/spi/
16816 F:      tools/spi/
16817
16818 SPIDERNET NETWORK DRIVER for CELL
16819 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
16820 L:      netdev@vger.kernel.org
16821 S:      Supported
16822 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
16823 F:      drivers/net/ethernet/toshiba/spider_net*
16824
16825 SPMI SUBSYSTEM
16826 M:      Stephen Boyd <sboyd@kernel.org>
16827 L:      linux-kernel@vger.kernel.org
16828 S:      Maintained
16829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
16830 F:      Documentation/devicetree/bindings/spmi/
16831 F:      drivers/spmi/
16832 F:      include/dt-bindings/spmi/spmi.h
16833 F:      include/linux/spmi.h
16834 F:      include/trace/events/spmi.h
16835
16836 SPU FILE SYSTEM
16837 M:      Jeremy Kerr <jk@ozlabs.org>
16838 L:      linuxppc-dev@lists.ozlabs.org
16839 S:      Supported
16840 W:      http://www.ibm.com/developerworks/power/cell/
16841 F:      Documentation/filesystems/spufs/spufs.rst
16842 F:      arch/powerpc/platforms/cell/spufs/
16843
16844 SQUASHFS FILE SYSTEM
16845 M:      Phillip Lougher <phillip@squashfs.org.uk>
16846 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
16847 S:      Maintained
16848 W:      http://squashfs.org.uk
16849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
16850 F:      Documentation/filesystems/squashfs.rst
16851 F:      fs/squashfs/
16852
16853 SRM (Alpha) environment access
16854 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
16855 S:      Maintained
16856 F:      arch/alpha/kernel/srm_env.c
16857
16858 ST LSM6DSx IMU IIO DRIVER
16859 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
16860 L:      linux-iio@vger.kernel.org
16861 S:      Maintained
16862 W:      http://www.st.com/
16863 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
16864 F:      drivers/iio/imu/st_lsm6dsx/
16865
16866 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
16867 M:      Mickael Guene <mickael.guene@st.com>
16868 L:      linux-media@vger.kernel.org
16869 S:      Maintained
16870 T:      git git://linuxtv.org/media_tree.git
16871 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
16872 F:      drivers/media/i2c/st-mipid02.c
16873
16874 ST STM32 I2C/SMBUS DRIVER
16875 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
16876 L:      linux-i2c@vger.kernel.org
16877 S:      Maintained
16878 F:      drivers/i2c/busses/i2c-stm32*
16879
16880 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
16881 M:      Song Qiang <songqiang1304521@gmail.com>
16882 L:      linux-iio@vger.kernel.org
16883 S:      Maintained
16884 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
16885 F:      drivers/iio/proximity/vl53l0x-i2c.c
16886
16887 STABLE BRANCH
16888 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16889 M:      Sasha Levin <sashal@kernel.org>
16890 L:      stable@vger.kernel.org
16891 S:      Supported
16892 F:      Documentation/process/stable-kernel-rules.rst
16893
16894 STAGING - ATOMISP DRIVER
16895 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16896 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
16897 L:      linux-media@vger.kernel.org
16898 S:      Maintained
16899 F:      drivers/staging/media/atomisp/
16900
16901 STAGING - COMEDI
16902 M:      Ian Abbott <abbotti@mev.co.uk>
16903 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
16904 S:      Odd Fixes
16905 F:      drivers/staging/comedi/
16906
16907 STAGING - FIELDBUS SUBSYSTEM
16908 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16909 S:      Maintained
16910 F:      drivers/staging/fieldbus/*
16911 F:      drivers/staging/fieldbus/Documentation/
16912
16913 STAGING - HMS ANYBUS-S BUS
16914 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16915 S:      Maintained
16916 F:      drivers/staging/fieldbus/anybuss/
16917
16918 STAGING - INDUSTRIAL IO
16919 M:      Jonathan Cameron <jic23@kernel.org>
16920 L:      linux-iio@vger.kernel.org
16921 S:      Odd Fixes
16922 F:      Documentation/devicetree/bindings/staging/iio/
16923 F:      drivers/staging/iio/
16924
16925 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
16926 M:      Marc Dietrich <marvin24@gmx.de>
16927 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
16928 L:      linux-tegra@vger.kernel.org
16929 S:      Maintained
16930 F:      drivers/staging/nvec/
16931
16932 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
16933 M:      Jens Frederich <jfrederich@gmail.com>
16934 M:      Daniel Drake <dsd@laptop.org>
16935 M:      Jon Nettleton <jon.nettleton@gmail.com>
16936 S:      Maintained
16937 W:      http://wiki.laptop.org/go/DCON
16938 F:      drivers/staging/olpc_dcon/
16939
16940 STAGING - REALTEK RTL8188EU DRIVERS
16941 M:      Larry Finger <Larry.Finger@lwfinger.net>
16942 S:      Odd Fixes
16943 F:      drivers/staging/rtl8188eu/
16944
16945 STAGING - REALTEK RTL8712U DRIVERS
16946 M:      Larry Finger <Larry.Finger@lwfinger.net>
16947 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
16948 S:      Odd Fixes
16949 F:      drivers/staging/rtl8712/
16950
16951 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16952 M:      Michael Hennerich <michael.hennerich@analog.com>
16953 L:      linux-fbdev@vger.kernel.org
16954 S:      Supported
16955 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16956 F:      drivers/staging/fbtft/fb_seps525.c
16957
16958 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
16959 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16960 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16961 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16962 L:      linux-fbdev@vger.kernel.org
16963 S:      Maintained
16964 F:      drivers/staging/sm750fb/
16965
16966 STAGING - VIA VT665X DRIVERS
16967 M:      Forest Bond <forest@alittletooquiet.net>
16968 S:      Odd Fixes
16969 F:      drivers/staging/vt665?/
16970
16971 STAGING SUBSYSTEM
16972 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16973 L:      devel@driverdev.osuosl.org
16974 S:      Supported
16975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16976 F:      drivers/staging/
16977
16978 STARFIRE/DURALAN NETWORK DRIVER
16979 M:      Ion Badulescu <ionut@badula.org>
16980 S:      Odd Fixes
16981 F:      drivers/net/ethernet/adaptec/starfire*
16982
16983 STATIC BRANCH/CALL
16984 M:      Peter Zijlstra <peterz@infradead.org>
16985 M:      Josh Poimboeuf <jpoimboe@redhat.com>
16986 M:      Jason Baron <jbaron@akamai.com>
16987 R:      Steven Rostedt <rostedt@goodmis.org>
16988 R:      Ard Biesheuvel <ardb@kernel.org>
16989 S:      Supported
16990 F:      arch/*/include/asm/jump_label*.h
16991 F:      arch/*/include/asm/static_call*.h
16992 F:      arch/*/kernel/jump_label.c
16993 F:      arch/*/kernel/static_call.c
16994 F:      include/linux/jump_label*.h
16995 F:      include/linux/static_call*.h
16996 F:      kernel/jump_label.c
16997 F:      kernel/static_call.c
16998
16999 STI AUDIO (ASoC) DRIVERS
17000 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
17001 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17002 S:      Maintained
17003 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
17004 F:      sound/soc/sti/
17005
17006 STI CEC DRIVER
17007 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
17008 S:      Maintained
17009 F:      Documentation/devicetree/bindings/media/stih-cec.txt
17010 F:      drivers/media/cec/platform/sti/
17011
17012 STK1160 USB VIDEO CAPTURE DRIVER
17013 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17014 L:      linux-media@vger.kernel.org
17015 S:      Maintained
17016 T:      git git://linuxtv.org/media_tree.git
17017 F:      drivers/media/usb/stk1160/
17018
17019 STM32 AUDIO (ASoC) DRIVERS
17020 M:      Olivier Moysan <olivier.moysan@st.com>
17021 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
17022 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17023 S:      Maintained
17024 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-*.yaml
17025 F:      sound/soc/stm/
17026
17027 STM32 TIMER/LPTIMER DRIVERS
17028 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
17029 S:      Maintained
17030 F:      Documentation/ABI/testing/*timer-stm32
17031 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
17032 F:      drivers/*/stm32-*timer*
17033 F:      drivers/pwm/pwm-stm32*
17034 F:      include/linux/*/stm32-*tim*
17035
17036 STMMAC ETHERNET DRIVER
17037 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
17038 M:      Alexandre Torgue <alexandre.torgue@st.com>
17039 M:      Jose Abreu <joabreu@synopsys.com>
17040 L:      netdev@vger.kernel.org
17041 S:      Supported
17042 W:      http://www.stlinux.com
17043 F:      Documentation/networking/device_drivers/ethernet/stmicro/
17044 F:      drivers/net/ethernet/stmicro/stmmac/
17045
17046 SUN3/3X
17047 M:      Sam Creasey <sammy@sammy.net>
17048 S:      Maintained
17049 W:      http://sammy.net/sun3/
17050 F:      arch/m68k/include/asm/sun3*
17051 F:      arch/m68k/kernel/*sun3*
17052 F:      arch/m68k/sun3*/
17053 F:      drivers/net/ethernet/i825xx/sun3*
17054
17055 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
17056 M:      Hans de Goede <hdegoede@redhat.com>
17057 L:      linux-input@vger.kernel.org
17058 S:      Maintained
17059 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
17060 F:      drivers/input/keyboard/sun4i-lradc-keys.c
17061
17062 SUNDANCE NETWORK DRIVER
17063 M:      Denis Kirjanov <kda@linux-powerpc.org>
17064 L:      netdev@vger.kernel.org
17065 S:      Maintained
17066 F:      drivers/net/ethernet/dlink/sundance.c
17067
17068 SUPERH
17069 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
17070 M:      Rich Felker <dalias@libc.org>
17071 L:      linux-sh@vger.kernel.org
17072 S:      Maintained
17073 Q:      http://patchwork.kernel.org/project/linux-sh/list/
17074 F:      Documentation/sh/
17075 F:      arch/sh/
17076 F:      drivers/sh/
17077
17078 SUSPEND TO RAM
17079 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
17080 M:      Len Brown <len.brown@intel.com>
17081 M:      Pavel Machek <pavel@ucw.cz>
17082 L:      linux-pm@vger.kernel.org
17083 S:      Supported
17084 B:      https://bugzilla.kernel.org
17085 F:      Documentation/power/
17086 F:      arch/x86/kernel/acpi/
17087 F:      drivers/base/power/
17088 F:      include/linux/freezer.h
17089 F:      include/linux/pm.h
17090 F:      include/linux/suspend.h
17091 F:      kernel/power/
17092
17093 SVGA HANDLING
17094 M:      Martin Mares <mj@ucw.cz>
17095 L:      linux-video@atrey.karlin.mff.cuni.cz
17096 S:      Maintained
17097 F:      Documentation/admin-guide/svga.rst
17098 F:      arch/x86/boot/video*
17099
17100 SWIOTLB SUBSYSTEM
17101 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17102 L:      iommu@lists.linux-foundation.org
17103 S:      Supported
17104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
17105 F:      arch/*/kernel/pci-swiotlb.c
17106 F:      include/linux/swiotlb.h
17107 F:      kernel/dma/swiotlb.c
17108
17109 SWITCHDEV
17110 M:      Jiri Pirko <jiri@resnulli.us>
17111 M:      Ivan Vecera <ivecera@redhat.com>
17112 L:      netdev@vger.kernel.org
17113 S:      Supported
17114 F:      include/net/switchdev.h
17115 F:      net/switchdev/
17116
17117 SY8106A REGULATOR DRIVER
17118 M:      Icenowy Zheng <icenowy@aosc.io>
17119 S:      Maintained
17120 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
17121 F:      drivers/regulator/sy8106a-regulator.c
17122
17123 SYNC FILE FRAMEWORK
17124 M:      Sumit Semwal <sumit.semwal@linaro.org>
17125 R:      Gustavo Padovan <gustavo@padovan.org>
17126 L:      linux-media@vger.kernel.org
17127 L:      dri-devel@lists.freedesktop.org
17128 S:      Maintained
17129 T:      git git://anongit.freedesktop.org/drm/drm-misc
17130 F:      Documentation/driver-api/sync_file.rst
17131 F:      drivers/dma-buf/dma-fence*
17132 F:      drivers/dma-buf/sw_sync.c
17133 F:      drivers/dma-buf/sync_*
17134 F:      include/linux/sync_file.h
17135 F:      include/uapi/linux/sync_file.h
17136
17137 SYNOPSYS ARC ARCHITECTURE
17138 M:      Vineet Gupta <vgupta@synopsys.com>
17139 L:      linux-snps-arc@lists.infradead.org
17140 S:      Supported
17141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
17142 F:      Documentation/devicetree/bindings/arc/*
17143 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
17144 F:      arch/arc/
17145 F:      drivers/clocksource/arc_timer.c
17146 F:      drivers/tty/serial/arc_uart.c
17147
17148 SYNOPSYS ARC HSDK SDP pll clock driver
17149 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17150 S:      Supported
17151 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
17152 F:      drivers/clk/clk-hsdk-pll.c
17153
17154 SYNOPSYS ARC SDP clock driver
17155 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17156 S:      Supported
17157 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
17158 F:      drivers/clk/axs10x/*
17159
17160 SYNOPSYS ARC SDP platform support
17161 M:      Alexey Brodkin <abrodkin@synopsys.com>
17162 S:      Supported
17163 F:      Documentation/devicetree/bindings/arc/axs10*
17164 F:      arch/arc/boot/dts/ax*
17165 F:      arch/arc/plat-axs10x
17166
17167 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
17168 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17169 S:      Supported
17170 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
17171 F:      drivers/reset/reset-axs10x.c
17172
17173 SYNOPSYS CREG GPIO DRIVER
17174 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17175 S:      Maintained
17176 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
17177 F:      drivers/gpio/gpio-creg-snps.c
17178
17179 SYNOPSYS DESIGNWARE 8250 UART DRIVER
17180 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17181 S:      Maintained
17182 F:      drivers/tty/serial/8250/8250_dw.c
17183 F:      drivers/tty/serial/8250/8250_dwlib.*
17184 F:      drivers/tty/serial/8250/8250_lpss.c
17185
17186 SYNOPSYS DESIGNWARE APB GPIO DRIVER
17187 M:      Hoan Tran <hoan@os.amperecomputing.com>
17188 M:      Serge Semin <fancer.lancer@gmail.com>
17189 L:      linux-gpio@vger.kernel.org
17190 S:      Maintained
17191 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
17192 F:      drivers/gpio/gpio-dwapb.c
17193
17194 SYNOPSYS DESIGNWARE APB SSI DRIVER
17195 M:      Serge Semin <fancer.lancer@gmail.com>
17196 L:      linux-spi@vger.kernel.org
17197 S:      Supported
17198 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
17199 F:      drivers/spi/spi-dw*
17200
17201 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
17202 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17203 S:      Maintained
17204 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
17205 F:      drivers/dma/dw-axi-dmac/
17206
17207 SYNOPSYS DESIGNWARE DMAC DRIVER
17208 M:      Viresh Kumar <vireshk@kernel.org>
17209 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17210 S:      Maintained
17211 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
17212 F:      drivers/dma/dw/
17213 F:      include/dt-bindings/dma/dw-dmac.h
17214 F:      include/linux/dma/dw.h
17215 F:      include/linux/platform_data/dma-dw.h
17216
17217 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
17218 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17219 L:      netdev@vger.kernel.org
17220 S:      Supported
17221 F:      drivers/net/ethernet/synopsys/
17222
17223 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
17224 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17225 L:      netdev@vger.kernel.org
17226 S:      Supported
17227 F:      drivers/net/pcs/pcs-xpcs.c
17228 F:      include/linux/pcs/pcs-xpcs.h
17229
17230 SYNOPSYS DESIGNWARE I2C DRIVER
17231 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
17232 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17233 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
17234 L:      linux-i2c@vger.kernel.org
17235 S:      Maintained
17236 F:      drivers/i2c/busses/i2c-designware-*
17237 F:      include/linux/platform_data/i2c-designware.h
17238
17239 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
17240 M:      Jaehoon Chung <jh80.chung@samsung.com>
17241 L:      linux-mmc@vger.kernel.org
17242 S:      Maintained
17243 F:      drivers/mmc/host/dw_mmc*
17244
17245 SYNOPSYS HSDK RESET CONTROLLER DRIVER
17246 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17247 S:      Supported
17248 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
17249 F:      drivers/reset/reset-hsdk.c
17250 F:      include/dt-bindings/reset/snps,hsdk-reset.h
17251
17252 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
17253 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
17254 M:      Manjunath M B <manjumb@synopsys.com>
17255 L:      linux-mmc@vger.kernel.org
17256 S:      Maintained
17257 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
17258
17259 SYSTEM CONFIGURATION (SYSCON)
17260 M:      Lee Jones <lee.jones@linaro.org>
17261 M:      Arnd Bergmann <arnd@arndb.de>
17262 S:      Supported
17263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
17264 F:      drivers/mfd/syscon.c
17265
17266 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
17267 M:      Sudeep Holla <sudeep.holla@arm.com>
17268 R:      Cristian Marussi <cristian.marussi@arm.com>
17269 L:      linux-arm-kernel@lists.infradead.org
17270 S:      Maintained
17271 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
17272 F:      drivers/clk/clk-sc[mp]i.c
17273 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
17274 F:      drivers/firmware/arm_scmi/
17275 F:      drivers/firmware/arm_scpi.c
17276 F:      drivers/regulator/scmi-regulator.c
17277 F:      drivers/reset/reset-scmi.c
17278 F:      include/linux/sc[mp]i_protocol.h
17279 F:      include/trace/events/scmi.h
17280
17281 SYSTEM RESET/SHUTDOWN DRIVERS
17282 M:      Sebastian Reichel <sre@kernel.org>
17283 L:      linux-pm@vger.kernel.org
17284 S:      Maintained
17285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
17286 F:      Documentation/devicetree/bindings/power/reset/
17287 F:      drivers/power/reset/
17288
17289 SYSTEM TRACE MODULE CLASS
17290 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
17291 S:      Maintained
17292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
17293 F:      Documentation/trace/stm.rst
17294 F:      drivers/hwtracing/stm/
17295 F:      include/linux/stm.h
17296 F:      include/uapi/linux/stm.h
17297
17298 SYSTEM76 ACPI DRIVER
17299 M:      Jeremy Soller <jeremy@system76.com>
17300 M:      System76 Product Development <productdev@system76.com>
17301 L:      platform-driver-x86@vger.kernel.org
17302 S:      Maintained
17303 F:      drivers/platform/x86/system76_acpi.c
17304
17305 SYSV FILESYSTEM
17306 M:      Christoph Hellwig <hch@infradead.org>
17307 S:      Maintained
17308 F:      Documentation/filesystems/sysv-fs.rst
17309 F:      fs/sysv/
17310 F:      include/linux/sysv_fs.h
17311
17312 TASKSTATS STATISTICS INTERFACE
17313 M:      Balbir Singh <bsingharora@gmail.com>
17314 S:      Maintained
17315 F:      Documentation/accounting/taskstats*
17316 F:      include/linux/taskstats*
17317 F:      kernel/taskstats.c
17318
17319 TC subsystem
17320 M:      Jamal Hadi Salim <jhs@mojatatu.com>
17321 M:      Cong Wang <xiyou.wangcong@gmail.com>
17322 M:      Jiri Pirko <jiri@resnulli.us>
17323 L:      netdev@vger.kernel.org
17324 S:      Maintained
17325 F:      include/net/pkt_cls.h
17326 F:      include/net/pkt_sched.h
17327 F:      include/net/tc_act/
17328 F:      include/uapi/linux/pkt_cls.h
17329 F:      include/uapi/linux/pkt_sched.h
17330 F:      include/uapi/linux/tc_act/
17331 F:      include/uapi/linux/tc_ematch/
17332 F:      net/sched/
17333
17334 TC90522 MEDIA DRIVER
17335 M:      Akihiro Tsukada <tskd08@gmail.com>
17336 L:      linux-media@vger.kernel.org
17337 S:      Odd Fixes
17338 F:      drivers/media/dvb-frontends/tc90522*
17339
17340 TCP LOW PRIORITY MODULE
17341 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
17342 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
17343 S:      Maintained
17344 W:      http://tcp-lp-mod.sourceforge.net/
17345 F:      net/ipv4/tcp_lp.c
17346
17347 TDA10071 MEDIA DRIVER
17348 M:      Antti Palosaari <crope@iki.fi>
17349 L:      linux-media@vger.kernel.org
17350 S:      Maintained
17351 W:      https://linuxtv.org
17352 W:      http://palosaari.fi/linux/
17353 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17354 T:      git git://linuxtv.org/anttip/media_tree.git
17355 F:      drivers/media/dvb-frontends/tda10071*
17356
17357 TDA18212 MEDIA DRIVER
17358 M:      Antti Palosaari <crope@iki.fi>
17359 L:      linux-media@vger.kernel.org
17360 S:      Maintained
17361 W:      https://linuxtv.org
17362 W:      http://palosaari.fi/linux/
17363 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17364 T:      git git://linuxtv.org/anttip/media_tree.git
17365 F:      drivers/media/tuners/tda18212*
17366
17367 TDA18218 MEDIA DRIVER
17368 M:      Antti Palosaari <crope@iki.fi>
17369 L:      linux-media@vger.kernel.org
17370 S:      Maintained
17371 W:      https://linuxtv.org
17372 W:      http://palosaari.fi/linux/
17373 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17374 T:      git git://linuxtv.org/anttip/media_tree.git
17375 F:      drivers/media/tuners/tda18218*
17376
17377 TDA18250 MEDIA DRIVER
17378 M:      Olli Salonen <olli.salonen@iki.fi>
17379 L:      linux-media@vger.kernel.org
17380 S:      Maintained
17381 W:      https://linuxtv.org
17382 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17383 T:      git git://linuxtv.org/media_tree.git
17384 F:      drivers/media/tuners/tda18250*
17385
17386 TDA18271 MEDIA DRIVER
17387 M:      Michael Krufky <mkrufky@linuxtv.org>
17388 L:      linux-media@vger.kernel.org
17389 S:      Maintained
17390 W:      https://linuxtv.org
17391 W:      http://github.com/mkrufky
17392 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17393 T:      git git://linuxtv.org/mkrufky/tuners.git
17394 F:      drivers/media/tuners/tda18271*
17395
17396 TDA1997x MEDIA DRIVER
17397 M:      Tim Harvey <tharvey@gateworks.com>
17398 L:      linux-media@vger.kernel.org
17399 S:      Maintained
17400 W:      https://linuxtv.org
17401 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17402 F:      drivers/media/i2c/tda1997x.*
17403
17404 TDA827x MEDIA DRIVER
17405 M:      Michael Krufky <mkrufky@linuxtv.org>
17406 L:      linux-media@vger.kernel.org
17407 S:      Maintained
17408 W:      https://linuxtv.org
17409 W:      http://github.com/mkrufky
17410 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17411 T:      git git://linuxtv.org/mkrufky/tuners.git
17412 F:      drivers/media/tuners/tda8290.*
17413
17414 TDA8290 MEDIA DRIVER
17415 M:      Michael Krufky <mkrufky@linuxtv.org>
17416 L:      linux-media@vger.kernel.org
17417 S:      Maintained
17418 W:      https://linuxtv.org
17419 W:      http://github.com/mkrufky
17420 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17421 T:      git git://linuxtv.org/mkrufky/tuners.git
17422 F:      drivers/media/tuners/tda8290.*
17423
17424 TDA9840 MEDIA DRIVER
17425 M:      Hans Verkuil <hverkuil@xs4all.nl>
17426 L:      linux-media@vger.kernel.org
17427 S:      Maintained
17428 W:      https://linuxtv.org
17429 T:      git git://linuxtv.org/media_tree.git
17430 F:      drivers/media/i2c/tda9840*
17431
17432 TEA5761 TUNER DRIVER
17433 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17434 L:      linux-media@vger.kernel.org
17435 S:      Odd fixes
17436 W:      https://linuxtv.org
17437 T:      git git://linuxtv.org/media_tree.git
17438 F:      drivers/media/tuners/tea5761.*
17439
17440 TEA5767 TUNER DRIVER
17441 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17442 L:      linux-media@vger.kernel.org
17443 S:      Maintained
17444 W:      https://linuxtv.org
17445 T:      git git://linuxtv.org/media_tree.git
17446 F:      drivers/media/tuners/tea5767.*
17447
17448 TEA6415C MEDIA DRIVER
17449 M:      Hans Verkuil <hverkuil@xs4all.nl>
17450 L:      linux-media@vger.kernel.org
17451 S:      Maintained
17452 W:      https://linuxtv.org
17453 T:      git git://linuxtv.org/media_tree.git
17454 F:      drivers/media/i2c/tea6415c*
17455
17456 TEA6420 MEDIA DRIVER
17457 M:      Hans Verkuil <hverkuil@xs4all.nl>
17458 L:      linux-media@vger.kernel.org
17459 S:      Maintained
17460 W:      https://linuxtv.org
17461 T:      git git://linuxtv.org/media_tree.git
17462 F:      drivers/media/i2c/tea6420*
17463
17464 TEAM DRIVER
17465 M:      Jiri Pirko <jiri@resnulli.us>
17466 L:      netdev@vger.kernel.org
17467 S:      Supported
17468 F:      drivers/net/team/
17469 F:      include/linux/if_team.h
17470 F:      include/uapi/linux/if_team.h
17471
17472 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
17473 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
17474 S:      Maintained
17475 F:      arch/x86/platform/ts5500/
17476
17477 TECHNOTREND USB IR RECEIVER
17478 M:      Sean Young <sean@mess.org>
17479 L:      linux-media@vger.kernel.org
17480 S:      Maintained
17481 F:      drivers/media/rc/ttusbir.c
17482
17483 TECHWELL TW9910 VIDEO DECODER
17484 L:      linux-media@vger.kernel.org
17485 S:      Orphan
17486 F:      drivers/media/i2c/tw9910.c
17487 F:      include/media/i2c/tw9910.h
17488
17489 TEE SUBSYSTEM
17490 M:      Jens Wiklander <jens.wiklander@linaro.org>
17491 L:      op-tee@lists.trustedfirmware.org
17492 S:      Maintained
17493 F:      Documentation/staging/tee.rst
17494 F:      drivers/tee/
17495 F:      include/linux/tee_drv.h
17496 F:      include/uapi/linux/tee.h
17497
17498 TEGRA ARCHITECTURE SUPPORT
17499 M:      Thierry Reding <thierry.reding@gmail.com>
17500 M:      Jonathan Hunter <jonathanh@nvidia.com>
17501 L:      linux-tegra@vger.kernel.org
17502 S:      Supported
17503 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
17504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
17505 N:      [^a-z]tegra
17506
17507 TEGRA CLOCK DRIVER
17508 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
17509 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
17510 S:      Supported
17511 F:      drivers/clk/tegra/
17512
17513 TEGRA DMA DRIVERS
17514 M:      Laxman Dewangan <ldewangan@nvidia.com>
17515 M:      Jon Hunter <jonathanh@nvidia.com>
17516 S:      Supported
17517 F:      drivers/dma/tegra*
17518
17519 TEGRA I2C DRIVER
17520 M:      Laxman Dewangan <ldewangan@nvidia.com>
17521 R:      Dmitry Osipenko <digetx@gmail.com>
17522 S:      Supported
17523 F:      drivers/i2c/busses/i2c-tegra.c
17524
17525 TEGRA IOMMU DRIVERS
17526 M:      Thierry Reding <thierry.reding@gmail.com>
17527 R:      Krishna Reddy <vdumpa@nvidia.com>
17528 L:      linux-tegra@vger.kernel.org
17529 S:      Supported
17530 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
17531 F:      drivers/iommu/tegra*
17532
17533 TEGRA KBC DRIVER
17534 M:      Laxman Dewangan <ldewangan@nvidia.com>
17535 S:      Supported
17536 F:      drivers/input/keyboard/tegra-kbc.c
17537
17538 TEGRA NAND DRIVER
17539 M:      Stefan Agner <stefan@agner.ch>
17540 M:      Lucas Stach <dev@lynxeye.de>
17541 S:      Maintained
17542 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
17543 F:      drivers/mtd/nand/raw/tegra_nand.c
17544
17545 TEGRA PWM DRIVER
17546 M:      Thierry Reding <thierry.reding@gmail.com>
17547 S:      Supported
17548 F:      drivers/pwm/pwm-tegra.c
17549
17550 TEGRA SERIAL DRIVER
17551 M:      Laxman Dewangan <ldewangan@nvidia.com>
17552 S:      Supported
17553 F:      drivers/tty/serial/serial-tegra.c
17554
17555 TEGRA SPI DRIVER
17556 M:      Laxman Dewangan <ldewangan@nvidia.com>
17557 S:      Supported
17558 F:      drivers/spi/spi-tegra*
17559
17560 TEGRA QUAD SPI DRIVER
17561 M:      Thierry Reding <thierry.reding@gmail.com>
17562 M:      Jonathan Hunter <jonathanh@nvidia.com>
17563 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
17564 L:      linux-tegra@vger.kernel.org
17565 S:      Maintained
17566 F:      drivers/spi/spi-tegra210-quad.c
17567
17568 TEGRA VIDEO DRIVER
17569 M:      Thierry Reding <thierry.reding@gmail.com>
17570 M:      Jonathan Hunter <jonathanh@nvidia.com>
17571 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
17572 L:      linux-media@vger.kernel.org
17573 L:      linux-tegra@vger.kernel.org
17574 S:      Maintained
17575 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
17576 F:      drivers/staging/media/tegra-video/
17577
17578 TEGRA XUSB PADCTL DRIVER
17579 M:      JC Kuo <jckuo@nvidia.com>
17580 S:      Supported
17581 F:      drivers/phy/tegra/xusb*
17582
17583 TEHUTI ETHERNET DRIVER
17584 M:      Andy Gospodarek <andy@greyhouse.net>
17585 L:      netdev@vger.kernel.org
17586 S:      Supported
17587 F:      drivers/net/ethernet/tehuti/*
17588
17589 TELECOM CLOCK DRIVER FOR MCPL0010
17590 M:      Mark Gross <mark.gross@intel.com>
17591 S:      Supported
17592 F:      drivers/char/tlclk.c
17593
17594 TEMPO SEMICONDUCTOR DRIVERS
17595 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
17596 S:      Maintained
17597 F:      Documentation/devicetree/bindings/sound/tscs*.txt
17598 F:      sound/soc/codecs/tscs*.c
17599 F:      sound/soc/codecs/tscs*.h
17600
17601 TENSILICA XTENSA PORT (xtensa)
17602 M:      Chris Zankel <chris@zankel.net>
17603 M:      Max Filippov <jcmvbkbc@gmail.com>
17604 L:      linux-xtensa@linux-xtensa.org
17605 S:      Maintained
17606 T:      git git://github.com/czankel/xtensa-linux.git
17607 F:      arch/xtensa/
17608 F:      drivers/irqchip/irq-xtensa-*
17609
17610 TEXAS INSTRUMENTS ASoC DRIVERS
17611 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
17612 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17613 S:      Maintained
17614 F:      sound/soc/ti/
17615
17616 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
17617 M:      Ricardo Ribalda <ribalda@kernel.org>
17618 L:      linux-iio@vger.kernel.org
17619 S:      Supported
17620 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
17621 F:      drivers/iio/dac/ti-dac7612.c
17622
17623 TEXAS INSTRUMENTS DMA DRIVERS
17624 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
17625 L:      dmaengine@vger.kernel.org
17626 S:      Maintained
17627 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
17628 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
17629 F:      Documentation/devicetree/bindings/dma/ti/
17630 F:      drivers/dma/ti/
17631 X:      drivers/dma/ti/cppi41.c
17632 F:      include/linux/dma/k3-udma-glue.h
17633 F:      include/linux/dma/ti-cppi5.h
17634 F:      include/linux/dma/k3-psil.h
17635
17636 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
17637 M:      Nishanth Menon <nm@ti.com>
17638 M:      Tero Kristo <kristo@kernel.org>
17639 M:      Santosh Shilimkar <ssantosh@kernel.org>
17640 L:      linux-arm-kernel@lists.infradead.org
17641 S:      Maintained
17642 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
17643 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
17644 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
17645 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
17646 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
17647 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
17648 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
17649 F:      drivers/clk/keystone/sci-clk.c
17650 F:      drivers/firmware/ti_sci*
17651 F:      drivers/irqchip/irq-ti-sci-inta.c
17652 F:      drivers/irqchip/irq-ti-sci-intr.c
17653 F:      drivers/reset/reset-ti-sci.c
17654 F:      drivers/soc/ti/ti_sci_inta_msi.c
17655 F:      drivers/soc/ti/ti_sci_pm_domains.c
17656 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
17657 F:      include/linux/soc/ti/ti_sci_inta_msi.h
17658 F:      include/linux/soc/ti/ti_sci_protocol.h
17659
17660 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
17661 M:      Robert Marko <robert.marko@sartura.hr>
17662 M:      Luka Perkov <luka.perkov@sartura.hr>
17663 L:      linux-hwmon@vger.kernel.org
17664 S:      Maintained
17665 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
17666 F:      Documentation/hwmon/tps23861.rst
17667 F:      drivers/hwmon/tps23861.c
17668
17669 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
17670 M:      Hans Verkuil <hverkuil@xs4all.nl>
17671 L:      linux-media@vger.kernel.org
17672 S:      Maintained
17673 W:      https://linuxtv.org
17674 T:      git git://linuxtv.org/media_tree.git
17675 F:      drivers/media/radio/radio-raremono.c
17676
17677 THERMAL
17678 M:      Zhang Rui <rui.zhang@intel.com>
17679 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
17680 R:      Amit Kucheria <amitk@kernel.org>
17681 L:      linux-pm@vger.kernel.org
17682 S:      Supported
17683 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
17685 F:      Documentation/devicetree/bindings/thermal/
17686 F:      drivers/thermal/
17687 F:      include/linux/cpu_cooling.h
17688 F:      include/linux/thermal.h
17689 F:      include/uapi/linux/thermal.h
17690
17691 THERMAL DRIVER FOR AMLOGIC SOCS
17692 M:      Guillaume La Roque <glaroque@baylibre.com>
17693 L:      linux-pm@vger.kernel.org
17694 L:      linux-amlogic@lists.infradead.org
17695 S:      Supported
17696 W:      http://linux-meson.com/
17697 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
17698 F:      drivers/thermal/amlogic_thermal.c
17699
17700 THERMAL/CPU_COOLING
17701 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
17702 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
17703 M:      Viresh Kumar <viresh.kumar@linaro.org>
17704 M:      Javi Merino <javi.merino@kernel.org>
17705 L:      linux-pm@vger.kernel.org
17706 S:      Supported
17707 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
17708 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
17709 F:      drivers/thermal/cpufreq_cooling.c
17710 F:      drivers/thermal/cpuidle_cooling.c
17711 F:      include/linux/cpu_cooling.h
17712
17713 THERMAL/POWER_ALLOCATOR
17714 M:      Lukasz Luba <lukasz.luba@arm.com>
17715 L:      linux-pm@vger.kernel.org
17716 S:      Maintained
17717 F:      Documentation/driver-api/thermal/power_allocator.rst
17718 F:      drivers/thermal/gov_power_allocator.c
17719 F:      include/trace/events/thermal_power_allocator.h
17720
17721 THINKPAD ACPI EXTRAS DRIVER
17722 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
17723 L:      ibm-acpi-devel@lists.sourceforge.net
17724 L:      platform-driver-x86@vger.kernel.org
17725 S:      Maintained
17726 W:      http://ibm-acpi.sourceforge.net
17727 W:      http://thinkwiki.org/wiki/Ibm-acpi
17728 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
17729 F:      drivers/platform/x86/thinkpad_acpi.c
17730
17731 THUNDERBOLT DMA TRAFFIC TEST DRIVER
17732 M:      Isaac Hazan <isaac.hazan@intel.com>
17733 L:      linux-usb@vger.kernel.org
17734 S:      Maintained
17735 F:      drivers/thunderbolt/dma_test.c
17736
17737 THUNDERBOLT DRIVER
17738 M:      Andreas Noever <andreas.noever@gmail.com>
17739 M:      Michael Jamet <michael.jamet@intel.com>
17740 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
17741 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
17742 L:      linux-usb@vger.kernel.org
17743 S:      Maintained
17744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
17745 F:      Documentation/admin-guide/thunderbolt.rst
17746 F:      drivers/thunderbolt/
17747 F:      include/linux/thunderbolt.h
17748
17749 THUNDERBOLT NETWORK DRIVER
17750 M:      Michael Jamet <michael.jamet@intel.com>
17751 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
17752 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
17753 L:      netdev@vger.kernel.org
17754 S:      Maintained
17755 F:      drivers/net/thunderbolt.c
17756
17757 THUNDERX GPIO DRIVER
17758 M:      Robert Richter <rric@kernel.org>
17759 S:      Odd Fixes
17760 F:      drivers/gpio/gpio-thunderx.c
17761
17762 TI AM437X VPFE DRIVER
17763 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17764 L:      linux-media@vger.kernel.org
17765 S:      Maintained
17766 W:      https://linuxtv.org
17767 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17768 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17769 F:      drivers/media/platform/am437x/
17770
17771 TI BANDGAP AND THERMAL DRIVER
17772 M:      Eduardo Valentin <edubezval@gmail.com>
17773 M:      Keerthy <j-keerthy@ti.com>
17774 L:      linux-pm@vger.kernel.org
17775 L:      linux-omap@vger.kernel.org
17776 S:      Maintained
17777 F:      drivers/thermal/ti-soc-thermal/
17778
17779 TI BQ27XXX POWER SUPPLY DRIVER
17780 R:      Dan Murphy <dmurphy@ti.com>
17781 F:      drivers/power/supply/bq27xxx_battery.c
17782 F:      drivers/power/supply/bq27xxx_battery_i2c.c
17783 F:      include/linux/power/bq27xxx_battery.h
17784
17785 TI CDCE706 CLOCK DRIVER
17786 M:      Max Filippov <jcmvbkbc@gmail.com>
17787 S:      Maintained
17788 F:      drivers/clk/clk-cdce706.c
17789
17790 TI CLOCK DRIVER
17791 M:      Tero Kristo <kristo@kernel.org>
17792 L:      linux-omap@vger.kernel.org
17793 S:      Odd Fixes
17794 F:      drivers/clk/ti/
17795 F:      include/linux/clk/ti.h
17796
17797 TI DAVINCI MACHINE SUPPORT
17798 M:      Sekhar Nori <nsekhar@ti.com>
17799 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
17800 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17801 S:      Supported
17802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
17803 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
17804 F:      arch/arm/boot/dts/da850*
17805 F:      arch/arm/mach-davinci/
17806 F:      drivers/i2c/busses/i2c-davinci.c
17807
17808 TI DAVINCI SERIES CLOCK DRIVER
17809 M:      David Lechner <david@lechnology.com>
17810 R:      Sekhar Nori <nsekhar@ti.com>
17811 S:      Maintained
17812 F:      Documentation/devicetree/bindings/clock/ti/davinci/
17813 F:      drivers/clk/davinci/
17814
17815 TI DAVINCI SERIES GPIO DRIVER
17816 M:      Keerthy <j-keerthy@ti.com>
17817 L:      linux-gpio@vger.kernel.org
17818 S:      Maintained
17819 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
17820 F:      drivers/gpio/gpio-davinci.c
17821
17822 TI DAVINCI SERIES MEDIA DRIVER
17823 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17824 L:      linux-media@vger.kernel.org
17825 S:      Maintained
17826 W:      https://linuxtv.org
17827 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17828 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17829 F:      drivers/media/platform/davinci/
17830 F:      include/media/davinci/
17831
17832 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
17833 R:      David Lechner <david@lechnology.com>
17834 L:      linux-iio@vger.kernel.org
17835 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
17836 F:      drivers/counter/ti-eqep.c
17837
17838 TI ETHERNET SWITCH DRIVER (CPSW)
17839 R:      Grygorii Strashko <grygorii.strashko@ti.com>
17840 L:      linux-omap@vger.kernel.org
17841 L:      netdev@vger.kernel.org
17842 S:      Maintained
17843 F:      drivers/net/ethernet/ti/cpsw*
17844 F:      drivers/net/ethernet/ti/davinci*
17845
17846 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
17847 M:      Alex Dubov <oakad@yahoo.com>
17848 S:      Maintained
17849 W:      http://tifmxx.berlios.de/
17850 F:      drivers/memstick/host/tifm_ms.c
17851 F:      drivers/misc/tifm*
17852 F:      drivers/mmc/host/tifm_sd.c
17853 F:      include/linux/tifm.h
17854
17855 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
17856 M:      Santosh Shilimkar <ssantosh@kernel.org>
17857 L:      linux-kernel@vger.kernel.org
17858 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17859 S:      Maintained
17860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
17861 F:      drivers/soc/ti/*
17862
17863 TI LM49xxx FAMILY ASoC CODEC DRIVERS
17864 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
17865 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
17866 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17867 S:      Maintained
17868 F:      sound/soc/codecs/isabelle*
17869 F:      sound/soc/codecs/lm49453*
17870
17871 TI LP855x BACKLIGHT DRIVER
17872 M:      Milo Kim <milo.kim@ti.com>
17873 S:      Maintained
17874 F:      Documentation/driver-api/backlight/lp855x-driver.rst
17875 F:      drivers/video/backlight/lp855x_bl.c
17876 F:      include/linux/platform_data/lp855x.h
17877
17878 TI LP8727 CHARGER DRIVER
17879 M:      Milo Kim <milo.kim@ti.com>
17880 S:      Maintained
17881 F:      drivers/power/supply/lp8727_charger.c
17882 F:      include/linux/platform_data/lp8727.h
17883
17884 TI LP8788 MFD DRIVER
17885 M:      Milo Kim <milo.kim@ti.com>
17886 S:      Maintained
17887 F:      drivers/iio/adc/lp8788_adc.c
17888 F:      drivers/leds/leds-lp8788.c
17889 F:      drivers/mfd/lp8788*.c
17890 F:      drivers/power/supply/lp8788-charger.c
17891 F:      drivers/regulator/lp8788-*.c
17892 F:      include/linux/mfd/lp8788*.h
17893
17894 TI NETCP ETHERNET DRIVER
17895 M:      Wingman Kwok <w-kwok2@ti.com>
17896 M:      Murali Karicheri <m-karicheri2@ti.com>
17897 L:      netdev@vger.kernel.org
17898 S:      Maintained
17899 F:      drivers/net/ethernet/ti/netcp*
17900
17901 TI PCM3060 ASoC CODEC DRIVER
17902 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
17903 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17904 S:      Maintained
17905 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
17906 F:      sound/soc/codecs/pcm3060*
17907
17908 TI TAS571X FAMILY ASoC CODEC DRIVER
17909 M:      Kevin Cernekee <cernekee@chromium.org>
17910 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17911 S:      Odd Fixes
17912 F:      sound/soc/codecs/tas571x*
17913
17914 TI TCAN4X5X DEVICE DRIVER
17915 M:      Dan Murphy <dmurphy@ti.com>
17916 L:      linux-can@vger.kernel.org
17917 S:      Maintained
17918 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
17919 F:      drivers/net/can/m_can/tcan4x5x*
17920
17921 TI TRF7970A NFC DRIVER
17922 M:      Mark Greer <mgreer@animalcreek.com>
17923 L:      linux-wireless@vger.kernel.org
17924 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
17925 S:      Supported
17926 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
17927 F:      drivers/nfc/trf7970a.c
17928
17929 TI TWL4030 SERIES SOC CODEC DRIVER
17930 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
17931 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17932 S:      Maintained
17933 F:      sound/soc/codecs/twl4030*
17934
17935 TI VPE/CAL DRIVERS
17936 M:      Benoit Parrot <bparrot@ti.com>
17937 L:      linux-media@vger.kernel.org
17938 S:      Maintained
17939 W:      http://linuxtv.org/
17940 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17941 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
17942 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
17943 F:      drivers/media/platform/ti-vpe/
17944
17945 TI WILINK WIRELESS DRIVERS
17946 L:      linux-wireless@vger.kernel.org
17947 S:      Orphan
17948 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
17949 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
17950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
17951 F:      drivers/net/wireless/ti/
17952 F:      include/linux/wl12xx.h
17953
17954 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
17955 M:      John Stultz <john.stultz@linaro.org>
17956 M:      Thomas Gleixner <tglx@linutronix.de>
17957 R:      Stephen Boyd <sboyd@kernel.org>
17958 L:      linux-kernel@vger.kernel.org
17959 S:      Supported
17960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
17961 F:      include/linux/clocksource.h
17962 F:      include/linux/time.h
17963 F:      include/linux/timex.h
17964 F:      include/uapi/linux/time.h
17965 F:      include/uapi/linux/timex.h
17966 F:      kernel/time/alarmtimer.c
17967 F:      kernel/time/clocksource.c
17968 F:      kernel/time/ntp.c
17969 F:      kernel/time/time*.c
17970 F:      tools/testing/selftests/timers/
17971
17972 TIPC NETWORK LAYER
17973 M:      Jon Maloy <jmaloy@redhat.com>
17974 M:      Ying Xue <ying.xue@windriver.com>
17975 L:      netdev@vger.kernel.org (core kernel code)
17976 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
17977 S:      Maintained
17978 W:      http://tipc.sourceforge.net/
17979 F:      include/uapi/linux/tipc*.h
17980 F:      net/tipc/
17981
17982 TLAN NETWORK DRIVER
17983 M:      Samuel Chessman <chessman@tux.org>
17984 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
17985 S:      Maintained
17986 W:      http://sourceforge.net/projects/tlan/
17987 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
17988 F:      drivers/net/ethernet/ti/tlan.*
17989
17990 TM6000 VIDEO4LINUX DRIVER
17991 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17992 L:      linux-media@vger.kernel.org
17993 S:      Odd fixes
17994 W:      https://linuxtv.org
17995 T:      git git://linuxtv.org/media_tree.git
17996 F:      Documentation/admin-guide/media/tm6000*
17997 F:      drivers/media/usb/tm6000/
17998
17999 TMIO/SDHI MMC DRIVER
18000 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
18001 L:      linux-mmc@vger.kernel.org
18002 S:      Supported
18003 F:      drivers/mmc/host/renesas_sdhi*
18004 F:      drivers/mmc/host/tmio_mmc*
18005 F:      include/linux/mfd/tmio.h
18006
18007 TMP401 HARDWARE MONITOR DRIVER
18008 M:      Guenter Roeck <linux@roeck-us.net>
18009 L:      linux-hwmon@vger.kernel.org
18010 S:      Maintained
18011 F:      Documentation/hwmon/tmp401.rst
18012 F:      drivers/hwmon/tmp401.c
18013
18014 TMP513 HARDWARE MONITOR DRIVER
18015 M:      Eric Tremblay <etremblay@distech-controls.com>
18016 L:      linux-hwmon@vger.kernel.org
18017 S:      Maintained
18018 F:      Documentation/hwmon/tmp513.rst
18019 F:      drivers/hwmon/tmp513.c
18020
18021 TMPFS (SHMEM FILESYSTEM)
18022 M:      Hugh Dickins <hughd@google.com>
18023 L:      linux-mm@kvack.org
18024 S:      Maintained
18025 F:      include/linux/shmem_fs.h
18026 F:      mm/shmem.c
18027
18028 TOMOYO SECURITY MODULE
18029 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
18030 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
18031 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
18032 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
18033 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
18034 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
18035 S:      Maintained
18036 W:      https://tomoyo.osdn.jp/
18037 F:      security/tomoyo/
18038
18039 TOPSTAR LAPTOP EXTRAS DRIVER
18040 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
18041 L:      platform-driver-x86@vger.kernel.org
18042 S:      Maintained
18043 F:      drivers/platform/x86/topstar-laptop.c
18044
18045 TORTURE-TEST MODULES
18046 M:      Davidlohr Bueso <dave@stgolabs.net>
18047 M:      "Paul E. McKenney" <paulmck@kernel.org>
18048 M:      Josh Triplett <josh@joshtriplett.org>
18049 L:      linux-kernel@vger.kernel.org
18050 S:      Supported
18051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18052 F:      Documentation/RCU/torture.rst
18053 F:      kernel/locking/locktorture.c
18054 F:      kernel/rcu/rcuscale.c
18055 F:      kernel/rcu/rcutorture.c
18056 F:      kernel/rcu/refscale.c
18057 F:      kernel/torture.c
18058
18059 TOSHIBA ACPI EXTRAS DRIVER
18060 M:      Azael Avalos <coproscefalo@gmail.com>
18061 L:      platform-driver-x86@vger.kernel.org
18062 S:      Maintained
18063 F:      drivers/platform/x86/toshiba_acpi.c
18064
18065 TOSHIBA BLUETOOTH DRIVER
18066 M:      Azael Avalos <coproscefalo@gmail.com>
18067 L:      platform-driver-x86@vger.kernel.org
18068 S:      Maintained
18069 F:      drivers/platform/x86/toshiba_bluetooth.c
18070
18071 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
18072 M:      Azael Avalos <coproscefalo@gmail.com>
18073 L:      platform-driver-x86@vger.kernel.org
18074 S:      Maintained
18075 F:      drivers/platform/x86/toshiba_haps.c
18076
18077 TOSHIBA SMM DRIVER
18078 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
18079 S:      Maintained
18080 W:      http://www.buzzard.org.uk/toshiba/
18081 F:      drivers/char/toshiba.c
18082 F:      include/linux/toshiba.h
18083 F:      include/uapi/linux/toshiba.h
18084
18085 TOSHIBA TC358743 DRIVER
18086 M:      Mats Randgaard <matrandg@cisco.com>
18087 L:      linux-media@vger.kernel.org
18088 S:      Maintained
18089 F:      drivers/media/i2c/tc358743*
18090 F:      include/media/i2c/tc358743.h
18091
18092 TOSHIBA WMI HOTKEYS DRIVER
18093 M:      Azael Avalos <coproscefalo@gmail.com>
18094 L:      platform-driver-x86@vger.kernel.org
18095 S:      Maintained
18096 F:      drivers/platform/x86/toshiba-wmi.c
18097
18098 TPM DEVICE DRIVER
18099 M:      Peter Huewe <peterhuewe@gmx.de>
18100 M:      Jarkko Sakkinen <jarkko@kernel.org>
18101 R:      Jason Gunthorpe <jgg@ziepe.ca>
18102 L:      linux-integrity@vger.kernel.org
18103 S:      Maintained
18104 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
18105 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
18106 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
18107 F:      drivers/char/tpm/
18108
18109 TRACING
18110 M:      Steven Rostedt <rostedt@goodmis.org>
18111 M:      Ingo Molnar <mingo@redhat.com>
18112 S:      Maintained
18113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
18114 F:      Documentation/trace/ftrace.rst
18115 F:      arch/*/*/*/ftrace.h
18116 F:      arch/*/kernel/ftrace.c
18117 F:      fs/tracefs/
18118 F:      include/*/ftrace.h
18119 F:      include/linux/trace*.h
18120 F:      include/trace/
18121 F:      kernel/trace/
18122 F:      tools/testing/selftests/ftrace/
18123
18124 TRACING MMIO ACCESSES (MMIOTRACE)
18125 M:      Steven Rostedt <rostedt@goodmis.org>
18126 M:      Ingo Molnar <mingo@kernel.org>
18127 R:      Karol Herbst <karolherbst@gmail.com>
18128 R:      Pekka Paalanen <ppaalanen@gmail.com>
18129 L:      linux-kernel@vger.kernel.org
18130 L:      nouveau@lists.freedesktop.org
18131 S:      Maintained
18132 F:      arch/x86/mm/kmmio.c
18133 F:      arch/x86/mm/mmio-mod.c
18134 F:      arch/x86/mm/testmmiotrace.c
18135 F:      include/linux/mmiotrace.h
18136 F:      kernel/trace/trace_mmiotrace.c
18137
18138 TRIVIAL PATCHES
18139 M:      Jiri Kosina <trivial@kernel.org>
18140 S:      Maintained
18141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
18142 K:      ^Subject:.*(?i)trivial
18143
18144 TTY LAYER
18145 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18146 M:      Jiri Slaby <jirislaby@kernel.org>
18147 S:      Supported
18148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
18149 F:      Documentation/driver-api/serial/
18150 F:      drivers/tty/
18151 F:      drivers/tty/serial/serial_core.c
18152 F:      include/linux/serial.h
18153 F:      include/linux/serial_core.h
18154 F:      include/linux/tty.h
18155 F:      include/uapi/linux/serial.h
18156 F:      include/uapi/linux/serial_core.h
18157 F:      include/uapi/linux/tty.h
18158
18159 TUA9001 MEDIA DRIVER
18160 M:      Antti Palosaari <crope@iki.fi>
18161 L:      linux-media@vger.kernel.org
18162 S:      Maintained
18163 W:      https://linuxtv.org
18164 W:      http://palosaari.fi/linux/
18165 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18166 T:      git git://linuxtv.org/anttip/media_tree.git
18167 F:      drivers/media/tuners/tua9001*
18168
18169 TULIP NETWORK DRIVERS
18170 L:      netdev@vger.kernel.org
18171 L:      linux-parisc@vger.kernel.org
18172 S:      Orphan
18173 F:      drivers/net/ethernet/dec/tulip/
18174
18175 TUN/TAP driver
18176 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
18177 S:      Maintained
18178 W:      http://vtun.sourceforge.net/tun
18179 F:      Documentation/networking/tuntap.rst
18180 F:      arch/um/os-Linux/drivers/
18181
18182 TURBOCHANNEL SUBSYSTEM
18183 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
18184 M:      Ralf Baechle <ralf@linux-mips.org>
18185 L:      linux-mips@vger.kernel.org
18186 S:      Maintained
18187 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
18188 F:      drivers/tc/
18189 F:      include/linux/tc.h
18190
18191 TURBOSTAT UTILITY
18192 M:      "Len Brown" <lenb@kernel.org>
18193 L:      linux-pm@vger.kernel.org
18194 S:      Supported
18195 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18196 B:      https://bugzilla.kernel.org
18197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
18198 F:      tools/power/x86/turbostat/
18199
18200 TW5864 VIDEO4LINUX DRIVER
18201 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18202 M:      Anton Sviridenko <anton@corp.bluecherry.net>
18203 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
18204 M:      Andrey Utkin <andrey_utkin@fastmail.com>
18205 L:      linux-media@vger.kernel.org
18206 S:      Supported
18207 F:      drivers/media/pci/tw5864/
18208
18209 TW68 VIDEO4LINUX DRIVER
18210 M:      Hans Verkuil <hverkuil@xs4all.nl>
18211 L:      linux-media@vger.kernel.org
18212 S:      Odd Fixes
18213 W:      https://linuxtv.org
18214 T:      git git://linuxtv.org/media_tree.git
18215 F:      drivers/media/pci/tw68/
18216
18217 TW686X VIDEO4LINUX DRIVER
18218 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18219 L:      linux-media@vger.kernel.org
18220 S:      Maintained
18221 W:      http://linuxtv.org
18222 T:      git git://linuxtv.org/media_tree.git
18223 F:      drivers/media/pci/tw686x/
18224
18225 UACCE ACCELERATOR FRAMEWORK
18226 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
18227 M:      Zhou Wang <wangzhou1@hisilicon.com>
18228 L:      linux-accelerators@lists.ozlabs.org
18229 L:      linux-kernel@vger.kernel.org
18230 S:      Maintained
18231 F:      Documentation/ABI/testing/sysfs-driver-uacce
18232 F:      Documentation/misc-devices/uacce.rst
18233 F:      drivers/misc/uacce/
18234 F:      include/linux/uacce.h
18235 F:      include/uapi/misc/uacce/
18236
18237 UBI FILE SYSTEM (UBIFS)
18238 M:      Richard Weinberger <richard@nod.at>
18239 L:      linux-mtd@lists.infradead.org
18240 S:      Supported
18241 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
18242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18244 F:      Documentation/filesystems/ubifs-authentication.rst
18245 F:      Documentation/filesystems/ubifs.rst
18246 F:      fs/ubifs/
18247
18248 UCLINUX (M68KNOMMU AND COLDFIRE)
18249 M:      Greg Ungerer <gerg@linux-m68k.org>
18250 L:      linux-m68k@lists.linux-m68k.org
18251 L:      uclinux-dev@uclinux.org  (subscribers-only)
18252 S:      Maintained
18253 W:      http://www.linux-m68k.org/
18254 W:      http://www.uclinux.org/
18255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
18256 F:      arch/m68k/*/*_no.*
18257 F:      arch/m68k/68*/
18258 F:      arch/m68k/coldfire/
18259 F:      arch/m68k/include/asm/*_no.*
18260
18261 UDF FILESYSTEM
18262 M:      Jan Kara <jack@suse.com>
18263 S:      Maintained
18264 F:      Documentation/filesystems/udf.rst
18265 F:      fs/udf/
18266
18267 UDRAW TABLET
18268 M:      Bastien Nocera <hadess@hadess.net>
18269 L:      linux-input@vger.kernel.org
18270 S:      Maintained
18271 F:      drivers/hid/hid-udraw-ps3.c
18272
18273 UFS FILESYSTEM
18274 M:      Evgeniy Dushistov <dushistov@mail.ru>
18275 S:      Maintained
18276 F:      Documentation/admin-guide/ufs.rst
18277 F:      fs/ufs/
18278
18279 UHID USERSPACE HID IO DRIVER
18280 M:      David Rheinsberg <david.rheinsberg@gmail.com>
18281 L:      linux-input@vger.kernel.org
18282 S:      Maintained
18283 F:      drivers/hid/uhid.c
18284 F:      include/uapi/linux/uhid.h
18285
18286 ULPI BUS
18287 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18288 L:      linux-usb@vger.kernel.org
18289 S:      Maintained
18290 F:      drivers/usb/common/ulpi.c
18291 F:      include/linux/ulpi/
18292
18293 UNICODE SUBSYSTEM
18294 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
18295 L:      linux-fsdevel@vger.kernel.org
18296 S:      Supported
18297 F:      fs/unicode/
18298
18299 UNIFDEF
18300 M:      Tony Finch <dot@dotat.at>
18301 S:      Maintained
18302 W:      http://dotat.at/prog/unifdef
18303 F:      scripts/unifdef.c
18304
18305 UNIFORM CDROM DRIVER
18306 M:      Jens Axboe <axboe@kernel.dk>
18307 S:      Maintained
18308 W:      http://www.kernel.dk
18309 F:      Documentation/cdrom/
18310 F:      drivers/cdrom/cdrom.c
18311 F:      include/linux/cdrom.h
18312 F:      include/uapi/linux/cdrom.h
18313
18314 UNISYS S-PAR DRIVERS
18315 M:      David Kershner <david.kershner@unisys.com>
18316 L:      sparmaintainer@unisys.com (Unisys internal)
18317 S:      Supported
18318 F:      drivers/staging/unisys/
18319 F:      drivers/visorbus/
18320 F:      include/linux/visorbus.h
18321
18322 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
18323 R:      Alim Akhtar <alim.akhtar@samsung.com>
18324 R:      Avri Altman <avri.altman@wdc.com>
18325 L:      linux-scsi@vger.kernel.org
18326 S:      Supported
18327 F:      Documentation/scsi/ufs.rst
18328 F:      drivers/scsi/ufs/
18329
18330 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
18331 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
18332 L:      linux-scsi@vger.kernel.org
18333 S:      Supported
18334 F:      drivers/scsi/ufs/*dwc*
18335
18336 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
18337 M:      Stanley Chu <stanley.chu@mediatek.com>
18338 L:      linux-scsi@vger.kernel.org
18339 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
18340 S:      Maintained
18341 F:      drivers/scsi/ufs/ufs-mediatek*
18342
18343 UNSORTED BLOCK IMAGES (UBI)
18344 M:      Richard Weinberger <richard@nod.at>
18345 L:      linux-mtd@lists.infradead.org
18346 S:      Supported
18347 W:      http://www.linux-mtd.infradead.org/
18348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18350 F:      drivers/mtd/ubi/
18351 F:      include/linux/mtd/ubi.h
18352 F:      include/uapi/mtd/ubi-user.h
18353
18354 USB "USBNET" DRIVER FRAMEWORK
18355 M:      Oliver Neukum <oneukum@suse.com>
18356 L:      netdev@vger.kernel.org
18357 S:      Maintained
18358 W:      http://www.linux-usb.org/usbnet
18359 F:      drivers/net/usb/usbnet.c
18360 F:      include/linux/usb/usbnet.h
18361
18362 USB ACM DRIVER
18363 M:      Oliver Neukum <oneukum@suse.com>
18364 L:      linux-usb@vger.kernel.org
18365 S:      Maintained
18366 F:      Documentation/usb/acm.rst
18367 F:      drivers/usb/class/cdc-acm.*
18368
18369 USB APPLE MFI FASTCHARGE DRIVER
18370 M:      Bastien Nocera <hadess@hadess.net>
18371 L:      linux-usb@vger.kernel.org
18372 S:      Maintained
18373 F:      drivers/usb/misc/apple-mfi-fastcharge.c
18374
18375 USB AR5523 WIRELESS DRIVER
18376 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
18377 L:      linux-wireless@vger.kernel.org
18378 S:      Maintained
18379 F:      drivers/net/wireless/ath/ar5523/
18380
18381 USB ATTACHED SCSI
18382 M:      Oliver Neukum <oneukum@suse.com>
18383 L:      linux-usb@vger.kernel.org
18384 L:      linux-scsi@vger.kernel.org
18385 S:      Maintained
18386 F:      drivers/usb/storage/uas.c
18387
18388 USB CDC ETHERNET DRIVER
18389 M:      Oliver Neukum <oliver@neukum.org>
18390 L:      linux-usb@vger.kernel.org
18391 S:      Maintained
18392 F:      drivers/net/usb/cdc_*.c
18393 F:      include/uapi/linux/usb/cdc.h
18394
18395 USB CHAOSKEY DRIVER
18396 M:      Keith Packard <keithp@keithp.com>
18397 L:      linux-usb@vger.kernel.org
18398 S:      Maintained
18399 F:      drivers/usb/misc/chaoskey.c
18400
18401 USB CYPRESS C67X00 DRIVER
18402 M:      Peter Korsgaard <jacmet@sunsite.dk>
18403 L:      linux-usb@vger.kernel.org
18404 S:      Maintained
18405 F:      drivers/usb/c67x00/
18406
18407 USB DAVICOM DM9601 DRIVER
18408 M:      Peter Korsgaard <jacmet@sunsite.dk>
18409 L:      netdev@vger.kernel.org
18410 S:      Maintained
18411 W:      http://www.linux-usb.org/usbnet
18412 F:      drivers/net/usb/dm9601.c
18413
18414 USB EHCI DRIVER
18415 M:      Alan Stern <stern@rowland.harvard.edu>
18416 L:      linux-usb@vger.kernel.org
18417 S:      Maintained
18418 F:      Documentation/usb/ehci.rst
18419 F:      drivers/usb/host/ehci*
18420
18421 USB GADGET/PERIPHERAL SUBSYSTEM
18422 M:      Felipe Balbi <balbi@kernel.org>
18423 L:      linux-usb@vger.kernel.org
18424 S:      Maintained
18425 W:      http://www.linux-usb.org/gadget
18426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18427 F:      drivers/usb/gadget/
18428 F:      include/linux/usb/gadget*
18429
18430 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
18431 M:      Jiri Kosina <jikos@kernel.org>
18432 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
18433 L:      linux-usb@vger.kernel.org
18434 S:      Maintained
18435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
18436 F:      Documentation/hid/hiddev.rst
18437 F:      drivers/hid/usbhid/
18438
18439 USB INTEL XHCI ROLE MUX DRIVER
18440 M:      Hans de Goede <hdegoede@redhat.com>
18441 L:      linux-usb@vger.kernel.org
18442 S:      Maintained
18443 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
18444
18445 USB IP DRIVER FOR HISILICON KIRIN
18446 M:      Yu Chen <chenyu56@huawei.com>
18447 M:      Binghui Wang <wangbinghui@hisilicon.com>
18448 L:      linux-usb@vger.kernel.org
18449 S:      Maintained
18450 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
18451 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
18452
18453 USB ISP116X DRIVER
18454 M:      Olav Kongas <ok@artecdesign.ee>
18455 L:      linux-usb@vger.kernel.org
18456 S:      Maintained
18457 F:      drivers/usb/host/isp116x*
18458 F:      include/linux/usb/isp116x.h
18459
18460 USB LAN78XX ETHERNET DRIVER
18461 M:      Woojung Huh <woojung.huh@microchip.com>
18462 M:      UNGLinuxDriver@microchip.com
18463 L:      netdev@vger.kernel.org
18464 S:      Maintained
18465 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
18466 F:      drivers/net/usb/lan78xx.*
18467 F:      include/dt-bindings/net/microchip-lan78xx.h
18468
18469 USB MASS STORAGE DRIVER
18470 M:      Alan Stern <stern@rowland.harvard.edu>
18471 L:      linux-usb@vger.kernel.org
18472 L:      usb-storage@lists.one-eyed-alien.net
18473 S:      Maintained
18474 F:      drivers/usb/storage/
18475
18476 USB MIDI DRIVER
18477 M:      Clemens Ladisch <clemens@ladisch.de>
18478 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18479 S:      Maintained
18480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18481 F:      sound/usb/midi.*
18482
18483 USB NETWORKING DRIVERS
18484 L:      linux-usb@vger.kernel.org
18485 S:      Odd Fixes
18486 F:      drivers/net/usb/
18487
18488 USB OHCI DRIVER
18489 M:      Alan Stern <stern@rowland.harvard.edu>
18490 L:      linux-usb@vger.kernel.org
18491 S:      Maintained
18492 F:      Documentation/usb/ohci.rst
18493 F:      drivers/usb/host/ohci*
18494
18495 USB OTG FSM (Finite State Machine)
18496 M:      Peter Chen <peter.chen@kernel.org>
18497 L:      linux-usb@vger.kernel.org
18498 S:      Maintained
18499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
18500 F:      drivers/usb/common/usb-otg-fsm.c
18501
18502 USB OVER IP DRIVER
18503 M:      Valentina Manea <valentina.manea.m@gmail.com>
18504 M:      Shuah Khan <shuah@kernel.org>
18505 M:      Shuah Khan <skhan@linuxfoundation.org>
18506 L:      linux-usb@vger.kernel.org
18507 S:      Maintained
18508 F:      Documentation/usb/usbip_protocol.rst
18509 F:      drivers/usb/usbip/
18510 F:      tools/testing/selftests/drivers/usb/usbip/
18511 F:      tools/usb/usbip/
18512
18513 USB PEGASUS DRIVER
18514 M:      Petko Manolov <petkan@nucleusys.com>
18515 L:      linux-usb@vger.kernel.org
18516 L:      netdev@vger.kernel.org
18517 S:      Maintained
18518 W:      https://github.com/petkan/pegasus
18519 T:      git git://github.com/petkan/pegasus.git
18520 F:      drivers/net/usb/pegasus.*
18521
18522 USB PHY LAYER
18523 M:      Felipe Balbi <balbi@kernel.org>
18524 L:      linux-usb@vger.kernel.org
18525 S:      Maintained
18526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18527 F:      drivers/usb/phy/
18528
18529 USB PRINTER DRIVER (usblp)
18530 M:      Pete Zaitcev <zaitcev@redhat.com>
18531 L:      linux-usb@vger.kernel.org
18532 S:      Supported
18533 F:      drivers/usb/class/usblp.c
18534
18535 USB RAW GADGET DRIVER
18536 R:      Andrey Konovalov <andreyknvl@gmail.com>
18537 L:      linux-usb@vger.kernel.org
18538 S:      Maintained
18539 F:      Documentation/usb/raw-gadget.rst
18540 F:      drivers/usb/gadget/legacy/raw_gadget.c
18541 F:      include/uapi/linux/usb/raw_gadget.h
18542
18543 USB QMI WWAN NETWORK DRIVER
18544 M:      Bjørn Mork <bjorn@mork.no>
18545 L:      netdev@vger.kernel.org
18546 S:      Maintained
18547 F:      Documentation/ABI/testing/sysfs-class-net-qmi
18548 F:      drivers/net/usb/qmi_wwan.c
18549
18550 USB RTL8150 DRIVER
18551 M:      Petko Manolov <petkan@nucleusys.com>
18552 L:      linux-usb@vger.kernel.org
18553 L:      netdev@vger.kernel.org
18554 S:      Maintained
18555 W:      https://github.com/petkan/rtl8150
18556 T:      git git://github.com/petkan/rtl8150.git
18557 F:      drivers/net/usb/rtl8150.c
18558
18559 USB SERIAL SUBSYSTEM
18560 M:      Johan Hovold <johan@kernel.org>
18561 L:      linux-usb@vger.kernel.org
18562 S:      Maintained
18563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
18564 F:      Documentation/usb/usb-serial.rst
18565 F:      drivers/usb/serial/
18566 F:      include/linux/usb/serial.h
18567
18568 USB SMSC75XX ETHERNET DRIVER
18569 M:      Steve Glendinning <steve.glendinning@shawell.net>
18570 L:      netdev@vger.kernel.org
18571 S:      Maintained
18572 F:      drivers/net/usb/smsc75xx.*
18573
18574 USB SMSC95XX ETHERNET DRIVER
18575 M:      Steve Glendinning <steve.glendinning@shawell.net>
18576 M:      UNGLinuxDriver@microchip.com
18577 L:      netdev@vger.kernel.org
18578 S:      Maintained
18579 F:      drivers/net/usb/smsc95xx.*
18580
18581 USB SUBSYSTEM
18582 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18583 L:      linux-usb@vger.kernel.org
18584 S:      Supported
18585 W:      http://www.linux-usb.org
18586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
18587 F:      Documentation/devicetree/bindings/usb/
18588 F:      Documentation/usb/
18589 F:      drivers/usb/
18590 F:      include/linux/usb.h
18591 F:      include/linux/usb/
18592
18593 USB TYPEC BUS FOR ALTERNATE MODES
18594 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18595 L:      linux-usb@vger.kernel.org
18596 S:      Maintained
18597 F:      Documentation/ABI/testing/sysfs-bus-typec
18598 F:      Documentation/driver-api/usb/typec_bus.rst
18599 F:      drivers/usb/typec/altmodes/
18600 F:      include/linux/usb/typec_altmode.h
18601
18602 USB TYPEC CLASS
18603 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18604 L:      linux-usb@vger.kernel.org
18605 S:      Maintained
18606 F:      Documentation/ABI/testing/sysfs-class-typec
18607 F:      Documentation/driver-api/usb/typec.rst
18608 F:      drivers/usb/typec/
18609 F:      include/linux/usb/typec.h
18610
18611 USB TYPEC INTEL PMC MUX DRIVER
18612 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18613 L:      linux-usb@vger.kernel.org
18614 S:      Maintained
18615 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
18616 F:      drivers/usb/typec/mux/intel_pmc_mux.c
18617
18618 USB TYPEC PI3USB30532 MUX DRIVER
18619 M:      Hans de Goede <hdegoede@redhat.com>
18620 L:      linux-usb@vger.kernel.org
18621 S:      Maintained
18622 F:      drivers/usb/typec/mux/pi3usb30532.c
18623
18624 USB TYPEC PORT CONTROLLER DRIVERS
18625 M:      Guenter Roeck <linux@roeck-us.net>
18626 L:      linux-usb@vger.kernel.org
18627 S:      Maintained
18628 F:      drivers/usb/typec/tcpm/
18629
18630 USB UHCI DRIVER
18631 M:      Alan Stern <stern@rowland.harvard.edu>
18632 L:      linux-usb@vger.kernel.org
18633 S:      Maintained
18634 F:      drivers/usb/host/uhci*
18635
18636 USB VIDEO CLASS
18637 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18638 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
18639 L:      linux-media@vger.kernel.org
18640 S:      Maintained
18641 W:      http://www.ideasonboard.org/uvc/
18642 T:      git git://linuxtv.org/media_tree.git
18643 F:      drivers/media/usb/uvc/
18644 F:      include/uapi/linux/uvcvideo.h
18645
18646 USB WEBCAM GADGET
18647 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18648 L:      linux-usb@vger.kernel.org
18649 S:      Maintained
18650 F:      drivers/usb/gadget/function/*uvc*
18651 F:      drivers/usb/gadget/legacy/webcam.c
18652 F:      include/uapi/linux/usb/g_uvc.h
18653
18654 USB WIRELESS RNDIS DRIVER (rndis_wlan)
18655 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
18656 L:      linux-wireless@vger.kernel.org
18657 S:      Maintained
18658 F:      drivers/net/wireless/rndis_wlan.c
18659
18660 USB XHCI DRIVER
18661 M:      Mathias Nyman <mathias.nyman@intel.com>
18662 L:      linux-usb@vger.kernel.org
18663 S:      Supported
18664 F:      drivers/usb/host/pci-quirks*
18665 F:      drivers/usb/host/xhci*
18666
18667 USB ZD1201 DRIVER
18668 L:      linux-wireless@vger.kernel.org
18669 S:      Orphan
18670 W:      http://linux-lc100020.sourceforge.net
18671 F:      drivers/net/wireless/zydas/zd1201.*
18672
18673 USB ZR364XX DRIVER
18674 M:      Antoine Jacquet <royale@zerezo.com>
18675 L:      linux-usb@vger.kernel.org
18676 L:      linux-media@vger.kernel.org
18677 S:      Maintained
18678 W:      http://royale.zerezo.com/zr364xx/
18679 T:      git git://linuxtv.org/media_tree.git
18680 F:      Documentation/admin-guide/media/zr364xx*
18681 F:      drivers/media/usb/zr364xx/
18682
18683 USER-MODE LINUX (UML)
18684 M:      Jeff Dike <jdike@addtoit.com>
18685 M:      Richard Weinberger <richard@nod.at>
18686 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
18687 L:      linux-um@lists.infradead.org
18688 S:      Maintained
18689 W:      http://user-mode-linux.sourceforge.net
18690 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
18691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
18692 F:      Documentation/virt/uml/
18693 F:      arch/um/
18694 F:      arch/x86/um/
18695 F:      fs/hostfs/
18696
18697 USERSPACE COPYIN/COPYOUT (UIOVEC)
18698 M:      Alexander Viro <viro@zeniv.linux.org.uk>
18699 S:      Maintained
18700 F:      include/linux/uio.h
18701 F:      lib/iov_iter.c
18702
18703 USERSPACE DMA BUFFER DRIVER
18704 M:      Gerd Hoffmann <kraxel@redhat.com>
18705 L:      dri-devel@lists.freedesktop.org
18706 S:      Maintained
18707 T:      git git://anongit.freedesktop.org/drm/drm-misc
18708 F:      drivers/dma-buf/udmabuf.c
18709 F:      include/uapi/linux/udmabuf.h
18710
18711 USERSPACE I/O (UIO)
18712 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18713 S:      Maintained
18714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18715 F:      Documentation/driver-api/uio-howto.rst
18716 F:      drivers/uio/
18717 F:      include/linux/uio_driver.h
18718
18719 UTIL-LINUX PACKAGE
18720 M:      Karel Zak <kzak@redhat.com>
18721 L:      util-linux@vger.kernel.org
18722 S:      Maintained
18723 W:      http://en.wikipedia.org/wiki/Util-linux
18724 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
18725
18726 UUID HELPERS
18727 M:      Christoph Hellwig <hch@lst.de>
18728 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18729 L:      linux-kernel@vger.kernel.org
18730 S:      Maintained
18731 T:      git git://git.infradead.org/users/hch/uuid.git
18732 F:      include/linux/uuid.h
18733 F:      include/uapi/linux/uuid.h
18734 F:      lib/test_uuid.c
18735 F:      lib/uuid.c
18736
18737 UV SYSFS DRIVER
18738 M:      Justin Ernst <justin.ernst@hpe.com>
18739 L:      platform-driver-x86@vger.kernel.org
18740 S:      Maintained
18741 F:      drivers/platform/x86/uv_sysfs.c
18742
18743 UVESAFB DRIVER
18744 M:      Michal Januszewski <spock@gentoo.org>
18745 L:      linux-fbdev@vger.kernel.org
18746 S:      Maintained
18747 W:      https://github.com/mjanusz/v86d
18748 F:      Documentation/fb/uvesafb.rst
18749 F:      drivers/video/fbdev/uvesafb.*
18750
18751 Ux500 CLOCK DRIVERS
18752 M:      Ulf Hansson <ulf.hansson@linaro.org>
18753 L:      linux-clk@vger.kernel.org
18754 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18755 S:      Maintained
18756 F:      drivers/clk/ux500/
18757
18758 VF610 NAND DRIVER
18759 M:      Stefan Agner <stefan@agner.ch>
18760 L:      linux-mtd@lists.infradead.org
18761 S:      Supported
18762 F:      drivers/mtd/nand/raw/vf610_nfc.c
18763
18764 VFAT/FAT/MSDOS FILESYSTEM
18765 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
18766 S:      Maintained
18767 F:      Documentation/filesystems/vfat.rst
18768 F:      fs/fat/
18769
18770 VFIO DRIVER
18771 M:      Alex Williamson <alex.williamson@redhat.com>
18772 R:      Cornelia Huck <cohuck@redhat.com>
18773 L:      kvm@vger.kernel.org
18774 S:      Maintained
18775 T:      git git://github.com/awilliam/linux-vfio.git
18776 F:      Documentation/driver-api/vfio.rst
18777 F:      drivers/vfio/
18778 F:      include/linux/vfio.h
18779 F:      include/uapi/linux/vfio.h
18780
18781 VFIO FSL-MC DRIVER
18782 M:      Diana Craciun <diana.craciun@oss.nxp.com>
18783 L:      kvm@vger.kernel.org
18784 S:      Maintained
18785 F:      drivers/vfio/fsl-mc/
18786
18787 VFIO MEDIATED DEVICE DRIVERS
18788 M:      Kirti Wankhede <kwankhede@nvidia.com>
18789 L:      kvm@vger.kernel.org
18790 S:      Maintained
18791 F:      Documentation/driver-api/vfio-mediated-device.rst
18792 F:      drivers/vfio/mdev/
18793 F:      include/linux/mdev.h
18794 F:      samples/vfio-mdev/
18795
18796 VFIO PLATFORM DRIVER
18797 M:      Eric Auger <eric.auger@redhat.com>
18798 L:      kvm@vger.kernel.org
18799 S:      Maintained
18800 F:      drivers/vfio/platform/
18801
18802 VGA_SWITCHEROO
18803 R:      Lukas Wunner <lukas@wunner.de>
18804 S:      Maintained
18805 T:      git git://anongit.freedesktop.org/drm/drm-misc
18806 F:      Documentation/gpu/vga-switcheroo.rst
18807 F:      drivers/gpu/vga/vga_switcheroo.c
18808 F:      include/linux/vga_switcheroo.h
18809
18810 VIA RHINE NETWORK DRIVER
18811 S:      Maintained
18812 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
18813 F:      drivers/net/ethernet/via/via-rhine.c
18814
18815 VIA SD/MMC CARD CONTROLLER DRIVER
18816 M:      Bruce Chang <brucechang@via.com.tw>
18817 M:      Harald Welte <HaraldWelte@viatech.com>
18818 S:      Maintained
18819 F:      drivers/mmc/host/via-sdmmc.c
18820
18821 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
18822 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
18823 L:      linux-fbdev@vger.kernel.org
18824 S:      Maintained
18825 F:      drivers/video/fbdev/via/
18826 F:      include/linux/via-core.h
18827 F:      include/linux/via-gpio.h
18828 F:      include/linux/via_i2c.h
18829
18830 VIA VELOCITY NETWORK DRIVER
18831 M:      Francois Romieu <romieu@fr.zoreil.com>
18832 L:      netdev@vger.kernel.org
18833 S:      Maintained
18834 F:      drivers/net/ethernet/via/via-velocity.*
18835
18836 VICODEC VIRTUAL CODEC DRIVER
18837 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
18838 L:      linux-media@vger.kernel.org
18839 S:      Maintained
18840 W:      https://linuxtv.org
18841 T:      git git://linuxtv.org/media_tree.git
18842 F:      drivers/media/test-drivers/vicodec/*
18843
18844 VIDEO I2C POLLING DRIVER
18845 M:      Matt Ranostay <matt.ranostay@konsulko.com>
18846 L:      linux-media@vger.kernel.org
18847 S:      Maintained
18848 F:      drivers/media/i2c/video-i2c.c
18849
18850 VIDEO MULTIPLEXER DRIVER
18851 M:      Philipp Zabel <p.zabel@pengutronix.de>
18852 L:      linux-media@vger.kernel.org
18853 S:      Maintained
18854 F:      drivers/media/platform/video-mux.c
18855
18856 VIDEOBUF2 FRAMEWORK
18857 M:      Tomasz Figa <tfiga@chromium.org>
18858 M:      Marek Szyprowski <m.szyprowski@samsung.com>
18859 L:      linux-media@vger.kernel.org
18860 S:      Maintained
18861 F:      drivers/media/common/videobuf2/*
18862 F:      include/media/videobuf2-*
18863
18864 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
18865 M:      Helen Koike <helen.koike@collabora.com>
18866 R:      Shuah Khan <skhan@linuxfoundation.org>
18867 L:      linux-media@vger.kernel.org
18868 S:      Maintained
18869 W:      https://linuxtv.org
18870 T:      git git://linuxtv.org/media_tree.git
18871 F:      drivers/media/test-drivers/vimc/*
18872
18873 VIRT LIB
18874 M:      Alex Williamson <alex.williamson@redhat.com>
18875 M:      Paolo Bonzini <pbonzini@redhat.com>
18876 L:      kvm@vger.kernel.org
18877 S:      Supported
18878 F:      virt/lib/
18879
18880 VIRTIO AND VHOST VSOCK DRIVER
18881 M:      Stefan Hajnoczi <stefanha@redhat.com>
18882 M:      Stefano Garzarella <sgarzare@redhat.com>
18883 L:      kvm@vger.kernel.org
18884 L:      virtualization@lists.linux-foundation.org
18885 L:      netdev@vger.kernel.org
18886 S:      Maintained
18887 F:      drivers/net/vsockmon.c
18888 F:      drivers/vhost/vsock.c
18889 F:      include/linux/virtio_vsock.h
18890 F:      include/uapi/linux/virtio_vsock.h
18891 F:      include/uapi/linux/vm_sockets_diag.h
18892 F:      include/uapi/linux/vsockmon.h
18893 F:      net/vmw_vsock/af_vsock_tap.c
18894 F:      net/vmw_vsock/diag.c
18895 F:      net/vmw_vsock/virtio_transport.c
18896 F:      net/vmw_vsock/virtio_transport_common.c
18897 F:      net/vmw_vsock/vsock_loopback.c
18898 F:      tools/testing/vsock/
18899
18900 VIRTIO BLOCK AND SCSI DRIVERS
18901 M:      "Michael S. Tsirkin" <mst@redhat.com>
18902 M:      Jason Wang <jasowang@redhat.com>
18903 R:      Paolo Bonzini <pbonzini@redhat.com>
18904 R:      Stefan Hajnoczi <stefanha@redhat.com>
18905 L:      virtualization@lists.linux-foundation.org
18906 S:      Maintained
18907 F:      drivers/block/virtio_blk.c
18908 F:      drivers/scsi/virtio_scsi.c
18909 F:      drivers/vhost/scsi.c
18910 F:      include/uapi/linux/virtio_blk.h
18911 F:      include/uapi/linux/virtio_scsi.h
18912
18913 VIRTIO CONSOLE DRIVER
18914 M:      Amit Shah <amit@kernel.org>
18915 L:      virtualization@lists.linux-foundation.org
18916 S:      Maintained
18917 F:      drivers/char/virtio_console.c
18918 F:      include/linux/virtio_console.h
18919 F:      include/uapi/linux/virtio_console.h
18920
18921 VIRTIO CORE AND NET DRIVERS
18922 M:      "Michael S. Tsirkin" <mst@redhat.com>
18923 M:      Jason Wang <jasowang@redhat.com>
18924 L:      virtualization@lists.linux-foundation.org
18925 S:      Maintained
18926 F:      Documentation/devicetree/bindings/virtio/
18927 F:      drivers/block/virtio_blk.c
18928 F:      drivers/crypto/virtio/
18929 F:      drivers/net/virtio_net.c
18930 F:      drivers/vdpa/
18931 F:      drivers/virtio/
18932 F:      include/linux/vdpa.h
18933 F:      include/linux/virtio*.h
18934 F:      include/uapi/linux/virtio_*.h
18935 F:      tools/virtio/
18936
18937 VIRTIO BALLOON
18938 M:      "Michael S. Tsirkin" <mst@redhat.com>
18939 M:      David Hildenbrand <david@redhat.com>
18940 L:      virtualization@lists.linux-foundation.org
18941 S:      Maintained
18942 F:      drivers/virtio/virtio_balloon.c
18943 F:      include/uapi/linux/virtio_balloon.h
18944 F:      include/linux/balloon_compaction.h
18945 F:      mm/balloon_compaction.c
18946
18947 VIRTIO CRYPTO DRIVER
18948 M:      Gonglei <arei.gonglei@huawei.com>
18949 L:      virtualization@lists.linux-foundation.org
18950 L:      linux-crypto@vger.kernel.org
18951 S:      Maintained
18952 F:      drivers/crypto/virtio/
18953 F:      include/uapi/linux/virtio_crypto.h
18954
18955 VIRTIO DRIVERS FOR S390
18956 M:      Cornelia Huck <cohuck@redhat.com>
18957 M:      Halil Pasic <pasic@linux.ibm.com>
18958 L:      linux-s390@vger.kernel.org
18959 L:      virtualization@lists.linux-foundation.org
18960 L:      kvm@vger.kernel.org
18961 S:      Supported
18962 F:      arch/s390/include/uapi/asm/virtio-ccw.h
18963 F:      drivers/s390/virtio/
18964
18965 VIRTIO FILE SYSTEM
18966 M:      Vivek Goyal <vgoyal@redhat.com>
18967 M:      Stefan Hajnoczi <stefanha@redhat.com>
18968 M:      Miklos Szeredi <miklos@szeredi.hu>
18969 L:      virtualization@lists.linux-foundation.org
18970 L:      linux-fsdevel@vger.kernel.org
18971 S:      Supported
18972 W:      https://virtio-fs.gitlab.io/
18973 F:      Documentation/filesystems/virtiofs.rst
18974 F:      fs/fuse/virtio_fs.c
18975 F:      include/uapi/linux/virtio_fs.h
18976
18977 VIRTIO GPU DRIVER
18978 M:      David Airlie <airlied@linux.ie>
18979 M:      Gerd Hoffmann <kraxel@redhat.com>
18980 L:      dri-devel@lists.freedesktop.org
18981 L:      virtualization@lists.linux-foundation.org
18982 S:      Maintained
18983 T:      git git://anongit.freedesktop.org/drm/drm-misc
18984 F:      drivers/gpu/drm/virtio/
18985 F:      include/uapi/linux/virtio_gpu.h
18986
18987 VIRTIO HOST (VHOST)
18988 M:      "Michael S. Tsirkin" <mst@redhat.com>
18989 M:      Jason Wang <jasowang@redhat.com>
18990 L:      kvm@vger.kernel.org
18991 L:      virtualization@lists.linux-foundation.org
18992 L:      netdev@vger.kernel.org
18993 S:      Maintained
18994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
18995 F:      drivers/vhost/
18996 F:      include/linux/vhost_iotlb.h
18997 F:      include/uapi/linux/vhost.h
18998
18999 VIRTIO INPUT DRIVER
19000 M:      Gerd Hoffmann <kraxel@redhat.com>
19001 S:      Maintained
19002 F:      drivers/virtio/virtio_input.c
19003 F:      include/uapi/linux/virtio_input.h
19004
19005 VIRTIO IOMMU DRIVER
19006 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
19007 L:      virtualization@lists.linux-foundation.org
19008 S:      Maintained
19009 F:      drivers/iommu/virtio-iommu.c
19010 F:      include/uapi/linux/virtio_iommu.h
19011
19012 VIRTIO MEM DRIVER
19013 M:      David Hildenbrand <david@redhat.com>
19014 L:      virtualization@lists.linux-foundation.org
19015 S:      Maintained
19016 W:      https://virtio-mem.gitlab.io/
19017 F:      drivers/virtio/virtio_mem.c
19018 F:      include/uapi/linux/virtio_mem.h
19019
19020 VIRTUAL BOX GUEST DEVICE DRIVER
19021 M:      Hans de Goede <hdegoede@redhat.com>
19022 M:      Arnd Bergmann <arnd@arndb.de>
19023 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19024 S:      Maintained
19025 F:      drivers/virt/vboxguest/
19026 F:      include/linux/vbox_utils.h
19027 F:      include/uapi/linux/vbox*.h
19028
19029 VIRTUAL BOX SHARED FOLDER VFS DRIVER
19030 M:      Hans de Goede <hdegoede@redhat.com>
19031 L:      linux-fsdevel@vger.kernel.org
19032 S:      Maintained
19033 F:      fs/vboxsf/*
19034
19035 VIRTUAL SERIO DEVICE DRIVER
19036 M:      Stephen Chandler Paul <thatslyude@gmail.com>
19037 S:      Maintained
19038 F:      drivers/input/serio/userio.c
19039 F:      include/uapi/linux/userio.h
19040
19041 VIVID VIRTUAL VIDEO DRIVER
19042 M:      Hans Verkuil <hverkuil@xs4all.nl>
19043 L:      linux-media@vger.kernel.org
19044 S:      Maintained
19045 W:      https://linuxtv.org
19046 T:      git git://linuxtv.org/media_tree.git
19047 F:      drivers/media/test-drivers/vivid/*
19048
19049 VIDTV VIRTUAL DIGITAL TV DRIVER
19050 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
19051 L:      linux-media@vger.kernel.org
19052 S:      Maintained
19053 W:      https://linuxtv.org
19054 T:      git git://linuxtv.org/media_tree.git
19055 F:      drivers/media/test-drivers/vidtv/*
19056
19057 VLYNQ BUS
19058 M:      Florian Fainelli <f.fainelli@gmail.com>
19059 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
19060 S:      Maintained
19061 F:      drivers/vlynq/vlynq.c
19062 F:      include/linux/vlynq.h
19063
19064 VME SUBSYSTEM
19065 M:      Martyn Welch <martyn@welchs.me.uk>
19066 M:      Manohar Vanga <manohar.vanga@gmail.com>
19067 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19068 L:      devel@driverdev.osuosl.org
19069 S:      Maintained
19070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19071 F:      Documentation/driver-api/vme.rst
19072 F:      drivers/staging/vme/
19073 F:      drivers/vme/
19074 F:      include/linux/vme*
19075
19076 VMWARE BALLOON DRIVER
19077 M:      Nadav Amit <namit@vmware.com>
19078 M:      "VMware, Inc." <pv-drivers@vmware.com>
19079 L:      linux-kernel@vger.kernel.org
19080 S:      Maintained
19081 F:      drivers/misc/vmw_balloon.c
19082
19083 VMWARE HYPERVISOR INTERFACE
19084 M:      Deep Shah <sdeep@vmware.com>
19085 M:      "VMware, Inc." <pv-drivers@vmware.com>
19086 L:      virtualization@lists.linux-foundation.org
19087 S:      Supported
19088 F:      arch/x86/include/asm/vmware.h
19089 F:      arch/x86/kernel/cpu/vmware.c
19090
19091 VMWARE PVRDMA DRIVER
19092 M:      Adit Ranadive <aditr@vmware.com>
19093 M:      VMware PV-Drivers <pv-drivers@vmware.com>
19094 L:      linux-rdma@vger.kernel.org
19095 S:      Maintained
19096 F:      drivers/infiniband/hw/vmw_pvrdma/
19097
19098 VMware PVSCSI driver
19099 M:      Jim Gill <jgill@vmware.com>
19100 M:      VMware PV-Drivers <pv-drivers@vmware.com>
19101 L:      linux-scsi@vger.kernel.org
19102 S:      Maintained
19103 F:      drivers/scsi/vmw_pvscsi.c
19104 F:      drivers/scsi/vmw_pvscsi.h
19105
19106 VMWARE VIRTUAL PTP CLOCK DRIVER
19107 M:      Vivek Thampi <vithampi@vmware.com>
19108 M:      "VMware, Inc." <pv-drivers@vmware.com>
19109 L:      netdev@vger.kernel.org
19110 S:      Supported
19111 F:      drivers/ptp/ptp_vmw.c
19112
19113 VMWARE VMMOUSE SUBDRIVER
19114 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
19115 M:      "VMware, Inc." <pv-drivers@vmware.com>
19116 L:      linux-input@vger.kernel.org
19117 S:      Maintained
19118 F:      drivers/input/mouse/vmmouse.c
19119 F:      drivers/input/mouse/vmmouse.h
19120
19121 VMWARE VMXNET3 ETHERNET DRIVER
19122 M:      Ronak Doshi <doshir@vmware.com>
19123 M:      pv-drivers@vmware.com
19124 L:      netdev@vger.kernel.org
19125 S:      Maintained
19126 F:      drivers/net/vmxnet3/
19127
19128 VOCORE VOCORE2 BOARD
19129 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
19130 L:      linux-mips@vger.kernel.org
19131 S:      Maintained
19132 F:      arch/mips/boot/dts/ralink/vocore2.dts
19133
19134 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
19135 M:      Liam Girdwood <lgirdwood@gmail.com>
19136 M:      Mark Brown <broonie@kernel.org>
19137 L:      linux-kernel@vger.kernel.org
19138 S:      Supported
19139 W:      http://www.slimlogic.co.uk/?p=48
19140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
19141 F:      Documentation/devicetree/bindings/regulator/
19142 F:      Documentation/power/regulator/
19143 F:      drivers/regulator/
19144 F:      include/dt-bindings/regulator/
19145 F:      include/linux/regulator/
19146 K:      regulator_get_optional
19147
19148 VRF
19149 M:      David Ahern <dsahern@kernel.org>
19150 L:      netdev@vger.kernel.org
19151 S:      Maintained
19152 F:      Documentation/networking/vrf.rst
19153 F:      drivers/net/vrf.c
19154
19155 VSPRINTF
19156 M:      Petr Mladek <pmladek@suse.com>
19157 M:      Steven Rostedt <rostedt@goodmis.org>
19158 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
19159 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19160 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
19161 S:      Maintained
19162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
19163 F:      Documentation/core-api/printk-formats.rst
19164 F:      lib/test_printf.c
19165 F:      lib/vsprintf.c
19166
19167 VT1211 HARDWARE MONITOR DRIVER
19168 M:      Juerg Haefliger <juergh@gmail.com>
19169 L:      linux-hwmon@vger.kernel.org
19170 S:      Maintained
19171 F:      Documentation/hwmon/vt1211.rst
19172 F:      drivers/hwmon/vt1211.c
19173
19174 VT8231 HARDWARE MONITOR DRIVER
19175 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
19176 L:      linux-hwmon@vger.kernel.org
19177 S:      Maintained
19178 F:      drivers/hwmon/vt8231.c
19179
19180 VUB300 USB to SDIO/SD/MMC bridge chip
19181 L:      linux-mmc@vger.kernel.org
19182 S:      Orphan
19183 F:      drivers/mmc/host/vub300.c
19184
19185 W1 DALLAS'S 1-WIRE BUS
19186 M:      Evgeniy Polyakov <zbr@ioremap.net>
19187 S:      Maintained
19188 F:      Documentation/devicetree/bindings/w1/
19189 F:      Documentation/w1/
19190 F:      drivers/w1/
19191 F:      include/linux/w1.h
19192
19193 W83791D HARDWARE MONITORING DRIVER
19194 M:      Marc Hulsman <m.hulsman@tudelft.nl>
19195 L:      linux-hwmon@vger.kernel.org
19196 S:      Maintained
19197 F:      Documentation/hwmon/w83791d.rst
19198 F:      drivers/hwmon/w83791d.c
19199
19200 W83793 HARDWARE MONITORING DRIVER
19201 M:      Rudolf Marek <r.marek@assembler.cz>
19202 L:      linux-hwmon@vger.kernel.org
19203 S:      Maintained
19204 F:      Documentation/hwmon/w83793.rst
19205 F:      drivers/hwmon/w83793.c
19206
19207 W83795 HARDWARE MONITORING DRIVER
19208 M:      Jean Delvare <jdelvare@suse.com>
19209 L:      linux-hwmon@vger.kernel.org
19210 S:      Maintained
19211 F:      drivers/hwmon/w83795.c
19212
19213 W83L51xD SD/MMC CARD INTERFACE DRIVER
19214 M:      Pierre Ossman <pierre@ossman.eu>
19215 S:      Maintained
19216 F:      drivers/mmc/host/wbsd.*
19217
19218 WACOM PROTOCOL 4 SERIAL TABLETS
19219 M:      Julian Squires <julian@cipht.net>
19220 M:      Hans de Goede <hdegoede@redhat.com>
19221 L:      linux-input@vger.kernel.org
19222 S:      Maintained
19223 F:      drivers/input/tablet/wacom_serial4.c
19224
19225 WATCHDOG DEVICE DRIVERS
19226 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
19227 M:      Guenter Roeck <linux@roeck-us.net>
19228 L:      linux-watchdog@vger.kernel.org
19229 S:      Maintained
19230 W:      http://www.linux-watchdog.org/
19231 T:      git git://www.linux-watchdog.org/linux-watchdog.git
19232 F:      Documentation/devicetree/bindings/watchdog/
19233 F:      Documentation/watchdog/
19234 F:      drivers/watchdog/
19235 F:      include/linux/watchdog.h
19236 F:      include/uapi/linux/watchdog.h
19237
19238 WHISKEYCOVE PMIC GPIO DRIVER
19239 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
19240 L:      linux-gpio@vger.kernel.org
19241 S:      Maintained
19242 F:      drivers/gpio/gpio-wcove.c
19243
19244 WHWAVE RTC DRIVER
19245 M:      Dianlong Li <long17.cool@163.com>
19246 L:      linux-rtc@vger.kernel.org
19247 S:      Maintained
19248 F:      drivers/rtc/rtc-sd3078.c
19249
19250 WIIMOTE HID DRIVER
19251 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19252 L:      linux-input@vger.kernel.org
19253 S:      Maintained
19254 F:      drivers/hid/hid-wiimote*
19255
19256 WILOCITY WIL6210 WIRELESS DRIVER
19257 M:      Maya Erez <merez@codeaurora.org>
19258 L:      linux-wireless@vger.kernel.org
19259 L:      wil6210@qti.qualcomm.com
19260 S:      Supported
19261 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
19262 F:      drivers/net/wireless/ath/wil6210/
19263
19264 WINBOND CIR DRIVER
19265 M:      David Härdeman <david@hardeman.nu>
19266 S:      Maintained
19267 F:      drivers/media/rc/winbond-cir.c
19268
19269 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
19270 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
19271 L:      linux-watchdog@vger.kernel.org
19272 S:      Maintained
19273 F:      drivers/watchdog/ebc-c384_wdt.c
19274
19275 WINSYSTEMS WS16C48 GPIO DRIVER
19276 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
19277 L:      linux-gpio@vger.kernel.org
19278 S:      Maintained
19279 F:      drivers/gpio/gpio-ws16c48.c
19280
19281 WIREGUARD SECURE NETWORK TUNNEL
19282 M:      Jason A. Donenfeld <Jason@zx2c4.com>
19283 L:      wireguard@lists.zx2c4.com
19284 L:      netdev@vger.kernel.org
19285 S:      Maintained
19286 F:      drivers/net/wireguard/
19287 F:      tools/testing/selftests/wireguard/
19288
19289 WISTRON LAPTOP BUTTON DRIVER
19290 M:      Miloslav Trmac <mitr@volny.cz>
19291 S:      Maintained
19292 F:      drivers/input/misc/wistron_btns.c
19293
19294 WL3501 WIRELESS PCMCIA CARD DRIVER
19295 L:      linux-wireless@vger.kernel.org
19296 S:      Odd fixes
19297 F:      drivers/net/wireless/wl3501*
19298
19299 WOLFSON MICROELECTRONICS DRIVERS
19300 L:      patches@opensource.cirrus.com
19301 S:      Supported
19302 W:      https://github.com/CirrusLogic/linux-drivers/wiki
19303 T:      git https://github.com/CirrusLogic/linux-drivers.git
19304 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
19305 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
19306 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
19307 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
19308 F:      Documentation/devicetree/bindings/sound/wlf,arizona.yaml
19309 F:      Documentation/hwmon/wm83??.rst
19310 F:      arch/arm/mach-s3c/mach-crag6410*
19311 F:      drivers/clk/clk-wm83*.c
19312 F:      drivers/extcon/extcon-arizona.c
19313 F:      drivers/gpio/gpio-*wm*.c
19314 F:      drivers/gpio/gpio-arizona.c
19315 F:      drivers/hwmon/wm83??-hwmon.c
19316 F:      drivers/input/misc/wm831x-on.c
19317 F:      drivers/input/touchscreen/wm831x-ts.c
19318 F:      drivers/input/touchscreen/wm97*.c
19319 F:      drivers/leds/leds-wm83*.c
19320 F:      drivers/mfd/arizona*
19321 F:      drivers/mfd/cs47l24*
19322 F:      drivers/mfd/wm*.c
19323 F:      drivers/power/supply/wm83*.c
19324 F:      drivers/regulator/arizona*
19325 F:      drivers/regulator/wm8*.c
19326 F:      drivers/rtc/rtc-wm83*.c
19327 F:      drivers/video/backlight/wm83*_bl.c
19328 F:      drivers/watchdog/wm83*_wdt.c
19329 F:      include/linux/mfd/arizona/
19330 F:      include/linux/mfd/wm831x/
19331 F:      include/linux/mfd/wm8350/
19332 F:      include/linux/mfd/wm8400*
19333 F:      include/linux/regulator/arizona*
19334 F:      include/linux/wm97xx.h
19335 F:      include/sound/wm????.h
19336 F:      sound/soc/codecs/arizona.?
19337 F:      sound/soc/codecs/cs47l24*
19338 F:      sound/soc/codecs/wm*
19339
19340 WORKQUEUE
19341 M:      Tejun Heo <tj@kernel.org>
19342 R:      Lai Jiangshan <jiangshanlai@gmail.com>
19343 S:      Maintained
19344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
19345 F:      Documentation/core-api/workqueue.rst
19346 F:      include/linux/workqueue.h
19347 F:      kernel/workqueue.c
19348
19349 X-POWERS AXP288 PMIC DRIVERS
19350 M:      Hans de Goede <hdegoede@redhat.com>
19351 S:      Maintained
19352 F:      drivers/acpi/pmic/intel_pmic_xpower.c
19353 N:      axp288
19354
19355 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
19356 M:      Chen-Yu Tsai <wens@csie.org>
19357 L:      linux-kernel@vger.kernel.org
19358 S:      Maintained
19359 N:      axp[128]
19360
19361 X.25 STACK
19362 M:      Martin Schiller <ms@dev.tdt.de>
19363 L:      linux-x25@vger.kernel.org
19364 S:      Maintained
19365 F:      Documentation/networking/lapb-module.rst
19366 F:      Documentation/networking/x25*
19367 F:      drivers/net/wan/hdlc_x25.c
19368 F:      drivers/net/wan/lapbether.c
19369 F:      include/*/lapb.h
19370 F:      include/net/x25*
19371 F:      include/uapi/linux/x25.h
19372 F:      net/lapb/
19373 F:      net/x25/
19374
19375 X86 ARCHITECTURE (32-BIT AND 64-BIT)
19376 M:      Thomas Gleixner <tglx@linutronix.de>
19377 M:      Ingo Molnar <mingo@redhat.com>
19378 M:      Borislav Petkov <bp@alien8.de>
19379 M:      x86@kernel.org
19380 R:      "H. Peter Anvin" <hpa@zytor.com>
19381 L:      linux-kernel@vger.kernel.org
19382 S:      Maintained
19383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19384 F:      Documentation/devicetree/bindings/x86/
19385 F:      Documentation/x86/
19386 F:      arch/x86/
19387
19388 X86 ENTRY CODE
19389 M:      Andy Lutomirski <luto@kernel.org>
19390 L:      linux-kernel@vger.kernel.org
19391 S:      Maintained
19392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
19393 F:      arch/x86/entry/
19394
19395 X86 MCE INFRASTRUCTURE
19396 M:      Tony Luck <tony.luck@intel.com>
19397 M:      Borislav Petkov <bp@alien8.de>
19398 L:      linux-edac@vger.kernel.org
19399 S:      Maintained
19400 F:      arch/x86/kernel/cpu/mce/*
19401
19402 X86 MICROCODE UPDATE SUPPORT
19403 M:      Borislav Petkov <bp@alien8.de>
19404 S:      Maintained
19405 F:      arch/x86/kernel/cpu/microcode/*
19406
19407 X86 MM
19408 M:      Dave Hansen <dave.hansen@linux.intel.com>
19409 M:      Andy Lutomirski <luto@kernel.org>
19410 M:      Peter Zijlstra <peterz@infradead.org>
19411 L:      linux-kernel@vger.kernel.org
19412 S:      Maintained
19413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
19414 F:      arch/x86/mm/
19415
19416 X86 PLATFORM DRIVERS
19417 M:      Hans de Goede <hdegoede@redhat.com>
19418 M:      Mark Gross <mgross@linux.intel.com>
19419 L:      platform-driver-x86@vger.kernel.org
19420 S:      Maintained
19421 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
19422 F:      drivers/platform/olpc/
19423 F:      drivers/platform/x86/
19424
19425 X86 PLATFORM DRIVERS - ARCH
19426 R:      Darren Hart <dvhart@infradead.org>
19427 R:      Andy Shevchenko <andy@infradead.org>
19428 L:      platform-driver-x86@vger.kernel.org
19429 L:      x86@kernel.org
19430 S:      Maintained
19431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19432 F:      arch/x86/platform
19433
19434 X86 PLATFORM UV HPE SUPERDOME FLEX
19435 M:      Steve Wahl <steve.wahl@hpe.com>
19436 R:      Mike Travis <mike.travis@hpe.com>
19437 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
19438 R:      Russ Anderson <russ.anderson@hpe.com>
19439 S:      Supported
19440 F:      arch/x86/include/asm/uv/
19441 F:      arch/x86/kernel/apic/x2apic_uv_x.c
19442 F:      arch/x86/platform/uv/
19443
19444 X86 VDSO
19445 M:      Andy Lutomirski <luto@kernel.org>
19446 L:      linux-kernel@vger.kernel.org
19447 S:      Maintained
19448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
19449 F:      arch/x86/entry/vdso/
19450
19451 XARRAY
19452 M:      Matthew Wilcox <willy@infradead.org>
19453 L:      linux-fsdevel@vger.kernel.org
19454 S:      Supported
19455 F:      Documentation/core-api/xarray.rst
19456 F:      include/linux/idr.h
19457 F:      include/linux/xarray.h
19458 F:      lib/idr.c
19459 F:      lib/xarray.c
19460 F:      tools/testing/radix-tree
19461
19462 XBOX DVD IR REMOTE
19463 M:      Benjamin Valentin <benpicco@googlemail.com>
19464 S:      Maintained
19465 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
19466 F:      drivers/media/rc/xbox_remote.c
19467
19468 XC2028/3028 TUNER DRIVER
19469 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19470 L:      linux-media@vger.kernel.org
19471 S:      Maintained
19472 W:      https://linuxtv.org
19473 T:      git git://linuxtv.org/media_tree.git
19474 F:      drivers/media/tuners/tuner-xc2028.*
19475
19476 XDP (eXpress Data Path)
19477 M:      Alexei Starovoitov <ast@kernel.org>
19478 M:      Daniel Borkmann <daniel@iogearbox.net>
19479 M:      David S. Miller <davem@davemloft.net>
19480 M:      Jakub Kicinski <kuba@kernel.org>
19481 M:      Jesper Dangaard Brouer <hawk@kernel.org>
19482 M:      John Fastabend <john.fastabend@gmail.com>
19483 L:      netdev@vger.kernel.org
19484 L:      bpf@vger.kernel.org
19485 S:      Supported
19486 F:      include/net/xdp.h
19487 F:      include/net/xdp_priv.h
19488 F:      include/trace/events/xdp.h
19489 F:      kernel/bpf/cpumap.c
19490 F:      kernel/bpf/devmap.c
19491 F:      net/core/xdp.c
19492 F:      samples/bpf/xdp*
19493 F:      tools/testing/selftests/bpf/*xdp*
19494 F:      tools/testing/selftests/bpf/*/*xdp*
19495 F:      drivers/net/ethernet/*/*/*/*/*xdp*
19496 F:      drivers/net/ethernet/*/*/*xdp*
19497 K:      (?:\b|_)xdp(?:\b|_)
19498
19499 XDP SOCKETS (AF_XDP)
19500 M:      Björn Töpel <bjorn@kernel.org>
19501 M:      Magnus Karlsson <magnus.karlsson@intel.com>
19502 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
19503 L:      netdev@vger.kernel.org
19504 L:      bpf@vger.kernel.org
19505 S:      Maintained
19506 F:      Documentation/networking/af_xdp.rst
19507 F:      include/net/xdp_sock*
19508 F:      include/net/xsk_buff_pool.h
19509 F:      include/uapi/linux/if_xdp.h
19510 F:      include/uapi/linux/xdp_diag.h
19511 F:      include/net/netns/xdp.h
19512 F:      net/xdp/
19513 F:      samples/bpf/xdpsock*
19514 F:      tools/lib/bpf/xsk*
19515
19516 XEN BLOCK SUBSYSTEM
19517 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19518 M:      Roger Pau Monné <roger.pau@citrix.com>
19519 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19520 S:      Supported
19521 F:      drivers/block/xen*
19522 F:      drivers/block/xen-blkback/*
19523
19524 XEN HYPERVISOR ARM
19525 M:      Stefano Stabellini <sstabellini@kernel.org>
19526 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19527 S:      Maintained
19528 F:      arch/arm/include/asm/xen/
19529 F:      arch/arm/xen/
19530
19531 XEN HYPERVISOR ARM64
19532 M:      Stefano Stabellini <sstabellini@kernel.org>
19533 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19534 S:      Maintained
19535 F:      arch/arm64/include/asm/xen/
19536 F:      arch/arm64/xen/
19537
19538 XEN HYPERVISOR INTERFACE
19539 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
19540 M:      Juergen Gross <jgross@suse.com>
19541 R:      Stefano Stabellini <sstabellini@kernel.org>
19542 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19543 S:      Supported
19544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
19545 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
19546 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
19547 F:      arch/x86/include/asm/pvclock-abi.h
19548 F:      arch/x86/include/asm/xen/
19549 F:      arch/x86/platform/pvh/
19550 F:      arch/x86/xen/
19551 F:      drivers/*/xen-*front.c
19552 F:      drivers/xen/
19553 F:      include/uapi/xen/
19554 F:      include/xen/
19555
19556 XEN NETWORK BACKEND DRIVER
19557 M:      Wei Liu <wei.liu@kernel.org>
19558 M:      Paul Durrant <paul@xen.org>
19559 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19560 L:      netdev@vger.kernel.org
19561 S:      Supported
19562 F:      drivers/net/xen-netback/*
19563
19564 XEN PCI SUBSYSTEM
19565 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19566 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19567 S:      Supported
19568 F:      arch/x86/pci/*xen*
19569 F:      drivers/pci/*xen*
19570
19571 XEN PVSCSI DRIVERS
19572 M:      Juergen Gross <jgross@suse.com>
19573 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19574 L:      linux-scsi@vger.kernel.org
19575 S:      Supported
19576 F:      drivers/scsi/xen-scsifront.c
19577 F:      drivers/xen/xen-scsiback.c
19578 F:      include/xen/interface/io/vscsiif.h
19579
19580 XEN SOUND FRONTEND DRIVER
19581 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
19582 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19583 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19584 S:      Supported
19585 F:      sound/xen/*
19586
19587 XEN SWIOTLB SUBSYSTEM
19588 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19589 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19590 L:      iommu@lists.linux-foundation.org
19591 S:      Supported
19592 F:      arch/x86/xen/*swiotlb*
19593 F:      drivers/xen/*swiotlb*
19594
19595 XFS FILESYSTEM
19596 M:      Darrick J. Wong <djwong@kernel.org>
19597 M:      linux-xfs@vger.kernel.org
19598 L:      linux-xfs@vger.kernel.org
19599 S:      Supported
19600 W:      http://xfs.org/
19601 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
19602 F:      Documentation/ABI/testing/sysfs-fs-xfs
19603 F:      Documentation/admin-guide/xfs.rst
19604 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
19605 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
19606 F:      fs/xfs/
19607 F:      include/uapi/linux/dqblk_xfs.h
19608 F:      include/uapi/linux/fsmap.h
19609
19610 XILINX AXI ETHERNET DRIVER
19611 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
19612 S:      Maintained
19613 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
19614
19615 XILINX CAN DRIVER
19616 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
19617 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
19618 L:      linux-can@vger.kernel.org
19619 S:      Maintained
19620 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
19621 F:      drivers/net/can/xilinx_can.c
19622
19623 XILINX GPIO DRIVER
19624 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
19625 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
19626 R:      Michal Simek <michal.simek@xilinx.com>
19627 S:      Maintained
19628 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
19629 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.txt
19630 F:      drivers/gpio/gpio-xilinx.c
19631 F:      drivers/gpio/gpio-zynq.c
19632
19633 XILINX SD-FEC IP CORES
19634 M:      Derek Kiernan <derek.kiernan@xilinx.com>
19635 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
19636 S:      Maintained
19637 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
19638 F:      Documentation/misc-devices/xilinx_sdfec.rst
19639 F:      drivers/misc/Kconfig
19640 F:      drivers/misc/Makefile
19641 F:      drivers/misc/xilinx_sdfec.c
19642 F:      include/uapi/misc/xilinx_sdfec.h
19643
19644 XILINX UARTLITE SERIAL DRIVER
19645 M:      Peter Korsgaard <jacmet@sunsite.dk>
19646 L:      linux-serial@vger.kernel.org
19647 S:      Maintained
19648 F:      drivers/tty/serial/uartlite.c
19649
19650 XILINX VIDEO IP CORES
19651 M:      Hyun Kwon <hyun.kwon@xilinx.com>
19652 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19653 L:      linux-media@vger.kernel.org
19654 S:      Supported
19655 T:      git git://linuxtv.org/media_tree.git
19656 F:      Documentation/devicetree/bindings/media/xilinx/
19657 F:      drivers/media/platform/xilinx/
19658 F:      include/uapi/linux/xilinx-v4l2-controls.h
19659
19660 XILINX ZYNQMP DPDMA DRIVER
19661 M:      Hyun Kwon <hyun.kwon@xilinx.com>
19662 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19663 L:      dmaengine@vger.kernel.org
19664 S:      Supported
19665 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
19666 F:      drivers/dma/xilinx/xilinx_dpdma.c
19667 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
19668
19669 XILINX ZYNQMP PSGTR PHY DRIVER
19670 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
19671 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19672 L:      linux-kernel@vger.kernel.org
19673 S:      Supported
19674 T:      git https://github.com/Xilinx/linux-xlnx.git
19675 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
19676 F:      drivers/phy/xilinx/phy-zynqmp.c
19677
19678 XILLYBUS DRIVER
19679 M:      Eli Billauer <eli.billauer@gmail.com>
19680 L:      linux-kernel@vger.kernel.org
19681 S:      Supported
19682 F:      drivers/char/xillybus/
19683
19684 XLP9XX I2C DRIVER
19685 M:      George Cherian <gcherian@marvell.com>
19686 L:      linux-i2c@vger.kernel.org
19687 S:      Supported
19688 W:      http://www.marvell.com
19689 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
19690 F:      drivers/i2c/busses/i2c-xlp9xx.c
19691
19692 XRA1403 GPIO EXPANDER
19693 M:      Nandor Han <nandor.han@ge.com>
19694 M:      Semi Malinen <semi.malinen@ge.com>
19695 L:      linux-gpio@vger.kernel.org
19696 S:      Maintained
19697 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
19698 F:      drivers/gpio/gpio-xra1403.c
19699
19700 XTENSA XTFPGA PLATFORM SUPPORT
19701 M:      Max Filippov <jcmvbkbc@gmail.com>
19702 L:      linux-xtensa@linux-xtensa.org
19703 S:      Maintained
19704 F:      drivers/spi/spi-xtensa-xtfpga.c
19705 F:      sound/soc/xtensa/xtfpga-i2s.c
19706
19707 YAM DRIVER FOR AX.25
19708 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
19709 L:      linux-hams@vger.kernel.org
19710 S:      Maintained
19711 F:      drivers/net/hamradio/yam*
19712 F:      include/linux/yam.h
19713
19714 YAMA SECURITY MODULE
19715 M:      Kees Cook <keescook@chromium.org>
19716 S:      Supported
19717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
19718 F:      Documentation/admin-guide/LSM/Yama.rst
19719 F:      security/yama/
19720
19721 YEALINK PHONE DRIVER
19722 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
19723 L:      usbb2k-api-dev@nongnu.org
19724 S:      Maintained
19725 F:      Documentation/input/devices/yealink.rst
19726 F:      drivers/input/misc/yealink.*
19727
19728 Z8530 DRIVER FOR AX.25
19729 M:      Joerg Reuter <jreuter@yaina.de>
19730 L:      linux-hams@vger.kernel.org
19731 S:      Maintained
19732 W:      http://yaina.de/jreuter/
19733 W:      http://www.qsl.net/dl1bke/
19734 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
19735 F:      drivers/net/hamradio/*scc.c
19736 F:      drivers/net/hamradio/z8530.h
19737
19738 ZBUD COMPRESSED PAGE ALLOCATOR
19739 M:      Seth Jennings <sjenning@redhat.com>
19740 M:      Dan Streetman <ddstreet@ieee.org>
19741 L:      linux-mm@kvack.org
19742 S:      Maintained
19743 F:      include/linux/zbud.h
19744 F:      mm/zbud.c
19745
19746 ZD1211RW WIRELESS DRIVER
19747 M:      Daniel Drake <dsd@gentoo.org>
19748 M:      Ulrich Kunitz <kune@deine-taler.de>
19749 L:      linux-wireless@vger.kernel.org
19750 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
19751 S:      Maintained
19752 W:      http://zd1211.ath.cx/wiki/DriverRewrite
19753 F:      drivers/net/wireless/zydas/zd1211rw/
19754
19755 ZD1301 MEDIA DRIVER
19756 M:      Antti Palosaari <crope@iki.fi>
19757 L:      linux-media@vger.kernel.org
19758 S:      Maintained
19759 W:      https://linuxtv.org/
19760 W:      http://palosaari.fi/linux/
19761 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19762 F:      drivers/media/usb/dvb-usb-v2/zd1301*
19763
19764 ZD1301_DEMOD MEDIA DRIVER
19765 M:      Antti Palosaari <crope@iki.fi>
19766 L:      linux-media@vger.kernel.org
19767 S:      Maintained
19768 W:      https://linuxtv.org/
19769 W:      http://palosaari.fi/linux/
19770 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19771 F:      drivers/media/dvb-frontends/zd1301_demod*
19772
19773 ZHAOXIN PROCESSOR SUPPORT
19774 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
19775 L:      linux-kernel@vger.kernel.org
19776 S:      Maintained
19777 F:      arch/x86/kernel/cpu/zhaoxin.c
19778
19779 ZONEFS FILESYSTEM
19780 M:      Damien Le Moal <damien.lemoal@wdc.com>
19781 M:      Naohiro Aota <naohiro.aota@wdc.com>
19782 R:      Johannes Thumshirn <jth@kernel.org>
19783 L:      linux-fsdevel@vger.kernel.org
19784 S:      Maintained
19785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
19786 F:      Documentation/filesystems/zonefs.rst
19787 F:      fs/zonefs/
19788
19789 ZPOOL COMPRESSED PAGE STORAGE API
19790 M:      Dan Streetman <ddstreet@ieee.org>
19791 L:      linux-mm@kvack.org
19792 S:      Maintained
19793 F:      include/linux/zpool.h
19794 F:      mm/zpool.c
19795
19796 ZR36067 VIDEO FOR LINUX DRIVER
19797 M:      Corentin Labbe <clabbe@baylibre.com>
19798 L:      mjpeg-users@lists.sourceforge.net
19799 L:      linux-media@vger.kernel.org
19800 S:      Maintained
19801 W:      http://mjpeg.sourceforge.net/driver-zoran/
19802 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19803 F:      Documentation/driver-api/media/drivers/zoran.rst
19804 F:      drivers/staging/media/zoran/
19805
19806 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
19807 M:      Minchan Kim <minchan@kernel.org>
19808 M:      Nitin Gupta <ngupta@vflare.org>
19809 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
19810 L:      linux-kernel@vger.kernel.org
19811 S:      Maintained
19812 F:      Documentation/admin-guide/blockdev/zram.rst
19813 F:      drivers/block/zram/
19814
19815 ZS DECSTATION Z85C30 SERIAL DRIVER
19816 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
19817 S:      Maintained
19818 F:      drivers/tty/serial/zs.*
19819
19820 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
19821 M:      Minchan Kim <minchan@kernel.org>
19822 M:      Nitin Gupta <ngupta@vflare.org>
19823 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
19824 L:      linux-mm@kvack.org
19825 S:      Maintained
19826 F:      Documentation/vm/zsmalloc.rst
19827 F:      include/linux/zsmalloc.h
19828 F:      mm/zsmalloc.c
19829
19830 ZSWAP COMPRESSED SWAP CACHING
19831 M:      Seth Jennings <sjenning@redhat.com>
19832 M:      Dan Streetman <ddstreet@ieee.org>
19833 M:      Vitaly Wool <vitaly.wool@konsulko.com>
19834 L:      linux-mm@kvack.org
19835 S:      Maintained
19836 F:      mm/zswap.c
19837
19838 THE REST
19839 M:      Linus Torvalds <torvalds@linux-foundation.org>
19840 L:      linux-kernel@vger.kernel.org
19841 S:      Buried alive in reporters
19842 Q:      http://patchwork.kernel.org/project/LKML/list/
19843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
19844 F:      *
19845 F:      */