MAINTAINERS: add entry for the bitmap API
[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 X:      include/uapi/
265 X:      arch/*/include/uapi/
266
267 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
268 M:      Hans de Goede <hdegoede@redhat.com>
269 L:      linux-hwmon@vger.kernel.org
270 S:      Maintained
271 F:      drivers/hwmon/abituguru.c
272
273 ABIT UGURU 3 HARDWARE MONITOR DRIVER
274 M:      Alistair John Strachan <alistair@devzero.co.uk>
275 L:      linux-hwmon@vger.kernel.org
276 S:      Maintained
277 F:      drivers/hwmon/abituguru3.c
278
279 ACCES 104-DIO-48E GPIO DRIVER
280 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
281 L:      linux-gpio@vger.kernel.org
282 S:      Maintained
283 F:      drivers/gpio/gpio-104-dio-48e.c
284
285 ACCES 104-IDI-48 GPIO DRIVER
286 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
287 L:      linux-gpio@vger.kernel.org
288 S:      Maintained
289 F:      drivers/gpio/gpio-104-idi-48.c
290
291 ACCES 104-IDIO-16 GPIO DRIVER
292 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
293 L:      linux-gpio@vger.kernel.org
294 S:      Maintained
295 F:      drivers/gpio/gpio-104-idio-16.c
296
297 ACCES 104-QUAD-8 DRIVER
298 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
299 M:      Syed Nayyar Waris <syednwaris@gmail.com>
300 L:      linux-iio@vger.kernel.org
301 S:      Maintained
302 F:      Documentation/ABI/testing/sysfs-bus-counter-104-quad-8
303 F:      drivers/counter/104-quad-8.c
304
305 ACCES PCI-IDIO-16 GPIO DRIVER
306 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
307 L:      linux-gpio@vger.kernel.org
308 S:      Maintained
309 F:      drivers/gpio/gpio-pci-idio-16.c
310
311 ACCES PCIe-IDIO-24 GPIO DRIVER
312 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
313 L:      linux-gpio@vger.kernel.org
314 S:      Maintained
315 F:      drivers/gpio/gpio-pcie-idio-24.c
316
317 ACENIC DRIVER
318 M:      Jes Sorensen <jes@trained-monkey.org>
319 L:      linux-acenic@sunsite.dk
320 S:      Maintained
321 F:      drivers/net/ethernet/alteon/acenic*
322
323 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
324 M:      Peter Kaestle <peter@piie.net>
325 L:      platform-driver-x86@vger.kernel.org
326 S:      Maintained
327 W:      http://piie.net/?section=acerhdf
328 F:      drivers/platform/x86/acerhdf.c
329
330 ACER WMI LAPTOP EXTRAS
331 M:      "Lee, Chun-Yi" <jlee@suse.com>
332 L:      platform-driver-x86@vger.kernel.org
333 S:      Maintained
334 F:      drivers/platform/x86/acer-wmi.c
335
336 ACPI
337 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
338 M:      Len Brown <lenb@kernel.org>
339 L:      linux-acpi@vger.kernel.org
340 S:      Supported
341 W:      https://01.org/linux-acpi
342 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
343 B:      https://bugzilla.kernel.org
344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
345 F:      Documentation/ABI/testing/configfs-acpi
346 F:      Documentation/ABI/testing/sysfs-bus-acpi
347 F:      Documentation/firmware-guide/acpi/
348 F:      drivers/acpi/
349 F:      drivers/pci/*/*acpi*
350 F:      drivers/pci/*acpi*
351 F:      drivers/pnp/pnpacpi/
352 F:      include/acpi/
353 F:      include/linux/acpi.h
354 F:      include/linux/fwnode.h
355 F:      tools/power/acpi/
356
357 ACPI APEI
358 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
359 M:      Len Brown <lenb@kernel.org>
360 R:      James Morse <james.morse@arm.com>
361 R:      Tony Luck <tony.luck@intel.com>
362 R:      Borislav Petkov <bp@alien8.de>
363 L:      linux-acpi@vger.kernel.org
364 F:      drivers/acpi/apei/
365
366 ACPI COMPONENT ARCHITECTURE (ACPICA)
367 M:      Robert Moore <robert.moore@intel.com>
368 M:      Erik Kaneda <erik.kaneda@intel.com>
369 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
370 L:      linux-acpi@vger.kernel.org
371 L:      devel@acpica.org
372 S:      Supported
373 W:      https://acpica.org/
374 W:      https://github.com/acpica/acpica/
375 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
376 B:      https://bugzilla.kernel.org
377 B:      https://bugs.acpica.org
378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
379 F:      drivers/acpi/acpica/
380 F:      include/acpi/
381 F:      tools/power/acpi/
382
383 ACPI FAN DRIVER
384 M:      Zhang Rui <rui.zhang@intel.com>
385 L:      linux-acpi@vger.kernel.org
386 S:      Supported
387 W:      https://01.org/linux-acpi
388 B:      https://bugzilla.kernel.org
389 F:      drivers/acpi/fan.c
390
391 ACPI FOR ARM64 (ACPI/arm64)
392 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
393 M:      Hanjun Guo <guohanjun@huawei.com>
394 M:      Sudeep Holla <sudeep.holla@arm.com>
395 L:      linux-acpi@vger.kernel.org
396 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
397 S:      Maintained
398 F:      drivers/acpi/arm64
399
400 ACPI I2C MULTI INSTANTIATE DRIVER
401 M:      Hans de Goede <hdegoede@redhat.com>
402 L:      platform-driver-x86@vger.kernel.org
403 S:      Maintained
404 F:      drivers/platform/x86/i2c-multi-instantiate.c
405
406 ACPI PMIC DRIVERS
407 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
408 M:      Len Brown <lenb@kernel.org>
409 R:      Andy Shevchenko <andy@kernel.org>
410 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
411 L:      linux-acpi@vger.kernel.org
412 S:      Supported
413 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
414 B:      https://bugzilla.kernel.org
415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
416 F:      drivers/acpi/pmic/
417
418 ACPI THERMAL DRIVER
419 M:      Zhang Rui <rui.zhang@intel.com>
420 L:      linux-acpi@vger.kernel.org
421 S:      Supported
422 W:      https://01.org/linux-acpi
423 B:      https://bugzilla.kernel.org
424 F:      drivers/acpi/*thermal*
425
426 ACPI VIDEO DRIVER
427 M:      Zhang Rui <rui.zhang@intel.com>
428 L:      linux-acpi@vger.kernel.org
429 S:      Supported
430 W:      https://01.org/linux-acpi
431 B:      https://bugzilla.kernel.org
432 F:      drivers/acpi/acpi_video.c
433
434 ACPI WMI DRIVER
435 L:      platform-driver-x86@vger.kernel.org
436 S:      Orphan
437 F:      drivers/platform/x86/wmi.c
438 F:      include/uapi/linux/wmi.h
439
440 ACRN HYPERVISOR SERVICE MODULE
441 M:      Shuo Liu <shuo.a.liu@intel.com>
442 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
443 S:      Supported
444 W:      https://projectacrn.org
445 F:      Documentation/virt/acrn/
446 F:      drivers/virt/acrn/
447 F:      include/uapi/linux/acrn.h
448
449 AD1889 ALSA SOUND DRIVER
450 L:      linux-parisc@vger.kernel.org
451 S:      Maintained
452 W:      https://parisc.wiki.kernel.org/index.php/AD1889
453 F:      sound/pci/ad1889.*
454
455 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
456 M:      Michael Hennerich <michael.hennerich@analog.com>
457 S:      Supported
458 W:      http://wiki.analog.com/AD5254
459 W:      http://ez.analog.com/community/linux-device-drivers
460 F:      drivers/misc/ad525x_dpot.c
461
462 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
463 M:      Michael Hennerich <michael.hennerich@analog.com>
464 S:      Supported
465 W:      http://wiki.analog.com/AD5398
466 W:      http://ez.analog.com/community/linux-device-drivers
467 F:      drivers/regulator/ad5398.c
468
469 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
470 M:      Michael Hennerich <michael.hennerich@analog.com>
471 S:      Supported
472 W:      http://wiki.analog.com/AD7142
473 W:      http://ez.analog.com/community/linux-device-drivers
474 F:      drivers/input/misc/ad714x.c
475
476 AD7877 TOUCHSCREEN DRIVER
477 M:      Michael Hennerich <michael.hennerich@analog.com>
478 S:      Supported
479 W:      http://wiki.analog.com/AD7877
480 W:      http://ez.analog.com/community/linux-device-drivers
481 F:      drivers/input/touchscreen/ad7877.c
482
483 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
484 M:      Michael Hennerich <michael.hennerich@analog.com>
485 S:      Supported
486 W:      http://wiki.analog.com/AD7879
487 W:      http://ez.analog.com/community/linux-device-drivers
488 F:      drivers/input/touchscreen/ad7879.c
489
490 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
491 M:      Jiri Kosina <jikos@kernel.org>
492 S:      Maintained
493
494 ADF7242 IEEE 802.15.4 RADIO DRIVER
495 M:      Michael Hennerich <michael.hennerich@analog.com>
496 L:      linux-wpan@vger.kernel.org
497 S:      Supported
498 W:      https://wiki.analog.com/ADF7242
499 W:      http://ez.analog.com/community/linux-device-drivers
500 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
501 F:      drivers/net/ieee802154/adf7242.c
502
503 ADM1025 HARDWARE MONITOR DRIVER
504 M:      Jean Delvare <jdelvare@suse.com>
505 L:      linux-hwmon@vger.kernel.org
506 S:      Maintained
507 F:      Documentation/hwmon/adm1025.rst
508 F:      drivers/hwmon/adm1025.c
509
510 ADM1029 HARDWARE MONITOR DRIVER
511 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
512 L:      linux-hwmon@vger.kernel.org
513 S:      Maintained
514 F:      drivers/hwmon/adm1029.c
515
516 ADM8211 WIRELESS DRIVER
517 L:      linux-wireless@vger.kernel.org
518 S:      Orphan
519 W:      https://wireless.wiki.kernel.org/
520 F:      drivers/net/wireless/admtek/adm8211.*
521
522 ADP1653 FLASH CONTROLLER DRIVER
523 M:      Sakari Ailus <sakari.ailus@iki.fi>
524 L:      linux-media@vger.kernel.org
525 S:      Maintained
526 F:      drivers/media/i2c/adp1653.c
527 F:      include/media/i2c/adp1653.h
528
529 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
530 M:      Michael Hennerich <michael.hennerich@analog.com>
531 S:      Supported
532 W:      http://wiki.analog.com/ADP5520
533 W:      http://ez.analog.com/community/linux-device-drivers
534 F:      drivers/gpio/gpio-adp5520.c
535 F:      drivers/input/keyboard/adp5520-keys.c
536 F:      drivers/leds/leds-adp5520.c
537 F:      drivers/mfd/adp5520.c
538 F:      drivers/video/backlight/adp5520_bl.c
539
540 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
541 M:      Michael Hennerich <michael.hennerich@analog.com>
542 S:      Supported
543 W:      http://wiki.analog.com/ADP5588
544 W:      http://ez.analog.com/community/linux-device-drivers
545 F:      drivers/gpio/gpio-adp5588.c
546 F:      drivers/input/keyboard/adp5588-keys.c
547
548 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
549 M:      Michael Hennerich <michael.hennerich@analog.com>
550 S:      Supported
551 W:      http://wiki.analog.com/ADP8860
552 W:      http://ez.analog.com/community/linux-device-drivers
553 F:      drivers/video/backlight/adp8860_bl.c
554
555 ADT746X FAN DRIVER
556 M:      Colin Leroy <colin@colino.net>
557 S:      Maintained
558 F:      drivers/macintosh/therm_adt746x.c
559
560 ADT7475 HARDWARE MONITOR DRIVER
561 M:      Jean Delvare <jdelvare@suse.com>
562 L:      linux-hwmon@vger.kernel.org
563 S:      Maintained
564 F:      Documentation/hwmon/adt7475.rst
565 F:      drivers/hwmon/adt7475.c
566
567 ADVANSYS SCSI DRIVER
568 M:      Matthew Wilcox <willy@infradead.org>
569 M:      Hannes Reinecke <hare@suse.com>
570 L:      linux-scsi@vger.kernel.org
571 S:      Maintained
572 F:      Documentation/scsi/advansys.rst
573 F:      drivers/scsi/advansys.c
574
575 ADVANTECH SWBTN DRIVER
576 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
577 L:      platform-driver-x86@vger.kernel.org
578 S:      Maintained
579 F:      drivers/platform/x86/adv_swbutton.c
580
581 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
582 M:      Michael Hennerich <michael.hennerich@analog.com>
583 S:      Supported
584 W:      http://wiki.analog.com/ADXL345
585 W:      http://ez.analog.com/community/linux-device-drivers
586 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
587 F:      drivers/input/misc/adxl34x.c
588
589 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
590 M:      Michael Hennerich <michael.hennerich@analog.com>
591 S:      Supported
592 W:      http://ez.analog.com/community/linux-device-drivers
593 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
594 F:      drivers/iio/accel/adxl372.c
595 F:      drivers/iio/accel/adxl372_i2c.c
596 F:      drivers/iio/accel/adxl372_spi.c
597
598 AF9013 MEDIA DRIVER
599 M:      Antti Palosaari <crope@iki.fi>
600 L:      linux-media@vger.kernel.org
601 S:      Maintained
602 W:      https://linuxtv.org
603 W:      http://palosaari.fi/linux/
604 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
605 T:      git git://linuxtv.org/anttip/media_tree.git
606 F:      drivers/media/dvb-frontends/af9013*
607
608 AF9033 MEDIA DRIVER
609 M:      Antti Palosaari <crope@iki.fi>
610 L:      linux-media@vger.kernel.org
611 S:      Maintained
612 W:      https://linuxtv.org
613 W:      http://palosaari.fi/linux/
614 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
615 T:      git git://linuxtv.org/anttip/media_tree.git
616 F:      drivers/media/dvb-frontends/af9033*
617
618 AFFS FILE SYSTEM
619 M:      David Sterba <dsterba@suse.com>
620 L:      linux-fsdevel@vger.kernel.org
621 S:      Odd Fixes
622 F:      Documentation/filesystems/affs.rst
623 F:      fs/affs/
624
625 AFS FILESYSTEM
626 M:      David Howells <dhowells@redhat.com>
627 L:      linux-afs@lists.infradead.org
628 S:      Supported
629 W:      https://www.infradead.org/~dhowells/kafs/
630 F:      Documentation/filesystems/afs.rst
631 F:      fs/afs/
632 F:      include/trace/events/afs.h
633
634 AGPGART DRIVER
635 M:      David Airlie <airlied@linux.ie>
636 S:      Maintained
637 T:      git git://anongit.freedesktop.org/drm/drm
638 F:      drivers/char/agp/
639 F:      include/linux/agp*
640 F:      include/uapi/linux/agp*
641
642 AHA152X SCSI DRIVER
643 M:      "Juergen E. Fischer" <fischer@norbit.de>
644 L:      linux-scsi@vger.kernel.org
645 S:      Maintained
646 F:      drivers/scsi/aha152x*
647 F:      drivers/scsi/pcmcia/aha152x*
648
649 AIC7XXX / AIC79XX SCSI DRIVER
650 M:      Hannes Reinecke <hare@suse.com>
651 L:      linux-scsi@vger.kernel.org
652 S:      Maintained
653 F:      drivers/scsi/aic7xxx/
654
655 AIMSLAB FM RADIO RECEIVER DRIVER
656 M:      Hans Verkuil <hverkuil@xs4all.nl>
657 L:      linux-media@vger.kernel.org
658 S:      Maintained
659 W:      https://linuxtv.org
660 T:      git git://linuxtv.org/media_tree.git
661 F:      drivers/media/radio/radio-aimslab*
662
663 AIO
664 M:      Benjamin LaHaise <bcrl@kvack.org>
665 L:      linux-aio@kvack.org
666 S:      Supported
667 F:      fs/aio.c
668 F:      include/linux/*aio*.h
669
670 AIRSPY MEDIA DRIVER
671 M:      Antti Palosaari <crope@iki.fi>
672 L:      linux-media@vger.kernel.org
673 S:      Maintained
674 W:      https://linuxtv.org
675 W:      http://palosaari.fi/linux/
676 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
677 T:      git git://linuxtv.org/anttip/media_tree.git
678 F:      drivers/media/usb/airspy/
679
680 ALACRITECH GIGABIT ETHERNET DRIVER
681 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
682 S:      Maintained
683 F:      drivers/net/ethernet/alacritech/*
684
685 ALCATEL SPEEDTOUCH USB DRIVER
686 M:      Duncan Sands <duncan.sands@free.fr>
687 L:      linux-usb@vger.kernel.org
688 S:      Maintained
689 W:      http://www.linux-usb.org/SpeedTouch/
690 F:      drivers/usb/atm/speedtch.c
691 F:      drivers/usb/atm/usbatm.c
692
693 ALCHEMY AU1XX0 MMC DRIVER
694 M:      Manuel Lauss <manuel.lauss@gmail.com>
695 S:      Maintained
696 F:      drivers/mmc/host/au1xmmc.c
697
698 ALI1563 I2C DRIVER
699 M:      Rudolf Marek <r.marek@assembler.cz>
700 L:      linux-i2c@vger.kernel.org
701 S:      Maintained
702 F:      Documentation/i2c/busses/i2c-ali1563.rst
703 F:      drivers/i2c/busses/i2c-ali1563.c
704
705 ALIENWARE WMI DRIVER
706 L:      Dell.Client.Kernel@dell.com
707 S:      Maintained
708 F:      drivers/platform/x86/dell/alienware-wmi.c
709
710 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
711 M:      Tomislav Denis <tomislav.denis@avl.com>
712 L:      linux-iio@vger.kernel.org
713 S:      Maintained
714 W:      http://www.allsensors.com/
715 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
716 F:      drivers/iio/pressure/dlhl60d.c
717
718 ALLEGRO DVT VIDEO IP CORE DRIVER
719 M:      Michael Tretter <m.tretter@pengutronix.de>
720 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
721 L:      linux-media@vger.kernel.org
722 S:      Maintained
723 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
724 F:      drivers/media/platform/allegro-dvt/
725
726 ALLWINNER A10 CSI DRIVER
727 M:      Maxime Ripard <mripard@kernel.org>
728 L:      linux-media@vger.kernel.org
729 S:      Maintained
730 T:      git git://linuxtv.org/media_tree.git
731 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
732 F:      drivers/media/platform/sunxi/sun4i-csi/
733
734 ALLWINNER CPUFREQ DRIVER
735 M:      Yangtao Li <tiny.windzz@gmail.com>
736 L:      linux-pm@vger.kernel.org
737 S:      Maintained
738 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
739 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
740
741 ALLWINNER CRYPTO DRIVERS
742 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
743 L:      linux-crypto@vger.kernel.org
744 S:      Maintained
745 F:      drivers/crypto/allwinner/
746
747 ALLWINNER THERMAL DRIVER
748 M:      Vasily Khoruzhick <anarsoul@gmail.com>
749 M:      Yangtao Li <tiny.windzz@gmail.com>
750 L:      linux-pm@vger.kernel.org
751 S:      Maintained
752 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
753 F:      drivers/thermal/sun8i_thermal.c
754
755 ALLWINNER VPU DRIVER
756 M:      Maxime Ripard <mripard@kernel.org>
757 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
758 L:      linux-media@vger.kernel.org
759 S:      Maintained
760 F:      drivers/staging/media/sunxi/cedrus/
761
762 ALPHA PORT
763 M:      Richard Henderson <rth@twiddle.net>
764 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
765 M:      Matt Turner <mattst88@gmail.com>
766 L:      linux-alpha@vger.kernel.org
767 S:      Odd Fixes
768 F:      arch/alpha/
769
770 ALPS PS/2 TOUCHPAD DRIVER
771 R:      Pali Rohár <pali@kernel.org>
772 F:      drivers/input/mouse/alps.*
773
774 ALTERA I2C CONTROLLER DRIVER
775 M:      Thor Thayer <thor.thayer@linux.intel.com>
776 S:      Maintained
777 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
778 F:      drivers/i2c/busses/i2c-altera.c
779
780 ALTERA MAILBOX DRIVER
781 M:      Ley Foon Tan <ley.foon.tan@intel.com>
782 S:      Maintained
783 F:      drivers/mailbox/mailbox-altera.c
784
785 ALTERA PIO DRIVER
786 M:      Joyce Ooi <joyce.ooi@intel.com>
787 L:      linux-gpio@vger.kernel.org
788 S:      Maintained
789 F:      drivers/gpio/gpio-altera.c
790
791 ALTERA SYSTEM MANAGER DRIVER
792 M:      Thor Thayer <thor.thayer@linux.intel.com>
793 S:      Maintained
794 F:      drivers/mfd/altera-sysmgr.c
795 F:      include/linux/mfd/altera-sysmgr.h
796
797 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
798 M:      Thor Thayer <thor.thayer@linux.intel.com>
799 S:      Maintained
800 F:      drivers/gpio/gpio-altera-a10sr.c
801 F:      drivers/mfd/altera-a10sr.c
802 F:      drivers/reset/reset-a10sr.c
803 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
804 F:      include/linux/mfd/altera-a10sr.h
805
806 ALTERA TRIPLE SPEED ETHERNET DRIVER
807 M:      Joyce Ooi <joyce.ooi@intel.com>
808 L:      netdev@vger.kernel.org
809 S:      Maintained
810 F:      drivers/net/ethernet/altera/
811
812 ALTERA UART/JTAG UART SERIAL DRIVERS
813 M:      Tobias Klauser <tklauser@distanz.ch>
814 L:      linux-serial@vger.kernel.org
815 S:      Maintained
816 F:      drivers/tty/serial/altera_jtaguart.c
817 F:      drivers/tty/serial/altera_uart.c
818 F:      include/linux/altera_jtaguart.h
819 F:      include/linux/altera_uart.h
820
821 AMAZON ANNAPURNA LABS FIC DRIVER
822 M:      Talel Shenhar <talel@amazon.com>
823 S:      Maintained
824 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
825 F:      drivers/irqchip/irq-al-fic.c
826
827 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
828 M:      Talel Shenhar <talel@amazon.com>
829 M:      Talel Shenhar <talelshenhar@gmail.com>
830 S:      Maintained
831 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
832 F:      drivers/edac/al_mc_edac.c
833
834 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
835 M:      Talel Shenhar <talel@amazon.com>
836 S:      Maintained
837 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
838 F:      drivers/thermal/thermal_mmio.c
839
840 AMAZON ETHERNET DRIVERS
841 M:      Netanel Belgazal <netanel@amazon.com>
842 M:      Arthur Kiyanovski <akiyano@amazon.com>
843 R:      Guy Tzalik <gtzalik@amazon.com>
844 R:      Saeed Bishara <saeedb@amazon.com>
845 L:      netdev@vger.kernel.org
846 S:      Supported
847 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
848 F:      drivers/net/ethernet/amazon/
849
850 AMAZON RDMA EFA DRIVER
851 M:      Gal Pressman <galpress@amazon.com>
852 R:      Yossi Leybovich <sleybo@amazon.com>
853 L:      linux-rdma@vger.kernel.org
854 S:      Supported
855 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
856 F:      drivers/infiniband/hw/efa/
857 F:      include/uapi/rdma/efa-abi.h
858
859 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
860 M:      Tom Lendacky <thomas.lendacky@amd.com>
861 M:      John Allen <john.allen@amd.com>
862 L:      linux-crypto@vger.kernel.org
863 S:      Supported
864 F:      drivers/crypto/ccp/
865 F:      include/linux/ccp.h
866
867 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
868 M:      Brijesh Singh <brijesh.singh@amd.com>
869 M:      Tom Lendacky <thomas.lendacky@amd.com>
870 L:      linux-crypto@vger.kernel.org
871 S:      Supported
872 F:      drivers/crypto/ccp/sev*
873 F:      include/uapi/linux/psp-sev.h
874
875 AMD DISPLAY CORE
876 M:      Harry Wentland <harry.wentland@amd.com>
877 M:      Leo Li <sunpeng.li@amd.com>
878 L:      amd-gfx@lists.freedesktop.org
879 S:      Supported
880 T:      git git://people.freedesktop.org/~agd5f/linux
881 F:      drivers/gpu/drm/amd/display/
882
883 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
884 M:      Huang Rui <ray.huang@amd.com>
885 L:      linux-hwmon@vger.kernel.org
886 S:      Supported
887 F:      Documentation/hwmon/fam15h_power.rst
888 F:      drivers/hwmon/fam15h_power.c
889
890 AMD FCH GPIO DRIVER
891 M:      Enrico Weigelt, metux IT consult <info@metux.net>
892 L:      linux-gpio@vger.kernel.org
893 S:      Maintained
894 F:      drivers/gpio/gpio-amd-fch.c
895 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
896
897 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
898 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
899 S:      Orphan
900 F:      drivers/usb/gadget/udc/amd5536udc.*
901
902 AMD GEODE PROCESSOR/CHIPSET SUPPORT
903 M:      Andres Salomon <dilinger@queued.net>
904 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
905 S:      Supported
906 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
907 F:      arch/x86/include/asm/geode.h
908 F:      drivers/char/hw_random/geode-rng.c
909 F:      drivers/crypto/geode*
910 F:      drivers/video/fbdev/geode/
911
912 AMD IOMMU (AMD-VI)
913 M:      Joerg Roedel <joro@8bytes.org>
914 L:      iommu@lists.linux-foundation.org
915 S:      Maintained
916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
917 F:      drivers/iommu/amd/
918 F:      include/linux/amd-iommu.h
919
920 AMD KFD
921 M:      Felix Kuehling <Felix.Kuehling@amd.com>
922 L:      amd-gfx@lists.freedesktop.org
923 S:      Supported
924 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
925 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
926 F:      drivers/gpu/drm/amd/amdkfd/
927 F:      drivers/gpu/drm/amd/include/cik_structs.h
928 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
929 F:      drivers/gpu/drm/amd/include/v9_structs.h
930 F:      drivers/gpu/drm/amd/include/vi_structs.h
931 F:      include/uapi/linux/kfd_ioctl.h
932
933 AMD SPI DRIVER
934 M:      Sanjay R Mehta <sanju.mehta@amd.com>
935 S:      Maintained
936 F:      drivers/spi/spi-amd.c
937
938 AMD MP2 I2C DRIVER
939 M:      Elie Morisse <syniurge@gmail.com>
940 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
941 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
942 L:      linux-i2c@vger.kernel.org
943 S:      Maintained
944 F:      drivers/i2c/busses/i2c-amd-mp2*
945
946 AMD PMC DRIVER
947 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
948 L:      platform-driver-x86@vger.kernel.org
949 S:      Maintained
950 F:      drivers/platform/x86/amd-pmc.*
951
952 AMD POWERPLAY
953 M:      Evan Quan <evan.quan@amd.com>
954 L:      amd-gfx@lists.freedesktop.org
955 S:      Supported
956 T:      git git://people.freedesktop.org/~agd5f/linux
957 F:      drivers/gpu/drm/amd/pm/powerplay/
958
959 AMD SEATTLE DEVICE TREE SUPPORT
960 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
961 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
962 M:      Tom Lendacky <thomas.lendacky@amd.com>
963 S:      Supported
964 F:      arch/arm64/boot/dts/amd/
965
966 AMD XGBE DRIVER
967 M:      Tom Lendacky <thomas.lendacky@amd.com>
968 L:      netdev@vger.kernel.org
969 S:      Supported
970 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
971 F:      drivers/net/ethernet/amd/xgbe/
972
973 AMD SENSOR FUSION HUB DRIVER
974 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
975 M:      Sandeep Singh <sandeep.singh@amd.com>
976 L:      linux-input@vger.kernel.org
977 S:      Maintained
978 F:      Documentation/hid/amd-sfh*
979 F:      drivers/hid/amd-sfh-hid/
980
981 AMS AS73211 DRIVER
982 M:      Christian Eggers <ceggers@arri.de>
983 L:      linux-iio@vger.kernel.org
984 S:      Maintained
985 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
986 F:      drivers/iio/light/as73211.c
987
988 ANALOG DEVICES INC AD7192 DRIVER
989 M:      Alexandru Tachici <alexandru.tachici@analog.com>
990 L:      linux-iio@vger.kernel.org
991 S:      Supported
992 W:      http://ez.analog.com/community/linux-device-drivers
993 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
994 F:      drivers/iio/adc/ad7192.c
995
996 ANALOG DEVICES INC AD7292 DRIVER
997 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
998 L:      linux-iio@vger.kernel.org
999 S:      Supported
1000 W:      http://ez.analog.com/community/linux-device-drivers
1001 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1002 F:      drivers/iio/adc/ad7292.c
1003
1004 ANALOG DEVICES INC AD7768-1 DRIVER
1005 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1006 L:      linux-iio@vger.kernel.org
1007 S:      Supported
1008 W:      http://ez.analog.com/community/linux-device-drivers
1009 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1010 F:      drivers/iio/adc/ad7768-1.c
1011
1012 ANALOG DEVICES INC AD7780 DRIVER
1013 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1014 M:      Renato Lui Geh <renatogeh@gmail.com>
1015 L:      linux-iio@vger.kernel.org
1016 S:      Supported
1017 W:      http://ez.analog.com/community/linux-device-drivers
1018 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1019 F:      drivers/iio/adc/ad7780.c
1020
1021 ANALOG DEVICES INC AD9389B DRIVER
1022 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1023 L:      linux-media@vger.kernel.org
1024 S:      Maintained
1025 F:      drivers/media/i2c/ad9389b*
1026
1027 ANALOG DEVICES INC ADGS1408 DRIVER
1028 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1029 S:      Supported
1030 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1031 F:      drivers/mux/adgs1408.c
1032
1033 ANALOG DEVICES INC ADIN DRIVER
1034 M:      Michael Hennerich <michael.hennerich@analog.com>
1035 L:      netdev@vger.kernel.org
1036 S:      Supported
1037 W:      http://ez.analog.com/community/linux-device-drivers
1038 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1039 F:      drivers/net/phy/adin.c
1040
1041 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1042 M:      Nuno Sa <nuno.sa@analog.com>
1043 L:      linux-iio@vger.kernel.org
1044 S:      Supported
1045 F:      drivers/iio/imu/adis.c
1046 F:      include/linux/iio/imu/adis.h
1047
1048 ANALOG DEVICES INC ADIS16460 DRIVER
1049 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1050 L:      linux-iio@vger.kernel.org
1051 S:      Supported
1052 W:      http://ez.analog.com/community/linux-device-drivers
1053 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1054 F:      drivers/iio/imu/adis16460.c
1055
1056 ANALOG DEVICES INC ADIS16475 DRIVER
1057 M:      Nuno Sa <nuno.sa@analog.com>
1058 L:      linux-iio@vger.kernel.org
1059 W:      http://ez.analog.com/community/linux-device-drivers
1060 S:      Supported
1061 F:      drivers/iio/imu/adis16475.c
1062 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1063
1064 ANALOG DEVICES INC ADM1177 DRIVER
1065 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1066 L:      linux-hwmon@vger.kernel.org
1067 S:      Supported
1068 W:      http://ez.analog.com/community/linux-device-drivers
1069 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1070 F:      drivers/hwmon/adm1177.c
1071
1072 ANALOG DEVICES INC ADP5061 DRIVER
1073 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1074 L:      linux-pm@vger.kernel.org
1075 S:      Supported
1076 W:      http://ez.analog.com/community/linux-device-drivers
1077 F:      drivers/power/supply/adp5061.c
1078
1079 ANALOG DEVICES INC ADV7180 DRIVER
1080 M:      Lars-Peter Clausen <lars@metafoo.de>
1081 L:      linux-media@vger.kernel.org
1082 S:      Supported
1083 W:      http://ez.analog.com/community/linux-device-drivers
1084 F:      drivers/media/i2c/adv7180.c
1085 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1086
1087 ANALOG DEVICES INC ADV748X DRIVER
1088 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1089 L:      linux-media@vger.kernel.org
1090 S:      Maintained
1091 F:      drivers/media/i2c/adv748x/*
1092
1093 ANALOG DEVICES INC ADV7511 DRIVER
1094 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1095 L:      linux-media@vger.kernel.org
1096 S:      Maintained
1097 F:      drivers/media/i2c/adv7511*
1098
1099 ANALOG DEVICES INC ADV7604 DRIVER
1100 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1101 L:      linux-media@vger.kernel.org
1102 S:      Maintained
1103 F:      drivers/media/i2c/adv7604*
1104 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1105
1106 ANALOG DEVICES INC ADV7842 DRIVER
1107 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1108 L:      linux-media@vger.kernel.org
1109 S:      Maintained
1110 F:      drivers/media/i2c/adv7842*
1111
1112 ANALOG DEVICES INC ADXRS290 DRIVER
1113 M:      Nishant Malpani <nish.malpani25@gmail.com>
1114 L:      linux-iio@vger.kernel.org
1115 S:      Supported
1116 F:      drivers/iio/gyro/adxrs290.c
1117 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1118
1119 ANALOG DEVICES INC ASOC CODEC DRIVERS
1120 M:      Lars-Peter Clausen <lars@metafoo.de>
1121 M:      Nuno Sá <nuno.sa@analog.com>
1122 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1123 S:      Supported
1124 W:      http://wiki.analog.com/
1125 W:      http://ez.analog.com/community/linux-device-drivers
1126 F:      sound/soc/codecs/ad1*
1127 F:      sound/soc/codecs/ad7*
1128 F:      sound/soc/codecs/adau*
1129 F:      sound/soc/codecs/adav*
1130 F:      sound/soc/codecs/sigmadsp.*
1131 F:      sound/soc/codecs/ssm*
1132
1133 ANALOG DEVICES INC DMA DRIVERS
1134 M:      Lars-Peter Clausen <lars@metafoo.de>
1135 S:      Supported
1136 W:      http://ez.analog.com/community/linux-device-drivers
1137 F:      drivers/dma/dma-axi-dmac.c
1138
1139 ANALOG DEVICES INC IIO DRIVERS
1140 M:      Lars-Peter Clausen <lars@metafoo.de>
1141 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1142 S:      Supported
1143 W:      http://wiki.analog.com/
1144 W:      http://ez.analog.com/community/linux-device-drivers
1145 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1146 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1147 F:      Documentation/devicetree/bindings/iio/*/adi,*
1148 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1149 F:      drivers/iio/*/ad*
1150 F:      drivers/iio/adc/ltc249*
1151 F:      drivers/iio/amplifiers/hmc425a.c
1152 F:      drivers/staging/iio/*/ad*
1153 X:      drivers/iio/*/adjd*
1154
1155 ANALOGBITS PLL LIBRARIES
1156 M:      Paul Walmsley <paul.walmsley@sifive.com>
1157 S:      Supported
1158 F:      drivers/clk/analogbits/*
1159 F:      include/linux/clk/analogbits*
1160
1161 ANDES ARCHITECTURE
1162 M:      Nick Hu <nickhu@andestech.com>
1163 M:      Greentime Hu <green.hu@gmail.com>
1164 M:      Vincent Chen <deanbo422@gmail.com>
1165 S:      Supported
1166 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1167 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1168 F:      Documentation/devicetree/bindings/nds32/
1169 F:      arch/nds32/
1170 N:      nds32
1171 K:      nds32
1172
1173 ANDROID CONFIG FRAGMENTS
1174 M:      Rob Herring <robh@kernel.org>
1175 S:      Supported
1176 F:      kernel/configs/android*
1177
1178 ANDROID DRIVERS
1179 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1180 M:      Arve Hjønnevåg <arve@android.com>
1181 M:      Todd Kjos <tkjos@android.com>
1182 M:      Martijn Coenen <maco@android.com>
1183 M:      Joel Fernandes <joel@joelfernandes.org>
1184 M:      Christian Brauner <christian@brauner.io>
1185 M:      Hridya Valsaraju <hridya@google.com>
1186 M:      Suren Baghdasaryan <surenb@google.com>
1187 L:      linux-kernel@vger.kernel.org
1188 S:      Supported
1189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1190 F:      drivers/android/
1191 F:      drivers/staging/android/
1192
1193 ANDROID GOLDFISH PIC DRIVER
1194 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1195 S:      Supported
1196 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1197 F:      drivers/irqchip/irq-goldfish-pic.c
1198
1199 ANDROID GOLDFISH RTC DRIVER
1200 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1201 S:      Supported
1202 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1203 F:      drivers/rtc/rtc-goldfish.c
1204
1205 AOA (Apple Onboard Audio) ALSA DRIVER
1206 M:      Johannes Berg <johannes@sipsolutions.net>
1207 L:      linuxppc-dev@lists.ozlabs.org
1208 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1209 S:      Maintained
1210 F:      sound/aoa/
1211
1212 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1213 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1214 L:      linux-iio@vger.kernel.org
1215 S:      Maintained
1216 F:      drivers/iio/adc/stx104.c
1217
1218 APM DRIVER
1219 M:      Jiri Kosina <jikos@kernel.org>
1220 S:      Odd fixes
1221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1222 F:      arch/x86/kernel/apm_32.c
1223 F:      drivers/char/apm-emulation.c
1224 F:      include/linux/apm_bios.h
1225 F:      include/uapi/linux/apm_bios.h
1226
1227 APPARMOR SECURITY MODULE
1228 M:      John Johansen <john.johansen@canonical.com>
1229 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1230 S:      Supported
1231 W:      wiki.apparmor.net
1232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1233 F:      Documentation/admin-guide/LSM/apparmor.rst
1234 F:      security/apparmor/
1235
1236 APPLE BCM5974 MULTITOUCH DRIVER
1237 M:      Henrik Rydberg <rydberg@bitmath.org>
1238 L:      linux-input@vger.kernel.org
1239 S:      Odd fixes
1240 F:      drivers/input/mouse/bcm5974.c
1241
1242 APPLE SMC DRIVER
1243 M:      Henrik Rydberg <rydberg@bitmath.org>
1244 L:      linux-hwmon@vger.kernel.org
1245 S:      Odd fixes
1246 F:      drivers/hwmon/applesmc.c
1247
1248 APPLETALK NETWORK LAYER
1249 L:      netdev@vger.kernel.org
1250 S:      Odd fixes
1251 F:      drivers/net/appletalk/
1252 F:      include/linux/atalk.h
1253 F:      include/uapi/linux/atalk.h
1254 F:      net/appletalk/
1255
1256 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1257 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1258 S:      Supported
1259 F:      arch/arm64/boot/dts/apm/
1260
1261 APPLIED MICRO (APM) X-GENE SOC EDAC
1262 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1263 S:      Supported
1264 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1265 F:      drivers/edac/xgene_edac.c
1266
1267 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1268 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1269 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1270 S:      Supported
1271 F:      drivers/net/ethernet/apm/xgene-v2/
1272
1273 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1274 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1275 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1276 M:      Quan Nguyen <quan@os.amperecomputing.com>
1277 S:      Supported
1278 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1279 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1280 F:      drivers/net/ethernet/apm/xgene/
1281 F:      drivers/net/mdio/mdio-xgene.c
1282
1283 APPLIED MICRO (APM) X-GENE SOC PMU
1284 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1285 S:      Supported
1286 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1287 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1288 F:      drivers/perf/xgene_pmu.c
1289
1290 APTINA CAMERA SENSOR PLL
1291 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1292 L:      linux-media@vger.kernel.org
1293 S:      Maintained
1294 F:      drivers/media/i2c/aptina-pll.*
1295
1296 AQUANTIA ETHERNET DRIVER (atlantic)
1297 M:      Igor Russkikh <irusskikh@marvell.com>
1298 L:      netdev@vger.kernel.org
1299 S:      Supported
1300 W:      https://www.marvell.com/
1301 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1302 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1303 F:      drivers/net/ethernet/aquantia/atlantic/
1304
1305 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1306 M:      Egor Pomozov <epomozov@marvell.com>
1307 L:      netdev@vger.kernel.org
1308 S:      Supported
1309 W:      http://www.aquantia.com
1310 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1311
1312 ARASAN NAND CONTROLLER DRIVER
1313 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1314 L:      linux-mtd@lists.infradead.org
1315 S:      Maintained
1316 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1317 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1318
1319 ARC FRAMEBUFFER DRIVER
1320 M:      Jaya Kumar <jayalk@intworks.biz>
1321 S:      Maintained
1322 F:      drivers/video/fbdev/arcfb.c
1323 F:      drivers/video/fbdev/core/fb_defio.c
1324
1325 ARC PGU DRM DRIVER
1326 M:      Alexey Brodkin <abrodkin@synopsys.com>
1327 S:      Supported
1328 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1329 F:      drivers/gpu/drm/tiny/arcpgu.c
1330
1331 ARCNET NETWORK LAYER
1332 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1333 L:      netdev@vger.kernel.org
1334 S:      Maintained
1335 F:      drivers/net/arcnet/
1336 F:      include/uapi/linux/if_arcnet.h
1337
1338 ARM ARCHITECTED TIMER DRIVER
1339 M:      Mark Rutland <mark.rutland@arm.com>
1340 M:      Marc Zyngier <maz@kernel.org>
1341 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1342 S:      Maintained
1343 F:      arch/arm/include/asm/arch_timer.h
1344 F:      arch/arm64/include/asm/arch_timer.h
1345 F:      drivers/clocksource/arm_arch_timer.c
1346
1347 ARM HDLCD DRM DRIVER
1348 M:      Liviu Dudau <liviu.dudau@arm.com>
1349 S:      Supported
1350 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1351 F:      drivers/gpu/drm/arm/hdlcd_*
1352
1353 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1354 M:      Linus Walleij <linus.walleij@linaro.org>
1355 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1356 S:      Maintained
1357 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1358 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1359 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1360 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1361 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1362 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1363 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1364 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1365 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1366 F:      arch/arm/boot/dts/arm-realview-*
1367 F:      arch/arm/boot/dts/integrator*
1368 F:      arch/arm/boot/dts/versatile*
1369 F:      arch/arm/mach-integrator/
1370 F:      arch/arm/mach-realview/
1371 F:      arch/arm/mach-versatile/
1372 F:      arch/arm/plat-versatile/
1373 F:      drivers/bus/arm-integrator-lm.c
1374 F:      drivers/clk/versatile/
1375 F:      drivers/i2c/busses/i2c-versatile.c
1376 F:      drivers/irqchip/irq-versatile-fpga.c
1377 F:      drivers/mtd/maps/physmap-versatile.*
1378 F:      drivers/power/reset/arm-versatile-reboot.c
1379 F:      drivers/soc/versatile/
1380
1381 ARM KOMEDA DRM-KMS DRIVER
1382 M:      James (Qian) Wang <james.qian.wang@arm.com>
1383 M:      Liviu Dudau <liviu.dudau@arm.com>
1384 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1385 L:      Mali DP Maintainers <malidp@foss.arm.com>
1386 S:      Supported
1387 T:      git git://anongit.freedesktop.org/drm/drm-misc
1388 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1389 F:      Documentation/gpu/komeda-kms.rst
1390 F:      drivers/gpu/drm/arm/display/include/
1391 F:      drivers/gpu/drm/arm/display/komeda/
1392
1393 ARM MALI PANFROST DRM DRIVER
1394 M:      Rob Herring <robh@kernel.org>
1395 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1396 R:      Steven Price <steven.price@arm.com>
1397 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1398 L:      dri-devel@lists.freedesktop.org
1399 S:      Supported
1400 T:      git git://anongit.freedesktop.org/drm/drm-misc
1401 F:      drivers/gpu/drm/panfrost/
1402 F:      include/uapi/drm/panfrost_drm.h
1403
1404 ARM MALI-DP DRM DRIVER
1405 M:      Liviu Dudau <liviu.dudau@arm.com>
1406 M:      Brian Starkey <brian.starkey@arm.com>
1407 L:      Mali DP Maintainers <malidp@foss.arm.com>
1408 S:      Supported
1409 T:      git git://anongit.freedesktop.org/drm/drm-misc
1410 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1411 F:      Documentation/gpu/afbc.rst
1412 F:      drivers/gpu/drm/arm/
1413
1414 ARM MFM AND FLOPPY DRIVERS
1415 M:      Ian Molton <spyro@f2s.com>
1416 S:      Maintained
1417 F:      arch/arm/include/asm/floppy.h
1418 F:      arch/arm/mach-rpc/floppydma.S
1419
1420 ARM PMU PROFILING AND DEBUGGING
1421 M:      Will Deacon <will@kernel.org>
1422 M:      Mark Rutland <mark.rutland@arm.com>
1423 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1424 S:      Maintained
1425 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1426 F:      Documentation/devicetree/bindings/perf/
1427 F:      arch/arm*/include/asm/hw_breakpoint.h
1428 F:      arch/arm*/include/asm/perf_event.h
1429 F:      arch/arm*/kernel/hw_breakpoint.c
1430 F:      arch/arm*/kernel/perf_*
1431 F:      drivers/perf/
1432 F:      include/linux/perf/arm_pmu.h
1433
1434 ARM PORT
1435 M:      Russell King <linux@armlinux.org.uk>
1436 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1437 S:      Odd Fixes
1438 W:      http://www.armlinux.org.uk/
1439 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1440 F:      arch/arm/
1441 X:      arch/arm/boot/dts/
1442
1443 ARM PRIMECELL AACI PL041 DRIVER
1444 M:      Russell King <linux@armlinux.org.uk>
1445 S:      Odd Fixes
1446 F:      sound/arm/aaci.*
1447
1448 ARM PRIMECELL BUS SUPPORT
1449 M:      Russell King <linux@armlinux.org.uk>
1450 S:      Odd Fixes
1451 F:      drivers/amba/
1452 F:      include/linux/amba/bus.h
1453
1454 ARM PRIMECELL CLCD PL110 DRIVER
1455 M:      Russell King <linux@armlinux.org.uk>
1456 S:      Odd Fixes
1457 F:      drivers/video/fbdev/amba-clcd.*
1458
1459 ARM PRIMECELL KMI PL050 DRIVER
1460 M:      Russell King <linux@armlinux.org.uk>
1461 S:      Odd Fixes
1462 F:      drivers/input/serio/ambakmi.*
1463 F:      include/linux/amba/kmi.h
1464
1465 ARM PRIMECELL MMCI PL180/1 DRIVER
1466 M:      Russell King <linux@armlinux.org.uk>
1467 S:      Odd Fixes
1468 F:      drivers/mmc/host/mmci.*
1469 F:      include/linux/amba/mmci.h
1470
1471 ARM PRIMECELL SSP PL022 SPI DRIVER
1472 M:      Linus Walleij <linus.walleij@linaro.org>
1473 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1474 S:      Maintained
1475 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1476 F:      drivers/spi/spi-pl022.c
1477
1478 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1479 M:      Russell King <linux@armlinux.org.uk>
1480 S:      Odd Fixes
1481 F:      drivers/tty/serial/amba-pl01*.c
1482 F:      include/linux/amba/serial.h
1483
1484 ARM PRIMECELL VIC PL190/PL192 DRIVER
1485 M:      Linus Walleij <linus.walleij@linaro.org>
1486 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1487 S:      Maintained
1488 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1489 F:      drivers/irqchip/irq-vic.c
1490
1491 ARM SMC WATCHDOG DRIVER
1492 M:      Julius Werner <jwerner@chromium.org>
1493 R:      Evan Benn <evanbenn@chromium.org>
1494 S:      Maintained
1495 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1496 F:      drivers/watchdog/arm_smc_wdt.c
1497
1498 ARM SMMU DRIVERS
1499 M:      Will Deacon <will@kernel.org>
1500 R:      Robin Murphy <robin.murphy@arm.com>
1501 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1502 S:      Maintained
1503 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1504 F:      drivers/iommu/arm/
1505 F:      drivers/iommu/io-pgtable-arm*
1506
1507 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1508 M:      Arnd Bergmann <arnd@arndb.de>
1509 M:      Olof Johansson <olof@lixom.net>
1510 M:      soc@kernel.org
1511 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1512 S:      Maintained
1513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1514 F:      arch/arm/boot/dts/Makefile
1515 F:      arch/arm64/boot/dts/Makefile
1516
1517 ARM SUB-ARCHITECTURES
1518 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1519 S:      Maintained
1520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1521 F:      arch/arm/mach-*/
1522 F:      arch/arm/plat-*/
1523
1524 ARM/ACTIONS SEMI ARCHITECTURE
1525 M:      Andreas Färber <afaerber@suse.de>
1526 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1527 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1528 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1529 S:      Maintained
1530 F:      Documentation/devicetree/bindings/arm/actions.yaml
1531 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1532 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1533 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1534 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1535 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1536 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1537 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1538 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1539 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1540 F:      arch/arm/boot/dts/owl-*
1541 F:      arch/arm/mach-actions/
1542 F:      arch/arm64/boot/dts/actions/
1543 F:      drivers/clk/actions/
1544 F:      drivers/clocksource/timer-owl*
1545 F:      drivers/dma/owl-dma.c
1546 F:      drivers/i2c/busses/i2c-owl.c
1547 F:      drivers/irqchip/irq-owl-sirq.c
1548 F:      drivers/mmc/host/owl-mmc.c
1549 F:      drivers/net/ethernet/actions/
1550 F:      drivers/pinctrl/actions/*
1551 F:      drivers/soc/actions/
1552 F:      include/dt-bindings/power/owl-*
1553 F:      include/dt-bindings/reset/actions,*
1554 F:      include/linux/soc/actions/
1555 N:      owl
1556
1557 ARM/ADS SPHERE MACHINE SUPPORT
1558 M:      Lennert Buytenhek <kernel@wantstofly.org>
1559 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1560 S:      Maintained
1561
1562 ARM/AFEB9260 MACHINE SUPPORT
1563 M:      Sergey Lapin <slapin@ossfans.org>
1564 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1565 S:      Maintained
1566
1567 ARM/AJECO 1ARM MACHINE SUPPORT
1568 M:      Lennert Buytenhek <kernel@wantstofly.org>
1569 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1570 S:      Maintained
1571
1572 ARM/Allwinner SoC Clock Support
1573 M:      Emilio López <emilio@elopez.com.ar>
1574 S:      Maintained
1575 F:      drivers/clk/sunxi/
1576
1577 ARM/Allwinner sunXi SoC support
1578 M:      Maxime Ripard <mripard@kernel.org>
1579 M:      Chen-Yu Tsai <wens@csie.org>
1580 R:      Jernej Skrabec <jernej.skrabec@siol.net>
1581 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1582 S:      Maintained
1583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1584 L:      linux-sunxi@lists.linux.dev
1585 F:      arch/arm/mach-sunxi/
1586 F:      arch/arm64/boot/dts/allwinner/
1587 F:      drivers/clk/sunxi-ng/
1588 F:      drivers/pinctrl/sunxi/
1589 F:      drivers/soc/sunxi/
1590 N:      allwinner
1591 N:      sun[x456789]i
1592 N:      sun50i
1593
1594 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1595 M:      Neil Armstrong <narmstrong@baylibre.com>
1596 M:      Jerome Brunet <jbrunet@baylibre.com>
1597 L:      linux-amlogic@lists.infradead.org
1598 S:      Maintained
1599 F:      Documentation/devicetree/bindings/clock/amlogic*
1600 F:      drivers/clk/meson/
1601 F:      include/dt-bindings/clock/gxbb*
1602 F:      include/dt-bindings/clock/meson*
1603
1604 ARM/Amlogic Meson SoC Crypto Drivers
1605 M:      Corentin Labbe <clabbe@baylibre.com>
1606 L:      linux-crypto@vger.kernel.org
1607 L:      linux-amlogic@lists.infradead.org
1608 S:      Maintained
1609 F:      Documentation/devicetree/bindings/crypto/amlogic*
1610 F:      drivers/crypto/amlogic/
1611
1612 ARM/Amlogic Meson SoC Sound Drivers
1613 M:      Jerome Brunet <jbrunet@baylibre.com>
1614 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1615 S:      Maintained
1616 F:      Documentation/devicetree/bindings/sound/amlogic*
1617 F:      sound/soc/meson/
1618
1619 ARM/Amlogic Meson SoC support
1620 M:      Kevin Hilman <khilman@baylibre.com>
1621 R:      Neil Armstrong <narmstrong@baylibre.com>
1622 R:      Jerome Brunet <jbrunet@baylibre.com>
1623 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1624 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1625 L:      linux-amlogic@lists.infradead.org
1626 S:      Maintained
1627 W:      http://linux-meson.com/
1628 F:      arch/arm/boot/dts/meson*
1629 F:      arch/arm/mach-meson/
1630 F:      arch/arm64/boot/dts/amlogic/
1631 F:      drivers/mmc/host/meson*
1632 F:      drivers/pinctrl/meson/
1633 F:      drivers/rtc/rtc-meson*
1634 F:      drivers/soc/amlogic/
1635 N:      meson
1636
1637 ARM/Annapurna Labs ALPINE ARCHITECTURE
1638 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1639 M:      Antoine Tenart <atenart@kernel.org>
1640 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1641 S:      Maintained
1642 F:      arch/arm/boot/dts/alpine*
1643 F:      arch/arm/mach-alpine/
1644 F:      arch/arm64/boot/dts/amazon/
1645 F:      drivers/*/*alpine*
1646
1647 ARM/APPLE MACHINE SUPPORT
1648 M:      Hector Martin <marcan@marcan.st>
1649 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1650 S:      Maintained
1651 W:      https://asahilinux.org
1652 B:      https://github.com/AsahiLinux/linux/issues
1653 C:      irc://chat.freenode.net/asahi-dev
1654 T:      git https://github.com/AsahiLinux/linux.git
1655 F:      Documentation/devicetree/bindings/arm/apple.yaml
1656 F:      Documentation/devicetree/bindings/interrupt-controller/apple,aic.yaml
1657 F:      arch/arm64/boot/dts/apple/
1658 F:      drivers/irqchip/irq-apple-aic.c
1659 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1660
1661 ARM/ARTPEC MACHINE SUPPORT
1662 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1663 M:      Lars Persson <lars.persson@axis.com>
1664 L:      linux-arm-kernel@axis.com
1665 S:      Maintained
1666 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1667 F:      arch/arm/boot/dts/artpec6*
1668 F:      arch/arm/mach-artpec
1669 F:      drivers/clk/axis
1670 F:      drivers/crypto/axis
1671 F:      drivers/mmc/host/usdhi6rol0.c
1672 F:      drivers/pinctrl/pinctrl-artpec*
1673
1674 ARM/ASPEED I2C DRIVER
1675 M:      Brendan Higgins <brendanhiggins@google.com>
1676 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1677 R:      Joel Stanley <joel@jms.id.au>
1678 L:      linux-i2c@vger.kernel.org
1679 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1680 S:      Maintained
1681 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1682 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1683 F:      drivers/i2c/busses/i2c-aspeed.c
1684 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1685
1686 ARM/ASPEED MACHINE SUPPORT
1687 M:      Joel Stanley <joel@jms.id.au>
1688 R:      Andrew Jeffery <andrew@aj.id.au>
1689 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1690 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1691 S:      Supported
1692 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1694 F:      arch/arm/boot/dts/aspeed-*
1695 F:      arch/arm/mach-aspeed/
1696 N:      aspeed
1697
1698 ARM/BITMAIN ARCHITECTURE
1699 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1700 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1701 S:      Maintained
1702 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1703 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1704 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1705 F:      arch/arm64/boot/dts/bitmain/
1706 F:      drivers/clk/clk-bm1880.c
1707 F:      drivers/pinctrl/pinctrl-bm1880.c
1708
1709 ARM/CALXEDA HIGHBANK ARCHITECTURE
1710 M:      Andre Przywara <andre.przywara@arm.com>
1711 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1712 S:      Maintained
1713 F:      arch/arm/boot/dts/ecx-*.dts*
1714 F:      arch/arm/boot/dts/highbank.dts
1715 F:      arch/arm/mach-highbank/
1716
1717 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1718 M:      Krzysztof Halasa <khalasa@piap.pl>
1719 S:      Maintained
1720 F:      arch/arm/mach-cns3xxx/
1721
1722 ARM/CAVIUM THUNDER NETWORK DRIVER
1723 M:      Sunil Goutham <sgoutham@marvell.com>
1724 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1725 S:      Supported
1726 F:      drivers/net/ethernet/cavium/thunder/
1727
1728 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1729 M:      Lukasz Majewski <lukma@denx.de>
1730 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1731 S:      Maintained
1732 F:      arch/arm/mach-ep93xx/ts72xx.c
1733
1734 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1735 M:      Alexander Shiyan <shc_work@mail.ru>
1736 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1737 S:      Odd Fixes
1738 N:      clps711x
1739
1740 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1741 M:      Lennert Buytenhek <kernel@wantstofly.org>
1742 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1743 S:      Maintained
1744
1745 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1746 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1747 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1748 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1749 S:      Maintained
1750 F:      arch/arm/mach-ep93xx/
1751 F:      arch/arm/mach-ep93xx/include/mach/
1752
1753 ARM/CLKDEV SUPPORT
1754 M:      Russell King <linux@armlinux.org.uk>
1755 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1756 S:      Maintained
1757 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1758 F:      drivers/clk/clkdev.c
1759
1760 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1761 M:      Baruch Siach <baruch@tkos.co.il>
1762 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1763 S:      Maintained
1764 F:      arch/arm/boot/dts/cx92755*
1765 N:      digicolor
1766
1767 ARM/CONTEC MICRO9 MACHINE SUPPORT
1768 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1769 S:      Maintained
1770 F:      arch/arm/mach-ep93xx/micro9.c
1771
1772 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1773 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1774 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1775 R:      Mike Leach <mike.leach@linaro.org>
1776 R:      Leo Yan <leo.yan@linaro.org>
1777 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1778 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1779 S:      Maintained
1780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1781 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1782 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1783 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1784 F:      Documentation/devicetree/bindings/arm/coresight.txt
1785 F:      Documentation/trace/coresight/*
1786 F:      drivers/hwtracing/coresight/*
1787 F:      include/dt-bindings/arm/coresight-cti-dt.h
1788 F:      include/linux/coresight*
1789 F:      tools/perf/arch/arm/util/auxtrace.c
1790 F:      tools/perf/arch/arm/util/cs-etm.c
1791 F:      tools/perf/arch/arm/util/cs-etm.h
1792 F:      tools/perf/arch/arm/util/pmu.c
1793 F:      tools/perf/util/cs-etm-decoder/*
1794 F:      tools/perf/util/cs-etm.*
1795
1796 ARM/CORGI MACHINE SUPPORT
1797 M:      Richard Purdie <rpurdie@rpsys.net>
1798 S:      Maintained
1799
1800 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1801 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1802 M:      Linus Walleij <linus.walleij@linaro.org>
1803 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1804 S:      Maintained
1805 T:      git git://github.com/ulli-kroll/linux.git
1806 F:      Documentation/devicetree/bindings/arm/gemini.txt
1807 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1808 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1809 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1810 F:      arch/arm/mach-gemini/
1811 F:      drivers/net/ethernet/cortina/
1812 F:      drivers/pinctrl/pinctrl-gemini.c
1813 F:      drivers/rtc/rtc-ftrtc010.c
1814
1815 ARM/CZ.NIC TURRIS SUPPORT
1816 M:      Marek Behun <kabel@kernel.org>
1817 S:      Maintained
1818 W:      https://www.turris.cz/
1819 F:      Documentation/ABI/testing/debugfs-moxtet
1820 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1821 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1822 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1823 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1824 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1825 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1826 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1827 F:      drivers/bus/moxtet.c
1828 F:      drivers/firmware/turris-mox-rwtm.c
1829 F:      drivers/leds/leds-turris-omnia.c
1830 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
1831 F:      drivers/gpio/gpio-moxtet.c
1832 F:      drivers/watchdog/armada_37xx_wdt.c
1833 F:      include/dt-bindings/bus/moxtet.h
1834 F:      include/linux/armada-37xx-rwtm-mailbox.h
1835 F:      include/linux/moxtet.h
1836
1837 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1838 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1839 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1840 S:      Maintained
1841 F:      arch/arm/mach-pxa/ezx.c
1842
1843 ARM/FARADAY FA526 PORT
1844 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1845 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1846 S:      Maintained
1847 T:      git git://git.berlios.de/gemini-board
1848 F:      arch/arm/mm/*-fa*
1849
1850 ARM/FOOTBRIDGE ARCHITECTURE
1851 M:      Russell King <linux@armlinux.org.uk>
1852 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1853 S:      Maintained
1854 W:      http://www.armlinux.org.uk/
1855 F:      arch/arm/include/asm/hardware/dec21285.h
1856 F:      arch/arm/mach-footbridge/
1857
1858 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1859 M:      Shawn Guo <shawnguo@kernel.org>
1860 M:      Sascha Hauer <s.hauer@pengutronix.de>
1861 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1862 R:      Fabio Estevam <festevam@gmail.com>
1863 R:      NXP Linux Team <linux-imx@nxp.com>
1864 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1865 S:      Maintained
1866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1867 X:      drivers/media/i2c/
1868 N:      imx
1869 N:      mxs
1870
1871 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1872 M:      Shawn Guo <shawnguo@kernel.org>
1873 M:      Li Yang <leoyang.li@nxp.com>
1874 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1875 S:      Maintained
1876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1877 F:      arch/arm/boot/dts/ls1021a*
1878 F:      arch/arm64/boot/dts/freescale/fsl-*
1879 F:      arch/arm64/boot/dts/freescale/qoriq-*
1880
1881 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1882 M:      Shawn Guo <shawnguo@kernel.org>
1883 M:      Sascha Hauer <s.hauer@pengutronix.de>
1884 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1885 R:      Stefan Agner <stefan@agner.ch>
1886 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1887 S:      Maintained
1888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1889 F:      arch/arm/boot/dts/vf*
1890 F:      arch/arm/mach-imx/*vf610*
1891
1892 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1893 M:      Lennert Buytenhek <kernel@wantstofly.org>
1894 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1895 S:      Maintained
1896
1897 ARM/GUMSTIX MACHINE SUPPORT
1898 M:      Steve Sakoman <sakoman@gmail.com>
1899 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1900 S:      Maintained
1901
1902 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1903 M:      Philipp Zabel <philipp.zabel@gmail.com>
1904 M:      Paul Parsons <lost.distance@yahoo.com>
1905 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1906 S:      Maintained
1907 F:      arch/arm/mach-pxa/hx4700.c
1908 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1909 F:      sound/soc/pxa/hx4700.c
1910
1911 ARM/HISILICON SOC SUPPORT
1912 M:      Wei Xu <xuwei5@hisilicon.com>
1913 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1914 S:      Supported
1915 W:      http://www.hisilicon.com
1916 T:      git git://github.com/hisilicon/linux-hisi.git
1917 F:      arch/arm/boot/dts/hi3*
1918 F:      arch/arm/boot/dts/hip*
1919 F:      arch/arm/boot/dts/hisi*
1920 F:      arch/arm/mach-hisi/
1921 F:      arch/arm64/boot/dts/hisilicon/
1922
1923 ARM/HP JORNADA 7XX MACHINE SUPPORT
1924 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1925 S:      Maintained
1926 W:      www.jlime.com
1927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1928 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1929 F:      arch/arm/mach-sa1100/jornada720.c
1930
1931 ARM/IGEP MACHINE SUPPORT
1932 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1933 M:      Javier Martinez Canillas <javier@dowhile0.org>
1934 L:      linux-omap@vger.kernel.org
1935 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1936 S:      Maintained
1937 F:      arch/arm/boot/dts/omap3-igep*
1938
1939 ARM/INCOME PXA270 SUPPORT
1940 M:      Marek Vasut <marek.vasut@gmail.com>
1941 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1942 S:      Maintained
1943 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1944
1945 ARM/INTEL IOP32X ARM ARCHITECTURE
1946 M:      Lennert Buytenhek <kernel@wantstofly.org>
1947 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1948 S:      Maintained
1949
1950 ARM/INTEL IQ81342EX MACHINE SUPPORT
1951 M:      Lennert Buytenhek <kernel@wantstofly.org>
1952 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1953 S:      Maintained
1954
1955 ARM/INTEL IXDP2850 MACHINE SUPPORT
1956 M:      Lennert Buytenhek <kernel@wantstofly.org>
1957 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1958 S:      Maintained
1959
1960 ARM/INTEL IXP4XX ARM ARCHITECTURE
1961 M:      Linus Walleij <linusw@kernel.org>
1962 M:      Imre Kaloz <kaloz@openwrt.org>
1963 M:      Krzysztof Halasa <khalasa@piap.pl>
1964 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1965 S:      Maintained
1966 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1967 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1968 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1969 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1970 F:      arch/arm/mach-ixp4xx/
1971 F:      drivers/clocksource/timer-ixp4xx.c
1972 F:      drivers/gpio/gpio-ixp4xx.c
1973 F:      drivers/irqchip/irq-ixp4xx.c
1974 F:      include/linux/irqchip/irq-ixp4xx.h
1975 F:      include/linux/platform_data/timer-ixp4xx.h
1976
1977 ARM/INTEL KEEMBAY ARCHITECTURE
1978 M:      Paul J. Murphy <paul.j.murphy@intel.com>
1979 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
1980 S:      Maintained
1981 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
1982 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
1983 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
1984
1985 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1986 M:      Jonathan Cameron <jic23@cam.ac.uk>
1987 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1988 S:      Maintained
1989 F:      arch/arm/mach-pxa/stargate2.c
1990 F:      drivers/pcmcia/pxa2xx_stargate2.c
1991
1992 ARM/INTEL XSC3 (MANZANO) ARM CORE
1993 M:      Lennert Buytenhek <kernel@wantstofly.org>
1994 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1995 S:      Maintained
1996
1997 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1998 M:      Lennert Buytenhek <kernel@wantstofly.org>
1999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2000 S:      Maintained
2001
2002 ARM/LG1K ARCHITECTURE
2003 M:      Chanho Min <chanho.min@lge.com>
2004 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2005 S:      Maintained
2006 F:      arch/arm64/boot/dts/lg/
2007
2008 ARM/LOGICPD PXA270 MACHINE SUPPORT
2009 M:      Lennert Buytenhek <kernel@wantstofly.org>
2010 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2011 S:      Maintained
2012
2013 ARM/LPC18XX ARCHITECTURE
2014 M:      Vladimir Zapolskiy <vz@mleia.com>
2015 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2016 S:      Maintained
2017 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2018 F:      arch/arm/boot/dts/lpc43*
2019 F:      drivers/i2c/busses/i2c-lpc2k.c
2020 F:      drivers/memory/pl172.c
2021 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2022 F:      drivers/rtc/rtc-lpc24xx.c
2023 N:      lpc18xx
2024
2025 ARM/LPC32XX SOC SUPPORT
2026 M:      Vladimir Zapolskiy <vz@mleia.com>
2027 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2028 S:      Maintained
2029 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2030 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2031 F:      arch/arm/boot/dts/lpc32*
2032 F:      arch/arm/mach-lpc32xx/
2033 F:      drivers/i2c/busses/i2c-pnx.c
2034 F:      drivers/net/ethernet/nxp/lpc_eth.c
2035 F:      drivers/usb/host/ohci-nxp.c
2036 F:      drivers/watchdog/pnx4008_wdt.c
2037 N:      lpc32xx
2038
2039 ARM/MAGICIAN MACHINE SUPPORT
2040 M:      Philipp Zabel <philipp.zabel@gmail.com>
2041 S:      Maintained
2042
2043 ARM/Marvell Dove/MV78xx0/Orion SOC support
2044 M:      Andrew Lunn <andrew@lunn.ch>
2045 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2046 M:      Gregory Clement <gregory.clement@bootlin.com>
2047 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2048 S:      Maintained
2049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2050 F:      Documentation/devicetree/bindings/soc/dove/
2051 F:      arch/arm/boot/dts/dove*
2052 F:      arch/arm/boot/dts/orion5x*
2053 F:      arch/arm/mach-dove/
2054 F:      arch/arm/mach-mv78xx0/
2055 F:      arch/arm/mach-orion5x/
2056 F:      arch/arm/plat-orion/
2057 F:      drivers/soc/dove/
2058
2059 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2060 M:      Andrew Lunn <andrew@lunn.ch>
2061 M:      Gregory Clement <gregory.clement@bootlin.com>
2062 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2063 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2064 S:      Maintained
2065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2066 F:      arch/arm/boot/dts/armada*
2067 F:      arch/arm/boot/dts/kirkwood*
2068 F:      arch/arm/configs/mvebu_*_defconfig
2069 F:      arch/arm/mach-mvebu/
2070 F:      arch/arm64/boot/dts/marvell/armada*
2071 F:      arch/arm64/boot/dts/marvell/cn913*
2072 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2073 F:      drivers/cpufreq/armada-8k-cpufreq.c
2074 F:      drivers/cpufreq/mvebu-cpufreq.c
2075 F:      drivers/irqchip/irq-armada-370-xp.c
2076 F:      drivers/irqchip/irq-mvebu-*
2077 F:      drivers/pinctrl/mvebu/
2078 F:      drivers/rtc/rtc-armada38x.c
2079
2080 ARM/Mediatek RTC DRIVER
2081 M:      Eddie Huang <eddie.huang@mediatek.com>
2082 M:      Sean Wang <sean.wang@mediatek.com>
2083 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2084 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2085 S:      Maintained
2086 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2087 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2088 F:      drivers/rtc/rtc-mt2712.c
2089 F:      drivers/rtc/rtc-mt6397.c
2090 F:      drivers/rtc/rtc-mt7622.c
2091
2092 ARM/Mediatek SoC support
2093 M:      Matthias Brugger <matthias.bgg@gmail.com>
2094 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2095 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2096 S:      Maintained
2097 W:      https://mtk.wiki.kernel.org/
2098 C:      irc://chat.freenode.net/linux-mediatek
2099 F:      arch/arm/boot/dts/mt6*
2100 F:      arch/arm/boot/dts/mt7*
2101 F:      arch/arm/boot/dts/mt8*
2102 F:      arch/arm/mach-mediatek/
2103 F:      arch/arm64/boot/dts/mediatek/
2104 F:      drivers/soc/mediatek/
2105 N:      mtk
2106 N:      mt[678]
2107 K:      mediatek
2108
2109 ARM/Mediatek USB3 PHY DRIVER
2110 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2111 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2112 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2113 S:      Maintained
2114 F:      Documentation/devicetree/bindings/phy/mediatek,*
2115 F:      drivers/phy/mediatek/
2116
2117 ARM/Microchip (AT91) SoC support
2118 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2119 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2120 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2121 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2122 S:      Supported
2123 W:      http://www.linux4sam.org
2124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2125 F:      arch/arm/boot/dts/at91*.dts
2126 F:      arch/arm/boot/dts/at91*.dtsi
2127 F:      arch/arm/boot/dts/sama*.dts
2128 F:      arch/arm/boot/dts/sama*.dtsi
2129 F:      arch/arm/include/debug/at91.S
2130 F:      arch/arm/mach-at91/
2131 F:      drivers/memory/atmel*
2132 F:      drivers/watchdog/sama5d4_wdt.c
2133 F:      include/soc/at91/
2134 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2135 X:      drivers/net/wireless/atmel/
2136 N:      at91
2137 N:      atmel
2138
2139 ARM/Microchip Sparx5 SoC support
2140 M:      Lars Povlsen <lars.povlsen@microchip.com>
2141 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2142 M:      UNGLinuxDriver@microchip.com
2143 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2144 S:      Supported
2145 T:      git git://github.com/microchip-ung/linux-upstream.git
2146 F:      arch/arm64/boot/dts/microchip/
2147 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2148 N:      sparx5
2149
2150 Microchip Timer Counter Block (TCB) Capture Driver
2151 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2152 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2153 L:      linux-iio@vger.kernel.org
2154 S:      Maintained
2155 F:      drivers/counter/microchip-tcb-capture.c
2156
2157 ARM/MIOA701 MACHINE SUPPORT
2158 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2159 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2160 S:      Maintained
2161 F:      arch/arm/mach-pxa/mioa701.c
2162
2163 ARM/MStar/Sigmastar Armv7 SoC support
2164 M:      Daniel Palmer <daniel@thingy.jp>
2165 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2166 S:      Maintained
2167 W:      http://linux-chenxing.org/
2168 F:      Documentation/devicetree/bindings/arm/mstar/*
2169 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2170 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2171 F:      arch/arm/boot/dts/mstar-*
2172 F:      arch/arm/mach-mstar/
2173 F:      drivers/clk/mstar/
2174 F:      drivers/gpio/gpio-msc313.c
2175 F:      include/dt-bindings/clock/mstar-*
2176 F:      include/dt-bindings/gpio/msc313-gpio.h
2177
2178 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2179 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2180 S:      Maintained
2181
2182 ARM/NOMADIK/Ux500 ARCHITECTURES
2183 M:      Linus Walleij <linus.walleij@linaro.org>
2184 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2185 S:      Maintained
2186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2187 F:      Documentation/devicetree/bindings/arm/ste-*
2188 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2189 F:      Documentation/devicetree/bindings/arm/ux500/
2190 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2191 F:      arch/arm/boot/dts/ste-*
2192 F:      arch/arm/mach-nomadik/
2193 F:      arch/arm/mach-ux500/
2194 F:      drivers/clk/clk-nomadik.c
2195 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2196 F:      drivers/dma/ste_dma40*
2197 F:      drivers/hwspinlock/u8500_hsem.c
2198 F:      drivers/i2c/busses/i2c-nomadik.c
2199 F:      drivers/iio/adc/ab8500-gpadc.c
2200 F:      drivers/mfd/ab8500*
2201 F:      drivers/mfd/abx500*
2202 F:      drivers/mfd/db8500*
2203 F:      drivers/mfd/dbx500*
2204 F:      drivers/pinctrl/nomadik/
2205 F:      drivers/rtc/rtc-ab8500.c
2206 F:      drivers/rtc/rtc-pl031.c
2207 F:      drivers/soc/ux500/
2208
2209 ARM/NUVOTON NPCM ARCHITECTURE
2210 M:      Avi Fishman <avifishman70@gmail.com>
2211 M:      Tomer Maimon <tmaimon77@gmail.com>
2212 M:      Tali Perry <tali.perry1@gmail.com>
2213 R:      Patrick Venture <venture@google.com>
2214 R:      Nancy Yuen <yuenn@google.com>
2215 R:      Benjamin Fair <benjaminfair@google.com>
2216 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2217 S:      Supported
2218 F:      Documentation/devicetree/bindings/*/*/*npcm*
2219 F:      Documentation/devicetree/bindings/*/*npcm*
2220 F:      arch/arm/boot/dts/nuvoton-npcm*
2221 F:      arch/arm/mach-npcm/
2222 F:      drivers/*/*npcm*
2223 F:      drivers/*/*/*npcm*
2224 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2225
2226 ARM/NUVOTON WPCM450 ARCHITECTURE
2227 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2228 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2229 S:      Maintained
2230 F:      Documentation/devicetree/bindings/*/*wpcm*
2231 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2232 F:      arch/arm/mach-npcm/wpcm450.c
2233 F:      drivers/*/*wpcm*
2234
2235 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2236 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2237 S:      Orphan
2238 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2239 F:      arch/arm/mach-s3c/gta02.h
2240 F:      arch/arm/mach-s3c/mach-gta02.c
2241
2242 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2243 M:      Alexander Clouter <alex@digriz.org.uk>
2244 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2245 S:      Maintained
2246 W:      http://www.digriz.org.uk/ts78xx/kernel
2247 F:      arch/arm/mach-orion5x/ts78xx-*
2248
2249 ARM/OXNAS platform support
2250 M:      Neil Armstrong <narmstrong@baylibre.com>
2251 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2252 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2253 S:      Maintained
2254 F:      arch/arm/boot/dts/ox8*.dts*
2255 F:      arch/arm/mach-oxnas/
2256 F:      drivers/power/reset/oxnas-restart.c
2257 N:      oxnas
2258
2259 ARM/PALM TREO SUPPORT
2260 M:      Tomas Cech <sleep_walker@suse.com>
2261 L:      linux-arm-kernel@lists.infradead.org
2262 S:      Maintained
2263 W:      http://hackndev.com
2264 F:      arch/arm/mach-pxa/palmtreo.*
2265
2266 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2267 M:      Marek Vasut <marek.vasut@gmail.com>
2268 L:      linux-arm-kernel@lists.infradead.org
2269 S:      Maintained
2270 W:      http://hackndev.com
2271 F:      arch/arm/mach-pxa/include/mach/palmld.h
2272 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2273 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2274 F:      arch/arm/mach-pxa/palmld.c
2275 F:      arch/arm/mach-pxa/palmt5.*
2276 F:      arch/arm/mach-pxa/palmtc.c
2277 F:      arch/arm/mach-pxa/palmte2.*
2278 F:      arch/arm/mach-pxa/palmtx.c
2279
2280 ARM/PALMZ72 SUPPORT
2281 M:      Sergey Lapin <slapin@ossfans.org>
2282 L:      linux-arm-kernel@lists.infradead.org
2283 S:      Maintained
2284 W:      http://hackndev.com
2285 F:      arch/arm/mach-pxa/palmz72.*
2286
2287 ARM/PLEB SUPPORT
2288 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2289 S:      Maintained
2290 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2291
2292 ARM/PT DIGITAL BOARD PORT
2293 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2294 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2295 S:      Maintained
2296 W:      http://www.armlinux.org.uk/
2297
2298 ARM/QUALCOMM SUPPORT
2299 M:      Andy Gross <agross@kernel.org>
2300 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2301 L:      linux-arm-msm@vger.kernel.org
2302 S:      Maintained
2303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2304 F:      Documentation/devicetree/bindings/*/qcom*
2305 F:      Documentation/devicetree/bindings/soc/qcom/
2306 F:      arch/arm/boot/dts/qcom-*.dts
2307 F:      arch/arm/boot/dts/qcom-*.dtsi
2308 F:      arch/arm/mach-qcom/
2309 F:      arch/arm64/boot/dts/qcom/
2310 F:      drivers/*/*/qcom*
2311 F:      drivers/*/*/qcom/
2312 F:      drivers/*/pm8???-*
2313 F:      drivers/*/qcom*
2314 F:      drivers/*/qcom/
2315 F:      drivers/bluetooth/btqcomsmd.c
2316 F:      drivers/clocksource/timer-qcom.c
2317 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2318 F:      drivers/extcon/extcon-qcom*
2319 F:      drivers/i2c/busses/i2c-qcom-geni.c
2320 F:      drivers/i2c/busses/i2c-qup.c
2321 F:      drivers/iommu/msm*
2322 F:      drivers/mfd/ssbi.c
2323 F:      drivers/mmc/host/mmci_qcom*
2324 F:      drivers/mmc/host/sdhci-msm.c
2325 F:      drivers/pci/controller/dwc/pcie-qcom.c
2326 F:      drivers/phy/qualcomm/
2327 F:      drivers/power/*/msm*
2328 F:      drivers/reset/reset-qcom-*
2329 F:      drivers/scsi/ufs/ufs-qcom*
2330 F:      drivers/spi/spi-geni-qcom.c
2331 F:      drivers/spi/spi-qcom-qspi.c
2332 F:      drivers/spi/spi-qup.c
2333 F:      drivers/tty/serial/msm_serial.c
2334 F:      drivers/usb/dwc3/dwc3-qcom.c
2335 F:      include/dt-bindings/*/qcom*
2336 F:      include/linux/*/qcom*
2337 F:      include/linux/soc/qcom/
2338
2339 ARM/RADISYS ENP2611 MACHINE SUPPORT
2340 M:      Lennert Buytenhek <kernel@wantstofly.org>
2341 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2342 S:      Maintained
2343
2344 ARM/RDA MICRO ARCHITECTURE
2345 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2346 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2347 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2348 S:      Maintained
2349 F:      Documentation/devicetree/bindings/arm/rda.yaml
2350 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2351 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2352 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2353 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2354 F:      arch/arm/boot/dts/rda8810pl-*
2355 F:      drivers/clocksource/timer-rda.c
2356 F:      drivers/gpio/gpio-rda.c
2357 F:      drivers/irqchip/irq-rda-intc.c
2358 F:      drivers/tty/serial/rda-uart.c
2359
2360 ARM/REALTEK ARCHITECTURE
2361 M:      Andreas Färber <afaerber@suse.de>
2362 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2363 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2364 S:      Maintained
2365 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2366 F:      arch/arm/boot/dts/rtd*
2367 F:      arch/arm/mach-realtek/
2368 F:      arch/arm64/boot/dts/realtek/
2369
2370 ARM/RENESAS ARM64 ARCHITECTURE
2371 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2372 M:      Magnus Damm <magnus.damm@gmail.com>
2373 L:      linux-renesas-soc@vger.kernel.org
2374 S:      Supported
2375 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2377 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2378 F:      arch/arm64/boot/dts/renesas/
2379 F:      drivers/soc/renesas/
2380 F:      include/linux/soc/renesas/
2381
2382 ARM/RISCPC ARCHITECTURE
2383 M:      Russell King <linux@armlinux.org.uk>
2384 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2385 S:      Maintained
2386 W:      http://www.armlinux.org.uk/
2387 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2388 F:      arch/arm/include/asm/hardware/ioc.h
2389 F:      arch/arm/include/asm/hardware/iomd.h
2390 F:      arch/arm/include/asm/hardware/memc.h
2391 F:      arch/arm/mach-rpc/
2392 F:      drivers/net/ethernet/8390/etherh.c
2393 F:      drivers/net/ethernet/i825xx/ether1*
2394 F:      drivers/net/ethernet/seeq/ether3*
2395 F:      drivers/scsi/arm/
2396
2397 ARM/Rockchip SoC support
2398 M:      Heiko Stuebner <heiko@sntech.de>
2399 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2400 L:      linux-rockchip@lists.infradead.org
2401 S:      Maintained
2402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2403 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2404 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2405 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2406 F:      arch/arm/boot/dts/rk3*
2407 F:      arch/arm/boot/dts/rv1108*
2408 F:      arch/arm/mach-rockchip/
2409 F:      drivers/*/*/*rockchip*
2410 F:      drivers/*/*rockchip*
2411 F:      drivers/clk/rockchip/
2412 F:      drivers/i2c/busses/i2c-rk3x.c
2413 F:      sound/soc/rockchip/
2414 N:      rockchip
2415
2416 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2417 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
2418 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2419 L:      linux-samsung-soc@vger.kernel.org
2420 S:      Maintained
2421 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2422 F:      Documentation/arm/samsung/
2423 F:      Documentation/devicetree/bindings/arm/samsung/
2424 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2425 F:      arch/arm/boot/dts/exynos*
2426 F:      arch/arm/boot/dts/s3c*
2427 F:      arch/arm/boot/dts/s5p*
2428 F:      arch/arm/mach-exynos*/
2429 F:      arch/arm/mach-s3c/
2430 F:      arch/arm/mach-s5p*/
2431 F:      arch/arm64/boot/dts/exynos/
2432 F:      drivers/*/*/*s3c24*
2433 F:      drivers/*/*s3c24*
2434 F:      drivers/*/*s3c64xx*
2435 F:      drivers/*/*s5pv210*
2436 F:      drivers/memory/samsung/
2437 F:      drivers/soc/samsung/
2438 F:      drivers/tty/serial/samsung*
2439 F:      include/linux/platform_data/*s3c*
2440 F:      include/linux/serial_s3c.h
2441 F:      include/linux/soc/samsung/
2442 N:      exynos
2443 N:      s3c2410
2444 N:      s3c64xx
2445 N:      s5pv210
2446
2447 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2448 M:      Andrzej Hajda <a.hajda@samsung.com>
2449 L:      linux-arm-kernel@lists.infradead.org
2450 L:      linux-media@vger.kernel.org
2451 S:      Maintained
2452 F:      drivers/media/platform/s5p-g2d/
2453
2454 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2455 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2456 L:      linux-samsung-soc@vger.kernel.org
2457 L:      linux-media@vger.kernel.org
2458 S:      Maintained
2459 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2460 F:      drivers/media/cec/platform/s5p/
2461
2462 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2463 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2464 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2465 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2466 L:      linux-arm-kernel@lists.infradead.org
2467 L:      linux-media@vger.kernel.org
2468 S:      Maintained
2469 F:      drivers/media/platform/s5p-jpeg/
2470
2471 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2472 M:      Andrzej Hajda <a.hajda@samsung.com>
2473 L:      linux-arm-kernel@lists.infradead.org
2474 L:      linux-media@vger.kernel.org
2475 S:      Maintained
2476 F:      drivers/media/platform/s5p-mfc/
2477
2478 ARM/SHMOBILE ARM ARCHITECTURE
2479 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2480 M:      Magnus Damm <magnus.damm@gmail.com>
2481 L:      linux-renesas-soc@vger.kernel.org
2482 S:      Supported
2483 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2485 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2486 F:      arch/arm/boot/dts/emev2*
2487 F:      arch/arm/boot/dts/gr-peach*
2488 F:      arch/arm/boot/dts/iwg20d-q7*
2489 F:      arch/arm/boot/dts/r7s*
2490 F:      arch/arm/boot/dts/r8a*
2491 F:      arch/arm/boot/dts/r9a*
2492 F:      arch/arm/boot/dts/sh*
2493 F:      arch/arm/configs/shmobile_defconfig
2494 F:      arch/arm/include/debug/renesas-scif.S
2495 F:      arch/arm/mach-shmobile/
2496 F:      drivers/soc/renesas/
2497 F:      include/linux/soc/renesas/
2498
2499 ARM/SOCFPGA ARCHITECTURE
2500 M:      Dinh Nguyen <dinguyen@kernel.org>
2501 S:      Maintained
2502 W:      http://www.rocketboards.org
2503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2504 F:      arch/arm/boot/dts/socfpga*
2505 F:      arch/arm/configs/socfpga_defconfig
2506 F:      arch/arm/mach-socfpga/
2507 F:      arch/arm64/boot/dts/altera/
2508 F:      arch/arm64/boot/dts/intel/
2509
2510 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2511 M:      Dinh Nguyen <dinguyen@kernel.org>
2512 S:      Maintained
2513 F:      drivers/clk/socfpga/
2514
2515 ARM/SOCFPGA EDAC SUPPORT
2516 M:      Dinh Nguyen <dinguyen@kernel.org>
2517 S:      Maintained
2518 F:      drivers/edac/altera_edac.[ch]
2519
2520 ARM/SPREADTRUM SoC SUPPORT
2521 M:      Orson Zhai <orsonzhai@gmail.com>
2522 M:      Baolin Wang <baolin.wang7@gmail.com>
2523 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2524 S:      Maintained
2525 F:      arch/arm64/boot/dts/sprd
2526 N:      sprd
2527 N:      sc27xx
2528 N:      sc2731
2529
2530 ARM/STI ARCHITECTURE
2531 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2532 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2533 S:      Maintained
2534 W:      http://www.stlinux.com
2535 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2536 F:      arch/arm/boot/dts/sti*
2537 F:      arch/arm/mach-sti/
2538 F:      drivers/ata/ahci_st.c
2539 F:      drivers/char/hw_random/st-rng.c
2540 F:      drivers/clocksource/arm_global_timer.c
2541 F:      drivers/clocksource/clksrc_st_lpc.c
2542 F:      drivers/cpufreq/sti-cpufreq.c
2543 F:      drivers/dma/st_fdma*
2544 F:      drivers/i2c/busses/i2c-st.c
2545 F:      drivers/media/platform/sti/c8sectpfe/
2546 F:      drivers/media/rc/st_rc.c
2547 F:      drivers/mmc/host/sdhci-st.c
2548 F:      drivers/phy/st/phy-miphy28lp.c
2549 F:      drivers/phy/st/phy-stih407-usb.c
2550 F:      drivers/pinctrl/pinctrl-st.c
2551 F:      drivers/remoteproc/st_remoteproc.c
2552 F:      drivers/remoteproc/st_slim_rproc.c
2553 F:      drivers/reset/sti/
2554 F:      drivers/rtc/rtc-st-lpc.c
2555 F:      drivers/tty/serial/st-asc.c
2556 F:      drivers/usb/dwc3/dwc3-st.c
2557 F:      drivers/usb/host/ehci-st.c
2558 F:      drivers/usb/host/ohci-st.c
2559 F:      drivers/watchdog/st_lpc_wdt.c
2560 F:      include/linux/remoteproc/st_slim_rproc.h
2561
2562 ARM/STM32 ARCHITECTURE
2563 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2564 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2565 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2566 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2567 S:      Maintained
2568 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2569 F:      arch/arm/boot/dts/stm32*
2570 F:      arch/arm/mach-stm32/
2571 F:      drivers/clocksource/armv7m_systick.c
2572 N:      stm32
2573 N:      stm
2574
2575 ARM/Synaptics SoC support
2576 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2577 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2578 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2579 S:      Maintained
2580 F:      arch/arm/boot/dts/berlin*
2581 F:      arch/arm/mach-berlin/
2582 F:      arch/arm64/boot/dts/synaptics/
2583
2584 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2585 M:      Lennert Buytenhek <kernel@wantstofly.org>
2586 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2587 S:      Maintained
2588
2589 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2590 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2591 L:      linux-tegra@vger.kernel.org
2592 L:      linux-media@vger.kernel.org
2593 S:      Maintained
2594 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2595 F:      drivers/media/cec/platform/tegra/
2596
2597 ARM/TETON BGA MACHINE SUPPORT
2598 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2599 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2600 S:      Maintained
2601
2602 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2603 M:      Santosh Shilimkar <ssantosh@kernel.org>
2604 L:      linux-kernel@vger.kernel.org
2605 S:      Maintained
2606 F:      drivers/memory/*emif*
2607
2608 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2609 M:      Santosh Shilimkar <ssantosh@kernel.org>
2610 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2611 S:      Maintained
2612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2613 F:      arch/arm/boot/dts/keystone-*
2614 F:      arch/arm/mach-keystone/
2615
2616 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2617 M:      Santosh Shilimkar <ssantosh@kernel.org>
2618 L:      linux-kernel@vger.kernel.org
2619 S:      Maintained
2620 F:      drivers/clk/keystone/
2621
2622 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2623 M:      Santosh Shilimkar <ssantosh@kernel.org>
2624 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2625 L:      linux-kernel@vger.kernel.org
2626 S:      Maintained
2627 F:      drivers/clocksource/timer-keystone.c
2628
2629 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2630 M:      Santosh Shilimkar <ssantosh@kernel.org>
2631 L:      linux-kernel@vger.kernel.org
2632 S:      Maintained
2633 F:      drivers/power/reset/keystone-reset.c
2634
2635 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2636 M:      Nishanth Menon <nm@ti.com>
2637 M:      Tero Kristo <kristo@kernel.org>
2638 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2639 S:      Supported
2640 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2641 F:      arch/arm64/boot/dts/ti/Makefile
2642 F:      arch/arm64/boot/dts/ti/k3-*
2643 F:      include/dt-bindings/pinctrl/k3.h
2644
2645 ARM/THECUS N2100 MACHINE SUPPORT
2646 M:      Lennert Buytenhek <kernel@wantstofly.org>
2647 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2648 S:      Maintained
2649
2650 ARM/TOSA MACHINE SUPPORT
2651 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2652 M:      Dirk Opfer <dirk@opfer-online.de>
2653 S:      Maintained
2654
2655 ARM/TOSHIBA VISCONTI ARCHITECTURE
2656 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2657 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2658 S:      Supported
2659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2660 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2661 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2662 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2663 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2664 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2665 F:      arch/arm64/boot/dts/toshiba/
2666 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2667 F:      drivers/gpio/gpio-visconti.c
2668 F:      drivers/pinctrl/visconti/
2669 F:      drivers/watchdog/visconti_wdt.c
2670 N:      visconti
2671
2672 ARM/UNIPHIER ARCHITECTURE
2673 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2674 M:      Masami Hiramatsu <mhiramat@kernel.org>
2675 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2676 S:      Maintained
2677 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2678 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2679 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2680 F:      arch/arm/boot/dts/uniphier*
2681 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2682 F:      arch/arm/mach-uniphier/
2683 F:      arch/arm/mm/cache-uniphier.c
2684 F:      arch/arm64/boot/dts/socionext/uniphier*
2685 F:      drivers/bus/uniphier-system-bus.c
2686 F:      drivers/clk/uniphier/
2687 F:      drivers/dma/uniphier-mdmac.c
2688 F:      drivers/gpio/gpio-uniphier.c
2689 F:      drivers/i2c/busses/i2c-uniphier*
2690 F:      drivers/irqchip/irq-uniphier-aidet.c
2691 F:      drivers/mmc/host/uniphier-sd.c
2692 F:      drivers/pinctrl/uniphier/
2693 F:      drivers/reset/reset-uniphier.c
2694 F:      drivers/tty/serial/8250/8250_uniphier.c
2695 N:      uniphier
2696
2697 ARM/VERSATILE EXPRESS PLATFORM
2698 M:      Liviu Dudau <liviu.dudau@arm.com>
2699 M:      Sudeep Holla <sudeep.holla@arm.com>
2700 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2701 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2702 S:      Maintained
2703 F:      */*/*/vexpress*
2704 F:      */*/vexpress*
2705 F:      arch/arm/boot/dts/vexpress*
2706 F:      arch/arm/mach-vexpress/
2707 F:      arch/arm64/boot/dts/arm/
2708 F:      drivers/clk/versatile/clk-vexpress-osc.c
2709 F:      drivers/clocksource/timer-versatile.c
2710 N:      mps2
2711
2712 ARM/VFP SUPPORT
2713 M:      Russell King <linux@armlinux.org.uk>
2714 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2715 S:      Maintained
2716 W:      http://www.armlinux.org.uk/
2717 F:      arch/arm/vfp/
2718
2719 ARM/VOIPAC PXA270 SUPPORT
2720 M:      Marek Vasut <marek.vasut@gmail.com>
2721 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2722 S:      Maintained
2723 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2724 F:      arch/arm/mach-pxa/vpac270.c
2725
2726 ARM/VT8500 ARM ARCHITECTURE
2727 M:      Tony Prisk <linux@prisktech.co.nz>
2728 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2729 S:      Maintained
2730 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2731 F:      arch/arm/mach-vt8500/
2732 F:      drivers/clocksource/timer-vt8500.c
2733 F:      drivers/i2c/busses/i2c-wmt.c
2734 F:      drivers/mmc/host/wmt-sdmmc.c
2735 F:      drivers/pwm/pwm-vt8500.c
2736 F:      drivers/rtc/rtc-vt8500.c
2737 F:      drivers/tty/serial/vt8500_serial.c
2738 F:      drivers/usb/host/ehci-platform.c
2739 F:      drivers/usb/host/uhci-platform.c
2740 F:      drivers/video/fbdev/vt8500lcdfb.*
2741 F:      drivers/video/fbdev/wm8505fb*
2742 F:      drivers/video/fbdev/wmt_ge_rops.*
2743
2744 ARM/ZIPIT Z2 SUPPORT
2745 M:      Marek Vasut <marek.vasut@gmail.com>
2746 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2747 S:      Maintained
2748 F:      arch/arm/mach-pxa/include/mach/z2.h
2749 F:      arch/arm/mach-pxa/z2.c
2750
2751 ARM/ZYNQ ARCHITECTURE
2752 M:      Michal Simek <michal.simek@xilinx.com>
2753 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2754 S:      Supported
2755 W:      http://wiki.xilinx.com
2756 T:      git https://github.com/Xilinx/linux-xlnx.git
2757 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2758 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2759 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2760 F:      arch/arm/mach-zynq/
2761 F:      drivers/clocksource/timer-cadence-ttc.c
2762 F:      drivers/cpuidle/cpuidle-zynq.c
2763 F:      drivers/edac/synopsys_edac.c
2764 F:      drivers/i2c/busses/i2c-cadence.c
2765 F:      drivers/i2c/busses/i2c-xiic.c
2766 F:      drivers/mmc/host/sdhci-of-arasan.c
2767 N:      zynq
2768 N:      xilinx
2769
2770 ARM64 PORT (AARCH64 ARCHITECTURE)
2771 M:      Catalin Marinas <catalin.marinas@arm.com>
2772 M:      Will Deacon <will@kernel.org>
2773 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2774 S:      Maintained
2775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2776 F:      Documentation/arm64/
2777 F:      arch/arm64/
2778 F:      tools/testing/selftests/arm64/
2779 X:      arch/arm64/boot/dts/
2780
2781 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2782 M:      George McCollister <george.mccollister@gmail.com>
2783 L:      netdev@vger.kernel.org
2784 S:      Maintained
2785 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2786 F:      drivers/net/dsa/xrs700x/*
2787 F:      net/dsa/tag_xrs700x.c
2788
2789 AS3645A LED FLASH CONTROLLER DRIVER
2790 M:      Sakari Ailus <sakari.ailus@iki.fi>
2791 L:      linux-leds@vger.kernel.org
2792 S:      Maintained
2793 F:      drivers/leds/leds-as3645a.c
2794
2795 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2796 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2797 L:      linux-media@vger.kernel.org
2798 S:      Maintained
2799 T:      git git://linuxtv.org/media_tree.git
2800 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2801 F:      drivers/media/i2c/ak7375.c
2802
2803 ASAHI KASEI AK8974 DRIVER
2804 M:      Linus Walleij <linus.walleij@linaro.org>
2805 L:      linux-iio@vger.kernel.org
2806 S:      Supported
2807 W:      http://www.akm.com/
2808 F:      drivers/iio/magnetometer/ak8974.c
2809
2810 ASC7621 HARDWARE MONITOR DRIVER
2811 M:      George Joseph <george.joseph@fairview5.com>
2812 L:      linux-hwmon@vger.kernel.org
2813 S:      Maintained
2814 F:      Documentation/hwmon/asc7621.rst
2815 F:      drivers/hwmon/asc7621.c
2816
2817 ASPEED PINCTRL DRIVERS
2818 M:      Andrew Jeffery <andrew@aj.id.au>
2819 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2820 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2821 L:      linux-gpio@vger.kernel.org
2822 S:      Maintained
2823 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2824 F:      drivers/pinctrl/aspeed/
2825
2826 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2827 M:      Eddie James <eajames@linux.ibm.com>
2828 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2829 S:      Maintained
2830 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2831 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2832 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2833
2834 ASPEED SD/MMC DRIVER
2835 M:      Andrew Jeffery <andrew@aj.id.au>
2836 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2837 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2838 L:      linux-mmc@vger.kernel.org
2839 S:      Maintained
2840 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
2841 F:      drivers/mmc/host/sdhci-of-aspeed*
2842
2843 ASPEED VIDEO ENGINE DRIVER
2844 M:      Eddie James <eajames@linux.ibm.com>
2845 L:      linux-media@vger.kernel.org
2846 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2847 S:      Maintained
2848 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2849 F:      drivers/media/platform/aspeed-video.c
2850
2851 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2852 M:      Corentin Chary <corentin.chary@gmail.com>
2853 L:      acpi4asus-user@lists.sourceforge.net
2854 L:      platform-driver-x86@vger.kernel.org
2855 S:      Maintained
2856 W:      http://acpi4asus.sf.net
2857 F:      drivers/platform/x86/asus*.c
2858 F:      drivers/platform/x86/eeepc*.c
2859
2860 ASUS WIRELESS RADIO CONTROL DRIVER
2861 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2862 L:      platform-driver-x86@vger.kernel.org
2863 S:      Maintained
2864 F:      drivers/platform/x86/asus-wireless.c
2865
2866 ASYMMETRIC KEYS
2867 M:      David Howells <dhowells@redhat.com>
2868 L:      keyrings@vger.kernel.org
2869 S:      Maintained
2870 F:      Documentation/crypto/asymmetric-keys.rst
2871 F:      crypto/asymmetric_keys/
2872 F:      include/crypto/pkcs7.h
2873 F:      include/crypto/public_key.h
2874 F:      include/linux/verification.h
2875
2876 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2877 R:      Dan Williams <dan.j.williams@intel.com>
2878 S:      Odd fixes
2879 W:      http://sourceforge.net/projects/xscaleiop
2880 F:      Documentation/crypto/async-tx-api.rst
2881 F:      crypto/async_tx/
2882 F:      include/linux/async_tx.h
2883
2884 AT24 EEPROM DRIVER
2885 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2886 L:      linux-i2c@vger.kernel.org
2887 S:      Maintained
2888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2889 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2890 F:      drivers/misc/eeprom/at24.c
2891
2892 ATA OVER ETHERNET (AOE) DRIVER
2893 M:      "Justin Sanders" <justin@coraid.com>
2894 S:      Supported
2895 W:      http://www.openaoe.org/
2896 F:      Documentation/admin-guide/aoe/
2897 F:      drivers/block/aoe/
2898
2899 ATC260X PMIC MFD DRIVER
2900 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2901 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
2902 L:      linux-actions@lists.infradead.org
2903 S:      Maintained
2904 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
2905 F:      drivers/input/misc/atc260x-onkey.c
2906 F:      drivers/mfd/atc260*
2907 F:      drivers/power/reset/atc260x-poweroff.c
2908 F:      drivers/regulator/atc260x-regulator.c
2909 F:      include/linux/mfd/atc260x/*
2910
2911 ATHEROS 71XX/9XXX GPIO DRIVER
2912 M:      Alban Bedel <albeu@free.fr>
2913 S:      Maintained
2914 W:      https://github.com/AlbanBedel/linux
2915 T:      git git://github.com/AlbanBedel/linux
2916 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2917 F:      drivers/gpio/gpio-ath79.c
2918
2919 ATHEROS 71XX/9XXX USB PHY DRIVER
2920 M:      Alban Bedel <albeu@free.fr>
2921 S:      Maintained
2922 W:      https://github.com/AlbanBedel/linux
2923 T:      git git://github.com/AlbanBedel/linux
2924 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2925 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2926
2927 ATHEROS ATH GENERIC UTILITIES
2928 M:      Kalle Valo <kvalo@codeaurora.org>
2929 L:      linux-wireless@vger.kernel.org
2930 S:      Supported
2931 F:      drivers/net/wireless/ath/*
2932
2933 ATHEROS ATH5K WIRELESS DRIVER
2934 M:      Jiri Slaby <jirislaby@kernel.org>
2935 M:      Nick Kossifidis <mickflemm@gmail.com>
2936 M:      Luis Chamberlain <mcgrof@kernel.org>
2937 L:      linux-wireless@vger.kernel.org
2938 S:      Maintained
2939 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2940 F:      drivers/net/wireless/ath/ath5k/
2941
2942 ATHEROS ATH6KL WIRELESS DRIVER
2943 M:      Kalle Valo <kvalo@codeaurora.org>
2944 L:      linux-wireless@vger.kernel.org
2945 S:      Supported
2946 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2948 F:      drivers/net/wireless/ath/ath6kl/
2949
2950 ATI_REMOTE2 DRIVER
2951 M:      Ville Syrjala <syrjala@sci.fi>
2952 S:      Maintained
2953 F:      drivers/input/misc/ati_remote2.c
2954
2955 ATK0110 HWMON DRIVER
2956 M:      Luca Tettamanti <kronos.it@gmail.com>
2957 L:      linux-hwmon@vger.kernel.org
2958 S:      Maintained
2959 F:      drivers/hwmon/asus_atk0110.c
2960
2961 ATLX ETHERNET DRIVERS
2962 M:      Chris Snook <chris.snook@gmail.com>
2963 L:      netdev@vger.kernel.org
2964 S:      Maintained
2965 W:      http://sourceforge.net/projects/atl1
2966 W:      http://atl1.sourceforge.net
2967 F:      drivers/net/ethernet/atheros/
2968
2969 ATM
2970 M:      Chas Williams <3chas3@gmail.com>
2971 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2972 L:      netdev@vger.kernel.org
2973 S:      Maintained
2974 W:      http://linux-atm.sourceforge.net
2975 F:      drivers/atm/
2976 F:      include/linux/atm*
2977 F:      include/uapi/linux/atm*
2978
2979 ATMEL MACB ETHERNET DRIVER
2980 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2981 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2982 S:      Supported
2983 F:      drivers/net/ethernet/cadence/
2984
2985 ATMEL MAXTOUCH DRIVER
2986 M:      Nick Dyer <nick@shmanahar.org>
2987 S:      Maintained
2988 T:      git git://github.com/ndyer/linux.git
2989 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
2990 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2991
2992 ATMEL WIRELESS DRIVER
2993 M:      Simon Kelley <simon@thekelleys.org.uk>
2994 L:      linux-wireless@vger.kernel.org
2995 S:      Maintained
2996 W:      http://www.thekelleys.org.uk/atmel
2997 W:      http://atmelwlandriver.sourceforge.net/
2998 F:      drivers/net/wireless/atmel/atmel*
2999
3000 ATOMIC INFRASTRUCTURE
3001 M:      Will Deacon <will@kernel.org>
3002 M:      Peter Zijlstra <peterz@infradead.org>
3003 R:      Boqun Feng <boqun.feng@gmail.com>
3004 L:      linux-kernel@vger.kernel.org
3005 S:      Maintained
3006 F:      arch/*/include/asm/atomic*.h
3007 F:      include/*/atomic*.h
3008 F:      include/linux/refcount.h
3009 F:      Documentation/atomic_*.txt
3010 F:      scripts/atomic/
3011
3012 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3013 M:      Bradley Grove <linuxdrivers@attotech.com>
3014 L:      linux-scsi@vger.kernel.org
3015 S:      Supported
3016 W:      http://www.attotech.com
3017 F:      drivers/scsi/esas2r
3018
3019 ATUSB IEEE 802.15.4 RADIO DRIVER
3020 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3021 L:      linux-wpan@vger.kernel.org
3022 S:      Maintained
3023 F:      drivers/net/ieee802154/at86rf230.h
3024 F:      drivers/net/ieee802154/atusb.c
3025 F:      drivers/net/ieee802154/atusb.h
3026
3027 AUDIT SUBSYSTEM
3028 M:      Paul Moore <paul@paul-moore.com>
3029 M:      Eric Paris <eparis@redhat.com>
3030 L:      linux-audit@redhat.com (moderated for non-subscribers)
3031 S:      Supported
3032 W:      https://github.com/linux-audit
3033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3034 F:      include/asm-generic/audit_*.h
3035 F:      include/linux/audit.h
3036 F:      include/uapi/linux/audit.h
3037 F:      kernel/audit*
3038 F:      lib/*audit.c
3039
3040 AUXILIARY DISPLAY DRIVERS
3041 M:      Miguel Ojeda <ojeda@kernel.org>
3042 S:      Maintained
3043 F:      drivers/auxdisplay/
3044 F:      include/linux/cfag12864b.h
3045
3046 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3047 M:      Andreas Klinger <ak@it-klinger.de>
3048 L:      linux-iio@vger.kernel.org
3049 S:      Maintained
3050 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3051 F:      drivers/iio/adc/hx711.c
3052
3053 AX.25 NETWORK LAYER
3054 M:      Ralf Baechle <ralf@linux-mips.org>
3055 L:      linux-hams@vger.kernel.org
3056 S:      Maintained
3057 W:      http://www.linux-ax25.org/
3058 F:      include/net/ax25.h
3059 F:      include/uapi/linux/ax25.h
3060 F:      net/ax25/
3061
3062 AXENTIA ARM DEVICES
3063 M:      Peter Rosin <peda@axentia.se>
3064 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3065 S:      Maintained
3066 F:      arch/arm/boot/dts/at91-linea.dtsi
3067 F:      arch/arm/boot/dts/at91-natte.dtsi
3068 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3069 F:      arch/arm/boot/dts/at91-tse850-3.dts
3070
3071 AXENTIA ASOC DRIVERS
3072 M:      Peter Rosin <peda@axentia.se>
3073 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3074 S:      Maintained
3075 F:      Documentation/devicetree/bindings/sound/axentia,*
3076 F:      sound/soc/atmel/tse850-pcm5142.c
3077
3078 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3079 M:      Nuno Sá <nuno.sa@analog.com>
3080 L:      linux-hwmon@vger.kernel.org
3081 S:      Supported
3082 W:      http://ez.analog.com/community/linux-device-drivers
3083 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3084 F:      drivers/hwmon/axi-fan-control.c
3085
3086 AXXIA I2C CONTROLLER
3087 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3088 L:      linux-i2c@vger.kernel.org
3089 S:      Maintained
3090 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3091 F:      drivers/i2c/busses/i2c-axxia.c
3092
3093 AZ6007 DVB DRIVER
3094 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3095 L:      linux-media@vger.kernel.org
3096 S:      Maintained
3097 W:      https://linuxtv.org
3098 T:      git git://linuxtv.org/media_tree.git
3099 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3100
3101 AZTECH FM RADIO RECEIVER DRIVER
3102 M:      Hans Verkuil <hverkuil@xs4all.nl>
3103 L:      linux-media@vger.kernel.org
3104 S:      Maintained
3105 W:      https://linuxtv.org
3106 T:      git git://linuxtv.org/media_tree.git
3107 F:      drivers/media/radio/radio-aztech*
3108
3109 B43 WIRELESS DRIVER
3110 L:      linux-wireless@vger.kernel.org
3111 L:      b43-dev@lists.infradead.org
3112 S:      Odd Fixes
3113 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3114 F:      drivers/net/wireless/broadcom/b43/
3115
3116 B43LEGACY WIRELESS DRIVER
3117 M:      Larry Finger <Larry.Finger@lwfinger.net>
3118 L:      linux-wireless@vger.kernel.org
3119 L:      b43-dev@lists.infradead.org
3120 S:      Maintained
3121 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3122 F:      drivers/net/wireless/broadcom/b43legacy/
3123
3124 BACKLIGHT CLASS/SUBSYSTEM
3125 M:      Lee Jones <lee.jones@linaro.org>
3126 M:      Daniel Thompson <daniel.thompson@linaro.org>
3127 M:      Jingoo Han <jingoohan1@gmail.com>
3128 L:      dri-devel@lists.freedesktop.org
3129 S:      Maintained
3130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3131 F:      Documentation/ABI/stable/sysfs-class-backlight
3132 F:      Documentation/ABI/testing/sysfs-class-backlight
3133 F:      Documentation/devicetree/bindings/leds/backlight
3134 F:      drivers/video/backlight/
3135 F:      include/linux/backlight.h
3136 F:      include/linux/pwm_backlight.h
3137
3138 BATMAN ADVANCED
3139 M:      Marek Lindner <mareklindner@neomailbox.ch>
3140 M:      Simon Wunderlich <sw@simonwunderlich.de>
3141 M:      Antonio Quartulli <a@unstable.cc>
3142 M:      Sven Eckelmann <sven@narfation.org>
3143 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3144 S:      Maintained
3145 W:      https://www.open-mesh.org/
3146 Q:      https://patchwork.open-mesh.org/project/batman/list/
3147 B:      https://www.open-mesh.org/projects/batman-adv/issues
3148 C:      irc://chat.freenode.net/batman
3149 T:      git https://git.open-mesh.org/linux-merge.git
3150 F:      Documentation/networking/batman-adv.rst
3151 F:      include/uapi/linux/batadv_packet.h
3152 F:      include/uapi/linux/batman_adv.h
3153 F:      net/batman-adv/
3154
3155 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3156 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3157 L:      linux-hams@vger.kernel.org
3158 S:      Maintained
3159 W:      http://www.baycom.org/~tom/ham/ham.html
3160 F:      drivers/net/hamradio/baycom*
3161
3162 BCACHE (BLOCK LAYER CACHE)
3163 M:      Coly Li <colyli@suse.de>
3164 M:      Kent Overstreet <kent.overstreet@gmail.com>
3165 L:      linux-bcache@vger.kernel.org
3166 S:      Maintained
3167 W:      http://bcache.evilpiepirate.org
3168 C:      irc://irc.oftc.net/bcache
3169 F:      drivers/md/bcache/
3170
3171 BDISP ST MEDIA DRIVER
3172 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3173 L:      linux-media@vger.kernel.org
3174 S:      Supported
3175 W:      https://linuxtv.org
3176 T:      git git://linuxtv.org/media_tree.git
3177 F:      drivers/media/platform/sti/bdisp
3178
3179 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3180 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3181 L:      netdev@vger.kernel.org
3182 S:      Maintained
3183 F:      drivers/net/ethernet/ec_bhf.c
3184
3185 BEFS FILE SYSTEM
3186 M:      Luis de Bethencourt <luisbg@kernel.org>
3187 M:      Salah Triki <salah.triki@gmail.com>
3188 S:      Maintained
3189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3190 F:      Documentation/filesystems/befs.rst
3191 F:      fs/befs/
3192
3193 BFQ I/O SCHEDULER
3194 M:      Paolo Valente <paolo.valente@linaro.org>
3195 M:      Jens Axboe <axboe@kernel.dk>
3196 L:      linux-block@vger.kernel.org
3197 S:      Maintained
3198 F:      Documentation/block/bfq-iosched.rst
3199 F:      block/bfq-*
3200
3201 BFS FILE SYSTEM
3202 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3203 S:      Maintained
3204 F:      Documentation/filesystems/bfs.rst
3205 F:      fs/bfs/
3206 F:      include/uapi/linux/bfs_fs.h
3207
3208 BITMAP API
3209 M:      Yury Norov <yury.norov@gmail.com>
3210 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3211 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3212 S:      Maintained
3213 F:      include/asm-generic/bitops/find.h
3214 F:      include/linux/bitmap.h
3215 F:      lib/bitmap.c
3216 F:      lib/find_bit.c
3217 F:      lib/find_bit_benchmark.c
3218 F:      lib/test_bitmap.c
3219 F:      tools/include/asm-generic/bitops/find.h
3220 F:      tools/include/linux/bitmap.h
3221 F:      tools/lib/bitmap.c
3222 F:      tools/lib/find_bit.c
3223
3224 BLINKM RGB LED DRIVER
3225 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3226 S:      Maintained
3227 F:      drivers/leds/leds-blinkm.c
3228
3229 BLOCK LAYER
3230 M:      Jens Axboe <axboe@kernel.dk>
3231 L:      linux-block@vger.kernel.org
3232 S:      Maintained
3233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3234 F:      block/
3235 F:      drivers/block/
3236 F:      fs/block_dev.c
3237 F:      include/linux/blk*
3238 F:      kernel/trace/blktrace.c
3239 F:      lib/sbitmap.c
3240
3241 BLOCK2MTD DRIVER
3242 M:      Joern Engel <joern@lazybastard.org>
3243 L:      linux-mtd@lists.infradead.org
3244 S:      Maintained
3245 F:      drivers/mtd/devices/block2mtd.c
3246
3247 BLUETOOTH DRIVERS
3248 M:      Marcel Holtmann <marcel@holtmann.org>
3249 M:      Johan Hedberg <johan.hedberg@gmail.com>
3250 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3251 L:      linux-bluetooth@vger.kernel.org
3252 S:      Supported
3253 W:      http://www.bluez.org/
3254 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3256 F:      drivers/bluetooth/
3257
3258 BLUETOOTH SUBSYSTEM
3259 M:      Marcel Holtmann <marcel@holtmann.org>
3260 M:      Johan Hedberg <johan.hedberg@gmail.com>
3261 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3262 L:      linux-bluetooth@vger.kernel.org
3263 S:      Supported
3264 W:      http://www.bluez.org/
3265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3267 F:      include/net/bluetooth/
3268 F:      net/bluetooth/
3269
3270 BONDING DRIVER
3271 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3272 M:      Veaceslav Falico <vfalico@gmail.com>
3273 M:      Andy Gospodarek <andy@greyhouse.net>
3274 L:      netdev@vger.kernel.org
3275 S:      Supported
3276 W:      http://sourceforge.net/projects/bonding/
3277 F:      drivers/net/bonding/
3278 F:      include/net/bonding.h
3279 F:      include/uapi/linux/if_bonding.h
3280
3281 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3282 M:      Dan Robertson <dan@dlrobertson.com>
3283 L:      linux-iio@vger.kernel.org
3284 S:      Maintained
3285 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3286 F:      drivers/iio/accel/bma400*
3287
3288 BPF (Safe dynamic programs and tools)
3289 M:      Alexei Starovoitov <ast@kernel.org>
3290 M:      Daniel Borkmann <daniel@iogearbox.net>
3291 M:      Andrii Nakryiko <andrii@kernel.org>
3292 R:      Martin KaFai Lau <kafai@fb.com>
3293 R:      Song Liu <songliubraving@fb.com>
3294 R:      Yonghong Song <yhs@fb.com>
3295 R:      John Fastabend <john.fastabend@gmail.com>
3296 R:      KP Singh <kpsingh@kernel.org>
3297 L:      netdev@vger.kernel.org
3298 L:      bpf@vger.kernel.org
3299 S:      Supported
3300 W:      https://bpf.io/
3301 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3304 F:      Documentation/bpf/
3305 F:      Documentation/networking/filter.rst
3306 F:      Documentation/userspace-api/ebpf/
3307 F:      arch/*/net/*
3308 F:      include/linux/bpf*
3309 F:      include/linux/filter.h
3310 F:      include/trace/events/xdp.h
3311 F:      include/uapi/linux/bpf*
3312 F:      include/uapi/linux/filter.h
3313 F:      kernel/bpf/
3314 F:      kernel/trace/bpf_trace.c
3315 F:      lib/test_bpf.c
3316 F:      net/bpf/
3317 F:      net/core/filter.c
3318 F:      net/sched/act_bpf.c
3319 F:      net/sched/cls_bpf.c
3320 F:      samples/bpf/
3321 F:      scripts/bpf_doc.py
3322 F:      tools/bpf/
3323 F:      tools/lib/bpf/
3324 F:      tools/testing/selftests/bpf/
3325 N:      bpf
3326 K:      bpf
3327
3328 BPF JIT for ARM
3329 M:      Shubham Bansal <illusionist.neo@gmail.com>
3330 L:      netdev@vger.kernel.org
3331 L:      bpf@vger.kernel.org
3332 S:      Maintained
3333 F:      arch/arm/net/
3334
3335 BPF JIT for ARM64
3336 M:      Daniel Borkmann <daniel@iogearbox.net>
3337 M:      Alexei Starovoitov <ast@kernel.org>
3338 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3339 L:      netdev@vger.kernel.org
3340 L:      bpf@vger.kernel.org
3341 S:      Supported
3342 F:      arch/arm64/net/
3343
3344 BPF JIT for MIPS (32-BIT AND 64-BIT)
3345 M:      Paul Burton <paulburton@kernel.org>
3346 L:      netdev@vger.kernel.org
3347 L:      bpf@vger.kernel.org
3348 S:      Maintained
3349 F:      arch/mips/net/
3350
3351 BPF JIT for NFP NICs
3352 M:      Jakub Kicinski <kuba@kernel.org>
3353 L:      netdev@vger.kernel.org
3354 L:      bpf@vger.kernel.org
3355 S:      Supported
3356 F:      drivers/net/ethernet/netronome/nfp/bpf/
3357
3358 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3359 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3360 M:      Sandipan Das <sandipan@linux.ibm.com>
3361 L:      netdev@vger.kernel.org
3362 L:      bpf@vger.kernel.org
3363 S:      Maintained
3364 F:      arch/powerpc/net/
3365
3366 BPF JIT for RISC-V (32-bit)
3367 M:      Luke Nelson <luke.r.nels@gmail.com>
3368 M:      Xi Wang <xi.wang@gmail.com>
3369 L:      netdev@vger.kernel.org
3370 L:      bpf@vger.kernel.org
3371 S:      Maintained
3372 F:      arch/riscv/net/
3373 X:      arch/riscv/net/bpf_jit_comp64.c
3374
3375 BPF JIT for RISC-V (64-bit)
3376 M:      Björn Töpel <bjorn@kernel.org>
3377 L:      netdev@vger.kernel.org
3378 L:      bpf@vger.kernel.org
3379 S:      Maintained
3380 F:      arch/riscv/net/
3381 X:      arch/riscv/net/bpf_jit_comp32.c
3382
3383 BPF JIT for S390
3384 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3385 M:      Heiko Carstens <hca@linux.ibm.com>
3386 M:      Vasily Gorbik <gor@linux.ibm.com>
3387 L:      netdev@vger.kernel.org
3388 L:      bpf@vger.kernel.org
3389 S:      Maintained
3390 F:      arch/s390/net/
3391 X:      arch/s390/net/pnet.c
3392
3393 BPF JIT for SPARC (32-BIT AND 64-BIT)
3394 M:      David S. Miller <davem@davemloft.net>
3395 L:      netdev@vger.kernel.org
3396 L:      bpf@vger.kernel.org
3397 S:      Maintained
3398 F:      arch/sparc/net/
3399
3400 BPF JIT for X86 32-BIT
3401 M:      Wang YanQing <udknight@gmail.com>
3402 L:      netdev@vger.kernel.org
3403 L:      bpf@vger.kernel.org
3404 S:      Maintained
3405 F:      arch/x86/net/bpf_jit_comp32.c
3406
3407 BPF JIT for X86 64-BIT
3408 M:      Alexei Starovoitov <ast@kernel.org>
3409 M:      Daniel Borkmann <daniel@iogearbox.net>
3410 L:      netdev@vger.kernel.org
3411 L:      bpf@vger.kernel.org
3412 S:      Supported
3413 F:      arch/x86/net/
3414 X:      arch/x86/net/bpf_jit_comp32.c
3415
3416 BPF LSM (Security Audit and Enforcement using BPF)
3417 M:      KP Singh <kpsingh@kernel.org>
3418 R:      Florent Revest <revest@chromium.org>
3419 R:      Brendan Jackman <jackmanb@chromium.org>
3420 L:      bpf@vger.kernel.org
3421 S:      Maintained
3422 F:      Documentation/bpf/bpf_lsm.rst
3423 F:      include/linux/bpf_lsm.h
3424 F:      kernel/bpf/bpf_lsm.c
3425 F:      security/bpf/
3426
3427 BROADCOM B44 10/100 ETHERNET DRIVER
3428 M:      Michael Chan <michael.chan@broadcom.com>
3429 L:      netdev@vger.kernel.org
3430 S:      Supported
3431 F:      drivers/net/ethernet/broadcom/b44.*
3432
3433 BROADCOM B53 ETHERNET SWITCH DRIVER
3434 M:      Florian Fainelli <f.fainelli@gmail.com>
3435 L:      netdev@vger.kernel.org
3436 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3437 S:      Supported
3438 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3439 F:      drivers/net/dsa/b53/*
3440 F:      include/linux/dsa/brcm.h
3441 F:      include/linux/platform_data/b53.h
3442
3443 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3444 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3445 L:      bcm-kernel-feedback-list@broadcom.com
3446 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3447 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3448 S:      Maintained
3449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3450 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3451 F:      drivers/pci/controller/pcie-brcmstb.c
3452 F:      drivers/staging/vc04_services
3453 N:      bcm2711
3454 N:      bcm283*
3455
3456 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3457 M:      Florian Fainelli <f.fainelli@gmail.com>
3458 M:      Ray Jui <rjui@broadcom.com>
3459 M:      Scott Branden <sbranden@broadcom.com>
3460 M:      bcm-kernel-feedback-list@broadcom.com
3461 S:      Maintained
3462 T:      git git://github.com/broadcom/mach-bcm
3463 F:      arch/arm/mach-bcm/
3464 N:      bcm281*
3465 N:      bcm113*
3466 N:      bcm216*
3467 N:      kona
3468
3469 BROADCOM BCM47XX MIPS ARCHITECTURE
3470 M:      Hauke Mehrtens <hauke@hauke-m.de>
3471 M:      Rafał Miłecki <zajec5@gmail.com>
3472 L:      linux-mips@vger.kernel.org
3473 S:      Maintained
3474 F:      Documentation/devicetree/bindings/mips/brcm/
3475 F:      arch/mips/bcm47xx/*
3476 F:      arch/mips/include/asm/mach-bcm47xx/*
3477
3478 BROADCOM BCM4908 ETHERNET DRIVER
3479 M:      Rafał Miłecki <rafal@milecki.pl>
3480 M:      bcm-kernel-feedback-list@broadcom.com
3481 L:      netdev@vger.kernel.org
3482 S:      Maintained
3483 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3484 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3485 F:      drivers/net/ethernet/broadcom/unimac.h
3486
3487 BROADCOM BCM5301X ARM ARCHITECTURE
3488 M:      Hauke Mehrtens <hauke@hauke-m.de>
3489 M:      Rafał Miłecki <zajec5@gmail.com>
3490 M:      bcm-kernel-feedback-list@broadcom.com
3491 L:      linux-arm-kernel@lists.infradead.org
3492 S:      Maintained
3493 F:      arch/arm/boot/dts/bcm470*
3494 F:      arch/arm/boot/dts/bcm5301*
3495 F:      arch/arm/boot/dts/bcm953012*
3496 F:      arch/arm/mach-bcm/bcm_5301x.c
3497
3498 BROADCOM BCM53573 ARM ARCHITECTURE
3499 M:      Rafał Miłecki <rafal@milecki.pl>
3500 L:      bcm-kernel-feedback-list@broadcom.com
3501 L:      linux-arm-kernel@lists.infradead.org
3502 S:      Maintained
3503 F:      arch/arm/boot/dts/bcm47189*
3504 F:      arch/arm/boot/dts/bcm53573*
3505
3506 BROADCOM BCM63XX ARM ARCHITECTURE
3507 M:      Florian Fainelli <f.fainelli@gmail.com>
3508 M:      bcm-kernel-feedback-list@broadcom.com
3509 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3510 S:      Maintained
3511 T:      git git://github.com/broadcom/stblinux.git
3512 N:      bcm63xx
3513
3514 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3515 M:      Kevin Cernekee <cernekee@gmail.com>
3516 L:      linux-usb@vger.kernel.org
3517 S:      Maintained
3518 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3519
3520 BROADCOM BCM7XXX ARM ARCHITECTURE
3521 M:      Florian Fainelli <f.fainelli@gmail.com>
3522 M:      bcm-kernel-feedback-list@broadcom.com
3523 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3524 S:      Maintained
3525 T:      git git://github.com/broadcom/stblinux.git
3526 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3527 F:      arch/arm/boot/dts/bcm7*.dts*
3528 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3529 F:      arch/arm/mach-bcm/*brcmstb*
3530 F:      arch/arm/mm/cache-b15-rac.c
3531 F:      drivers/bus/brcmstb_gisb.c
3532 F:      drivers/pci/controller/pcie-brcmstb.c
3533 N:      brcmstb
3534
3535 BROADCOM BDC DRIVER
3536 M:      Al Cooper <alcooperx@gmail.com>
3537 L:      linux-usb@vger.kernel.org
3538 L:      bcm-kernel-feedback-list@broadcom.com
3539 S:      Maintained
3540 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3541 F:      drivers/usb/gadget/udc/bdc/
3542
3543 BROADCOM BMIPS CPUFREQ DRIVER
3544 M:      Markus Mayer <mmayer@broadcom.com>
3545 M:      bcm-kernel-feedback-list@broadcom.com
3546 L:      linux-pm@vger.kernel.org
3547 S:      Maintained
3548 F:      drivers/cpufreq/bmips-cpufreq.c
3549
3550 BROADCOM BMIPS MIPS ARCHITECTURE
3551 M:      Florian Fainelli <f.fainelli@gmail.com>
3552 L:      bcm-kernel-feedback-list@broadcom.com
3553 L:      linux-mips@vger.kernel.org
3554 S:      Maintained
3555 T:      git git://github.com/broadcom/stblinux.git
3556 F:      arch/mips/bmips/*
3557 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3558 F:      arch/mips/include/asm/mach-bmips/*
3559 F:      arch/mips/kernel/*bmips*
3560 F:      drivers/soc/bcm/bcm63xx
3561 F:      drivers/irqchip/irq-bcm63*
3562 F:      drivers/irqchip/irq-bcm7*
3563 F:      drivers/irqchip/irq-brcmstb*
3564 F:      include/linux/bcm963xx_nvram.h
3565 F:      include/linux/bcm963xx_tag.h
3566
3567 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3568 M:      Rasesh Mody <rmody@marvell.com>
3569 M:      GR-Linux-NIC-Dev@marvell.com
3570 L:      netdev@vger.kernel.org
3571 S:      Supported
3572 F:      drivers/net/ethernet/broadcom/bnx2.*
3573 F:      drivers/net/ethernet/broadcom/bnx2_*
3574
3575 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3576 M:      Saurav Kashyap <skashyap@marvell.com>
3577 M:      Javed Hasan <jhasan@marvell.com>
3578 M:      GR-QLogic-Storage-Upstream@marvell.com
3579 L:      linux-scsi@vger.kernel.org
3580 S:      Supported
3581 F:      drivers/scsi/bnx2fc/
3582
3583 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3584 M:      Nilesh Javali <njavali@marvell.com>
3585 M:      Manish Rangankar <mrangankar@marvell.com>
3586 M:      GR-QLogic-Storage-Upstream@marvell.com
3587 L:      linux-scsi@vger.kernel.org
3588 S:      Supported
3589 F:      drivers/scsi/bnx2i/
3590
3591 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3592 M:      Ariel Elior <aelior@marvell.com>
3593 M:      Sudarsana Kalluru <skalluru@marvell.com>
3594 M:      GR-everest-linux-l2@marvell.com
3595 L:      netdev@vger.kernel.org
3596 S:      Supported
3597 F:      drivers/net/ethernet/broadcom/bnx2x/
3598
3599 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3600 M:      Michael Chan <michael.chan@broadcom.com>
3601 L:      netdev@vger.kernel.org
3602 S:      Supported
3603 F:      drivers/net/ethernet/broadcom/bnxt/
3604
3605 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3606 M:      Arend van Spriel <aspriel@gmail.com>
3607 M:      Franky Lin <franky.lin@broadcom.com>
3608 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3609 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3610 M:      Wright Feng <wright.feng@infineon.com>
3611 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3612 L:      linux-wireless@vger.kernel.org
3613 L:      brcm80211-dev-list.pdl@broadcom.com
3614 L:      SHA-cyfmac-dev-list@infineon.com
3615 S:      Supported
3616 F:      drivers/net/wireless/broadcom/brcm80211/
3617
3618 BROADCOM BRCMSTB GPIO DRIVER
3619 M:      Gregory Fong <gregory.0xf0@gmail.com>
3620 L:      bcm-kernel-feedback-list@broadcom.com
3621 S:      Supported
3622 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3623 F:      drivers/gpio/gpio-brcmstb.c
3624
3625 BROADCOM BRCMSTB I2C DRIVER
3626 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3627 L:      linux-i2c@vger.kernel.org
3628 L:      bcm-kernel-feedback-list@broadcom.com
3629 S:      Supported
3630 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3631 F:      drivers/i2c/busses/i2c-brcmstb.c
3632
3633 BROADCOM BRCMSTB UART DRIVER
3634 M:      Al Cooper <alcooperx@gmail.com>
3635 L:      linux-serial@vger.kernel.org
3636 L:      bcm-kernel-feedback-list@broadcom.com
3637 S:      Maintained
3638 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3639 F:      drivers/tty/serial/8250/8250_bcm7271.c
3640
3641 BROADCOM BRCMSTB USB EHCI DRIVER
3642 M:      Al Cooper <alcooperx@gmail.com>
3643 L:      linux-usb@vger.kernel.org
3644 L:      bcm-kernel-feedback-list@broadcom.com
3645 S:      Maintained
3646 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3647 F:      drivers/usb/host/ehci-brcm.*
3648
3649 BROADCOM BRCMSTB USB PIN MAP DRIVER
3650 M:      Al Cooper <alcooperx@gmail.com>
3651 L:      linux-usb@vger.kernel.org
3652 L:      bcm-kernel-feedback-list@broadcom.com
3653 S:      Maintained
3654 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3655 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3656
3657 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3658 M:      Al Cooper <alcooperx@gmail.com>
3659 L:      linux-kernel@vger.kernel.org
3660 L:      bcm-kernel-feedback-list@broadcom.com
3661 S:      Maintained
3662 F:      drivers/phy/broadcom/phy-brcm-usb*
3663
3664 BROADCOM ETHERNET PHY DRIVERS
3665 M:      Florian Fainelli <f.fainelli@gmail.com>
3666 L:      bcm-kernel-feedback-list@broadcom.com
3667 L:      netdev@vger.kernel.org
3668 S:      Supported
3669 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3670 F:      drivers/net/phy/bcm*.[ch]
3671 F:      drivers/net/phy/broadcom.c
3672 F:      include/linux/brcmphy.h
3673
3674 BROADCOM GENET ETHERNET DRIVER
3675 M:      Doug Berger <opendmb@gmail.com>
3676 M:      Florian Fainelli <f.fainelli@gmail.com>
3677 L:      bcm-kernel-feedback-list@broadcom.com
3678 L:      netdev@vger.kernel.org
3679 S:      Supported
3680 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3681 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3682 F:      drivers/net/ethernet/broadcom/genet/
3683 F:      drivers/net/ethernet/broadcom/unimac.h
3684 F:      drivers/net/mdio/mdio-bcm-unimac.c
3685 F:      include/linux/platform_data/bcmgenet.h
3686 F:      include/linux/platform_data/mdio-bcm-unimac.h
3687
3688 BROADCOM IPROC ARM ARCHITECTURE
3689 M:      Ray Jui <rjui@broadcom.com>
3690 M:      Scott Branden <sbranden@broadcom.com>
3691 M:      bcm-kernel-feedback-list@broadcom.com
3692 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3693 S:      Maintained
3694 T:      git git://github.com/broadcom/cygnus-linux.git
3695 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3696 F:      arch/arm64/boot/dts/broadcom/stingray/*
3697 F:      drivers/clk/bcm/clk-ns*
3698 F:      drivers/clk/bcm/clk-sr*
3699 F:      drivers/pinctrl/bcm/pinctrl-ns*
3700 F:      include/dt-bindings/clock/bcm-sr*
3701 N:      iproc
3702 N:      cygnus
3703 N:      bcm[-_]nsp
3704 N:      bcm9113*
3705 N:      bcm9583*
3706 N:      bcm9585*
3707 N:      bcm9586*
3708 N:      bcm988312
3709 N:      bcm113*
3710 N:      bcm583*
3711 N:      bcm585*
3712 N:      bcm586*
3713 N:      bcm88312
3714 N:      hr2
3715 N:      stingray
3716
3717 BROADCOM IPROC GBIT ETHERNET DRIVER
3718 M:      Rafał Miłecki <rafal@milecki.pl>
3719 M:      bcm-kernel-feedback-list@broadcom.com
3720 L:      netdev@vger.kernel.org
3721 S:      Maintained
3722 F:      Documentation/devicetree/bindings/net/brcm,amac.txt
3723 F:      drivers/net/ethernet/broadcom/bgmac*
3724 F:      drivers/net/ethernet/broadcom/unimac.h
3725
3726 BROADCOM KONA GPIO DRIVER
3727 M:      Ray Jui <rjui@broadcom.com>
3728 L:      bcm-kernel-feedback-list@broadcom.com
3729 S:      Supported
3730 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3731 F:      drivers/gpio/gpio-bcm-kona.c
3732
3733 BROADCOM NETXTREME-E ROCE DRIVER
3734 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3735 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3736 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3737 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3738 M:      Naresh Kumar PBS <nareshkumar.pbs@broadcom.com>
3739 L:      linux-rdma@vger.kernel.org
3740 S:      Supported
3741 W:      http://www.broadcom.com
3742 F:      drivers/infiniband/hw/bnxt_re/
3743 F:      include/uapi/rdma/bnxt_re-abi.h
3744
3745 BROADCOM NVRAM DRIVER
3746 M:      Rafał Miłecki <zajec5@gmail.com>
3747 L:      linux-mips@vger.kernel.org
3748 S:      Maintained
3749 F:      drivers/firmware/broadcom/*
3750
3751 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3752 M:      Rafał Miłecki <rafal@milecki.pl>
3753 M:      Florian Fainelli <f.fainelli@gmail.com>
3754 M:      bcm-kernel-feedback-list@broadcom.com
3755 L:      linux-pm@vger.kernel.org
3756 S:      Maintained
3757 T:      git git://github.com/broadcom/stblinux.git
3758 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
3759 F:      include/dt-bindings/soc/bcm-pmb.h
3760
3761 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3762 M:      Rafał Miłecki <zajec5@gmail.com>
3763 L:      linux-wireless@vger.kernel.org
3764 S:      Maintained
3765 F:      drivers/bcma/
3766 F:      include/linux/bcma/
3767
3768 BROADCOM SPI DRIVER
3769 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3770 M:      bcm-kernel-feedback-list@broadcom.com
3771 S:      Maintained
3772 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
3773 F:      drivers/spi/spi-bcm-qspi.*
3774 F:      drivers/spi/spi-brcmstb-qspi.c
3775 F:      drivers/spi/spi-iproc-qspi.c
3776
3777 BROADCOM STB AVS CPUFREQ DRIVER
3778 M:      Markus Mayer <mmayer@broadcom.com>
3779 M:      bcm-kernel-feedback-list@broadcom.com
3780 L:      linux-pm@vger.kernel.org
3781 S:      Maintained
3782 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3783 F:      drivers/cpufreq/brcmstb*
3784
3785 BROADCOM STB AVS TMON DRIVER
3786 M:      Markus Mayer <mmayer@broadcom.com>
3787 M:      bcm-kernel-feedback-list@broadcom.com
3788 L:      linux-pm@vger.kernel.org
3789 S:      Maintained
3790 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3791 F:      drivers/thermal/broadcom/brcmstb*
3792
3793 BROADCOM STB DPFE DRIVER
3794 M:      Markus Mayer <mmayer@broadcom.com>
3795 M:      bcm-kernel-feedback-list@broadcom.com
3796 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3797 S:      Maintained
3798 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3799 F:      drivers/memory/brcmstb_dpfe.c
3800
3801 BROADCOM STB NAND FLASH DRIVER
3802 M:      Brian Norris <computersforpeace@gmail.com>
3803 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3804 L:      linux-mtd@lists.infradead.org
3805 L:      bcm-kernel-feedback-list@broadcom.com
3806 S:      Maintained
3807 F:      drivers/mtd/nand/raw/brcmnand/
3808
3809 BROADCOM SYSTEMPORT ETHERNET DRIVER
3810 M:      Florian Fainelli <f.fainelli@gmail.com>
3811 L:      bcm-kernel-feedback-list@broadcom.com
3812 L:      netdev@vger.kernel.org
3813 S:      Supported
3814 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3815 F:      drivers/net/ethernet/broadcom/unimac.h
3816
3817 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3818 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3819 M:      Prashant Sreedharan <prashant@broadcom.com>
3820 M:      Michael Chan <mchan@broadcom.com>
3821 L:      netdev@vger.kernel.org
3822 S:      Supported
3823 F:      drivers/net/ethernet/broadcom/tg3.*
3824
3825 BROADCOM VK DRIVER
3826 M:      Scott Branden <scott.branden@broadcom.com>
3827 L:      bcm-kernel-feedback-list@broadcom.com
3828 S:      Supported
3829 F:      drivers/misc/bcm-vk/
3830 F:      include/uapi/linux/misc/bcm_vk.h
3831
3832 BROCADE BFA FC SCSI DRIVER
3833 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3834 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3835 L:      linux-scsi@vger.kernel.org
3836 S:      Supported
3837 F:      drivers/scsi/bfa/
3838
3839 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3840 M:      Rasesh Mody <rmody@marvell.com>
3841 M:      Sudarsana Kalluru <skalluru@marvell.com>
3842 M:      GR-Linux-NIC-Dev@marvell.com
3843 L:      netdev@vger.kernel.org
3844 S:      Supported
3845 F:      drivers/net/ethernet/brocade/bna/
3846
3847 BSG (block layer generic sg v4 driver)
3848 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3849 L:      linux-scsi@vger.kernel.org
3850 S:      Supported
3851 F:      block/bsg.c
3852 F:      include/linux/bsg.h
3853 F:      include/uapi/linux/bsg.h
3854
3855 BT87X AUDIO DRIVER
3856 M:      Clemens Ladisch <clemens@ladisch.de>
3857 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3858 S:      Maintained
3859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3860 F:      Documentation/sound/cards/bt87x.rst
3861 F:      sound/pci/bt87x.c
3862
3863 BT8XXGPIO DRIVER
3864 M:      Michael Buesch <m@bues.ch>
3865 S:      Maintained
3866 W:      http://bu3sch.de/btgpio.php
3867 F:      drivers/gpio/gpio-bt8xx.c
3868
3869 BTRFS FILE SYSTEM
3870 M:      Chris Mason <clm@fb.com>
3871 M:      Josef Bacik <josef@toxicpanda.com>
3872 M:      David Sterba <dsterba@suse.com>
3873 L:      linux-btrfs@vger.kernel.org
3874 S:      Maintained
3875 W:      http://btrfs.wiki.kernel.org/
3876 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3878 F:      Documentation/filesystems/btrfs.rst
3879 F:      fs/btrfs/
3880 F:      include/linux/btrfs*
3881 F:      include/uapi/linux/btrfs*
3882
3883 BTTV VIDEO4LINUX DRIVER
3884 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3885 L:      linux-media@vger.kernel.org
3886 S:      Odd fixes
3887 W:      https://linuxtv.org
3888 T:      git git://linuxtv.org/media_tree.git
3889 F:      Documentation/driver-api/media/drivers/bttv*
3890 F:      drivers/media/pci/bt8xx/bttv*
3891
3892 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3893 M:      Chanwoo Choi <cw00.choi@samsung.com>
3894 L:      linux-pm@vger.kernel.org
3895 L:      linux-samsung-soc@vger.kernel.org
3896 S:      Maintained
3897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3898 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3899 F:      drivers/devfreq/exynos-bus.c
3900
3901 BUSLOGIC SCSI DRIVER
3902 M:      Khalid Aziz <khalid@gonehiking.org>
3903 L:      linux-scsi@vger.kernel.org
3904 S:      Maintained
3905 F:      drivers/scsi/BusLogic.*
3906 F:      drivers/scsi/FlashPoint.*
3907
3908 C-MEDIA CMI8788 DRIVER
3909 M:      Clemens Ladisch <clemens@ladisch.de>
3910 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3911 S:      Maintained
3912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3913 F:      sound/pci/oxygen/
3914
3915 C-SKY ARCHITECTURE
3916 M:      Guo Ren <guoren@kernel.org>
3917 L:      linux-csky@vger.kernel.org
3918 S:      Supported
3919 T:      git https://github.com/c-sky/csky-linux.git
3920 F:      Documentation/devicetree/bindings/csky/
3921 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3922 F:      Documentation/devicetree/bindings/timer/csky,*
3923 F:      arch/csky/
3924 F:      drivers/clocksource/timer-gx6605s.c
3925 F:      drivers/clocksource/timer-mp-csky.c
3926 F:      drivers/irqchip/irq-csky-*
3927 N:      csky
3928 K:      csky
3929
3930 CA8210 IEEE-802.15.4 RADIO DRIVER
3931 M:      Harry Morris <h.morris@cascoda.com>
3932 L:      linux-wpan@vger.kernel.org
3933 S:      Maintained
3934 W:      https://github.com/Cascoda/ca8210-linux.git
3935 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3936 F:      drivers/net/ieee802154/ca8210.c
3937
3938 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
3939 M:      Damien Le Moal <damien.lemoal@wdc.com>
3940 L:      linux-riscv@lists.infradead.org
3941 L:      linux-gpio@vger.kernel.org (pinctrl driver)
3942 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
3943 F:      drivers/pinctrl/pinctrl-k210.c
3944
3945 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
3946 M:      Damien Le Moal <damien.lemoal@wdc.com>
3947 L:      linux-kernel@vger.kernel.org
3948 L:      linux-riscv@lists.infradead.org
3949 S:      Maintained
3950 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
3951 F:      drivers/reset/reset-k210.c
3952
3953 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
3954 M:      Damien Le Moal <damien.lemoal@wdc.com>
3955 L:      linux-riscv@lists.infradead.org
3956 S:      Maintained
3957 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
3958 F:      drivers/soc/canaan/
3959 F:      include/soc/canaan/
3960
3961 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3962 M:      David Howells <dhowells@redhat.com>
3963 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3964 S:      Supported
3965 F:      Documentation/filesystems/caching/cachefiles.rst
3966 F:      fs/cachefiles/
3967
3968 CADENCE MIPI-CSI2 BRIDGES
3969 M:      Maxime Ripard <mripard@kernel.org>
3970 L:      linux-media@vger.kernel.org
3971 S:      Maintained
3972 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3973 F:      drivers/media/platform/cadence/cdns-csi2*
3974
3975 CADENCE NAND DRIVER
3976 L:      linux-mtd@lists.infradead.org
3977 S:      Orphan
3978 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3979 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3980
3981 CADENCE USB3 DRD IP DRIVER
3982 M:      Peter Chen <peter.chen@kernel.org>
3983 M:      Pawel Laszczak <pawell@cadence.com>
3984 R:      Roger Quadros <rogerq@kernel.org>
3985 R:      Aswath Govindraju <a-govindraju@ti.com>
3986 L:      linux-usb@vger.kernel.org
3987 S:      Maintained
3988 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3989 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
3990 F:      drivers/usb/cdns3/
3991 X:      drivers/usb/cdns3/cdnsp*
3992
3993 CADENCE USBSSP DRD IP DRIVER
3994 M:      Pawel Laszczak <pawell@cadence.com>
3995 L:      linux-usb@vger.kernel.org
3996 S:      Maintained
3997 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3998 F:      drivers/usb/cdns3/
3999 X:      drivers/usb/cdns3/cdns3*
4000
4001 CADET FM/AM RADIO RECEIVER DRIVER
4002 M:      Hans Verkuil <hverkuil@xs4all.nl>
4003 L:      linux-media@vger.kernel.org
4004 S:      Maintained
4005 W:      https://linuxtv.org
4006 T:      git git://linuxtv.org/media_tree.git
4007 F:      drivers/media/radio/radio-cadet*
4008
4009 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4010 L:      linux-media@vger.kernel.org
4011 S:      Orphan
4012 T:      git git://linuxtv.org/media_tree.git
4013 F:      Documentation/admin-guide/media/cafe_ccic*
4014 F:      drivers/media/platform/marvell-ccic/
4015
4016 CAIF NETWORK LAYER
4017 L:      netdev@vger.kernel.org
4018 S:      Orphan
4019 F:      Documentation/networking/caif/
4020 F:      drivers/net/caif/
4021 F:      include/net/caif/
4022 F:      include/uapi/linux/caif/
4023 F:      net/caif/
4024
4025 CAKE QDISC
4026 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4027 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4028 S:      Maintained
4029 F:      net/sched/sch_cake.c
4030
4031 CAN NETWORK DRIVERS
4032 M:      Wolfgang Grandegger <wg@grandegger.com>
4033 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4034 L:      linux-can@vger.kernel.org
4035 S:      Maintained
4036 W:      https://github.com/linux-can
4037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4039 F:      Documentation/devicetree/bindings/net/can/
4040 F:      drivers/net/can/
4041 F:      include/linux/can/bittiming.h
4042 F:      include/linux/can/dev.h
4043 F:      include/linux/can/led.h
4044 F:      include/linux/can/length.h
4045 F:      include/linux/can/platform/
4046 F:      include/linux/can/rx-offload.h
4047 F:      include/uapi/linux/can/error.h
4048 F:      include/uapi/linux/can/netlink.h
4049 F:      include/uapi/linux/can/vxcan.h
4050
4051 CAN NETWORK LAYER
4052 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4053 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4054 L:      linux-can@vger.kernel.org
4055 S:      Maintained
4056 W:      https://github.com/linux-can
4057 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4059 F:      Documentation/networking/can.rst
4060 F:      include/linux/can/can-ml.h
4061 F:      include/linux/can/core.h
4062 F:      include/linux/can/skb.h
4063 F:      include/net/netns/can.h
4064 F:      include/uapi/linux/can.h
4065 F:      include/uapi/linux/can/bcm.h
4066 F:      include/uapi/linux/can/gw.h
4067 F:      include/uapi/linux/can/isotp.h
4068 F:      include/uapi/linux/can/raw.h
4069 F:      net/can/
4070
4071 CAN-J1939 NETWORK LAYER
4072 M:      Robin van der Gracht <robin@protonic.nl>
4073 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4074 R:      kernel@pengutronix.de
4075 L:      linux-can@vger.kernel.org
4076 S:      Maintained
4077 F:      Documentation/networking/j1939.rst
4078 F:      include/uapi/linux/can/j1939.h
4079 F:      net/can/j1939/
4080
4081 CAPABILITIES
4082 M:      Serge Hallyn <serge@hallyn.com>
4083 L:      linux-security-module@vger.kernel.org
4084 S:      Supported
4085 F:      include/linux/capability.h
4086 F:      include/uapi/linux/capability.h
4087 F:      kernel/capability.c
4088 F:      security/commoncap.c
4089
4090 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4091 M:      Kevin Tsai <ktsai@capellamicro.com>
4092 S:      Maintained
4093 F:      drivers/iio/light/cm*
4094
4095 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4096 M:      Christian Lamparter <chunkeey@googlemail.com>
4097 L:      linux-wireless@vger.kernel.org
4098 S:      Maintained
4099 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4100 F:      drivers/net/wireless/ath/carl9170/
4101
4102 CAVIUM I2C DRIVER
4103 M:      Robert Richter <rric@kernel.org>
4104 S:      Odd Fixes
4105 W:      http://www.marvell.com
4106 F:      drivers/i2c/busses/i2c-octeon*
4107 F:      drivers/i2c/busses/i2c-thunderx*
4108
4109 CAVIUM LIQUIDIO NETWORK DRIVER
4110 M:      Derek Chickles <dchickles@marvell.com>
4111 M:      Satanand Burla <sburla@marvell.com>
4112 M:      Felix Manlunas <fmanlunas@marvell.com>
4113 L:      netdev@vger.kernel.org
4114 S:      Supported
4115 W:      http://www.marvell.com
4116 F:      drivers/net/ethernet/cavium/liquidio/
4117
4118 CAVIUM MMC DRIVER
4119 M:      Robert Richter <rric@kernel.org>
4120 S:      Odd Fixes
4121 W:      http://www.marvell.com
4122 F:      drivers/mmc/host/cavium*
4123
4124 CAVIUM OCTEON-TX CRYPTO DRIVER
4125 M:      George Cherian <gcherian@marvell.com>
4126 L:      linux-crypto@vger.kernel.org
4127 S:      Supported
4128 W:      http://www.marvell.com
4129 F:      drivers/crypto/cavium/cpt/
4130
4131 CAVIUM THUNDERX2 ARM64 SOC
4132 M:      Robert Richter <rric@kernel.org>
4133 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4134 S:      Odd Fixes
4135 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4136 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4137
4138 CC2520 IEEE-802.15.4 RADIO DRIVER
4139 M:      Varka Bhadram <varkabhadram@gmail.com>
4140 L:      linux-wpan@vger.kernel.org
4141 S:      Maintained
4142 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4143 F:      drivers/net/ieee802154/cc2520.c
4144 F:      include/linux/spi/cc2520.h
4145
4146 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4147 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4148 L:      linux-crypto@vger.kernel.org
4149 S:      Supported
4150 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4151 F:      drivers/crypto/ccree/
4152
4153 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4154 M:      Hadar Gat <hadar.gat@arm.com>
4155 L:      linux-crypto@vger.kernel.org
4156 S:      Supported
4157 F:      drivers/char/hw_random/cctrng.c
4158 F:      drivers/char/hw_random/cctrng.h
4159 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4160 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4161
4162 CEC FRAMEWORK
4163 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4164 L:      linux-media@vger.kernel.org
4165 S:      Supported
4166 W:      http://linuxtv.org
4167 T:      git git://linuxtv.org/media_tree.git
4168 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4169 F:      Documentation/devicetree/bindings/media/cec.txt
4170 F:      Documentation/driver-api/media/cec-core.rst
4171 F:      Documentation/userspace-api/media/cec
4172 F:      drivers/media/cec/
4173 F:      drivers/media/rc/keymaps/rc-cec.c
4174 F:      include/media/cec-notifier.h
4175 F:      include/media/cec.h
4176 F:      include/uapi/linux/cec-funcs.h
4177 F:      include/uapi/linux/cec.h
4178
4179 CEC GPIO DRIVER
4180 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4181 L:      linux-media@vger.kernel.org
4182 S:      Supported
4183 W:      http://linuxtv.org
4184 T:      git git://linuxtv.org/media_tree.git
4185 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4186 F:      drivers/media/cec/platform/cec-gpio/
4187
4188 CELL BROADBAND ENGINE ARCHITECTURE
4189 M:      Arnd Bergmann <arnd@arndb.de>
4190 L:      linuxppc-dev@lists.ozlabs.org
4191 S:      Supported
4192 W:      http://www.ibm.com/developerworks/power/cell/
4193 F:      arch/powerpc/include/asm/cell*.h
4194 F:      arch/powerpc/include/asm/spu*.h
4195 F:      arch/powerpc/include/uapi/asm/spu*.h
4196 F:      arch/powerpc/platforms/cell/
4197
4198 CELLWISE CW2015 BATTERY DRIVER
4199 M:      Tobias Schrammm <t.schramm@manjaro.org>
4200 S:      Maintained
4201 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4202 F:      drivers/power/supply/cw2015_battery.c
4203
4204 CEPH COMMON CODE (LIBCEPH)
4205 M:      Ilya Dryomov <idryomov@gmail.com>
4206 M:      Jeff Layton <jlayton@kernel.org>
4207 L:      ceph-devel@vger.kernel.org
4208 S:      Supported
4209 W:      http://ceph.com/
4210 T:      git git://github.com/ceph/ceph-client.git
4211 F:      include/linux/ceph/
4212 F:      include/linux/crush/
4213 F:      net/ceph/
4214
4215 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4216 M:      Jeff Layton <jlayton@kernel.org>
4217 M:      Ilya Dryomov <idryomov@gmail.com>
4218 L:      ceph-devel@vger.kernel.org
4219 S:      Supported
4220 W:      http://ceph.com/
4221 T:      git git://github.com/ceph/ceph-client.git
4222 F:      Documentation/filesystems/ceph.rst
4223 F:      fs/ceph/
4224
4225 CERTIFICATE HANDLING
4226 M:      David Howells <dhowells@redhat.com>
4227 M:      David Woodhouse <dwmw2@infradead.org>
4228 L:      keyrings@vger.kernel.org
4229 S:      Maintained
4230 F:      Documentation/admin-guide/module-signing.rst
4231 F:      certs/
4232 F:      scripts/extract-cert.c
4233 F:      scripts/sign-file.c
4234
4235 CFAG12864B LCD DRIVER
4236 M:      Miguel Ojeda <ojeda@kernel.org>
4237 S:      Maintained
4238 F:      drivers/auxdisplay/cfag12864b.c
4239 F:      include/linux/cfag12864b.h
4240
4241 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4242 M:      Miguel Ojeda <ojeda@kernel.org>
4243 S:      Maintained
4244 F:      drivers/auxdisplay/cfag12864bfb.c
4245 F:      include/linux/cfag12864b.h
4246
4247 CHAR and MISC DRIVERS
4248 M:      Arnd Bergmann <arnd@arndb.de>
4249 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4250 S:      Supported
4251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4252 F:      drivers/char/
4253 F:      drivers/misc/
4254 F:      include/linux/miscdevice.h
4255 X:      drivers/char/agp/
4256 X:      drivers/char/hw_random/
4257 X:      drivers/char/ipmi/
4258 X:      drivers/char/random.c
4259 X:      drivers/char/tpm/
4260
4261 CHECKPATCH
4262 M:      Andy Whitcroft <apw@canonical.com>
4263 M:      Joe Perches <joe@perches.com>
4264 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4265 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4266 S:      Maintained
4267 F:      scripts/checkpatch.pl
4268
4269 CHECKPATCH DOCUMENTATION
4270 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4271 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4272 R:      Joe Perches <joe@perches.com>
4273 S:      Maintained
4274 F:      Documentation/dev-tools/checkpatch.rst
4275
4276 CHINESE DOCUMENTATION
4277 M:      Alex Shi <alexs@kernel.org>
4278 S:      Maintained
4279 F:      Documentation/translations/zh_CN/
4280
4281 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4282 M:      Peter Chen <peter.chen@kernel.org>
4283 L:      linux-usb@vger.kernel.org
4284 S:      Maintained
4285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4286 F:      drivers/usb/chipidea/
4287
4288 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4289 M:      Hans de Goede <hdegoede@redhat.com>
4290 L:      linux-input@vger.kernel.org
4291 S:      Maintained
4292 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4293 F:      drivers/input/touchscreen/chipone_icn8318.c
4294
4295 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4296 M:      Hans de Goede <hdegoede@redhat.com>
4297 L:      linux-input@vger.kernel.org
4298 S:      Maintained
4299 F:      drivers/input/touchscreen/chipone_icn8505.c
4300
4301 CHROME HARDWARE PLATFORM SUPPORT
4302 M:      Benson Leung <bleung@chromium.org>
4303 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4304 S:      Maintained
4305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4306 F:      drivers/platform/chrome/
4307
4308 CHROMEOS EC CODEC DRIVER
4309 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4310 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4311 R:      Guenter Roeck <groeck@chromium.org>
4312 S:      Maintained
4313 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4314 F:      sound/soc/codecs/cros_ec_codec.*
4315
4316 CHROMEOS EC SUBDRIVERS
4317 M:      Benson Leung <bleung@chromium.org>
4318 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4319 R:      Guenter Roeck <groeck@chromium.org>
4320 S:      Maintained
4321 F:      drivers/power/supply/cros_usbpd-charger.c
4322 N:      cros_ec
4323 N:      cros-ec
4324
4325 CHRONTEL CH7322 CEC DRIVER
4326 M:      Jeff Chase <jnchase@google.com>
4327 L:      linux-media@vger.kernel.org
4328 S:      Maintained
4329 T:      git git://linuxtv.org/media_tree.git
4330 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4331 F:      drivers/media/cec/i2c/ch7322.c
4332
4333 CIRRUS LOGIC AUDIO CODEC DRIVERS
4334 M:      James Schulman <james.schulman@cirrus.com>
4335 M:      David Rhodes <david.rhodes@cirrus.com>
4336 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4337 L:      patches@opensource.cirrus.com
4338 S:      Maintained
4339 F:      sound/soc/codecs/cs*
4340
4341 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4342 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4343 L:      netdev@vger.kernel.org
4344 S:      Maintained
4345 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4346
4347 CIRRUS LOGIC LOCHNAGAR DRIVER
4348 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4349 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4350 L:      patches@opensource.cirrus.com
4351 S:      Supported
4352 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4353 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4354 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4355 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4356 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4357 F:      Documentation/hwmon/lochnagar.rst
4358 F:      drivers/clk/clk-lochnagar.c
4359 F:      drivers/hwmon/lochnagar-hwmon.c
4360 F:      drivers/mfd/lochnagar-i2c.c
4361 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4362 F:      drivers/regulator/lochnagar-regulator.c
4363 F:      include/dt-bindings/clk/lochnagar.h
4364 F:      include/dt-bindings/pinctrl/lochnagar.h
4365 F:      include/linux/mfd/lochnagar*
4366 F:      sound/soc/codecs/lochnagar-sc.c
4367
4368 CIRRUS LOGIC MADERA CODEC DRIVERS
4369 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4370 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4371 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4372 L:      patches@opensource.cirrus.com
4373 S:      Supported
4374 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4375 T:      git https://github.com/CirrusLogic/linux-drivers.git
4376 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4377 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4378 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4379 F:      drivers/gpio/gpio-madera*
4380 F:      drivers/irqchip/irq-madera*
4381 F:      drivers/mfd/cs47l*
4382 F:      drivers/mfd/madera*
4383 F:      drivers/pinctrl/cirrus/*
4384 F:      include/dt-bindings/sound/madera*
4385 F:      include/linux/irqchip/irq-madera*
4386 F:      include/linux/mfd/madera/*
4387 F:      include/sound/madera*
4388 F:      sound/soc/codecs/cs47l*
4389 F:      sound/soc/codecs/madera*
4390
4391 CISCO FCOE HBA DRIVER
4392 M:      Satish Kharat <satishkh@cisco.com>
4393 M:      Sesidhar Baddela <sebaddel@cisco.com>
4394 M:      Karan Tilak Kumar <kartilak@cisco.com>
4395 L:      linux-scsi@vger.kernel.org
4396 S:      Supported
4397 F:      drivers/scsi/fnic/
4398
4399 CISCO SCSI HBA DRIVER
4400 M:      Karan Tilak Kumar <kartilak@cisco.com>
4401 M:      Sesidhar Baddela <sebaddel@cisco.com>
4402 L:      linux-scsi@vger.kernel.org
4403 S:      Supported
4404 F:      drivers/scsi/snic/
4405
4406 CISCO VIC ETHERNET NIC DRIVER
4407 M:      Christian Benvenuti <benve@cisco.com>
4408 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4409 S:      Supported
4410 F:      drivers/net/ethernet/cisco/enic/
4411
4412 CISCO VIC LOW LATENCY NIC DRIVER
4413 M:      Christian Benvenuti <benve@cisco.com>
4414 M:      Nelson Escobar <neescoba@cisco.com>
4415 S:      Supported
4416 F:      drivers/infiniband/hw/usnic/
4417
4418 CLANG-FORMAT FILE
4419 M:      Miguel Ojeda <ojeda@kernel.org>
4420 S:      Maintained
4421 F:      .clang-format
4422
4423 CLANG/LLVM BUILD SUPPORT
4424 M:      Nathan Chancellor <nathan@kernel.org>
4425 M:      Nick Desaulniers <ndesaulniers@google.com>
4426 L:      clang-built-linux@googlegroups.com
4427 S:      Supported
4428 W:      https://clangbuiltlinux.github.io/
4429 B:      https://github.com/ClangBuiltLinux/linux/issues
4430 C:      irc://chat.freenode.net/clangbuiltlinux
4431 F:      Documentation/kbuild/llvm.rst
4432 F:      include/linux/compiler-clang.h
4433 F:      scripts/clang-tools/
4434 K:      \b(?i:clang|llvm)\b
4435
4436 CLEANCACHE API
4437 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4438 L:      linux-kernel@vger.kernel.org
4439 S:      Maintained
4440 F:      include/linux/cleancache.h
4441 F:      mm/cleancache.c
4442
4443 CLK API
4444 M:      Russell King <linux@armlinux.org.uk>
4445 L:      linux-clk@vger.kernel.org
4446 S:      Maintained
4447 F:      include/linux/clk.h
4448
4449 CLOCKSOURCE, CLOCKEVENT DRIVERS
4450 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4451 M:      Thomas Gleixner <tglx@linutronix.de>
4452 L:      linux-kernel@vger.kernel.org
4453 S:      Supported
4454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4455 F:      Documentation/devicetree/bindings/timer/
4456 F:      drivers/clocksource/
4457
4458 CMPC ACPI DRIVER
4459 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4460 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4461 L:      platform-driver-x86@vger.kernel.org
4462 S:      Supported
4463 F:      drivers/platform/x86/classmate-laptop.c
4464
4465 COBALT MEDIA DRIVER
4466 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4467 L:      linux-media@vger.kernel.org
4468 S:      Supported
4469 W:      https://linuxtv.org
4470 T:      git git://linuxtv.org/media_tree.git
4471 F:      drivers/media/pci/cobalt/
4472
4473 COCCINELLE/Semantic Patches (SmPL)
4474 M:      Julia Lawall <Julia.Lawall@inria.fr>
4475 M:      Gilles Muller <Gilles.Muller@inria.fr>
4476 M:      Nicolas Palix <nicolas.palix@imag.fr>
4477 M:      Michal Marek <michal.lkml@markovi.net>
4478 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4479 S:      Supported
4480 W:      http://coccinelle.lip6.fr/
4481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4482 F:      Documentation/dev-tools/coccinelle.rst
4483 F:      scripts/coccicheck
4484 F:      scripts/coccinelle/
4485
4486 CODA FILE SYSTEM
4487 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4488 M:      coda@cs.cmu.edu
4489 L:      codalist@coda.cs.cmu.edu
4490 S:      Maintained
4491 W:      http://www.coda.cs.cmu.edu/
4492 F:      Documentation/filesystems/coda.rst
4493 F:      fs/coda/
4494 F:      include/linux/coda*.h
4495 F:      include/uapi/linux/coda*.h
4496
4497 CODA V4L2 MEM2MEM DRIVER
4498 M:      Philipp Zabel <p.zabel@pengutronix.de>
4499 L:      linux-media@vger.kernel.org
4500 S:      Maintained
4501 F:      Documentation/devicetree/bindings/media/coda.yaml
4502 F:      drivers/media/platform/coda/
4503
4504 CODE OF CONDUCT
4505 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4506 S:      Supported
4507 F:      Documentation/process/code-of-conduct-interpretation.rst
4508 F:      Documentation/process/code-of-conduct.rst
4509
4510 COMEDI DRIVERS
4511 M:      Ian Abbott <abbotti@mev.co.uk>
4512 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4513 S:      Odd Fixes
4514 F:      drivers/comedi/
4515
4516 COMMON CLK FRAMEWORK
4517 M:      Michael Turquette <mturquette@baylibre.com>
4518 M:      Stephen Boyd <sboyd@kernel.org>
4519 L:      linux-clk@vger.kernel.org
4520 S:      Maintained
4521 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4523 F:      Documentation/devicetree/bindings/clock/
4524 F:      drivers/clk/
4525 F:      include/linux/clk-pr*
4526 F:      include/linux/clk/
4527 F:      include/linux/of_clk.h
4528 X:      drivers/clk/clkdev.c
4529
4530 COMMON INTERNET FILE SYSTEM (CIFS)
4531 M:      Steve French <sfrench@samba.org>
4532 L:      linux-cifs@vger.kernel.org
4533 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4534 S:      Supported
4535 W:      http://linux-cifs.samba.org/
4536 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4537 F:      Documentation/admin-guide/cifs/
4538 F:      fs/cifs/
4539
4540 COMPACTPCI HOTPLUG CORE
4541 M:      Scott Murray <scott@spiteful.org>
4542 L:      linux-pci@vger.kernel.org
4543 S:      Maintained
4544 F:      drivers/pci/hotplug/cpci_hotplug*
4545
4546 COMPACTPCI HOTPLUG GENERIC DRIVER
4547 M:      Scott Murray <scott@spiteful.org>
4548 L:      linux-pci@vger.kernel.org
4549 S:      Maintained
4550 F:      drivers/pci/hotplug/cpcihp_generic.c
4551
4552 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4553 M:      Scott Murray <scott@spiteful.org>
4554 L:      linux-pci@vger.kernel.org
4555 S:      Maintained
4556 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4557
4558 COMPAL LAPTOP SUPPORT
4559 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4560 L:      platform-driver-x86@vger.kernel.org
4561 S:      Maintained
4562 F:      drivers/platform/x86/compal-laptop.c
4563
4564 COMPILER ATTRIBUTES
4565 M:      Miguel Ojeda <ojeda@kernel.org>
4566 S:      Maintained
4567 F:      include/linux/compiler_attributes.h
4568
4569 COMPUTE EXPRESS LINK (CXL)
4570 M:      Alison Schofield <alison.schofield@intel.com>
4571 M:      Vishal Verma <vishal.l.verma@intel.com>
4572 M:      Ira Weiny <ira.weiny@intel.com>
4573 M:      Ben Widawsky <ben.widawsky@intel.com>
4574 M:      Dan Williams <dan.j.williams@intel.com>
4575 L:      linux-cxl@vger.kernel.org
4576 S:      Maintained
4577 F:      drivers/cxl/
4578 F:      include/uapi/linux/cxl_mem.h
4579
4580 CONEXANT ACCESSRUNNER USB DRIVER
4581 L:      accessrunner-general@lists.sourceforge.net
4582 S:      Orphan
4583 W:      http://accessrunner.sourceforge.net/
4584 F:      drivers/usb/atm/cxacru.c
4585
4586 CONFIGFS
4587 M:      Joel Becker <jlbec@evilplan.org>
4588 M:      Christoph Hellwig <hch@lst.de>
4589 S:      Supported
4590 T:      git git://git.infradead.org/users/hch/configfs.git
4591 F:      fs/configfs/
4592 F:      include/linux/configfs.h
4593 F:      samples/configfs/
4594
4595 CONSOLE SUBSYSTEM
4596 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4597 S:      Supported
4598 F:      drivers/video/console/
4599 F:      include/linux/console*
4600
4601 CONTROL GROUP (CGROUP)
4602 M:      Tejun Heo <tj@kernel.org>
4603 M:      Zefan Li <lizefan.x@bytedance.com>
4604 M:      Johannes Weiner <hannes@cmpxchg.org>
4605 L:      cgroups@vger.kernel.org
4606 S:      Maintained
4607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4608 F:      Documentation/admin-guide/cgroup-v1/
4609 F:      Documentation/admin-guide/cgroup-v2.rst
4610 F:      include/linux/cgroup*
4611 F:      kernel/cgroup/
4612
4613 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4614 M:      Tejun Heo <tj@kernel.org>
4615 M:      Jens Axboe <axboe@kernel.dk>
4616 L:      cgroups@vger.kernel.org
4617 L:      linux-block@vger.kernel.org
4618 T:      git git://git.kernel.dk/linux-block
4619 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4620 F:      block/bfq-cgroup.c
4621 F:      block/blk-cgroup.c
4622 F:      block/blk-iolatency.c
4623 F:      block/blk-throttle.c
4624 F:      include/linux/blk-cgroup.h
4625
4626 CONTROL GROUP - CPUSET
4627 M:      Zefan Li <lizefan.x@bytedance.com>
4628 L:      cgroups@vger.kernel.org
4629 S:      Maintained
4630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4631 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4632 F:      include/linux/cpuset.h
4633 F:      kernel/cgroup/cpuset.c
4634
4635 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4636 M:      Johannes Weiner <hannes@cmpxchg.org>
4637 M:      Michal Hocko <mhocko@kernel.org>
4638 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4639 L:      cgroups@vger.kernel.org
4640 L:      linux-mm@kvack.org
4641 S:      Maintained
4642 F:      mm/memcontrol.c
4643 F:      mm/swap_cgroup.c
4644
4645 CORETEMP HARDWARE MONITORING DRIVER
4646 M:      Fenghua Yu <fenghua.yu@intel.com>
4647 L:      linux-hwmon@vger.kernel.org
4648 S:      Maintained
4649 F:      Documentation/hwmon/coretemp.rst
4650 F:      drivers/hwmon/coretemp.c
4651
4652 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4653 M:      Marius Zachmann <mail@mariuszachmann.de>
4654 L:      linux-hwmon@vger.kernel.org
4655 S:      Maintained
4656 F:      drivers/hwmon/corsair-cpro.c
4657
4658 CORSAIR-PSU HARDWARE MONITOR DRIVER
4659 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4660 L:      linux-hwmon@vger.kernel.org
4661 S:      Maintained
4662 F:      Documentation/hwmon/corsair-psu.rst
4663 F:      drivers/hwmon/corsair-psu.c
4664
4665 COSA/SRP SYNC SERIAL DRIVER
4666 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4667 S:      Maintained
4668 W:      http://www.fi.muni.cz/~kas/cosa/
4669 F:      drivers/net/wan/cosa*
4670
4671 COUNTER SUBSYSTEM
4672 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4673 L:      linux-iio@vger.kernel.org
4674 S:      Maintained
4675 F:      Documentation/ABI/testing/sysfs-bus-counter*
4676 F:      Documentation/driver-api/generic-counter.rst
4677 F:      drivers/counter/
4678 F:      include/linux/counter.h
4679 F:      include/linux/counter_enum.h
4680
4681 CPMAC ETHERNET DRIVER
4682 M:      Florian Fainelli <f.fainelli@gmail.com>
4683 L:      netdev@vger.kernel.org
4684 S:      Maintained
4685 F:      drivers/net/ethernet/ti/cpmac.c
4686
4687 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4688 M:      Viresh Kumar <viresh.kumar@linaro.org>
4689 M:      Sudeep Holla <sudeep.holla@arm.com>
4690 L:      linux-pm@vger.kernel.org
4691 S:      Maintained
4692 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4693 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4694
4695 CPU FREQUENCY SCALING FRAMEWORK
4696 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4697 M:      Viresh Kumar <viresh.kumar@linaro.org>
4698 L:      linux-pm@vger.kernel.org
4699 S:      Maintained
4700 B:      https://bugzilla.kernel.org
4701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4703 F:      Documentation/admin-guide/pm/cpufreq.rst
4704 F:      Documentation/admin-guide/pm/intel_pstate.rst
4705 F:      Documentation/cpu-freq/
4706 F:      Documentation/devicetree/bindings/cpufreq/
4707 F:      drivers/cpufreq/
4708 F:      include/linux/cpufreq.h
4709 F:      include/linux/sched/cpufreq.h
4710 F:      kernel/sched/cpufreq*.c
4711 F:      tools/testing/selftests/cpufreq/
4712
4713 CPU IDLE TIME MANAGEMENT FRAMEWORK
4714 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4715 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4716 L:      linux-pm@vger.kernel.org
4717 S:      Maintained
4718 B:      https://bugzilla.kernel.org
4719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4720 F:      Documentation/admin-guide/pm/cpuidle.rst
4721 F:      Documentation/driver-api/pm/cpuidle.rst
4722 F:      drivers/cpuidle/
4723 F:      include/linux/cpuidle.h
4724
4725 CPU POWER MONITORING SUBSYSTEM
4726 M:      Thomas Renninger <trenn@suse.com>
4727 M:      Shuah Khan <shuah@kernel.org>
4728 M:      Shuah Khan <skhan@linuxfoundation.org>
4729 L:      linux-pm@vger.kernel.org
4730 S:      Maintained
4731 F:      tools/power/cpupower/
4732
4733 CPUID/MSR DRIVER
4734 M:      "H. Peter Anvin" <hpa@zytor.com>
4735 S:      Maintained
4736 F:      arch/x86/kernel/cpuid.c
4737 F:      arch/x86/kernel/msr.c
4738
4739 CPUIDLE DRIVER - ARM BIG LITTLE
4740 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4741 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4742 L:      linux-pm@vger.kernel.org
4743 L:      linux-arm-kernel@lists.infradead.org
4744 S:      Maintained
4745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4746 F:      drivers/cpuidle/cpuidle-big_little.c
4747
4748 CPUIDLE DRIVER - ARM EXYNOS
4749 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4750 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4751 M:      Kukjin Kim <kgene@kernel.org>
4752 L:      linux-pm@vger.kernel.org
4753 L:      linux-samsung-soc@vger.kernel.org
4754 S:      Supported
4755 F:      arch/arm/mach-exynos/pm.c
4756 F:      drivers/cpuidle/cpuidle-exynos.c
4757 F:      include/linux/platform_data/cpuidle-exynos.h
4758
4759 CPUIDLE DRIVER - ARM PSCI
4760 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4761 M:      Sudeep Holla <sudeep.holla@arm.com>
4762 L:      linux-pm@vger.kernel.org
4763 L:      linux-arm-kernel@lists.infradead.org
4764 S:      Supported
4765 F:      drivers/cpuidle/cpuidle-psci.c
4766
4767 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4768 M:      Ulf Hansson <ulf.hansson@linaro.org>
4769 L:      linux-pm@vger.kernel.org
4770 L:      linux-arm-kernel@lists.infradead.org
4771 S:      Supported
4772 F:      drivers/cpuidle/cpuidle-psci.h
4773 F:      drivers/cpuidle/cpuidle-psci-domain.c
4774
4775 CRAMFS FILESYSTEM
4776 M:      Nicolas Pitre <nico@fluxnic.net>
4777 S:      Maintained
4778 F:      Documentation/filesystems/cramfs.rst
4779 F:      fs/cramfs/
4780
4781 CREATIVE SB0540
4782 M:      Bastien Nocera <hadess@hadess.net>
4783 L:      linux-input@vger.kernel.org
4784 S:      Maintained
4785 F:      drivers/hid/hid-creative-sb0540.c
4786
4787 CRYPTO API
4788 M:      Herbert Xu <herbert@gondor.apana.org.au>
4789 M:      "David S. Miller" <davem@davemloft.net>
4790 L:      linux-crypto@vger.kernel.org
4791 S:      Maintained
4792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4794 F:      Documentation/crypto/
4795 F:      Documentation/devicetree/bindings/crypto/
4796 F:      arch/*/crypto/
4797 F:      crypto/
4798 F:      drivers/crypto/
4799 F:      include/crypto/
4800 F:      include/linux/crypto*
4801 F:      lib/crypto/
4802
4803 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4804 M:      Neil Horman <nhorman@tuxdriver.com>
4805 L:      linux-crypto@vger.kernel.org
4806 S:      Maintained
4807 F:      crypto/ansi_cprng.c
4808 F:      crypto/rng.c
4809
4810 CS3308 MEDIA DRIVER
4811 M:      Hans Verkuil <hverkuil@xs4all.nl>
4812 L:      linux-media@vger.kernel.org
4813 S:      Odd Fixes
4814 W:      http://linuxtv.org
4815 T:      git git://linuxtv.org/media_tree.git
4816 F:      drivers/media/i2c/cs3308.c
4817
4818 CS5535 Audio ALSA driver
4819 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4820 S:      Maintained
4821 F:      sound/pci/cs5535audio/
4822
4823 CSI DRIVERS FOR ALLWINNER V3s
4824 M:      Yong Deng <yong.deng@magewell.com>
4825 L:      linux-media@vger.kernel.org
4826 S:      Maintained
4827 T:      git git://linuxtv.org/media_tree.git
4828 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4829 F:      drivers/media/platform/sunxi/sun6i-csi/
4830
4831 CW1200 WLAN driver
4832 M:      Solomon Peachy <pizza@shaftnet.org>
4833 S:      Maintained
4834 F:      drivers/net/wireless/st/cw1200/
4835
4836 CX18 VIDEO4LINUX DRIVER
4837 M:      Andy Walls <awalls@md.metrocast.net>
4838 L:      linux-media@vger.kernel.org
4839 S:      Maintained
4840 W:      https://linuxtv.org
4841 T:      git git://linuxtv.org/media_tree.git
4842 F:      drivers/media/pci/cx18/
4843 F:      include/uapi/linux/ivtv*
4844
4845 CX2341X MPEG ENCODER HELPER MODULE
4846 M:      Hans Verkuil <hverkuil@xs4all.nl>
4847 L:      linux-media@vger.kernel.org
4848 S:      Maintained
4849 W:      https://linuxtv.org
4850 T:      git git://linuxtv.org/media_tree.git
4851 F:      drivers/media/common/cx2341x*
4852 F:      include/media/drv-intf/cx2341x.h
4853
4854 CX24120 MEDIA DRIVER
4855 M:      Jemma Denson <jdenson@gmail.com>
4856 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4857 L:      linux-media@vger.kernel.org
4858 S:      Maintained
4859 W:      https://linuxtv.org
4860 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4861 F:      drivers/media/dvb-frontends/cx24120*
4862
4863 CX88 VIDEO4LINUX DRIVER
4864 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4865 L:      linux-media@vger.kernel.org
4866 S:      Odd fixes
4867 W:      https://linuxtv.org
4868 T:      git git://linuxtv.org/media_tree.git
4869 F:      Documentation/driver-api/media/drivers/cx88*
4870 F:      drivers/media/pci/cx88/
4871
4872 CXD2820R MEDIA DRIVER
4873 M:      Antti Palosaari <crope@iki.fi>
4874 L:      linux-media@vger.kernel.org
4875 S:      Maintained
4876 W:      https://linuxtv.org
4877 W:      http://palosaari.fi/linux/
4878 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4879 T:      git git://linuxtv.org/anttip/media_tree.git
4880 F:      drivers/media/dvb-frontends/cxd2820r*
4881
4882 CXGB3 ETHERNET DRIVER (CXGB3)
4883 M:      Raju Rangoju <rajur@chelsio.com>
4884 L:      netdev@vger.kernel.org
4885 S:      Supported
4886 W:      http://www.chelsio.com
4887 F:      drivers/net/ethernet/chelsio/cxgb3/
4888
4889 CXGB3 ISCSI DRIVER (CXGB3I)
4890 M:      Karen Xie <kxie@chelsio.com>
4891 L:      linux-scsi@vger.kernel.org
4892 S:      Supported
4893 W:      http://www.chelsio.com
4894 F:      drivers/scsi/cxgbi/cxgb3i
4895
4896 CXGB4 CRYPTO DRIVER (chcr)
4897 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4898 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4899 M:      Rohit Maheshwari <rohitm@chelsio.com>
4900 L:      linux-crypto@vger.kernel.org
4901 S:      Supported
4902 W:      http://www.chelsio.com
4903 F:      drivers/crypto/chelsio
4904
4905 CXGB4 INLINE CRYPTO DRIVER
4906 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4907 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4908 M:      Rohit Maheshwari <rohitm@chelsio.com>
4909 L:      netdev@vger.kernel.org
4910 S:      Supported
4911 W:      http://www.chelsio.com
4912 F:      drivers/net/ethernet/chelsio/inline_crypto/
4913
4914 CXGB4 ETHERNET DRIVER (CXGB4)
4915 M:      Raju Rangoju <rajur@chelsio.com>
4916 L:      netdev@vger.kernel.org
4917 S:      Supported
4918 W:      http://www.chelsio.com
4919 F:      drivers/net/ethernet/chelsio/cxgb4/
4920
4921 CXGB4 ISCSI DRIVER (CXGB4I)
4922 M:      Karen Xie <kxie@chelsio.com>
4923 L:      linux-scsi@vger.kernel.org
4924 S:      Supported
4925 W:      http://www.chelsio.com
4926 F:      drivers/scsi/cxgbi/cxgb4i
4927
4928 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4929 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4930 L:      linux-rdma@vger.kernel.org
4931 S:      Supported
4932 W:      http://www.openfabrics.org
4933 F:      drivers/infiniband/hw/cxgb4/
4934 F:      include/uapi/rdma/cxgb4-abi.h
4935
4936 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4937 M:      Raju Rangoju <rajur@chelsio.com>
4938 L:      netdev@vger.kernel.org
4939 S:      Supported
4940 W:      http://www.chelsio.com
4941 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4942
4943 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4944 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4945 M:      Andrew Donnellan <ajd@linux.ibm.com>
4946 L:      linuxppc-dev@lists.ozlabs.org
4947 S:      Supported
4948 F:      Documentation/ABI/testing/sysfs-class-cxl
4949 F:      Documentation/powerpc/cxl.rst
4950 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4951 F:      drivers/misc/cxl/
4952 F:      include/misc/cxl*
4953 F:      include/uapi/misc/cxl.h
4954
4955 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4956 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4957 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4958 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4959 L:      linux-scsi@vger.kernel.org
4960 S:      Supported
4961 F:      Documentation/powerpc/cxlflash.rst
4962 F:      drivers/scsi/cxlflash/
4963 F:      include/uapi/scsi/cxlflash_ioctl.h
4964
4965 CYBERPRO FB DRIVER
4966 M:      Russell King <linux@armlinux.org.uk>
4967 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4968 S:      Maintained
4969 W:      http://www.armlinux.org.uk/
4970 F:      drivers/video/fbdev/cyber2000fb.*
4971
4972 CYCLADES PC300 DRIVER
4973 S:      Orphan
4974 F:      drivers/net/wan/pc300*
4975
4976 CYPRESS_FIRMWARE MEDIA DRIVER
4977 M:      Antti Palosaari <crope@iki.fi>
4978 L:      linux-media@vger.kernel.org
4979 S:      Maintained
4980 W:      https://linuxtv.org
4981 W:      http://palosaari.fi/linux/
4982 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4983 T:      git git://linuxtv.org/anttip/media_tree.git
4984 F:      drivers/media/common/cypress_firmware*
4985
4986 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
4987 M:      Linus Walleij <linus.walleij@linaro.org>
4988 L:      linux-input@vger.kernel.org
4989 S:      Maintained
4990 F:      drivers/input/touchscreen/cy8ctma140.c
4991
4992 CYTTSP TOUCHSCREEN DRIVER
4993 M:      Ferruh Yigit <fery@cypress.com>
4994 L:      linux-input@vger.kernel.org
4995 S:      Supported
4996 F:      drivers/input/touchscreen/cyttsp*
4997 F:      include/linux/input/cyttsp.h
4998
4999 D-LINK DIR-685 TOUCHKEYS DRIVER
5000 M:      Linus Walleij <linus.walleij@linaro.org>
5001 L:      linux-input@vger.kernel.org
5002 S:      Supported
5003 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5004
5005 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5006 M:      Joshua Kinard <kumba@gentoo.org>
5007 S:      Maintained
5008 F:      drivers/rtc/rtc-ds1685.c
5009 F:      include/linux/rtc/ds1685.h
5010
5011 DAMA SLAVE for AX.25
5012 M:      Joerg Reuter <jreuter@yaina.de>
5013 L:      linux-hams@vger.kernel.org
5014 S:      Maintained
5015 W:      http://yaina.de/jreuter/
5016 W:      http://www.qsl.net/dl1bke/
5017 F:      net/ax25/af_ax25.c
5018 F:      net/ax25/ax25_dev.c
5019 F:      net/ax25/ax25_ds_*
5020 F:      net/ax25/ax25_in.c
5021 F:      net/ax25/ax25_out.c
5022 F:      net/ax25/ax25_timer.c
5023 F:      net/ax25/sysctl_net_ax25.c
5024
5025 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5026 L:      netdev@vger.kernel.org
5027 S:      Orphan
5028 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5029 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5030
5031 DC390/AM53C974 SCSI driver
5032 M:      Hannes Reinecke <hare@suse.com>
5033 L:      linux-scsi@vger.kernel.org
5034 S:      Maintained
5035 F:      drivers/scsi/am53c974.c
5036
5037 DC395x SCSI driver
5038 M:      Oliver Neukum <oliver@neukum.org>
5039 M:      Ali Akcaagac <aliakc@web.de>
5040 M:      Jamie Lenehan <lenehan@twibble.org>
5041 L:      dc395x@twibble.org
5042 S:      Maintained
5043 W:      http://twibble.org/dist/dc395x/
5044 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5045 F:      Documentation/scsi/dc395x.rst
5046 F:      drivers/scsi/dc395x.*
5047
5048 DCCP PROTOCOL
5049 L:      dccp@vger.kernel.org
5050 S:      Orphan
5051 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5052 F:      include/linux/dccp.h
5053 F:      include/linux/tfrc.h
5054 F:      include/uapi/linux/dccp.h
5055 F:      net/dccp/
5056
5057 DECnet NETWORK LAYER
5058 L:      linux-decnet-user@lists.sourceforge.net
5059 S:      Orphan
5060 W:      http://linux-decnet.sourceforge.net
5061 F:      Documentation/networking/decnet.rst
5062 F:      net/decnet/
5063
5064 DECSTATION PLATFORM SUPPORT
5065 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5066 L:      linux-mips@vger.kernel.org
5067 S:      Maintained
5068 W:      http://www.linux-mips.org/wiki/DECstation
5069 F:      arch/mips/dec/
5070 F:      arch/mips/include/asm/dec/
5071 F:      arch/mips/include/asm/mach-dec/
5072
5073 DEFXX FDDI NETWORK DRIVER
5074 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5075 S:      Maintained
5076 F:      drivers/net/fddi/defxx.*
5077
5078 DEFZA FDDI NETWORK DRIVER
5079 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5080 S:      Maintained
5081 F:      drivers/net/fddi/defza.*
5082
5083 DEINTERLACE DRIVERS FOR ALLWINNER H3
5084 M:      Jernej Skrabec <jernej.skrabec@siol.net>
5085 L:      linux-media@vger.kernel.org
5086 S:      Maintained
5087 T:      git git://linuxtv.org/media_tree.git
5088 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5089 F:      drivers/media/platform/sunxi/sun8i-di/
5090
5091 DELL LAPTOP DRIVER
5092 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5093 M:      Pali Rohár <pali@kernel.org>
5094 L:      platform-driver-x86@vger.kernel.org
5095 S:      Maintained
5096 F:      drivers/platform/x86/dell/dell-laptop.c
5097
5098 DELL LAPTOP FREEFALL DRIVER
5099 M:      Pali Rohár <pali@kernel.org>
5100 S:      Maintained
5101 F:      drivers/platform/x86/dell/dell-smo8800.c
5102
5103 DELL LAPTOP RBTN DRIVER
5104 M:      Pali Rohár <pali@kernel.org>
5105 S:      Maintained
5106 F:      drivers/platform/x86/dell/dell-rbtn.*
5107
5108 DELL LAPTOP SMM DRIVER
5109 M:      Pali Rohár <pali@kernel.org>
5110 S:      Maintained
5111 F:      drivers/hwmon/dell-smm-hwmon.c
5112 F:      include/uapi/linux/i8k.h
5113
5114 DELL REMOTE BIOS UPDATE DRIVER
5115 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5116 L:      platform-driver-x86@vger.kernel.org
5117 S:      Maintained
5118 F:      drivers/platform/x86/dell/dell_rbu.c
5119
5120 DELL SMBIOS DRIVER
5121 M:      Pali Rohár <pali@kernel.org>
5122 L:      Dell.Client.Kernel@dell.com
5123 L:      platform-driver-x86@vger.kernel.org
5124 S:      Maintained
5125 F:      drivers/platform/x86/dell/dell-smbios.*
5126
5127 DELL SMBIOS SMM DRIVER
5128 L:      Dell.Client.Kernel@dell.com
5129 L:      platform-driver-x86@vger.kernel.org
5130 S:      Maintained
5131 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5132
5133 DELL SMBIOS WMI DRIVER
5134 L:      Dell.Client.Kernel@dell.com
5135 L:      platform-driver-x86@vger.kernel.org
5136 S:      Maintained
5137 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5138 F:      tools/wmi/dell-smbios-example.c
5139
5140 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5141 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5142 L:      platform-driver-x86@vger.kernel.org
5143 S:      Maintained
5144 F:      Documentation/driver-api/dcdbas.rst
5145 F:      drivers/platform/x86/dell/dcdbas.*
5146
5147 DELL WMI DESCRIPTOR DRIVER
5148 L:      Dell.Client.Kernel@dell.com
5149 S:      Maintained
5150 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5151
5152 DELL WMI SYSMAN DRIVER
5153 M:      Divya Bharathi <divya.bharathi@dell.com>
5154 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5155 L:      Dell.Client.Kernel@dell.com
5156 L:      platform-driver-x86@vger.kernel.org
5157 S:      Maintained
5158 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5159 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5160
5161 DELL WMI NOTIFICATIONS DRIVER
5162 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5163 M:      Pali Rohár <pali@kernel.org>
5164 S:      Maintained
5165 F:      drivers/platform/x86/dell/dell-wmi.c
5166
5167 DELTA ST MEDIA DRIVER
5168 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5169 L:      linux-media@vger.kernel.org
5170 S:      Supported
5171 W:      https://linuxtv.org
5172 T:      git git://linuxtv.org/media_tree.git
5173 F:      drivers/media/platform/sti/delta
5174
5175 DENALI NAND DRIVER
5176 L:      linux-mtd@lists.infradead.org
5177 S:      Orphan
5178 F:      drivers/mtd/nand/raw/denali*
5179
5180 DESIGNWARE EDMA CORE IP DRIVER
5181 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5182 L:      dmaengine@vger.kernel.org
5183 S:      Maintained
5184 F:      drivers/dma/dw-edma/
5185 F:      include/linux/dma/edma.h
5186
5187 DESIGNWARE XDATA IP DRIVER
5188 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5189 L:      linux-pci@vger.kernel.org
5190 S:      Maintained
5191 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5192 F:      drivers/misc/dw-xdata-pcie.c
5193
5194 DESIGNWARE USB2 DRD IP DRIVER
5195 M:      Minas Harutyunyan <hminas@synopsys.com>
5196 L:      linux-usb@vger.kernel.org
5197 S:      Maintained
5198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5199 F:      drivers/usb/dwc2/
5200
5201 DESIGNWARE USB3 DRD IP DRIVER
5202 M:      Felipe Balbi <balbi@kernel.org>
5203 L:      linux-usb@vger.kernel.org
5204 S:      Maintained
5205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5206 F:      drivers/usb/dwc3/
5207
5208 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5209 M:      Andreas Klinger <ak@it-klinger.de>
5210 L:      linux-iio@vger.kernel.org
5211 S:      Maintained
5212 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5213 F:      drivers/iio/proximity/srf*.c
5214
5215 DEVICE COREDUMP (DEV_COREDUMP)
5216 M:      Johannes Berg <johannes@sipsolutions.net>
5217 L:      linux-kernel@vger.kernel.org
5218 S:      Maintained
5219 F:      drivers/base/devcoredump.c
5220 F:      include/linux/devcoredump.h
5221
5222 DEVICE DEPENDENCY HELPER SCRIPT
5223 M:      Saravana Kannan <saravanak@google.com>
5224 L:      linux-kernel@vger.kernel.org
5225 S:      Maintained
5226 F:      scripts/dev-needs.sh
5227
5228 DEVICE DIRECT ACCESS (DAX)
5229 M:      Dan Williams <dan.j.williams@intel.com>
5230 M:      Vishal Verma <vishal.l.verma@intel.com>
5231 M:      Dave Jiang <dave.jiang@intel.com>
5232 L:      linux-nvdimm@lists.01.org
5233 S:      Supported
5234 F:      drivers/dax/
5235
5236 DEVICE FREQUENCY (DEVFREQ)
5237 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5238 M:      Kyungmin Park <kyungmin.park@samsung.com>
5239 M:      Chanwoo Choi <cw00.choi@samsung.com>
5240 L:      linux-pm@vger.kernel.org
5241 S:      Maintained
5242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5243 F:      Documentation/devicetree/bindings/devfreq/
5244 F:      drivers/devfreq/
5245 F:      include/linux/devfreq.h
5246 F:      include/trace/events/devfreq.h
5247
5248 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5249 M:      Chanwoo Choi <cw00.choi@samsung.com>
5250 L:      linux-pm@vger.kernel.org
5251 S:      Supported
5252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5253 F:      Documentation/devicetree/bindings/devfreq/event/
5254 F:      drivers/devfreq/devfreq-event.c
5255 F:      drivers/devfreq/event/
5256 F:      include/dt-bindings/pmu/exynos_ppmu.h
5257 F:      include/linux/devfreq-event.h
5258
5259 DEVICE NUMBER REGISTRY
5260 M:      Torben Mathiasen <device@lanana.org>
5261 S:      Maintained
5262 W:      http://lanana.org/docs/device-list/index.html
5263
5264 DEVICE RESOURCE MANAGEMENT HELPERS
5265 M:      Hans de Goede <hdegoede@redhat.com>
5266 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5267 S:      Maintained
5268 F:      include/linux/devm-helpers.h
5269
5270 DEVICE-MAPPER  (LVM)
5271 M:      Alasdair Kergon <agk@redhat.com>
5272 M:      Mike Snitzer <snitzer@redhat.com>
5273 M:      dm-devel@redhat.com
5274 L:      dm-devel@redhat.com
5275 S:      Maintained
5276 W:      http://sources.redhat.com/dm
5277 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5279 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5280 F:      Documentation/admin-guide/device-mapper/
5281 F:      drivers/md/Kconfig
5282 F:      drivers/md/Makefile
5283 F:      drivers/md/dm*
5284 F:      drivers/md/persistent-data/
5285 F:      include/linux/device-mapper.h
5286 F:      include/linux/dm-*.h
5287 F:      include/uapi/linux/dm-*.h
5288
5289 DEVLINK
5290 M:      Jiri Pirko <jiri@nvidia.com>
5291 L:      netdev@vger.kernel.org
5292 S:      Supported
5293 F:      Documentation/networking/devlink
5294 F:      include/net/devlink.h
5295 F:      include/uapi/linux/devlink.h
5296 F:      net/core/devlink.c
5297
5298 DIALOG SEMICONDUCTOR DRIVERS
5299 M:      Support Opensource <support.opensource@diasemi.com>
5300 S:      Supported
5301 W:      http://www.dialog-semiconductor.com/products
5302 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5303 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5304 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5305 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5306 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5307 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5308 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5309 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5310 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5311 F:      Documentation/hwmon/da90??.rst
5312 F:      drivers/gpio/gpio-da90??.c
5313 F:      drivers/hwmon/da90??-hwmon.c
5314 F:      drivers/iio/adc/da91??-*.c
5315 F:      drivers/input/misc/da72??.[ch]
5316 F:      drivers/input/misc/da90??_onkey.c
5317 F:      drivers/input/touchscreen/da9052_tsi.c
5318 F:      drivers/leds/leds-da90??.c
5319 F:      drivers/mfd/da903x.c
5320 F:      drivers/mfd/da90??-*.c
5321 F:      drivers/mfd/da91??-*.c
5322 F:      drivers/pinctrl/pinctrl-da90??.c
5323 F:      drivers/power/supply/da9052-battery.c
5324 F:      drivers/power/supply/da91??-*.c
5325 F:      drivers/regulator/da9???-regulator.[ch]
5326 F:      drivers/regulator/slg51000-regulator.[ch]
5327 F:      drivers/rtc/rtc-da90??.c
5328 F:      drivers/thermal/da90??-thermal.c
5329 F:      drivers/video/backlight/da90??_bl.c
5330 F:      drivers/watchdog/da90??_wdt.c
5331 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5332 F:      include/linux/mfd/da903x.h
5333 F:      include/linux/mfd/da9052/
5334 F:      include/linux/mfd/da9055/
5335 F:      include/linux/mfd/da9062/
5336 F:      include/linux/mfd/da9063/
5337 F:      include/linux/mfd/da9150/
5338 F:      include/linux/regulator/da9211.h
5339 F:      include/sound/da[79]*.h
5340 F:      sound/soc/codecs/da[79]*.[ch]
5341
5342 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5343 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5344 L:      linux-gpio@vger.kernel.org
5345 S:      Maintained
5346 F:      drivers/gpio/gpio-gpio-mm.c
5347
5348 DIOLAN U2C-12 I2C DRIVER
5349 M:      Guenter Roeck <linux@roeck-us.net>
5350 L:      linux-i2c@vger.kernel.org
5351 S:      Maintained
5352 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5353
5354 DIRECTORY NOTIFICATION (DNOTIFY)
5355 M:      Jan Kara <jack@suse.cz>
5356 R:      Amir Goldstein <amir73il@gmail.com>
5357 L:      linux-fsdevel@vger.kernel.org
5358 S:      Maintained
5359 F:      Documentation/filesystems/dnotify.rst
5360 F:      fs/notify/dnotify/
5361 F:      include/linux/dnotify.h
5362
5363 DISK GEOMETRY AND PARTITION HANDLING
5364 M:      Andries Brouwer <aeb@cwi.nl>
5365 S:      Maintained
5366 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5367 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5368 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5369
5370 DISKQUOTA
5371 M:      Jan Kara <jack@suse.com>
5372 S:      Maintained
5373 F:      Documentation/filesystems/quota.rst
5374 F:      fs/quota/
5375 F:      include/linux/quota*.h
5376 F:      include/uapi/linux/quota*.h
5377
5378 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5379 M:      Bernie Thompson <bernie@plugable.com>
5380 L:      linux-fbdev@vger.kernel.org
5381 S:      Maintained
5382 W:      http://plugable.com/category/projects/udlfb/
5383 F:      Documentation/fb/udlfb.rst
5384 F:      drivers/video/fbdev/udlfb.c
5385 F:      include/video/udlfb.h
5386
5387 DISTRIBUTED LOCK MANAGER (DLM)
5388 M:      Christine Caulfield <ccaulfie@redhat.com>
5389 M:      David Teigland <teigland@redhat.com>
5390 L:      cluster-devel@redhat.com
5391 S:      Supported
5392 W:      http://sources.redhat.com/cluster/
5393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5394 F:      fs/dlm/
5395
5396 DMA BUFFER SHARING FRAMEWORK
5397 M:      Sumit Semwal <sumit.semwal@linaro.org>
5398 M:      Christian König <christian.koenig@amd.com>
5399 L:      linux-media@vger.kernel.org
5400 L:      dri-devel@lists.freedesktop.org
5401 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5402 S:      Maintained
5403 T:      git git://anongit.freedesktop.org/drm/drm-misc
5404 F:      Documentation/driver-api/dma-buf.rst
5405 F:      drivers/dma-buf/
5406 F:      include/linux/*fence.h
5407 F:      include/linux/dma-buf*
5408 F:      include/linux/dma-resv.h
5409 K:      \bdma_(?:buf|fence|resv)\b
5410
5411 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5412 M:      Vinod Koul <vkoul@kernel.org>
5413 L:      dmaengine@vger.kernel.org
5414 S:      Maintained
5415 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5417 F:      Documentation/devicetree/bindings/dma/
5418 F:      Documentation/driver-api/dmaengine/
5419 F:      drivers/dma/
5420 F:      include/linux/dma/
5421 F:      include/linux/dmaengine.h
5422 F:      include/linux/of_dma.h
5423
5424 DMA MAPPING HELPERS
5425 M:      Christoph Hellwig <hch@lst.de>
5426 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5427 R:      Robin Murphy <robin.murphy@arm.com>
5428 L:      iommu@lists.linux-foundation.org
5429 S:      Supported
5430 W:      http://git.infradead.org/users/hch/dma-mapping.git
5431 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5432 F:      include/asm-generic/dma-mapping.h
5433 F:      include/linux/dma-direct.h
5434 F:      include/linux/dma-mapping.h
5435 F:      include/linux/dma-map-ops.h
5436 F:      kernel/dma/
5437
5438 DMA MAPPING BENCHMARK
5439 M:      Barry Song <song.bao.hua@hisilicon.com>
5440 L:      iommu@lists.linux-foundation.org
5441 F:      kernel/dma/map_benchmark.c
5442 F:      tools/testing/selftests/dma/
5443
5444 DMA-BUF HEAPS FRAMEWORK
5445 M:      Sumit Semwal <sumit.semwal@linaro.org>
5446 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5447 R:      Liam Mark <lmark@codeaurora.org>
5448 R:      Laura Abbott <labbott@redhat.com>
5449 R:      Brian Starkey <Brian.Starkey@arm.com>
5450 R:      John Stultz <john.stultz@linaro.org>
5451 L:      linux-media@vger.kernel.org
5452 L:      dri-devel@lists.freedesktop.org
5453 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5454 S:      Maintained
5455 T:      git git://anongit.freedesktop.org/drm/drm-misc
5456 F:      drivers/dma-buf/dma-heap.c
5457 F:      drivers/dma-buf/heaps/*
5458 F:      include/linux/dma-heap.h
5459 F:      include/uapi/linux/dma-heap.h
5460
5461 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5462 M:      Lukasz Luba <lukasz.luba@arm.com>
5463 L:      linux-pm@vger.kernel.org
5464 L:      linux-samsung-soc@vger.kernel.org
5465 S:      Maintained
5466 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5467 F:      drivers/memory/samsung/exynos5422-dmc.c
5468
5469 DME1737 HARDWARE MONITOR DRIVER
5470 M:      Juerg Haefliger <juergh@gmail.com>
5471 L:      linux-hwmon@vger.kernel.org
5472 S:      Maintained
5473 F:      Documentation/hwmon/dme1737.rst
5474 F:      drivers/hwmon/dme1737.c
5475
5476 DMI/SMBIOS SUPPORT
5477 M:      Jean Delvare <jdelvare@suse.com>
5478 S:      Maintained
5479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5480 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5481 F:      drivers/firmware/dmi-id.c
5482 F:      drivers/firmware/dmi_scan.c
5483 F:      include/linux/dmi.h
5484
5485 DOCUMENTATION
5486 M:      Jonathan Corbet <corbet@lwn.net>
5487 L:      linux-doc@vger.kernel.org
5488 S:      Maintained
5489 P:      Documentation/doc-guide/maintainer-profile.rst
5490 T:      git git://git.lwn.net/linux.git docs-next
5491 F:      Documentation/
5492 F:      scripts/documentation-file-ref-check
5493 F:      scripts/kernel-doc
5494 F:      scripts/sphinx-pre-install
5495 X:      Documentation/ABI/
5496 X:      Documentation/admin-guide/media/
5497 X:      Documentation/devicetree/
5498 X:      Documentation/driver-api/media/
5499 X:      Documentation/firmware-guide/acpi/
5500 X:      Documentation/i2c/
5501 X:      Documentation/power/
5502 X:      Documentation/spi/
5503 X:      Documentation/userspace-api/media/
5504
5505 DOCUMENTATION REPORTING ISSUES
5506 M:      Thorsten Leemhuis <linux@leemhuis.info>
5507 L:      linux-doc@vger.kernel.org
5508 S:      Maintained
5509 F:      Documentation/admin-guide/reporting-issues.rst
5510
5511 DOCUMENTATION SCRIPTS
5512 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5513 L:      linux-doc@vger.kernel.org
5514 S:      Maintained
5515 F:      Documentation/sphinx/parse-headers.pl
5516 F:      scripts/documentation-file-ref-check
5517 F:      scripts/sphinx-pre-install
5518
5519 DOCUMENTATION/ITALIAN
5520 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5521 L:      linux-doc@vger.kernel.org
5522 S:      Maintained
5523 F:      Documentation/translations/it_IT
5524
5525 DONGWOON DW9714 LENS VOICE COIL DRIVER
5526 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5527 L:      linux-media@vger.kernel.org
5528 S:      Maintained
5529 T:      git git://linuxtv.org/media_tree.git
5530 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5531 F:      drivers/media/i2c/dw9714.c
5532
5533 DONGWOON DW9768 LENS VOICE COIL DRIVER
5534 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5535 L:      linux-media@vger.kernel.org
5536 S:      Maintained
5537 T:      git git://linuxtv.org/media_tree.git
5538 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5539 F:      drivers/media/i2c/dw9768.c
5540
5541 DONGWOON DW9807 LENS VOICE COIL DRIVER
5542 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5543 L:      linux-media@vger.kernel.org
5544 S:      Maintained
5545 T:      git git://linuxtv.org/media_tree.git
5546 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5547 F:      drivers/media/i2c/dw9807-vcm.c
5548
5549 DOUBLETALK DRIVER
5550 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5551 L:      blinux-list@redhat.com
5552 S:      Maintained
5553 F:      drivers/char/dtlk.c
5554 F:      include/linux/dtlk.h
5555
5556 DPAA2 DATAPATH I/O (DPIO) DRIVER
5557 M:      Roy Pledge <Roy.Pledge@nxp.com>
5558 L:      linux-kernel@vger.kernel.org
5559 S:      Maintained
5560 F:      drivers/soc/fsl/dpio
5561
5562 DPAA2 ETHERNET DRIVER
5563 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5564 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5565 L:      netdev@vger.kernel.org
5566 S:      Maintained
5567 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5568 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5569 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5570 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5571 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5572 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5573 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5574 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5575 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5576
5577 DPAA2 ETHERNET SWITCH DRIVER
5578 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5579 L:      netdev@vger.kernel.org
5580 S:      Maintained
5581 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5582 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
5583
5584 DPT_I2O SCSI RAID DRIVER
5585 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5586 L:      linux-scsi@vger.kernel.org
5587 S:      Maintained
5588 W:      http://www.adaptec.com/
5589 F:      drivers/scsi/dpt*
5590 F:      drivers/scsi/dpt/
5591
5592 DRBD DRIVER
5593 M:      Philipp Reisner <philipp.reisner@linbit.com>
5594 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5595 L:      drbd-dev@lists.linbit.com
5596 S:      Supported
5597 W:      http://www.drbd.org
5598 T:      git git://git.linbit.com/linux-drbd.git
5599 T:      git git://git.linbit.com/drbd-8.4.git
5600 F:      Documentation/admin-guide/blockdev/
5601 F:      drivers/block/drbd/
5602 F:      lib/lru_cache.c
5603
5604 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5605 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5606 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5607 S:      Supported
5608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5609 F:      Documentation/core-api/kobject.rst
5610 F:      drivers/base/
5611 F:      fs/debugfs/
5612 F:      fs/sysfs/
5613 F:      include/linux/debugfs.h
5614 F:      include/linux/kobj*
5615 F:      lib/kobj*
5616
5617 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5618 M:      Nishanth Menon <nm@ti.com>
5619 L:      linux-pm@vger.kernel.org
5620 S:      Maintained
5621 F:      drivers/soc/ti/smartreflex.c
5622 F:      include/linux/power/smartreflex.h
5623
5624 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5625 M:      Maxime Ripard <mripard@kernel.org>
5626 M:      Chen-Yu Tsai <wens@csie.org>
5627 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5628 L:      dri-devel@lists.freedesktop.org
5629 S:      Supported
5630 T:      git git://anongit.freedesktop.org/drm/drm-misc
5631 F:      drivers/gpu/drm/sun4i/sun8i*
5632
5633 DRM DRIVER FOR ARM PL111 CLCD
5634 M:      Eric Anholt <eric@anholt.net>
5635 S:      Supported
5636 T:      git git://anongit.freedesktop.org/drm/drm-misc
5637 F:      drivers/gpu/drm/pl111/
5638
5639 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5640 M:      Linus Walleij <linus.walleij@linaro.org>
5641 S:      Maintained
5642 T:      git git://anongit.freedesktop.org/drm/drm-misc
5643 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5644 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5645
5646 DRM DRIVER FOR ASPEED BMC GFX
5647 M:      Joel Stanley <joel@jms.id.au>
5648 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5649 S:      Supported
5650 T:      git git://anongit.freedesktop.org/drm/drm-misc
5651 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5652 F:      drivers/gpu/drm/aspeed/
5653
5654 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5655 M:      Dave Airlie <airlied@redhat.com>
5656 R:      Thomas Zimmermann <tzimmermann@suse.de>
5657 L:      dri-devel@lists.freedesktop.org
5658 S:      Supported
5659 T:      git git://anongit.freedesktop.org/drm/drm-misc
5660 F:      drivers/gpu/drm/ast/
5661
5662 DRM DRIVER FOR BOCHS VIRTUAL GPU
5663 M:      Gerd Hoffmann <kraxel@redhat.com>
5664 L:      virtualization@lists.linux-foundation.org
5665 S:      Maintained
5666 T:      git git://anongit.freedesktop.org/drm/drm-misc
5667 F:      drivers/gpu/drm/bochs/
5668
5669 DRM DRIVER FOR BOE HIMAX8279D PANELS
5670 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5671 S:      Maintained
5672 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5673 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5674
5675 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
5676 M:      Jagan Teki <jagan@amarulasolutions.com>
5677 S:      Maintained
5678 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
5679 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
5680
5681 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5682 M:      Linus Walleij <linus.walleij@linaro.org>
5683 S:      Maintained
5684 T:      git git://anongit.freedesktop.org/drm/drm-misc
5685 F:      drivers/gpu/drm/tve200/
5686
5687 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5688 M:      Icenowy Zheng <icenowy@aosc.io>
5689 S:      Maintained
5690 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5691 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5692
5693 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5694 M:      Jagan Teki <jagan@amarulasolutions.com>
5695 S:      Maintained
5696 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5697 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5698
5699 DRM DRIVER FOR GENERIC USB DISPLAY
5700 M:      Noralf Trønnes <noralf@tronnes.org>
5701 S:      Maintained
5702 W:      https://github.com/notro/gud/wiki
5703 T:      git git://anongit.freedesktop.org/drm/drm-misc
5704 F:      drivers/gpu/drm/gud/
5705 F:      include/drm/gud.h
5706
5707 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5708 M:      Hans de Goede <hdegoede@redhat.com>
5709 S:      Maintained
5710 T:      git git://anongit.freedesktop.org/drm/drm-misc
5711 F:      drivers/gpu/drm/tiny/gm12u320.c
5712
5713 DRM DRIVER FOR HX8357D PANELS
5714 M:      Eric Anholt <eric@anholt.net>
5715 S:      Maintained
5716 T:      git git://anongit.freedesktop.org/drm/drm-misc
5717 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5718 F:      drivers/gpu/drm/tiny/hx8357d.c
5719
5720 DRM DRIVER FOR ILITEK ILI9225 PANELS
5721 M:      David Lechner <david@lechnology.com>
5722 S:      Maintained
5723 T:      git git://anongit.freedesktop.org/drm/drm-misc
5724 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5725 F:      drivers/gpu/drm/tiny/ili9225.c
5726
5727 DRM DRIVER FOR ILITEK ILI9486 PANELS
5728 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5729 S:      Maintained
5730 T:      git git://anongit.freedesktop.org/drm/drm-misc
5731 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5732 F:      drivers/gpu/drm/tiny/ili9486.c
5733
5734 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5735 S:      Orphan / Obsolete
5736 F:      drivers/gpu/drm/i810/
5737 F:      include/uapi/drm/i810_drm.h
5738
5739 DRM DRIVER FOR LVDS PANELS
5740 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5741 L:      dri-devel@lists.freedesktop.org
5742 T:      git git://anongit.freedesktop.org/drm/drm-misc
5743 S:      Maintained
5744 F:      drivers/gpu/drm/panel/panel-lvds.c
5745 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5746
5747 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5748 M:      Guido Günther <agx@sigxcpu.org>
5749 R:      Purism Kernel Team <kernel@puri.sm>
5750 S:      Maintained
5751 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5752 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5753
5754 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5755 S:      Orphan / Obsolete
5756 F:      drivers/gpu/drm/mga/
5757 F:      include/uapi/drm/mga_drm.h
5758
5759 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5760 M:      Dave Airlie <airlied@redhat.com>
5761 R:      Thomas Zimmermann <tzimmermann@suse.de>
5762 L:      dri-devel@lists.freedesktop.org
5763 S:      Supported
5764 T:      git git://anongit.freedesktop.org/drm/drm-misc
5765 F:      drivers/gpu/drm/mgag200/
5766
5767 DRM DRIVER FOR MI0283QT
5768 M:      Noralf Trønnes <noralf@tronnes.org>
5769 S:      Maintained
5770 T:      git git://anongit.freedesktop.org/drm/drm-misc
5771 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5772 F:      drivers/gpu/drm/tiny/mi0283qt.c
5773
5774 DRM DRIVER FOR MSM ADRENO GPU
5775 M:      Rob Clark <robdclark@gmail.com>
5776 M:      Sean Paul <sean@poorly.run>
5777 L:      linux-arm-msm@vger.kernel.org
5778 L:      dri-devel@lists.freedesktop.org
5779 L:      freedreno@lists.freedesktop.org
5780 S:      Maintained
5781 T:      git https://gitlab.freedesktop.org/drm/msm.git
5782 F:      Documentation/devicetree/bindings/display/msm/
5783 F:      drivers/gpu/drm/msm/
5784 F:      include/uapi/drm/msm_drm.h
5785
5786 DRM DRIVER FOR NOVATEK NT35510 PANELS
5787 M:      Linus Walleij <linus.walleij@linaro.org>
5788 S:      Maintained
5789 T:      git git://anongit.freedesktop.org/drm/drm-misc
5790 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5791 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5792
5793 DRM DRIVER FOR NOVATEK NT36672A PANELS
5794 M:      Sumit Semwal <sumit.semwal@linaro.org>
5795 S:      Maintained
5796 T:      git git://anongit.freedesktop.org/drm/drm-misc
5797 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
5798 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
5799
5800 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5801 M:      Ben Skeggs <bskeggs@redhat.com>
5802 L:      dri-devel@lists.freedesktop.org
5803 L:      nouveau@lists.freedesktop.org
5804 S:      Supported
5805 T:      git git://github.com/skeggsb/linux
5806 F:      drivers/gpu/drm/nouveau/
5807 F:      include/uapi/drm/nouveau_drm.h
5808
5809 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5810 M:      Stefan Mavrodiev <stefan@olimex.com>
5811 S:      Maintained
5812 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5813 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5814
5815 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5816 M:      Noralf Trønnes <noralf@tronnes.org>
5817 S:      Maintained
5818 T:      git git://anongit.freedesktop.org/drm/drm-misc
5819 F:      Documentation/devicetree/bindings/display/repaper.txt
5820 F:      drivers/gpu/drm/tiny/repaper.c
5821
5822 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5823 M:      Dave Airlie <airlied@redhat.com>
5824 M:      Gerd Hoffmann <kraxel@redhat.com>
5825 L:      virtualization@lists.linux-foundation.org
5826 S:      Obsolete
5827 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5828 T:      git git://anongit.freedesktop.org/drm/drm-misc
5829 F:      drivers/gpu/drm/tiny/cirrus.c
5830
5831 DRM DRIVER FOR QXL VIRTUAL GPU
5832 M:      Dave Airlie <airlied@redhat.com>
5833 M:      Gerd Hoffmann <kraxel@redhat.com>
5834 L:      virtualization@lists.linux-foundation.org
5835 L:      spice-devel@lists.freedesktop.org
5836 S:      Maintained
5837 T:      git git://anongit.freedesktop.org/drm/drm-misc
5838 F:      drivers/gpu/drm/qxl/
5839 F:      include/uapi/drm/qxl_drm.h
5840
5841 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5842 S:      Orphan / Obsolete
5843 F:      drivers/gpu/drm/r128/
5844 F:      include/uapi/drm/r128_drm.h
5845
5846 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5847 M:      Robert Chiras <robert.chiras@nxp.com>
5848 S:      Maintained
5849 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
5850 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5851
5852 DRM DRIVER FOR SITRONIX ST7703 PANELS
5853 M:      Guido Günther <agx@sigxcpu.org>
5854 R:      Purism Kernel Team <kernel@puri.sm>
5855 R:      Ondrej Jirman <megous@megous.com>
5856 S:      Maintained
5857 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
5858 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
5859
5860 DRM DRIVER FOR SAVAGE VIDEO CARDS
5861 S:      Orphan / Obsolete
5862 F:      drivers/gpu/drm/savage/
5863 F:      include/uapi/drm/savage_drm.h
5864
5865 DRM DRIVER FOR SIS VIDEO CARDS
5866 S:      Orphan / Obsolete
5867 F:      drivers/gpu/drm/sis/
5868 F:      include/uapi/drm/sis_drm.h
5869
5870 DRM DRIVER FOR SITRONIX ST7586 PANELS
5871 M:      David Lechner <david@lechnology.com>
5872 S:      Maintained
5873 T:      git git://anongit.freedesktop.org/drm/drm-misc
5874 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5875 F:      drivers/gpu/drm/tiny/st7586.c
5876
5877 DRM DRIVER FOR SITRONIX ST7701 PANELS
5878 M:      Jagan Teki <jagan@amarulasolutions.com>
5879 S:      Maintained
5880 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5881 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5882
5883 DRM DRIVER FOR SITRONIX ST7735R PANELS
5884 M:      David Lechner <david@lechnology.com>
5885 S:      Maintained
5886 T:      git git://anongit.freedesktop.org/drm/drm-misc
5887 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5888 F:      drivers/gpu/drm/tiny/st7735r.c
5889
5890 DRM DRIVER FOR SONY ACX424AKP PANELS
5891 M:      Linus Walleij <linus.walleij@linaro.org>
5892 S:      Maintained
5893 T:      git git://anongit.freedesktop.org/drm/drm-misc
5894 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5895
5896 DRM DRIVER FOR ST-ERICSSON MCDE
5897 M:      Linus Walleij <linus.walleij@linaro.org>
5898 S:      Maintained
5899 T:      git git://anongit.freedesktop.org/drm/drm-misc
5900 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
5901 F:      drivers/gpu/drm/mcde/
5902
5903 DRM DRIVER FOR TDFX VIDEO CARDS
5904 S:      Orphan / Obsolete
5905 F:      drivers/gpu/drm/tdfx/
5906
5907 DRM DRIVER FOR TPO TPG110 PANELS
5908 M:      Linus Walleij <linus.walleij@linaro.org>
5909 S:      Maintained
5910 T:      git git://anongit.freedesktop.org/drm/drm-misc
5911 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5912 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5913
5914 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5915 M:      Dave Airlie <airlied@redhat.com>
5916 R:      Sean Paul <sean@poorly.run>
5917 R:      Thomas Zimmermann <tzimmermann@suse.de>
5918 L:      dri-devel@lists.freedesktop.org
5919 S:      Supported
5920 T:      git git://anongit.freedesktop.org/drm/drm-misc
5921 F:      drivers/gpu/drm/udl/
5922
5923 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5924 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5925 M:      Melissa Wen <melissa.srw@gmail.com>
5926 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5927 R:      Daniel Vetter <daniel@ffwll.ch>
5928 L:      dri-devel@lists.freedesktop.org
5929 S:      Maintained
5930 T:      git git://anongit.freedesktop.org/drm/drm-misc
5931 F:      Documentation/gpu/vkms.rst
5932 F:      drivers/gpu/drm/vkms/
5933
5934 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5935 M:      Hans de Goede <hdegoede@redhat.com>
5936 L:      dri-devel@lists.freedesktop.org
5937 S:      Maintained
5938 T:      git git://anongit.freedesktop.org/drm/drm-misc
5939 F:      drivers/gpu/drm/vboxvideo/
5940
5941 DRM DRIVER FOR VMWARE VIRTUAL GPU
5942 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5943 M:      Roland Scheidegger <sroland@vmware.com>
5944 M:      Zack Rusin <zackr@vmware.com>
5945 L:      dri-devel@lists.freedesktop.org
5946 S:      Supported
5947 T:      git git://people.freedesktop.org/~sroland/linux
5948 F:      drivers/gpu/drm/vmwgfx/
5949 F:      include/uapi/drm/vmwgfx_drm.h
5950
5951 DRM DRIVERS
5952 M:      David Airlie <airlied@linux.ie>
5953 M:      Daniel Vetter <daniel@ffwll.ch>
5954 L:      dri-devel@lists.freedesktop.org
5955 S:      Maintained
5956 B:      https://gitlab.freedesktop.org/drm
5957 C:      irc://chat.freenode.net/dri-devel
5958 T:      git git://anongit.freedesktop.org/drm/drm
5959 F:      Documentation/devicetree/bindings/display/
5960 F:      Documentation/devicetree/bindings/gpu/
5961 F:      Documentation/gpu/
5962 F:      drivers/gpu/drm/
5963 F:      drivers/gpu/vga/
5964 F:      include/drm/
5965 F:      include/linux/vga*
5966 F:      include/uapi/drm/
5967
5968 DRM DRIVERS AND MISC GPU PATCHES
5969 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5970 M:      Maxime Ripard <mripard@kernel.org>
5971 M:      Thomas Zimmermann <tzimmermann@suse.de>
5972 S:      Maintained
5973 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5974 T:      git git://anongit.freedesktop.org/drm/drm-misc
5975 F:      Documentation/gpu/
5976 F:      drivers/gpu/drm/*
5977 F:      drivers/gpu/vga/
5978 F:      include/drm/drm*
5979 F:      include/linux/vga*
5980 F:      include/uapi/drm/drm*
5981
5982 DRM DRIVERS FOR ALLWINNER A10
5983 M:      Maxime Ripard <mripard@kernel.org>
5984 M:      Chen-Yu Tsai <wens@csie.org>
5985 L:      dri-devel@lists.freedesktop.org
5986 S:      Supported
5987 T:      git git://anongit.freedesktop.org/drm/drm-misc
5988 F:      Documentation/devicetree/bindings/display/allwinner*
5989 F:      drivers/gpu/drm/sun4i/
5990
5991 DRM DRIVERS FOR AMLOGIC SOCS
5992 M:      Neil Armstrong <narmstrong@baylibre.com>
5993 L:      dri-devel@lists.freedesktop.org
5994 L:      linux-amlogic@lists.infradead.org
5995 S:      Supported
5996 W:      http://linux-meson.com/
5997 T:      git git://anongit.freedesktop.org/drm/drm-misc
5998 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5999 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6000 F:      Documentation/gpu/meson.rst
6001 F:      drivers/gpu/drm/meson/
6002
6003 DRM DRIVERS FOR ATMEL HLCDC
6004 M:      Sam Ravnborg <sam@ravnborg.org>
6005 M:      Boris Brezillon <bbrezillon@kernel.org>
6006 L:      dri-devel@lists.freedesktop.org
6007 S:      Supported
6008 T:      git git://anongit.freedesktop.org/drm/drm-misc
6009 F:      Documentation/devicetree/bindings/display/atmel/
6010 F:      drivers/gpu/drm/atmel-hlcdc/
6011
6012 DRM DRIVERS FOR BRIDGE CHIPS
6013 M:      Andrzej Hajda <a.hajda@samsung.com>
6014 M:      Neil Armstrong <narmstrong@baylibre.com>
6015 M:      Robert Foss <robert.foss@linaro.org>
6016 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6017 R:      Jonas Karlman <jonas@kwiboo.se>
6018 R:      Jernej Skrabec <jernej.skrabec@siol.net>
6019 S:      Maintained
6020 T:      git git://anongit.freedesktop.org/drm/drm-misc
6021 F:      drivers/gpu/drm/bridge/
6022
6023 DRM DRIVERS FOR EXYNOS
6024 M:      Inki Dae <inki.dae@samsung.com>
6025 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6026 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6027 M:      Kyungmin Park <kyungmin.park@samsung.com>
6028 L:      dri-devel@lists.freedesktop.org
6029 S:      Supported
6030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6031 F:      Documentation/devicetree/bindings/display/exynos/
6032 F:      drivers/gpu/drm/exynos/
6033 F:      include/uapi/drm/exynos_drm.h
6034
6035 DRM DRIVERS FOR FREESCALE DCU
6036 M:      Stefan Agner <stefan@agner.ch>
6037 M:      Alison Wang <alison.wang@nxp.com>
6038 L:      dri-devel@lists.freedesktop.org
6039 S:      Supported
6040 T:      git git://anongit.freedesktop.org/drm/drm-misc
6041 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6042 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6043 F:      drivers/gpu/drm/fsl-dcu/
6044
6045 DRM DRIVERS FOR FREESCALE IMX
6046 M:      Philipp Zabel <p.zabel@pengutronix.de>
6047 L:      dri-devel@lists.freedesktop.org
6048 S:      Maintained
6049 F:      Documentation/devicetree/bindings/display/imx/
6050 F:      drivers/gpu/drm/imx/
6051 F:      drivers/gpu/ipu-v3/
6052
6053 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6054 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6055 L:      dri-devel@lists.freedesktop.org
6056 S:      Maintained
6057 T:      git git://github.com/patjak/drm-gma500
6058 F:      drivers/gpu/drm/gma500/
6059
6060 DRM DRIVERS FOR HISILICON
6061 M:      Xinliang Liu <xinliang.liu@linaro.org>
6062 M:      Tian Tao  <tiantao6@hisilicon.com>
6063 R:      John Stultz <john.stultz@linaro.org>
6064 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6065 R:      Chen Feng <puck.chen@hisilicon.com>
6066 L:      dri-devel@lists.freedesktop.org
6067 S:      Maintained
6068 T:      git git://anongit.freedesktop.org/drm/drm-misc
6069 F:      Documentation/devicetree/bindings/display/hisilicon/
6070 F:      drivers/gpu/drm/hisilicon/
6071
6072 DRM DRIVERS FOR LIMA
6073 M:      Qiang Yu <yuq825@gmail.com>
6074 L:      dri-devel@lists.freedesktop.org
6075 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6076 S:      Maintained
6077 T:      git git://anongit.freedesktop.org/drm/drm-misc
6078 F:      drivers/gpu/drm/lima/
6079 F:      include/uapi/drm/lima_drm.h
6080
6081 DRM DRIVERS FOR MEDIATEK
6082 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6083 M:      Philipp Zabel <p.zabel@pengutronix.de>
6084 L:      dri-devel@lists.freedesktop.org
6085 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6086 S:      Supported
6087 F:      Documentation/devicetree/bindings/display/mediatek/
6088 F:      drivers/gpu/drm/mediatek/
6089 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6090 F:      drivers/phy/mediatek/phy-mtk-mipi*
6091
6092 DRM DRIVERS FOR NVIDIA TEGRA
6093 M:      Thierry Reding <thierry.reding@gmail.com>
6094 L:      dri-devel@lists.freedesktop.org
6095 L:      linux-tegra@vger.kernel.org
6096 S:      Supported
6097 T:      git git://anongit.freedesktop.org/tegra/linux.git
6098 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6099 F:      drivers/gpu/drm/tegra/
6100 F:      drivers/gpu/host1x/
6101 F:      include/linux/host1x.h
6102 F:      include/uapi/drm/tegra_drm.h
6103
6104 DRM DRIVERS FOR RENESAS
6105 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6106 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6107 L:      dri-devel@lists.freedesktop.org
6108 L:      linux-renesas-soc@vger.kernel.org
6109 S:      Supported
6110 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6111 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6112 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6113 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6114 F:      drivers/gpu/drm/rcar-du/
6115 F:      drivers/gpu/drm/shmobile/
6116 F:      include/linux/platform_data/shmob_drm.h
6117
6118 DRM DRIVERS FOR ROCKCHIP
6119 M:      Sandy Huang <hjc@rock-chips.com>
6120 M:      Heiko Stübner <heiko@sntech.de>
6121 L:      dri-devel@lists.freedesktop.org
6122 S:      Maintained
6123 T:      git git://anongit.freedesktop.org/drm/drm-misc
6124 F:      Documentation/devicetree/bindings/display/rockchip/
6125 F:      drivers/gpu/drm/rockchip/
6126
6127 DRM DRIVERS FOR STI
6128 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6129 L:      dri-devel@lists.freedesktop.org
6130 S:      Maintained
6131 T:      git git://anongit.freedesktop.org/drm/drm-misc
6132 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6133 F:      drivers/gpu/drm/sti
6134
6135 DRM DRIVERS FOR STM
6136 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6137 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6138 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6139 L:      dri-devel@lists.freedesktop.org
6140 S:      Maintained
6141 T:      git git://anongit.freedesktop.org/drm/drm-misc
6142 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6143 F:      drivers/gpu/drm/stm
6144
6145 DRM DRIVERS FOR TI KEYSTONE
6146 M:      Jyri Sarha <jyri.sarha@iki.fi>
6147 M:      Tomi Valkeinen <tomba@kernel.org>
6148 L:      dri-devel@lists.freedesktop.org
6149 S:      Maintained
6150 T:      git git://anongit.freedesktop.org/drm/drm-misc
6151 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6152 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6153 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6154 F:      drivers/gpu/drm/tidss/
6155
6156 DRM DRIVERS FOR TI LCDC
6157 M:      Jyri Sarha <jyri.sarha@iki.fi>
6158 R:      Tomi Valkeinen <tomba@kernel.org>
6159 L:      dri-devel@lists.freedesktop.org
6160 S:      Maintained
6161 F:      Documentation/devicetree/bindings/display/tilcdc/
6162 F:      drivers/gpu/drm/tilcdc/
6163
6164 DRM DRIVERS FOR TI OMAP
6165 M:      Tomi Valkeinen <tomba@kernel.org>
6166 L:      dri-devel@lists.freedesktop.org
6167 S:      Maintained
6168 F:      Documentation/devicetree/bindings/display/ti/
6169 F:      drivers/gpu/drm/omapdrm/
6170
6171 DRM DRIVERS FOR V3D
6172 M:      Eric Anholt <eric@anholt.net>
6173 S:      Supported
6174 T:      git git://anongit.freedesktop.org/drm/drm-misc
6175 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6176 F:      drivers/gpu/drm/v3d/
6177 F:      include/uapi/drm/v3d_drm.h
6178
6179 DRM DRIVERS FOR VC4
6180 M:      Eric Anholt <eric@anholt.net>
6181 M:      Maxime Ripard <mripard@kernel.org>
6182 S:      Supported
6183 T:      git git://github.com/anholt/linux
6184 T:      git git://anongit.freedesktop.org/drm/drm-misc
6185 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6186 F:      drivers/gpu/drm/vc4/
6187 F:      include/uapi/drm/vc4_drm.h
6188
6189 DRM DRIVERS FOR VIVANTE GPU IP
6190 M:      Lucas Stach <l.stach@pengutronix.de>
6191 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6192 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6193 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6194 L:      dri-devel@lists.freedesktop.org
6195 S:      Maintained
6196 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6197 F:      drivers/gpu/drm/etnaviv/
6198 F:      include/uapi/drm/etnaviv_drm.h
6199
6200 DRM DRIVERS FOR XEN
6201 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6202 L:      dri-devel@lists.freedesktop.org
6203 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6204 S:      Supported
6205 T:      git git://anongit.freedesktop.org/drm/drm-misc
6206 F:      Documentation/gpu/xen-front.rst
6207 F:      drivers/gpu/drm/xen/
6208
6209 DRM DRIVERS FOR XILINX
6210 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6211 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6212 L:      dri-devel@lists.freedesktop.org
6213 S:      Maintained
6214 T:      git git://anongit.freedesktop.org/drm/drm-misc
6215 F:      Documentation/devicetree/bindings/display/xlnx/
6216 F:      drivers/gpu/drm/xlnx/
6217
6218 DRM PANEL DRIVERS
6219 M:      Thierry Reding <thierry.reding@gmail.com>
6220 R:      Sam Ravnborg <sam@ravnborg.org>
6221 L:      dri-devel@lists.freedesktop.org
6222 S:      Maintained
6223 T:      git git://anongit.freedesktop.org/drm/drm-misc
6224 F:      Documentation/devicetree/bindings/display/panel/
6225 F:      drivers/gpu/drm/drm_panel.c
6226 F:      drivers/gpu/drm/panel/
6227 F:      include/drm/drm_panel.h
6228
6229 DRM TTM SUBSYSTEM
6230 M:      Christian Koenig <christian.koenig@amd.com>
6231 M:      Huang Rui <ray.huang@amd.com>
6232 L:      dri-devel@lists.freedesktop.org
6233 S:      Maintained
6234 T:      git git://people.freedesktop.org/~agd5f/linux
6235 F:      drivers/gpu/drm/ttm/
6236 F:      include/drm/ttm/
6237
6238 DSBR100 USB FM RADIO DRIVER
6239 M:      Alexey Klimov <klimov.linux@gmail.com>
6240 L:      linux-media@vger.kernel.org
6241 S:      Maintained
6242 T:      git git://linuxtv.org/media_tree.git
6243 F:      drivers/media/radio/dsbr100.c
6244
6245 DT3155 MEDIA DRIVER
6246 M:      Hans Verkuil <hverkuil@xs4all.nl>
6247 L:      linux-media@vger.kernel.org
6248 S:      Odd Fixes
6249 W:      https://linuxtv.org
6250 T:      git git://linuxtv.org/media_tree.git
6251 F:      drivers/media/pci/dt3155/
6252
6253 DVB_USB_AF9015 MEDIA DRIVER
6254 M:      Antti Palosaari <crope@iki.fi>
6255 L:      linux-media@vger.kernel.org
6256 S:      Maintained
6257 W:      https://linuxtv.org
6258 W:      http://palosaari.fi/linux/
6259 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6260 T:      git git://linuxtv.org/anttip/media_tree.git
6261 F:      drivers/media/usb/dvb-usb-v2/af9015*
6262
6263 DVB_USB_AF9035 MEDIA DRIVER
6264 M:      Antti Palosaari <crope@iki.fi>
6265 L:      linux-media@vger.kernel.org
6266 S:      Maintained
6267 W:      https://linuxtv.org
6268 W:      http://palosaari.fi/linux/
6269 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6270 T:      git git://linuxtv.org/anttip/media_tree.git
6271 F:      drivers/media/usb/dvb-usb-v2/af9035*
6272
6273 DVB_USB_ANYSEE MEDIA DRIVER
6274 M:      Antti Palosaari <crope@iki.fi>
6275 L:      linux-media@vger.kernel.org
6276 S:      Maintained
6277 W:      https://linuxtv.org
6278 W:      http://palosaari.fi/linux/
6279 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6280 T:      git git://linuxtv.org/anttip/media_tree.git
6281 F:      drivers/media/usb/dvb-usb-v2/anysee*
6282
6283 DVB_USB_AU6610 MEDIA DRIVER
6284 M:      Antti Palosaari <crope@iki.fi>
6285 L:      linux-media@vger.kernel.org
6286 S:      Maintained
6287 W:      https://linuxtv.org
6288 W:      http://palosaari.fi/linux/
6289 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6290 T:      git git://linuxtv.org/anttip/media_tree.git
6291 F:      drivers/media/usb/dvb-usb-v2/au6610*
6292
6293 DVB_USB_CE6230 MEDIA DRIVER
6294 M:      Antti Palosaari <crope@iki.fi>
6295 L:      linux-media@vger.kernel.org
6296 S:      Maintained
6297 W:      https://linuxtv.org
6298 W:      http://palosaari.fi/linux/
6299 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6300 T:      git git://linuxtv.org/anttip/media_tree.git
6301 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6302
6303 DVB_USB_CXUSB MEDIA DRIVER
6304 M:      Michael Krufky <mkrufky@linuxtv.org>
6305 L:      linux-media@vger.kernel.org
6306 S:      Maintained
6307 W:      https://linuxtv.org
6308 W:      http://github.com/mkrufky
6309 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6310 T:      git git://linuxtv.org/media_tree.git
6311 F:      drivers/media/usb/dvb-usb/cxusb*
6312
6313 DVB_USB_EC168 MEDIA DRIVER
6314 M:      Antti Palosaari <crope@iki.fi>
6315 L:      linux-media@vger.kernel.org
6316 S:      Maintained
6317 W:      https://linuxtv.org
6318 W:      http://palosaari.fi/linux/
6319 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6320 T:      git git://linuxtv.org/anttip/media_tree.git
6321 F:      drivers/media/usb/dvb-usb-v2/ec168*
6322
6323 DVB_USB_GL861 MEDIA DRIVER
6324 M:      Antti Palosaari <crope@iki.fi>
6325 L:      linux-media@vger.kernel.org
6326 S:      Maintained
6327 W:      https://linuxtv.org
6328 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6329 T:      git git://linuxtv.org/anttip/media_tree.git
6330 F:      drivers/media/usb/dvb-usb-v2/gl861*
6331
6332 DVB_USB_MXL111SF MEDIA DRIVER
6333 M:      Michael Krufky <mkrufky@linuxtv.org>
6334 L:      linux-media@vger.kernel.org
6335 S:      Maintained
6336 W:      https://linuxtv.org
6337 W:      http://github.com/mkrufky
6338 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6339 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6340 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6341
6342 DVB_USB_RTL28XXU MEDIA DRIVER
6343 M:      Antti Palosaari <crope@iki.fi>
6344 L:      linux-media@vger.kernel.org
6345 S:      Maintained
6346 W:      https://linuxtv.org
6347 W:      http://palosaari.fi/linux/
6348 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6349 T:      git git://linuxtv.org/anttip/media_tree.git
6350 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6351
6352 DVB_USB_V2 MEDIA DRIVER
6353 M:      Antti Palosaari <crope@iki.fi>
6354 L:      linux-media@vger.kernel.org
6355 S:      Maintained
6356 W:      https://linuxtv.org
6357 W:      http://palosaari.fi/linux/
6358 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6359 T:      git git://linuxtv.org/anttip/media_tree.git
6360 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6361 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6362
6363 DYNAMIC DEBUG
6364 M:      Jason Baron <jbaron@akamai.com>
6365 S:      Maintained
6366 F:      include/linux/dynamic_debug.h
6367 F:      lib/dynamic_debug.c
6368
6369 DYNAMIC INTERRUPT MODERATION
6370 M:      Tal Gilboa <talgi@nvidia.com>
6371 S:      Maintained
6372 F:      Documentation/networking/net_dim.rst
6373 F:      include/linux/dim.h
6374 F:      lib/dim/
6375
6376 DZ DECSTATION DZ11 SERIAL DRIVER
6377 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6378 S:      Maintained
6379 F:      drivers/tty/serial/dz.*
6380
6381 E3X0 POWER BUTTON DRIVER
6382 M:      Moritz Fischer <moritz.fischer@ettus.com>
6383 L:      usrp-users@lists.ettus.com
6384 S:      Supported
6385 W:      http://www.ettus.com
6386 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6387 F:      drivers/input/misc/e3x0-button.c
6388
6389 E4000 MEDIA DRIVER
6390 M:      Antti Palosaari <crope@iki.fi>
6391 L:      linux-media@vger.kernel.org
6392 S:      Maintained
6393 W:      https://linuxtv.org
6394 W:      http://palosaari.fi/linux/
6395 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6396 T:      git git://linuxtv.org/anttip/media_tree.git
6397 F:      drivers/media/tuners/e4000*
6398
6399 EARTH_PT1 MEDIA DRIVER
6400 M:      Akihiro Tsukada <tskd08@gmail.com>
6401 L:      linux-media@vger.kernel.org
6402 S:      Odd Fixes
6403 F:      drivers/media/pci/pt1/
6404
6405 EARTH_PT3 MEDIA DRIVER
6406 M:      Akihiro Tsukada <tskd08@gmail.com>
6407 L:      linux-media@vger.kernel.org
6408 S:      Odd Fixes
6409 F:      drivers/media/pci/pt3/
6410
6411 EC100 MEDIA DRIVER
6412 M:      Antti Palosaari <crope@iki.fi>
6413 L:      linux-media@vger.kernel.org
6414 S:      Maintained
6415 W:      https://linuxtv.org
6416 W:      http://palosaari.fi/linux/
6417 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6418 T:      git git://linuxtv.org/anttip/media_tree.git
6419 F:      drivers/media/dvb-frontends/ec100*
6420
6421 ECRYPT FILE SYSTEM
6422 M:      Tyler Hicks <code@tyhicks.com>
6423 L:      ecryptfs@vger.kernel.org
6424 S:      Odd Fixes
6425 W:      http://ecryptfs.org
6426 W:      https://launchpad.net/ecryptfs
6427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6428 F:      Documentation/filesystems/ecryptfs.rst
6429 F:      fs/ecryptfs/
6430
6431 EDAC-AMD64
6432 M:      Borislav Petkov <bp@alien8.de>
6433 L:      linux-edac@vger.kernel.org
6434 S:      Maintained
6435 F:      drivers/edac/amd64_edac*
6436
6437 EDAC-ARMADA
6438 M:      Jan Luebbe <jlu@pengutronix.de>
6439 L:      linux-edac@vger.kernel.org
6440 S:      Maintained
6441 F:      drivers/edac/armada_xp_*
6442
6443 EDAC-AST2500
6444 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6445 S:      Supported
6446 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6447 F:      drivers/edac/aspeed_edac.c
6448
6449 EDAC-BLUEFIELD
6450 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6451 S:      Supported
6452 F:      drivers/edac/bluefield_edac.c
6453
6454 EDAC-CALXEDA
6455 M:      Andre Przywara <andre.przywara@arm.com>
6456 L:      linux-edac@vger.kernel.org
6457 S:      Maintained
6458 F:      drivers/edac/highbank*
6459
6460 EDAC-CAVIUM OCTEON
6461 M:      Ralf Baechle <ralf@linux-mips.org>
6462 L:      linux-edac@vger.kernel.org
6463 L:      linux-mips@vger.kernel.org
6464 S:      Supported
6465 F:      drivers/edac/octeon_edac*
6466
6467 EDAC-CAVIUM THUNDERX
6468 M:      Robert Richter <rric@kernel.org>
6469 L:      linux-edac@vger.kernel.org
6470 S:      Odd Fixes
6471 F:      drivers/edac/thunderx_edac*
6472
6473 EDAC-CORE
6474 M:      Borislav Petkov <bp@alien8.de>
6475 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6476 M:      Tony Luck <tony.luck@intel.com>
6477 R:      James Morse <james.morse@arm.com>
6478 R:      Robert Richter <rric@kernel.org>
6479 L:      linux-edac@vger.kernel.org
6480 S:      Supported
6481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6482 F:      Documentation/admin-guide/ras.rst
6483 F:      Documentation/driver-api/edac.rst
6484 F:      drivers/edac/
6485 F:      include/linux/edac.h
6486
6487 EDAC-DMC520
6488 M:      Lei Wang <lewan@microsoft.com>
6489 L:      linux-edac@vger.kernel.org
6490 S:      Supported
6491 F:      drivers/edac/dmc520_edac.c
6492
6493 EDAC-E752X
6494 M:      Mark Gross <mark.gross@intel.com>
6495 L:      linux-edac@vger.kernel.org
6496 S:      Maintained
6497 F:      drivers/edac/e752x_edac.c
6498
6499 EDAC-E7XXX
6500 L:      linux-edac@vger.kernel.org
6501 S:      Maintained
6502 F:      drivers/edac/e7xxx_edac.c
6503
6504 EDAC-FSL_DDR
6505 M:      York Sun <york.sun@nxp.com>
6506 L:      linux-edac@vger.kernel.org
6507 S:      Maintained
6508 F:      drivers/edac/fsl_ddr_edac.*
6509
6510 EDAC-GHES
6511 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6512 L:      linux-edac@vger.kernel.org
6513 S:      Maintained
6514 F:      drivers/edac/ghes_edac.c
6515
6516 EDAC-I10NM
6517 M:      Tony Luck <tony.luck@intel.com>
6518 L:      linux-edac@vger.kernel.org
6519 S:      Maintained
6520 F:      drivers/edac/i10nm_base.c
6521
6522 EDAC-I3000
6523 L:      linux-edac@vger.kernel.org
6524 S:      Orphan
6525 F:      drivers/edac/i3000_edac.c
6526
6527 EDAC-I5000
6528 L:      linux-edac@vger.kernel.org
6529 S:      Maintained
6530 F:      drivers/edac/i5000_edac.c
6531
6532 EDAC-I5400
6533 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6534 L:      linux-edac@vger.kernel.org
6535 S:      Maintained
6536 F:      drivers/edac/i5400_edac.c
6537
6538 EDAC-I7300
6539 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6540 L:      linux-edac@vger.kernel.org
6541 S:      Maintained
6542 F:      drivers/edac/i7300_edac.c
6543
6544 EDAC-I7CORE
6545 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6546 L:      linux-edac@vger.kernel.org
6547 S:      Maintained
6548 F:      drivers/edac/i7core_edac.c
6549
6550 EDAC-I82443BXGX
6551 M:      Tim Small <tim@buttersideup.com>
6552 L:      linux-edac@vger.kernel.org
6553 S:      Maintained
6554 F:      drivers/edac/i82443bxgx_edac.c
6555
6556 EDAC-I82975X
6557 M:      "Arvind R." <arvino55@gmail.com>
6558 L:      linux-edac@vger.kernel.org
6559 S:      Maintained
6560 F:      drivers/edac/i82975x_edac.c
6561
6562 EDAC-IE31200
6563 M:      Jason Baron <jbaron@akamai.com>
6564 L:      linux-edac@vger.kernel.org
6565 S:      Maintained
6566 F:      drivers/edac/ie31200_edac.c
6567
6568 EDAC-IGEN6
6569 M:      Tony Luck <tony.luck@intel.com>
6570 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6571 L:      linux-edac@vger.kernel.org
6572 S:      Maintained
6573 F:      drivers/edac/igen6_edac.c
6574
6575 EDAC-MPC85XX
6576 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6577 L:      linux-edac@vger.kernel.org
6578 S:      Maintained
6579 F:      drivers/edac/mpc85xx_edac.[ch]
6580
6581 EDAC-PASEMI
6582 M:      Egor Martovetsky <egor@pasemi.com>
6583 L:      linux-edac@vger.kernel.org
6584 S:      Maintained
6585 F:      drivers/edac/pasemi_edac.c
6586
6587 EDAC-PND2
6588 M:      Tony Luck <tony.luck@intel.com>
6589 L:      linux-edac@vger.kernel.org
6590 S:      Maintained
6591 F:      drivers/edac/pnd2_edac.[ch]
6592
6593 EDAC-QCOM
6594 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6595 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6596 L:      linux-arm-msm@vger.kernel.org
6597 L:      linux-edac@vger.kernel.org
6598 S:      Maintained
6599 F:      drivers/edac/qcom_edac.c
6600
6601 EDAC-R82600
6602 M:      Tim Small <tim@buttersideup.com>
6603 L:      linux-edac@vger.kernel.org
6604 S:      Maintained
6605 F:      drivers/edac/r82600_edac.c
6606
6607 EDAC-SBRIDGE
6608 M:      Tony Luck <tony.luck@intel.com>
6609 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6610 L:      linux-edac@vger.kernel.org
6611 S:      Maintained
6612 F:      drivers/edac/sb_edac.c
6613
6614 EDAC-SIFIVE
6615 M:      Yash Shah <yash.shah@sifive.com>
6616 L:      linux-edac@vger.kernel.org
6617 S:      Supported
6618 F:      drivers/edac/sifive_edac.c
6619
6620 EDAC-SKYLAKE
6621 M:      Tony Luck <tony.luck@intel.com>
6622 L:      linux-edac@vger.kernel.org
6623 S:      Maintained
6624 F:      drivers/edac/skx_*.[ch]
6625
6626 EDAC-TI
6627 M:      Tero Kristo <kristo@kernel.org>
6628 L:      linux-edac@vger.kernel.org
6629 S:      Odd Fixes
6630 F:      drivers/edac/ti_edac.c
6631
6632 EDIROL UA-101/UA-1000 DRIVER
6633 M:      Clemens Ladisch <clemens@ladisch.de>
6634 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6635 S:      Maintained
6636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6637 F:      sound/usb/misc/ua101.c
6638
6639 EFI TEST DRIVER
6640 M:      Ivan Hu <ivan.hu@canonical.com>
6641 M:      Ard Biesheuvel <ardb@kernel.org>
6642 L:      linux-efi@vger.kernel.org
6643 S:      Maintained
6644 F:      drivers/firmware/efi/test/
6645
6646 EFI VARIABLE FILESYSTEM
6647 M:      Matthew Garrett <matthew.garrett@nebula.com>
6648 M:      Jeremy Kerr <jk@ozlabs.org>
6649 M:      Ard Biesheuvel <ardb@kernel.org>
6650 L:      linux-efi@vger.kernel.org
6651 S:      Maintained
6652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6653 F:      fs/efivarfs/
6654
6655 EFIFB FRAMEBUFFER DRIVER
6656 M:      Peter Jones <pjones@redhat.com>
6657 L:      linux-fbdev@vger.kernel.org
6658 S:      Maintained
6659 F:      drivers/video/fbdev/efifb.c
6660
6661 EFS FILESYSTEM
6662 S:      Orphan
6663 W:      http://aeschi.ch.eu.org/efs/
6664 F:      fs/efs/
6665
6666 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6667 M:      Douglas Miller <dougmill@linux.ibm.com>
6668 L:      netdev@vger.kernel.org
6669 S:      Maintained
6670 F:      drivers/net/ethernet/ibm/ehea/
6671
6672 EM28XX VIDEO4LINUX DRIVER
6673 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6674 L:      linux-media@vger.kernel.org
6675 S:      Maintained
6676 W:      https://linuxtv.org
6677 T:      git git://linuxtv.org/media_tree.git
6678 F:      Documentation/admin-guide/media/em28xx*
6679 F:      drivers/media/usb/em28xx/
6680
6681 EMBEDDED LINUX
6682 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6683 M:      Matt Mackall <mpm@selenic.com>
6684 M:      David Woodhouse <dwmw2@infradead.org>
6685 L:      linux-embedded@vger.kernel.org
6686 S:      Maintained
6687
6688 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6689 M:      Adrian Hunter <adrian.hunter@intel.com>
6690 M:      Ritesh Harjani <riteshh@codeaurora.org>
6691 M:      Asutosh Das <asutoshd@codeaurora.org>
6692 L:      linux-mmc@vger.kernel.org
6693 S:      Maintained
6694 F:      drivers/mmc/host/cqhci*
6695
6696 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6697 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6698 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6699 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6700 L:      linux-scsi@vger.kernel.org
6701 S:      Supported
6702 W:      http://www.broadcom.com
6703 F:      drivers/scsi/be2iscsi/
6704
6705 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6706 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6707 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6708 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6709 L:      netdev@vger.kernel.org
6710 S:      Supported
6711 W:      http://www.emulex.com
6712 F:      drivers/net/ethernet/emulex/benet/
6713
6714 EMULEX ONECONNECT ROCE DRIVER
6715 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6716 M:      Devesh Sharma <devesh.sharma@broadcom.com>
6717 L:      linux-rdma@vger.kernel.org
6718 S:      Odd Fixes
6719 W:      http://www.broadcom.com
6720 F:      drivers/infiniband/hw/ocrdma/
6721 F:      include/uapi/rdma/ocrdma-abi.h
6722
6723 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6724 M:      James Smart <james.smart@broadcom.com>
6725 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6726 L:      linux-scsi@vger.kernel.org
6727 S:      Supported
6728 W:      http://www.broadcom.com
6729 F:      drivers/scsi/lpfc/
6730
6731 ENE CB710 FLASH CARD READER DRIVER
6732 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6733 S:      Maintained
6734 F:      drivers/misc/cb710/
6735 F:      drivers/mmc/host/cb710-mmc.*
6736 F:      include/linux/cb710.h
6737
6738 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6739 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6740 S:      Maintained
6741 F:      drivers/media/rc/ene_ir.*
6742
6743 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6744 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6745 L:      linuxppc-dev@lists.ozlabs.org
6746 S:      Maintained
6747 F:      drivers/tty/ehv_bytechan.c
6748
6749 EPSON S1D13XXX FRAMEBUFFER DRIVER
6750 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6751 S:      Maintained
6752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6753 F:      drivers/video/fbdev/s1d13xxxfb.c
6754 F:      include/video/s1d13xxxfb.h
6755
6756 EROFS FILE SYSTEM
6757 M:      Gao Xiang <xiang@kernel.org>
6758 M:      Chao Yu <yuchao0@huawei.com>
6759 L:      linux-erofs@lists.ozlabs.org
6760 S:      Maintained
6761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6762 F:      Documentation/filesystems/erofs.rst
6763 F:      fs/erofs/
6764 F:      include/trace/events/erofs.h
6765
6766 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6767 M:      Jeff Layton <jlayton@kernel.org>
6768 S:      Maintained
6769 F:      include/linux/errseq.h
6770 F:      lib/errseq.c
6771
6772 ET131X NETWORK DRIVER
6773 M:      Mark Einon <mark.einon@gmail.com>
6774 S:      Odd Fixes
6775 F:      drivers/net/ethernet/agere/
6776
6777 ETHERNET BRIDGE
6778 M:      Roopa Prabhu <roopa@nvidia.com>
6779 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
6780 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6781 L:      netdev@vger.kernel.org
6782 S:      Maintained
6783 W:      http://www.linuxfoundation.org/en/Net:Bridge
6784 F:      include/linux/netfilter_bridge/
6785 F:      net/bridge/
6786
6787 ETHERNET PHY LIBRARY
6788 M:      Andrew Lunn <andrew@lunn.ch>
6789 M:      Heiner Kallweit <hkallweit1@gmail.com>
6790 R:      Russell King <linux@armlinux.org.uk>
6791 L:      netdev@vger.kernel.org
6792 S:      Maintained
6793 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6794 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6795 F:      Documentation/devicetree/bindings/net/mdio*
6796 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6797 F:      Documentation/networking/phy.rst
6798 F:      drivers/net/mdio/
6799 F:      drivers/net/mdio/of_mdio.c
6800 F:      drivers/net/pcs/
6801 F:      drivers/net/phy/
6802 F:      drivers/of/of_net.c
6803 F:      include/dt-bindings/net/qca-ar803x.h
6804 F:      include/linux/*mdio*.h
6805 F:      include/linux/mdio/*.h
6806 F:      include/linux/of_net.h
6807 F:      include/linux/phy.h
6808 F:      include/linux/phy_fixed.h
6809 F:      include/linux/platform_data/mdio-bcm-unimac.h
6810 F:      include/linux/platform_data/mdio-gpio.h
6811 F:      include/trace/events/mdio.h
6812 F:      include/uapi/linux/mdio.h
6813 F:      include/uapi/linux/mii.h
6814
6815 EXFAT FILE SYSTEM
6816 M:      Namjae Jeon <namjae.jeon@samsung.com>
6817 M:      Sungjong Seo <sj1557.seo@samsung.com>
6818 L:      linux-fsdevel@vger.kernel.org
6819 S:      Maintained
6820 F:      fs/exfat/
6821
6822 EXT2 FILE SYSTEM
6823 M:      Jan Kara <jack@suse.com>
6824 L:      linux-ext4@vger.kernel.org
6825 S:      Maintained
6826 F:      Documentation/filesystems/ext2.rst
6827 F:      fs/ext2/
6828 F:      include/linux/ext2*
6829
6830 EXT4 FILE SYSTEM
6831 M:      "Theodore Ts'o" <tytso@mit.edu>
6832 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6833 L:      linux-ext4@vger.kernel.org
6834 S:      Maintained
6835 W:      http://ext4.wiki.kernel.org
6836 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6838 F:      Documentation/filesystems/ext4/
6839 F:      fs/ext4/
6840 F:      include/trace/events/ext4.h
6841
6842 Extended Verification Module (EVM)
6843 M:      Mimi Zohar <zohar@linux.ibm.com>
6844 L:      linux-integrity@vger.kernel.org
6845 S:      Supported
6846 F:      security/integrity/evm/
6847
6848 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6849 M:      Ard Biesheuvel <ardb@kernel.org>
6850 L:      linux-efi@vger.kernel.org
6851 S:      Maintained
6852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6853 F:      Documentation/admin-guide/efi-stub.rst
6854 F:      arch/*/include/asm/efi.h
6855 F:      arch/*/kernel/efi.c
6856 F:      arch/arm/boot/compressed/efi-header.S
6857 F:      arch/arm64/kernel/efi-entry.S
6858 F:      arch/x86/platform/efi/
6859 F:      drivers/firmware/efi/
6860 F:      include/linux/efi*.h
6861
6862 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6863 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6864 M:      Chanwoo Choi <cw00.choi@samsung.com>
6865 L:      linux-kernel@vger.kernel.org
6866 S:      Maintained
6867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6868 F:      Documentation/devicetree/bindings/extcon/
6869 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6870 F:      drivers/extcon/
6871 F:      include/linux/extcon.h
6872 F:      include/linux/extcon/
6873
6874 EXTRA BOOT CONFIG
6875 M:      Masami Hiramatsu <mhiramat@kernel.org>
6876 S:      Maintained
6877 F:      Documentation/admin-guide/bootconfig.rst
6878 F:      fs/proc/bootconfig.c
6879 F:      include/linux/bootconfig.h
6880 F:      lib/bootconfig.c
6881 F:      tools/bootconfig/*
6882 F:      tools/bootconfig/scripts/*
6883
6884 EXYNOS DP DRIVER
6885 M:      Jingoo Han <jingoohan1@gmail.com>
6886 L:      dri-devel@lists.freedesktop.org
6887 S:      Maintained
6888 F:      drivers/gpu/drm/exynos/exynos_dp*
6889
6890 EXYNOS SYSMMU (IOMMU) driver
6891 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6892 L:      iommu@lists.linux-foundation.org
6893 S:      Maintained
6894 F:      drivers/iommu/exynos-iommu.c
6895
6896 F2FS FILE SYSTEM
6897 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6898 M:      Chao Yu <yuchao0@huawei.com>
6899 L:      linux-f2fs-devel@lists.sourceforge.net
6900 S:      Maintained
6901 W:      https://f2fs.wiki.kernel.org/
6902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6903 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6904 F:      Documentation/filesystems/f2fs.rst
6905 F:      fs/f2fs/
6906 F:      include/linux/f2fs_fs.h
6907 F:      include/trace/events/f2fs.h
6908 F:      include/uapi/linux/f2fs.h
6909
6910 F71805F HARDWARE MONITORING DRIVER
6911 M:      Jean Delvare <jdelvare@suse.com>
6912 L:      linux-hwmon@vger.kernel.org
6913 S:      Maintained
6914 F:      Documentation/hwmon/f71805f.rst
6915 F:      drivers/hwmon/f71805f.c
6916
6917 FADDR2LINE
6918 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6919 S:      Maintained
6920 F:      scripts/faddr2line
6921
6922 FAILOVER MODULE
6923 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
6924 L:      netdev@vger.kernel.org
6925 S:      Supported
6926 F:      Documentation/networking/failover.rst
6927 F:      include/net/failover.h
6928 F:      net/core/failover.c
6929
6930 FANOTIFY
6931 M:      Jan Kara <jack@suse.cz>
6932 R:      Amir Goldstein <amir73il@gmail.com>
6933 L:      linux-fsdevel@vger.kernel.org
6934 S:      Maintained
6935 F:      fs/notify/fanotify/
6936 F:      include/linux/fanotify.h
6937 F:      include/uapi/linux/fanotify.h
6938
6939 FARSYNC SYNCHRONOUS DRIVER
6940 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
6941 S:      Supported
6942 W:      http://www.farsite.co.uk/
6943 F:      drivers/net/wan/farsync.*
6944
6945 FAULT INJECTION SUPPORT
6946 M:      Akinobu Mita <akinobu.mita@gmail.com>
6947 S:      Supported
6948 F:      Documentation/fault-injection/
6949 F:      lib/fault-inject.c
6950
6951 FBTFT Framebuffer drivers
6952 L:      dri-devel@lists.freedesktop.org
6953 L:      linux-fbdev@vger.kernel.org
6954 S:      Orphan
6955 F:      drivers/staging/fbtft/
6956
6957 FC0011 TUNER DRIVER
6958 M:      Michael Buesch <m@bues.ch>
6959 L:      linux-media@vger.kernel.org
6960 S:      Maintained
6961 F:      drivers/media/tuners/fc0011.c
6962 F:      drivers/media/tuners/fc0011.h
6963
6964 FC2580 MEDIA DRIVER
6965 M:      Antti Palosaari <crope@iki.fi>
6966 L:      linux-media@vger.kernel.org
6967 S:      Maintained
6968 W:      https://linuxtv.org
6969 W:      http://palosaari.fi/linux/
6970 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6971 T:      git git://linuxtv.org/anttip/media_tree.git
6972 F:      drivers/media/tuners/fc2580*
6973
6974 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6975 M:      Hannes Reinecke <hare@suse.de>
6976 L:      linux-scsi@vger.kernel.org
6977 S:      Supported
6978 W:      www.Open-FCoE.org
6979 F:      drivers/scsi/fcoe/
6980 F:      drivers/scsi/libfc/
6981 F:      include/scsi/fc/
6982 F:      include/scsi/libfc.h
6983 F:      include/scsi/libfcoe.h
6984 F:      include/uapi/scsi/fc/
6985
6986 FILE LOCKING (flock() and fcntl()/lockf())
6987 M:      Jeff Layton <jlayton@kernel.org>
6988 M:      "J. Bruce Fields" <bfields@fieldses.org>
6989 L:      linux-fsdevel@vger.kernel.org
6990 S:      Maintained
6991 F:      fs/fcntl.c
6992 F:      fs/locks.c
6993 F:      include/linux/fcntl.h
6994 F:      include/uapi/linux/fcntl.h
6995
6996 FILESYSTEM DIRECT ACCESS (DAX)
6997 M:      Dan Williams <dan.j.williams@intel.com>
6998 R:      Matthew Wilcox <willy@infradead.org>
6999 R:      Jan Kara <jack@suse.cz>
7000 L:      linux-fsdevel@vger.kernel.org
7001 L:      linux-nvdimm@lists.01.org
7002 S:      Supported
7003 F:      fs/dax.c
7004 F:      include/linux/dax.h
7005 F:      include/trace/events/fs_dax.h
7006
7007 FILESYSTEMS (VFS and infrastructure)
7008 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7009 L:      linux-fsdevel@vger.kernel.org
7010 S:      Maintained
7011 F:      fs/*
7012 F:      include/linux/fs.h
7013 F:      include/linux/fs_types.h
7014 F:      include/uapi/linux/fs.h
7015 F:      include/uapi/linux/openat2.h
7016 X:      fs/io-wq.c
7017 X:      fs/io-wq.h
7018 X:      fs/io_uring.c
7019
7020 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7021 M:      Riku Voipio <riku.voipio@iki.fi>
7022 L:      linux-hwmon@vger.kernel.org
7023 S:      Maintained
7024 F:      drivers/hwmon/f75375s.c
7025 F:      include/linux/f75375s.h
7026
7027 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7028 M:      Clemens Ladisch <clemens@ladisch.de>
7029 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7030 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7031 S:      Maintained
7032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7033 F:      include/uapi/sound/firewire.h
7034 F:      sound/firewire/
7035
7036 FIREWIRE MEDIA DRIVERS (firedtv)
7037 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7038 L:      linux-media@vger.kernel.org
7039 L:      linux1394-devel@lists.sourceforge.net
7040 S:      Maintained
7041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7042 F:      drivers/media/firewire/
7043
7044 FIREWIRE SBP-2 TARGET
7045 M:      Chris Boot <bootc@bootc.net>
7046 L:      linux-scsi@vger.kernel.org
7047 L:      target-devel@vger.kernel.org
7048 L:      linux1394-devel@lists.sourceforge.net
7049 S:      Maintained
7050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7051 F:      drivers/target/sbp/
7052
7053 FIREWIRE SUBSYSTEM
7054 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7055 L:      linux1394-devel@lists.sourceforge.net
7056 S:      Maintained
7057 W:      http://ieee1394.wiki.kernel.org/
7058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7059 F:      drivers/firewire/
7060 F:      include/linux/firewire.h
7061 F:      include/uapi/linux/firewire*.h
7062 F:      tools/firewire/
7063
7064 FIRMWARE LOADER (request_firmware)
7065 M:      Luis Chamberlain <mcgrof@kernel.org>
7066 L:      linux-kernel@vger.kernel.org
7067 S:      Maintained
7068 F:      Documentation/firmware_class/
7069 F:      drivers/base/firmware_loader/
7070 F:      include/linux/firmware.h
7071
7072 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
7073 M:      Joshua Morris <josh.h.morris@us.ibm.com>
7074 M:      Philip Kelleher <pjk1939@linux.ibm.com>
7075 S:      Maintained
7076 F:      drivers/block/rsxx/
7077
7078 FLEXTIMER FTM-QUADDEC DRIVER
7079 M:      Patrick Havelange <patrick.havelange@essensium.com>
7080 L:      linux-iio@vger.kernel.org
7081 S:      Maintained
7082 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
7083 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7084 F:      drivers/counter/ftm-quaddec.c
7085
7086 FLOPPY DRIVER
7087 M:      Denis Efremov <efremov@linux.com>
7088 L:      linux-block@vger.kernel.org
7089 S:      Odd Fixes
7090 F:      drivers/block/floppy.c
7091
7092 FLYSKY FSIA6B RC RECEIVER
7093 M:      Markus Koch <markus@notsyncing.net>
7094 L:      linux-input@vger.kernel.org
7095 S:      Maintained
7096 F:      drivers/input/joystick/fsia6b.c
7097
7098 FORCEDETH GIGABIT ETHERNET DRIVER
7099 M:      Rain River <rain.1986.08.12@gmail.com>
7100 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7101 L:      netdev@vger.kernel.org
7102 S:      Maintained
7103 F:      drivers/net/ethernet/nvidia/*
7104
7105 FPGA DFL DRIVERS
7106 M:      Wu Hao <hao.wu@intel.com>
7107 R:      Tom Rix <trix@redhat.com>
7108 L:      linux-fpga@vger.kernel.org
7109 S:      Maintained
7110 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7111 F:      Documentation/fpga/dfl.rst
7112 F:      drivers/fpga/dfl*
7113 F:      drivers/uio/uio_dfl.c
7114 F:      include/linux/dfl.h
7115 F:      include/uapi/linux/fpga-dfl.h
7116
7117 FPGA MANAGER FRAMEWORK
7118 M:      Moritz Fischer <mdf@kernel.org>
7119 R:      Tom Rix <trix@redhat.com>
7120 L:      linux-fpga@vger.kernel.org
7121 S:      Maintained
7122 W:      http://www.rocketboards.org
7123 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7125 F:      Documentation/devicetree/bindings/fpga/
7126 F:      Documentation/driver-api/fpga/
7127 F:      Documentation/fpga/
7128 F:      drivers/fpga/
7129 F:      include/linux/fpga/
7130
7131 FPU EMULATOR
7132 M:      Bill Metzenthen <billm@melbpc.org.au>
7133 S:      Maintained
7134 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7135 F:      arch/x86/math-emu/
7136
7137 FRAMEBUFFER LAYER
7138 L:      dri-devel@lists.freedesktop.org
7139 L:      linux-fbdev@vger.kernel.org
7140 S:      Orphan
7141 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7142 T:      git git://anongit.freedesktop.org/drm/drm-misc
7143 F:      Documentation/fb/
7144 F:      drivers/video/
7145 F:      include/linux/fb.h
7146 F:      include/uapi/linux/fb.h
7147 F:      include/uapi/video/
7148 F:      include/video/
7149
7150 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7151 M:      Horia Geantă <horia.geanta@nxp.com>
7152 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
7153 L:      linux-crypto@vger.kernel.org
7154 S:      Maintained
7155 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7156 F:      drivers/crypto/caam/
7157
7158 FREESCALE COLDFIRE M5441X MMC DRIVER
7159 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7160 L:      linux-mmc@vger.kernel.org
7161 S:      Maintained
7162 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7163 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7164
7165 FREESCALE DIU FRAMEBUFFER DRIVER
7166 M:      Timur Tabi <timur@kernel.org>
7167 L:      linux-fbdev@vger.kernel.org
7168 S:      Maintained
7169 F:      drivers/video/fbdev/fsl-diu-fb.*
7170
7171 FREESCALE DMA DRIVER
7172 M:      Li Yang <leoyang.li@nxp.com>
7173 M:      Zhang Wei <zw@zh-kernel.org>
7174 L:      linuxppc-dev@lists.ozlabs.org
7175 S:      Maintained
7176 F:      drivers/dma/fsldma.*
7177
7178 FREESCALE DSPI DRIVER
7179 M:      Vladimir Oltean <olteanv@gmail.com>
7180 L:      linux-spi@vger.kernel.org
7181 S:      Maintained
7182 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7183 F:      drivers/spi/spi-fsl-dspi.c
7184 F:      include/linux/spi/spi-fsl-dspi.h
7185
7186 FREESCALE ENETC ETHERNET DRIVERS
7187 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7188 L:      netdev@vger.kernel.org
7189 S:      Maintained
7190 F:      drivers/net/ethernet/freescale/enetc/
7191
7192 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7193 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7194 L:      netdev@vger.kernel.org
7195 S:      Maintained
7196 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7197 F:      drivers/net/ethernet/freescale/gianfar*
7198
7199 FREESCALE GPMI NAND DRIVER
7200 M:      Han Xu <han.xu@nxp.com>
7201 L:      linux-mtd@lists.infradead.org
7202 S:      Maintained
7203 F:      drivers/mtd/nand/raw/gpmi-nand/*
7204
7205 FREESCALE I2C CPM DRIVER
7206 M:      Jochen Friedrich <jochen@scram.de>
7207 L:      linuxppc-dev@lists.ozlabs.org
7208 L:      linux-i2c@vger.kernel.org
7209 S:      Maintained
7210 F:      drivers/i2c/busses/i2c-cpm.c
7211
7212 FREESCALE IMX / MXC FEC DRIVER
7213 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7214 L:      netdev@vger.kernel.org
7215 S:      Maintained
7216 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
7217 F:      drivers/net/ethernet/freescale/fec.h
7218 F:      drivers/net/ethernet/freescale/fec_main.c
7219 F:      drivers/net/ethernet/freescale/fec_ptp.c
7220
7221 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7222 M:      Sascha Hauer <s.hauer@pengutronix.de>
7223 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7224 L:      linux-fbdev@vger.kernel.org
7225 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7226 S:      Maintained
7227 F:      drivers/video/fbdev/imxfb.c
7228 F:      include/linux/platform_data/video-imxfb.h
7229
7230 FREESCALE IMX DDR PMU DRIVER
7231 M:      Frank Li <Frank.li@nxp.com>
7232 L:      linux-arm-kernel@lists.infradead.org
7233 S:      Maintained
7234 F:      Documentation/admin-guide/perf/imx-ddr.rst
7235 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7236 F:      drivers/perf/fsl_imx8_ddr_perf.c
7237
7238 FREESCALE IMX I2C DRIVER
7239 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7240 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7241 L:      linux-i2c@vger.kernel.org
7242 S:      Maintained
7243 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7244 F:      drivers/i2c/busses/i2c-imx.c
7245
7246 FREESCALE IMX LPI2C DRIVER
7247 M:      Dong Aisheng <aisheng.dong@nxp.com>
7248 L:      linux-i2c@vger.kernel.org
7249 L:      linux-imx@nxp.com
7250 S:      Maintained
7251 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7252 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7253
7254 FREESCALE QORIQ DPAA ETHERNET DRIVER
7255 M:      Madalin Bucur <madalin.bucur@nxp.com>
7256 L:      netdev@vger.kernel.org
7257 S:      Maintained
7258 F:      drivers/net/ethernet/freescale/dpaa
7259
7260 FREESCALE QORIQ DPAA FMAN DRIVER
7261 M:      Madalin Bucur <madalin.bucur@nxp.com>
7262 L:      netdev@vger.kernel.org
7263 S:      Maintained
7264 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7265 F:      drivers/net/ethernet/freescale/fman
7266
7267 FREESCALE QORIQ PTP CLOCK DRIVER
7268 M:      Yangbo Lu <yangbo.lu@nxp.com>
7269 L:      netdev@vger.kernel.org
7270 S:      Maintained
7271 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7272 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7273 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7274 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7275 F:      drivers/ptp/ptp_qoriq.c
7276 F:      drivers/ptp/ptp_qoriq_debugfs.c
7277 F:      include/linux/fsl/ptp_qoriq.h
7278
7279 FREESCALE QUAD SPI DRIVER
7280 M:      Han Xu <han.xu@nxp.com>
7281 L:      linux-spi@vger.kernel.org
7282 S:      Maintained
7283 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7284 F:      drivers/spi/spi-fsl-qspi.c
7285
7286 FREESCALE QUICC ENGINE LIBRARY
7287 M:      Qiang Zhao <qiang.zhao@nxp.com>
7288 L:      linuxppc-dev@lists.ozlabs.org
7289 S:      Maintained
7290 F:      drivers/soc/fsl/qe/
7291 F:      include/soc/fsl/*qe*.h
7292 F:      include/soc/fsl/*ucc*.h
7293
7294 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7295 M:      Li Yang <leoyang.li@nxp.com>
7296 L:      netdev@vger.kernel.org
7297 L:      linuxppc-dev@lists.ozlabs.org
7298 S:      Maintained
7299 F:      drivers/net/ethernet/freescale/ucc_geth*
7300
7301 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7302 M:      Zhao Qiang <qiang.zhao@nxp.com>
7303 L:      netdev@vger.kernel.org
7304 L:      linuxppc-dev@lists.ozlabs.org
7305 S:      Maintained
7306 F:      drivers/net/wan/fsl_ucc_hdlc*
7307
7308 FREESCALE QUICC ENGINE UCC UART DRIVER
7309 M:      Timur Tabi <timur@kernel.org>
7310 L:      linuxppc-dev@lists.ozlabs.org
7311 S:      Maintained
7312 F:      drivers/tty/serial/ucc_uart.c
7313
7314 FREESCALE SOC DRIVERS
7315 M:      Li Yang <leoyang.li@nxp.com>
7316 L:      linuxppc-dev@lists.ozlabs.org
7317 L:      linux-arm-kernel@lists.infradead.org
7318 S:      Maintained
7319 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7320 F:      Documentation/devicetree/bindings/soc/fsl/
7321 F:      drivers/soc/fsl/
7322 F:      include/linux/fsl/
7323
7324 FREESCALE SOC FS_ENET DRIVER
7325 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7326 L:      linuxppc-dev@lists.ozlabs.org
7327 L:      netdev@vger.kernel.org
7328 S:      Maintained
7329 F:      drivers/net/ethernet/freescale/fs_enet/
7330 F:      include/linux/fs_enet_pd.h
7331
7332 FREESCALE SOC SOUND DRIVERS
7333 M:      Timur Tabi <timur@kernel.org>
7334 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7335 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7336 R:      Fabio Estevam <festevam@gmail.com>
7337 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7338 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7339 L:      linuxppc-dev@lists.ozlabs.org
7340 S:      Maintained
7341 F:      sound/soc/fsl/fsl*
7342 F:      sound/soc/fsl/imx*
7343 F:      sound/soc/fsl/mpc8610_hpcd.c
7344
7345 FREESCALE USB PERIPHERAL DRIVERS
7346 M:      Li Yang <leoyang.li@nxp.com>
7347 L:      linux-usb@vger.kernel.org
7348 L:      linuxppc-dev@lists.ozlabs.org
7349 S:      Maintained
7350 F:      drivers/usb/gadget/udc/fsl*
7351
7352 FREESCALE USB PHY DRIVER
7353 M:      Ran Wang <ran.wang_1@nxp.com>
7354 L:      linux-usb@vger.kernel.org
7355 L:      linuxppc-dev@lists.ozlabs.org
7356 S:      Maintained
7357 F:      drivers/usb/phy/phy-fsl-usb*
7358
7359 FREEVXFS FILESYSTEM
7360 M:      Christoph Hellwig <hch@infradead.org>
7361 S:      Maintained
7362 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7363 F:      fs/freevxfs/
7364
7365 FREEZER
7366 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7367 M:      Pavel Machek <pavel@ucw.cz>
7368 L:      linux-pm@vger.kernel.org
7369 S:      Supported
7370 F:      Documentation/power/freezing-of-tasks.rst
7371 F:      include/linux/freezer.h
7372 F:      kernel/freezer.c
7373
7374 FRONTSWAP API
7375 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7376 L:      linux-kernel@vger.kernel.org
7377 S:      Maintained
7378 F:      include/linux/frontswap.h
7379 F:      mm/frontswap.c
7380
7381 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7382 M:      David Howells <dhowells@redhat.com>
7383 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7384 S:      Supported
7385 F:      Documentation/filesystems/caching/
7386 F:      fs/fscache/
7387 F:      include/linux/fscache*.h
7388
7389 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7390 M:      Theodore Y. Ts'o <tytso@mit.edu>
7391 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7392 M:      Eric Biggers <ebiggers@kernel.org>
7393 L:      linux-fscrypt@vger.kernel.org
7394 S:      Supported
7395 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7396 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7397 F:      Documentation/filesystems/fscrypt.rst
7398 F:      fs/crypto/
7399 F:      include/linux/fscrypt*.h
7400 F:      include/uapi/linux/fscrypt.h
7401
7402 FSI SUBSYSTEM
7403 M:      Jeremy Kerr <jk@ozlabs.org>
7404 M:      Joel Stanley <joel@jms.id.au>
7405 R:      Alistar Popple <alistair@popple.id.au>
7406 R:      Eddie James <eajames@linux.ibm.com>
7407 L:      linux-fsi@lists.ozlabs.org
7408 S:      Supported
7409 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7411 F:      drivers/fsi/
7412 F:      include/linux/fsi*.h
7413 F:      include/trace/events/fsi*.h
7414
7415 FSI-ATTACHED I2C DRIVER
7416 M:      Eddie James <eajames@linux.ibm.com>
7417 L:      linux-i2c@vger.kernel.org
7418 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7419 S:      Maintained
7420 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7421 F:      drivers/i2c/busses/i2c-fsi.c
7422
7423 FSI-ATTACHED SPI DRIVER
7424 M:      Eddie James <eajames@linux.ibm.com>
7425 L:      linux-spi@vger.kernel.org
7426 S:      Maintained
7427 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7428 F:      drivers/spi/spi-fsi.c
7429
7430 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7431 M:      Jan Kara <jack@suse.cz>
7432 R:      Amir Goldstein <amir73il@gmail.com>
7433 L:      linux-fsdevel@vger.kernel.org
7434 S:      Maintained
7435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7436 F:      fs/notify/
7437 F:      include/linux/fsnotify*.h
7438
7439 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7440 M:      Eric Biggers <ebiggers@kernel.org>
7441 M:      Theodore Y. Ts'o <tytso@mit.edu>
7442 L:      linux-fscrypt@vger.kernel.org
7443 S:      Supported
7444 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7445 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7446 F:      Documentation/filesystems/fsverity.rst
7447 F:      fs/verity/
7448 F:      include/linux/fsverity.h
7449 F:      include/uapi/linux/fsverity.h
7450
7451 FUJITSU LAPTOP EXTRAS
7452 M:      Jonathan Woithe <jwoithe@just42.net>
7453 L:      platform-driver-x86@vger.kernel.org
7454 S:      Maintained
7455 F:      drivers/platform/x86/fujitsu-laptop.c
7456
7457 FUJITSU M-5MO LS CAMERA ISP DRIVER
7458 M:      Kyungmin Park <kyungmin.park@samsung.com>
7459 M:      Heungjun Kim <riverful.kim@samsung.com>
7460 L:      linux-media@vger.kernel.org
7461 S:      Maintained
7462 F:      drivers/media/i2c/m5mols/
7463 F:      include/media/i2c/m5mols.h
7464
7465 FUJITSU TABLET EXTRAS
7466 M:      Robert Gerlach <khnz@gmx.de>
7467 L:      platform-driver-x86@vger.kernel.org
7468 S:      Maintained
7469 F:      drivers/platform/x86/fujitsu-tablet.c
7470
7471 FUSE: FILESYSTEM IN USERSPACE
7472 M:      Miklos Szeredi <miklos@szeredi.hu>
7473 L:      linux-fsdevel@vger.kernel.org
7474 S:      Maintained
7475 W:      https://github.com/libfuse/
7476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7477 F:      Documentation/filesystems/fuse.rst
7478 F:      fs/fuse/
7479 F:      include/uapi/linux/fuse.h
7480
7481 FUTEX SUBSYSTEM
7482 M:      Thomas Gleixner <tglx@linutronix.de>
7483 M:      Ingo Molnar <mingo@redhat.com>
7484 R:      Peter Zijlstra <peterz@infradead.org>
7485 R:      Darren Hart <dvhart@infradead.org>
7486 R:      Davidlohr Bueso <dave@stgolabs.net>
7487 L:      linux-kernel@vger.kernel.org
7488 S:      Maintained
7489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7490 F:      Documentation/locking/*futex*
7491 F:      include/asm-generic/futex.h
7492 F:      include/linux/futex.h
7493 F:      include/uapi/linux/futex.h
7494 F:      kernel/futex.c
7495 F:      tools/perf/bench/futex*
7496 F:      tools/testing/selftests/futex/
7497
7498 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7499 M:      Tim Harvey <tharvey@gateworks.com>
7500 M:      Robert Jones <rjones@gateworks.com>
7501 S:      Maintained
7502 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7503 F:      drivers/mfd/gateworks-gsc.c
7504 F:      include/linux/mfd/gsc.h
7505 F:      Documentation/hwmon/gsc-hwmon.rst
7506 F:      drivers/hwmon/gsc-hwmon.c
7507 F:      include/linux/platform_data/gsc_hwmon.h
7508
7509 GCC PLUGINS
7510 M:      Kees Cook <keescook@chromium.org>
7511 L:      linux-hardening@vger.kernel.org
7512 S:      Maintained
7513 F:      Documentation/kbuild/gcc-plugins.rst
7514 F:      scripts/Makefile.gcc-plugins
7515 F:      scripts/gcc-plugins/
7516
7517 GCOV BASED KERNEL PROFILING
7518 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7519 S:      Maintained
7520 F:      Documentation/dev-tools/gcov.rst
7521 F:      kernel/gcov/
7522
7523 GDB KERNEL DEBUGGING HELPER SCRIPTS
7524 M:      Jan Kiszka <jan.kiszka@siemens.com>
7525 M:      Kieran Bingham <kbingham@kernel.org>
7526 S:      Supported
7527 F:      scripts/gdb/
7528
7529 GEMTEK FM RADIO RECEIVER DRIVER
7530 M:      Hans Verkuil <hverkuil@xs4all.nl>
7531 L:      linux-media@vger.kernel.org
7532 S:      Maintained
7533 W:      https://linuxtv.org
7534 T:      git git://linuxtv.org/media_tree.git
7535 F:      drivers/media/radio/radio-gemtek*
7536
7537 GENERIC ARCHITECTURE TOPOLOGY
7538 M:      Sudeep Holla <sudeep.holla@arm.com>
7539 L:      linux-kernel@vger.kernel.org
7540 S:      Maintained
7541 F:      drivers/base/arch_topology.c
7542 F:      include/linux/arch_topology.h
7543
7544 GENERIC ENTRY CODE
7545 M:      Thomas Gleixner <tglx@linutronix.de>
7546 M:      Peter Zijlstra <peterz@infradead.org>
7547 M:      Andy Lutomirski <luto@kernel.org>
7548 L:      linux-kernel@vger.kernel.org
7549 S:      Maintained
7550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7551 F:      include/linux/entry-common.h
7552 F:      include/linux/entry-kvm.h
7553 F:      kernel/entry/
7554
7555 GENERIC GPIO I2C DRIVER
7556 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7557 S:      Supported
7558 F:      drivers/i2c/busses/i2c-gpio.c
7559 F:      include/linux/platform_data/i2c-gpio.h
7560
7561 GENERIC GPIO I2C MULTIPLEXER DRIVER
7562 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7563 L:      linux-i2c@vger.kernel.org
7564 S:      Supported
7565 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7566 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7567 F:      include/linux/platform_data/i2c-mux-gpio.h
7568
7569 GENERIC HDLC (WAN) DRIVERS
7570 M:      Krzysztof Halasa <khc@pm.waw.pl>
7571 S:      Maintained
7572 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7573 F:      drivers/net/wan/c101.c
7574 F:      drivers/net/wan/hd6457*
7575 F:      drivers/net/wan/hdlc*
7576 F:      drivers/net/wan/n2.c
7577 F:      drivers/net/wan/pc300too.c
7578 F:      drivers/net/wan/pci200syn.c
7579 F:      drivers/net/wan/wanxl*
7580
7581 GENERIC INCLUDE/ASM HEADER FILES
7582 M:      Arnd Bergmann <arnd@arndb.de>
7583 L:      linux-arch@vger.kernel.org
7584 S:      Maintained
7585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7586 F:      include/asm-generic/
7587 F:      include/uapi/asm-generic/
7588
7589 GENERIC PHY FRAMEWORK
7590 M:      Kishon Vijay Abraham I <kishon@ti.com>
7591 M:      Vinod Koul <vkoul@kernel.org>
7592 L:      linux-phy@lists.infradead.org
7593 S:      Supported
7594 Q:      https://patchwork.kernel.org/project/linux-phy/list/
7595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7596 F:      Documentation/devicetree/bindings/phy/
7597 F:      drivers/phy/
7598 F:      include/linux/phy/
7599
7600 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7601 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7602 S:      Supported
7603 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7604
7605 GENERIC PM DOMAINS
7606 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7607 M:      Kevin Hilman <khilman@kernel.org>
7608 M:      Ulf Hansson <ulf.hansson@linaro.org>
7609 L:      linux-pm@vger.kernel.org
7610 S:      Supported
7611 F:      Documentation/devicetree/bindings/power/power?domain*
7612 F:      drivers/base/power/domain*.c
7613 F:      include/linux/pm_domain.h
7614
7615 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7616 M:      Eugen Hristev <eugen.hristev@microchip.com>
7617 L:      linux-input@vger.kernel.org
7618 S:      Maintained
7619 F:      drivers/input/touchscreen/resistive-adc-touch.c
7620
7621 GENERIC UIO DRIVER FOR PCI DEVICES
7622 M:      "Michael S. Tsirkin" <mst@redhat.com>
7623 L:      kvm@vger.kernel.org
7624 S:      Supported
7625 F:      drivers/uio/uio_pci_generic.c
7626
7627 GENERIC VDSO LIBRARY
7628 M:      Andy Lutomirski <luto@kernel.org>
7629 M:      Thomas Gleixner <tglx@linutronix.de>
7630 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7631 L:      linux-kernel@vger.kernel.org
7632 S:      Maintained
7633 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7634 F:      include/asm-generic/vdso/vsyscall.h
7635 F:      include/vdso/
7636 F:      kernel/time/vsyscall.c
7637 F:      lib/vdso/
7638
7639 GENWQE (IBM Generic Workqueue Card)
7640 M:      Frank Haverkamp <haver@linux.ibm.com>
7641 S:      Supported
7642 F:      drivers/misc/genwqe/
7643
7644 GET_MAINTAINER SCRIPT
7645 M:      Joe Perches <joe@perches.com>
7646 S:      Maintained
7647 F:      scripts/get_maintainer.pl
7648
7649 GFS2 FILE SYSTEM
7650 M:      Bob Peterson <rpeterso@redhat.com>
7651 M:      Andreas Gruenbacher <agruenba@redhat.com>
7652 L:      cluster-devel@redhat.com
7653 S:      Supported
7654 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
7655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7656 F:      Documentation/filesystems/gfs2*
7657 F:      fs/gfs2/
7658 F:      include/uapi/linux/gfs2_ondisk.h
7659
7660 GIGABYTE WMI DRIVER
7661 M:      Thomas Weißschuh <thomas@weissschuh.net>
7662 L:      platform-driver-x86@vger.kernel.org
7663 S:      Maintained
7664 F:      drivers/platform/x86/gigabyte-wmi.c
7665
7666 GNSS SUBSYSTEM
7667 M:      Johan Hovold <johan@kernel.org>
7668 S:      Maintained
7669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7670 F:      Documentation/ABI/testing/sysfs-class-gnss
7671 F:      Documentation/devicetree/bindings/gnss/
7672 F:      drivers/gnss/
7673 F:      include/linux/gnss.h
7674
7675 GO7007 MPEG CODEC
7676 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7677 L:      linux-media@vger.kernel.org
7678 S:      Maintained
7679 F:      drivers/media/usb/go7007/
7680
7681 GOODIX TOUCHSCREEN
7682 M:      Bastien Nocera <hadess@hadess.net>
7683 L:      linux-input@vger.kernel.org
7684 S:      Maintained
7685 F:      drivers/input/touchscreen/goodix.c
7686
7687 GOOGLE ETHERNET DRIVERS
7688 M:      Catherine Sullivan <csully@google.com>
7689 R:      Sagi Shahar <sagis@google.com>
7690 R:      Jon Olson <jonolson@google.com>
7691 L:      netdev@vger.kernel.org
7692 S:      Supported
7693 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
7694 F:      drivers/net/ethernet/google
7695
7696 GPD POCKET FAN DRIVER
7697 M:      Hans de Goede <hdegoede@redhat.com>
7698 L:      platform-driver-x86@vger.kernel.org
7699 S:      Maintained
7700 F:      drivers/platform/x86/gpd-pocket-fan.c
7701
7702 GPIO ACPI SUPPORT
7703 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7704 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7705 L:      linux-gpio@vger.kernel.org
7706 L:      linux-acpi@vger.kernel.org
7707 S:      Maintained
7708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
7709 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7710 F:      drivers/gpio/gpiolib-acpi.c
7711 F:      drivers/gpio/gpiolib-acpi.h
7712
7713 GPIO AGGREGATOR
7714 M:      Geert Uytterhoeven <geert+renesas@glider.be>
7715 L:      linux-gpio@vger.kernel.org
7716 S:      Supported
7717 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7718 F:      drivers/gpio/gpio-aggregator.c
7719
7720 GPIO IR Transmitter
7721 M:      Sean Young <sean@mess.org>
7722 L:      linux-media@vger.kernel.org
7723 S:      Maintained
7724 F:      drivers/media/rc/gpio-ir-tx.c
7725
7726 GPIO MOCKUP DRIVER
7727 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7728 L:      linux-gpio@vger.kernel.org
7729 S:      Maintained
7730 F:      drivers/gpio/gpio-mockup.c
7731 F:      tools/testing/selftests/gpio/
7732
7733 GPIO REGMAP
7734 R:      Michael Walle <michael@walle.cc>
7735 S:      Maintained
7736 F:      drivers/gpio/gpio-regmap.c
7737 F:      include/linux/gpio/regmap.h
7738
7739 GPIO SUBSYSTEM
7740 M:      Linus Walleij <linus.walleij@linaro.org>
7741 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7742 L:      linux-gpio@vger.kernel.org
7743 S:      Maintained
7744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7745 F:      Documentation/ABI/obsolete/sysfs-gpio
7746 F:      Documentation/ABI/testing/gpio-cdev
7747 F:      Documentation/admin-guide/gpio/
7748 F:      Documentation/devicetree/bindings/gpio/
7749 F:      Documentation/driver-api/gpio/
7750 F:      drivers/gpio/
7751 F:      include/asm-generic/gpio.h
7752 F:      include/linux/gpio.h
7753 F:      include/linux/gpio/
7754 F:      include/linux/of_gpio.h
7755 F:      include/uapi/linux/gpio.h
7756 F:      tools/gpio/
7757
7758 GRE DEMULTIPLEXER DRIVER
7759 M:      Dmitry Kozlov <xeb@mail.ru>
7760 L:      netdev@vger.kernel.org
7761 S:      Maintained
7762 F:      include/net/gre.h
7763 F:      net/ipv4/gre_demux.c
7764 F:      net/ipv4/gre_offload.c
7765
7766 GRETH 10/100/1G Ethernet MAC device driver
7767 M:      Andreas Larsson <andreas@gaisler.com>
7768 L:      netdev@vger.kernel.org
7769 S:      Maintained
7770 F:      drivers/net/ethernet/aeroflex/
7771
7772 GREYBUS AUDIO PROTOCOLS DRIVERS
7773 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7774 M:      Mark Greer <mgreer@animalcreek.com>
7775 S:      Maintained
7776 F:      drivers/staging/greybus/audio_apbridgea.c
7777 F:      drivers/staging/greybus/audio_apbridgea.h
7778 F:      drivers/staging/greybus/audio_codec.c
7779 F:      drivers/staging/greybus/audio_codec.h
7780 F:      drivers/staging/greybus/audio_gb.c
7781 F:      drivers/staging/greybus/audio_manager.c
7782 F:      drivers/staging/greybus/audio_manager.h
7783 F:      drivers/staging/greybus/audio_manager_module.c
7784 F:      drivers/staging/greybus/audio_manager_private.h
7785 F:      drivers/staging/greybus/audio_manager_sysfs.c
7786 F:      drivers/staging/greybus/audio_module.c
7787 F:      drivers/staging/greybus/audio_topology.c
7788
7789 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7790 M:      Viresh Kumar <vireshk@kernel.org>
7791 S:      Maintained
7792 F:      drivers/staging/greybus/authentication.c
7793 F:      drivers/staging/greybus/bootrom.c
7794 F:      drivers/staging/greybus/firmware.h
7795 F:      drivers/staging/greybus/fw-core.c
7796 F:      drivers/staging/greybus/fw-download.c
7797 F:      drivers/staging/greybus/fw-management.c
7798 F:      drivers/staging/greybus/greybus_authentication.h
7799 F:      drivers/staging/greybus/greybus_firmware.h
7800 F:      drivers/staging/greybus/hid.c
7801 F:      drivers/staging/greybus/i2c.c
7802 F:      drivers/staging/greybus/spi.c
7803 F:      drivers/staging/greybus/spilib.c
7804 F:      drivers/staging/greybus/spilib.h
7805
7806 GREYBUS LOOPBACK DRIVER
7807 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7808 S:      Maintained
7809 F:      drivers/staging/greybus/loopback.c
7810
7811 GREYBUS PLATFORM DRIVERS
7812 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7813 S:      Maintained
7814 F:      drivers/staging/greybus/arche-apb-ctrl.c
7815 F:      drivers/staging/greybus/arche-platform.c
7816 F:      drivers/staging/greybus/arche_platform.h
7817
7818 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7819 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7820 S:      Maintained
7821 F:      drivers/staging/greybus/gpio.c
7822 F:      drivers/staging/greybus/light.c
7823 F:      drivers/staging/greybus/power_supply.c
7824 F:      drivers/staging/greybus/sdio.c
7825 F:      drivers/staging/greybus/spi.c
7826 F:      drivers/staging/greybus/spilib.c
7827
7828 GREYBUS SUBSYSTEM
7829 M:      Johan Hovold <johan@kernel.org>
7830 M:      Alex Elder <elder@kernel.org>
7831 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7832 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7833 S:      Maintained
7834 F:      drivers/greybus/
7835 F:      drivers/staging/greybus/
7836 F:      include/linux/greybus.h
7837 F:      include/linux/greybus/
7838
7839 GREYBUS UART PROTOCOLS DRIVERS
7840 M:      David Lin <dtwlin@gmail.com>
7841 S:      Maintained
7842 F:      drivers/staging/greybus/log.c
7843 F:      drivers/staging/greybus/uart.c
7844
7845 GS1662 VIDEO SERIALIZER
7846 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7847 L:      linux-media@vger.kernel.org
7848 S:      Maintained
7849 T:      git git://linuxtv.org/media_tree.git
7850 F:      drivers/media/spi/gs1662.c
7851
7852 GSPCA FINEPIX SUBDRIVER
7853 M:      Frank Zago <frank@zago.net>
7854 L:      linux-media@vger.kernel.org
7855 S:      Maintained
7856 T:      git git://linuxtv.org/media_tree.git
7857 F:      drivers/media/usb/gspca/finepix.c
7858
7859 GSPCA GL860 SUBDRIVER
7860 M:      Olivier Lorin <o.lorin@laposte.net>
7861 L:      linux-media@vger.kernel.org
7862 S:      Maintained
7863 T:      git git://linuxtv.org/media_tree.git
7864 F:      drivers/media/usb/gspca/gl860/
7865
7866 GSPCA M5602 SUBDRIVER
7867 M:      Erik Andren <erik.andren@gmail.com>
7868 L:      linux-media@vger.kernel.org
7869 S:      Maintained
7870 T:      git git://linuxtv.org/media_tree.git
7871 F:      drivers/media/usb/gspca/m5602/
7872
7873 GSPCA PAC207 SONIXB SUBDRIVER
7874 M:      Hans Verkuil <hverkuil@xs4all.nl>
7875 L:      linux-media@vger.kernel.org
7876 S:      Odd Fixes
7877 T:      git git://linuxtv.org/media_tree.git
7878 F:      drivers/media/usb/gspca/pac207.c
7879
7880 GSPCA SN9C20X SUBDRIVER
7881 M:      Brian Johnson <brijohn@gmail.com>
7882 L:      linux-media@vger.kernel.org
7883 S:      Maintained
7884 T:      git git://linuxtv.org/media_tree.git
7885 F:      drivers/media/usb/gspca/sn9c20x.c
7886
7887 GSPCA T613 SUBDRIVER
7888 M:      Leandro Costantino <lcostantino@gmail.com>
7889 L:      linux-media@vger.kernel.org
7890 S:      Maintained
7891 T:      git git://linuxtv.org/media_tree.git
7892 F:      drivers/media/usb/gspca/t613.c
7893
7894 GSPCA USB WEBCAM DRIVER
7895 M:      Hans Verkuil <hverkuil@xs4all.nl>
7896 L:      linux-media@vger.kernel.org
7897 S:      Odd Fixes
7898 T:      git git://linuxtv.org/media_tree.git
7899 F:      drivers/media/usb/gspca/
7900
7901 GTP (GPRS Tunneling Protocol)
7902 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7903 M:      Harald Welte <laforge@gnumonks.org>
7904 L:      osmocom-net-gprs@lists.osmocom.org
7905 S:      Maintained
7906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7907 F:      drivers/net/gtp.c
7908
7909 GUID PARTITION TABLE (GPT)
7910 M:      Davidlohr Bueso <dave@stgolabs.net>
7911 L:      linux-efi@vger.kernel.org
7912 S:      Maintained
7913 F:      block/partitions/efi.*
7914
7915 H8/300 ARCHITECTURE
7916 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
7917 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7918 S:      Maintained
7919 W:      http://uclinux-h8.sourceforge.jp
7920 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7921 F:      arch/h8300/
7922 F:      drivers/clk/h8300/
7923 F:      drivers/clocksource/h8300_*.c
7924 F:      drivers/irqchip/irq-renesas-h8*.c
7925
7926 HABANALABS PCI DRIVER
7927 M:      Oded Gabbay <ogabbay@kernel.org>
7928 S:      Supported
7929 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
7930 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7931 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7932 F:      drivers/misc/habanalabs/
7933 F:      include/uapi/misc/habanalabs.h
7934
7935 HACKRF MEDIA DRIVER
7936 M:      Antti Palosaari <crope@iki.fi>
7937 L:      linux-media@vger.kernel.org
7938 S:      Maintained
7939 W:      https://linuxtv.org
7940 W:      http://palosaari.fi/linux/
7941 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7942 T:      git git://linuxtv.org/anttip/media_tree.git
7943 F:      drivers/media/usb/hackrf/
7944
7945 HANTRO VPU CODEC DRIVER
7946 M:      Ezequiel Garcia <ezequiel@collabora.com>
7947 M:      Philipp Zabel <p.zabel@pengutronix.de>
7948 L:      linux-media@vger.kernel.org
7949 L:      linux-rockchip@lists.infradead.org
7950 S:      Maintained
7951 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
7952 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
7953 F:      drivers/staging/media/hantro/
7954
7955 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7956 M:      Frank Seidel <frank@f-seidel.de>
7957 L:      platform-driver-x86@vger.kernel.org
7958 S:      Maintained
7959 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7960 F:      drivers/platform/x86/hdaps.c
7961
7962 HARDWARE MONITORING
7963 M:      Jean Delvare <jdelvare@suse.com>
7964 M:      Guenter Roeck <linux@roeck-us.net>
7965 L:      linux-hwmon@vger.kernel.org
7966 S:      Maintained
7967 W:      http://hwmon.wiki.kernel.org/
7968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7969 F:      Documentation/devicetree/bindings/hwmon/
7970 F:      Documentation/hwmon/
7971 F:      drivers/hwmon/
7972 F:      include/linux/hwmon*.h
7973 F:      include/trace/events/hwmon*.h
7974 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
7975
7976 HARDWARE RANDOM NUMBER GENERATOR CORE
7977 M:      Matt Mackall <mpm@selenic.com>
7978 M:      Herbert Xu <herbert@gondor.apana.org.au>
7979 L:      linux-crypto@vger.kernel.org
7980 S:      Odd fixes
7981 F:      Documentation/admin-guide/hw_random.rst
7982 F:      Documentation/devicetree/bindings/rng/
7983 F:      drivers/char/hw_random/
7984 F:      include/linux/hw_random.h
7985
7986 HARDWARE SPINLOCK CORE
7987 M:      Ohad Ben-Cohen <ohad@wizery.com>
7988 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
7989 R:      Baolin Wang <baolin.wang7@gmail.com>
7990 L:      linux-remoteproc@vger.kernel.org
7991 S:      Maintained
7992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7993 F:      Documentation/devicetree/bindings/hwlock/
7994 F:      Documentation/locking/hwspinlock.rst
7995 F:      drivers/hwspinlock/
7996 F:      include/linux/hwspinlock.h
7997
7998 HARDWARE TRACING FACILITIES
7999 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8000 S:      Maintained
8001 F:      drivers/hwtracing/
8002
8003 HARMONY SOUND DRIVER
8004 L:      linux-parisc@vger.kernel.org
8005 S:      Maintained
8006 F:      sound/parisc/harmony.*
8007
8008 HDPVR USB VIDEO ENCODER DRIVER
8009 M:      Hans Verkuil <hverkuil@xs4all.nl>
8010 L:      linux-media@vger.kernel.org
8011 S:      Odd Fixes
8012 W:      https://linuxtv.org
8013 T:      git git://linuxtv.org/media_tree.git
8014 F:      drivers/media/usb/hdpvr/
8015
8016 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8017 M:      Matt Hsiao <matt.hsiao@hpe.com>
8018 S:      Supported
8019 F:      drivers/misc/hpilo.[ch]
8020
8021 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8022 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8023 S:      Supported
8024 F:      Documentation/watchdog/hpwdt.rst
8025 F:      drivers/watchdog/hpwdt.c
8026
8027 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8028 M:      Don Brace <don.brace@microchip.com>
8029 L:      storagedev@microchip.com
8030 L:      linux-scsi@vger.kernel.org
8031 S:      Supported
8032 F:      Documentation/scsi/hpsa.rst
8033 F:      drivers/scsi/hpsa*.[ch]
8034 F:      include/linux/cciss*.h
8035 F:      include/uapi/linux/cciss*.h
8036
8037 HFI1 DRIVER
8038 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8039 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8040 L:      linux-rdma@vger.kernel.org
8041 S:      Supported
8042 F:      drivers/infiniband/hw/hfi1
8043
8044 HFS FILESYSTEM
8045 L:      linux-fsdevel@vger.kernel.org
8046 S:      Orphan
8047 F:      Documentation/filesystems/hfs.rst
8048 F:      fs/hfs/
8049
8050 HFSPLUS FILESYSTEM
8051 L:      linux-fsdevel@vger.kernel.org
8052 S:      Orphan
8053 F:      Documentation/filesystems/hfsplus.rst
8054 F:      fs/hfsplus/
8055
8056 HGA FRAMEBUFFER DRIVER
8057 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8058 L:      linux-nvidia@lists.surfsouth.com
8059 S:      Maintained
8060 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8061 F:      drivers/video/fbdev/hgafb.c
8062
8063 HIBERNATION (aka Software Suspend, aka swsusp)
8064 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
8065 M:      Pavel Machek <pavel@ucw.cz>
8066 L:      linux-pm@vger.kernel.org
8067 S:      Supported
8068 B:      https://bugzilla.kernel.org
8069 F:      arch/*/include/asm/suspend*.h
8070 F:      arch/x86/power/
8071 F:      drivers/base/power/
8072 F:      include/linux/freezer.h
8073 F:      include/linux/pm.h
8074 F:      include/linux/suspend.h
8075 F:      kernel/power/
8076
8077 HID CORE LAYER
8078 M:      Jiri Kosina <jikos@kernel.org>
8079 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8080 L:      linux-input@vger.kernel.org
8081 S:      Maintained
8082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8083 F:      drivers/hid/
8084 F:      include/linux/hid*
8085 F:      include/uapi/linux/hid*
8086
8087 HID PLAYSTATION DRIVER
8088 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8089 L:      linux-input@vger.kernel.org
8090 S:      Supported
8091 F:      drivers/hid/hid-playstation.c
8092
8093 HID SENSOR HUB DRIVERS
8094 M:      Jiri Kosina <jikos@kernel.org>
8095 M:      Jonathan Cameron <jic23@kernel.org>
8096 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8097 L:      linux-input@vger.kernel.org
8098 L:      linux-iio@vger.kernel.org
8099 S:      Maintained
8100 F:      Documentation/hid/hid-sensor*
8101 F:      drivers/hid/hid-sensor-*
8102 F:      drivers/iio/*/hid-*
8103 F:      include/linux/hid-sensor-*
8104
8105 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8106 M:      Thomas Gleixner <tglx@linutronix.de>
8107 L:      linux-kernel@vger.kernel.org
8108 S:      Maintained
8109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8110 F:      Documentation/timers/
8111 F:      include/linux/clockchips.h
8112 F:      include/linux/hrtimer.h
8113 F:      kernel/time/clockevents.c
8114 F:      kernel/time/hrtimer.c
8115 F:      kernel/time/timer_*.c
8116
8117 HIGH-SPEED SCC DRIVER FOR AX.25
8118 L:      linux-hams@vger.kernel.org
8119 S:      Orphan
8120 F:      drivers/net/hamradio/dmascc.c
8121 F:      drivers/net/hamradio/scc.c
8122
8123 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8124 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8125 S:      Supported
8126 W:      http://www.highpoint-tech.com
8127 F:      Documentation/scsi/hptiop.rst
8128 F:      drivers/scsi/hptiop.c
8129
8130 HIPPI
8131 M:      Jes Sorensen <jes@trained-monkey.org>
8132 L:      linux-hippi@sunsite.dk
8133 S:      Maintained
8134 F:      drivers/net/hippi/
8135 F:      include/linux/hippidevice.h
8136 F:      include/uapi/linux/if_hippi.h
8137 F:      net/802/hippi.c
8138
8139 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8140 M:      Kurt Kanzenbach <kurt@linutronix.de>
8141 L:      netdev@vger.kernel.org
8142 S:      Maintained
8143 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8144 F:      drivers/net/dsa/hirschmann/*
8145 F:      include/linux/platform_data/hirschmann-hellcreek.h
8146 F:      net/dsa/tag_hellcreek.c
8147
8148 HISILICON DMA DRIVER
8149 M:      Zhou Wang <wangzhou1@hisilicon.com>
8150 L:      dmaengine@vger.kernel.org
8151 S:      Maintained
8152 F:      drivers/dma/hisi_dma.c
8153
8154 HISILICON GPIO DRIVER
8155 M:      Luo Jiaxing <luojiaxing@huawei.com>
8156 L:      linux-gpio@vger.kernel.org
8157 S:      Maintained
8158 F:      drivers/gpio/gpio-hisi.c
8159
8160 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8161 M:      Zaibo Xu <xuzaibo@huawei.com>
8162 L:      linux-crypto@vger.kernel.org
8163 S:      Maintained
8164 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8165 F:      drivers/crypto/hisilicon/hpre/hpre.h
8166 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8167 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8168
8169 HISILICON LPC BUS DRIVER
8170 M:      john.garry@huawei.com
8171 S:      Maintained
8172 W:      http://www.hisilicon.com
8173 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8174 F:      drivers/bus/hisi_lpc.c
8175
8176 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8177 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8178 M:      Salil Mehta <salil.mehta@huawei.com>
8179 L:      netdev@vger.kernel.org
8180 S:      Maintained
8181 W:      http://www.hisilicon.com
8182 F:      drivers/net/ethernet/hisilicon/hns3/
8183
8184 HISILICON NETWORK SUBSYSTEM DRIVER
8185 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8186 M:      Salil Mehta <salil.mehta@huawei.com>
8187 L:      netdev@vger.kernel.org
8188 S:      Maintained
8189 W:      http://www.hisilicon.com
8190 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8191 F:      drivers/net/ethernet/hisilicon/
8192
8193 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8194 M:      John Stultz <john.stultz@linaro.org>
8195 L:      linux-kernel@vger.kernel.org
8196 S:      Maintained
8197 F:      drivers/misc/hisi_hikey_usb.c
8198 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8199
8200 HISILICON PMU DRIVER
8201 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8202 S:      Supported
8203 W:      http://www.hisilicon.com
8204 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8205 F:      drivers/perf/hisilicon
8206
8207 HISILICON QM AND ZIP Controller DRIVER
8208 M:      Zhou Wang <wangzhou1@hisilicon.com>
8209 L:      linux-crypto@vger.kernel.org
8210 S:      Maintained
8211 F:      Documentation/ABI/testing/debugfs-hisi-zip
8212 F:      drivers/crypto/hisilicon/qm.c
8213 F:      drivers/crypto/hisilicon/qm.h
8214 F:      drivers/crypto/hisilicon/sgl.c
8215 F:      drivers/crypto/hisilicon/zip/
8216
8217 HISILICON ROCE DRIVER
8218 M:      Lijun Ou <oulijun@huawei.com>
8219 M:      Wei Hu(Xavier) <huwei87@hisilicon.com>
8220 M:      Weihang Li <liweihang@huawei.com>
8221 L:      linux-rdma@vger.kernel.org
8222 S:      Maintained
8223 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8224 F:      drivers/infiniband/hw/hns/
8225
8226 HISILICON SAS Controller
8227 M:      John Garry <john.garry@huawei.com>
8228 S:      Supported
8229 W:      http://www.hisilicon.com
8230 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8231 F:      drivers/scsi/hisi_sas/
8232
8233 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8234 M:      Zaibo Xu <xuzaibo@huawei.com>
8235 L:      linux-crypto@vger.kernel.org
8236 S:      Maintained
8237 F:      Documentation/ABI/testing/debugfs-hisi-sec
8238 F:      drivers/crypto/hisilicon/sec2/sec.h
8239 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8240 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8241 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8242
8243 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8244 M:      Jay Fang <f.fangjian@huawei.com>
8245 L:      linux-spi@vger.kernel.org
8246 S:      Maintained
8247 W:      http://www.hisilicon.com
8248 F:      drivers/spi/spi-hisi-kunpeng.c
8249
8250 HISILICON STAGING DRIVERS FOR HIKEY 960/970
8251 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8252 S:      Maintained
8253 F:      drivers/staging/hikey9xx/
8254
8255 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8256 M:      Zaibo Xu <xuzaibo@huawei.com>
8257 S:      Maintained
8258 F:      drivers/crypto/hisilicon/trng/trng.c
8259
8260 HISILICON V3XX SPI NOR FLASH Controller Driver
8261 M:      John Garry <john.garry@huawei.com>
8262 S:      Maintained
8263 W:      http://www.hisilicon.com
8264 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8265
8266 HMM - Heterogeneous Memory Management
8267 M:      Jérôme Glisse <jglisse@redhat.com>
8268 L:      linux-mm@kvack.org
8269 S:      Maintained
8270 F:      Documentation/vm/hmm.rst
8271 F:      include/linux/hmm*
8272 F:      lib/test_hmm*
8273 F:      mm/hmm*
8274 F:      tools/testing/selftests/vm/*hmm*
8275
8276 HOST AP DRIVER
8277 M:      Jouni Malinen <j@w1.fi>
8278 L:      linux-wireless@vger.kernel.org
8279 S:      Obsolete
8280 W:      http://w1.fi/hostap-driver.html
8281 F:      drivers/net/wireless/intersil/hostap/
8282
8283 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8284 L:      platform-driver-x86@vger.kernel.org
8285 S:      Orphan
8286 F:      drivers/platform/x86/tc1100-wmi.c
8287
8288 HPET:   High Precision Event Timers driver
8289 M:      Clemens Ladisch <clemens@ladisch.de>
8290 S:      Maintained
8291 F:      Documentation/timers/hpet.rst
8292 F:      drivers/char/hpet.c
8293 F:      include/linux/hpet.h
8294 F:      include/uapi/linux/hpet.h
8295
8296 HPET:   x86
8297 S:      Orphan
8298 F:      arch/x86/include/asm/hpet.h
8299 F:      arch/x86/kernel/hpet.c
8300
8301 HPFS FILESYSTEM
8302 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8303 S:      Maintained
8304 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8305 F:      fs/hpfs/
8306
8307 HSI SUBSYSTEM
8308 M:      Sebastian Reichel <sre@kernel.org>
8309 S:      Maintained
8310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8311 F:      Documentation/ABI/testing/sysfs-bus-hsi
8312 F:      Documentation/driver-api/hsi.rst
8313 F:      drivers/hsi/
8314 F:      include/linux/hsi/
8315 F:      include/uapi/linux/hsi/
8316
8317 HSO 3G MODEM DRIVER
8318 L:      linux-usb@vger.kernel.org
8319 S:      Orphan
8320 F:      drivers/net/usb/hso.c
8321
8322 HSR NETWORK PROTOCOL
8323 L:      netdev@vger.kernel.org
8324 S:      Orphan
8325 F:      net/hsr/
8326
8327 HT16K33 LED CONTROLLER DRIVER
8328 M:      Robin van der Gracht <robin@protonic.nl>
8329 S:      Maintained
8330 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8331 F:      drivers/auxdisplay/ht16k33.c
8332
8333 HTCPEN TOUCHSCREEN DRIVER
8334 M:      Pau Oliva Fora <pof@eslack.org>
8335 L:      linux-input@vger.kernel.org
8336 S:      Maintained
8337 F:      drivers/input/touchscreen/htcpen.c
8338
8339 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8340 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8341 L:      linux-iio@vger.kernel.org
8342 S:      Maintained
8343 W:      http://www.st.com/
8344 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8345 F:      drivers/iio/humidity/hts221*
8346
8347 HUAWEI ETHERNET DRIVER
8348 M:      Bin Luo <luobin9@huawei.com>
8349 L:      netdev@vger.kernel.org
8350 S:      Supported
8351 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8352 F:      drivers/net/ethernet/huawei/hinic/
8353
8354 HUGETLB FILESYSTEM
8355 M:      Mike Kravetz <mike.kravetz@oracle.com>
8356 L:      linux-mm@kvack.org
8357 S:      Maintained
8358 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8359 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8360 F:      Documentation/vm/hugetlbfs_reserv.rst
8361 F:      fs/hugetlbfs/
8362 F:      include/linux/hugetlb.h
8363 F:      mm/hugetlb.c
8364
8365 HVA ST MEDIA DRIVER
8366 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8367 L:      linux-media@vger.kernel.org
8368 S:      Supported
8369 W:      https://linuxtv.org
8370 T:      git git://linuxtv.org/media_tree.git
8371 F:      drivers/media/platform/sti/hva
8372
8373 HWPOISON MEMORY FAILURE HANDLING
8374 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8375 L:      linux-mm@kvack.org
8376 S:      Maintained
8377 F:      mm/hwpoison-inject.c
8378 F:      mm/memory-failure.c
8379
8380 HYGON PROCESSOR SUPPORT
8381 M:      Pu Wen <puwen@hygon.cn>
8382 L:      linux-kernel@vger.kernel.org
8383 S:      Maintained
8384 F:      arch/x86/kernel/cpu/hygon.c
8385
8386 HYNIX HI556 SENSOR DRIVER
8387 M:      Shawn Tu <shawnx.tu@intel.com>
8388 L:      linux-media@vger.kernel.org
8389 S:      Maintained
8390 T:      git git://linuxtv.org/media_tree.git
8391 F:      drivers/media/i2c/hi556.c
8392
8393 Hyper-V/Azure CORE AND DRIVERS
8394 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8395 M:      Haiyang Zhang <haiyangz@microsoft.com>
8396 M:      Stephen Hemminger <sthemmin@microsoft.com>
8397 M:      Wei Liu <wei.liu@kernel.org>
8398 M:      Dexuan Cui <decui@microsoft.com>
8399 L:      linux-hyperv@vger.kernel.org
8400 S:      Supported
8401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8402 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8403 F:      Documentation/ABI/testing/debugfs-hyperv
8404 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8405 F:      arch/x86/hyperv
8406 F:      arch/x86/include/asm/hyperv-tlfs.h
8407 F:      arch/x86/include/asm/mshyperv.h
8408 F:      arch/x86/include/asm/trace/hyperv.h
8409 F:      arch/x86/kernel/cpu/mshyperv.c
8410 F:      drivers/clocksource/hyperv_timer.c
8411 F:      drivers/hid/hid-hyperv.c
8412 F:      drivers/hv/
8413 F:      drivers/input/serio/hyperv-keyboard.c
8414 F:      drivers/iommu/hyperv-iommu.c
8415 F:      drivers/net/ethernet/microsoft/
8416 F:      drivers/net/hyperv/
8417 F:      drivers/pci/controller/pci-hyperv-intf.c
8418 F:      drivers/pci/controller/pci-hyperv.c
8419 F:      drivers/scsi/storvsc_drv.c
8420 F:      drivers/uio/uio_hv_generic.c
8421 F:      drivers/video/fbdev/hyperv_fb.c
8422 F:      include/asm-generic/hyperv-tlfs.h
8423 F:      include/asm-generic/mshyperv.h
8424 F:      include/clocksource/hyperv_timer.h
8425 F:      include/linux/hyperv.h
8426 F:      include/uapi/linux/hyperv.h
8427 F:      net/vmw_vsock/hyperv_transport.c
8428 F:      tools/hv/
8429
8430 HYPERBUS SUPPORT
8431 M:      Vignesh Raghavendra <vigneshr@ti.com>
8432 L:      linux-mtd@lists.infradead.org
8433 S:      Supported
8434 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8435 C:      irc://irc.oftc.net/mtd
8436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8437 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8438 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8439 F:      drivers/mtd/hyperbus/
8440 F:      include/linux/mtd/hyperbus.h
8441
8442 HYPERVISOR VIRTUAL CONSOLE DRIVER
8443 L:      linuxppc-dev@lists.ozlabs.org
8444 S:      Odd Fixes
8445 F:      drivers/tty/hvc/
8446
8447 I2C ACPI SUPPORT
8448 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8449 L:      linux-i2c@vger.kernel.org
8450 L:      linux-acpi@vger.kernel.org
8451 S:      Maintained
8452 F:      drivers/i2c/i2c-core-acpi.c
8453
8454 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8455 M:      Ajay Gupta <ajayg@nvidia.com>
8456 L:      linux-i2c@vger.kernel.org
8457 S:      Maintained
8458 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8459 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8460
8461 I2C MUXES
8462 M:      Peter Rosin <peda@axentia.se>
8463 L:      linux-i2c@vger.kernel.org
8464 S:      Maintained
8465 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8466 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8467 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8468 F:      Documentation/i2c/i2c-topology.rst
8469 F:      Documentation/i2c/muxes/
8470 F:      drivers/i2c/i2c-mux.c
8471 F:      drivers/i2c/muxes/
8472 F:      include/linux/i2c-mux.h
8473
8474 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8475 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8476 L:      linux-i2c@vger.kernel.org
8477 S:      Maintained
8478 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8479 F:      drivers/i2c/busses/i2c-mv64xxx.c
8480
8481 I2C OVER PARALLEL PORT
8482 M:      Jean Delvare <jdelvare@suse.com>
8483 L:      linux-i2c@vger.kernel.org
8484 S:      Maintained
8485 F:      Documentation/i2c/busses/i2c-parport.rst
8486 F:      drivers/i2c/busses/i2c-parport.c
8487
8488 I2C SUBSYSTEM
8489 M:      Wolfram Sang <wsa@kernel.org>
8490 L:      linux-i2c@vger.kernel.org
8491 S:      Maintained
8492 W:      https://i2c.wiki.kernel.org/
8493 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8495 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8496 F:      Documentation/i2c/
8497 F:      drivers/i2c/*
8498 F:      include/linux/i2c-dev.h
8499 F:      include/linux/i2c-smbus.h
8500 F:      include/linux/i2c.h
8501 F:      include/uapi/linux/i2c-*.h
8502 F:      include/uapi/linux/i2c.h
8503
8504 I2C SUBSYSTEM HOST DRIVERS
8505 L:      linux-i2c@vger.kernel.org
8506 S:      Odd Fixes
8507 W:      https://i2c.wiki.kernel.org/
8508 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8509 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8510 F:      Documentation/devicetree/bindings/i2c/
8511 F:      drivers/i2c/algos/
8512 F:      drivers/i2c/busses/
8513
8514 I2C-TAOS-EVM DRIVER
8515 M:      Jean Delvare <jdelvare@suse.com>
8516 L:      linux-i2c@vger.kernel.org
8517 S:      Maintained
8518 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8519 F:      drivers/i2c/busses/i2c-taos-evm.c
8520
8521 I2C-TINY-USB DRIVER
8522 M:      Till Harbaum <till@harbaum.org>
8523 L:      linux-i2c@vger.kernel.org
8524 S:      Maintained
8525 W:      http://www.harbaum.org/till/i2c_tiny_usb
8526 F:      drivers/i2c/busses/i2c-tiny-usb.c
8527
8528 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8529 M:      Jean Delvare <jdelvare@suse.com>
8530 L:      linux-i2c@vger.kernel.org
8531 S:      Maintained
8532 F:      Documentation/i2c/busses/i2c-ali1535.rst
8533 F:      Documentation/i2c/busses/i2c-ali1563.rst
8534 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8535 F:      Documentation/i2c/busses/i2c-amd756.rst
8536 F:      Documentation/i2c/busses/i2c-amd8111.rst
8537 F:      Documentation/i2c/busses/i2c-i801.rst
8538 F:      Documentation/i2c/busses/i2c-nforce2.rst
8539 F:      Documentation/i2c/busses/i2c-piix4.rst
8540 F:      Documentation/i2c/busses/i2c-sis5595.rst
8541 F:      Documentation/i2c/busses/i2c-sis630.rst
8542 F:      Documentation/i2c/busses/i2c-sis96x.rst
8543 F:      Documentation/i2c/busses/i2c-via.rst
8544 F:      Documentation/i2c/busses/i2c-viapro.rst
8545 F:      drivers/i2c/busses/i2c-ali1535.c
8546 F:      drivers/i2c/busses/i2c-ali1563.c
8547 F:      drivers/i2c/busses/i2c-ali15x3.c
8548 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8549 F:      drivers/i2c/busses/i2c-amd756.c
8550 F:      drivers/i2c/busses/i2c-amd8111.c
8551 F:      drivers/i2c/busses/i2c-i801.c
8552 F:      drivers/i2c/busses/i2c-isch.c
8553 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8554 F:      drivers/i2c/busses/i2c-nforce2.c
8555 F:      drivers/i2c/busses/i2c-piix4.c
8556 F:      drivers/i2c/busses/i2c-sis5595.c
8557 F:      drivers/i2c/busses/i2c-sis630.c
8558 F:      drivers/i2c/busses/i2c-sis96x.c
8559 F:      drivers/i2c/busses/i2c-via.c
8560 F:      drivers/i2c/busses/i2c-viapro.c
8561
8562 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8563 M:      Hans de Goede <hdegoede@redhat.com>
8564 L:      linux-i2c@vger.kernel.org
8565 S:      Maintained
8566 F:      drivers/i2c/busses/i2c-cht-wc.c
8567
8568 I2C/SMBUS ISMT DRIVER
8569 M:      Seth Heasley <seth.heasley@intel.com>
8570 M:      Neil Horman <nhorman@tuxdriver.com>
8571 L:      linux-i2c@vger.kernel.org
8572 F:      Documentation/i2c/busses/i2c-ismt.rst
8573 F:      drivers/i2c/busses/i2c-ismt.c
8574
8575 I2C/SMBUS STUB DRIVER
8576 M:      Jean Delvare <jdelvare@suse.com>
8577 L:      linux-i2c@vger.kernel.org
8578 S:      Maintained
8579 F:      drivers/i2c/i2c-stub.c
8580
8581 I3C DRIVER FOR CADENCE I3C MASTER IP
8582 M:      Przemysław Gaj <pgaj@cadence.com>
8583 S:      Maintained
8584 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8585 F:      drivers/i3c/master/i3c-master-cdns.c
8586
8587 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8588 M:      Vitor Soares <vitor.soares@synopsys.com>
8589 S:      Maintained
8590 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8591 F:      drivers/i3c/master/dw*
8592
8593 I3C SUBSYSTEM
8594 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
8595 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8596 S:      Maintained
8597 C:      irc://chat.freenode.net/linux-i3c
8598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8599 F:      Documentation/ABI/testing/sysfs-bus-i3c
8600 F:      Documentation/devicetree/bindings/i3c/
8601 F:      Documentation/driver-api/i3c
8602 F:      drivers/i3c/
8603 F:      include/linux/i3c/
8604
8605 IA64 (Itanium) PLATFORM
8606 L:      linux-ia64@vger.kernel.org
8607 S:      Orphan
8608 F:      Documentation/ia64/
8609 F:      arch/ia64/
8610
8611 IBM Power 842 compression accelerator
8612 M:      Haren Myneni <haren@us.ibm.com>
8613 S:      Supported
8614 F:      crypto/842.c
8615 F:      drivers/crypto/nx/Kconfig
8616 F:      drivers/crypto/nx/Makefile
8617 F:      drivers/crypto/nx/nx-842*
8618 F:      include/linux/sw842.h
8619 F:      lib/842/
8620
8621 IBM Power in-Nest Crypto Acceleration
8622 M:      Breno Leitão <leitao@debian.org>
8623 M:      Nayna Jain <nayna@linux.ibm.com>
8624 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8625 L:      linux-crypto@vger.kernel.org
8626 S:      Supported
8627 F:      drivers/crypto/nx/Kconfig
8628 F:      drivers/crypto/nx/Makefile
8629 F:      drivers/crypto/nx/nx-aes*
8630 F:      drivers/crypto/nx/nx-sha*
8631 F:      drivers/crypto/nx/nx.*
8632 F:      drivers/crypto/nx/nx_csbcpb.h
8633 F:      drivers/crypto/nx/nx_debugfs.c
8634
8635 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8636 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8637 L:      linux-pci@vger.kernel.org
8638 L:      linuxppc-dev@lists.ozlabs.org
8639 S:      Supported
8640 F:      drivers/pci/hotplug/rpadlpar*
8641
8642 IBM Power Linux RAID adapter
8643 M:      Brian King <brking@us.ibm.com>
8644 S:      Supported
8645 F:      drivers/scsi/ipr.*
8646
8647 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8648 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8649 L:      linux-pci@vger.kernel.org
8650 L:      linuxppc-dev@lists.ozlabs.org
8651 S:      Supported
8652 F:      drivers/pci/hotplug/rpaphp*
8653
8654 IBM Power SRIOV Virtual NIC Device Driver
8655 M:      Dany Madden <drt@linux.ibm.com>
8656 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8657 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
8658 L:      netdev@vger.kernel.org
8659 S:      Supported
8660 F:      drivers/net/ethernet/ibm/ibmvnic.*
8661
8662 IBM Power Virtual Accelerator Switchboard
8663 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8664 L:      linuxppc-dev@lists.ozlabs.org
8665 S:      Supported
8666 F:      arch/powerpc/include/asm/vas.h
8667 F:      arch/powerpc/platforms/powernv/copy-paste.h
8668 F:      arch/powerpc/platforms/powernv/vas*
8669
8670 IBM Power Virtual Ethernet Device Driver
8671 M:      Cristobal Forno <cforno12@linux.ibm.com>
8672 L:      netdev@vger.kernel.org
8673 S:      Supported
8674 F:      drivers/net/ethernet/ibm/ibmveth.*
8675
8676 IBM Power Virtual FC Device Drivers
8677 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8678 L:      linux-scsi@vger.kernel.org
8679 S:      Supported
8680 F:      drivers/scsi/ibmvscsi/ibmvfc*
8681
8682 IBM Power Virtual Management Channel Driver
8683 M:      Brad Warrum <bwarrum@linux.ibm.com>
8684 M:      Ritu Agarwal <rituagar@linux.ibm.com>
8685 S:      Supported
8686 F:      drivers/misc/ibmvmc.*
8687
8688 IBM Power Virtual SCSI Device Drivers
8689 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8690 L:      linux-scsi@vger.kernel.org
8691 S:      Supported
8692 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8693 F:      include/scsi/viosrp.h
8694
8695 IBM Power Virtual SCSI Device Target Driver
8696 M:      Michael Cyr <mikecyr@linux.ibm.com>
8697 L:      linux-scsi@vger.kernel.org
8698 L:      target-devel@vger.kernel.org
8699 S:      Supported
8700 F:      drivers/scsi/ibmvscsi_tgt/
8701
8702 IBM Power VMX Cryptographic instructions
8703 M:      Breno Leitão <leitao@debian.org>
8704 M:      Nayna Jain <nayna@linux.ibm.com>
8705 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8706 L:      linux-crypto@vger.kernel.org
8707 S:      Supported
8708 F:      drivers/crypto/vmx/Kconfig
8709 F:      drivers/crypto/vmx/Makefile
8710 F:      drivers/crypto/vmx/aes*
8711 F:      drivers/crypto/vmx/ghash*
8712 F:      drivers/crypto/vmx/ppc-xlate.pl
8713 F:      drivers/crypto/vmx/vmx.c
8714
8715 IBM ServeRAID RAID DRIVER
8716 S:      Orphan
8717 F:      drivers/scsi/ips.*
8718
8719 ICH LPC AND GPIO DRIVER
8720 M:      Peter Tyser <ptyser@xes-inc.com>
8721 S:      Maintained
8722 F:      drivers/gpio/gpio-ich.c
8723 F:      drivers/mfd/lpc_ich.c
8724
8725 ICY I2C DRIVER
8726 M:      Max Staudt <max@enpas.org>
8727 L:      linux-i2c@vger.kernel.org
8728 S:      Maintained
8729 F:      drivers/i2c/busses/i2c-icy.c
8730
8731 IDE SUBSYSTEM
8732 M:      "David S. Miller" <davem@davemloft.net>
8733 L:      linux-ide@vger.kernel.org
8734 S:      Maintained
8735 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8737 F:      Documentation/ide/
8738 F:      drivers/ide/
8739 F:      include/linux/ide.h
8740
8741 IDE/ATAPI DRIVERS
8742 L:      linux-ide@vger.kernel.org
8743 S:      Orphan
8744 F:      Documentation/cdrom/ide-cd.rst
8745 F:      drivers/ide/ide-cd*
8746
8747 IDEAPAD LAPTOP EXTRAS DRIVER
8748 M:      Ike Panhc <ike.pan@canonical.com>
8749 L:      platform-driver-x86@vger.kernel.org
8750 S:      Maintained
8751 W:      http://launchpad.net/ideapad-laptop
8752 F:      drivers/platform/x86/ideapad-laptop.c
8753
8754 IDEAPAD LAPTOP SLIDEBAR DRIVER
8755 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
8756 L:      linux-input@vger.kernel.org
8757 S:      Maintained
8758 W:      https://github.com/o2genum/ideapad-slidebar
8759 F:      drivers/input/misc/ideapad_slidebar.c
8760
8761 IDT VersaClock 5 CLOCK DRIVER
8762 M:      Luca Ceresoli <luca@lucaceresoli.net>
8763 S:      Maintained
8764 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
8765 F:      drivers/clk/clk-versaclock5.c
8766
8767 IEEE 802.15.4 SUBSYSTEM
8768 M:      Alexander Aring <alex.aring@gmail.com>
8769 M:      Stefan Schmidt <stefan@datenfreihafen.org>
8770 L:      linux-wpan@vger.kernel.org
8771 S:      Maintained
8772 W:      https://linux-wpan.org/
8773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8775 F:      Documentation/networking/ieee802154.rst
8776 F:      drivers/net/ieee802154/
8777 F:      include/linux/ieee802154.h
8778 F:      include/linux/nl802154.h
8779 F:      include/net/af_ieee802154.h
8780 F:      include/net/cfg802154.h
8781 F:      include/net/ieee802154_netdev.h
8782 F:      include/net/mac802154.h
8783 F:      include/net/nl802154.h
8784 F:      net/ieee802154/
8785 F:      net/mac802154/
8786
8787 IFE PROTOCOL
8788 M:      Yotam Gigi <yotam.gi@gmail.com>
8789 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8790 F:      include/net/ife.h
8791 F:      include/uapi/linux/ife.h
8792 F:      net/ife
8793
8794 IGORPLUG-USB IR RECEIVER
8795 M:      Sean Young <sean@mess.org>
8796 L:      linux-media@vger.kernel.org
8797 S:      Maintained
8798 F:      drivers/media/rc/igorplugusb.c
8799
8800 IGUANAWORKS USB IR TRANSCEIVER
8801 M:      Sean Young <sean@mess.org>
8802 L:      linux-media@vger.kernel.org
8803 S:      Maintained
8804 F:      drivers/media/rc/iguanair.c
8805
8806 IIO DIGITAL POTENTIOMETER DAC
8807 M:      Peter Rosin <peda@axentia.se>
8808 L:      linux-iio@vger.kernel.org
8809 S:      Maintained
8810 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8811 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
8812 F:      drivers/iio/dac/dpot-dac.c
8813
8814 IIO ENVELOPE DETECTOR
8815 M:      Peter Rosin <peda@axentia.se>
8816 L:      linux-iio@vger.kernel.org
8817 S:      Maintained
8818 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8819 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
8820 F:      drivers/iio/adc/envelope-detector.c
8821
8822 IIO MULTIPLEXER
8823 M:      Peter Rosin <peda@axentia.se>
8824 L:      linux-iio@vger.kernel.org
8825 S:      Maintained
8826 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8827 F:      drivers/iio/multiplexer/iio-mux.c
8828
8829 IIO SCMI BASED DRIVER
8830 M:      Jyoti Bhayana <jbhayana@google.com>
8831 L:      linux-iio@vger.kernel.org
8832 S:      Maintained
8833 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
8834
8835 IIO SUBSYSTEM AND DRIVERS
8836 M:      Jonathan Cameron <jic23@kernel.org>
8837 R:      Lars-Peter Clausen <lars@metafoo.de>
8838 L:      linux-iio@vger.kernel.org
8839 S:      Maintained
8840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8841 F:      Documentation/ABI/testing/configfs-iio*
8842 F:      Documentation/ABI/testing/sysfs-bus-iio*
8843 F:      Documentation/devicetree/bindings/iio/
8844 F:      drivers/iio/
8845 F:      drivers/staging/iio/
8846 F:      include/linux/iio/
8847 F:      tools/iio/
8848
8849 IIO UNIT CONVERTER
8850 M:      Peter Rosin <peda@axentia.se>
8851 L:      linux-iio@vger.kernel.org
8852 S:      Maintained
8853 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
8854 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
8855 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
8856 F:      drivers/iio/afe/iio-rescale.c
8857
8858 IKANOS/ADI EAGLE ADSL USB DRIVER
8859 M:      Matthieu Castet <castet.matthieu@free.fr>
8860 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8861 S:      Maintained
8862 F:      drivers/usb/atm/ueagle-atm.c
8863
8864 IMGTEC ASCII LCD DRIVER
8865 M:      Paul Burton <paulburton@kernel.org>
8866 S:      Maintained
8867 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8868 F:      drivers/auxdisplay/img-ascii-lcd.c
8869
8870 IMGTEC IR DECODER DRIVER
8871 S:      Orphan
8872 F:      drivers/media/rc/img-ir/
8873
8874 IMON SOUNDGRAPH USB IR RECEIVER
8875 M:      Sean Young <sean@mess.org>
8876 L:      linux-media@vger.kernel.org
8877 S:      Maintained
8878 F:      drivers/media/rc/imon.c
8879 F:      drivers/media/rc/imon_raw.c
8880
8881 IMS TWINTURBO FRAMEBUFFER DRIVER
8882 L:      linux-fbdev@vger.kernel.org
8883 S:      Orphan
8884 F:      drivers/video/fbdev/imsttfb.c
8885
8886 INA209 HARDWARE MONITOR DRIVER
8887 M:      Guenter Roeck <linux@roeck-us.net>
8888 L:      linux-hwmon@vger.kernel.org
8889 S:      Maintained
8890 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
8891 F:      Documentation/hwmon/ina209.rst
8892 F:      drivers/hwmon/ina209.c
8893
8894 INA2XX HARDWARE MONITOR DRIVER
8895 M:      Guenter Roeck <linux@roeck-us.net>
8896 L:      linux-hwmon@vger.kernel.org
8897 S:      Maintained
8898 F:      Documentation/hwmon/ina2xx.rst
8899 F:      drivers/hwmon/ina2xx.c
8900 F:      include/linux/platform_data/ina2xx.h
8901
8902 INDUSTRY PACK SUBSYSTEM (IPACK)
8903 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8904 M:      Jens Taprogge <jens.taprogge@taprogge.org>
8905 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8906 L:      industrypack-devel@lists.sourceforge.net
8907 S:      Maintained
8908 W:      http://industrypack.sourceforge.net
8909 F:      drivers/ipack/
8910
8911 INFINEON DPS310 Driver
8912 M:      Eddie James <eajames@linux.ibm.com>
8913 L:      linux-iio@vger.kernel.org
8914 S:      Maintained
8915 F:      drivers/iio/pressure/dps310.c
8916
8917 INFINIBAND SUBSYSTEM
8918 M:      Doug Ledford <dledford@redhat.com>
8919 M:      Jason Gunthorpe <jgg@nvidia.com>
8920 L:      linux-rdma@vger.kernel.org
8921 S:      Supported
8922 W:      https://github.com/linux-rdma/rdma-core
8923 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8925 F:      Documentation/devicetree/bindings/infiniband/
8926 F:      Documentation/infiniband/
8927 F:      drivers/infiniband/
8928 F:      include/rdma/
8929 F:      include/trace/events/ib_mad.h
8930 F:      include/trace/events/ib_umad.h
8931 F:      include/uapi/linux/if_infiniband.h
8932 F:      include/uapi/rdma/
8933 F:      samples/bpf/ibumad_kern.c
8934 F:      samples/bpf/ibumad_user.c
8935
8936 INGENIC JZ4780 NAND DRIVER
8937 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
8938 L:      linux-mtd@lists.infradead.org
8939 L:      linux-mips@vger.kernel.org
8940 S:      Maintained
8941 F:      drivers/mtd/nand/raw/ingenic/
8942
8943 INGENIC JZ47xx SoCs
8944 M:      Paul Cercueil <paul@crapouillou.net>
8945 L:      linux-mips@vger.kernel.org
8946 S:      Maintained
8947 F:      arch/mips/boot/dts/ingenic/
8948 F:      arch/mips/generic/board-ingenic.c
8949 F:      arch/mips/include/asm/mach-ingenic/
8950 F:      arch/mips/ingenic/Kconfig
8951 F:      drivers/clk/ingenic/
8952 F:      drivers/dma/dma-jz4780.c
8953 F:      drivers/gpu/drm/ingenic/
8954 F:      drivers/i2c/busses/i2c-jz4780.c
8955 F:      drivers/iio/adc/ingenic-adc.c
8956 F:      drivers/irqchip/irq-ingenic.c
8957 F:      drivers/memory/jz4780-nemc.c
8958 F:      drivers/mmc/host/jz4740_mmc.c
8959 F:      drivers/mtd/nand/raw/ingenic/
8960 F:      drivers/pinctrl/pinctrl-ingenic.c
8961 F:      drivers/power/supply/ingenic-battery.c
8962 F:      drivers/pwm/pwm-jz4740.c
8963 F:      drivers/remoteproc/ingenic_rproc.c
8964 F:      drivers/rtc/rtc-jz4740.c
8965 F:      drivers/tty/serial/8250/8250_ingenic.c
8966 F:      drivers/usb/musb/jz4740.c
8967 F:      drivers/watchdog/jz4740_wdt.c
8968 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8969 F:      include/linux/mfd/ingenic-tcu.h
8970 F:      sound/soc/codecs/jz47*
8971 F:      sound/soc/jz4740/
8972
8973 INOTIFY
8974 M:      Jan Kara <jack@suse.cz>
8975 R:      Amir Goldstein <amir73il@gmail.com>
8976 L:      linux-fsdevel@vger.kernel.org
8977 S:      Maintained
8978 F:      Documentation/filesystems/inotify.rst
8979 F:      fs/notify/inotify/
8980 F:      include/linux/inotify.h
8981 F:      include/uapi/linux/inotify.h
8982
8983 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8984 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
8985 L:      linux-input@vger.kernel.org
8986 S:      Maintained
8987 Q:      http://patchwork.kernel.org/project/linux-input/list/
8988 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8989 F:      Documentation/devicetree/bindings/input/
8990 F:      Documentation/devicetree/bindings/serio/
8991 F:      Documentation/input/
8992 F:      drivers/input/
8993 F:      include/linux/input.h
8994 F:      include/linux/input/
8995 F:      include/uapi/linux/input-event-codes.h
8996 F:      include/uapi/linux/input.h
8997
8998 INPUT MULTITOUCH (MT) PROTOCOL
8999 M:      Henrik Rydberg <rydberg@bitmath.org>
9000 L:      linux-input@vger.kernel.org
9001 S:      Odd fixes
9002 F:      Documentation/input/multi-touch-protocol.rst
9003 F:      drivers/input/input-mt.c
9004 K:      \b(ABS|SYN)_MT_
9005
9006 INSIDE SECURE CRYPTO DRIVER
9007 M:      Antoine Tenart <atenart@kernel.org>
9008 L:      linux-crypto@vger.kernel.org
9009 S:      Maintained
9010 F:      drivers/crypto/inside-secure/
9011
9012 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9013 M:      Mimi Zohar <zohar@linux.ibm.com>
9014 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9015 L:      linux-integrity@vger.kernel.org
9016 S:      Supported
9017 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9018 F:      security/integrity/ima/
9019
9020 INTEL 810/815 FRAMEBUFFER DRIVER
9021 M:      Antonino Daplas <adaplas@gmail.com>
9022 L:      linux-fbdev@vger.kernel.org
9023 S:      Maintained
9024 F:      drivers/video/fbdev/i810/
9025
9026 INTEL ASoC DRIVERS
9027 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9028 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9029 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9030 M:      Jie Yang <yang.jie@linux.intel.com>
9031 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9032 S:      Supported
9033 F:      sound/soc/intel/
9034
9035 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9036 M:      Hans de Goede <hdegoede@redhat.com>
9037 L:      platform-driver-x86@vger.kernel.org
9038 S:      Maintained
9039 F:      drivers/platform/x86/intel_atomisp2_pm.c
9040
9041 INTEL ATOMISP2 LED DRIVER
9042 M:      Hans de Goede <hdegoede@redhat.com>
9043 L:      platform-driver-x86@vger.kernel.org
9044 S:      Maintained
9045 F:      drivers/platform/x86/intel_atomisp2_led.c
9046
9047 INTEL BROXTON PMC DRIVER
9048 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9049 M:      Zha Qipeng <qipeng.zha@intel.com>
9050 S:      Maintained
9051 F:      drivers/mfd/intel_pmc_bxt.c
9052 F:      include/linux/mfd/intel_pmc_bxt.h
9053
9054 INTEL C600 SERIES SAS CONTROLLER DRIVER
9055 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9056 L:      linux-scsi@vger.kernel.org
9057 S:      Supported
9058 T:      git git://git.code.sf.net/p/intel-sas/isci
9059 F:      drivers/scsi/isci/
9060
9061 INTEL CPU family model numbers
9062 M:      Tony Luck <tony.luck@intel.com>
9063 M:      x86@kernel.org
9064 L:      linux-kernel@vger.kernel.org
9065 S:      Supported
9066 F:      arch/x86/include/asm/intel-family.h
9067
9068 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9069 M:      Jani Nikula <jani.nikula@linux.intel.com>
9070 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9071 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9072 L:      intel-gfx@lists.freedesktop.org
9073 S:      Supported
9074 W:      https://01.org/linuxgraphics/
9075 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9076 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9077 C:      irc://chat.freenode.net/intel-gfx
9078 T:      git git://anongit.freedesktop.org/drm-intel
9079 F:      Documentation/gpu/i915.rst
9080 F:      drivers/gpu/drm/i915/
9081 F:      include/drm/i915*
9082 F:      include/uapi/drm/i915_drm.h
9083
9084 INTEL ETHERNET DRIVERS
9085 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9086 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9087 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9088 S:      Supported
9089 W:      http://www.intel.com/support/feedback.htm
9090 W:      http://e1000.sourceforge.net/
9091 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9094 F:      Documentation/networking/device_drivers/ethernet/intel/
9095 F:      drivers/net/ethernet/intel/
9096 F:      drivers/net/ethernet/intel/*/
9097 F:      include/linux/avf/virtchnl.h
9098
9099 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9100 M:      Maik Broemme <mbroemme@libmpq.org>
9101 L:      linux-fbdev@vger.kernel.org
9102 S:      Maintained
9103 F:      Documentation/fb/intelfb.rst
9104 F:      drivers/video/fbdev/intelfb/
9105
9106 INTEL GPIO DRIVERS
9107 M:      Andy Shevchenko <andy@kernel.org>
9108 L:      linux-gpio@vger.kernel.org
9109 S:      Maintained
9110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9111 F:      drivers/gpio/gpio-ich.c
9112 F:      drivers/gpio/gpio-merrifield.c
9113 F:      drivers/gpio/gpio-ml-ioh.c
9114 F:      drivers/gpio/gpio-pch.c
9115 F:      drivers/gpio/gpio-sch.c
9116 F:      drivers/gpio/gpio-sodaville.c
9117
9118 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9119 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9120 M:      Zhi Wang <zhi.a.wang@intel.com>
9121 L:      intel-gvt-dev@lists.freedesktop.org
9122 L:      intel-gfx@lists.freedesktop.org
9123 S:      Supported
9124 W:      https://01.org/igvt-g
9125 T:      git https://github.com/intel/gvt-linux.git
9126 F:      drivers/gpu/drm/i915/gvt/
9127
9128 INTEL HID EVENT DRIVER
9129 M:      Alex Hung <alex.hung@canonical.com>
9130 L:      platform-driver-x86@vger.kernel.org
9131 S:      Maintained
9132 F:      drivers/platform/x86/intel-hid.c
9133
9134 INTEL I/OAT DMA DRIVER
9135 M:      Dave Jiang <dave.jiang@intel.com>
9136 R:      Dan Williams <dan.j.williams@intel.com>
9137 L:      dmaengine@vger.kernel.org
9138 S:      Supported
9139 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9140 F:      drivers/dma/ioat*
9141
9142 INTEL IADX DRIVER
9143 M:      Dave Jiang <dave.jiang@intel.com>
9144 L:      dmaengine@vger.kernel.org
9145 S:      Supported
9146 F:      drivers/dma/idxd/*
9147 F:      include/uapi/linux/idxd.h
9148
9149 INTEL IDLE DRIVER
9150 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9151 M:      Len Brown <lenb@kernel.org>
9152 L:      linux-pm@vger.kernel.org
9153 S:      Supported
9154 B:      https://bugzilla.kernel.org
9155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9156 F:      drivers/idle/intel_idle.c
9157
9158 INTEL INTEGRATED SENSOR HUB DRIVER
9159 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9160 M:      Jiri Kosina <jikos@kernel.org>
9161 L:      linux-input@vger.kernel.org
9162 S:      Maintained
9163 F:      drivers/hid/intel-ish-hid/
9164
9165 INTEL IOMMU (VT-d)
9166 M:      David Woodhouse <dwmw2@infradead.org>
9167 M:      Lu Baolu <baolu.lu@linux.intel.com>
9168 L:      iommu@lists.linux-foundation.org
9169 S:      Supported
9170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9171 F:      drivers/iommu/intel/
9172 F:      include/linux/intel-iommu.h
9173 F:      include/linux/intel-svm.h
9174
9175 INTEL IOP-ADMA DMA DRIVER
9176 R:      Dan Williams <dan.j.williams@intel.com>
9177 S:      Odd fixes
9178 F:      drivers/dma/iop-adma.c
9179
9180 INTEL IPU3 CSI-2 CIO2 DRIVER
9181 M:      Yong Zhi <yong.zhi@intel.com>
9182 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9183 M:      Bingbu Cao <bingbu.cao@intel.com>
9184 M:      Dan Scally <djrscally@gmail.com>
9185 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9186 L:      linux-media@vger.kernel.org
9187 S:      Maintained
9188 T:      git git://linuxtv.org/media_tree.git
9189 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9190 F:      drivers/media/pci/intel/ipu3/
9191
9192 INTEL IPU3 CSI-2 IMGU DRIVER
9193 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9194 R:      Bingbu Cao <bingbu.cao@intel.com>
9195 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9196 L:      linux-media@vger.kernel.org
9197 S:      Maintained
9198 F:      Documentation/admin-guide/media/ipu3.rst
9199 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9200 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9201 F:      drivers/staging/media/ipu3/
9202
9203 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9204 M:      Krzysztof Halasa <khalasa@piap.pl>
9205 S:      Maintained
9206 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9207 F:      drivers/net/wan/ixp4xx_hss.c
9208 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9209 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9210 F:      include/linux/soc/ixp4xx/npe.h
9211 F:      include/linux/soc/ixp4xx/qmgr.h
9212
9213 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9214 M:      Deepak Saxena <dsaxena@plexity.net>
9215 S:      Maintained
9216 F:      drivers/char/hw_random/ixp4xx-rng.c
9217
9218 INTEL KEEM BAY DRM DRIVER
9219 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9220 M:      Edmund Dea <edmund.j.dea@intel.com>
9221 S:      Maintained
9222 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9223 F:      drivers/gpu/drm/kmb/
9224
9225 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9226 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9227 S:      Maintained
9228 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9229 F:      drivers/crypto/keembay/Kconfig
9230 F:      drivers/crypto/keembay/Makefile
9231 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9232 F:      drivers/crypto/keembay/ocs-aes.c
9233 F:      drivers/crypto/keembay/ocs-aes.h
9234
9235 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9236 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9237 M:      Declan Murphy <declan.murphy@intel.com>
9238 S:      Maintained
9239 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9240 F:      drivers/crypto/keembay/Kconfig
9241 F:      drivers/crypto/keembay/Makefile
9242 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9243 F:      drivers/crypto/keembay/ocs-hcu.c
9244 F:      drivers/crypto/keembay/ocs-hcu.h
9245
9246 INTEL MANAGEMENT ENGINE (mei)
9247 M:      Tomas Winkler <tomas.winkler@intel.com>
9248 L:      linux-kernel@vger.kernel.org
9249 S:      Supported
9250 F:      Documentation/driver-api/mei/*
9251 F:      drivers/misc/mei/
9252 F:      drivers/watchdog/mei_wdt.c
9253 F:      include/linux/mei_cl_bus.h
9254 F:      include/uapi/linux/mei.h
9255 F:      samples/mei/*
9256
9257 INTEL MAX 10 BMC MFD DRIVER
9258 M:      Xu Yilun <yilun.xu@intel.com>
9259 R:      Tom Rix <trix@redhat.com>
9260 S:      Maintained
9261 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9262 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9263 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9264 F:      drivers/mfd/intel-m10-bmc.c
9265 F:      include/linux/mfd/intel-m10-bmc.h
9266
9267 INTEL MAX 10 BMC MFD DRIVER
9268 M:      Xu Yilun <yilun.xu@intel.com>
9269 R:      Tom Rix <trix@redhat.com>
9270 S:      Maintained
9271 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9272 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9273 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9274 F:      drivers/mfd/intel-m10-bmc.c
9275 F:      include/linux/mfd/intel-m10-bmc.h
9276
9277 INTEL MENLOW THERMAL DRIVER
9278 M:      Sujith Thomas <sujith.thomas@intel.com>
9279 L:      platform-driver-x86@vger.kernel.org
9280 S:      Supported
9281 W:      https://01.org/linux-acpi
9282 F:      drivers/platform/x86/intel_menlow.c
9283
9284 INTEL P-Unit IPC DRIVER
9285 M:      Zha Qipeng <qipeng.zha@intel.com>
9286 L:      platform-driver-x86@vger.kernel.org
9287 S:      Maintained
9288 F:      arch/x86/include/asm/intel_punit_ipc.h
9289 F:      drivers/platform/x86/intel_punit_ipc.c
9290
9291 INTEL PMC CORE DRIVER
9292 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9293 M:      David E Box <david.e.box@intel.com>
9294 L:      platform-driver-x86@vger.kernel.org
9295 S:      Maintained
9296 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
9297 F:      drivers/platform/x86/intel_pmc_core*
9298
9299 INTEL PMIC GPIO DRIVERS
9300 M:      Andy Shevchenko <andy@kernel.org>
9301 S:      Maintained
9302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9303 F:      drivers/gpio/gpio-*cove.c
9304
9305 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9306 M:      Andy Shevchenko <andy@kernel.org>
9307 S:      Maintained
9308 F:      drivers/mfd/intel_soc_pmic*
9309 F:      include/linux/mfd/intel_soc_pmic*
9310
9311 INTEL PMT DRIVER
9312 M:      "David E. Box" <david.e.box@linux.intel.com>
9313 S:      Maintained
9314 F:      drivers/mfd/intel_pmt.c
9315 F:      drivers/platform/x86/intel_pmt_*
9316
9317 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9318 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9319 L:      linux-wireless@vger.kernel.org
9320 S:      Maintained
9321 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9322 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9323 F:      drivers/net/wireless/intel/ipw2x00/
9324
9325 INTEL PSTATE DRIVER
9326 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9327 M:      Len Brown <lenb@kernel.org>
9328 L:      linux-pm@vger.kernel.org
9329 S:      Supported
9330 F:      drivers/cpufreq/intel_pstate.c
9331
9332 INTEL RDMA RNIC DRIVER
9333 M:      Faisal Latif <faisal.latif@intel.com>
9334 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9335 L:      linux-rdma@vger.kernel.org
9336 S:      Supported
9337 F:      drivers/infiniband/hw/i40iw/
9338 F:      include/uapi/rdma/i40iw-abi.h
9339
9340 INTEL SCU DRIVERS
9341 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9342 S:      Maintained
9343 F:      arch/x86/include/asm/intel_scu_ipc.h
9344 F:      drivers/platform/x86/intel_scu_*
9345
9346 INTEL SPEED SELECT TECHNOLOGY
9347 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9348 L:      platform-driver-x86@vger.kernel.org
9349 S:      Maintained
9350 F:      drivers/platform/x86/intel_speed_select_if/
9351 F:      include/uapi/linux/isst_if.h
9352 F:      tools/power/x86/intel-speed-select/
9353
9354 INTEL STRATIX10 FIRMWARE DRIVERS
9355 M:      Richard Gong <richard.gong@linux.intel.com>
9356 L:      linux-kernel@vger.kernel.org
9357 S:      Maintained
9358 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9359 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9360 F:      drivers/firmware/stratix10-rsu.c
9361 F:      drivers/firmware/stratix10-svc.c
9362 F:      include/linux/firmware/intel/stratix10-smc.h
9363 F:      include/linux/firmware/intel/stratix10-svc-client.h
9364
9365 INTEL TELEMETRY DRIVER
9366 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
9367 M:      "David E. Box" <david.e.box@linux.intel.com>
9368 L:      platform-driver-x86@vger.kernel.org
9369 S:      Maintained
9370 F:      arch/x86/include/asm/intel_telemetry.h
9371 F:      drivers/platform/x86/intel_telemetry*
9372
9373 INTEL UNCORE FREQUENCY CONTROL
9374 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9375 L:      platform-driver-x86@vger.kernel.org
9376 S:      Maintained
9377 F:      drivers/platform/x86/intel-uncore-frequency.c
9378
9379 INTEL VIRTUAL BUTTON DRIVER
9380 M:      AceLan Kao <acelan.kao@canonical.com>
9381 L:      platform-driver-x86@vger.kernel.org
9382 S:      Maintained
9383 F:      drivers/platform/x86/intel-vbtn.c
9384
9385 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9386 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9387 L:      linux-wireless@vger.kernel.org
9388 S:      Supported
9389 F:      drivers/net/wireless/intel/iwlegacy/
9390
9391 INTEL WIRELESS WIFI LINK (iwlwifi)
9392 M:      Luca Coelho <luciano.coelho@intel.com>
9393 L:      linux-wireless@vger.kernel.org
9394 S:      Supported
9395 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9396 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9397 F:      drivers/net/wireless/intel/iwlwifi/
9398
9399 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9400 M:      Jithu Joseph <jithu.joseph@intel.com>
9401 R:      Maurice Ma <maurice.ma@intel.com>
9402 S:      Maintained
9403 W:      https://slimbootloader.github.io/security/firmware-update.html
9404 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
9405
9406 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9407 L:      Dell.Client.Kernel@dell.com
9408 S:      Maintained
9409 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
9410
9411 INTEL(R) TRACE HUB
9412 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9413 S:      Supported
9414 F:      Documentation/trace/intel_th.rst
9415 F:      drivers/hwtracing/intel_th/
9416 F:      include/linux/intel_th.h
9417
9418 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9419 M:      Ning Sun <ning.sun@intel.com>
9420 L:      tboot-devel@lists.sourceforge.net
9421 S:      Supported
9422 W:      http://tboot.sourceforge.net
9423 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9424 F:      Documentation/x86/intel_txt.rst
9425 F:      arch/x86/kernel/tboot.c
9426 F:      include/linux/tboot.h
9427
9428 INTEL SGX
9429 M:      Jarkko Sakkinen <jarkko@kernel.org>
9430 R:      Dave Hansen <dave.hansen@linux.intel.com>
9431 L:      linux-sgx@vger.kernel.org
9432 S:      Supported
9433 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9435 F:      Documentation/x86/sgx.rst
9436 F:      arch/x86/entry/vdso/vsgx.S
9437 F:      arch/x86/include/asm/sgx.h
9438 F:      arch/x86/include/uapi/asm/sgx.h
9439 F:      arch/x86/kernel/cpu/sgx/*
9440 F:      tools/testing/selftests/sgx/*
9441 K:      \bSGX_
9442
9443 INTERCONNECT API
9444 M:      Georgi Djakov <djakov@kernel.org>
9445 L:      linux-pm@vger.kernel.org
9446 S:      Maintained
9447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
9448 F:      Documentation/devicetree/bindings/interconnect/
9449 F:      Documentation/driver-api/interconnect.rst
9450 F:      drivers/interconnect/
9451 F:      include/dt-bindings/interconnect/
9452 F:      include/linux/interconnect-provider.h
9453 F:      include/linux/interconnect.h
9454
9455 INTERRUPT COUNTER DRIVER
9456 M:      Oleksij Rempel <o.rempel@pengutronix.de>
9457 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
9458 L:      linux-iio@vger.kernel.org
9459 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
9460 F:      drivers/counter/interrupt-cnt.c
9461
9462 INVENSENSE ICM-426xx IMU DRIVER
9463 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9464 L:      linux-iio@vger.kernel.org
9465 S:      Maintained
9466 W:      https://invensense.tdk.com/
9467 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9468 F:      drivers/iio/imu/inv_icm42600/
9469
9470 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9471 M:      Linus Walleij <linus.walleij@linaro.org>
9472 L:      linux-iio@vger.kernel.org
9473 S:      Maintained
9474 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
9475 F:      drivers/iio/gyro/mpu3050*
9476
9477 IOC3 ETHERNET DRIVER
9478 M:      Ralf Baechle <ralf@linux-mips.org>
9479 L:      linux-mips@vger.kernel.org
9480 S:      Maintained
9481 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9482
9483 IOMAP FILESYSTEM LIBRARY
9484 M:      Christoph Hellwig <hch@infradead.org>
9485 M:      Darrick J. Wong <djwong@kernel.org>
9486 M:      linux-xfs@vger.kernel.org
9487 M:      linux-fsdevel@vger.kernel.org
9488 L:      linux-xfs@vger.kernel.org
9489 L:      linux-fsdevel@vger.kernel.org
9490 S:      Supported
9491 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9492 F:      fs/iomap/
9493 F:      include/linux/iomap.h
9494
9495 IOMMU DRIVERS
9496 M:      Joerg Roedel <joro@8bytes.org>
9497 M:      Will Deacon <will@kernel.org>
9498 L:      iommu@lists.linux-foundation.org
9499 S:      Maintained
9500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9501 F:      Documentation/devicetree/bindings/iommu/
9502 F:      Documentation/userspace-api/iommu.rst
9503 F:      drivers/iommu/
9504 F:      include/linux/iommu.h
9505 F:      include/linux/iova.h
9506 F:      include/linux/of_iommu.h
9507 F:      include/uapi/linux/iommu.h
9508
9509 IO_URING
9510 M:      Jens Axboe <axboe@kernel.dk>
9511 R:      Pavel Begunkov <asml.silence@gmail.com>
9512 L:      io-uring@vger.kernel.org
9513 S:      Maintained
9514 T:      git git://git.kernel.dk/linux-block
9515 T:      git git://git.kernel.dk/liburing
9516 F:      fs/io-wq.c
9517 F:      fs/io-wq.h
9518 F:      fs/io_uring.c
9519 F:      include/linux/io_uring.h
9520 F:      include/uapi/linux/io_uring.h
9521
9522 IPMI SUBSYSTEM
9523 M:      Corey Minyard <minyard@acm.org>
9524 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9525 S:      Supported
9526 W:      http://openipmi.sourceforge.net/
9527 F:      Documentation/driver-api/ipmi.rst
9528 F:      Documentation/devicetree/bindings/ipmi/
9529 F:      drivers/char/ipmi/
9530 F:      include/linux/ipmi*
9531 F:      include/uapi/linux/ipmi*
9532
9533 IPS SCSI RAID DRIVER
9534 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9535 L:      linux-scsi@vger.kernel.org
9536 S:      Maintained
9537 W:      http://www.adaptec.com/
9538 F:      drivers/scsi/ips*
9539
9540 IPVS
9541 M:      Simon Horman <horms@verge.net.au>
9542 M:      Julian Anastasov <ja@ssi.bg>
9543 L:      netdev@vger.kernel.org
9544 L:      lvs-devel@vger.kernel.org
9545 S:      Maintained
9546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9547 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9548 F:      Documentation/networking/ipvs-sysctl.rst
9549 F:      include/net/ip_vs.h
9550 F:      include/uapi/linux/ip_vs.h
9551 F:      net/netfilter/ipvs/
9552
9553 IPWIRELESS DRIVER
9554 M:      Jiri Kosina <jikos@kernel.org>
9555 M:      David Sterba <dsterba@suse.com>
9556 S:      Odd Fixes
9557 F:      drivers/tty/ipwireless/
9558
9559 IPX NETWORK LAYER
9560 L:      netdev@vger.kernel.org
9561 S:      Obsolete
9562 F:      include/uapi/linux/ipx.h
9563
9564 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9565 M:      Marc Zyngier <maz@kernel.org>
9566 S:      Maintained
9567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9568 F:      Documentation/core-api/irq/irq-domain.rst
9569 F:      include/linux/irqdomain.h
9570 F:      kernel/irq/irqdomain.c
9571 F:      kernel/irq/msi.c
9572
9573 IRQ SUBSYSTEM
9574 M:      Thomas Gleixner <tglx@linutronix.de>
9575 L:      linux-kernel@vger.kernel.org
9576 S:      Maintained
9577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9578 F:      kernel/irq/
9579
9580 IRQCHIP DRIVERS
9581 M:      Thomas Gleixner <tglx@linutronix.de>
9582 M:      Marc Zyngier <maz@kernel.org>
9583 L:      linux-kernel@vger.kernel.org
9584 S:      Maintained
9585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9586 F:      Documentation/devicetree/bindings/interrupt-controller/
9587 F:      drivers/irqchip/
9588
9589 ISA
9590 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9591 S:      Maintained
9592 F:      Documentation/driver-api/isa.rst
9593 F:      drivers/base/isa.c
9594 F:      include/linux/isa.h
9595
9596 ISA RADIO MODULE
9597 M:      Hans Verkuil <hverkuil@xs4all.nl>
9598 L:      linux-media@vger.kernel.org
9599 S:      Maintained
9600 W:      https://linuxtv.org
9601 T:      git git://linuxtv.org/media_tree.git
9602 F:      drivers/media/radio/radio-isa*
9603
9604 ISAPNP
9605 M:      Jaroslav Kysela <perex@perex.cz>
9606 S:      Maintained
9607 F:      Documentation/driver-api/isapnp.rst
9608 F:      drivers/pnp/isapnp/
9609 F:      include/linux/isapnp.h
9610
9611 ISCSI
9612 M:      Lee Duncan <lduncan@suse.com>
9613 M:      Chris Leech <cleech@redhat.com>
9614 L:      open-iscsi@googlegroups.com
9615 L:      linux-scsi@vger.kernel.org
9616 S:      Maintained
9617 W:      www.open-iscsi.com
9618 F:      drivers/scsi/*iscsi*
9619 F:      include/scsi/*iscsi*
9620
9621 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9622 M:      Peter Jones <pjones@redhat.com>
9623 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9624 S:      Maintained
9625 F:      drivers/firmware/iscsi_ibft*
9626
9627 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9628 M:      Sagi Grimberg <sagi@grimberg.me>
9629 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
9630 L:      linux-rdma@vger.kernel.org
9631 S:      Supported
9632 W:      http://www.openfabrics.org
9633 W:      www.open-iscsi.org
9634 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9635 F:      drivers/infiniband/ulp/iser/
9636
9637 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9638 M:      Sagi Grimberg <sagi@grimberg.me>
9639 L:      linux-rdma@vger.kernel.org
9640 L:      target-devel@vger.kernel.org
9641 S:      Supported
9642 W:      http://www.linux-iscsi.org
9643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9644 F:      drivers/infiniband/ulp/isert
9645
9646 ISDN/CMTP OVER BLUETOOTH
9647 M:      Karsten Keil <isdn@linux-pingi.de>
9648 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9649 L:      netdev@vger.kernel.org
9650 S:      Odd Fixes
9651 W:      http://www.isdn4linux.de
9652 F:      Documentation/isdn/
9653 F:      drivers/isdn/capi/
9654 F:      include/linux/isdn/
9655 F:      include/uapi/linux/isdn/
9656 F:      net/bluetooth/cmtp/
9657
9658 ISDN/mISDN SUBSYSTEM
9659 M:      Karsten Keil <isdn@linux-pingi.de>
9660 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9661 L:      netdev@vger.kernel.org
9662 S:      Maintained
9663 W:      http://www.isdn4linux.de
9664 F:      drivers/isdn/Kconfig
9665 F:      drivers/isdn/Makefile
9666 F:      drivers/isdn/hardware/
9667 F:      drivers/isdn/mISDN/
9668
9669 IT87 HARDWARE MONITORING DRIVER
9670 M:      Jean Delvare <jdelvare@suse.com>
9671 L:      linux-hwmon@vger.kernel.org
9672 S:      Maintained
9673 F:      Documentation/hwmon/it87.rst
9674 F:      drivers/hwmon/it87.c
9675
9676 IT913X MEDIA DRIVER
9677 M:      Antti Palosaari <crope@iki.fi>
9678 L:      linux-media@vger.kernel.org
9679 S:      Maintained
9680 W:      https://linuxtv.org
9681 W:      http://palosaari.fi/linux/
9682 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9683 T:      git git://linuxtv.org/anttip/media_tree.git
9684 F:      drivers/media/tuners/it913x*
9685
9686 IVTV VIDEO4LINUX DRIVER
9687 M:      Andy Walls <awalls@md.metrocast.net>
9688 L:      linux-media@vger.kernel.org
9689 S:      Maintained
9690 W:      https://linuxtv.org
9691 T:      git git://linuxtv.org/media_tree.git
9692 F:      Documentation/admin-guide/media/ivtv*
9693 F:      drivers/media/pci/ivtv/
9694 F:      include/uapi/linux/ivtv*
9695
9696 IX2505V MEDIA DRIVER
9697 M:      Malcolm Priestley <tvboxspy@gmail.com>
9698 L:      linux-media@vger.kernel.org
9699 S:      Maintained
9700 W:      https://linuxtv.org
9701 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9702 F:      drivers/media/dvb-frontends/ix2505v*
9703
9704 JAILHOUSE HYPERVISOR INTERFACE
9705 M:      Jan Kiszka <jan.kiszka@siemens.com>
9706 L:      jailhouse-dev@googlegroups.com
9707 S:      Maintained
9708 F:      arch/x86/include/asm/jailhouse_para.h
9709 F:      arch/x86/kernel/jailhouse.c
9710
9711 JC42.4 TEMPERATURE SENSOR DRIVER
9712 M:      Guenter Roeck <linux@roeck-us.net>
9713 L:      linux-hwmon@vger.kernel.org
9714 S:      Maintained
9715 F:      Documentation/hwmon/jc42.rst
9716 F:      drivers/hwmon/jc42.c
9717
9718 JFS FILESYSTEM
9719 M:      Dave Kleikamp <shaggy@kernel.org>
9720 L:      jfs-discussion@lists.sourceforge.net
9721 S:      Maintained
9722 W:      http://jfs.sourceforge.net/
9723 T:      git git://github.com/kleikamp/linux-shaggy.git
9724 F:      Documentation/admin-guide/jfs.rst
9725 F:      fs/jfs/
9726
9727 JME NETWORK DRIVER
9728 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
9729 L:      netdev@vger.kernel.org
9730 S:      Maintained
9731 F:      drivers/net/ethernet/jme.*
9732
9733 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9734 M:      David Woodhouse <dwmw2@infradead.org>
9735 M:      Richard Weinberger <richard@nod.at>
9736 L:      linux-mtd@lists.infradead.org
9737 S:      Odd Fixes
9738 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9739 T:      git git://git.infradead.org/ubifs-2.6.git
9740 F:      fs/jffs2/
9741 F:      include/uapi/linux/jffs2.h
9742
9743 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9744 M:      "Theodore Ts'o" <tytso@mit.edu>
9745 M:      Jan Kara <jack@suse.com>
9746 L:      linux-ext4@vger.kernel.org
9747 S:      Maintained
9748 F:      fs/jbd2/
9749 F:      include/linux/jbd2.h
9750
9751 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9752 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9753 L:      linux-media@vger.kernel.org
9754 S:      Maintained
9755 F:      drivers/media/platform/rcar_jpu.c
9756
9757 JSM Neo PCI based serial card
9758 L:      linux-serial@vger.kernel.org
9759 S:      Orphan
9760 F:      drivers/tty/serial/jsm/
9761
9762 K10TEMP HARDWARE MONITORING DRIVER
9763 M:      Clemens Ladisch <clemens@ladisch.de>
9764 L:      linux-hwmon@vger.kernel.org
9765 S:      Maintained
9766 F:      Documentation/hwmon/k10temp.rst
9767 F:      drivers/hwmon/k10temp.c
9768
9769 K8TEMP HARDWARE MONITORING DRIVER
9770 M:      Rudolf Marek <r.marek@assembler.cz>
9771 L:      linux-hwmon@vger.kernel.org
9772 S:      Maintained
9773 F:      Documentation/hwmon/k8temp.rst
9774 F:      drivers/hwmon/k8temp.c
9775
9776 KASAN
9777 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
9778 R:      Alexander Potapenko <glider@google.com>
9779 R:      Andrey Konovalov <andreyknvl@gmail.com>
9780 R:      Dmitry Vyukov <dvyukov@google.com>
9781 L:      kasan-dev@googlegroups.com
9782 S:      Maintained
9783 F:      Documentation/dev-tools/kasan.rst
9784 F:      arch/*/include/asm/*kasan.h
9785 F:      arch/*/mm/kasan_init*
9786 F:      include/linux/kasan*.h
9787 F:      lib/Kconfig.kasan
9788 F:      lib/test_kasan*.c
9789 F:      mm/kasan/
9790 F:      scripts/Makefile.kasan
9791
9792 KCONFIG
9793 M:      Masahiro Yamada <masahiroy@kernel.org>
9794 L:      linux-kbuild@vger.kernel.org
9795 S:      Maintained
9796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9797 F:      Documentation/kbuild/kconfig*
9798 F:      scripts/Kconfig.include
9799 F:      scripts/kconfig/
9800
9801 KCOV
9802 R:      Dmitry Vyukov <dvyukov@google.com>
9803 R:      Andrey Konovalov <andreyknvl@gmail.com>
9804 L:      kasan-dev@googlegroups.com
9805 S:      Maintained
9806 F:      Documentation/dev-tools/kcov.rst
9807 F:      include/linux/kcov.h
9808 F:      include/uapi/linux/kcov.h
9809 F:      kernel/kcov.c
9810 F:      scripts/Makefile.kcov
9811
9812 KCSAN
9813 M:      Marco Elver <elver@google.com>
9814 R:      Dmitry Vyukov <dvyukov@google.com>
9815 L:      kasan-dev@googlegroups.com
9816 S:      Maintained
9817 F:      Documentation/dev-tools/kcsan.rst
9818 F:      include/linux/kcsan*.h
9819 F:      kernel/kcsan/
9820 F:      lib/Kconfig.kcsan
9821 F:      scripts/Makefile.kcsan
9822
9823 KDUMP
9824 M:      Dave Young <dyoung@redhat.com>
9825 M:      Baoquan He <bhe@redhat.com>
9826 R:      Vivek Goyal <vgoyal@redhat.com>
9827 L:      kexec@lists.infradead.org
9828 S:      Maintained
9829 W:      http://lse.sourceforge.net/kdump/
9830 F:      Documentation/admin-guide/kdump/
9831 F:      fs/proc/vmcore.c
9832 F:      include/linux/crash_core.h
9833 F:      include/linux/crash_dump.h
9834 F:      include/uapi/linux/vmcore.h
9835 F:      kernel/crash_*.c
9836
9837 KEENE FM RADIO TRANSMITTER DRIVER
9838 M:      Hans Verkuil <hverkuil@xs4all.nl>
9839 L:      linux-media@vger.kernel.org
9840 S:      Maintained
9841 W:      https://linuxtv.org
9842 T:      git git://linuxtv.org/media_tree.git
9843 F:      drivers/media/radio/radio-keene*
9844
9845 KERNEL AUTOMOUNTER
9846 M:      Ian Kent <raven@themaw.net>
9847 L:      autofs@vger.kernel.org
9848 S:      Maintained
9849 F:      fs/autofs/
9850
9851 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9852 M:      Masahiro Yamada <masahiroy@kernel.org>
9853 M:      Michal Marek <michal.lkml@markovi.net>
9854 L:      linux-kbuild@vger.kernel.org
9855 S:      Maintained
9856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9857 F:      Documentation/kbuild/
9858 F:      Makefile
9859 F:      scripts/*vmlinux*
9860 F:      scripts/Kbuild*
9861 F:      scripts/Makefile*
9862 F:      scripts/basic/
9863 F:      scripts/dummy-tools/
9864 F:      scripts/mk*
9865 F:      scripts/mod/
9866 F:      scripts/package/
9867
9868 KERNEL JANITORS
9869 L:      kernel-janitors@vger.kernel.org
9870 S:      Odd Fixes
9871 W:      http://kernelnewbies.org/KernelJanitors
9872
9873 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9874 M:      "J. Bruce Fields" <bfields@fieldses.org>
9875 M:      Chuck Lever <chuck.lever@oracle.com>
9876 L:      linux-nfs@vger.kernel.org
9877 S:      Supported
9878 W:      http://nfs.sourceforge.net/
9879 T:      git git://linux-nfs.org/~bfields/linux.git
9880 F:      fs/lockd/
9881 F:      fs/nfs_common/
9882 F:      fs/nfsd/
9883 F:      include/linux/lockd/
9884 F:      include/linux/sunrpc/
9885 F:      include/uapi/linux/nfsd/
9886 F:      include/uapi/linux/sunrpc/
9887 F:      net/sunrpc/
9888 F:      Documentation/filesystems/nfs/
9889
9890 KERNEL REGRESSIONS
9891 M:      Thorsten Leemhuis <linux@leemhuis.info>
9892 L:      regressions@lists.linux.dev
9893 S:      Supported
9894
9895 KERNEL SELFTEST FRAMEWORK
9896 M:      Shuah Khan <shuah@kernel.org>
9897 M:      Shuah Khan <skhan@linuxfoundation.org>
9898 L:      linux-kselftest@vger.kernel.org
9899 S:      Maintained
9900 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9902 F:      Documentation/dev-tools/kselftest*
9903 F:      tools/testing/selftests/
9904
9905 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9906 M:      Brendan Higgins <brendanhiggins@google.com>
9907 L:      linux-kselftest@vger.kernel.org
9908 L:      kunit-dev@googlegroups.com
9909 S:      Maintained
9910 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9911 F:      Documentation/dev-tools/kunit/
9912 F:      include/kunit/
9913 F:      lib/kunit/
9914 F:      tools/testing/kunit/
9915
9916 KERNEL USERMODE HELPER
9917 M:      Luis Chamberlain <mcgrof@kernel.org>
9918 L:      linux-kernel@vger.kernel.org
9919 S:      Maintained
9920 F:      include/linux/umh.h
9921 F:      kernel/umh.c
9922
9923 KERNEL VIRTUAL MACHINE (KVM)
9924 M:      Paolo Bonzini <pbonzini@redhat.com>
9925 L:      kvm@vger.kernel.org
9926 S:      Supported
9927 W:      http://www.linux-kvm.org
9928 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9929 F:      Documentation/virt/kvm/
9930 F:      include/asm-generic/kvm*
9931 F:      include/kvm/iodev.h
9932 F:      include/linux/kvm*
9933 F:      include/trace/events/kvm.h
9934 F:      include/uapi/asm-generic/kvm*
9935 F:      include/uapi/linux/kvm*
9936 F:      tools/kvm/
9937 F:      tools/testing/selftests/kvm/
9938 F:      virt/kvm/*
9939
9940 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9941 M:      Marc Zyngier <maz@kernel.org>
9942 R:      James Morse <james.morse@arm.com>
9943 R:      Julien Thierry <julien.thierry.kdev@gmail.com>
9944 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
9945 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9946 L:      kvmarm@lists.cs.columbia.edu
9947 S:      Maintained
9948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9949 F:      arch/arm64/include/asm/kvm*
9950 F:      arch/arm64/include/uapi/asm/kvm*
9951 F:      arch/arm64/kvm/
9952 F:      include/kvm/arm_*
9953
9954 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9955 M:      Huacai Chen <chenhuacai@kernel.org>
9956 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
9957 L:      linux-mips@vger.kernel.org
9958 L:      kvm@vger.kernel.org
9959 S:      Maintained
9960 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9961 F:      arch/mips/include/asm/kvm*
9962 F:      arch/mips/include/uapi/asm/kvm*
9963 F:      arch/mips/kvm/
9964
9965 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9966 M:      Paul Mackerras <paulus@ozlabs.org>
9967 L:      kvm-ppc@vger.kernel.org
9968 S:      Supported
9969 W:      http://www.linux-kvm.org/
9970 T:      git git://github.com/agraf/linux-2.6.git
9971 F:      arch/powerpc/include/asm/kvm*
9972 F:      arch/powerpc/include/uapi/asm/kvm*
9973 F:      arch/powerpc/kernel/kvm*
9974 F:      arch/powerpc/kvm/
9975
9976 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9977 M:      Christian Borntraeger <borntraeger@de.ibm.com>
9978 M:      Janosch Frank <frankja@linux.ibm.com>
9979 R:      David Hildenbrand <david@redhat.com>
9980 R:      Cornelia Huck <cohuck@redhat.com>
9981 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
9982 L:      kvm@vger.kernel.org
9983 S:      Supported
9984 W:      http://www.ibm.com/developerworks/linux/linux390/
9985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9986 F:      Documentation/virt/kvm/s390*
9987 F:      arch/s390/include/asm/gmap.h
9988 F:      arch/s390/include/asm/kvm*
9989 F:      arch/s390/include/uapi/asm/kvm*
9990 F:      arch/s390/kernel/uv.c
9991 F:      arch/s390/kvm/
9992 F:      arch/s390/mm/gmap.c
9993 F:      tools/testing/selftests/kvm/*/s390x/
9994 F:      tools/testing/selftests/kvm/s390x/
9995
9996 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9997 M:      Paolo Bonzini <pbonzini@redhat.com>
9998 R:      Sean Christopherson <seanjc@google.com>
9999 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10000 R:      Wanpeng Li <wanpengli@tencent.com>
10001 R:      Jim Mattson <jmattson@google.com>
10002 R:      Joerg Roedel <joro@8bytes.org>
10003 L:      kvm@vger.kernel.org
10004 S:      Supported
10005 W:      http://www.linux-kvm.org
10006 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10007 F:      arch/x86/include/asm/kvm*
10008 F:      arch/x86/include/asm/pvclock-abi.h
10009 F:      arch/x86/include/asm/svm.h
10010 F:      arch/x86/include/asm/vmx*.h
10011 F:      arch/x86/include/uapi/asm/kvm*
10012 F:      arch/x86/include/uapi/asm/svm.h
10013 F:      arch/x86/include/uapi/asm/vmx.h
10014 F:      arch/x86/kernel/kvm.c
10015 F:      arch/x86/kernel/kvmclock.c
10016 F:      arch/x86/kvm/
10017 F:      arch/x86/kvm/*/
10018
10019 KERNFS
10020 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10021 M:      Tejun Heo <tj@kernel.org>
10022 S:      Supported
10023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10024 F:      fs/kernfs/
10025 F:      include/linux/kernfs.h
10026
10027 KEXEC
10028 M:      Eric Biederman <ebiederm@xmission.com>
10029 L:      kexec@lists.infradead.org
10030 S:      Maintained
10031 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10032 F:      include/linux/kexec.h
10033 F:      include/uapi/linux/kexec.h
10034 F:      kernel/kexec*
10035
10036 KEYS-ENCRYPTED
10037 M:      Mimi Zohar <zohar@linux.ibm.com>
10038 L:      linux-integrity@vger.kernel.org
10039 L:      keyrings@vger.kernel.org
10040 S:      Supported
10041 F:      Documentation/security/keys/trusted-encrypted.rst
10042 F:      include/keys/encrypted-type.h
10043 F:      security/keys/encrypted-keys/
10044
10045 KEYS-TRUSTED
10046 M:      James Bottomley <jejb@linux.ibm.com>
10047 M:      Jarkko Sakkinen <jarkko@kernel.org>
10048 M:      Mimi Zohar <zohar@linux.ibm.com>
10049 L:      linux-integrity@vger.kernel.org
10050 L:      keyrings@vger.kernel.org
10051 S:      Supported
10052 F:      Documentation/security/keys/trusted-encrypted.rst
10053 F:      include/keys/trusted-type.h
10054 F:      include/keys/trusted_tpm.h
10055 F:      security/keys/trusted-keys/
10056
10057 KEYS-TRUSTED-TEE
10058 M:      Sumit Garg <sumit.garg@linaro.org>
10059 L:      linux-integrity@vger.kernel.org
10060 L:      keyrings@vger.kernel.org
10061 S:      Supported
10062 F:      include/keys/trusted_tee.h
10063 F:      security/keys/trusted-keys/trusted_tee.c
10064
10065 KEYS/KEYRINGS
10066 M:      David Howells <dhowells@redhat.com>
10067 M:      Jarkko Sakkinen <jarkko@kernel.org>
10068 L:      keyrings@vger.kernel.org
10069 S:      Maintained
10070 F:      Documentation/security/keys/core.rst
10071 F:      include/keys/
10072 F:      include/linux/key-type.h
10073 F:      include/linux/key.h
10074 F:      include/linux/keyctl.h
10075 F:      include/uapi/linux/keyctl.h
10076 F:      security/keys/
10077
10078 KFENCE
10079 M:      Alexander Potapenko <glider@google.com>
10080 M:      Marco Elver <elver@google.com>
10081 R:      Dmitry Vyukov <dvyukov@google.com>
10082 L:      kasan-dev@googlegroups.com
10083 S:      Maintained
10084 F:      Documentation/dev-tools/kfence.rst
10085 F:      arch/*/include/asm/kfence.h
10086 F:      include/linux/kfence.h
10087 F:      lib/Kconfig.kfence
10088 F:      mm/kfence/
10089
10090 KFIFO
10091 M:      Stefani Seibold <stefani@seibold.net>
10092 S:      Maintained
10093 F:      include/linux/kfifo.h
10094 F:      lib/kfifo.c
10095 F:      samples/kfifo/
10096
10097 KGDB / KDB /debug_core
10098 M:      Jason Wessel <jason.wessel@windriver.com>
10099 M:      Daniel Thompson <daniel.thompson@linaro.org>
10100 R:      Douglas Anderson <dianders@chromium.org>
10101 L:      kgdb-bugreport@lists.sourceforge.net
10102 S:      Maintained
10103 W:      http://kgdb.wiki.kernel.org/
10104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10105 F:      Documentation/dev-tools/kgdb.rst
10106 F:      drivers/misc/kgdbts.c
10107 F:      drivers/tty/serial/kgdboc.c
10108 F:      include/linux/kdb.h
10109 F:      include/linux/kgdb.h
10110 F:      kernel/debug/
10111
10112 KHADAS MCU MFD DRIVER
10113 M:      Neil Armstrong <narmstrong@baylibre.com>
10114 L:      linux-amlogic@lists.infradead.org
10115 S:      Maintained
10116 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10117 F:      drivers/mfd/khadas-mcu.c
10118 F:      include/linux/mfd/khadas-mcu.h
10119 F:      drivers/thermal/khadas_mcu_fan.c
10120
10121 KMEMLEAK
10122 M:      Catalin Marinas <catalin.marinas@arm.com>
10123 S:      Maintained
10124 F:      Documentation/dev-tools/kmemleak.rst
10125 F:      include/linux/kmemleak.h
10126 F:      mm/kmemleak.c
10127 F:      samples/kmemleak/kmemleak-test.c
10128
10129 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10130 M:      Luis Chamberlain <mcgrof@kernel.org>
10131 L:      linux-kernel@vger.kernel.org
10132 S:      Maintained
10133 F:      include/linux/kmod.h
10134 F:      kernel/kmod.c
10135 F:      lib/test_kmod.c
10136 F:      tools/testing/selftests/kmod/
10137
10138 KPROBES
10139 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10140 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10141 M:      "David S. Miller" <davem@davemloft.net>
10142 M:      Masami Hiramatsu <mhiramat@kernel.org>
10143 S:      Maintained
10144 F:      Documentation/trace/kprobes.rst
10145 F:      include/asm-generic/kprobes.h
10146 F:      include/linux/kprobes.h
10147 F:      kernel/kprobes.c
10148
10149 KS0108 LCD CONTROLLER DRIVER
10150 M:      Miguel Ojeda <ojeda@kernel.org>
10151 S:      Maintained
10152 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10153 F:      drivers/auxdisplay/ks0108.c
10154 F:      include/linux/ks0108.h
10155
10156 KTD253 BACKLIGHT DRIVER
10157 M:      Linus Walleij <linus.walleij@linaro.org>
10158 S:      Maintained
10159 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10160 F:      drivers/video/backlight/ktd253-backlight.c
10161
10162 L3MDEV
10163 M:      David Ahern <dsahern@kernel.org>
10164 L:      netdev@vger.kernel.org
10165 S:      Maintained
10166 F:      include/net/l3mdev.h
10167 F:      net/l3mdev
10168
10169 L7 BPF FRAMEWORK
10170 M:      John Fastabend <john.fastabend@gmail.com>
10171 M:      Daniel Borkmann <daniel@iogearbox.net>
10172 M:      Jakub Sitnicki <jakub@cloudflare.com>
10173 M:      Lorenz Bauer <lmb@cloudflare.com>
10174 L:      netdev@vger.kernel.org
10175 L:      bpf@vger.kernel.org
10176 S:      Maintained
10177 F:      include/linux/skmsg.h
10178 F:      net/core/skmsg.c
10179 F:      net/core/sock_map.c
10180 F:      net/ipv4/tcp_bpf.c
10181 F:      net/ipv4/udp_bpf.c
10182
10183 LANTIQ / INTEL Ethernet drivers
10184 M:      Hauke Mehrtens <hauke@hauke-m.de>
10185 L:      netdev@vger.kernel.org
10186 S:      Maintained
10187 F:      drivers/net/dsa/lantiq_gswip.c
10188 F:      drivers/net/dsa/lantiq_pce.h
10189 F:      drivers/net/ethernet/lantiq_xrx200.c
10190 F:      net/dsa/tag_gswip.c
10191
10192 LANTIQ MIPS ARCHITECTURE
10193 M:      John Crispin <john@phrozen.org>
10194 L:      linux-mips@vger.kernel.org
10195 S:      Maintained
10196 F:      arch/mips/lantiq
10197 F:      drivers/soc/lantiq
10198
10199 LASI 53c700 driver for PARISC
10200 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10201 L:      linux-scsi@vger.kernel.org
10202 S:      Maintained
10203 F:      Documentation/scsi/53c700.rst
10204 F:      drivers/scsi/53c700*
10205
10206 LEAKING_ADDRESSES
10207 M:      Tobin C. Harding <me@tobin.cc>
10208 M:      Tycho Andersen <tycho@tycho.pizza>
10209 L:      linux-hardening@vger.kernel.org
10210 S:      Maintained
10211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10212 F:      scripts/leaking_addresses.pl
10213
10214 LED SUBSYSTEM
10215 M:      Pavel Machek <pavel@ucw.cz>
10216 L:      linux-leds@vger.kernel.org
10217 S:      Maintained
10218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10219 F:      Documentation/devicetree/bindings/leds/
10220 F:      drivers/leds/
10221 F:      include/linux/leds.h
10222
10223 LEGACY EEPROM DRIVER
10224 M:      Jean Delvare <jdelvare@suse.com>
10225 S:      Maintained
10226 F:      Documentation/misc-devices/eeprom.rst
10227 F:      drivers/misc/eeprom/eeprom.c
10228
10229 LEGO MINDSTORMS EV3
10230 R:      David Lechner <david@lechnology.com>
10231 S:      Maintained
10232 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10233 F:      arch/arm/boot/dts/da850-lego-ev3.dts
10234 F:      drivers/power/supply/lego_ev3_battery.c
10235
10236 LEGO USB Tower driver
10237 M:      Juergen Stuber <starblue@users.sourceforge.net>
10238 L:      legousb-devel@lists.sourceforge.net
10239 S:      Maintained
10240 W:      http://legousb.sourceforge.net/
10241 F:      drivers/usb/misc/legousbtower.c
10242
10243 LG LAPTOP EXTRAS
10244 M:      Matan Ziv-Av <matan@svgalib.org>
10245 L:      platform-driver-x86@vger.kernel.org
10246 S:      Maintained
10247 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
10248 F:      Documentation/admin-guide/laptops/lg-laptop.rst
10249 F:      drivers/platform/x86/lg-laptop.c
10250
10251 LG2160 MEDIA DRIVER
10252 M:      Michael Krufky <mkrufky@linuxtv.org>
10253 L:      linux-media@vger.kernel.org
10254 S:      Maintained
10255 W:      https://linuxtv.org
10256 W:      http://github.com/mkrufky
10257 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10258 T:      git git://linuxtv.org/mkrufky/tuners.git
10259 F:      drivers/media/dvb-frontends/lg2160.*
10260
10261 LGDT3305 MEDIA DRIVER
10262 M:      Michael Krufky <mkrufky@linuxtv.org>
10263 L:      linux-media@vger.kernel.org
10264 S:      Maintained
10265 W:      https://linuxtv.org
10266 W:      http://github.com/mkrufky
10267 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10268 T:      git git://linuxtv.org/mkrufky/tuners.git
10269 F:      drivers/media/dvb-frontends/lgdt3305.*
10270
10271 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10272 M:      Viresh Kumar <vireshk@kernel.org>
10273 L:      linux-ide@vger.kernel.org
10274 S:      Maintained
10275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10276 F:      drivers/ata/pata_arasan_cf.c
10277 F:      include/linux/pata_arasan_cf_data.h
10278
10279 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10280 M:      Linus Walleij <linus.walleij@linaro.org>
10281 L:      linux-ide@vger.kernel.org
10282 S:      Maintained
10283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10284 F:      drivers/ata/pata_ftide010.c
10285 F:      drivers/ata/sata_gemini.c
10286 F:      drivers/ata/sata_gemini.h
10287
10288 LIBATA SATA AHCI PLATFORM devices support
10289 M:      Hans de Goede <hdegoede@redhat.com>
10290 M:      Jens Axboe <axboe@kernel.dk>
10291 L:      linux-ide@vger.kernel.org
10292 S:      Maintained
10293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10294 F:      drivers/ata/ahci_platform.c
10295 F:      drivers/ata/libahci_platform.c
10296 F:      include/linux/ahci_platform.h
10297
10298 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10299 M:      Mikael Pettersson <mikpelinux@gmail.com>
10300 L:      linux-ide@vger.kernel.org
10301 S:      Maintained
10302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10303 F:      drivers/ata/sata_promise.*
10304
10305 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10306 M:      Jens Axboe <axboe@kernel.dk>
10307 L:      linux-ide@vger.kernel.org
10308 S:      Maintained
10309 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10310 F:      Documentation/devicetree/bindings/ata/
10311 F:      drivers/ata/
10312 F:      include/linux/ata.h
10313 F:      include/linux/libata.h
10314
10315 LIBLOCKDEP
10316 M:      Sasha Levin <alexander.levin@microsoft.com>
10317 S:      Maintained
10318 F:      tools/lib/lockdep/
10319
10320 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10321 M:      Dan Williams <dan.j.williams@intel.com>
10322 M:      Vishal Verma <vishal.l.verma@intel.com>
10323 M:      Dave Jiang <dave.jiang@intel.com>
10324 L:      linux-nvdimm@lists.01.org
10325 S:      Supported
10326 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10327 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10328 F:      drivers/nvdimm/blk.c
10329 F:      drivers/nvdimm/region_devs.c
10330
10331 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10332 M:      Vishal Verma <vishal.l.verma@intel.com>
10333 M:      Dan Williams <dan.j.williams@intel.com>
10334 M:      Dave Jiang <dave.jiang@intel.com>
10335 L:      linux-nvdimm@lists.01.org
10336 S:      Supported
10337 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10338 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10339 F:      drivers/nvdimm/btt*
10340
10341 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10342 M:      Dan Williams <dan.j.williams@intel.com>
10343 M:      Vishal Verma <vishal.l.verma@intel.com>
10344 M:      Dave Jiang <dave.jiang@intel.com>
10345 L:      linux-nvdimm@lists.01.org
10346 S:      Supported
10347 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10348 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10349 F:      drivers/nvdimm/pmem*
10350
10351 LIBNVDIMM: DEVICETREE BINDINGS
10352 M:      Oliver O'Halloran <oohall@gmail.com>
10353 L:      linux-nvdimm@lists.01.org
10354 S:      Supported
10355 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10356 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10357 F:      drivers/nvdimm/of_pmem.c
10358
10359 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10360 M:      Dan Williams <dan.j.williams@intel.com>
10361 M:      Vishal Verma <vishal.l.verma@intel.com>
10362 M:      Dave Jiang <dave.jiang@intel.com>
10363 M:      Ira Weiny <ira.weiny@intel.com>
10364 L:      linux-nvdimm@lists.01.org
10365 S:      Supported
10366 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10367 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10369 F:      drivers/acpi/nfit/*
10370 F:      drivers/nvdimm/*
10371 F:      include/linux/libnvdimm.h
10372 F:      include/linux/nd.h
10373 F:      include/uapi/linux/ndctl.h
10374 F:      tools/testing/nvdimm/
10375
10376 LICENSES and SPDX stuff
10377 M:      Thomas Gleixner <tglx@linutronix.de>
10378 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10379 L:      linux-spdx@vger.kernel.org
10380 S:      Maintained
10381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10382 F:      COPYING
10383 F:      Documentation/process/license-rules.rst
10384 F:      LICENSES/
10385 F:      scripts/spdxcheck-test.sh
10386 F:      scripts/spdxcheck.py
10387
10388 LIGHTNVM PLATFORM SUPPORT
10389 M:      Matias Bjorling <mb@lightnvm.io>
10390 L:      linux-block@vger.kernel.org
10391 S:      Maintained
10392 W:      http://github/OpenChannelSSD
10393 F:      drivers/lightnvm/
10394 F:      include/linux/lightnvm.h
10395 F:      include/uapi/linux/lightnvm.h
10396
10397 LINEAR RANGES HELPERS
10398 M:      Mark Brown <broonie@kernel.org>
10399 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10400 F:      lib/linear_ranges.c
10401 F:      lib/test_linear_ranges.c
10402 F:      include/linux/linear_range.h
10403
10404 LINUX FOR POWER MACINTOSH
10405 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10406 L:      linuxppc-dev@lists.ozlabs.org
10407 S:      Odd Fixes
10408 F:      arch/powerpc/platforms/powermac/
10409 F:      drivers/macintosh/
10410
10411 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10412 M:      Michael Ellerman <mpe@ellerman.id.au>
10413 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10414 R:      Paul Mackerras <paulus@samba.org>
10415 L:      linuxppc-dev@lists.ozlabs.org
10416 S:      Supported
10417 W:      https://github.com/linuxppc/wiki/wiki
10418 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10420 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10421 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10422 F:      Documentation/devicetree/bindings/powerpc/
10423 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10424 F:      Documentation/powerpc/
10425 F:      arch/powerpc/
10426 F:      drivers/*/*/*pasemi*
10427 F:      drivers/*/*pasemi*
10428 F:      drivers/char/tpm/tpm_ibmvtpm*
10429 F:      drivers/crypto/nx/
10430 F:      drivers/crypto/vmx/
10431 F:      drivers/i2c/busses/i2c-opal.c
10432 F:      drivers/net/ethernet/ibm/ibmveth.*
10433 F:      drivers/net/ethernet/ibm/ibmvnic.*
10434 F:      drivers/pci/hotplug/pnv_php.c
10435 F:      drivers/pci/hotplug/rpa*
10436 F:      drivers/rtc/rtc-opal.c
10437 F:      drivers/scsi/ibmvscsi/
10438 F:      drivers/tty/hvc/hvc_opal.c
10439 F:      drivers/watchdog/wdrtas.c
10440 F:      tools/testing/selftests/powerpc
10441 N:      /pmac
10442 N:      powermac
10443 N:      powernv
10444 N:      [^a-z0-9]ps3
10445 N:      pseries
10446
10447 LINUX FOR POWERPC EMBEDDED MPC5XXX
10448 M:      Anatolij Gustschin <agust@denx.de>
10449 L:      linuxppc-dev@lists.ozlabs.org
10450 S:      Odd Fixes
10451 F:      arch/powerpc/platforms/512x/
10452 F:      arch/powerpc/platforms/52xx/
10453
10454 LINUX FOR POWERPC EMBEDDED PPC4XX
10455 L:      linuxppc-dev@lists.ozlabs.org
10456 S:      Orphan
10457 F:      arch/powerpc/platforms/40x/
10458 F:      arch/powerpc/platforms/44x/
10459
10460 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10461 M:      Scott Wood <oss@buserror.net>
10462 L:      linuxppc-dev@lists.ozlabs.org
10463 S:      Odd fixes
10464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10465 F:      Documentation/devicetree/bindings/powerpc/fsl/
10466 F:      arch/powerpc/platforms/83xx/
10467 F:      arch/powerpc/platforms/85xx/
10468
10469 LINUX FOR POWERPC EMBEDDED PPC8XX
10470 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10471 L:      linuxppc-dev@lists.ozlabs.org
10472 S:      Maintained
10473 F:      arch/powerpc/platforms/8xx/
10474
10475 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10476 M:      Kees Cook <keescook@chromium.org>
10477 S:      Maintained
10478 F:      drivers/misc/lkdtm/*
10479 F:      tools/testing/selftests/lkdtm/*
10480
10481 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10482 M:      Alan Stern <stern@rowland.harvard.edu>
10483 M:      Andrea Parri <parri.andrea@gmail.com>
10484 M:      Will Deacon <will@kernel.org>
10485 M:      Peter Zijlstra <peterz@infradead.org>
10486 M:      Boqun Feng <boqun.feng@gmail.com>
10487 M:      Nicholas Piggin <npiggin@gmail.com>
10488 M:      David Howells <dhowells@redhat.com>
10489 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10490 M:      Luc Maranget <luc.maranget@inria.fr>
10491 M:      "Paul E. McKenney" <paulmck@kernel.org>
10492 R:      Akira Yokosawa <akiyks@gmail.com>
10493 R:      Daniel Lustig <dlustig@nvidia.com>
10494 R:      Joel Fernandes <joel@joelfernandes.org>
10495 L:      linux-kernel@vger.kernel.org
10496 L:      linux-arch@vger.kernel.org
10497 S:      Supported
10498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10499 F:      Documentation/atomic_bitops.txt
10500 F:      Documentation/atomic_t.txt
10501 F:      Documentation/core-api/refcount-vs-atomic.rst
10502 F:      Documentation/litmus-tests/
10503 F:      Documentation/memory-barriers.txt
10504 F:      tools/memory-model/
10505
10506 LIS3LV02D ACCELEROMETER DRIVER
10507 M:      Eric Piel <eric.piel@tremplin-utc.net>
10508 S:      Maintained
10509 F:      Documentation/misc-devices/lis3lv02d.rst
10510 F:      drivers/misc/lis3lv02d/
10511 F:      drivers/platform/x86/hp_accel.c
10512
10513 LIST KUNIT TEST
10514 M:      David Gow <davidgow@google.com>
10515 L:      linux-kselftest@vger.kernel.org
10516 L:      kunit-dev@googlegroups.com
10517 S:      Maintained
10518 F:      lib/list-test.c
10519
10520 LITEX PLATFORM
10521 M:      Karol Gugala <kgugala@antmicro.com>
10522 M:      Mateusz Holenko <mholenko@antmicro.com>
10523 S:      Maintained
10524 F:      Documentation/devicetree/bindings/*/litex,*.yaml
10525 F:      arch/openrisc/boot/dts/or1klitex.dts
10526 F:      drivers/soc/litex/litex_soc_ctrl.c
10527 F:      drivers/tty/serial/liteuart.c
10528 F:      include/linux/litex.h
10529
10530 LIVE PATCHING
10531 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10532 M:      Jiri Kosina <jikos@kernel.org>
10533 M:      Miroslav Benes <mbenes@suse.cz>
10534 M:      Petr Mladek <pmladek@suse.com>
10535 R:      Joe Lawrence <joe.lawrence@redhat.com>
10536 L:      live-patching@vger.kernel.org
10537 S:      Maintained
10538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10539 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10540 F:      Documentation/livepatch/
10541 F:      arch/powerpc/include/asm/livepatch.h
10542 F:      arch/s390/include/asm/livepatch.h
10543 F:      arch/x86/include/asm/livepatch.h
10544 F:      include/linux/livepatch.h
10545 F:      kernel/livepatch/
10546 F:      lib/livepatch/
10547 F:      samples/livepatch/
10548 F:      tools/testing/selftests/livepatch/
10549
10550 LLC (802.2)
10551 L:      netdev@vger.kernel.org
10552 S:      Odd fixes
10553 F:      include/linux/llc.h
10554 F:      include/net/llc*
10555 F:      include/uapi/linux/llc.h
10556 F:      net/llc/
10557
10558 LM73 HARDWARE MONITOR DRIVER
10559 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10560 L:      linux-hwmon@vger.kernel.org
10561 S:      Maintained
10562 F:      drivers/hwmon/lm73.c
10563
10564 LM78 HARDWARE MONITOR DRIVER
10565 M:      Jean Delvare <jdelvare@suse.com>
10566 L:      linux-hwmon@vger.kernel.org
10567 S:      Maintained
10568 F:      Documentation/hwmon/lm78.rst
10569 F:      drivers/hwmon/lm78.c
10570
10571 LM83 HARDWARE MONITOR DRIVER
10572 M:      Jean Delvare <jdelvare@suse.com>
10573 L:      linux-hwmon@vger.kernel.org
10574 S:      Maintained
10575 F:      Documentation/hwmon/lm83.rst
10576 F:      drivers/hwmon/lm83.c
10577
10578 LM90 HARDWARE MONITOR DRIVER
10579 M:      Jean Delvare <jdelvare@suse.com>
10580 L:      linux-hwmon@vger.kernel.org
10581 S:      Maintained
10582 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10583 F:      Documentation/hwmon/lm90.rst
10584 F:      drivers/hwmon/lm90.c
10585 F:      include/dt-bindings/thermal/lm90.h
10586
10587 LM95234 HARDWARE MONITOR DRIVER
10588 M:      Guenter Roeck <linux@roeck-us.net>
10589 L:      linux-hwmon@vger.kernel.org
10590 S:      Maintained
10591 F:      Documentation/hwmon/lm95234.rst
10592 F:      drivers/hwmon/lm95234.c
10593
10594 LME2510 MEDIA DRIVER
10595 M:      Malcolm Priestley <tvboxspy@gmail.com>
10596 L:      linux-media@vger.kernel.org
10597 S:      Maintained
10598 W:      https://linuxtv.org
10599 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10600 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10601
10602 LOADPIN SECURITY MODULE
10603 M:      Kees Cook <keescook@chromium.org>
10604 S:      Supported
10605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10606 F:      Documentation/admin-guide/LSM/LoadPin.rst
10607 F:      security/loadpin/
10608
10609 LOCKING PRIMITIVES
10610 M:      Peter Zijlstra <peterz@infradead.org>
10611 M:      Ingo Molnar <mingo@redhat.com>
10612 M:      Will Deacon <will@kernel.org>
10613 R:      Waiman Long <longman@redhat.com>
10614 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
10615 L:      linux-kernel@vger.kernel.org
10616 S:      Maintained
10617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10618 F:      Documentation/locking/
10619 F:      arch/*/include/asm/spinlock*.h
10620 F:      include/linux/lockdep.h
10621 F:      include/linux/mutex*.h
10622 F:      include/linux/rwlock*.h
10623 F:      include/linux/rwsem*.h
10624 F:      include/linux/seqlock.h
10625 F:      include/linux/spinlock*.h
10626 F:      kernel/locking/
10627 F:      lib/locking*.[ch]
10628 X:      kernel/locking/locktorture.c
10629
10630 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10631 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
10632 L:      linux-ntfs-dev@lists.sourceforge.net
10633 S:      Maintained
10634 W:      http://www.linux-ntfs.org/content/view/19/37/
10635 F:      Documentation/admin-guide/ldm.rst
10636 F:      block/partitions/ldm.*
10637
10638 LOGITECH HID GAMING KEYBOARDS
10639 M:      Hans de Goede <hdegoede@redhat.com>
10640 L:      linux-input@vger.kernel.org
10641 S:      Maintained
10642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10643 F:      drivers/hid/hid-lg-g15.c
10644
10645 LONTIUM LT8912B MIPI TO HDMI BRIDGE
10646 M:      Adrien Grassein <adrien.grassein@gmail.com>
10647 S:      Maintained
10648 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
10649 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
10650
10651 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10652 M:      Sathya Prakash <sathya.prakash@broadcom.com>
10653 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
10654 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10655 L:      MPT-FusionLinux.pdl@broadcom.com
10656 L:      linux-scsi@vger.kernel.org
10657 S:      Supported
10658 W:      http://www.avagotech.com/support/
10659 F:      drivers/message/fusion/
10660 F:      drivers/scsi/mpt3sas/
10661
10662 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10663 M:      Matthew Wilcox <willy@infradead.org>
10664 L:      linux-scsi@vger.kernel.org
10665 S:      Maintained
10666 F:      drivers/scsi/sym53c8xx_2/
10667
10668 LTC1660 DAC DRIVER
10669 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10670 L:      linux-iio@vger.kernel.org
10671 S:      Maintained
10672 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10673 F:      drivers/iio/dac/ltc1660.c
10674
10675 LTC2947 HARDWARE MONITOR DRIVER
10676 M:      Nuno Sá <nuno.sa@analog.com>
10677 L:      linux-hwmon@vger.kernel.org
10678 S:      Supported
10679 W:      http://ez.analog.com/community/linux-device-drivers
10680 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10681 F:      drivers/hwmon/ltc2947-core.c
10682 F:      drivers/hwmon/ltc2947-i2c.c
10683 F:      drivers/hwmon/ltc2947-spi.c
10684 F:      drivers/hwmon/ltc2947.h
10685
10686 LTC2983 IIO TEMPERATURE DRIVER
10687 M:      Nuno Sá <nuno.sa@analog.com>
10688 L:      linux-iio@vger.kernel.org
10689 S:      Supported
10690 W:      http://ez.analog.com/community/linux-device-drivers
10691 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10692 F:      drivers/iio/temperature/ltc2983.c
10693
10694 LTC4261 HARDWARE MONITOR DRIVER
10695 M:      Guenter Roeck <linux@roeck-us.net>
10696 L:      linux-hwmon@vger.kernel.org
10697 S:      Maintained
10698 F:      Documentation/hwmon/ltc4261.rst
10699 F:      drivers/hwmon/ltc4261.c
10700
10701 LTC4306 I2C MULTIPLEXER DRIVER
10702 M:      Michael Hennerich <michael.hennerich@analog.com>
10703 L:      linux-i2c@vger.kernel.org
10704 S:      Supported
10705 W:      http://ez.analog.com/community/linux-device-drivers
10706 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10707 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10708
10709 LTP (Linux Test Project)
10710 M:      Mike Frysinger <vapier@gentoo.org>
10711 M:      Cyril Hrubis <chrubis@suse.cz>
10712 M:      Wanlong Gao <wanlong.gao@gmail.com>
10713 M:      Jan Stancek <jstancek@redhat.com>
10714 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
10715 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
10716 L:      ltp@lists.linux.it (subscribers-only)
10717 S:      Maintained
10718 W:      http://linux-test-project.github.io/
10719 T:      git git://github.com/linux-test-project/ltp.git
10720
10721 LYNX PCS MODULE
10722 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
10723 L:      netdev@vger.kernel.org
10724 S:      Supported
10725 F:      drivers/net/pcs/pcs-lynx.c
10726 F:      include/linux/pcs-lynx.h
10727
10728 M68K ARCHITECTURE
10729 M:      Geert Uytterhoeven <geert@linux-m68k.org>
10730 L:      linux-m68k@lists.linux-m68k.org
10731 S:      Maintained
10732 W:      http://www.linux-m68k.org/
10733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10734 F:      arch/m68k/
10735 F:      drivers/zorro/
10736
10737 M68K ON APPLE MACINTOSH
10738 M:      Joshua Thompson <funaho@jurai.org>
10739 L:      linux-m68k@lists.linux-m68k.org
10740 S:      Maintained
10741 W:      http://www.mac.linux-m68k.org/
10742 F:      arch/m68k/mac/
10743 F:      drivers/macintosh/adb-iop.c
10744 F:      drivers/macintosh/via-macii.c
10745
10746 M68K ON HP9000/300
10747 M:      Philip Blundell <philb@gnu.org>
10748 S:      Maintained
10749 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10750 F:      arch/m68k/hp300/
10751
10752 M88DS3103 MEDIA DRIVER
10753 M:      Antti Palosaari <crope@iki.fi>
10754 L:      linux-media@vger.kernel.org
10755 S:      Maintained
10756 W:      https://linuxtv.org
10757 W:      http://palosaari.fi/linux/
10758 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10759 T:      git git://linuxtv.org/anttip/media_tree.git
10760 F:      drivers/media/dvb-frontends/m88ds3103*
10761
10762 M88RS2000 MEDIA DRIVER
10763 M:      Malcolm Priestley <tvboxspy@gmail.com>
10764 L:      linux-media@vger.kernel.org
10765 S:      Maintained
10766 W:      https://linuxtv.org
10767 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10768 F:      drivers/media/dvb-frontends/m88rs2000*
10769
10770 MA901 MASTERKIT USB FM RADIO DRIVER
10771 M:      Alexey Klimov <klimov.linux@gmail.com>
10772 L:      linux-media@vger.kernel.org
10773 S:      Maintained
10774 T:      git git://linuxtv.org/media_tree.git
10775 F:      drivers/media/radio/radio-ma901.c
10776
10777 MAC80211
10778 M:      Johannes Berg <johannes@sipsolutions.net>
10779 L:      linux-wireless@vger.kernel.org
10780 S:      Maintained
10781 W:      https://wireless.wiki.kernel.org/
10782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10784 F:      Documentation/networking/mac80211-injection.rst
10785 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10786 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10787 F:      include/net/mac80211.h
10788 F:      net/mac80211/
10789
10790 MAILBOX API
10791 M:      Jassi Brar <jassisinghbrar@gmail.com>
10792 L:      linux-kernel@vger.kernel.org
10793 S:      Maintained
10794 F:      drivers/mailbox/
10795 F:      include/linux/mailbox_client.h
10796 F:      include/linux/mailbox_controller.h
10797 F:      Documentation/devicetree/bindings/mailbox/
10798
10799 MAILBOX ARM MHUv2
10800 M:      Viresh Kumar <viresh.kumar@linaro.org>
10801 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
10802 L:      linux-kernel@vger.kernel.org
10803 S:      Maintained
10804 F:      drivers/mailbox/arm_mhuv2.c
10805 F:      include/linux/mailbox/arm_mhuv2_message.h
10806 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
10807
10808 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10809 M:      Michael Kerrisk <mtk.manpages@gmail.com>
10810 L:      linux-man@vger.kernel.org
10811 S:      Maintained
10812 W:      http://www.kernel.org/doc/man-pages
10813
10814 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10815 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
10816 L:      linux-mips@vger.kernel.org
10817 S:      Maintained
10818 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10819
10820 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10821 M:      Andrew Lunn <andrew@lunn.ch>
10822 M:      Vivien Didelot <vivien.didelot@gmail.com>
10823 L:      netdev@vger.kernel.org
10824 S:      Maintained
10825 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10826 F:      Documentation/networking/devlink/mv88e6xxx.rst
10827 F:      drivers/net/dsa/mv88e6xxx/
10828 F:      include/linux/platform_data/mv88e6xxx.h
10829
10830 MARVELL ARMADA 3700 PHY DRIVERS
10831 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10832 S:      Maintained
10833 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10834 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10835 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10836 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10837
10838 MARVELL ARMADA DRM SUPPORT
10839 M:      Russell King <linux@armlinux.org.uk>
10840 S:      Maintained
10841 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10842 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10843 F:      Documentation/devicetree/bindings/display/armada/
10844 F:      drivers/gpu/drm/armada/
10845 F:      include/uapi/drm/armada_drm.h
10846
10847 MARVELL CRYPTO DRIVER
10848 M:      Boris Brezillon <bbrezillon@kernel.org>
10849 M:      Arnaud Ebalard <arno@natisbad.org>
10850 M:      Srujana Challa <schalla@marvell.com>
10851 L:      linux-crypto@vger.kernel.org
10852 S:      Maintained
10853 F:      drivers/crypto/marvell/
10854 F:      include/linux/soc/marvell/octeontx2/
10855
10856 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10857 M:      Mirko Lindner <mlindner@marvell.com>
10858 M:      Stephen Hemminger <stephen@networkplumber.org>
10859 L:      netdev@vger.kernel.org
10860 S:      Maintained
10861 F:      drivers/net/ethernet/marvell/sk*
10862
10863 MARVELL LIBERTAS WIRELESS DRIVER
10864 L:      libertas-dev@lists.infradead.org
10865 S:      Orphan
10866 F:      drivers/net/wireless/marvell/libertas/
10867
10868 MARVELL MACCHIATOBIN SUPPORT
10869 M:      Russell King <linux@armlinux.org.uk>
10870 L:      linux-arm-kernel@lists.infradead.org
10871 S:      Maintained
10872 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10873
10874 MARVELL MV643XX ETHERNET DRIVER
10875 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
10876 L:      netdev@vger.kernel.org
10877 S:      Maintained
10878 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10879 F:      include/linux/mv643xx.h
10880
10881 MARVELL MV88X3310 PHY DRIVER
10882 M:      Russell King <linux@armlinux.org.uk>
10883 M:      Marek Behun <marek.behun@nic.cz>
10884 L:      netdev@vger.kernel.org
10885 S:      Maintained
10886 F:      drivers/net/phy/marvell10g.c
10887
10888 MARVELL MVEBU THERMAL DRIVER
10889 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10890 S:      Maintained
10891 F:      drivers/thermal/armada_thermal.c
10892
10893 MARVELL MVNETA ETHERNET DRIVER
10894 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
10895 L:      netdev@vger.kernel.org
10896 S:      Maintained
10897 F:      drivers/net/ethernet/marvell/mvneta.*
10898
10899 MARVELL MVPP2 ETHERNET DRIVER
10900 M:      Marcin Wojtas <mw@semihalf.com>
10901 M:      Russell King <linux@armlinux.org.uk>
10902 L:      netdev@vger.kernel.org
10903 S:      Maintained
10904 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
10905 F:      drivers/net/ethernet/marvell/mvpp2/
10906
10907 MARVELL MWIFIEX WIRELESS DRIVER
10908 M:      Amitkumar Karwar <amitkarwar@gmail.com>
10909 M:      Ganapathi Bhat <ganapathi017@gmail.com>
10910 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
10911 M:      Xinming Hu <huxinming820@gmail.com>
10912 L:      linux-wireless@vger.kernel.org
10913 S:      Maintained
10914 F:      drivers/net/wireless/marvell/mwifiex/
10915
10916 MARVELL MWL8K WIRELESS DRIVER
10917 M:      Lennert Buytenhek <buytenh@wantstofly.org>
10918 L:      linux-wireless@vger.kernel.org
10919 S:      Odd Fixes
10920 F:      drivers/net/wireless/marvell/mwl8k.c
10921
10922 MARVELL NAND CONTROLLER DRIVER
10923 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10924 L:      linux-mtd@lists.infradead.org
10925 S:      Maintained
10926 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10927 F:      drivers/mtd/nand/raw/marvell_nand.c
10928
10929 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10930 M:      Sunil Goutham <sgoutham@marvell.com>
10931 M:      Geetha sowjanya <gakula@marvell.com>
10932 M:      Subbaraya Sundeep <sbhatta@marvell.com>
10933 M:      hariprasad <hkelam@marvell.com>
10934 L:      netdev@vger.kernel.org
10935 S:      Supported
10936 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10937 F:      include/linux/soc/marvell/octeontx2/
10938
10939 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10940 M:      Sunil Goutham <sgoutham@marvell.com>
10941 M:      Linu Cherian <lcherian@marvell.com>
10942 M:      Geetha sowjanya <gakula@marvell.com>
10943 M:      Jerin Jacob <jerinj@marvell.com>
10944 M:      hariprasad <hkelam@marvell.com>
10945 M:      Subbaraya Sundeep <sbhatta@marvell.com>
10946 L:      netdev@vger.kernel.org
10947 S:      Supported
10948 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
10949 F:      drivers/net/ethernet/marvell/octeontx2/af/
10950
10951 MARVELL PRESTERA ETHERNET SWITCH DRIVER
10952 M:      Vadym Kochan <vkochan@marvell.com>
10953 M:      Taras Chornyi <tchornyi@marvell.com>
10954 S:      Supported
10955 W:      https://github.com/Marvell-switching/switchdev-prestera
10956 F:      drivers/net/ethernet/marvell/prestera/
10957
10958 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10959 M:      Nicolas Pitre <nico@fluxnic.net>
10960 S:      Odd Fixes
10961 F:      drivers/mmc/host/mvsdio.*
10962
10963 MARVELL USB MDIO CONTROLLER DRIVER
10964 M:      Tobias Waldekranz <tobias@waldekranz.com>
10965 L:      netdev@vger.kernel.org
10966 S:      Maintained
10967 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10968 F:      drivers/net/mdio/mdio-mvusb.c
10969
10970 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10971 M:      Hu Ziji <huziji@marvell.com>
10972 L:      linux-mmc@vger.kernel.org
10973 S:      Supported
10974 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10975 F:      drivers/mmc/host/sdhci-xenon*
10976
10977 MATROX FRAMEBUFFER DRIVER
10978 L:      linux-fbdev@vger.kernel.org
10979 S:      Orphan
10980 F:      drivers/video/fbdev/matrox/matroxfb_*
10981 F:      include/uapi/linux/matroxfb.h
10982
10983 MAX15301 DRIVER
10984 M:      Daniel Nilsson <daniel.nilsson@flex.com>
10985 L:      linux-hwmon@vger.kernel.org
10986 S:      Maintained
10987 F:      Documentation/hwmon/max15301.rst
10988 F:      drivers/hwmon/pmbus/max15301.c
10989
10990 MAX16065 HARDWARE MONITOR DRIVER
10991 M:      Guenter Roeck <linux@roeck-us.net>
10992 L:      linux-hwmon@vger.kernel.org
10993 S:      Maintained
10994 F:      Documentation/hwmon/max16065.rst
10995 F:      drivers/hwmon/max16065.c
10996
10997 MAX2175 SDR TUNER DRIVER
10998 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10999 L:      linux-media@vger.kernel.org
11000 S:      Maintained
11001 T:      git git://linuxtv.org/media_tree.git
11002 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11003 F:      Documentation/userspace-api/media/drivers/max2175.rst
11004 F:      drivers/media/i2c/max2175*
11005 F:      include/uapi/linux/max2175.h
11006
11007 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11008 L:      linux-hwmon@vger.kernel.org
11009 S:      Orphan
11010 F:      Documentation/hwmon/max6650.rst
11011 F:      drivers/hwmon/max6650.c
11012
11013 MAX6697 HARDWARE MONITOR DRIVER
11014 M:      Guenter Roeck <linux@roeck-us.net>
11015 L:      linux-hwmon@vger.kernel.org
11016 S:      Maintained
11017 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11018 F:      Documentation/hwmon/max6697.rst
11019 F:      drivers/hwmon/max6697.c
11020 F:      include/linux/platform_data/max6697.h
11021
11022 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11023 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
11024 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11025 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11026 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11027 L:      linux-media@vger.kernel.org
11028 S:      Maintained
11029 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11030 F:      drivers/media/i2c/max9286.c
11031
11032 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11033 M:      Peter Rosin <peda@axentia.se>
11034 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11035 S:      Maintained
11036 F:      Documentation/devicetree/bindings/sound/max9860.txt
11037 F:      sound/soc/codecs/max9860.*
11038
11039 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11040 M:      Andreas Klinger <ak@it-klinger.de>
11041 L:      linux-iio@vger.kernel.org
11042 S:      Maintained
11043 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11044 F:      drivers/iio/proximity/mb1232.c
11045
11046 MAXIM MAX77650 PMIC MFD DRIVER
11047 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
11048 L:      linux-kernel@vger.kernel.org
11049 S:      Maintained
11050 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11051 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11052 F:      drivers/gpio/gpio-max77650.c
11053 F:      drivers/input/misc/max77650-onkey.c
11054 F:      drivers/leds/leds-max77650.c
11055 F:      drivers/mfd/max77650.c
11056 F:      drivers/power/supply/max77650-charger.c
11057 F:      drivers/regulator/max77650-regulator.c
11058 F:      include/linux/mfd/max77650.h
11059
11060 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11061 M:      Javier Martinez Canillas <javier@dowhile0.org>
11062 L:      linux-kernel@vger.kernel.org
11063 S:      Supported
11064 F:      Documentation/devicetree/bindings/*/*max77802.txt
11065 F:      drivers/regulator/max77802-regulator.c
11066 F:      include/dt-bindings/*/*max77802.h
11067
11068 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11069 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11070 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11071 L:      linux-pm@vger.kernel.org
11072 S:      Supported
11073 F:      drivers/power/supply/max14577_charger.c
11074 F:      drivers/power/supply/max77693_charger.c
11075
11076 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11077 M:      Chanwoo Choi <cw00.choi@samsung.com>
11078 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11079 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11080 L:      linux-kernel@vger.kernel.org
11081 S:      Supported
11082 F:      Documentation/devicetree/bindings/*/max77686.txt
11083 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
11084 F:      Documentation/devicetree/bindings/mfd/max14577.txt
11085 F:      Documentation/devicetree/bindings/mfd/max77693.txt
11086 F:      drivers/*/max14577*.c
11087 F:      drivers/*/max77686*.c
11088 F:      drivers/*/max77693*.c
11089 F:      drivers/clk/clk-max77686.c
11090 F:      drivers/extcon/extcon-max14577.c
11091 F:      drivers/extcon/extcon-max77693.c
11092 F:      drivers/rtc/rtc-max77686.c
11093 F:      include/linux/mfd/max14577*.h
11094 F:      include/linux/mfd/max77686*.h
11095 F:      include/linux/mfd/max77693*.h
11096
11097 MAXIRADIO FM RADIO RECEIVER DRIVER
11098 M:      Hans Verkuil <hverkuil@xs4all.nl>
11099 L:      linux-media@vger.kernel.org
11100 S:      Maintained
11101 W:      https://linuxtv.org
11102 T:      git git://linuxtv.org/media_tree.git
11103 F:      drivers/media/radio/radio-maxiradio*
11104
11105 MCAN MMIO DEVICE DRIVER
11106 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11107 L:      linux-can@vger.kernel.org
11108 S:      Maintained
11109 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11110 F:      drivers/net/can/m_can/m_can.c
11111 F:      drivers/net/can/m_can/m_can.h
11112 F:      drivers/net/can/m_can/m_can_platform.c
11113
11114 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11115 M:      Rishi Gupta <gupt21@gmail.com>
11116 L:      linux-i2c@vger.kernel.org
11117 L:      linux-input@vger.kernel.org
11118 S:      Maintained
11119 F:      drivers/hid/hid-mcp2221.c
11120
11121 MCP251XFD SPI-CAN NETWORK DRIVER
11122 M:      Marc Kleine-Budde <mkl@pengutronix.de>
11123 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11124 R:      Thomas Kopp <thomas.kopp@microchip.com>
11125 L:      linux-can@vger.kernel.org
11126 S:      Maintained
11127 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11128 F:      drivers/net/can/spi/mcp251xfd/
11129
11130 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11131 M:      Peter Rosin <peda@axentia.se>
11132 L:      linux-iio@vger.kernel.org
11133 S:      Maintained
11134 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11135 F:      drivers/iio/potentiometer/mcp4018.c
11136 F:      drivers/iio/potentiometer/mcp4531.c
11137
11138 MCR20A IEEE-802.15.4 RADIO DRIVER
11139 M:      Xue Liu <liuxuenetmail@gmail.com>
11140 L:      linux-wpan@vger.kernel.org
11141 S:      Maintained
11142 W:      https://github.com/xueliu/mcr20a-linux
11143 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11144 F:      drivers/net/ieee802154/mcr20a.c
11145 F:      drivers/net/ieee802154/mcr20a.h
11146
11147 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11148 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
11149 L:      linux-iio@vger.kernel.org
11150 S:      Maintained
11151 F:      drivers/iio/dac/cio-dac.c
11152
11153 MEDIA CONTROLLER FRAMEWORK
11154 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11155 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11156 L:      linux-media@vger.kernel.org
11157 S:      Supported
11158 W:      https://www.linuxtv.org
11159 T:      git git://linuxtv.org/media_tree.git
11160 F:      drivers/media/mc/
11161 F:      include/media/media-*.h
11162 F:      include/uapi/linux/media.h
11163
11164 MEDIA DRIVER FOR FREESCALE IMX PXP
11165 M:      Philipp Zabel <p.zabel@pengutronix.de>
11166 L:      linux-media@vger.kernel.org
11167 S:      Maintained
11168 T:      git git://linuxtv.org/media_tree.git
11169 F:      drivers/media/platform/imx-pxp.[ch]
11170
11171 MEDIA DRIVERS FOR ASCOT2E
11172 M:      Sergey Kozlov <serjk@netup.ru>
11173 M:      Abylay Ospan <aospan@netup.ru>
11174 L:      linux-media@vger.kernel.org
11175 S:      Supported
11176 W:      https://linuxtv.org
11177 W:      http://netup.tv/
11178 T:      git git://linuxtv.org/media_tree.git
11179 F:      drivers/media/dvb-frontends/ascot2e*
11180
11181 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11182 M:      Jasmin Jessich <jasmin@anw.at>
11183 L:      linux-media@vger.kernel.org
11184 S:      Maintained
11185 W:      https://linuxtv.org
11186 T:      git git://linuxtv.org/media_tree.git
11187 F:      drivers/media/dvb-frontends/cxd2099*
11188
11189 MEDIA DRIVERS FOR CXD2841ER
11190 M:      Sergey Kozlov <serjk@netup.ru>
11191 M:      Abylay Ospan <aospan@netup.ru>
11192 L:      linux-media@vger.kernel.org
11193 S:      Supported
11194 W:      https://linuxtv.org
11195 W:      http://netup.tv/
11196 T:      git git://linuxtv.org/media_tree.git
11197 F:      drivers/media/dvb-frontends/cxd2841er*
11198
11199 MEDIA DRIVERS FOR CXD2880
11200 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
11201 L:      linux-media@vger.kernel.org
11202 S:      Supported
11203 W:      http://linuxtv.org/
11204 T:      git git://linuxtv.org/media_tree.git
11205 F:      drivers/media/dvb-frontends/cxd2880/*
11206 F:      drivers/media/spi/cxd2880*
11207
11208 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11209 L:      linux-media@vger.kernel.org
11210 S:      Orphan
11211 W:      https://linuxtv.org
11212 T:      git git://linuxtv.org/media_tree.git
11213 F:      drivers/media/pci/ddbridge/*
11214
11215 MEDIA DRIVERS FOR FREESCALE IMX
11216 M:      Steve Longerbeam <slongerbeam@gmail.com>
11217 M:      Philipp Zabel <p.zabel@pengutronix.de>
11218 L:      linux-media@vger.kernel.org
11219 S:      Maintained
11220 T:      git git://linuxtv.org/media_tree.git
11221 F:      Documentation/admin-guide/media/imx.rst
11222 F:      Documentation/devicetree/bindings/media/imx.txt
11223 F:      drivers/staging/media/imx/
11224 F:      include/linux/imx-media.h
11225 F:      include/media/imx.h
11226
11227 MEDIA DRIVERS FOR FREESCALE IMX7
11228 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11229 L:      linux-media@vger.kernel.org
11230 S:      Maintained
11231 T:      git git://linuxtv.org/media_tree.git
11232 F:      Documentation/admin-guide/media/imx7.rst
11233 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11234 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11235 F:      drivers/staging/media/imx/imx7-media-csi.c
11236 F:      drivers/staging/media/imx/imx7-mipi-csis.c
11237
11238 MEDIA DRIVERS FOR HELENE
11239 M:      Abylay Ospan <aospan@netup.ru>
11240 L:      linux-media@vger.kernel.org
11241 S:      Supported
11242 W:      https://linuxtv.org
11243 W:      http://netup.tv/
11244 T:      git git://linuxtv.org/media_tree.git
11245 F:      drivers/media/dvb-frontends/helene*
11246
11247 MEDIA DRIVERS FOR HORUS3A
11248 M:      Sergey Kozlov <serjk@netup.ru>
11249 M:      Abylay Ospan <aospan@netup.ru>
11250 L:      linux-media@vger.kernel.org
11251 S:      Supported
11252 W:      https://linuxtv.org
11253 W:      http://netup.tv/
11254 T:      git git://linuxtv.org/media_tree.git
11255 F:      drivers/media/dvb-frontends/horus3a*
11256
11257 MEDIA DRIVERS FOR LNBH25
11258 M:      Sergey Kozlov <serjk@netup.ru>
11259 M:      Abylay Ospan <aospan@netup.ru>
11260 L:      linux-media@vger.kernel.org
11261 S:      Supported
11262 W:      https://linuxtv.org
11263 W:      http://netup.tv/
11264 T:      git git://linuxtv.org/media_tree.git
11265 F:      drivers/media/dvb-frontends/lnbh25*
11266
11267 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11268 L:      linux-media@vger.kernel.org
11269 S:      Orphan
11270 W:      https://linuxtv.org
11271 T:      git git://linuxtv.org/media_tree.git
11272 F:      drivers/media/dvb-frontends/mxl5xx*
11273
11274 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11275 M:      Sergey Kozlov <serjk@netup.ru>
11276 M:      Abylay Ospan <aospan@netup.ru>
11277 L:      linux-media@vger.kernel.org
11278 S:      Supported
11279 W:      https://linuxtv.org
11280 W:      http://netup.tv/
11281 T:      git git://linuxtv.org/media_tree.git
11282 F:      drivers/media/pci/netup_unidvb/*
11283
11284 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11285 M:      Dmitry Osipenko <digetx@gmail.com>
11286 L:      linux-media@vger.kernel.org
11287 L:      linux-tegra@vger.kernel.org
11288 S:      Maintained
11289 T:      git git://linuxtv.org/media_tree.git
11290 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11291 F:      drivers/staging/media/tegra-vde/
11292
11293 MEDIA DRIVERS FOR RENESAS - CEU
11294 M:      Jacopo Mondi <jacopo@jmondi.org>
11295 L:      linux-media@vger.kernel.org
11296 L:      linux-renesas-soc@vger.kernel.org
11297 S:      Supported
11298 T:      git git://linuxtv.org/media_tree.git
11299 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
11300 F:      drivers/media/platform/renesas-ceu.c
11301 F:      include/media/drv-intf/renesas-ceu.h
11302
11303 MEDIA DRIVERS FOR RENESAS - DRIF
11304 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
11305 L:      linux-media@vger.kernel.org
11306 L:      linux-renesas-soc@vger.kernel.org
11307 S:      Supported
11308 T:      git git://linuxtv.org/media_tree.git
11309 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
11310 F:      drivers/media/platform/rcar_drif.c
11311
11312 MEDIA DRIVERS FOR RENESAS - FCP
11313 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11314 L:      linux-media@vger.kernel.org
11315 L:      linux-renesas-soc@vger.kernel.org
11316 S:      Supported
11317 T:      git git://linuxtv.org/media_tree.git
11318 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11319 F:      drivers/media/platform/rcar-fcp.c
11320 F:      include/media/rcar-fcp.h
11321
11322 MEDIA DRIVERS FOR RENESAS - FDP1
11323 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11324 L:      linux-media@vger.kernel.org
11325 L:      linux-renesas-soc@vger.kernel.org
11326 S:      Supported
11327 T:      git git://linuxtv.org/media_tree.git
11328 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11329 F:      drivers/media/platform/rcar_fdp1.c
11330
11331 MEDIA DRIVERS FOR RENESAS - VIN
11332 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11333 L:      linux-media@vger.kernel.org
11334 L:      linux-renesas-soc@vger.kernel.org
11335 S:      Supported
11336 T:      git git://linuxtv.org/media_tree.git
11337 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11338 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11339 F:      drivers/media/platform/rcar-vin/
11340
11341 MEDIA DRIVERS FOR RENESAS - VSP1
11342 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11343 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11344 L:      linux-media@vger.kernel.org
11345 L:      linux-renesas-soc@vger.kernel.org
11346 S:      Supported
11347 T:      git git://linuxtv.org/media_tree.git
11348 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11349 F:      drivers/media/platform/vsp1/
11350
11351 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11352 L:      linux-media@vger.kernel.org
11353 S:      Orphan
11354 W:      https://linuxtv.org
11355 T:      git git://linuxtv.org/media_tree.git
11356 F:      drivers/media/dvb-frontends/stv0910*
11357
11358 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11359 L:      linux-media@vger.kernel.org
11360 S:      Orphan
11361 W:      https://linuxtv.org
11362 T:      git git://linuxtv.org/media_tree.git
11363 F:      drivers/media/dvb-frontends/stv6111*
11364
11365 MEDIA DRIVERS FOR STM32 - DCMI
11366 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
11367 L:      linux-media@vger.kernel.org
11368 S:      Supported
11369 T:      git git://linuxtv.org/media_tree.git
11370 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11371 F:      drivers/media/platform/stm32/stm32-dcmi.c
11372
11373 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11374 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11375 L:      linux-media@vger.kernel.org
11376 S:      Maintained
11377 W:      https://linuxtv.org
11378 Q:      http://patchwork.kernel.org/project/linux-media/list/
11379 T:      git git://linuxtv.org/media_tree.git
11380 F:      Documentation/admin-guide/media/
11381 F:      Documentation/devicetree/bindings/media/
11382 F:      Documentation/driver-api/media/
11383 F:      Documentation/userspace-api/media/
11384 F:      drivers/media/
11385 F:      drivers/staging/media/
11386 F:      include/linux/platform_data/media/
11387 F:      include/media/
11388 F:      include/uapi/linux/dvb/
11389 F:      include/uapi/linux/ivtv*
11390 F:      include/uapi/linux/media.h
11391 F:      include/uapi/linux/meye.h
11392 F:      include/uapi/linux/uvcvideo.h
11393 F:      include/uapi/linux/v4l2-*
11394 F:      include/uapi/linux/videodev2.h
11395
11396 MEDIATEK BLUETOOTH DRIVER
11397 M:      Sean Wang <sean.wang@mediatek.com>
11398 L:      linux-bluetooth@vger.kernel.org
11399 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11400 S:      Maintained
11401 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11402 F:      drivers/bluetooth/btmtkuart.c
11403
11404 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11405 M:      Sean Wang <sean.wang@mediatek.com>
11406 L:      linux-pm@vger.kernel.org
11407 S:      Maintained
11408 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11409 F:      drivers/power/reset/mt6323-poweroff.c
11410
11411 MEDIATEK CIR DRIVER
11412 M:      Sean Wang <sean.wang@mediatek.com>
11413 S:      Maintained
11414 F:      drivers/media/rc/mtk-cir.c
11415
11416 MEDIATEK DMA DRIVER
11417 M:      Sean Wang <sean.wang@mediatek.com>
11418 L:      dmaengine@vger.kernel.org
11419 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11420 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11421 S:      Maintained
11422 F:      Documentation/devicetree/bindings/dma/mtk-*
11423 F:      drivers/dma/mediatek/
11424
11425 MEDIATEK ETHERNET DRIVER
11426 M:      Felix Fietkau <nbd@nbd.name>
11427 M:      John Crispin <john@phrozen.org>
11428 M:      Sean Wang <sean.wang@mediatek.com>
11429 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11430 L:      netdev@vger.kernel.org
11431 S:      Maintained
11432 F:      drivers/net/ethernet/mediatek/
11433
11434 MEDIATEK I2C CONTROLLER DRIVER
11435 M:      Qii Wang <qii.wang@mediatek.com>
11436 L:      linux-i2c@vger.kernel.org
11437 S:      Maintained
11438 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11439 F:      drivers/i2c/busses/i2c-mt65xx.c
11440
11441 MEDIATEK IOMMU DRIVER
11442 M:      Yong Wu <yong.wu@mediatek.com>
11443 L:      iommu@lists.linux-foundation.org
11444 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11445 S:      Supported
11446 F:      Documentation/devicetree/bindings/iommu/mediatek*
11447 F:      drivers/iommu/mtk_iommu*
11448 F:      include/dt-bindings/memory/mt*-port.h
11449
11450 MEDIATEK JPEG DRIVER
11451 M:      Rick Chang <rick.chang@mediatek.com>
11452 M:      Bin Liu <bin.liu@mediatek.com>
11453 S:      Supported
11454 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11455 F:      drivers/media/platform/mtk-jpeg/
11456
11457 MEDIATEK MDP DRIVER
11458 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11459 M:      Houlong Wei <houlong.wei@mediatek.com>
11460 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11461 S:      Supported
11462 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11463 F:      drivers/media/platform/mtk-mdp/
11464 F:      drivers/media/platform/mtk-vpu/
11465
11466 MEDIATEK MEDIA DRIVER
11467 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11468 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11469 S:      Supported
11470 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11471 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11472 F:      drivers/media/platform/mtk-vcodec/
11473 F:      drivers/media/platform/mtk-vpu/
11474
11475 MEDIATEK MMC/SD/SDIO DRIVER
11476 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11477 S:      Maintained
11478 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
11479 F:      drivers/mmc/host/mtk-sd.c
11480
11481 MEDIATEK MT76 WIRELESS LAN DRIVER
11482 M:      Felix Fietkau <nbd@nbd.name>
11483 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11484 R:      Ryder Lee <ryder.lee@mediatek.com>
11485 L:      linux-wireless@vger.kernel.org
11486 S:      Maintained
11487 F:      drivers/net/wireless/mediatek/mt76/
11488
11489 MEDIATEK MT7601U WIRELESS LAN DRIVER
11490 M:      Jakub Kicinski <kubakici@wp.pl>
11491 L:      linux-wireless@vger.kernel.org
11492 S:      Maintained
11493 F:      drivers/net/wireless/mediatek/mt7601u/
11494
11495 MEDIATEK MT7621 CLOCK DRIVER
11496 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11497 S:      Maintained
11498 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
11499 F:      drivers/clk/ralink/clk-mt7621.c
11500
11501 MEDIATEK MT7621/28/88 I2C DRIVER
11502 M:      Stefan Roese <sr@denx.de>
11503 L:      linux-i2c@vger.kernel.org
11504 S:      Maintained
11505 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11506 F:      drivers/i2c/busses/i2c-mt7621.c
11507
11508 MEDIATEK MT7621 PHY PCI DRIVER
11509 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11510 S:      Maintained
11511 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11512 F:      drivers/phy/ralink/phy-mt7621-pci.c
11513
11514 MEDIATEK NAND CONTROLLER DRIVER
11515 L:      linux-mtd@lists.infradead.org
11516 S:      Orphan
11517 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11518 F:      drivers/mtd/nand/raw/mtk_*
11519
11520 MEDIATEK PMIC LED DRIVER
11521 M:      Sean Wang <sean.wang@mediatek.com>
11522 S:      Maintained
11523 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11524 F:      drivers/leds/leds-mt6323.c
11525
11526 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11527 M:      Sean Wang <sean.wang@mediatek.com>
11528 S:      Maintained
11529 F:      drivers/char/hw_random/mtk-rng.c
11530
11531 MEDIATEK SWITCH DRIVER
11532 M:      Sean Wang <sean.wang@mediatek.com>
11533 M:      Landen Chao <Landen.Chao@mediatek.com>
11534 L:      netdev@vger.kernel.org
11535 S:      Maintained
11536 F:      drivers/net/dsa/mt7530.*
11537 F:      net/dsa/tag_mtk.c
11538
11539 MEDIATEK USB3 DRD IP DRIVER
11540 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
11541 L:      linux-usb@vger.kernel.org
11542 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11543 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11544 S:      Maintained
11545 F:      Documentation/devicetree/bindings/usb/mediatek,*
11546 F:      drivers/usb/host/xhci-mtk*
11547 F:      drivers/usb/mtu3/
11548
11549 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11550 M:      Peter Senna Tschudin <peter.senna@gmail.com>
11551 M:      Martin Donnelly <martin.donnelly@ge.com>
11552 M:      Martyn Welch <martyn.welch@collabora.co.uk>
11553 S:      Maintained
11554 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11555 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11556
11557 MEGARAID SCSI/SAS DRIVERS
11558 M:      Kashyap Desai <kashyap.desai@broadcom.com>
11559 M:      Sumit Saxena <sumit.saxena@broadcom.com>
11560 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11561 L:      megaraidlinux.pdl@broadcom.com
11562 L:      linux-scsi@vger.kernel.org
11563 S:      Maintained
11564 W:      http://www.avagotech.com/support/
11565 F:      Documentation/scsi/megaraid.rst
11566 F:      drivers/scsi/megaraid.*
11567 F:      drivers/scsi/megaraid/
11568
11569 MELEXIS MLX90614 DRIVER
11570 M:      Crt Mori <cmo@melexis.com>
11571 L:      linux-iio@vger.kernel.org
11572 S:      Supported
11573 W:      http://www.melexis.com
11574 F:      drivers/iio/temperature/mlx90614.c
11575
11576 MELEXIS MLX90632 DRIVER
11577 M:      Crt Mori <cmo@melexis.com>
11578 L:      linux-iio@vger.kernel.org
11579 S:      Supported
11580 W:      http://www.melexis.com
11581 F:      drivers/iio/temperature/mlx90632.c
11582
11583 MELFAS MIP4 TOUCHSCREEN DRIVER
11584 M:      Sangwon Jee <jeesw@melfas.com>
11585 S:      Supported
11586 W:      http://www.melfas.com
11587 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11588 F:      drivers/input/touchscreen/melfas_mip4.c
11589
11590 MELLANOX BLUEFIELD I2C DRIVER
11591 M:      Khalil Blaiech <kblaiech@nvidia.com>
11592 L:      linux-i2c@vger.kernel.org
11593 S:      Supported
11594 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
11595 F:      drivers/i2c/busses/i2c-mlxbf.c
11596
11597 MELLANOX ETHERNET DRIVER (mlx4_en)
11598 M:      Tariq Toukan <tariqt@nvidia.com>
11599 L:      netdev@vger.kernel.org
11600 S:      Supported
11601 W:      http://www.mellanox.com
11602 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11603 F:      drivers/net/ethernet/mellanox/mlx4/en_*
11604
11605 MELLANOX ETHERNET DRIVER (mlx5e)
11606 M:      Saeed Mahameed <saeedm@nvidia.com>
11607 L:      netdev@vger.kernel.org
11608 S:      Supported
11609 W:      http://www.mellanox.com
11610 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11611 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
11612
11613 MELLANOX ETHERNET INNOVA DRIVERS
11614 R:      Boris Pismenny <borisp@nvidia.com>
11615 L:      netdev@vger.kernel.org
11616 S:      Supported
11617 W:      http://www.mellanox.com
11618 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11619 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
11620 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
11621 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
11622 F:      include/linux/mlx5/mlx5_ifc_fpga.h
11623
11624 MELLANOX ETHERNET SWITCH DRIVERS
11625 M:      Jiri Pirko <jiri@nvidia.com>
11626 M:      Ido Schimmel <idosch@nvidia.com>
11627 L:      netdev@vger.kernel.org
11628 S:      Supported
11629 W:      http://www.mellanox.com
11630 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11631 F:      drivers/net/ethernet/mellanox/mlxsw/
11632 F:      tools/testing/selftests/drivers/net/mlxsw/
11633
11634 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
11635 M:      mlxsw@nvidia.com
11636 L:      netdev@vger.kernel.org
11637 S:      Supported
11638 W:      http://www.mellanox.com
11639 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11640 F:      drivers/net/ethernet/mellanox/mlxfw/
11641
11642 MELLANOX HARDWARE PLATFORM SUPPORT
11643 M:      Hans de Goede <hdegoede@redhat.com>
11644 M:      Mark Gross <mgross@linux.intel.com>
11645 M:      Vadim Pasternak <vadimp@nvidia.com>
11646 L:      platform-driver-x86@vger.kernel.org
11647 S:      Supported
11648 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
11649 F:      drivers/platform/mellanox/
11650 F:      include/linux/platform_data/mlxreg.h
11651
11652 MELLANOX MLX4 core VPI driver
11653 M:      Tariq Toukan <tariqt@nvidia.com>
11654 L:      netdev@vger.kernel.org
11655 L:      linux-rdma@vger.kernel.org
11656 S:      Supported
11657 W:      http://www.mellanox.com
11658 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11659 F:      drivers/net/ethernet/mellanox/mlx4/
11660 F:      include/linux/mlx4/
11661
11662 MELLANOX MLX4 IB driver
11663 M:      Yishai Hadas <yishaih@nvidia.com>
11664 L:      linux-rdma@vger.kernel.org
11665 S:      Supported
11666 W:      http://www.mellanox.com
11667 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11668 F:      drivers/infiniband/hw/mlx4/
11669 F:      include/linux/mlx4/
11670 F:      include/uapi/rdma/mlx4-abi.h
11671
11672 MELLANOX MLX5 core VPI driver
11673 M:      Saeed Mahameed <saeedm@nvidia.com>
11674 M:      Leon Romanovsky <leonro@nvidia.com>
11675 L:      netdev@vger.kernel.org
11676 L:      linux-rdma@vger.kernel.org
11677 S:      Supported
11678 W:      http://www.mellanox.com
11679 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11680 F:      Documentation/networking/device_drivers/ethernet/mellanox/
11681 F:      drivers/net/ethernet/mellanox/mlx5/core/
11682 F:      include/linux/mlx5/
11683
11684 MELLANOX MLX5 IB driver
11685 M:      Leon Romanovsky <leonro@nvidia.com>
11686 L:      linux-rdma@vger.kernel.org
11687 S:      Supported
11688 W:      http://www.mellanox.com
11689 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11690 F:      drivers/infiniband/hw/mlx5/
11691 F:      include/linux/mlx5/
11692 F:      include/uapi/rdma/mlx5-abi.h
11693
11694 MELLANOX MLXCPLD I2C AND MUX DRIVER
11695 M:      Vadim Pasternak <vadimp@nvidia.com>
11696 M:      Michael Shych <michaelsh@nvidia.com>
11697 L:      linux-i2c@vger.kernel.org
11698 S:      Supported
11699 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11700 F:      drivers/i2c/busses/i2c-mlxcpld.c
11701 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11702
11703 MELLANOX MLXCPLD LED DRIVER
11704 M:      Vadim Pasternak <vadimp@nvidia.com>
11705 L:      linux-leds@vger.kernel.org
11706 S:      Supported
11707 F:      Documentation/leds/leds-mlxcpld.rst
11708 F:      drivers/leds/leds-mlxcpld.c
11709 F:      drivers/leds/leds-mlxreg.c
11710
11711 MELLANOX PLATFORM DRIVER
11712 M:      Vadim Pasternak <vadimp@nvidia.com>
11713 L:      platform-driver-x86@vger.kernel.org
11714 S:      Supported
11715 F:      drivers/platform/x86/mlx-platform.c
11716
11717 MEMBARRIER SUPPORT
11718 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11719 M:      "Paul E. McKenney" <paulmck@kernel.org>
11720 L:      linux-kernel@vger.kernel.org
11721 S:      Supported
11722 F:      arch/powerpc/include/asm/membarrier.h
11723 F:      include/uapi/linux/membarrier.h
11724 F:      kernel/sched/membarrier.c
11725
11726 MEMBLOCK
11727 M:      Mike Rapoport <rppt@linux.ibm.com>
11728 L:      linux-mm@kvack.org
11729 S:      Maintained
11730 F:      Documentation/core-api/boot-time-mm.rst
11731 F:      include/linux/memblock.h
11732 F:      mm/memblock.c
11733
11734 MEMORY CONTROLLER DRIVERS
11735 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11736 L:      linux-kernel@vger.kernel.org
11737 S:      Maintained
11738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
11739 F:      Documentation/devicetree/bindings/memory-controllers/
11740 F:      drivers/memory/
11741 F:      include/dt-bindings/memory/
11742
11743 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
11744 M:      Dmitry Osipenko <digetx@gmail.com>
11745 L:      linux-pm@vger.kernel.org
11746 L:      linux-tegra@vger.kernel.org
11747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
11748 S:      Maintained
11749 F:      drivers/devfreq/tegra30-devfreq.c
11750
11751 MEMORY MANAGEMENT
11752 M:      Andrew Morton <akpm@linux-foundation.org>
11753 L:      linux-mm@kvack.org
11754 S:      Maintained
11755 W:      http://www.linux-mm.org
11756 T:      quilt https://ozlabs.org/~akpm/mmotm/
11757 T:      quilt https://ozlabs.org/~akpm/mmots/
11758 T:      git git://github.com/hnaz/linux-mm.git
11759 F:      include/linux/gfp.h
11760 F:      include/linux/memory_hotplug.h
11761 F:      include/linux/mm.h
11762 F:      include/linux/mmzone.h
11763 F:      include/linux/pagewalk.h
11764 F:      include/linux/vmalloc.h
11765 F:      mm/
11766
11767 MEMORY TECHNOLOGY DEVICES (MTD)
11768 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11769 M:      Richard Weinberger <richard@nod.at>
11770 M:      Vignesh Raghavendra <vigneshr@ti.com>
11771 L:      linux-mtd@lists.infradead.org
11772 S:      Maintained
11773 W:      http://www.linux-mtd.infradead.org/
11774 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11775 C:      irc://irc.oftc.net/mtd
11776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11778 F:      Documentation/devicetree/bindings/mtd/
11779 F:      drivers/mtd/
11780 F:      include/linux/mtd/
11781 F:      include/uapi/mtd/
11782
11783 MEN A21 WATCHDOG DRIVER
11784 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11785 L:      linux-watchdog@vger.kernel.org
11786 S:      Maintained
11787 F:      drivers/watchdog/mena21_wdt.c
11788
11789 MEN CHAMELEON BUS (mcb)
11790 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11791 S:      Maintained
11792 F:      Documentation/driver-api/men-chameleon-bus.rst
11793 F:      drivers/mcb/
11794 F:      include/linux/mcb.h
11795
11796 MEN F21BMC (Board Management Controller)
11797 M:      Andreas Werner <andreas.werner@men.de>
11798 S:      Supported
11799 F:      Documentation/hwmon/menf21bmc.rst
11800 F:      drivers/hwmon/menf21bmc_hwmon.c
11801 F:      drivers/leds/leds-menf21bmc.c
11802 F:      drivers/mfd/menf21bmc.c
11803 F:      drivers/watchdog/menf21bmc_wdt.c
11804
11805 MEN Z069 WATCHDOG DRIVER
11806 M:      Johannes Thumshirn <jth@kernel.org>
11807 L:      linux-watchdog@vger.kernel.org
11808 S:      Maintained
11809 F:      drivers/watchdog/menz69_wdt.c
11810
11811 MESON AO CEC DRIVER FOR AMLOGIC SOCS
11812 M:      Neil Armstrong <narmstrong@baylibre.com>
11813 L:      linux-media@vger.kernel.org
11814 L:      linux-amlogic@lists.infradead.org
11815 S:      Supported
11816 W:      http://linux-meson.com/
11817 T:      git git://linuxtv.org/media_tree.git
11818 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
11819 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
11820 F:      drivers/media/cec/platform/meson/ao-cec.c
11821
11822 MESON GE2D DRIVER FOR AMLOGIC SOCS
11823 M:      Neil Armstrong <narmstrong@baylibre.com>
11824 L:      linux-media@vger.kernel.org
11825 L:      linux-amlogic@lists.infradead.org
11826 S:      Supported
11827 T:      git git://linuxtv.org/media_tree.git
11828 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
11829 F:      drivers/media/platform/meson/ge2d/
11830
11831 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
11832 M:      Liang Yang <liang.yang@amlogic.com>
11833 L:      linux-mtd@lists.infradead.org
11834 S:      Maintained
11835 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
11836 F:      drivers/mtd/nand/raw/meson_*
11837
11838 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
11839 M:      Neil Armstrong <narmstrong@baylibre.com>
11840 L:      linux-media@vger.kernel.org
11841 L:      linux-amlogic@lists.infradead.org
11842 S:      Supported
11843 T:      git git://linuxtv.org/media_tree.git
11844 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
11845 F:      drivers/staging/media/meson/vdec/
11846
11847 METHODE UDPU SUPPORT
11848 M:      Vladimir Vid <vladimir.vid@sartura.hr>
11849 S:      Maintained
11850 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11851
11852 MHI BUS
11853 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11854 M:      Hemant Kumar <hemantk@codeaurora.org>
11855 L:      linux-arm-msm@vger.kernel.org
11856 S:      Maintained
11857 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11858 F:      Documentation/ABI/stable/sysfs-bus-mhi
11859 F:      Documentation/mhi/
11860 F:      drivers/bus/mhi/
11861 F:      include/linux/mhi.h
11862
11863 MICROBLAZE ARCHITECTURE
11864 M:      Michal Simek <monstr@monstr.eu>
11865 S:      Supported
11866 W:      http://www.monstr.eu/fdt/
11867 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11868 F:      arch/microblaze/
11869
11870 MICROCHIP AT91 DMA DRIVERS
11871 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11872 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11873 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11874 L:      dmaengine@vger.kernel.org
11875 S:      Supported
11876 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11877 F:      drivers/dma/at_hdmac.c
11878 F:      drivers/dma/at_hdmac_regs.h
11879 F:      drivers/dma/at_xdmac.c
11880 F:      include/dt-bindings/dma/at91.h
11881
11882 MICROCHIP AT91 SERIAL DRIVER
11883 M:      Richard Genoud <richard.genoud@gmail.com>
11884 S:      Maintained
11885 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11886 F:      drivers/tty/serial/atmel_serial.c
11887 F:      drivers/tty/serial/atmel_serial.h
11888
11889 MICROCHIP AT91 USART MFD DRIVER
11890 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11891 L:      linux-kernel@vger.kernel.org
11892 S:      Supported
11893 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11894 F:      drivers/mfd/at91-usart.c
11895 F:      include/dt-bindings/mfd/at91-usart.h
11896
11897 MICROCHIP AT91 USART SPI DRIVER
11898 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11899 L:      linux-spi@vger.kernel.org
11900 S:      Supported
11901 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11902 F:      drivers/spi/spi-at91-usart.c
11903
11904 MICROCHIP AUDIO ASOC DRIVERS
11905 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11906 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11907 S:      Supported
11908 F:      sound/soc/atmel
11909
11910 MICROCHIP ECC DRIVER
11911 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11912 L:      linux-crypto@vger.kernel.org
11913 S:      Maintained
11914 F:      drivers/crypto/atmel-ecc.*
11915
11916 MICROCHIP I2C DRIVER
11917 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11918 L:      linux-i2c@vger.kernel.org
11919 S:      Supported
11920 F:      drivers/i2c/busses/i2c-at91-*.c
11921 F:      drivers/i2c/busses/i2c-at91.h
11922
11923 MICROCHIP ISC DRIVER
11924 M:      Eugen Hristev <eugen.hristev@microchip.com>
11925 L:      linux-media@vger.kernel.org
11926 S:      Supported
11927 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11928 F:      drivers/media/platform/atmel/atmel-isc-base.c
11929 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11930 F:      drivers/media/platform/atmel/atmel-isc.h
11931 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11932 F:      include/linux/atmel-isc-media.h
11933
11934 MICROCHIP ISI DRIVER
11935 M:      Eugen Hristev <eugen.hristev@microchip.com>
11936 L:      linux-media@vger.kernel.org
11937 S:      Supported
11938 F:      drivers/media/platform/atmel/atmel-isi.c
11939 F:      drivers/media/platform/atmel/atmel-isi.h
11940
11941 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11942 M:      Woojung Huh <woojung.huh@microchip.com>
11943 M:      UNGLinuxDriver@microchip.com
11944 L:      netdev@vger.kernel.org
11945 S:      Maintained
11946 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
11947 F:      drivers/net/dsa/microchip/*
11948 F:      include/linux/platform_data/microchip-ksz.h
11949 F:      net/dsa/tag_ksz.c
11950
11951 MICROCHIP LAN743X ETHERNET DRIVER
11952 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
11953 M:      UNGLinuxDriver@microchip.com
11954 L:      netdev@vger.kernel.org
11955 S:      Maintained
11956 F:      drivers/net/ethernet/microchip/lan743x_*
11957
11958 MICROCHIP LCDFB DRIVER
11959 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11960 L:      linux-fbdev@vger.kernel.org
11961 S:      Maintained
11962 F:      drivers/video/fbdev/atmel_lcdfb.c
11963 F:      include/video/atmel_lcdc.h
11964
11965 MICROCHIP MCP16502 PMIC DRIVER
11966 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11967 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11968 S:      Supported
11969 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11970 F:      drivers/regulator/mcp16502.c
11971
11972 MICROCHIP MCP3911 ADC DRIVER
11973 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11974 M:      Kent Gustavsson <kent@minoris.se>
11975 L:      linux-iio@vger.kernel.org
11976 S:      Supported
11977 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11978 F:      drivers/iio/adc/mcp3911.c
11979
11980 MICROCHIP MMC/SD/SDIO MCI DRIVER
11981 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11982 S:      Maintained
11983 F:      drivers/mmc/host/atmel-mci.c
11984
11985 MICROCHIP NAND DRIVER
11986 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11987 L:      linux-mtd@lists.infradead.org
11988 S:      Supported
11989 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11990 F:      drivers/mtd/nand/raw/atmel/*
11991
11992 MICROCHIP PWM DRIVER
11993 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11994 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11995 L:      linux-pwm@vger.kernel.org
11996 S:      Supported
11997 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11998 F:      drivers/pwm/pwm-atmel.c
11999
12000 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12001 M:      Eugen Hristev <eugen.hristev@microchip.com>
12002 L:      linux-iio@vger.kernel.org
12003 S:      Supported
12004 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12005 F:      drivers/iio/adc/at91-sama5d2_adc.c
12006 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12007
12008 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12009 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12010 S:      Supported
12011 F:      drivers/power/reset/at91-sama5d2_shdwc.c
12012
12013 MICROCHIP SPI DRIVER
12014 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12015 S:      Supported
12016 F:      drivers/spi/spi-atmel.*
12017
12018 MICROCHIP SSC DRIVER
12019 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12020 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12021 S:      Supported
12022 F:      drivers/misc/atmel-ssc.c
12023 F:      include/linux/atmel-ssc.h
12024
12025 MICROCHIP USB251XB DRIVER
12026 M:      Richard Leitner <richard.leitner@skidata.com>
12027 L:      linux-usb@vger.kernel.org
12028 S:      Maintained
12029 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
12030 F:      drivers/usb/misc/usb251xb.c
12031
12032 MICROCHIP USBA UDC DRIVER
12033 M:      Cristian Birsan <cristian.birsan@microchip.com>
12034 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12035 S:      Supported
12036 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
12037
12038 MICROCHIP WILC1000 WIFI DRIVER
12039 M:      Ajay Singh <ajay.kathat@microchip.com>
12040 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12041 L:      linux-wireless@vger.kernel.org
12042 S:      Supported
12043 F:      drivers/net/wireless/microchip/wilc1000/
12044
12045 MICROSEMI MIPS SOCS
12046 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12047 M:      UNGLinuxDriver@microchip.com
12048 L:      linux-mips@vger.kernel.org
12049 S:      Supported
12050 F:      Documentation/devicetree/bindings/mips/mscc.txt
12051 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12052 F:      arch/mips/boot/dts/mscc/
12053 F:      arch/mips/configs/generic/board-ocelot.config
12054 F:      arch/mips/generic/board-ocelot.c
12055
12056 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12057 M:      Don Brace <don.brace@microchip.com>
12058 L:      storagedev@microchip.com
12059 L:      linux-scsi@vger.kernel.org
12060 S:      Supported
12061 F:      Documentation/scsi/smartpqi.rst
12062 F:      drivers/scsi/smartpqi/Kconfig
12063 F:      drivers/scsi/smartpqi/Makefile
12064 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
12065 F:      include/linux/cciss*.h
12066 F:      include/uapi/linux/cciss*.h
12067
12068 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12069 M:      Maximilian Luz <luzmaximilian@gmail.com>
12070 L:      linux-pm@vger.kernel.org
12071 L:      platform-driver-x86@vger.kernel.org
12072 S:      Maintained
12073 F:      drivers/power/supply/surface_battery.c
12074 F:      drivers/power/supply/surface_charger.c
12075
12076 MICROSOFT SURFACE DTX DRIVER
12077 M:      Maximilian Luz <luzmaximilian@gmail.com>
12078 L:      platform-driver-x86@vger.kernel.org
12079 S:      Maintained
12080 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
12081 F:      drivers/platform/surface/surface_dtx.c
12082 F:      include/uapi/linux/surface_aggregator/dtx.h
12083
12084 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12085 M:      Maximilian Luz <luzmaximilian@gmail.com>
12086 L:      platform-driver-x86@vger.kernel.org
12087 S:      Maintained
12088 F:      drivers/platform/surface/surface_gpe.c
12089
12090 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12091 M:      Hans de Goede <hdegoede@redhat.com>
12092 M:      Mark Gross <mgross@linux.intel.com>
12093 M:      Maximilian Luz <luzmaximilian@gmail.com>
12094 L:      platform-driver-x86@vger.kernel.org
12095 S:      Maintained
12096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12097 F:      drivers/platform/surface/
12098
12099 MICROSOFT SURFACE HOT-PLUG DRIVER
12100 M:      Maximilian Luz <luzmaximilian@gmail.com>
12101 L:      platform-driver-x86@vger.kernel.org
12102 S:      Maintained
12103 F:      drivers/platform/surface/surface_hotplug.c
12104
12105 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12106 M:      Maximilian Luz <luzmaximilian@gmail.com>
12107 L:      platform-driver-x86@vger.kernel.org
12108 S:      Maintained
12109 F:      drivers/platform/surface/surface_platform_profile.c
12110
12111 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12112 M:      Chen Yu <yu.c.chen@intel.com>
12113 L:      platform-driver-x86@vger.kernel.org
12114 S:      Supported
12115 F:      drivers/platform/surface/surfacepro3_button.c
12116
12117 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12118 M:      Maximilian Luz <luzmaximilian@gmail.com>
12119 S:      Maintained
12120 W:      https://github.com/linux-surface/surface-aggregator-module
12121 C:      irc://chat.freenode.net/##linux-surface
12122 F:      Documentation/driver-api/surface_aggregator/
12123 F:      drivers/platform/surface/aggregator/
12124 F:      drivers/platform/surface/surface_acpi_notify.c
12125 F:      drivers/platform/surface/surface_aggregator_cdev.c
12126 F:      drivers/platform/surface/surface_aggregator_registry.c
12127 F:      include/linux/surface_acpi_notify.h
12128 F:      include/linux/surface_aggregator/
12129 F:      include/uapi/linux/surface_aggregator/
12130
12131 MICROTEK X6 SCANNER
12132 M:      Oliver Neukum <oliver@neukum.org>
12133 S:      Maintained
12134 F:      drivers/usb/image/microtek.*
12135
12136 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12137 M:      Luka Kovacic <luka.kovacic@sartura.hr>
12138 M:      Luka Perkov <luka.perkov@sartura.hr>
12139 S:      Maintained
12140 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12141 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12142 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12143 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12144 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12145 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12146
12147 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12148 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12149 L:      linux-media@vger.kernel.org
12150 S:      Maintained
12151 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12152 F:      Documentation/driver-api/media/drivers/ccs/
12153 F:      Documentation/userspace-api/media/drivers/ccs.rst
12154 F:      drivers/media/i2c/ccs-pll.c
12155 F:      drivers/media/i2c/ccs-pll.h
12156 F:      drivers/media/i2c/ccs/
12157 F:      include/uapi/linux/ccs.h
12158 F:      include/uapi/linux/smiapp.h
12159
12160 MIPS
12161 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12162 L:      linux-mips@vger.kernel.org
12163 S:      Maintained
12164 W:      http://www.linux-mips.org/
12165 Q:      https://patchwork.kernel.org/project/linux-mips/list/
12166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12167 F:      Documentation/devicetree/bindings/mips/
12168 F:      Documentation/mips/
12169 F:      arch/mips/
12170 F:      drivers/platform/mips/
12171
12172 MIPS BOSTON DEVELOPMENT BOARD
12173 M:      Paul Burton <paulburton@kernel.org>
12174 L:      linux-mips@vger.kernel.org
12175 S:      Maintained
12176 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
12177 F:      arch/mips/boot/dts/img/boston.dts
12178 F:      arch/mips/configs/generic/board-boston.config
12179 F:      drivers/clk/imgtec/clk-boston.c
12180 F:      include/dt-bindings/clock/boston-clock.h
12181
12182 MIPS CORE DRIVERS
12183 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12184 M:      Serge Semin <fancer.lancer@gmail.com>
12185 L:      linux-mips@vger.kernel.org
12186 S:      Supported
12187 F:      drivers/bus/mips_cdmm.c
12188 F:      drivers/clocksource/mips-gic-timer.c
12189 F:      drivers/cpuidle/cpuidle-cps.c
12190 F:      drivers/irqchip/irq-mips-cpu.c
12191 F:      drivers/irqchip/irq-mips-gic.c
12192
12193 MIPS GENERIC PLATFORM
12194 M:      Paul Burton <paulburton@kernel.org>
12195 L:      linux-mips@vger.kernel.org
12196 S:      Supported
12197 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12198 F:      arch/mips/generic/
12199 F:      arch/mips/tools/generic-board-config.sh
12200
12201 MIPS RINT INSTRUCTION EMULATION
12202 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
12203 L:      linux-mips@vger.kernel.org
12204 S:      Supported
12205 F:      arch/mips/math-emu/dp_rint.c
12206 F:      arch/mips/math-emu/sp_rint.c
12207
12208 MIPS/LOONGSON1 ARCHITECTURE
12209 M:      Keguang Zhang <keguang.zhang@gmail.com>
12210 L:      linux-mips@vger.kernel.org
12211 S:      Maintained
12212 F:      arch/mips/include/asm/mach-loongson32/
12213 F:      arch/mips/loongson32/
12214 F:      drivers/*/*/*loongson1*
12215 F:      drivers/*/*loongson1*
12216
12217 MIPS/LOONGSON2EF ARCHITECTURE
12218 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12219 L:      linux-mips@vger.kernel.org
12220 S:      Maintained
12221 F:      arch/mips/include/asm/mach-loongson2ef/
12222 F:      arch/mips/loongson2ef/
12223 F:      drivers/cpufreq/loongson2_cpufreq.c
12224
12225 MIPS/LOONGSON64 ARCHITECTURE
12226 M:      Huacai Chen <chenhuacai@kernel.org>
12227 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12228 L:      linux-mips@vger.kernel.org
12229 S:      Maintained
12230 F:      arch/mips/include/asm/mach-loongson64/
12231 F:      arch/mips/loongson64/
12232 F:      drivers/irqchip/irq-loongson*
12233 F:      drivers/platform/mips/cpu_hwmon.c
12234
12235 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12236 M:      Hans Verkuil <hverkuil@xs4all.nl>
12237 L:      linux-media@vger.kernel.org
12238 S:      Odd Fixes
12239 W:      https://linuxtv.org
12240 T:      git git://linuxtv.org/media_tree.git
12241 F:      drivers/media/radio/radio-miropcm20*
12242
12243 MMP SUPPORT
12244 R:      Lubomir Rintel <lkundrak@v3.sk>
12245 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12246 S:      Odd Fixes
12247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12248 F:      arch/arm/boot/dts/mmp*
12249 F:      arch/arm/mach-mmp/
12250 F:      include/linux/soc/mmp/
12251
12252 MMP USB PHY DRIVERS
12253 R:      Lubomir Rintel <lkundrak@v3.sk>
12254 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12255 S:      Maintained
12256 F:      drivers/phy/marvell/phy-mmp3-usb.c
12257 F:      drivers/phy/marvell/phy-pxa-usb.c
12258
12259 MMU GATHER AND TLB INVALIDATION
12260 M:      Will Deacon <will@kernel.org>
12261 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
12262 M:      Andrew Morton <akpm@linux-foundation.org>
12263 M:      Nick Piggin <npiggin@gmail.com>
12264 M:      Peter Zijlstra <peterz@infradead.org>
12265 L:      linux-arch@vger.kernel.org
12266 L:      linux-mm@kvack.org
12267 S:      Maintained
12268 F:      arch/*/include/asm/tlb.h
12269 F:      include/asm-generic/tlb.h
12270 F:      mm/mmu_gather.c
12271
12272 MN88472 MEDIA DRIVER
12273 M:      Antti Palosaari <crope@iki.fi>
12274 L:      linux-media@vger.kernel.org
12275 S:      Maintained
12276 W:      https://linuxtv.org
12277 W:      http://palosaari.fi/linux/
12278 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12279 F:      drivers/media/dvb-frontends/mn88472*
12280
12281 MN88473 MEDIA DRIVER
12282 M:      Antti Palosaari <crope@iki.fi>
12283 L:      linux-media@vger.kernel.org
12284 S:      Maintained
12285 W:      https://linuxtv.org
12286 W:      http://palosaari.fi/linux/
12287 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12288 F:      drivers/media/dvb-frontends/mn88473*
12289
12290 MODULE SUPPORT
12291 M:      Jessica Yu <jeyu@kernel.org>
12292 S:      Maintained
12293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12294 F:      include/linux/module.h
12295 F:      kernel/module.c
12296
12297 MONOLITHIC POWER SYSTEM PMIC DRIVER
12298 M:      Saravanan Sekar <sravanhome@gmail.com>
12299 S:      Maintained
12300 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12301 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12302 F:      drivers/iio/adc/mp2629_adc.c
12303 F:      drivers/mfd/mp2629.c
12304 F:      drivers/power/supply/mp2629_charger.c
12305 F:      drivers/regulator/mp5416.c
12306 F:      drivers/regulator/mpq7920.c
12307 F:      drivers/regulator/mpq7920.h
12308 F:      include/linux/mfd/mp2629.h
12309
12310 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12311 S:      Orphan
12312 W:      http://popies.net/meye/
12313 F:      Documentation/userspace-api/media/drivers/meye*
12314 F:      drivers/media/pci/meye/
12315 F:      include/uapi/linux/meye.h
12316
12317 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12318 S:      Orphan
12319 F:      Documentation/driver-api/serial/moxa-smartio.rst
12320 F:      drivers/tty/mxser.*
12321
12322 MR800 AVERMEDIA USB FM RADIO DRIVER
12323 M:      Alexey Klimov <klimov.linux@gmail.com>
12324 L:      linux-media@vger.kernel.org
12325 S:      Maintained
12326 T:      git git://linuxtv.org/media_tree.git
12327 F:      drivers/media/radio/radio-mr800.c
12328
12329 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12330 M:      Alan Ott <alan@signal11.us>
12331 L:      linux-wpan@vger.kernel.org
12332 S:      Maintained
12333 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12334 F:      drivers/net/ieee802154/mrf24j40.c
12335
12336 MSI LAPTOP SUPPORT
12337 M:      "Lee, Chun-Yi" <jlee@suse.com>
12338 L:      platform-driver-x86@vger.kernel.org
12339 S:      Maintained
12340 F:      drivers/platform/x86/msi-laptop.c
12341
12342 MSI WMI SUPPORT
12343 L:      platform-driver-x86@vger.kernel.org
12344 S:      Orphan
12345 F:      drivers/platform/x86/msi-wmi.c
12346
12347 MSI001 MEDIA DRIVER
12348 M:      Antti Palosaari <crope@iki.fi>
12349 L:      linux-media@vger.kernel.org
12350 S:      Maintained
12351 W:      https://linuxtv.org
12352 W:      http://palosaari.fi/linux/
12353 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12354 T:      git git://linuxtv.org/anttip/media_tree.git
12355 F:      drivers/media/tuners/msi001*
12356
12357 MSI2500 MEDIA DRIVER
12358 M:      Antti Palosaari <crope@iki.fi>
12359 L:      linux-media@vger.kernel.org
12360 S:      Maintained
12361 W:      https://linuxtv.org
12362 W:      http://palosaari.fi/linux/
12363 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12364 T:      git git://linuxtv.org/anttip/media_tree.git
12365 F:      drivers/media/usb/msi2500/
12366
12367 MSTAR INTERRUPT CONTROLLER DRIVER
12368 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12369 M:      Daniel Palmer <daniel@thingy.jp>
12370 S:      Maintained
12371 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12372 F:      drivers/irqchip/irq-mst-intc.c
12373
12374 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12375 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12376 L:      linux-mtd@lists.infradead.org
12377 S:      Maintained
12378 F:      drivers/mtd/devices/docg3*
12379
12380 MT9M032 APTINA SENSOR DRIVER
12381 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12382 L:      linux-media@vger.kernel.org
12383 S:      Maintained
12384 T:      git git://linuxtv.org/media_tree.git
12385 F:      drivers/media/i2c/mt9m032.c
12386 F:      include/media/i2c/mt9m032.h
12387
12388 MT9P031 APTINA CAMERA SENSOR
12389 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12390 L:      linux-media@vger.kernel.org
12391 S:      Maintained
12392 T:      git git://linuxtv.org/media_tree.git
12393 F:      drivers/media/i2c/mt9p031.c
12394 F:      include/media/i2c/mt9p031.h
12395
12396 MT9T001 APTINA CAMERA SENSOR
12397 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12398 L:      linux-media@vger.kernel.org
12399 S:      Maintained
12400 T:      git git://linuxtv.org/media_tree.git
12401 F:      drivers/media/i2c/mt9t001.c
12402 F:      include/media/i2c/mt9t001.h
12403
12404 MT9T112 APTINA CAMERA SENSOR
12405 M:      Jacopo Mondi <jacopo@jmondi.org>
12406 L:      linux-media@vger.kernel.org
12407 S:      Odd Fixes
12408 T:      git git://linuxtv.org/media_tree.git
12409 F:      drivers/media/i2c/mt9t112.c
12410 F:      include/media/i2c/mt9t112.h
12411
12412 MT9V032 APTINA CAMERA SENSOR
12413 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12414 L:      linux-media@vger.kernel.org
12415 S:      Maintained
12416 T:      git git://linuxtv.org/media_tree.git
12417 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12418 F:      drivers/media/i2c/mt9v032.c
12419 F:      include/media/i2c/mt9v032.h
12420
12421 MT9V111 APTINA CAMERA SENSOR
12422 M:      Jacopo Mondi <jacopo@jmondi.org>
12423 L:      linux-media@vger.kernel.org
12424 S:      Maintained
12425 T:      git git://linuxtv.org/media_tree.git
12426 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12427 F:      drivers/media/i2c/mt9v111.c
12428
12429 MULTIFUNCTION DEVICES (MFD)
12430 M:      Lee Jones <lee.jones@linaro.org>
12431 S:      Supported
12432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12433 F:      Documentation/devicetree/bindings/mfd/
12434 F:      drivers/mfd/
12435 F:      include/dt-bindings/mfd/
12436 F:      include/linux/mfd/
12437
12438 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12439 S:      Orphan
12440 F:      drivers/mmc/host/mmc_spi.c
12441 F:      include/linux/spi/mmc_spi.h
12442
12443 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12444 M:      Ulf Hansson <ulf.hansson@linaro.org>
12445 L:      linux-mmc@vger.kernel.org
12446 S:      Maintained
12447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12448 F:      Documentation/devicetree/bindings/mmc/
12449 F:      drivers/mmc/
12450 F:      include/linux/mmc/
12451 F:      include/uapi/linux/mmc/
12452
12453 MULTIPLEXER SUBSYSTEM
12454 M:      Peter Rosin <peda@axentia.se>
12455 S:      Maintained
12456 F:      Documentation/ABI/testing/sysfs-class-mux*
12457 F:      Documentation/devicetree/bindings/mux/
12458 F:      drivers/mux/
12459 F:      include/dt-bindings/mux/
12460 F:      include/linux/mux/
12461
12462 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12463 M:      Bin Liu <b-liu@ti.com>
12464 L:      linux-usb@vger.kernel.org
12465 S:      Maintained
12466 F:      drivers/usb/musb/
12467
12468 MXL301RF MEDIA DRIVER
12469 M:      Akihiro Tsukada <tskd08@gmail.com>
12470 L:      linux-media@vger.kernel.org
12471 S:      Odd Fixes
12472 F:      drivers/media/tuners/mxl301rf*
12473
12474 MXL5007T MEDIA DRIVER
12475 M:      Michael Krufky <mkrufky@linuxtv.org>
12476 L:      linux-media@vger.kernel.org
12477 S:      Maintained
12478 W:      https://linuxtv.org
12479 W:      http://github.com/mkrufky
12480 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12481 T:      git git://linuxtv.org/mkrufky/tuners.git
12482 F:      drivers/media/tuners/mxl5007t.*
12483
12484 MXSFB DRM DRIVER
12485 M:      Marek Vasut <marex@denx.de>
12486 M:      Stefan Agner <stefan@agner.ch>
12487 L:      dri-devel@lists.freedesktop.org
12488 S:      Supported
12489 T:      git git://anongit.freedesktop.org/drm/drm-misc
12490 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
12491 F:      drivers/gpu/drm/mxsfb/
12492
12493 MYLEX DAC960 PCI RAID Controller
12494 M:      Hannes Reinecke <hare@kernel.org>
12495 L:      linux-scsi@vger.kernel.org
12496 S:      Supported
12497 F:      drivers/scsi/myrb.*
12498 F:      drivers/scsi/myrs.*
12499
12500 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12501 M:      Chris Lee <christopher.lee@cspi.com>
12502 L:      netdev@vger.kernel.org
12503 S:      Supported
12504 W:      https://www.cspi.com/ethernet-products/support/downloads/
12505 F:      drivers/net/ethernet/myricom/myri10ge/
12506
12507 NAND FLASH SUBSYSTEM
12508 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12509 R:      Richard Weinberger <richard@nod.at>
12510 L:      linux-mtd@lists.infradead.org
12511 S:      Maintained
12512 W:      http://www.linux-mtd.infradead.org/
12513 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12514 C:      irc://irc.oftc.net/mtd
12515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12516 F:      drivers/mtd/nand/
12517 F:      include/linux/mtd/*nand*.h
12518
12519 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12520 M:      Daniel Mack <zonque@gmail.com>
12521 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12522 S:      Maintained
12523 W:      http://www.native-instruments.com
12524 F:      sound/usb/caiaq/
12525
12526 NATSEMI ETHERNET DRIVER (DP8381x)
12527 S:      Orphan
12528 F:      drivers/net/ethernet/natsemi/natsemi.c
12529
12530 NCR 5380 SCSI DRIVERS
12531 M:      Finn Thain <fthain@telegraphics.com.au>
12532 M:      Michael Schmitz <schmitzmic@gmail.com>
12533 L:      linux-scsi@vger.kernel.org
12534 S:      Maintained
12535 F:      Documentation/scsi/g_NCR5380.rst
12536 F:      drivers/scsi/NCR5380.*
12537 F:      drivers/scsi/arm/cumana_1.c
12538 F:      drivers/scsi/arm/oak.c
12539 F:      drivers/scsi/atari_scsi.*
12540 F:      drivers/scsi/dmx3191d.c
12541 F:      drivers/scsi/g_NCR5380.*
12542 F:      drivers/scsi/mac_scsi.*
12543 F:      drivers/scsi/sun3_scsi.*
12544 F:      drivers/scsi/sun3_scsi_vme.c
12545
12546 NCSI LIBRARY
12547 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
12548 S:      Maintained
12549 F:      net/ncsi/
12550
12551 NCT6775 HARDWARE MONITOR DRIVER
12552 M:      Guenter Roeck <linux@roeck-us.net>
12553 L:      linux-hwmon@vger.kernel.org
12554 S:      Maintained
12555 F:      Documentation/hwmon/nct6775.rst
12556 F:      drivers/hwmon/nct6775.c
12557
12558 NETDEVSIM
12559 M:      Jakub Kicinski <kuba@kernel.org>
12560 S:      Maintained
12561 F:      drivers/net/netdevsim/*
12562
12563 NETEM NETWORK EMULATOR
12564 M:      Stephen Hemminger <stephen@networkplumber.org>
12565 L:      netdev@vger.kernel.org
12566 S:      Maintained
12567 F:      net/sched/sch_netem.c
12568
12569 NETERION 10GbE DRIVERS (s2io/vxge)
12570 M:      Jon Mason <jdmason@kudzu.us>
12571 L:      netdev@vger.kernel.org
12572 S:      Supported
12573 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12574 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12575 F:      drivers/net/ethernet/neterion/
12576
12577 NETFILTER
12578 M:      Pablo Neira Ayuso <pablo@netfilter.org>
12579 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
12580 M:      Florian Westphal <fw@strlen.de>
12581 L:      netfilter-devel@vger.kernel.org
12582 L:      coreteam@netfilter.org
12583 S:      Maintained
12584 W:      http://www.netfilter.org/
12585 W:      http://www.iptables.org/
12586 W:      http://www.nftables.org/
12587 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
12588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
12589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
12590 F:      include/linux/netfilter*
12591 F:      include/linux/netfilter/
12592 F:      include/net/netfilter/
12593 F:      include/uapi/linux/netfilter*
12594 F:      include/uapi/linux/netfilter/
12595 F:      net/*/netfilter.c
12596 F:      net/*/netfilter/
12597 F:      net/bridge/br_netfilter*.c
12598 F:      net/netfilter/
12599
12600 NETROM NETWORK LAYER
12601 M:      Ralf Baechle <ralf@linux-mips.org>
12602 L:      linux-hams@vger.kernel.org
12603 S:      Maintained
12604 W:      http://www.linux-ax25.org/
12605 F:      include/net/netrom.h
12606 F:      include/uapi/linux/netrom.h
12607 F:      net/netrom/
12608
12609 NETRONIX EMBEDDED CONTROLLER
12610 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
12611 S:      Maintained
12612 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
12613 F:      drivers/mfd/ntxec.c
12614 F:      drivers/pwm/pwm-ntxec.c
12615 F:      drivers/rtc/rtc-ntxec.c
12616 F:      include/linux/mfd/ntxec.h
12617
12618 NETRONOME ETHERNET DRIVERS
12619 M:      Simon Horman <simon.horman@netronome.com>
12620 R:      Jakub Kicinski <kuba@kernel.org>
12621 L:      oss-drivers@netronome.com
12622 S:      Maintained
12623 F:      drivers/net/ethernet/netronome/
12624
12625 NETWORK BLOCK DEVICE (NBD)
12626 M:      Josef Bacik <josef@toxicpanda.com>
12627 L:      linux-block@vger.kernel.org
12628 L:      nbd@other.debian.org
12629 S:      Maintained
12630 F:      Documentation/admin-guide/blockdev/nbd.rst
12631 F:      drivers/block/nbd.c
12632 F:      include/trace/events/nbd.h
12633 F:      include/uapi/linux/nbd.h
12634
12635 NETWORK DROP MONITOR
12636 M:      Neil Horman <nhorman@tuxdriver.com>
12637 L:      netdev@vger.kernel.org
12638 S:      Maintained
12639 W:      https://fedorahosted.org/dropwatch/
12640 F:      include/uapi/linux/net_dropmon.h
12641 F:      net/core/drop_monitor.c
12642
12643 NETWORKING DRIVERS
12644 M:      "David S. Miller" <davem@davemloft.net>
12645 M:      Jakub Kicinski <kuba@kernel.org>
12646 L:      netdev@vger.kernel.org
12647 S:      Maintained
12648 W:      http://www.linuxfoundation.org/en/Net
12649 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12652 F:      Documentation/devicetree/bindings/net/
12653 F:      drivers/connector/
12654 F:      drivers/net/
12655 F:      include/linux/etherdevice.h
12656 F:      include/linux/fcdevice.h
12657 F:      include/linux/fddidevice.h
12658 F:      include/linux/hippidevice.h
12659 F:      include/linux/if_*
12660 F:      include/linux/inetdevice.h
12661 F:      include/linux/netdevice.h
12662 F:      include/uapi/linux/if_*
12663 F:      include/uapi/linux/netdevice.h
12664
12665 NETWORKING DRIVERS (WIRELESS)
12666 M:      Kalle Valo <kvalo@codeaurora.org>
12667 L:      linux-wireless@vger.kernel.org
12668 S:      Maintained
12669 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
12671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
12672 F:      Documentation/devicetree/bindings/net/wireless/
12673 F:      drivers/net/wireless/
12674
12675 NETWORKING [DSA]
12676 M:      Andrew Lunn <andrew@lunn.ch>
12677 M:      Vivien Didelot <vivien.didelot@gmail.com>
12678 M:      Florian Fainelli <f.fainelli@gmail.com>
12679 M:      Vladimir Oltean <olteanv@gmail.com>
12680 S:      Maintained
12681 F:      Documentation/devicetree/bindings/net/dsa/
12682 F:      drivers/net/dsa/
12683 F:      include/linux/dsa/
12684 F:      include/linux/platform_data/dsa.h
12685 F:      include/net/dsa.h
12686 F:      net/dsa/
12687
12688 NETWORKING [GENERAL]
12689 M:      "David S. Miller" <davem@davemloft.net>
12690 M:      Jakub Kicinski <kuba@kernel.org>
12691 L:      netdev@vger.kernel.org
12692 S:      Maintained
12693 W:      http://www.linuxfoundation.org/en/Net
12694 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12695 B:      mailto:netdev@vger.kernel.org
12696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12698 F:      Documentation/networking/
12699 F:      include/linux/in.h
12700 F:      include/linux/net.h
12701 F:      include/linux/netdevice.h
12702 F:      include/net/
12703 F:      include/uapi/linux/in.h
12704 F:      include/uapi/linux/net.h
12705 F:      include/uapi/linux/net_namespace.h
12706 F:      include/uapi/linux/netdevice.h
12707 F:      lib/net_utils.c
12708 F:      lib/random32.c
12709 F:      net/
12710 F:      tools/testing/selftests/net/
12711
12712 NETWORKING [IPSEC]
12713 M:      Steffen Klassert <steffen.klassert@secunet.com>
12714 M:      Herbert Xu <herbert@gondor.apana.org.au>
12715 M:      "David S. Miller" <davem@davemloft.net>
12716 L:      netdev@vger.kernel.org
12717 S:      Maintained
12718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
12719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
12720 F:      include/net/xfrm.h
12721 F:      include/uapi/linux/xfrm.h
12722 F:      net/ipv4/ah4.c
12723 F:      net/ipv4/esp4*
12724 F:      net/ipv4/ip_vti.c
12725 F:      net/ipv4/ipcomp.c
12726 F:      net/ipv4/xfrm*
12727 F:      net/ipv6/ah6.c
12728 F:      net/ipv6/esp6*
12729 F:      net/ipv6/ip6_vti.c
12730 F:      net/ipv6/ipcomp6.c
12731 F:      net/ipv6/xfrm*
12732 F:      net/key/
12733 F:      net/xfrm/
12734 F:      tools/testing/selftests/net/ipsec.c
12735
12736 NETWORKING [IPv4/IPv6]
12737 M:      "David S. Miller" <davem@davemloft.net>
12738 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
12739 M:      David Ahern <dsahern@kernel.org>
12740 L:      netdev@vger.kernel.org
12741 S:      Maintained
12742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12743 F:      arch/x86/net/*
12744 F:      include/net/ip*
12745 F:      net/ipv4/
12746 F:      net/ipv6/
12747
12748 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
12749 M:      Paul Moore <paul@paul-moore.com>
12750 L:      netdev@vger.kernel.org
12751 L:      linux-security-module@vger.kernel.org
12752 S:      Maintained
12753 W:      https://github.com/netlabel
12754 F:      Documentation/netlabel/
12755 F:      include/net/calipso.h
12756 F:      include/net/cipso_ipv4.h
12757 F:      include/net/netlabel.h
12758 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
12759 F:      include/uapi/linux/netfilter/xt_SECMARK.h
12760 F:      net/ipv4/cipso_ipv4.c
12761 F:      net/ipv6/calipso.c
12762 F:      net/netfilter/xt_CONNSECMARK.c
12763 F:      net/netfilter/xt_SECMARK.c
12764 F:      net/netlabel/
12765
12766 NETWORKING [MPTCP]
12767 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
12768 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
12769 L:      netdev@vger.kernel.org
12770 L:      mptcp@lists.linux.dev
12771 S:      Maintained
12772 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
12773 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
12774 F:      Documentation/networking/mptcp-sysctl.rst
12775 F:      include/net/mptcp.h
12776 F:      include/trace/events/mptcp.h
12777 F:      include/uapi/linux/mptcp.h
12778 F:      net/mptcp/
12779 F:      tools/testing/selftests/net/mptcp/
12780
12781 NETWORKING [TCP]
12782 M:      Eric Dumazet <edumazet@google.com>
12783 L:      netdev@vger.kernel.org
12784 S:      Maintained
12785 F:      include/linux/tcp.h
12786 F:      include/net/tcp.h
12787 F:      include/trace/events/tcp.h
12788 F:      include/uapi/linux/tcp.h
12789 F:      net/ipv4/syncookies.c
12790 F:      net/ipv4/tcp*.c
12791 F:      net/ipv6/syncookies.c
12792 F:      net/ipv6/tcp*.c
12793
12794 NETWORKING [TLS]
12795 M:      Boris Pismenny <borisp@nvidia.com>
12796 M:      John Fastabend <john.fastabend@gmail.com>
12797 M:      Daniel Borkmann <daniel@iogearbox.net>
12798 M:      Jakub Kicinski <kuba@kernel.org>
12799 L:      netdev@vger.kernel.org
12800 S:      Maintained
12801 F:      include/net/tls.h
12802 F:      include/uapi/linux/tls.h
12803 F:      net/tls/*
12804
12805 NETWORKING [WIRELESS]
12806 L:      linux-wireless@vger.kernel.org
12807 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12808
12809 NETXEN (1/10) GbE SUPPORT
12810 M:      Manish Chopra <manishc@marvell.com>
12811 M:      Rahul Verma <rahulv@marvell.com>
12812 M:      GR-Linux-NIC-Dev@marvell.com
12813 L:      netdev@vger.kernel.org
12814 S:      Supported
12815 F:      drivers/net/ethernet/qlogic/netxen/
12816
12817 NET_FAILOVER MODULE
12818 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
12819 L:      netdev@vger.kernel.org
12820 S:      Supported
12821 F:      Documentation/networking/net_failover.rst
12822 F:      drivers/net/net_failover.c
12823 F:      include/net/net_failover.h
12824
12825 NEXTHOP
12826 M:      David Ahern <dsahern@kernel.org>
12827 L:      netdev@vger.kernel.org
12828 S:      Maintained
12829 F:      include/net/netns/nexthop.h
12830 F:      include/net/nexthop.h
12831 F:      include/uapi/linux/nexthop.h
12832 F:      net/ipv4/nexthop.c
12833
12834 NFC SUBSYSTEM
12835 L:      netdev@vger.kernel.org
12836 S:      Orphan
12837 F:      Documentation/devicetree/bindings/net/nfc/
12838 F:      drivers/nfc/
12839 F:      include/linux/platform_data/nfcmrvl.h
12840 F:      include/net/nfc/
12841 F:      include/uapi/linux/nfc.h
12842 F:      net/nfc/
12843
12844 NFC VIRTUAL NCI DEVICE DRIVER
12845 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
12846 L:      netdev@vger.kernel.org
12847 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12848 S:      Supported
12849 F:      drivers/nfc/virtual_ncidev.c
12850 F:      tools/testing/selftests/nci/
12851
12852 NFS, SUNRPC, AND LOCKD CLIENTS
12853 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
12854 M:      Anna Schumaker <anna.schumaker@netapp.com>
12855 L:      linux-nfs@vger.kernel.org
12856 S:      Maintained
12857 W:      http://client.linux-nfs.org
12858 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
12859 F:      fs/lockd/
12860 F:      fs/nfs/
12861 F:      fs/nfs_common/
12862 F:      include/linux/lockd/
12863 F:      include/linux/nfs*
12864 F:      include/linux/sunrpc/
12865 F:      include/uapi/linux/nfs*
12866 F:      include/uapi/linux/sunrpc/
12867 F:      net/sunrpc/
12868 F:      Documentation/filesystems/nfs/
12869
12870 NILFS2 FILESYSTEM
12871 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
12872 L:      linux-nilfs@vger.kernel.org
12873 S:      Supported
12874 W:      https://nilfs.sourceforge.io/
12875 W:      https://nilfs.osdn.jp/
12876 T:      git git://github.com/konis/nilfs2.git
12877 F:      Documentation/filesystems/nilfs2.rst
12878 F:      fs/nilfs2/
12879 F:      include/trace/events/nilfs2.h
12880 F:      include/uapi/linux/nilfs2_api.h
12881 F:      include/uapi/linux/nilfs2_ondisk.h
12882
12883 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
12884 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12885 S:      Maintained
12886 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12887 F:      Documentation/scsi/NinjaSCSI.rst
12888 F:      drivers/scsi/pcmcia/nsp_*
12889
12890 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
12891 M:      GOTO Masanori <gotom@debian.or.jp>
12892 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12893 S:      Maintained
12894 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12895 F:      Documentation/scsi/NinjaSCSI.rst
12896 F:      drivers/scsi/nsp32*
12897
12898 NIOS2 ARCHITECTURE
12899 M:      Ley Foon Tan <ley.foon.tan@intel.com>
12900 S:      Maintained
12901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
12902 F:      arch/nios2/
12903
12904 NITRO ENCLAVES (NE)
12905 M:      Andra Paraschiv <andraprs@amazon.com>
12906 M:      Alexandru Vasile <lexnv@amazon.com>
12907 M:      Alexandru Ciobotaru <alcioa@amazon.com>
12908 L:      linux-kernel@vger.kernel.org
12909 S:      Supported
12910 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
12911 F:      Documentation/virt/ne_overview.rst
12912 F:      drivers/virt/nitro_enclaves/
12913 F:      include/linux/nitro_enclaves.h
12914 F:      include/uapi/linux/nitro_enclaves.h
12915 F:      samples/nitro_enclaves/
12916
12917 NOHZ, DYNTICKS SUPPORT
12918 M:      Frederic Weisbecker <fweisbec@gmail.com>
12919 M:      Thomas Gleixner <tglx@linutronix.de>
12920 M:      Ingo Molnar <mingo@kernel.org>
12921 L:      linux-kernel@vger.kernel.org
12922 S:      Maintained
12923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
12924 F:      include/linux/sched/nohz.h
12925 F:      include/linux/tick.h
12926 F:      kernel/time/tick*.*
12927
12928 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
12929 M:      Pavel Machek <pavel@ucw.cz>
12930 M:      Sakari Ailus <sakari.ailus@iki.fi>
12931 L:      linux-media@vger.kernel.org
12932 S:      Maintained
12933 F:      drivers/media/i2c/ad5820.c
12934 F:      drivers/media/i2c/et8ek8
12935
12936 NOKIA N900 POWER SUPPLY DRIVERS
12937 R:      Pali Rohár <pali@kernel.org>
12938 F:      drivers/power/supply/bq2415x_charger.c
12939 F:      drivers/power/supply/bq27xxx_battery.c
12940 F:      drivers/power/supply/bq27xxx_battery_i2c.c
12941 F:      drivers/power/supply/isp1704_charger.c
12942 F:      drivers/power/supply/rx51_battery.c
12943 F:      include/linux/power/bq2415x_charger.h
12944 F:      include/linux/power/bq27xxx_battery.h
12945
12946 NOLIBC HEADER FILE
12947 M:      Willy Tarreau <w@1wt.eu>
12948 S:      Maintained
12949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
12950 F:      tools/include/nolibc/
12951
12952 NSDEPS
12953 M:      Matthias Maennich <maennich@google.com>
12954 S:      Maintained
12955 F:      Documentation/core-api/symbol-namespaces.rst
12956 F:      scripts/nsdeps
12957
12958 NTB AMD DRIVER
12959 M:      Sanjay R Mehta <sanju.mehta@amd.com>
12960 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
12961 L:      linux-ntb@googlegroups.com
12962 S:      Supported
12963 F:      drivers/ntb/hw/amd/
12964
12965 NTB DRIVER CORE
12966 M:      Jon Mason <jdmason@kudzu.us>
12967 M:      Dave Jiang <dave.jiang@intel.com>
12968 M:      Allen Hubbe <allenbh@gmail.com>
12969 L:      linux-ntb@googlegroups.com
12970 S:      Supported
12971 W:      https://github.com/jonmason/ntb/wiki
12972 T:      git git://github.com/jonmason/ntb.git
12973 F:      drivers/net/ntb_netdev.c
12974 F:      drivers/ntb/
12975 F:      include/linux/ntb.h
12976 F:      include/linux/ntb_transport.h
12977 F:      tools/testing/selftests/ntb/
12978
12979 NTB IDT DRIVER
12980 M:      Serge Semin <fancer.lancer@gmail.com>
12981 L:      linux-ntb@googlegroups.com
12982 S:      Supported
12983 F:      drivers/ntb/hw/idt/
12984
12985 NTB INTEL DRIVER
12986 M:      Dave Jiang <dave.jiang@intel.com>
12987 L:      linux-ntb@googlegroups.com
12988 S:      Supported
12989 W:      https://github.com/davejiang/linux/wiki
12990 T:      git https://github.com/davejiang/linux.git
12991 F:      drivers/ntb/hw/intel/
12992
12993 NTFS FILESYSTEM
12994 M:      Anton Altaparmakov <anton@tuxera.com>
12995 L:      linux-ntfs-dev@lists.sourceforge.net
12996 S:      Supported
12997 W:      http://www.tuxera.com/
12998 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12999 F:      Documentation/filesystems/ntfs.rst
13000 F:      fs/ntfs/
13001
13002 NUBUS SUBSYSTEM
13003 M:      Finn Thain <fthain@telegraphics.com.au>
13004 L:      linux-m68k@lists.linux-m68k.org
13005 S:      Maintained
13006 F:      arch/*/include/asm/nubus.h
13007 F:      drivers/nubus/
13008 F:      include/linux/nubus.h
13009 F:      include/uapi/linux/nubus.h
13010
13011 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13012 M:      Antonino Daplas <adaplas@gmail.com>
13013 L:      linux-fbdev@vger.kernel.org
13014 S:      Maintained
13015 F:      drivers/video/fbdev/nvidia/
13016 F:      drivers/video/fbdev/riva/
13017
13018 NVM EXPRESS DRIVER
13019 M:      Keith Busch <kbusch@kernel.org>
13020 M:      Jens Axboe <axboe@fb.com>
13021 M:      Christoph Hellwig <hch@lst.de>
13022 M:      Sagi Grimberg <sagi@grimberg.me>
13023 L:      linux-nvme@lists.infradead.org
13024 S:      Supported
13025 W:      http://git.infradead.org/nvme.git
13026 T:      git://git.infradead.org/nvme.git
13027 F:      drivers/nvme/host/
13028 F:      include/linux/nvme.h
13029 F:      include/uapi/linux/nvme_ioctl.h
13030
13031 NVM EXPRESS FC TRANSPORT DRIVERS
13032 M:      James Smart <james.smart@broadcom.com>
13033 L:      linux-nvme@lists.infradead.org
13034 S:      Supported
13035 F:      drivers/nvme/host/fc.c
13036 F:      drivers/nvme/target/fc.c
13037 F:      drivers/nvme/target/fcloop.c
13038 F:      include/linux/nvme-fc-driver.h
13039 F:      include/linux/nvme-fc.h
13040
13041 NVM EXPRESS TARGET DRIVER
13042 M:      Christoph Hellwig <hch@lst.de>
13043 M:      Sagi Grimberg <sagi@grimberg.me>
13044 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
13045 L:      linux-nvme@lists.infradead.org
13046 S:      Supported
13047 W:      http://git.infradead.org/nvme.git
13048 T:      git://git.infradead.org/nvme.git
13049 F:      drivers/nvme/target/
13050
13051 NVMEM FRAMEWORK
13052 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13053 S:      Maintained
13054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13055 F:      Documentation/ABI/stable/sysfs-bus-nvmem
13056 F:      Documentation/devicetree/bindings/nvmem/
13057 F:      drivers/nvmem/
13058 F:      include/linux/nvmem-consumer.h
13059 F:      include/linux/nvmem-provider.h
13060
13061 NXP C45 TJA11XX PHY DRIVER
13062 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13063 L:      netdev@vger.kernel.org
13064 S:      Maintained
13065 F:      drivers/net/phy/nxp-c45-tja11xx.c
13066
13067 NXP FSPI DRIVER
13068 M:      Ashish Kumar <ashish.kumar@nxp.com>
13069 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
13070 L:      linux-spi@vger.kernel.org
13071 S:      Maintained
13072 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
13073 F:      drivers/spi/spi-nxp-fspi.c
13074
13075 NXP FXAS21002C DRIVER
13076 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13077 L:      linux-iio@vger.kernel.org
13078 S:      Maintained
13079 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13080 F:      drivers/iio/gyro/fxas21002c.h
13081 F:      drivers/iio/gyro/fxas21002c_core.c
13082 F:      drivers/iio/gyro/fxas21002c_i2c.c
13083 F:      drivers/iio/gyro/fxas21002c_spi.c
13084
13085 NXP i.MX CLOCK DRIVERS
13086 M:      Abel Vesa <abel.vesa@nxp.com>
13087 L:      linux-clk@vger.kernel.org
13088 L:      linux-imx@nxp.com
13089 S:      Maintained
13090 F:      drivers/clk/imx/
13091
13092 NXP i.MX 8MQ DCSS DRIVER
13093 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13094 R:      Lucas Stach <l.stach@pengutronix.de>
13095 L:      dri-devel@lists.freedesktop.org
13096 S:      Maintained
13097 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13098 F:      drivers/gpu/drm/imx/dcss/
13099
13100 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13101 M:      Jagan Teki <jagan@amarulasolutions.com>
13102 S:      Maintained
13103 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13104 F:      drivers/regulator/pf8x00-regulator.c
13105
13106 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13107 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13108 L:      linux-kernel@vger.kernel.org
13109 S:      Maintained
13110 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13111 F:      drivers/extcon/extcon-ptn5150.c
13112
13113 NXP SGTL5000 DRIVER
13114 M:      Fabio Estevam <festevam@gmail.com>
13115 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13116 S:      Maintained
13117 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
13118 F:      sound/soc/codecs/sgtl5000*
13119
13120 NXP SJA1105 ETHERNET SWITCH DRIVER
13121 M:      Vladimir Oltean <olteanv@gmail.com>
13122 L:      linux-kernel@vger.kernel.org
13123 S:      Maintained
13124 F:      drivers/net/dsa/sja1105
13125
13126 NXP TDA998X DRM DRIVER
13127 M:      Russell King <linux@armlinux.org.uk>
13128 S:      Maintained
13129 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13130 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13131 F:      drivers/gpu/drm/i2c/tda998x_drv.c
13132 F:      include/drm/i2c/tda998x.h
13133 F:      include/dt-bindings/display/tda998x.h
13134 K:      "nxp,tda998x"
13135
13136 NXP TFA9879 DRIVER
13137 M:      Peter Rosin <peda@axentia.se>
13138 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13139 S:      Maintained
13140 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
13141 F:      sound/soc/codecs/tfa9879*
13142
13143 NXP-NCI NFC DRIVER
13144 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
13145 R:      Charles Gorand <charles.gorand@effinnov.com>
13146 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
13147 S:      Supported
13148 F:      drivers/nfc/nxp-nci
13149
13150 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13151 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
13152 R:      NXP Linux Team <linux-imx@nxp.com>
13153 L:      linux-media@vger.kernel.org
13154 S:      Maintained
13155 F:      Documentation/devicetree/bindings/media/imx8-jpeg.yaml
13156 F:      drivers/media/platform/imx-jpeg
13157
13158 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13159 M:      Jonas Malaco <jonas@protocubo.io>
13160 L:      linux-hwmon@vger.kernel.org
13161 S:      Maintained
13162 F:      Documentation/hwmon/nzxt-kraken2.rst
13163 F:      drivers/hwmon/nzxt-kraken2.c
13164
13165 OBJAGG
13166 M:      Jiri Pirko <jiri@nvidia.com>
13167 L:      netdev@vger.kernel.org
13168 S:      Supported
13169 F:      include/linux/objagg.h
13170 F:      lib/objagg.c
13171 F:      lib/test_objagg.c
13172
13173 OBJTOOL
13174 M:      Josh Poimboeuf <jpoimboe@redhat.com>
13175 M:      Peter Zijlstra <peterz@infradead.org>
13176 S:      Supported
13177 F:      tools/objtool/
13178 F:      include/linux/objtool.h
13179
13180 OCELOT ETHERNET SWITCH DRIVER
13181 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
13182 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
13183 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13184 M:      UNGLinuxDriver@microchip.com
13185 L:      netdev@vger.kernel.org
13186 S:      Supported
13187 F:      drivers/net/dsa/ocelot/*
13188 F:      drivers/net/ethernet/mscc/
13189 F:      include/soc/mscc/ocelot*
13190 F:      net/dsa/tag_ocelot.c
13191 F:      net/dsa/tag_ocelot_8021q.c
13192 F:      tools/testing/selftests/drivers/net/ocelot/*
13193
13194 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13195 M:      Frederic Barrat <fbarrat@linux.ibm.com>
13196 M:      Andrew Donnellan <ajd@linux.ibm.com>
13197 L:      linuxppc-dev@lists.ozlabs.org
13198 S:      Supported
13199 F:      Documentation/userspace-api/accelerators/ocxl.rst
13200 F:      arch/powerpc/include/asm/pnv-ocxl.h
13201 F:      arch/powerpc/platforms/powernv/ocxl.c
13202 F:      drivers/misc/ocxl/
13203 F:      include/misc/ocxl*
13204 F:      include/uapi/misc/ocxl.h
13205
13206 OMAP AUDIO SUPPORT
13207 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
13208 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
13209 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13210 L:      linux-omap@vger.kernel.org
13211 S:      Maintained
13212 F:      sound/soc/ti/n810.c
13213 F:      sound/soc/ti/omap*
13214 F:      sound/soc/ti/rx51.c
13215 F:      sound/soc/ti/sdma-pcm.*
13216
13217 OMAP CLOCK FRAMEWORK SUPPORT
13218 M:      Paul Walmsley <paul@pwsan.com>
13219 L:      linux-omap@vger.kernel.org
13220 S:      Maintained
13221 F:      arch/arm/*omap*/*clock*
13222
13223 OMAP DEVICE TREE SUPPORT
13224 M:      Benoît Cousson <bcousson@baylibre.com>
13225 M:      Tony Lindgren <tony@atomide.com>
13226 L:      linux-omap@vger.kernel.org
13227 L:      devicetree@vger.kernel.org
13228 S:      Maintained
13229 F:      arch/arm/boot/dts/*am3*
13230 F:      arch/arm/boot/dts/*am4*
13231 F:      arch/arm/boot/dts/*am5*
13232 F:      arch/arm/boot/dts/*dra7*
13233 F:      arch/arm/boot/dts/*omap*
13234 F:      arch/arm/boot/dts/logicpd-som-lv*
13235 F:      arch/arm/boot/dts/logicpd-torpedo*
13236
13237 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
13238 L:      linux-omap@vger.kernel.org
13239 L:      linux-fbdev@vger.kernel.org
13240 S:      Orphan
13241 F:      Documentation/arm/omap/dss.rst
13242 F:      drivers/video/fbdev/omap2/
13243
13244 OMAP FRAMEBUFFER SUPPORT
13245 L:      linux-fbdev@vger.kernel.org
13246 L:      linux-omap@vger.kernel.org
13247 S:      Orphan
13248 F:      drivers/video/fbdev/omap/
13249
13250 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
13251 M:      Roger Quadros <rogerq@kernel.org>
13252 M:      Tony Lindgren <tony@atomide.com>
13253 L:      linux-omap@vger.kernel.org
13254 S:      Maintained
13255 F:      arch/arm/mach-omap2/*gpmc*
13256 F:      drivers/memory/omap-gpmc.c
13257
13258 OMAP GPIO DRIVER
13259 M:      Grygorii Strashko <grygorii.strashko@ti.com>
13260 M:      Santosh Shilimkar <ssantosh@kernel.org>
13261 M:      Kevin Hilman <khilman@kernel.org>
13262 L:      linux-omap@vger.kernel.org
13263 S:      Maintained
13264 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
13265 F:      drivers/gpio/gpio-omap.c
13266
13267 OMAP HARDWARE SPINLOCK SUPPORT
13268 M:      Ohad Ben-Cohen <ohad@wizery.com>
13269 L:      linux-omap@vger.kernel.org
13270 S:      Maintained
13271 F:      drivers/hwspinlock/omap_hwspinlock.c
13272
13273 OMAP HS MMC SUPPORT
13274 L:      linux-mmc@vger.kernel.org
13275 L:      linux-omap@vger.kernel.org
13276 S:      Orphan
13277 F:      drivers/mmc/host/omap_hsmmc.c
13278
13279 OMAP HWMOD DATA
13280 M:      Paul Walmsley <paul@pwsan.com>
13281 L:      linux-omap@vger.kernel.org
13282 S:      Maintained
13283 F:      arch/arm/mach-omap2/omap_hwmod*data*
13284
13285 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
13286 M:      Benoît Cousson <bcousson@baylibre.com>
13287 L:      linux-omap@vger.kernel.org
13288 S:      Maintained
13289 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
13290
13291 OMAP HWMOD SUPPORT
13292 M:      Benoît Cousson <bcousson@baylibre.com>
13293 M:      Paul Walmsley <paul@pwsan.com>
13294 L:      linux-omap@vger.kernel.org
13295 S:      Maintained
13296 F:      arch/arm/mach-omap2/omap_hwmod.*
13297
13298 OMAP I2C DRIVER
13299 M:      Vignesh R <vigneshr@ti.com>
13300 L:      linux-omap@vger.kernel.org
13301 L:      linux-i2c@vger.kernel.org
13302 S:      Maintained
13303 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
13304 F:      drivers/i2c/busses/i2c-omap.c
13305
13306 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
13307 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13308 L:      linux-media@vger.kernel.org
13309 S:      Maintained
13310 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
13311 F:      drivers/media/platform/omap3isp/
13312 F:      drivers/staging/media/omap4iss/
13313
13314 OMAP MMC SUPPORT
13315 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13316 L:      linux-omap@vger.kernel.org
13317 S:      Odd Fixes
13318 F:      drivers/mmc/host/omap.c
13319
13320 OMAP POWER MANAGEMENT SUPPORT
13321 M:      Kevin Hilman <khilman@kernel.org>
13322 L:      linux-omap@vger.kernel.org
13323 S:      Maintained
13324 F:      arch/arm/*omap*/*pm*
13325 F:      drivers/cpufreq/omap-cpufreq.c
13326
13327 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13328 M:      Rajendra Nayak <rnayak@codeaurora.org>
13329 M:      Paul Walmsley <paul@pwsan.com>
13330 L:      linux-omap@vger.kernel.org
13331 S:      Maintained
13332 F:      arch/arm/mach-omap2/prm*
13333
13334 OMAP RANDOM NUMBER GENERATOR SUPPORT
13335 M:      Deepak Saxena <dsaxena@plexity.net>
13336 S:      Maintained
13337 F:      drivers/char/hw_random/omap-rng.c
13338
13339 OMAP USB SUPPORT
13340 L:      linux-usb@vger.kernel.org
13341 L:      linux-omap@vger.kernel.org
13342 S:      Orphan
13343 F:      arch/arm/*omap*/usb*
13344 F:      drivers/usb/*/*omap*
13345
13346 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13347 M:      Mark Jackson <mpfj@newflow.co.uk>
13348 L:      linux-omap@vger.kernel.org
13349 S:      Maintained
13350 F:      arch/arm/boot/dts/am335x-nano.dts
13351
13352 OMAP1 SUPPORT
13353 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13354 M:      Tony Lindgren <tony@atomide.com>
13355 L:      linux-omap@vger.kernel.org
13356 S:      Maintained
13357 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13359 F:      arch/arm/configs/omap1_defconfig
13360 F:      arch/arm/mach-omap1/
13361 F:      arch/arm/plat-omap/
13362 F:      drivers/i2c/busses/i2c-omap.c
13363 F:      include/linux/platform_data/ams-delta-fiq.h
13364 F:      include/linux/platform_data/i2c-omap.h
13365
13366 OMAP2+ SUPPORT
13367 M:      Tony Lindgren <tony@atomide.com>
13368 L:      linux-omap@vger.kernel.org
13369 S:      Maintained
13370 W:      http://www.muru.com/linux/omap/
13371 W:      http://linux.omap.com/
13372 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13373 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13374 F:      arch/arm/configs/omap2plus_defconfig
13375 F:      arch/arm/mach-omap2/
13376 F:      arch/arm/plat-omap/
13377 F:      drivers/bus/ti-sysc.c
13378 F:      drivers/i2c/busses/i2c-omap.c
13379 F:      drivers/irqchip/irq-omap-intc.c
13380 F:      drivers/mfd/*omap*.c
13381 F:      drivers/mfd/menelaus.c
13382 F:      drivers/mfd/palmas.c
13383 F:      drivers/mfd/tps65217.c
13384 F:      drivers/mfd/tps65218.c
13385 F:      drivers/mfd/tps65910.c
13386 F:      drivers/mfd/twl-core.[ch]
13387 F:      drivers/mfd/twl4030*.c
13388 F:      drivers/mfd/twl6030*.c
13389 F:      drivers/mfd/twl6040*.c
13390 F:      drivers/regulator/palmas-regulator*.c
13391 F:      drivers/regulator/pbias-regulator.c
13392 F:      drivers/regulator/tps65217-regulator.c
13393 F:      drivers/regulator/tps65218-regulator.c
13394 F:      drivers/regulator/tps65910-regulator.c
13395 F:      drivers/regulator/twl-regulator.c
13396 F:      drivers/regulator/twl6030-regulator.c
13397 F:      include/linux/platform_data/i2c-omap.h
13398 F:      include/linux/platform_data/ti-sysc.h
13399
13400 OMFS FILESYSTEM
13401 M:      Bob Copeland <me@bobcopeland.com>
13402 L:      linux-karma-devel@lists.sourceforge.net
13403 S:      Maintained
13404 F:      Documentation/filesystems/omfs.rst
13405 F:      fs/omfs/
13406
13407 OMNIKEY CARDMAN 4000 DRIVER
13408 M:      Harald Welte <laforge@gnumonks.org>
13409 S:      Maintained
13410 F:      drivers/char/pcmcia/cm4000_cs.c
13411 F:      include/linux/cm4000_cs.h
13412 F:      include/uapi/linux/cm4000_cs.h
13413
13414 OMNIKEY CARDMAN 4040 DRIVER
13415 M:      Harald Welte <laforge@gnumonks.org>
13416 S:      Maintained
13417 F:      drivers/char/pcmcia/cm4040_cs.*
13418
13419 OMNIVISION OV02A10 SENSOR DRIVER
13420 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13421 L:      linux-media@vger.kernel.org
13422 S:      Maintained
13423 T:      git git://linuxtv.org/media_tree.git
13424 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13425 F:      drivers/media/i2c/ov02a10.c
13426
13427 OMNIVISION OV13858 SENSOR DRIVER
13428 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13429 L:      linux-media@vger.kernel.org
13430 S:      Maintained
13431 T:      git git://linuxtv.org/media_tree.git
13432 F:      drivers/media/i2c/ov13858.c
13433
13434 OMNIVISION OV2680 SENSOR DRIVER
13435 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13436 L:      linux-media@vger.kernel.org
13437 S:      Maintained
13438 T:      git git://linuxtv.org/media_tree.git
13439 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
13440 F:      drivers/media/i2c/ov2680.c
13441
13442 OMNIVISION OV2685 SENSOR DRIVER
13443 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13444 L:      linux-media@vger.kernel.org
13445 S:      Maintained
13446 T:      git git://linuxtv.org/media_tree.git
13447 F:      drivers/media/i2c/ov2685.c
13448
13449 OMNIVISION OV2740 SENSOR DRIVER
13450 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13451 R:      Shawn Tu <shawnx.tu@intel.com>
13452 R:      Bingbu Cao <bingbu.cao@intel.com>
13453 L:      linux-media@vger.kernel.org
13454 S:      Maintained
13455 T:      git git://linuxtv.org/media_tree.git
13456 F:      drivers/media/i2c/ov2740.c
13457
13458 OMNIVISION OV5640 SENSOR DRIVER
13459 M:      Steve Longerbeam <slongerbeam@gmail.com>
13460 L:      linux-media@vger.kernel.org
13461 S:      Maintained
13462 T:      git git://linuxtv.org/media_tree.git
13463 F:      drivers/media/i2c/ov5640.c
13464
13465 OMNIVISION OV5647 SENSOR DRIVER
13466 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
13467 M:      Jacopo Mondi <jacopo@jmondi.org>
13468 L:      linux-media@vger.kernel.org
13469 S:      Maintained
13470 T:      git git://linuxtv.org/media_tree.git
13471 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
13472 F:      drivers/media/i2c/ov5647.c
13473
13474 OMNIVISION OV5670 SENSOR DRIVER
13475 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13476 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
13477 L:      linux-media@vger.kernel.org
13478 S:      Maintained
13479 T:      git git://linuxtv.org/media_tree.git
13480 F:      drivers/media/i2c/ov5670.c
13481
13482 OMNIVISION OV5675 SENSOR DRIVER
13483 M:      Shawn Tu <shawnx.tu@intel.com>
13484 L:      linux-media@vger.kernel.org
13485 S:      Maintained
13486 T:      git git://linuxtv.org/media_tree.git
13487 F:      drivers/media/i2c/ov5675.c
13488
13489 OMNIVISION OV5695 SENSOR DRIVER
13490 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13491 L:      linux-media@vger.kernel.org
13492 S:      Maintained
13493 T:      git git://linuxtv.org/media_tree.git
13494 F:      drivers/media/i2c/ov5695.c
13495
13496 OMNIVISION OV7670 SENSOR DRIVER
13497 L:      linux-media@vger.kernel.org
13498 S:      Orphan
13499 T:      git git://linuxtv.org/media_tree.git
13500 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
13501 F:      drivers/media/i2c/ov7670.c
13502
13503 OMNIVISION OV772x SENSOR DRIVER
13504 M:      Jacopo Mondi <jacopo@jmondi.org>
13505 L:      linux-media@vger.kernel.org
13506 S:      Odd fixes
13507 T:      git git://linuxtv.org/media_tree.git
13508 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13509 F:      drivers/media/i2c/ov772x.c
13510 F:      include/media/i2c/ov772x.h
13511
13512 OMNIVISION OV7740 SENSOR DRIVER
13513 M:      Wenyou Yang <wenyou.yang@microchip.com>
13514 L:      linux-media@vger.kernel.org
13515 S:      Maintained
13516 T:      git git://linuxtv.org/media_tree.git
13517 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
13518 F:      drivers/media/i2c/ov7740.c
13519
13520 OMNIVISION OV8856 SENSOR DRIVER
13521 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13522 L:      linux-media@vger.kernel.org
13523 S:      Maintained
13524 T:      git git://linuxtv.org/media_tree.git
13525 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13526 F:      drivers/media/i2c/ov8856.c
13527
13528 OMNIVISION OV9640 SENSOR DRIVER
13529 M:      Petr Cvek <petrcvekcz@gmail.com>
13530 L:      linux-media@vger.kernel.org
13531 S:      Maintained
13532 F:      drivers/media/i2c/ov9640.*
13533
13534 OMNIVISION OV9650 SENSOR DRIVER
13535 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13536 R:      Akinobu Mita <akinobu.mita@gmail.com>
13537 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13538 L:      linux-media@vger.kernel.org
13539 S:      Maintained
13540 T:      git git://linuxtv.org/media_tree.git
13541 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
13542 F:      drivers/media/i2c/ov9650.c
13543
13544 OMNIVISION OV9734 SENSOR DRIVER
13545 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13546 R:      Bingbu Cao <bingbu.cao@intel.com>
13547 L:      linux-media@vger.kernel.org
13548 S:      Maintained
13549 T:      git git://linuxtv.org/media_tree.git
13550 F:      drivers/media/i2c/ov9734.c
13551
13552 ONENAND FLASH DRIVER
13553 M:      Kyungmin Park <kyungmin.park@samsung.com>
13554 L:      linux-mtd@lists.infradead.org
13555 S:      Maintained
13556 F:      drivers/mtd/nand/onenand/
13557 F:      include/linux/mtd/onenand*.h
13558
13559 ONION OMEGA2+ BOARD
13560 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
13561 L:      linux-mips@vger.kernel.org
13562 S:      Maintained
13563 F:      arch/mips/boot/dts/ralink/omega2p.dts
13564
13565 OP-TEE DRIVER
13566 M:      Jens Wiklander <jens.wiklander@linaro.org>
13567 L:      op-tee@lists.trustedfirmware.org
13568 S:      Maintained
13569 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
13570 F:      drivers/tee/optee/
13571
13572 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
13573 M:      Sumit Garg <sumit.garg@linaro.org>
13574 L:      op-tee@lists.trustedfirmware.org
13575 S:      Maintained
13576 F:      drivers/char/hw_random/optee-rng.c
13577
13578 OPA-VNIC DRIVER
13579 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
13580 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
13581 L:      linux-rdma@vger.kernel.org
13582 S:      Supported
13583 F:      drivers/infiniband/ulp/opa_vnic
13584
13585 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
13586 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
13587 M:      Frank Rowand <frowand.list@gmail.com>
13588 L:      devicetree@vger.kernel.org
13589 S:      Maintained
13590 F:      Documentation/devicetree/dynamic-resolution-notes.rst
13591 F:      Documentation/devicetree/overlay-notes.rst
13592 F:      drivers/of/overlay.c
13593 F:      drivers/of/resolver.c
13594 K:      of_overlay_notifier_
13595
13596 OPEN FIRMWARE AND FLATTENED DEVICE TREE
13597 M:      Rob Herring <robh+dt@kernel.org>
13598 M:      Frank Rowand <frowand.list@gmail.com>
13599 L:      devicetree@vger.kernel.org
13600 S:      Maintained
13601 W:      http://www.devicetree.org/
13602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13603 F:      Documentation/ABI/testing/sysfs-firmware-ofw
13604 F:      drivers/of/
13605 F:      include/linux/of*.h
13606 F:      scripts/dtc/
13607
13608 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
13609 M:      Rob Herring <robh+dt@kernel.org>
13610 L:      devicetree@vger.kernel.org
13611 S:      Maintained
13612 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
13613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13614 F:      Documentation/devicetree/
13615 F:      arch/*/boot/dts/
13616 F:      include/dt-bindings/
13617
13618 OPENCORES I2C BUS DRIVER
13619 M:      Peter Korsgaard <peter@korsgaard.com>
13620 M:      Andrew Lunn <andrew@lunn.ch>
13621 L:      linux-i2c@vger.kernel.org
13622 S:      Maintained
13623 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
13624 F:      Documentation/i2c/busses/i2c-ocores.rst
13625 F:      drivers/i2c/busses/i2c-ocores.c
13626 F:      include/linux/platform_data/i2c-ocores.h
13627
13628 OPENRISC ARCHITECTURE
13629 M:      Jonas Bonn <jonas@southpole.se>
13630 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
13631 M:      Stafford Horne <shorne@gmail.com>
13632 L:      openrisc@lists.librecores.org
13633 S:      Maintained
13634 W:      http://openrisc.io
13635 T:      git git://github.com/openrisc/linux.git
13636 F:      Documentation/devicetree/bindings/openrisc/
13637 F:      Documentation/openrisc/
13638 F:      arch/openrisc/
13639 F:      drivers/irqchip/irq-ompic.c
13640 F:      drivers/irqchip/irq-or1k-*
13641
13642 OPENVSWITCH
13643 M:      Pravin B Shelar <pshelar@ovn.org>
13644 L:      netdev@vger.kernel.org
13645 L:      dev@openvswitch.org
13646 S:      Maintained
13647 W:      http://openvswitch.org
13648 F:      include/uapi/linux/openvswitch.h
13649 F:      net/openvswitch/
13650
13651 OPERATING PERFORMANCE POINTS (OPP)
13652 M:      Viresh Kumar <vireshk@kernel.org>
13653 M:      Nishanth Menon <nm@ti.com>
13654 M:      Stephen Boyd <sboyd@kernel.org>
13655 L:      linux-pm@vger.kernel.org
13656 S:      Maintained
13657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
13658 F:      Documentation/devicetree/bindings/opp/
13659 F:      Documentation/power/opp.rst
13660 F:      drivers/opp/
13661 F:      include/linux/pm_opp.h
13662
13663 OPL4 DRIVER
13664 M:      Clemens Ladisch <clemens@ladisch.de>
13665 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13666 S:      Maintained
13667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
13668 F:      sound/drivers/opl4/
13669
13670 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
13671 M:      Mark Fasheh <mark@fasheh.com>
13672 M:      Joel Becker <jlbec@evilplan.org>
13673 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
13674 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
13675 S:      Supported
13676 W:      http://ocfs2.wiki.kernel.org
13677 F:      Documentation/filesystems/dlmfs.rst
13678 F:      Documentation/filesystems/ocfs2.rst
13679 F:      fs/ocfs2/
13680
13681 ORANGEFS FILESYSTEM
13682 M:      Mike Marshall <hubcap@omnibond.com>
13683 R:      Martin Brandenburg <martin@omnibond.com>
13684 L:      devel@lists.orangefs.org
13685 S:      Supported
13686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
13687 F:      Documentation/filesystems/orangefs.rst
13688 F:      fs/orangefs/
13689
13690 ORINOCO DRIVER
13691 L:      linux-wireless@vger.kernel.org
13692 S:      Orphan
13693 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
13694 W:      http://www.nongnu.org/orinoco/
13695 F:      drivers/net/wireless/intersil/orinoco/
13696
13697 OV2659 OMNIVISION SENSOR DRIVER
13698 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13699 L:      linux-media@vger.kernel.org
13700 S:      Maintained
13701 W:      https://linuxtv.org
13702 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13703 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13704 F:      drivers/media/i2c/ov2659.c
13705 F:      include/media/i2c/ov2659.h
13706
13707 OVERLAY FILESYSTEM
13708 M:      Miklos Szeredi <miklos@szeredi.hu>
13709 L:      linux-unionfs@vger.kernel.org
13710 S:      Supported
13711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
13712 F:      Documentation/filesystems/overlayfs.rst
13713 F:      fs/overlayfs/
13714
13715 P54 WIRELESS DRIVER
13716 M:      Christian Lamparter <chunkeey@googlemail.com>
13717 L:      linux-wireless@vger.kernel.org
13718 S:      Maintained
13719 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
13720 F:      drivers/net/wireless/intersil/p54/
13721
13722 PACKING
13723 M:      Vladimir Oltean <olteanv@gmail.com>
13724 L:      netdev@vger.kernel.org
13725 S:      Supported
13726 F:      Documentation/core-api/packing.rst
13727 F:      include/linux/packing.h
13728 F:      lib/packing.c
13729
13730 PADATA PARALLEL EXECUTION MECHANISM
13731 M:      Steffen Klassert <steffen.klassert@secunet.com>
13732 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
13733 L:      linux-crypto@vger.kernel.org
13734 L:      linux-kernel@vger.kernel.org
13735 S:      Maintained
13736 F:      Documentation/core-api/padata.rst
13737 F:      include/linux/padata.h
13738 F:      kernel/padata.c
13739
13740 PAGE POOL
13741 M:      Jesper Dangaard Brouer <hawk@kernel.org>
13742 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
13743 L:      netdev@vger.kernel.org
13744 S:      Supported
13745 F:      Documentation/networking/page_pool.rst
13746 F:      include/net/page_pool.h
13747 F:      include/trace/events/page_pool.h
13748 F:      net/core/page_pool.c
13749
13750 PANASONIC LAPTOP ACPI EXTRAS DRIVER
13751 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
13752 L:      platform-driver-x86@vger.kernel.org
13753 S:      Maintained
13754 F:      drivers/platform/x86/panasonic-laptop.c
13755
13756 PARALLAX PING IIO SENSOR DRIVER
13757 M:      Andreas Klinger <ak@it-klinger.de>
13758 L:      linux-iio@vger.kernel.org
13759 S:      Maintained
13760 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
13761 F:      drivers/iio/proximity/ping.c
13762
13763 PARALLEL LCD/KEYPAD PANEL DRIVER
13764 M:      Willy Tarreau <willy@haproxy.com>
13765 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
13766 S:      Odd Fixes
13767 F:      Documentation/admin-guide/lcd-panel-cgram.rst
13768 F:      drivers/auxdisplay/panel.c
13769
13770 PARALLEL PORT SUBSYSTEM
13771 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
13772 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
13773 L:      linux-parport@lists.infradead.org (subscribers-only)
13774 S:      Maintained
13775 F:      Documentation/driver-api/parport*.rst
13776 F:      drivers/char/ppdev.c
13777 F:      drivers/parport/
13778 F:      include/linux/parport*.h
13779 F:      include/uapi/linux/ppdev.h
13780
13781 PARAVIRT_OPS INTERFACE
13782 M:      Juergen Gross <jgross@suse.com>
13783 M:      Deep Shah <sdeep@vmware.com>
13784 M:      "VMware, Inc." <pv-drivers@vmware.com>
13785 L:      virtualization@lists.linux-foundation.org
13786 S:      Supported
13787 F:      Documentation/virt/paravirt_ops.rst
13788 F:      arch/*/include/asm/paravirt*.h
13789 F:      arch/*/kernel/paravirt*
13790 F:      include/linux/hypervisor.h
13791
13792 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
13793 M:      Tim Waugh <tim@cyberelk.net>
13794 L:      linux-parport@lists.infradead.org (subscribers-only)
13795 S:      Maintained
13796 F:      Documentation/admin-guide/blockdev/paride.rst
13797 F:      drivers/block/paride/
13798
13799 PARISC ARCHITECTURE
13800 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
13801 M:      Helge Deller <deller@gmx.de>
13802 L:      linux-parisc@vger.kernel.org
13803 S:      Maintained
13804 W:      https://parisc.wiki.kernel.org
13805 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
13806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
13807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
13808 F:      Documentation/parisc/
13809 F:      arch/parisc/
13810 F:      drivers/char/agp/parisc-agp.c
13811 F:      drivers/input/misc/hp_sdc_rtc.c
13812 F:      drivers/input/serio/gscps2.c
13813 F:      drivers/input/serio/hp_sdc*
13814 F:      drivers/parisc/
13815 F:      drivers/parport/parport_gsc.*
13816 F:      drivers/tty/serial/8250/8250_gsc.c
13817 F:      drivers/video/console/sti*
13818 F:      drivers/video/fbdev/sti*
13819 F:      drivers/video/logo/logo_parisc*
13820 F:      include/linux/hp_sdc.h
13821
13822 PARMAN
13823 M:      Jiri Pirko <jiri@nvidia.com>
13824 L:      netdev@vger.kernel.org
13825 S:      Supported
13826 F:      include/linux/parman.h
13827 F:      lib/parman.c
13828 F:      lib/test_parman.c
13829
13830 PC ENGINES APU BOARD DRIVER
13831 M:      Enrico Weigelt, metux IT consult <info@metux.net>
13832 S:      Maintained
13833 F:      drivers/platform/x86/pcengines-apuv2.c
13834
13835 PC87360 HARDWARE MONITORING DRIVER
13836 M:      Jim Cromie <jim.cromie@gmail.com>
13837 L:      linux-hwmon@vger.kernel.org
13838 S:      Maintained
13839 F:      Documentation/hwmon/pc87360.rst
13840 F:      drivers/hwmon/pc87360.c
13841
13842 PC8736x GPIO DRIVER
13843 M:      Jim Cromie <jim.cromie@gmail.com>
13844 S:      Maintained
13845 F:      drivers/char/pc8736x_gpio.c
13846
13847 PC87427 HARDWARE MONITORING DRIVER
13848 M:      Jean Delvare <jdelvare@suse.com>
13849 L:      linux-hwmon@vger.kernel.org
13850 S:      Maintained
13851 F:      Documentation/hwmon/pc87427.rst
13852 F:      drivers/hwmon/pc87427.c
13853
13854 PCA9532 LED DRIVER
13855 M:      Riku Voipio <riku.voipio@iki.fi>
13856 S:      Maintained
13857 F:      drivers/leds/leds-pca9532.c
13858 F:      include/linux/leds-pca9532.h
13859
13860 PCA9541 I2C BUS MASTER SELECTOR DRIVER
13861 M:      Guenter Roeck <linux@roeck-us.net>
13862 L:      linux-i2c@vger.kernel.org
13863 S:      Maintained
13864 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
13865
13866 PCDP - PRIMARY CONSOLE AND DEBUG PORT
13867 M:      Khalid Aziz <khalid@gonehiking.org>
13868 S:      Maintained
13869 F:      drivers/firmware/pcdp.*
13870
13871 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
13872 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13873 M:      Pali Rohár <pali@kernel.org>
13874 L:      linux-pci@vger.kernel.org
13875 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13876 S:      Maintained
13877 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
13878 F:      drivers/pci/controller/pci-aardvark.c
13879
13880 PCI DRIVER FOR ALTERA PCIE IP
13881 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13882 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13883 L:      linux-pci@vger.kernel.org
13884 S:      Supported
13885 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
13886 F:      drivers/pci/controller/pcie-altera.c
13887
13888 PCI DRIVER FOR APPLIEDMICRO XGENE
13889 M:      Toan Le <toan@os.amperecomputing.com>
13890 L:      linux-pci@vger.kernel.org
13891 L:      linux-arm-kernel@lists.infradead.org
13892 S:      Maintained
13893 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
13894 F:      drivers/pci/controller/pci-xgene.c
13895
13896 PCI DRIVER FOR ARM VERSATILE PLATFORM
13897 M:      Rob Herring <robh@kernel.org>
13898 L:      linux-pci@vger.kernel.org
13899 L:      linux-arm-kernel@lists.infradead.org
13900 S:      Maintained
13901 F:      Documentation/devicetree/bindings/pci/versatile.yaml
13902 F:      drivers/pci/controller/pci-versatile.c
13903
13904 PCI DRIVER FOR ARMADA 8K
13905 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13906 L:      linux-pci@vger.kernel.org
13907 L:      linux-arm-kernel@lists.infradead.org
13908 S:      Maintained
13909 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
13910 F:      drivers/pci/controller/dwc/pcie-armada8k.c
13911
13912 PCI DRIVER FOR CADENCE PCIE IP
13913 M:      Tom Joseph <tjoseph@cadence.com>
13914 L:      linux-pci@vger.kernel.org
13915 S:      Maintained
13916 F:      Documentation/devicetree/bindings/pci/cdns,*
13917 F:      drivers/pci/controller/cadence/
13918
13919 PCI DRIVER FOR FREESCALE LAYERSCAPE
13920 M:      Minghuan Lian <minghuan.Lian@nxp.com>
13921 M:      Mingkai Hu <mingkai.hu@nxp.com>
13922 M:      Roy Zang <roy.zang@nxp.com>
13923 L:      linuxppc-dev@lists.ozlabs.org
13924 L:      linux-pci@vger.kernel.org
13925 L:      linux-arm-kernel@lists.infradead.org
13926 S:      Maintained
13927 F:      drivers/pci/controller/dwc/*layerscape*
13928
13929 PCI DRIVER FOR GENERIC OF HOSTS
13930 M:      Will Deacon <will@kernel.org>
13931 L:      linux-pci@vger.kernel.org
13932 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13933 S:      Maintained
13934 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
13935 F:      drivers/pci/controller/pci-host-common.c
13936 F:      drivers/pci/controller/pci-host-generic.c
13937
13938 PCI DRIVER FOR IMX6
13939 M:      Richard Zhu <hongxing.zhu@nxp.com>
13940 M:      Lucas Stach <l.stach@pengutronix.de>
13941 L:      linux-pci@vger.kernel.org
13942 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13943 S:      Maintained
13944 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
13945 F:      drivers/pci/controller/dwc/*imx6*
13946
13947 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
13948 M:      Jonathan Derrick <jonathan.derrick@intel.com>
13949 L:      linux-pci@vger.kernel.org
13950 S:      Supported
13951 F:      drivers/pci/controller/vmd.c
13952
13953 PCI DRIVER FOR MICROSEMI SWITCHTEC
13954 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
13955 M:      Logan Gunthorpe <logang@deltatee.com>
13956 L:      linux-pci@vger.kernel.org
13957 S:      Maintained
13958 F:      Documentation/ABI/testing/sysfs-class-switchtec
13959 F:      Documentation/driver-api/switchtec.rst
13960 F:      drivers/ntb/hw/mscc/
13961 F:      drivers/pci/switch/switchtec*
13962 F:      include/linux/switchtec.h
13963 F:      include/uapi/linux/switchtec_ioctl.h
13964
13965 PCI DRIVER FOR MOBIVEIL PCIE IP
13966 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
13967 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13968 L:      linux-pci@vger.kernel.org
13969 S:      Supported
13970 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
13971 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
13972
13973 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
13974 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13975 L:      linux-pci@vger.kernel.org
13976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13977 S:      Maintained
13978 F:      drivers/pci/controller/*mvebu*
13979
13980 PCI DRIVER FOR NVIDIA TEGRA
13981 M:      Thierry Reding <thierry.reding@gmail.com>
13982 L:      linux-tegra@vger.kernel.org
13983 L:      linux-pci@vger.kernel.org
13984 S:      Supported
13985 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
13986 F:      drivers/pci/controller/pci-tegra.c
13987
13988 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
13989 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13990 L:      linux-pci@vger.kernel.org
13991 L:      linux-arm-kernel@lists.infradead.org
13992 S:      Maintained
13993 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
13994 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
13995
13996 PCI DRIVER FOR RENESAS R-CAR
13997 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
13998 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
13999 L:      linux-pci@vger.kernel.org
14000 L:      linux-renesas-soc@vger.kernel.org
14001 S:      Maintained
14002 F:      Documentation/devicetree/bindings/pci/*rcar*
14003 F:      drivers/pci/controller/*rcar*
14004
14005 PCI DRIVER FOR SAMSUNG EXYNOS
14006 M:      Jingoo Han <jingoohan1@gmail.com>
14007 L:      linux-pci@vger.kernel.org
14008 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14009 L:      linux-samsung-soc@vger.kernel.org
14010 S:      Maintained
14011 F:      drivers/pci/controller/dwc/pci-exynos.c
14012
14013 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14014 M:      Jingoo Han <jingoohan1@gmail.com>
14015 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
14016 L:      linux-pci@vger.kernel.org
14017 S:      Maintained
14018 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
14019 F:      drivers/pci/controller/dwc/*designware*
14020
14021 PCI DRIVER FOR TI DRA7XX/J721E
14022 M:      Kishon Vijay Abraham I <kishon@ti.com>
14023 L:      linux-omap@vger.kernel.org
14024 L:      linux-pci@vger.kernel.org
14025 L:      linux-arm-kernel@lists.infradead.org
14026 S:      Supported
14027 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
14028 F:      drivers/pci/controller/cadence/pci-j721e.c
14029 F:      drivers/pci/controller/dwc/pci-dra7xx.c
14030
14031 PCI DRIVER FOR TI KEYSTONE
14032 M:      Murali Karicheri <m-karicheri2@ti.com>
14033 L:      linux-pci@vger.kernel.org
14034 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14035 S:      Maintained
14036 F:      drivers/pci/controller/dwc/pci-keystone.c
14037
14038 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14039 M:      Linus Walleij <linus.walleij@linaro.org>
14040 L:      linux-pci@vger.kernel.org
14041 S:      Maintained
14042 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14043 F:      drivers/pci/controller/pci-v3-semi.c
14044
14045 PCI ENDPOINT SUBSYSTEM
14046 M:      Kishon Vijay Abraham I <kishon@ti.com>
14047 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14048 L:      linux-pci@vger.kernel.org
14049 S:      Supported
14050 F:      Documentation/PCI/endpoint/*
14051 F:      Documentation/misc-devices/pci-endpoint-test.rst
14052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
14053 F:      drivers/misc/pci_endpoint_test.c
14054 F:      drivers/pci/endpoint/
14055 F:      tools/pci/
14056
14057 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14058 M:      Russell Currey <ruscur@russell.cc>
14059 M:      Oliver O'Halloran <oohall@gmail.com>
14060 L:      linuxppc-dev@lists.ozlabs.org
14061 S:      Supported
14062 F:      Documentation/PCI/pci-error-recovery.rst
14063 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
14064 F:      arch/powerpc/include/*/eeh*.h
14065 F:      arch/powerpc/kernel/eeh*.c
14066 F:      arch/powerpc/platforms/*/eeh*.c
14067 F:      drivers/pci/pcie/aer.c
14068 F:      drivers/pci/pcie/dpc.c
14069 F:      drivers/pci/pcie/err.c
14070
14071 PCI ERROR RECOVERY
14072 M:      Linas Vepstas <linasvepstas@gmail.com>
14073 L:      linux-pci@vger.kernel.org
14074 S:      Supported
14075 F:      Documentation/PCI/pci-error-recovery.rst
14076
14077 PCI MSI DRIVER FOR ALTERA MSI IP
14078 M:      Ley Foon Tan <ley.foon.tan@intel.com>
14079 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
14080 L:      linux-pci@vger.kernel.org
14081 S:      Supported
14082 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14083 F:      drivers/pci/controller/pcie-altera-msi.c
14084
14085 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14086 M:      Toan Le <toan@os.amperecomputing.com>
14087 L:      linux-pci@vger.kernel.org
14088 L:      linux-arm-kernel@lists.infradead.org
14089 S:      Maintained
14090 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14091 F:      drivers/pci/controller/pci-xgene-msi.c
14092
14093 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14094 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14095 R:      Rob Herring <robh@kernel.org>
14096 L:      linux-pci@vger.kernel.org
14097 S:      Supported
14098 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
14100 F:      drivers/pci/controller/
14101
14102 PCI SUBSYSTEM
14103 M:      Bjorn Helgaas <bhelgaas@google.com>
14104 L:      linux-pci@vger.kernel.org
14105 S:      Supported
14106 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14108 F:      Documentation/PCI/
14109 F:      Documentation/devicetree/bindings/pci/
14110 F:      arch/x86/kernel/early-quirks.c
14111 F:      arch/x86/kernel/quirks.c
14112 F:      arch/x86/pci/
14113 F:      drivers/acpi/pci*
14114 F:      drivers/pci/
14115 F:      include/asm-generic/pci*
14116 F:      include/linux/of_pci.h
14117 F:      include/linux/pci*
14118 F:      include/uapi/linux/pci*
14119 F:      lib/pci*
14120
14121 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14122 M:      Jonathan Chocron <jonnyc@amazon.com>
14123 L:      linux-pci@vger.kernel.org
14124 S:      Maintained
14125 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
14126 F:      drivers/pci/controller/dwc/pcie-al.c
14127
14128 PCIE DRIVER FOR AMLOGIC MESON
14129 M:      Yue Wang <yue.wang@Amlogic.com>
14130 L:      linux-pci@vger.kernel.org
14131 L:      linux-amlogic@lists.infradead.org
14132 S:      Maintained
14133 F:      drivers/pci/controller/dwc/pci-meson.c
14134
14135 PCIE DRIVER FOR AXIS ARTPEC
14136 M:      Jesper Nilsson <jesper.nilsson@axis.com>
14137 L:      linux-arm-kernel@axis.com
14138 L:      linux-pci@vger.kernel.org
14139 S:      Maintained
14140 F:      Documentation/devicetree/bindings/pci/axis,artpec*
14141 F:      drivers/pci/controller/dwc/*artpec*
14142
14143 PCIE DRIVER FOR CAVIUM THUNDERX
14144 M:      Robert Richter <rric@kernel.org>
14145 L:      linux-pci@vger.kernel.org
14146 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14147 S:      Odd Fixes
14148 F:      drivers/pci/controller/pci-thunder-*
14149
14150 PCIE DRIVER FOR HISILICON
14151 M:      Zhou Wang <wangzhou1@hisilicon.com>
14152 L:      linux-pci@vger.kernel.org
14153 S:      Maintained
14154 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
14155 F:      drivers/pci/controller/dwc/pcie-hisi.c
14156
14157 PCIE DRIVER FOR HISILICON KIRIN
14158 M:      Xiaowei Song <songxiaowei@hisilicon.com>
14159 M:      Binghui Wang <wangbinghui@hisilicon.com>
14160 L:      linux-pci@vger.kernel.org
14161 S:      Maintained
14162 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
14163 F:      drivers/pci/controller/dwc/pcie-kirin.c
14164
14165 PCIE DRIVER FOR HISILICON STB
14166 M:      Shawn Guo <shawn.guo@linaro.org>
14167 L:      linux-pci@vger.kernel.org
14168 S:      Maintained
14169 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
14170 F:      drivers/pci/controller/dwc/pcie-histb.c
14171
14172 PCIE DRIVER FOR MEDIATEK
14173 M:      Ryder Lee <ryder.lee@mediatek.com>
14174 L:      linux-pci@vger.kernel.org
14175 L:      linux-mediatek@lists.infradead.org
14176 S:      Supported
14177 F:      Documentation/devicetree/bindings/pci/mediatek*
14178 F:      drivers/pci/controller/*mediatek*
14179
14180 PCIE DRIVER FOR MICROCHIP
14181 M:      Daire McNamara <daire.mcnamara@microchip.com>
14182 L:      linux-pci@vger.kernel.org
14183 S:      Supported
14184 F:      Documentation/devicetree/bindings/pci/microchip*
14185 F:      drivers/pci/controller/*microchip*
14186
14187 PCIE DRIVER FOR QUALCOMM MSM
14188 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
14189 L:      linux-pci@vger.kernel.org
14190 L:      linux-arm-msm@vger.kernel.org
14191 S:      Maintained
14192 F:      drivers/pci/controller/dwc/*qcom*
14193
14194 PCIE DRIVER FOR ROCKCHIP
14195 M:      Shawn Lin <shawn.lin@rock-chips.com>
14196 L:      linux-pci@vger.kernel.org
14197 L:      linux-rockchip@lists.infradead.org
14198 S:      Maintained
14199 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
14200 F:      drivers/pci/controller/pcie-rockchip*
14201
14202 PCIE DRIVER FOR SOCIONEXT UNIPHIER
14203 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
14204 L:      linux-pci@vger.kernel.org
14205 S:      Maintained
14206 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
14207 F:      drivers/pci/controller/dwc/pcie-uniphier*
14208
14209 PCIE DRIVER FOR ST SPEAR13XX
14210 M:      Pratyush Anand <pratyush.anand@gmail.com>
14211 L:      linux-pci@vger.kernel.org
14212 S:      Maintained
14213 F:      drivers/pci/controller/dwc/*spear*
14214
14215 PCMCIA SUBSYSTEM
14216 M:      Dominik Brodowski <linux@dominikbrodowski.net>
14217 S:      Odd Fixes
14218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
14219 F:      Documentation/pcmcia/
14220 F:      drivers/pcmcia/
14221 F:      include/pcmcia/
14222 F:      tools/pcmcia/
14223
14224 PCNET32 NETWORK DRIVER
14225 M:      Don Fry <pcnet32@frontier.com>
14226 L:      netdev@vger.kernel.org
14227 S:      Maintained
14228 F:      drivers/net/ethernet/amd/pcnet32.c
14229
14230 PCRYPT PARALLEL CRYPTO ENGINE
14231 M:      Steffen Klassert <steffen.klassert@secunet.com>
14232 L:      linux-crypto@vger.kernel.org
14233 S:      Maintained
14234 F:      crypto/pcrypt.c
14235 F:      include/crypto/pcrypt.h
14236
14237 PEAQ WMI HOTKEYS DRIVER
14238 M:      Hans de Goede <hdegoede@redhat.com>
14239 L:      platform-driver-x86@vger.kernel.org
14240 S:      Maintained
14241 F:      drivers/platform/x86/peaq-wmi.c
14242
14243 PENSANDO ETHERNET DRIVERS
14244 M:      Shannon Nelson <snelson@pensando.io>
14245 M:      drivers@pensando.io
14246 L:      netdev@vger.kernel.org
14247 S:      Supported
14248 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
14249 F:      drivers/net/ethernet/pensando/
14250
14251 PER-CPU MEMORY ALLOCATOR
14252 M:      Dennis Zhou <dennis@kernel.org>
14253 M:      Tejun Heo <tj@kernel.org>
14254 M:      Christoph Lameter <cl@linux.com>
14255 S:      Maintained
14256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
14257 F:      arch/*/include/asm/percpu.h
14258 F:      include/linux/percpu*.h
14259 F:      mm/percpu*.c
14260
14261 PER-TASK DELAY ACCOUNTING
14262 M:      Balbir Singh <bsingharora@gmail.com>
14263 S:      Maintained
14264 F:      include/linux/delayacct.h
14265 F:      kernel/delayacct.c
14266
14267 PERFORMANCE EVENTS SUBSYSTEM
14268 M:      Peter Zijlstra <peterz@infradead.org>
14269 M:      Ingo Molnar <mingo@redhat.com>
14270 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
14271 R:      Mark Rutland <mark.rutland@arm.com>
14272 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
14273 R:      Jiri Olsa <jolsa@redhat.com>
14274 R:      Namhyung Kim <namhyung@kernel.org>
14275 L:      linux-kernel@vger.kernel.org
14276 S:      Supported
14277 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14278 F:      arch/*/events/*
14279 F:      arch/*/events/*/*
14280 F:      arch/*/include/asm/perf_event.h
14281 F:      arch/*/kernel/*/*/perf_event*.c
14282 F:      arch/*/kernel/*/perf_event*.c
14283 F:      arch/*/kernel/perf_callchain.c
14284 F:      arch/*/kernel/perf_event*.c
14285 F:      include/linux/perf_event.h
14286 F:      include/uapi/linux/perf_event.h
14287 F:      kernel/events/*
14288 F:      tools/lib/perf/
14289 F:      tools/perf/
14290
14291 PERFORMANCE EVENTS TOOLING ARM64
14292 R:      John Garry <john.garry@huawei.com>
14293 R:      Will Deacon <will@kernel.org>
14294 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
14295 R:      Leo Yan <leo.yan@linaro.org>
14296 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14297 S:      Supported
14298 F:      tools/build/feature/test-libopencsd.c
14299 F:      tools/perf/arch/arm*/
14300 F:      tools/perf/pmu-events/arch/arm64/
14301 F:      tools/perf/util/arm-spe*
14302 F:      tools/perf/util/cs-etm*
14303
14304 PERSONALITY HANDLING
14305 M:      Christoph Hellwig <hch@infradead.org>
14306 L:      linux-abi-devel@lists.sourceforge.net
14307 S:      Maintained
14308 F:      include/linux/personality.h
14309 F:      include/uapi/linux/personality.h
14310
14311 PHOENIX RC FLIGHT CONTROLLER ADAPTER
14312 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
14313 L:      linux-input@vger.kernel.org
14314 S:      Maintained
14315 F:      Documentation/input/devices/pxrc.rst
14316 F:      drivers/input/joystick/pxrc.c
14317
14318 PHONET PROTOCOL
14319 M:      Remi Denis-Courmont <courmisch@gmail.com>
14320 S:      Supported
14321 F:      Documentation/networking/phonet.rst
14322 F:      include/linux/phonet.h
14323 F:      include/net/phonet/
14324 F:      include/uapi/linux/phonet.h
14325 F:      net/phonet/
14326
14327 PHRAM MTD DRIVER
14328 M:      Joern Engel <joern@lazybastard.org>
14329 L:      linux-mtd@lists.infradead.org
14330 S:      Maintained
14331 F:      drivers/mtd/devices/phram.c
14332
14333 PICOLCD HID DRIVER
14334 M:      Bruno Prémont <bonbons@linux-vserver.org>
14335 L:      linux-input@vger.kernel.org
14336 S:      Maintained
14337 F:      drivers/hid/hid-picolcd*
14338
14339 PIDFD API
14340 M:      Christian Brauner <christian@brauner.io>
14341 L:      linux-kernel@vger.kernel.org
14342 S:      Maintained
14343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14344 F:      samples/pidfd/
14345 F:      tools/testing/selftests/clone3/
14346 F:      tools/testing/selftests/pid_namespace/
14347 F:      tools/testing/selftests/pidfd/
14348 K:      (?i)pidfd
14349 K:      (?i)clone3
14350 K:      \b(clone_args|kernel_clone_args)\b
14351
14352 PIN CONTROL SUBSYSTEM
14353 M:      Linus Walleij <linus.walleij@linaro.org>
14354 L:      linux-gpio@vger.kernel.org
14355 S:      Maintained
14356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
14357 F:      Documentation/devicetree/bindings/pinctrl/
14358 F:      Documentation/driver-api/pinctl.rst
14359 F:      drivers/pinctrl/
14360 F:      include/linux/pinctrl/
14361
14362 PIN CONTROLLER - FREESCALE
14363 M:      Dong Aisheng <aisheng.dong@nxp.com>
14364 M:      Fabio Estevam <festevam@gmail.com>
14365 M:      Shawn Guo <shawnguo@kernel.org>
14366 M:      Stefan Agner <stefan@agner.ch>
14367 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
14368 L:      linux-gpio@vger.kernel.org
14369 S:      Maintained
14370 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
14371 F:      drivers/pinctrl/freescale/
14372
14373 PIN CONTROLLER - INTEL
14374 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
14375 M:      Andy Shevchenko <andy@kernel.org>
14376 S:      Maintained
14377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
14378 F:      drivers/pinctrl/intel/
14379
14380 PIN CONTROLLER - MEDIATEK
14381 M:      Sean Wang <sean.wang@kernel.org>
14382 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
14383 S:      Maintained
14384 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
14385 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
14386 F:      drivers/pinctrl/mediatek/
14387
14388 PIN CONTROLLER - MICROCHIP AT91
14389 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
14390 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14391 L:      linux-gpio@vger.kernel.org
14392 S:      Supported
14393 F:      drivers/gpio/gpio-sama5d2-piobu.c
14394 F:      drivers/pinctrl/pinctrl-at91*
14395
14396 PIN CONTROLLER - QUALCOMM
14397 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14398 L:      linux-arm-msm@vger.kernel.org
14399 S:      Maintained
14400 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14401 F:      drivers/pinctrl/qcom/
14402
14403 PIN CONTROLLER - RENESAS
14404 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14405 L:      linux-renesas-soc@vger.kernel.org
14406 S:      Supported
14407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14408 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
14409 F:      drivers/pinctrl/renesas/
14410
14411 PIN CONTROLLER - SAMSUNG
14412 M:      Tomasz Figa <tomasz.figa@gmail.com>
14413 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
14414 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14415 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14416 L:      linux-samsung-soc@vger.kernel.org
14417 S:      Maintained
14418 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
14419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14420 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14421 F:      drivers/pinctrl/samsung/
14422 F:      include/dt-bindings/pinctrl/samsung.h
14423
14424 PIN CONTROLLER - SINGLE
14425 M:      Tony Lindgren <tony@atomide.com>
14426 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
14427 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14428 L:      linux-omap@vger.kernel.org
14429 S:      Maintained
14430 F:      drivers/pinctrl/pinctrl-single.c
14431
14432 PIN CONTROLLER - ST SPEAR
14433 M:      Viresh Kumar <vireshk@kernel.org>
14434 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14435 S:      Maintained
14436 W:      http://www.st.com/spear
14437 F:      drivers/pinctrl/spear/
14438
14439 PISTACHIO SOC SUPPORT
14440 M:      James Hartley <james.hartley@sondrel.com>
14441 L:      linux-mips@vger.kernel.org
14442 S:      Odd Fixes
14443 F:      arch/mips/boot/dts/img/pistachio*
14444 F:      arch/mips/configs/pistachio*_defconfig
14445 F:      arch/mips/pistachio/
14446
14447 PKTCDVD DRIVER
14448 M:      linux-block@vger.kernel.org
14449 S:      Orphan
14450 F:      drivers/block/pktcdvd.c
14451 F:      include/linux/pktcdvd.h
14452 F:      include/uapi/linux/pktcdvd.h
14453
14454 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14455 M:      Tomasz Duszynski <tduszyns@gmail.com>
14456 S:      Maintained
14457 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14458 F:      drivers/iio/chemical/pms7003.c
14459
14460 PLDMFW LIBRARY
14461 M:      Jacob Keller <jacob.e.keller@intel.com>
14462 S:      Maintained
14463 F:      Documentation/driver-api/pldmfw/
14464 F:      include/linux/pldmfw.h
14465 F:      lib/pldmfw/
14466
14467 PLX DMA DRIVER
14468 M:      Logan Gunthorpe <logang@deltatee.com>
14469 S:      Maintained
14470 F:      drivers/dma/plx_dma.c
14471
14472 PM6764TR DRIVER
14473 M:      Charles Hsu     <hsu.yungteng@gmail.com>
14474 L:      linux-hwmon@vger.kernel.org
14475 S:      Maintained
14476 F:      Documentation/hwmon/pm6764tr.rst
14477 F:      drivers/hwmon/pmbus/pm6764tr.c
14478
14479 PM-GRAPH UTILITY
14480 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
14481 L:      linux-pm@vger.kernel.org
14482 S:      Supported
14483 W:      https://01.org/pm-graph
14484 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
14485 T:      git git://github.com/intel/pm-graph
14486 F:      tools/power/pm-graph
14487
14488 PMBUS HARDWARE MONITORING DRIVERS
14489 M:      Guenter Roeck <linux@roeck-us.net>
14490 L:      linux-hwmon@vger.kernel.org
14491 S:      Maintained
14492 W:      http://hwmon.wiki.kernel.org/
14493 W:      http://www.roeck-us.net/linux/drivers/
14494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
14495 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
14496 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
14497 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
14498 F:      Documentation/hwmon/adm1275.rst
14499 F:      Documentation/hwmon/ibm-cffps.rst
14500 F:      Documentation/hwmon/ir35221.rst
14501 F:      Documentation/hwmon/lm25066.rst
14502 F:      Documentation/hwmon/ltc2978.rst
14503 F:      Documentation/hwmon/ltc3815.rst
14504 F:      Documentation/hwmon/max16064.rst
14505 F:      Documentation/hwmon/max20751.rst
14506 F:      Documentation/hwmon/max31785.rst
14507 F:      Documentation/hwmon/max34440.rst
14508 F:      Documentation/hwmon/max8688.rst
14509 F:      Documentation/hwmon/pmbus-core.rst
14510 F:      Documentation/hwmon/pmbus.rst
14511 F:      Documentation/hwmon/tps40422.rst
14512 F:      Documentation/hwmon/ucd9000.rst
14513 F:      Documentation/hwmon/ucd9200.rst
14514 F:      Documentation/hwmon/zl6100.rst
14515 F:      drivers/hwmon/pmbus/
14516 F:      include/linux/pmbus.h
14517
14518 PMC SIERRA MaxRAID DRIVER
14519 L:      linux-scsi@vger.kernel.org
14520 S:      Orphan
14521 W:      http://www.pmc-sierra.com/
14522 F:      drivers/scsi/pmcraid.*
14523
14524 PMC SIERRA PM8001 DRIVER
14525 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14526 L:      linux-scsi@vger.kernel.org
14527 S:      Supported
14528 F:      drivers/scsi/pm8001/
14529
14530 PNI RM3100 IIO DRIVER
14531 M:      Song Qiang <songqiang1304521@gmail.com>
14532 L:      linux-iio@vger.kernel.org
14533 S:      Maintained
14534 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
14535 F:      drivers/iio/magnetometer/rm3100*
14536
14537 PNP SUPPORT
14538 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
14539 L:      linux-acpi@vger.kernel.org
14540 S:      Maintained
14541 F:      drivers/pnp/
14542 F:      include/linux/pnp.h
14543
14544 POSIX CLOCKS and TIMERS
14545 M:      Thomas Gleixner <tglx@linutronix.de>
14546 L:      linux-kernel@vger.kernel.org
14547 S:      Maintained
14548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
14549 F:      fs/timerfd.c
14550 F:      include/linux/time_namespace.h
14551 F:      include/linux/timer*
14552 F:      kernel/time/*timer*
14553 F:      kernel/time/namespace.c
14554
14555 POWER MANAGEMENT CORE
14556 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
14557 L:      linux-pm@vger.kernel.org
14558 S:      Supported
14559 B:      https://bugzilla.kernel.org
14560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14561 F:      drivers/base/power/
14562 F:      drivers/powercap/
14563 F:      include/linux/intel_rapl.h
14564 F:      include/linux/pm.h
14565 F:      include/linux/pm_*
14566 F:      include/linux/powercap.h
14567 F:      kernel/configs/nopm.config
14568
14569 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
14570 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
14571 L:      linux-pm@vger.kernel.org
14572 S:      Supported
14573 B:      https://bugzilla.kernel.org
14574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14575 F:      drivers/powercap/dtpm*
14576 F:      include/linux/dtpm.h
14577
14578 POWER STATE COORDINATION INTERFACE (PSCI)
14579 M:      Mark Rutland <mark.rutland@arm.com>
14580 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14581 L:      linux-arm-kernel@lists.infradead.org
14582 S:      Maintained
14583 F:      drivers/firmware/psci/
14584 F:      include/linux/psci.h
14585 F:      include/uapi/linux/psci.h
14586
14587 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
14588 M:      Sebastian Reichel <sre@kernel.org>
14589 L:      linux-pm@vger.kernel.org
14590 S:      Maintained
14591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
14592 F:      Documentation/ABI/testing/sysfs-class-power
14593 F:      Documentation/devicetree/bindings/power/supply/
14594 F:      drivers/power/supply/
14595 F:      include/linux/power_supply.h
14596
14597 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
14598 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
14599 L:      linuxppc-dev@lists.ozlabs.org
14600 S:      Maintained
14601 F:      drivers/char/powernv-op-panel.c
14602
14603 PPP OVER ATM (RFC 2364)
14604 M:      Mitchell Blank Jr <mitch@sfgoth.com>
14605 S:      Maintained
14606 F:      include/uapi/linux/atmppp.h
14607 F:      net/atm/pppoatm.c
14608
14609 PPP OVER ETHERNET
14610 M:      Michal Ostrowski <mostrows@earthlink.net>
14611 S:      Maintained
14612 F:      drivers/net/ppp/pppoe.c
14613 F:      drivers/net/ppp/pppox.c
14614
14615 PPP OVER L2TP
14616 M:      James Chapman <jchapman@katalix.com>
14617 S:      Maintained
14618 F:      include/linux/if_pppol2tp.h
14619 F:      include/uapi/linux/if_pppol2tp.h
14620 F:      net/l2tp/l2tp_ppp.c
14621
14622 PPP PROTOCOL DRIVERS AND COMPRESSORS
14623 M:      Paul Mackerras <paulus@samba.org>
14624 L:      linux-ppp@vger.kernel.org
14625 S:      Maintained
14626 F:      drivers/net/ppp/ppp_*
14627
14628 PPS SUPPORT
14629 M:      Rodolfo Giometti <giometti@enneenne.com>
14630 L:      linuxpps@ml.enneenne.com (subscribers-only)
14631 S:      Maintained
14632 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
14633 F:      Documentation/ABI/testing/sysfs-pps
14634 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
14635 F:      Documentation/driver-api/pps.rst
14636 F:      drivers/pps/
14637 F:      include/linux/pps*.h
14638 F:      include/uapi/linux/pps.h
14639
14640 PPTP DRIVER
14641 M:      Dmitry Kozlov <xeb@mail.ru>
14642 L:      netdev@vger.kernel.org
14643 S:      Maintained
14644 W:      http://sourceforge.net/projects/accel-pptp
14645 F:      drivers/net/ppp/pptp.c
14646
14647 PRESSURE STALL INFORMATION (PSI)
14648 M:      Johannes Weiner <hannes@cmpxchg.org>
14649 S:      Maintained
14650 F:      include/linux/psi*
14651 F:      kernel/sched/psi.c
14652
14653 PRINTK
14654 M:      Petr Mladek <pmladek@suse.com>
14655 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
14656 R:      Steven Rostedt <rostedt@goodmis.org>
14657 R:      John Ogness <john.ogness@linutronix.de>
14658 S:      Maintained
14659 F:      include/linux/printk.h
14660 F:      kernel/printk/
14661
14662 PRISM54 WIRELESS DRIVER
14663 M:      Luis Chamberlain <mcgrof@kernel.org>
14664 L:      linux-wireless@vger.kernel.org
14665 S:      Obsolete
14666 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14667 F:      drivers/net/wireless/intersil/prism54/
14668
14669 PROC FILESYSTEM
14670 R:      Alexey Dobriyan <adobriyan@gmail.com>
14671 L:      linux-kernel@vger.kernel.org
14672 L:      linux-fsdevel@vger.kernel.org
14673 S:      Maintained
14674 F:      Documentation/filesystems/proc.rst
14675 F:      fs/proc/
14676 F:      include/linux/proc_fs.h
14677 F:      tools/testing/selftests/proc/
14678
14679 PROC SYSCTL
14680 M:      Luis Chamberlain <mcgrof@kernel.org>
14681 M:      Kees Cook <keescook@chromium.org>
14682 M:      Iurii Zaikin <yzaikin@google.com>
14683 L:      linux-kernel@vger.kernel.org
14684 L:      linux-fsdevel@vger.kernel.org
14685 S:      Maintained
14686 F:      fs/proc/proc_sysctl.c
14687 F:      include/linux/sysctl.h
14688 F:      kernel/sysctl-test.c
14689 F:      kernel/sysctl.c
14690 F:      tools/testing/selftests/sysctl/
14691
14692 PS3 NETWORK SUPPORT
14693 M:      Geoff Levand <geoff@infradead.org>
14694 L:      netdev@vger.kernel.org
14695 L:      linuxppc-dev@lists.ozlabs.org
14696 S:      Maintained
14697 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
14698
14699 PS3 PLATFORM SUPPORT
14700 M:      Geoff Levand <geoff@infradead.org>
14701 L:      linuxppc-dev@lists.ozlabs.org
14702 S:      Maintained
14703 F:      arch/powerpc/boot/ps3*
14704 F:      arch/powerpc/include/asm/lv1call.h
14705 F:      arch/powerpc/include/asm/ps3*.h
14706 F:      arch/powerpc/platforms/ps3/
14707 F:      drivers/*/ps3*
14708 F:      drivers/ps3/
14709 F:      drivers/rtc/rtc-ps3.c
14710 F:      drivers/usb/host/*ps3.c
14711 F:      sound/ppc/snd_ps3*
14712
14713 PS3VRAM DRIVER
14714 M:      Jim Paris <jim@jtan.com>
14715 M:      Geoff Levand <geoff@infradead.org>
14716 L:      linuxppc-dev@lists.ozlabs.org
14717 S:      Maintained
14718 F:      drivers/block/ps3vram.c
14719
14720 PSAMPLE PACKET SAMPLING SUPPORT
14721 M:      Yotam Gigi <yotam.gi@gmail.com>
14722 S:      Maintained
14723 F:      include/net/psample.h
14724 F:      include/uapi/linux/psample.h
14725 F:      net/psample
14726
14727 PSTORE FILESYSTEM
14728 M:      Kees Cook <keescook@chromium.org>
14729 M:      Anton Vorontsov <anton@enomsg.org>
14730 M:      Colin Cross <ccross@android.com>
14731 M:      Tony Luck <tony.luck@intel.com>
14732 S:      Maintained
14733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
14734 F:      Documentation/admin-guide/ramoops.rst
14735 F:      Documentation/admin-guide/pstore-blk.rst
14736 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
14737 F:      drivers/acpi/apei/erst.c
14738 F:      drivers/firmware/efi/efi-pstore.c
14739 F:      fs/pstore/
14740 F:      include/linux/pstore*
14741 K:      \b(pstore|ramoops)
14742
14743 PTP HARDWARE CLOCK SUPPORT
14744 M:      Richard Cochran <richardcochran@gmail.com>
14745 L:      netdev@vger.kernel.org
14746 S:      Maintained
14747 W:      http://linuxptp.sourceforge.net/
14748 F:      Documentation/ABI/testing/sysfs-ptp
14749 F:      Documentation/driver-api/ptp.rst
14750 F:      drivers/net/phy/dp83640*
14751 F:      drivers/ptp/*
14752 F:      include/linux/ptp_cl*
14753
14754 PTRACE SUPPORT
14755 M:      Oleg Nesterov <oleg@redhat.com>
14756 S:      Maintained
14757 F:      arch/*/*/ptrace*.c
14758 F:      arch/*/include/asm/ptrace*.h
14759 F:      arch/*/ptrace*.c
14760 F:      include/asm-generic/syscall.h
14761 F:      include/linux/ptrace.h
14762 F:      include/linux/regset.h
14763 F:      include/linux/tracehook.h
14764 F:      include/uapi/linux/ptrace.h
14765 F:      include/uapi/linux/ptrace.h
14766 F:      kernel/ptrace.c
14767
14768 PULSE8-CEC DRIVER
14769 M:      Hans Verkuil <hverkuil@xs4all.nl>
14770 L:      linux-media@vger.kernel.org
14771 S:      Maintained
14772 T:      git git://linuxtv.org/media_tree.git
14773 F:      Documentation/admin-guide/media/pulse8-cec.rst
14774 F:      drivers/media/cec/usb/pulse8/
14775
14776 PVRUSB2 VIDEO4LINUX DRIVER
14777 M:      Mike Isely <isely@pobox.com>
14778 L:      pvrusb2@isely.net       (subscribers-only)
14779 L:      linux-media@vger.kernel.org
14780 S:      Maintained
14781 W:      http://www.isely.net/pvrusb2/
14782 T:      git git://linuxtv.org/media_tree.git
14783 F:      Documentation/driver-api/media/drivers/pvrusb2*
14784 F:      drivers/media/usb/pvrusb2/
14785
14786 PWC WEBCAM DRIVER
14787 M:      Hans Verkuil <hverkuil@xs4all.nl>
14788 L:      linux-media@vger.kernel.org
14789 S:      Odd Fixes
14790 T:      git git://linuxtv.org/media_tree.git
14791 F:      drivers/media/usb/pwc/*
14792 F:      include/trace/events/pwc.h
14793
14794 PWM FAN DRIVER
14795 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14796 L:      linux-hwmon@vger.kernel.org
14797 S:      Supported
14798 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
14799 F:      Documentation/hwmon/pwm-fan.rst
14800 F:      drivers/hwmon/pwm-fan.c
14801
14802 PWM IR Transmitter
14803 M:      Sean Young <sean@mess.org>
14804 L:      linux-media@vger.kernel.org
14805 S:      Maintained
14806 F:      drivers/media/rc/pwm-ir-tx.c
14807
14808 PWM SUBSYSTEM
14809 M:      Thierry Reding <thierry.reding@gmail.com>
14810 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
14811 M:      Lee Jones <lee.jones@linaro.org>
14812 L:      linux-pwm@vger.kernel.org
14813 S:      Maintained
14814 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
14815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
14816 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
14817 F:      Documentation/devicetree/bindings/pwm/
14818 F:      Documentation/driver-api/pwm.rst
14819 F:      drivers/gpio/gpio-mvebu.c
14820 F:      drivers/pwm/
14821 F:      drivers/video/backlight/pwm_bl.c
14822 F:      include/linux/pwm.h
14823 F:      include/linux/pwm_backlight.h
14824 K:      pwm_(config|apply_state|ops)
14825
14826 PXA GPIO DRIVER
14827 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14828 L:      linux-gpio@vger.kernel.org
14829 S:      Maintained
14830 F:      drivers/gpio/gpio-pxa.c
14831
14832 PXA MMCI DRIVER
14833 S:      Orphan
14834
14835 PXA RTC DRIVER
14836 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14837 L:      linux-rtc@vger.kernel.org
14838 S:      Maintained
14839
14840 PXA2xx/PXA3xx SUPPORT
14841 M:      Daniel Mack <daniel@zonque.org>
14842 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
14843 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14844 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14845 S:      Maintained
14846 T:      git git://github.com/hzhuang1/linux.git
14847 T:      git git://github.com/rjarzmik/linux.git
14848 F:      arch/arm/boot/dts/pxa*
14849 F:      arch/arm/mach-pxa/
14850 F:      drivers/dma/pxa*
14851 F:      drivers/pcmcia/pxa2xx*
14852 F:      drivers/pinctrl/pxa/
14853 F:      drivers/spi/spi-pxa2xx*
14854 F:      drivers/usb/gadget/udc/pxa2*
14855 F:      include/sound/pxa2xx-lib.h
14856 F:      sound/arm/pxa*
14857 F:      sound/soc/pxa/
14858
14859 QAT DRIVER
14860 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
14861 L:      qat-linux@intel.com
14862 S:      Supported
14863 F:      drivers/crypto/qat/
14864
14865 QCOM AUDIO (ASoC) DRIVERS
14866 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14867 M:      Banajit Goswami <bgoswami@codeaurora.org>
14868 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14869 S:      Supported
14870 F:      sound/soc/codecs/lpass-va-macro.c
14871 F:      sound/soc/codecs/lpass-wsa-macro.*
14872 F:      sound/soc/codecs/msm8916-wcd-analog.c
14873 F:      sound/soc/codecs/msm8916-wcd-digital.c
14874 F:      sound/soc/codecs/wcd9335.*
14875 F:      sound/soc/codecs/wcd934x.c
14876 F:      sound/soc/codecs/wcd-clsh-v2.*
14877 F:      sound/soc/codecs/wsa881x.c
14878 F:      sound/soc/qcom/
14879
14880 QCOM IPA DRIVER
14881 M:      Alex Elder <elder@kernel.org>
14882 L:      netdev@vger.kernel.org
14883 S:      Supported
14884 F:      drivers/net/ipa/
14885
14886 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
14887 M:      Gabriel Somlo <somlo@cmu.edu>
14888 M:      "Michael S. Tsirkin" <mst@redhat.com>
14889 L:      qemu-devel@nongnu.org
14890 S:      Maintained
14891 F:      drivers/firmware/qemu_fw_cfg.c
14892 F:      include/uapi/linux/qemu_fw_cfg.h
14893
14894 QIB DRIVER
14895 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14896 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14897 L:      linux-rdma@vger.kernel.org
14898 S:      Supported
14899 F:      drivers/infiniband/hw/qib/
14900
14901 QLOGIC QL41xxx FCOE DRIVER
14902 M:      Saurav Kashyap <skashyap@marvell.com>
14903 M:      Javed Hasan <jhasan@marvell.com>
14904 M:      GR-QLogic-Storage-Upstream@marvell.com
14905 L:      linux-scsi@vger.kernel.org
14906 S:      Supported
14907 F:      drivers/scsi/qedf/
14908
14909 QLOGIC QL41xxx ISCSI DRIVER
14910 M:      Nilesh Javali <njavali@marvell.com>
14911 M:      Manish Rangankar <mrangankar@marvell.com>
14912 M:      GR-QLogic-Storage-Upstream@marvell.com
14913 L:      linux-scsi@vger.kernel.org
14914 S:      Supported
14915 F:      drivers/scsi/qedi/
14916
14917 QLOGIC QL4xxx ETHERNET DRIVER
14918 M:      Ariel Elior <aelior@marvell.com>
14919 M:      GR-everest-linux-l2@marvell.com
14920 L:      netdev@vger.kernel.org
14921 S:      Supported
14922 F:      drivers/net/ethernet/qlogic/qed/
14923 F:      drivers/net/ethernet/qlogic/qede/
14924 F:      include/linux/qed/
14925
14926 QLOGIC QL4xxx RDMA DRIVER
14927 M:      Michal Kalderon <mkalderon@marvell.com>
14928 M:      Ariel Elior <aelior@marvell.com>
14929 L:      linux-rdma@vger.kernel.org
14930 S:      Supported
14931 F:      drivers/infiniband/hw/qedr/
14932 F:      include/uapi/rdma/qedr-abi.h
14933
14934 QLOGIC QLA1280 SCSI DRIVER
14935 M:      Michael Reed <mdr@sgi.com>
14936 L:      linux-scsi@vger.kernel.org
14937 S:      Maintained
14938 F:      drivers/scsi/qla1280.[ch]
14939
14940 QLOGIC QLA2XXX FC-SCSI DRIVER
14941 M:      Nilesh Javali <njavali@marvell.com>
14942 M:      GR-QLogic-Storage-Upstream@marvell.com
14943 L:      linux-scsi@vger.kernel.org
14944 S:      Supported
14945 F:      drivers/scsi/qla2xxx/
14946
14947 QLOGIC QLA3XXX NETWORK DRIVER
14948 M:      GR-Linux-NIC-Dev@marvell.com
14949 L:      netdev@vger.kernel.org
14950 S:      Supported
14951 F:      drivers/net/ethernet/qlogic/qla3xxx.*
14952
14953 QLOGIC QLA4XXX iSCSI DRIVER
14954 M:      Nilesh Javali <njavali@marvell.com>
14955 M:      Manish Rangankar <mrangankar@marvell.com>
14956 M:      GR-QLogic-Storage-Upstream@marvell.com
14957 L:      linux-scsi@vger.kernel.org
14958 S:      Supported
14959 F:      drivers/scsi/qla4xxx/
14960
14961 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
14962 M:      Shahed Shaikh <shshaikh@marvell.com>
14963 M:      Manish Chopra <manishc@marvell.com>
14964 M:      GR-Linux-NIC-Dev@marvell.com
14965 L:      netdev@vger.kernel.org
14966 S:      Supported
14967 F:      drivers/net/ethernet/qlogic/qlcnic/
14968
14969 QLOGIC QLGE 10Gb ETHERNET DRIVER
14970 M:      Manish Chopra <manishc@marvell.com>
14971 M:      GR-Linux-NIC-Dev@marvell.com
14972 M:      Coiby Xu <coiby.xu@gmail.com>
14973 L:      netdev@vger.kernel.org
14974 S:      Supported
14975 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
14976 F:      drivers/staging/qlge/
14977
14978 QM1D1B0004 MEDIA DRIVER
14979 M:      Akihiro Tsukada <tskd08@gmail.com>
14980 L:      linux-media@vger.kernel.org
14981 S:      Odd Fixes
14982 F:      drivers/media/tuners/qm1d1b0004*
14983
14984 QM1D1C0042 MEDIA DRIVER
14985 M:      Akihiro Tsukada <tskd08@gmail.com>
14986 L:      linux-media@vger.kernel.org
14987 S:      Odd Fixes
14988 F:      drivers/media/tuners/qm1d1c0042*
14989
14990 QNX4 FILESYSTEM
14991 M:      Anders Larsen <al@alarsen.net>
14992 S:      Maintained
14993 W:      http://www.alarsen.net/linux/qnx4fs/
14994 F:      fs/qnx4/
14995 F:      include/uapi/linux/qnx4_fs.h
14996 F:      include/uapi/linux/qnxtypes.h
14997
14998 QORIQ DPAA2 FSL-MC BUS DRIVER
14999 M:      Stuart Yoder <stuyoder@gmail.com>
15000 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
15001 L:      linux-kernel@vger.kernel.org
15002 S:      Maintained
15003 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
15004 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15005 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15006 F:      drivers/bus/fsl-mc/
15007 F:      include/uapi/linux/fsl_mc.h
15008
15009 QT1010 MEDIA DRIVER
15010 M:      Antti Palosaari <crope@iki.fi>
15011 L:      linux-media@vger.kernel.org
15012 S:      Maintained
15013 W:      https://linuxtv.org
15014 W:      http://palosaari.fi/linux/
15015 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15016 T:      git git://linuxtv.org/anttip/media_tree.git
15017 F:      drivers/media/tuners/qt1010*
15018
15019 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15020 M:      Kalle Valo <kvalo@codeaurora.org>
15021 L:      ath10k@lists.infradead.org
15022 S:      Supported
15023 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15025 F:      drivers/net/wireless/ath/ath10k/
15026
15027 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15028 M:      Kalle Valo <kvalo@codeaurora.org>
15029 L:      ath11k@lists.infradead.org
15030 S:      Supported
15031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15032 F:      drivers/net/wireless/ath/ath11k/
15033
15034 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15035 M:      ath9k-devel@qca.qualcomm.com
15036 L:      linux-wireless@vger.kernel.org
15037 S:      Supported
15038 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15039 F:      drivers/net/wireless/ath/ath9k/
15040
15041 QUALCOMM CAMERA SUBSYSTEM DRIVER
15042 M:      Robert Foss <robert.foss@linaro.org>
15043 M:      Todor Tomov <todor.too@gmail.com>
15044 L:      linux-media@vger.kernel.org
15045 S:      Maintained
15046 F:      Documentation/admin-guide/media/qcom_camss.rst
15047 F:      Documentation/devicetree/bindings/media/*camss*
15048 F:      drivers/media/platform/qcom/camss/
15049
15050 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15051 M:      Niklas Cassel <nks@flawful.org>
15052 L:      linux-pm@vger.kernel.org
15053 L:      linux-arm-msm@vger.kernel.org
15054 S:      Maintained
15055 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15056 F:      drivers/soc/qcom/cpr.c
15057
15058 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15059 M:      Ilia Lin <ilia.lin@kernel.org>
15060 L:      linux-pm@vger.kernel.org
15061 S:      Maintained
15062 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15063 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
15064
15065 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15066 M:      Timur Tabi <timur@kernel.org>
15067 L:      netdev@vger.kernel.org
15068 S:      Maintained
15069 F:      drivers/net/ethernet/qualcomm/emac/
15070
15071 QUALCOMM ETHQOS ETHERNET DRIVER
15072 M:      Vinod Koul <vkoul@kernel.org>
15073 L:      netdev@vger.kernel.org
15074 S:      Maintained
15075 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
15076 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15077
15078 QUALCOMM GENERIC INTERFACE I2C DRIVER
15079 M:      Akash Asthana <akashast@codeaurora.org>
15080 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
15081 L:      linux-i2c@vger.kernel.org
15082 L:      linux-arm-msm@vger.kernel.org
15083 S:      Supported
15084 F:      drivers/i2c/busses/i2c-qcom-geni.c
15085
15086 QUALCOMM HEXAGON ARCHITECTURE
15087 M:      Brian Cain <bcain@codeaurora.org>
15088 L:      linux-hexagon@vger.kernel.org
15089 S:      Supported
15090 F:      arch/hexagon/
15091
15092 QUALCOMM HIDMA DRIVER
15093 M:      Sinan Kaya <okaya@kernel.org>
15094 L:      linux-arm-kernel@lists.infradead.org
15095 L:      linux-arm-msm@vger.kernel.org
15096 L:      dmaengine@vger.kernel.org
15097 S:      Supported
15098 F:      drivers/dma/qcom/hidma*
15099
15100 QUALCOMM I2C CCI DRIVER
15101 M:      Loic Poulain <loic.poulain@linaro.org>
15102 M:      Robert Foss <robert.foss@linaro.org>
15103 L:      linux-i2c@vger.kernel.org
15104 L:      linux-arm-msm@vger.kernel.org
15105 S:      Maintained
15106 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
15107 F:      drivers/i2c/busses/i2c-qcom-cci.c
15108
15109 QUALCOMM IOMMU
15110 M:      Rob Clark <robdclark@gmail.com>
15111 L:      iommu@lists.linux-foundation.org
15112 L:      linux-arm-msm@vger.kernel.org
15113 S:      Maintained
15114 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
15115
15116 QUALCOMM IPC ROUTER (QRTR) DRIVER
15117 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15118 L:      linux-arm-msm@vger.kernel.org
15119 S:      Maintained
15120 F:      include/trace/events/qrtr.h
15121 F:      include/uapi/linux/qrtr.h
15122 F:      net/qrtr/
15123
15124 QUALCOMM IPCC MAILBOX DRIVER
15125 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15126 L:      linux-arm-msm@vger.kernel.org
15127 S:      Supported
15128 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
15129 F:      drivers/mailbox/qcom-ipcc.c
15130 F:      include/dt-bindings/mailbox/qcom-ipcc.h
15131
15132 QUALCOMM IPQ4019 USB PHY DRIVER
15133 M:      Robert Marko <robert.marko@sartura.hr>
15134 M:      Luka Perkov <luka.perkov@sartura.hr>
15135 L:      linux-arm-msm@vger.kernel.org
15136 S:      Maintained
15137 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
15138 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
15139
15140 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
15141 M:      Robert Marko <robert.marko@sartura.hr>
15142 M:      Luka Perkov <luka.perkov@sartura.hr>
15143 L:      linux-arm-msm@vger.kernel.org
15144 S:      Maintained
15145 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
15146 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
15147
15148 QUALCOMM RMNET DRIVER
15149 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
15150 M:      Sean Tranchetti <stranche@codeaurora.org>
15151 L:      netdev@vger.kernel.org
15152 S:      Maintained
15153 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
15154 F:      drivers/net/ethernet/qualcomm/rmnet/
15155 F:      include/linux/if_rmnet.h
15156
15157 QUALCOMM TSENS THERMAL DRIVER
15158 M:      Amit Kucheria <amitk@kernel.org>
15159 L:      linux-pm@vger.kernel.org
15160 L:      linux-arm-msm@vger.kernel.org
15161 S:      Maintained
15162 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
15163 F:      drivers/thermal/qcom/
15164
15165 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
15166 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
15167 L:      linux-media@vger.kernel.org
15168 L:      linux-arm-msm@vger.kernel.org
15169 S:      Maintained
15170 T:      git git://linuxtv.org/media_tree.git
15171 F:      Documentation/devicetree/bindings/media/*venus*
15172 F:      drivers/media/platform/qcom/venus/
15173
15174 QUALCOMM WCN36XX WIRELESS DRIVER
15175 M:      Kalle Valo <kvalo@codeaurora.org>
15176 L:      wcn36xx@lists.infradead.org
15177 S:      Supported
15178 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
15179 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
15180 F:      drivers/net/wireless/ath/wcn36xx/
15181
15182 QUANTENNA QTNFMAC WIRELESS DRIVER
15183 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
15184 R:      Sergey Matyukevich <geomatsi@gmail.com>
15185 L:      linux-wireless@vger.kernel.org
15186 S:      Maintained
15187 F:      drivers/net/wireless/quantenna
15188
15189 RADEON and AMDGPU DRM DRIVERS
15190 M:      Alex Deucher <alexander.deucher@amd.com>
15191 M:      Christian König <christian.koenig@amd.com>
15192 L:      amd-gfx@lists.freedesktop.org
15193 S:      Supported
15194 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
15195 F:      drivers/gpu/drm/amd/
15196 F:      drivers/gpu/drm/radeon/
15197 F:      include/uapi/drm/amdgpu_drm.h
15198 F:      include/uapi/drm/radeon_drm.h
15199
15200 RADEON FRAMEBUFFER DISPLAY DRIVER
15201 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
15202 L:      linux-fbdev@vger.kernel.org
15203 S:      Maintained
15204 F:      drivers/video/fbdev/aty/radeon*
15205 F:      include/uapi/linux/radeonfb.h
15206
15207 RADIOSHARK RADIO DRIVER
15208 M:      Hans Verkuil <hverkuil@xs4all.nl>
15209 L:      linux-media@vger.kernel.org
15210 S:      Maintained
15211 T:      git git://linuxtv.org/media_tree.git
15212 F:      drivers/media/radio/radio-shark.c
15213
15214 RADIOSHARK2 RADIO DRIVER
15215 M:      Hans Verkuil <hverkuil@xs4all.nl>
15216 L:      linux-media@vger.kernel.org
15217 S:      Maintained
15218 T:      git git://linuxtv.org/media_tree.git
15219 F:      drivers/media/radio/radio-shark2.c
15220 F:      drivers/media/radio/radio-tea5777.c
15221
15222 RADOS BLOCK DEVICE (RBD)
15223 M:      Ilya Dryomov <idryomov@gmail.com>
15224 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
15225 L:      ceph-devel@vger.kernel.org
15226 S:      Supported
15227 W:      http://ceph.com/
15228 T:      git git://github.com/ceph/ceph-client.git
15229 F:      Documentation/ABI/testing/sysfs-bus-rbd
15230 F:      drivers/block/rbd.c
15231 F:      drivers/block/rbd_types.h
15232
15233 RAGE128 FRAMEBUFFER DISPLAY DRIVER
15234 M:      Paul Mackerras <paulus@samba.org>
15235 L:      linux-fbdev@vger.kernel.org
15236 S:      Maintained
15237 F:      drivers/video/fbdev/aty/aty128fb.c
15238
15239 RAINSHADOW-CEC DRIVER
15240 M:      Hans Verkuil <hverkuil@xs4all.nl>
15241 L:      linux-media@vger.kernel.org
15242 S:      Maintained
15243 T:      git git://linuxtv.org/media_tree.git
15244 F:      drivers/media/cec/usb/rainshadow/
15245
15246 RALINK MIPS ARCHITECTURE
15247 M:      John Crispin <john@phrozen.org>
15248 L:      linux-mips@vger.kernel.org
15249 S:      Maintained
15250 F:      arch/mips/ralink
15251
15252 RALINK RT2X00 WIRELESS LAN DRIVER
15253 M:      Stanislaw Gruszka <stf_xl@wp.pl>
15254 M:      Helmut Schaa <helmut.schaa@googlemail.com>
15255 L:      linux-wireless@vger.kernel.org
15256 S:      Maintained
15257 F:      drivers/net/wireless/ralink/rt2x00/
15258
15259 RAMDISK RAM BLOCK DEVICE DRIVER
15260 M:      Jens Axboe <axboe@kernel.dk>
15261 S:      Maintained
15262 F:      Documentation/admin-guide/blockdev/ramdisk.rst
15263 F:      drivers/block/brd.c
15264
15265 RANCHU VIRTUAL BOARD FOR MIPS
15266 M:      Miodrag Dinic <miodrag.dinic@mips.com>
15267 L:      linux-mips@vger.kernel.org
15268 S:      Supported
15269 F:      arch/mips/configs/generic/board-ranchu.config
15270 F:      arch/mips/generic/board-ranchu.c
15271
15272 RANDOM NUMBER DRIVER
15273 M:      "Theodore Ts'o" <tytso@mit.edu>
15274 S:      Maintained
15275 F:      drivers/char/random.c
15276
15277 RAPIDIO SUBSYSTEM
15278 M:      Matt Porter <mporter@kernel.crashing.org>
15279 M:      Alexandre Bounine <alex.bou9@gmail.com>
15280 S:      Maintained
15281 F:      drivers/rapidio/
15282
15283 RAS INFRASTRUCTURE
15284 M:      Tony Luck <tony.luck@intel.com>
15285 M:      Borislav Petkov <bp@alien8.de>
15286 L:      linux-edac@vger.kernel.org
15287 S:      Maintained
15288 F:      Documentation/admin-guide/ras.rst
15289 F:      drivers/ras/
15290 F:      include/linux/ras.h
15291 F:      include/ras/ras_event.h
15292
15293 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
15294 L:      linux-wireless@vger.kernel.org
15295 S:      Orphan
15296 F:      drivers/net/wireless/ray*
15297
15298 RC-CORE / LIRC FRAMEWORK
15299 M:      Sean Young <sean@mess.org>
15300 L:      linux-media@vger.kernel.org
15301 S:      Maintained
15302 W:      http://linuxtv.org
15303 T:      git git://linuxtv.org/media_tree.git
15304 F:      Documentation/driver-api/media/rc-core.rst
15305 F:      Documentation/userspace-api/media/rc/
15306 F:      drivers/media/rc/
15307 F:      include/media/rc-map.h
15308 F:      include/media/rc-core.h
15309 F:      include/uapi/linux/lirc.h
15310
15311 RCMM REMOTE CONTROLS DECODER
15312 M:      Patrick Lerda <patrick9876@free.fr>
15313 S:      Maintained
15314 F:      drivers/media/rc/ir-rcmm-decoder.c
15315
15316 RCUTORTURE TEST FRAMEWORK
15317 M:      "Paul E. McKenney" <paulmck@kernel.org>
15318 M:      Josh Triplett <josh@joshtriplett.org>
15319 R:      Steven Rostedt <rostedt@goodmis.org>
15320 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15321 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15322 L:      rcu@vger.kernel.org
15323 S:      Supported
15324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15325 F:      tools/testing/selftests/rcutorture
15326
15327 RDACM20 Camera Sensor
15328 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15329 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15330 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15331 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15332 L:      linux-media@vger.kernel.org
15333 S:      Maintained
15334 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15335 F:      drivers/media/i2c/max9271.c
15336 F:      drivers/media/i2c/max9271.h
15337 F:      drivers/media/i2c/rdacm20.c
15338
15339 RDACM21 Camera Sensor
15340 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15341 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15342 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15343 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15344 L:      linux-media@vger.kernel.org
15345 S:      Maintained
15346 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15347 F:      drivers/media/i2c/max9271.c
15348 F:      drivers/media/i2c/max9271.h
15349 F:      drivers/media/i2c/rdacm21.c
15350
15351 RDC R-321X SoC
15352 M:      Florian Fainelli <florian@openwrt.org>
15353 S:      Maintained
15354
15355 RDC R6040 FAST ETHERNET DRIVER
15356 M:      Florian Fainelli <f.fainelli@gmail.com>
15357 L:      netdev@vger.kernel.org
15358 S:      Maintained
15359 F:      drivers/net/ethernet/rdc/r6040.c
15360
15361 RDMAVT - RDMA verbs software
15362 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15363 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15364 L:      linux-rdma@vger.kernel.org
15365 S:      Supported
15366 F:      drivers/infiniband/sw/rdmavt
15367
15368 RDS - RELIABLE DATAGRAM SOCKETS
15369 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
15370 L:      netdev@vger.kernel.org
15371 L:      linux-rdma@vger.kernel.org
15372 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
15373 S:      Supported
15374 W:      https://oss.oracle.com/projects/rds/
15375 F:      Documentation/networking/rds.rst
15376 F:      net/rds/
15377
15378 RDT - RESOURCE ALLOCATION
15379 M:      Fenghua Yu <fenghua.yu@intel.com>
15380 M:      Reinette Chatre <reinette.chatre@intel.com>
15381 L:      linux-kernel@vger.kernel.org
15382 S:      Supported
15383 F:      Documentation/x86/resctrl*
15384 F:      arch/x86/include/asm/resctrl.h
15385 F:      arch/x86/kernel/cpu/resctrl/
15386 F:      tools/testing/selftests/resctrl/
15387
15388 READ-COPY UPDATE (RCU)
15389 M:      "Paul E. McKenney" <paulmck@kernel.org>
15390 M:      Josh Triplett <josh@joshtriplett.org>
15391 R:      Steven Rostedt <rostedt@goodmis.org>
15392 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15393 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15394 R:      Joel Fernandes <joel@joelfernandes.org>
15395 L:      rcu@vger.kernel.org
15396 S:      Supported
15397 W:      http://www.rdrop.com/users/paulmck/RCU/
15398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15399 F:      Documentation/RCU/
15400 F:      include/linux/rcu*
15401 F:      kernel/rcu/
15402 X:      Documentation/RCU/torture.rst
15403 X:      include/linux/srcu*.h
15404 X:      kernel/rcu/srcu*.c
15405
15406 REAL TIME CLOCK (RTC) SUBSYSTEM
15407 M:      Alessandro Zummo <a.zummo@towertech.it>
15408 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
15409 L:      linux-rtc@vger.kernel.org
15410 S:      Maintained
15411 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
15412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
15413 F:      Documentation/admin-guide/rtc.rst
15414 F:      Documentation/devicetree/bindings/rtc/
15415 F:      drivers/rtc/
15416 F:      include/linux/platform_data/rtc-*
15417 F:      include/linux/rtc.h
15418 F:      include/linux/rtc/
15419 F:      include/uapi/linux/rtc.h
15420 F:      tools/testing/selftests/rtc/
15421
15422 REALTEK AUDIO CODECS
15423 M:      Oder Chiou <oder_chiou@realtek.com>
15424 S:      Maintained
15425 F:      include/sound/rt*.h
15426 F:      sound/soc/codecs/rt*
15427
15428 REALTEK RTL83xx SMI DSA ROUTER CHIPS
15429 M:      Linus Walleij <linus.walleij@linaro.org>
15430 S:      Maintained
15431 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
15432 F:      drivers/net/dsa/realtek-smi*
15433 F:      drivers/net/dsa/rtl83*
15434
15435 REALTEK WIRELESS DRIVER (rtlwifi family)
15436 M:      Ping-Ke Shih <pkshih@realtek.com>
15437 L:      linux-wireless@vger.kernel.org
15438 S:      Maintained
15439 W:      https://wireless.wiki.kernel.org/
15440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15441 F:      drivers/net/wireless/realtek/rtlwifi/
15442
15443 REALTEK WIRELESS DRIVER (rtw88)
15444 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
15445 L:      linux-wireless@vger.kernel.org
15446 S:      Maintained
15447 F:      drivers/net/wireless/realtek/rtw88/
15448
15449 REDPINE WIRELESS DRIVER
15450 M:      Amitkumar Karwar <amitkarwar@gmail.com>
15451 M:      Siva Rebbagondla <siva8118@gmail.com>
15452 L:      linux-wireless@vger.kernel.org
15453 S:      Maintained
15454 F:      drivers/net/wireless/rsi/
15455
15456 REGISTER MAP ABSTRACTION
15457 M:      Mark Brown <broonie@kernel.org>
15458 L:      linux-kernel@vger.kernel.org
15459 S:      Supported
15460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
15461 F:      Documentation/devicetree/bindings/regmap/
15462 F:      drivers/base/regmap/
15463 F:      include/linux/regmap.h
15464
15465 REISERFS FILE SYSTEM
15466 L:      reiserfs-devel@vger.kernel.org
15467 S:      Supported
15468 F:      fs/reiserfs/
15469
15470 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
15471 M:      Ohad Ben-Cohen <ohad@wizery.com>
15472 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15473 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
15474 L:      linux-remoteproc@vger.kernel.org
15475 S:      Maintained
15476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
15477 F:      Documentation/ABI/testing/sysfs-class-remoteproc
15478 F:      Documentation/devicetree/bindings/remoteproc/
15479 F:      Documentation/staging/remoteproc.rst
15480 F:      drivers/remoteproc/
15481 F:      include/linux/remoteproc.h
15482 F:      include/linux/remoteproc/
15483
15484 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
15485 M:      Ohad Ben-Cohen <ohad@wizery.com>
15486 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15487 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
15488 L:      linux-remoteproc@vger.kernel.org
15489 S:      Maintained
15490 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
15491 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
15492 F:      Documentation/staging/rpmsg.rst
15493 F:      drivers/rpmsg/
15494 F:      include/linux/rpmsg.h
15495 F:      include/linux/rpmsg/
15496 F:      include/uapi/linux/rpmsg.h
15497 F:      samples/rpmsg/
15498
15499 RENESAS CLOCK DRIVERS
15500 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15501 L:      linux-renesas-soc@vger.kernel.org
15502 S:      Supported
15503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
15504 F:      Documentation/devicetree/bindings/clock/renesas,*
15505 F:      drivers/clk/renesas/
15506
15507 RENESAS EMEV2 I2C DRIVER
15508 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15509 S:      Supported
15510 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
15511 F:      drivers/i2c/busses/i2c-emev2.c
15512
15513 RENESAS ETHERNET DRIVERS
15514 R:      Sergei Shtylyov <sergei.shtylyov@gmail.com>
15515 L:      netdev@vger.kernel.org
15516 L:      linux-renesas-soc@vger.kernel.org
15517 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
15518 F:      drivers/net/ethernet/renesas/
15519 F:      include/linux/sh_eth.h
15520
15521 RENESAS R-CAR GYROADC DRIVER
15522 M:      Marek Vasut <marek.vasut@gmail.com>
15523 L:      linux-iio@vger.kernel.org
15524 S:      Supported
15525 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
15526 F:      drivers/iio/adc/rcar-gyroadc.c
15527
15528 RENESAS R-CAR I2C DRIVERS
15529 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15530 S:      Supported
15531 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
15532 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
15533 F:      drivers/i2c/busses/i2c-rcar.c
15534 F:      drivers/i2c/busses/i2c-sh_mobile.c
15535
15536 RENESAS R-CAR THERMAL DRIVERS
15537 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
15538 L:      linux-renesas-soc@vger.kernel.org
15539 S:      Supported
15540 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
15541 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
15542 F:      drivers/thermal/rcar_gen3_thermal.c
15543 F:      drivers/thermal/rcar_thermal.c
15544
15545 RENESAS RIIC DRIVER
15546 M:      Chris Brandt <chris.brandt@renesas.com>
15547 S:      Supported
15548 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
15549 F:      drivers/i2c/busses/i2c-riic.c
15550
15551 RENESAS USB PHY DRIVER
15552 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15553 L:      linux-renesas-soc@vger.kernel.org
15554 S:      Maintained
15555 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
15556
15557 RESET CONTROLLER FRAMEWORK
15558 M:      Philipp Zabel <p.zabel@pengutronix.de>
15559 S:      Maintained
15560 T:      git git://git.pengutronix.de/git/pza/linux
15561 F:      Documentation/devicetree/bindings/reset/
15562 F:      Documentation/driver-api/reset.rst
15563 F:      drivers/reset/
15564 F:      include/dt-bindings/reset/
15565 F:      include/linux/reset-controller.h
15566 F:      include/linux/reset.h
15567 F:      include/linux/reset/
15568 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
15569
15570 RESTARTABLE SEQUENCES SUPPORT
15571 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15572 M:      Peter Zijlstra <peterz@infradead.org>
15573 M:      "Paul E. McKenney" <paulmck@kernel.org>
15574 M:      Boqun Feng <boqun.feng@gmail.com>
15575 L:      linux-kernel@vger.kernel.org
15576 S:      Supported
15577 F:      include/trace/events/rseq.h
15578 F:      include/uapi/linux/rseq.h
15579 F:      kernel/rseq.c
15580 F:      tools/testing/selftests/rseq/
15581
15582 RFKILL
15583 M:      Johannes Berg <johannes@sipsolutions.net>
15584 L:      linux-wireless@vger.kernel.org
15585 S:      Maintained
15586 W:      https://wireless.wiki.kernel.org/
15587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
15588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
15589 F:      Documentation/ABI/stable/sysfs-class-rfkill
15590 F:      Documentation/driver-api/rfkill.rst
15591 F:      include/linux/rfkill.h
15592 F:      include/uapi/linux/rfkill.h
15593 F:      net/rfkill/
15594
15595 RHASHTABLE
15596 M:      Thomas Graf <tgraf@suug.ch>
15597 M:      Herbert Xu <herbert@gondor.apana.org.au>
15598 L:      netdev@vger.kernel.org
15599 S:      Maintained
15600 F:      include/linux/rhashtable-types.h
15601 F:      include/linux/rhashtable.h
15602 F:      lib/rhashtable.c
15603 F:      lib/test_rhashtable.c
15604
15605 RICOH R5C592 MEMORYSTICK DRIVER
15606 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15607 S:      Maintained
15608 F:      drivers/memstick/host/r592.*
15609
15610 RICOH SMARTMEDIA/XD DRIVER
15611 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15612 S:      Maintained
15613 F:      drivers/mtd/nand/raw/r852.c
15614 F:      drivers/mtd/nand/raw/r852.h
15615
15616 RISC-V ARCHITECTURE
15617 M:      Paul Walmsley <paul.walmsley@sifive.com>
15618 M:      Palmer Dabbelt <palmer@dabbelt.com>
15619 M:      Albert Ou <aou@eecs.berkeley.edu>
15620 L:      linux-riscv@lists.infradead.org
15621 S:      Supported
15622 P:      Documentation/riscv/patch-acceptance.rst
15623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
15624 F:      arch/riscv/
15625 N:      riscv
15626 K:      riscv
15627
15628 RNBD BLOCK DRIVERS
15629 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
15630 M:      Jack Wang <jinpu.wang@ionos.com>
15631 L:      linux-block@vger.kernel.org
15632 S:      Maintained
15633 F:      drivers/block/rnbd/
15634
15635 ROCCAT DRIVERS
15636 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
15637 S:      Maintained
15638 W:      http://sourceforge.net/projects/roccat/
15639 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
15640 F:      drivers/hid/hid-roccat*
15641 F:      include/linux/hid-roccat*
15642
15643 ROCKCHIP ISP V1 DRIVER
15644 M:      Helen Koike <helen.koike@collabora.com>
15645 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
15646 L:      linux-media@vger.kernel.org
15647 L:      linux-rockchip@lists.infradead.org
15648 S:      Maintained
15649 F:      Documentation/admin-guide/media/rkisp1.rst
15650 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
15651 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
15652 F:      drivers/media/platform/rockchip/rkisp1
15653 F:      include/uapi/linux/rkisp1-config.h
15654
15655 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
15656 M:      Jacob Chen <jacob-chen@iotwrt.com>
15657 M:      Ezequiel Garcia <ezequiel@collabora.com>
15658 L:      linux-media@vger.kernel.org
15659 L:      linux-rockchip@lists.infradead.org
15660 S:      Maintained
15661 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
15662 F:      drivers/media/platform/rockchip/rga/
15663
15664 ROCKCHIP VIDEO DECODER DRIVER
15665 M:      Ezequiel Garcia <ezequiel@collabora.com>
15666 L:      linux-media@vger.kernel.org
15667 L:      linux-rockchip@lists.infradead.org
15668 S:      Maintained
15669 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
15670 F:      drivers/staging/media/rkvdec/
15671
15672 ROCKER DRIVER
15673 M:      Jiri Pirko <jiri@resnulli.us>
15674 L:      netdev@vger.kernel.org
15675 S:      Supported
15676 F:      drivers/net/ethernet/rocker/
15677
15678 ROCKETPORT EXPRESS/INFINITY DRIVER
15679 M:      Kevin Cernekee <cernekee@gmail.com>
15680 L:      linux-serial@vger.kernel.org
15681 S:      Odd Fixes
15682 F:      drivers/tty/serial/rp2.*
15683
15684 ROHM BD99954 CHARGER IC
15685 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15686 L:      linux-power@fi.rohmeurope.com
15687 S:      Supported
15688 F:      drivers/power/supply/bd99954-charger.c
15689 F:      drivers/power/supply/bd99954-charger.h
15690
15691 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
15692 M:      Tomasz Duszynski <tduszyns@gmail.com>
15693 S:      Maintained
15694 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
15695 F:      drivers/iio/light/bh1750.c
15696
15697 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
15698 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15699 L:      linux-kernel@vger.kernel.org
15700 L:      linux-renesas-soc@vger.kernel.org
15701 S:      Supported
15702 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
15703 F:      drivers/gpio/gpio-bd9571mwv.c
15704 F:      drivers/mfd/bd9571mwv.c
15705 F:      drivers/regulator/bd9571mwv-regulator.c
15706 F:      include/linux/mfd/bd9571mwv.h
15707
15708 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
15709 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15710 L:      linux-power@fi.rohmeurope.com
15711 S:      Supported
15712 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
15713 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
15714 F:      drivers/clk/clk-bd718x7.c
15715 F:      drivers/gpio/gpio-bd70528.c
15716 F:      drivers/gpio/gpio-bd71815.c
15717 F:      drivers/gpio/gpio-bd71828.c
15718 F:      drivers/mfd/rohm-bd70528.c
15719 F:      drivers/mfd/rohm-bd71828.c
15720 F:      drivers/mfd/rohm-bd718x7.c
15721 F:      drivers/mfd/rohm-bd9576.c
15722 F:      drivers/power/supply/bd70528-charger.c
15723 F:      drivers/regulator/bd70528-regulator.c
15724 F:      drivers/regulator/bd71815-regulator.c
15725 F:      drivers/regulator/bd71828-regulator.c
15726 F:      drivers/regulator/bd718x7-regulator.c
15727 F:      drivers/regulator/bd9576-regulator.c
15728 F:      drivers/regulator/rohm-regulator.c
15729 F:      drivers/rtc/rtc-bd70528.c
15730 F:      drivers/watchdog/bd70528_wdt.c
15731 F:      drivers/watchdog/bd9576_wdt.c
15732 F:      include/linux/mfd/rohm-bd70528.h
15733 F:      include/linux/mfd/rohm-bd71815.h
15734 F:      include/linux/mfd/rohm-bd71828.h
15735 F:      include/linux/mfd/rohm-bd718x7.h
15736 F:      include/linux/mfd/rohm-bd957x.h
15737 F:      include/linux/mfd/rohm-generic.h
15738 F:      include/linux/mfd/rohm-shared.h
15739
15740 ROSE NETWORK LAYER
15741 M:      Ralf Baechle <ralf@linux-mips.org>
15742 L:      linux-hams@vger.kernel.org
15743 S:      Maintained
15744 W:      http://www.linux-ax25.org/
15745 F:      include/net/rose.h
15746 F:      include/uapi/linux/rose.h
15747 F:      net/rose/
15748
15749 ROTATION DRIVER FOR ALLWINNER A83T
15750 M:      Jernej Skrabec <jernej.skrabec@siol.net>
15751 L:      linux-media@vger.kernel.org
15752 S:      Maintained
15753 T:      git git://linuxtv.org/media_tree.git
15754 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
15755 F:      drivers/media/platform/sunxi/sun8i-rotate/
15756
15757 RTL2830 MEDIA DRIVER
15758 M:      Antti Palosaari <crope@iki.fi>
15759 L:      linux-media@vger.kernel.org
15760 S:      Maintained
15761 W:      https://linuxtv.org
15762 W:      http://palosaari.fi/linux/
15763 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15764 T:      git git://linuxtv.org/anttip/media_tree.git
15765 F:      drivers/media/dvb-frontends/rtl2830*
15766
15767 RTL2832 MEDIA DRIVER
15768 M:      Antti Palosaari <crope@iki.fi>
15769 L:      linux-media@vger.kernel.org
15770 S:      Maintained
15771 W:      https://linuxtv.org
15772 W:      http://palosaari.fi/linux/
15773 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15774 T:      git git://linuxtv.org/anttip/media_tree.git
15775 F:      drivers/media/dvb-frontends/rtl2832*
15776
15777 RTL2832_SDR MEDIA DRIVER
15778 M:      Antti Palosaari <crope@iki.fi>
15779 L:      linux-media@vger.kernel.org
15780 S:      Maintained
15781 W:      https://linuxtv.org
15782 W:      http://palosaari.fi/linux/
15783 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15784 T:      git git://linuxtv.org/anttip/media_tree.git
15785 F:      drivers/media/dvb-frontends/rtl2832_sdr*
15786
15787 RTL8180 WIRELESS DRIVER
15788 L:      linux-wireless@vger.kernel.org
15789 S:      Orphan
15790 W:      https://wireless.wiki.kernel.org/
15791 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15792 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
15793
15794 RTL8187 WIRELESS DRIVER
15795 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
15796 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
15797 M:      Larry Finger <Larry.Finger@lwfinger.net>
15798 L:      linux-wireless@vger.kernel.org
15799 S:      Maintained
15800 W:      https://wireless.wiki.kernel.org/
15801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15802 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
15803
15804 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
15805 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
15806 L:      linux-wireless@vger.kernel.org
15807 S:      Maintained
15808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
15809 F:      drivers/net/wireless/realtek/rtl8xxxu/
15810
15811 RTRS TRANSPORT DRIVERS
15812 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
15813 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15814 L:      linux-rdma@vger.kernel.org
15815 S:      Maintained
15816 F:      drivers/infiniband/ulp/rtrs/
15817
15818 RXRPC SOCKETS (AF_RXRPC)
15819 M:      David Howells <dhowells@redhat.com>
15820 L:      linux-afs@lists.infradead.org
15821 S:      Supported
15822 W:      https://www.infradead.org/~dhowells/kafs/
15823 F:      Documentation/networking/rxrpc.rst
15824 F:      include/keys/rxrpc-type.h
15825 F:      include/net/af_rxrpc.h
15826 F:      include/trace/events/rxrpc.h
15827 F:      include/uapi/linux/rxrpc.h
15828 F:      net/rxrpc/
15829
15830 S3 SAVAGE FRAMEBUFFER DRIVER
15831 M:      Antonino Daplas <adaplas@gmail.com>
15832 L:      linux-fbdev@vger.kernel.org
15833 S:      Maintained
15834 F:      drivers/video/fbdev/savage/
15835
15836 S390
15837 M:      Heiko Carstens <hca@linux.ibm.com>
15838 M:      Vasily Gorbik <gor@linux.ibm.com>
15839 M:      Christian Borntraeger <borntraeger@de.ibm.com>
15840 L:      linux-s390@vger.kernel.org
15841 S:      Supported
15842 W:      http://www.ibm.com/developerworks/linux/linux390/
15843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
15844 F:      Documentation/driver-api/s390-drivers.rst
15845 F:      Documentation/s390/
15846 F:      arch/s390/
15847 F:      drivers/s390/
15848
15849 S390 COMMON I/O LAYER
15850 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
15851 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
15852 L:      linux-s390@vger.kernel.org
15853 S:      Supported
15854 W:      http://www.ibm.com/developerworks/linux/linux390/
15855 F:      drivers/s390/cio/
15856
15857 S390 DASD DRIVER
15858 M:      Stefan Haberland <sth@linux.ibm.com>
15859 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
15860 L:      linux-s390@vger.kernel.org
15861 S:      Supported
15862 W:      http://www.ibm.com/developerworks/linux/linux390/
15863 F:      block/partitions/ibm.c
15864 F:      drivers/s390/block/dasd*
15865 F:      include/linux/dasd_mod.h
15866
15867 S390 IOMMU (PCI)
15868 M:      Matthew Rosato <mjrosato@linux.ibm.com>
15869 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
15870 L:      linux-s390@vger.kernel.org
15871 S:      Supported
15872 W:      http://www.ibm.com/developerworks/linux/linux390/
15873 F:      drivers/iommu/s390-iommu.c
15874
15875 S390 IUCV NETWORK LAYER
15876 M:      Julian Wiedmann <jwi@linux.ibm.com>
15877 M:      Karsten Graul <kgraul@linux.ibm.com>
15878 L:      linux-s390@vger.kernel.org
15879 S:      Supported
15880 W:      http://www.ibm.com/developerworks/linux/linux390/
15881 F:      drivers/s390/net/*iucv*
15882 F:      include/net/iucv/
15883 F:      net/iucv/
15884
15885 S390 NETWORK DRIVERS
15886 M:      Julian Wiedmann <jwi@linux.ibm.com>
15887 M:      Karsten Graul <kgraul@linux.ibm.com>
15888 L:      linux-s390@vger.kernel.org
15889 S:      Supported
15890 W:      http://www.ibm.com/developerworks/linux/linux390/
15891 F:      drivers/s390/net/
15892
15893 S390 PCI SUBSYSTEM
15894 M:      Niklas Schnelle <schnelle@linux.ibm.com>
15895 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
15896 L:      linux-s390@vger.kernel.org
15897 S:      Supported
15898 W:      http://www.ibm.com/developerworks/linux/linux390/
15899 F:      arch/s390/pci/
15900 F:      drivers/pci/hotplug/s390_pci_hpc.c
15901 F:      Documentation/s390/pci.rst
15902
15903 S390 VFIO AP DRIVER
15904 M:      Tony Krowiak <akrowiak@linux.ibm.com>
15905 M:      Halil Pasic <pasic@linux.ibm.com>
15906 M:      Jason Herne <jjherne@linux.ibm.com>
15907 L:      linux-s390@vger.kernel.org
15908 S:      Supported
15909 W:      http://www.ibm.com/developerworks/linux/linux390/
15910 F:      Documentation/s390/vfio-ap.rst
15911 F:      drivers/s390/crypto/vfio_ap_drv.c
15912 F:      drivers/s390/crypto/vfio_ap_ops.c
15913 F:      drivers/s390/crypto/vfio_ap_private.h
15914
15915 S390 VFIO-CCW DRIVER
15916 M:      Cornelia Huck <cohuck@redhat.com>
15917 M:      Eric Farman <farman@linux.ibm.com>
15918 M:      Matthew Rosato <mjrosato@linux.ibm.com>
15919 R:      Halil Pasic <pasic@linux.ibm.com>
15920 L:      linux-s390@vger.kernel.org
15921 L:      kvm@vger.kernel.org
15922 S:      Supported
15923 F:      Documentation/s390/vfio-ccw.rst
15924 F:      drivers/s390/cio/vfio_ccw*
15925 F:      include/uapi/linux/vfio_ccw.h
15926
15927 S390 VFIO-PCI DRIVER
15928 M:      Matthew Rosato <mjrosato@linux.ibm.com>
15929 M:      Eric Farman <farman@linux.ibm.com>
15930 L:      linux-s390@vger.kernel.org
15931 L:      kvm@vger.kernel.org
15932 S:      Supported
15933 F:      drivers/vfio/pci/vfio_pci_zdev.c
15934 F:      include/uapi/linux/vfio_zdev.h
15935
15936 S390 ZCRYPT DRIVER
15937 M:      Harald Freudenberger <freude@linux.ibm.com>
15938 L:      linux-s390@vger.kernel.org
15939 S:      Supported
15940 W:      http://www.ibm.com/developerworks/linux/linux390/
15941 F:      drivers/s390/crypto/
15942
15943 S390 ZFCP DRIVER
15944 M:      Steffen Maier <maier@linux.ibm.com>
15945 M:      Benjamin Block <bblock@linux.ibm.com>
15946 L:      linux-s390@vger.kernel.org
15947 S:      Supported
15948 W:      http://www.ibm.com/developerworks/linux/linux390/
15949 F:      drivers/s390/scsi/zfcp_*
15950
15951 S3C ADC BATTERY DRIVER
15952 M:      Krzysztof Kozlowski <krzk@kernel.org>
15953 L:      linux-samsung-soc@vger.kernel.org
15954 S:      Odd Fixes
15955 F:      drivers/power/supply/s3c_adc_battery.c
15956 F:      include/linux/s3c_adc_battery.h
15957
15958 S3C24XX SD/MMC Driver
15959 M:      Ben Dooks <ben-linux@fluff.org>
15960 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15961 S:      Supported
15962 F:      drivers/mmc/host/s3cmci.*
15963
15964 SAA6588 RDS RECEIVER DRIVER
15965 M:      Hans Verkuil <hverkuil@xs4all.nl>
15966 L:      linux-media@vger.kernel.org
15967 S:      Odd Fixes
15968 W:      https://linuxtv.org
15969 T:      git git://linuxtv.org/media_tree.git
15970 F:      drivers/media/i2c/saa6588*
15971
15972 SAA7134 VIDEO4LINUX DRIVER
15973 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15974 L:      linux-media@vger.kernel.org
15975 S:      Odd fixes
15976 W:      https://linuxtv.org
15977 T:      git git://linuxtv.org/media_tree.git
15978 F:      Documentation/driver-api/media/drivers/saa7134*
15979 F:      drivers/media/pci/saa7134/
15980
15981 SAA7146 VIDEO4LINUX-2 DRIVER
15982 M:      Hans Verkuil <hverkuil@xs4all.nl>
15983 L:      linux-media@vger.kernel.org
15984 S:      Maintained
15985 T:      git git://linuxtv.org/media_tree.git
15986 F:      drivers/media/common/saa7146/
15987 F:      drivers/media/pci/saa7146/
15988 F:      include/media/drv-intf/saa7146*
15989
15990 SAFESETID SECURITY MODULE
15991 M:      Micah Morton <mortonm@chromium.org>
15992 S:      Supported
15993 F:      Documentation/admin-guide/LSM/SafeSetID.rst
15994 F:      security/safesetid/
15995
15996 SAMSUNG AUDIO (ASoC) DRIVERS
15997 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
15998 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15999 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16000 S:      Supported
16001 F:      Documentation/devicetree/bindings/sound/samsung*
16002 F:      sound/soc/samsung/
16003
16004 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
16005 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16006 L:      linux-crypto@vger.kernel.org
16007 L:      linux-samsung-soc@vger.kernel.org
16008 S:      Maintained
16009 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
16010 F:      drivers/crypto/exynos-rng.c
16011
16012 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
16013 M:      Łukasz Stelmach <l.stelmach@samsung.com>
16014 L:      linux-samsung-soc@vger.kernel.org
16015 S:      Maintained
16016 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
16017 F:      drivers/char/hw_random/exynos-trng.c
16018
16019 SAMSUNG FRAMEBUFFER DRIVER
16020 M:      Jingoo Han <jingoohan1@gmail.com>
16021 L:      linux-fbdev@vger.kernel.org
16022 S:      Maintained
16023 F:      drivers/video/fbdev/s3c-fb.c
16024
16025 SAMSUNG INTERCONNECT DRIVERS
16026 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16027 M:      Artur Świgoń <a.swigon@samsung.com>
16028 L:      linux-pm@vger.kernel.org
16029 L:      linux-samsung-soc@vger.kernel.org
16030 S:      Supported
16031 F:      drivers/interconnect/samsung/
16032
16033 SAMSUNG LAPTOP DRIVER
16034 M:      Corentin Chary <corentin.chary@gmail.com>
16035 L:      platform-driver-x86@vger.kernel.org
16036 S:      Maintained
16037 F:      drivers/platform/x86/samsung-laptop.c
16038
16039 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
16040 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16041 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16042 L:      linux-kernel@vger.kernel.org
16043 L:      linux-samsung-soc@vger.kernel.org
16044 S:      Supported
16045 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
16046 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
16047 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
16048 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
16049 F:      drivers/clk/clk-s2mps11.c
16050 F:      drivers/mfd/sec*.c
16051 F:      drivers/regulator/s2m*.c
16052 F:      drivers/regulator/s5m*.c
16053 F:      drivers/rtc/rtc-s5m.c
16054 F:      include/linux/mfd/samsung/
16055
16056 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
16057 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
16058 L:      linux-media@vger.kernel.org
16059 L:      linux-samsung-soc@vger.kernel.org
16060 S:      Maintained
16061 F:      drivers/media/platform/s3c-camif/
16062 F:      include/media/drv-intf/s3c_camif.h
16063
16064 SAMSUNG S3FWRN5 NFC DRIVER
16065 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16066 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
16067 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
16068 S:      Maintained
16069 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
16070 F:      drivers/nfc/s3fwrn5
16071
16072 SAMSUNG S5C73M3 CAMERA DRIVER
16073 M:      Andrzej Hajda <a.hajda@samsung.com>
16074 L:      linux-media@vger.kernel.org
16075 S:      Supported
16076 F:      drivers/media/i2c/s5c73m3/*
16077
16078 SAMSUNG S5K5BAF CAMERA DRIVER
16079 M:      Andrzej Hajda <a.hajda@samsung.com>
16080 L:      linux-media@vger.kernel.org
16081 S:      Supported
16082 F:      drivers/media/i2c/s5k5baf.c
16083
16084 SAMSUNG S5P Security SubSystem (SSS) DRIVER
16085 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16086 M:      Vladimir Zapolskiy <vz@mleia.com>
16087 L:      linux-crypto@vger.kernel.org
16088 L:      linux-samsung-soc@vger.kernel.org
16089 S:      Maintained
16090 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
16091 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
16092 F:      drivers/crypto/s5p-sss.c
16093
16094 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
16095 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16096 L:      linux-media@vger.kernel.org
16097 S:      Supported
16098 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
16099 F:      drivers/media/platform/exynos4-is/
16100
16101 SAMSUNG SOC CLOCK DRIVERS
16102 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16103 M:      Tomasz Figa <tomasz.figa@gmail.com>
16104 M:      Chanwoo Choi <cw00.choi@samsung.com>
16105 L:      linux-samsung-soc@vger.kernel.org
16106 S:      Supported
16107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
16108 F:      Documentation/devicetree/bindings/clock/exynos*.txt
16109 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
16110 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
16111 F:      drivers/clk/samsung/
16112 F:      include/dt-bindings/clock/exynos*.h
16113 F:      include/linux/clk/samsung.h
16114 F:      include/linux/platform_data/clk-s3c2410.h
16115
16116 SAMSUNG SPI DRIVERS
16117 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16118 M:      Andi Shyti <andi@etezian.org>
16119 L:      linux-spi@vger.kernel.org
16120 L:      linux-samsung-soc@vger.kernel.org
16121 S:      Maintained
16122 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
16123 F:      drivers/spi/spi-s3c*
16124 F:      include/linux/platform_data/spi-s3c64xx.h
16125 F:      include/linux/spi/s3c24xx-fiq.h
16126
16127 SAMSUNG SXGBE DRIVERS
16128 M:      Byungho An <bh74.an@samsung.com>
16129 L:      netdev@vger.kernel.org
16130 S:      Supported
16131 F:      drivers/net/ethernet/samsung/sxgbe/
16132
16133 SAMSUNG THERMAL DRIVER
16134 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16135 L:      linux-pm@vger.kernel.org
16136 L:      linux-samsung-soc@vger.kernel.org
16137 S:      Supported
16138 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
16139 F:      drivers/thermal/samsung/
16140
16141 SAMSUNG USB2 PHY DRIVER
16142 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16143 L:      linux-kernel@vger.kernel.org
16144 S:      Supported
16145 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
16146 F:      Documentation/driver-api/phy/samsung-usb2.rst
16147 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
16148 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
16149 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
16150 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
16151 F:      drivers/phy/samsung/phy-samsung-usb2.c
16152 F:      drivers/phy/samsung/phy-samsung-usb2.h
16153
16154 SC1200 WDT DRIVER
16155 M:      Zwane Mwaikambo <zwanem@gmail.com>
16156 S:      Maintained
16157 F:      drivers/watchdog/sc1200wdt.c
16158
16159 SCHEDULER
16160 M:      Ingo Molnar <mingo@redhat.com>
16161 M:      Peter Zijlstra <peterz@infradead.org>
16162 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
16163 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
16164 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
16165 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
16166 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
16167 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
16168 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
16169 L:      linux-kernel@vger.kernel.org
16170 S:      Maintained
16171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
16172 F:      include/linux/preempt.h
16173 F:      include/linux/sched.h
16174 F:      include/linux/wait.h
16175 F:      include/uapi/linux/sched.h
16176 F:      kernel/sched/
16177
16178 SCR24X CHIP CARD INTERFACE DRIVER
16179 M:      Lubomir Rintel <lkundrak@v3.sk>
16180 S:      Supported
16181 F:      drivers/char/pcmcia/scr24x_cs.c
16182
16183 SCSI CDROM DRIVER
16184 M:      Jens Axboe <axboe@kernel.dk>
16185 L:      linux-scsi@vger.kernel.org
16186 S:      Maintained
16187 W:      http://www.kernel.dk
16188 F:      drivers/scsi/sr*
16189
16190 SCSI RDMA PROTOCOL (SRP) INITIATOR
16191 M:      Bart Van Assche <bvanassche@acm.org>
16192 L:      linux-rdma@vger.kernel.org
16193 S:      Supported
16194 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16195 F:      drivers/infiniband/ulp/srp/
16196 F:      include/scsi/srp.h
16197
16198 SCSI RDMA PROTOCOL (SRP) TARGET
16199 M:      Bart Van Assche <bvanassche@acm.org>
16200 L:      linux-rdma@vger.kernel.org
16201 L:      target-devel@vger.kernel.org
16202 S:      Supported
16203 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16204 F:      drivers/infiniband/ulp/srpt/
16205
16206 SCSI SG DRIVER
16207 M:      Doug Gilbert <dgilbert@interlog.com>
16208 L:      linux-scsi@vger.kernel.org
16209 S:      Maintained
16210 W:      http://sg.danny.cz/sg
16211 F:      Documentation/scsi/scsi-generic.rst
16212 F:      drivers/scsi/sg.c
16213 F:      include/scsi/sg.h
16214
16215 SCSI SUBSYSTEM
16216 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
16217 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16218 L:      linux-scsi@vger.kernel.org
16219 S:      Maintained
16220 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
16221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
16222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16223 F:      Documentation/devicetree/bindings/scsi/
16224 F:      drivers/scsi/
16225 F:      include/scsi/
16226
16227 SCSI TAPE DRIVER
16228 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
16229 L:      linux-scsi@vger.kernel.org
16230 S:      Maintained
16231 F:      Documentation/scsi/st.rst
16232 F:      drivers/scsi/st.*
16233 F:      drivers/scsi/st_*.h
16234
16235 SCSI TARGET CORE USER DRIVER
16236 M:      Bodo Stroesser <bostroesser@gmail.com>
16237 L:      linux-scsi@vger.kernel.org
16238 L:      target-devel@vger.kernel.org
16239 S:      Supported
16240 F:      Documentation/target/tcmu-design.rst
16241 F:      drivers/target/target_core_user.c
16242 F:      include/uapi/linux/target_core_user.h
16243
16244 SCSI TARGET SUBSYSTEM
16245 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16246 L:      linux-scsi@vger.kernel.org
16247 L:      target-devel@vger.kernel.org
16248 S:      Supported
16249 W:      http://www.linux-iscsi.org
16250 Q:      https://patchwork.kernel.org/project/target-devel/list/
16251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16252 F:      Documentation/target/
16253 F:      drivers/target/
16254 F:      include/target/
16255
16256 SCTP PROTOCOL
16257 M:      Vlad Yasevich <vyasevich@gmail.com>
16258 M:      Neil Horman <nhorman@tuxdriver.com>
16259 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
16260 L:      linux-sctp@vger.kernel.org
16261 S:      Maintained
16262 W:      http://lksctp.sourceforge.net
16263 F:      Documentation/networking/sctp.rst
16264 F:      include/linux/sctp.h
16265 F:      include/net/sctp/
16266 F:      include/uapi/linux/sctp.h
16267 F:      net/sctp/
16268
16269 SCx200 CPU SUPPORT
16270 M:      Jim Cromie <jim.cromie@gmail.com>
16271 S:      Odd Fixes
16272 F:      Documentation/i2c/busses/scx200_acb.rst
16273 F:      arch/x86/platform/scx200/
16274 F:      drivers/i2c/busses/scx200*
16275 F:      drivers/mtd/maps/scx200_docflash.c
16276 F:      drivers/watchdog/scx200_wdt.c
16277 F:      include/linux/scx200.h
16278
16279 SCx200 GPIO DRIVER
16280 M:      Jim Cromie <jim.cromie@gmail.com>
16281 S:      Maintained
16282 F:      drivers/char/scx200_gpio.c
16283 F:      include/linux/scx200_gpio.h
16284
16285 SCx200 HRT CLOCKSOURCE DRIVER
16286 M:      Jim Cromie <jim.cromie@gmail.com>
16287 S:      Maintained
16288 F:      drivers/clocksource/scx200_hrt.c
16289
16290 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
16291 M:      Sascha Sommer <saschasommer@freenet.de>
16292 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
16293 S:      Maintained
16294 F:      drivers/mmc/host/sdricoh_cs.c
16295
16296 SECO BOARDS CEC DRIVER
16297 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
16298 S:      Maintained
16299 F:      drivers/media/cec/platform/seco/seco-cec.c
16300 F:      drivers/media/cec/platform/seco/seco-cec.h
16301
16302 SECURE COMPUTING
16303 M:      Kees Cook <keescook@chromium.org>
16304 R:      Andy Lutomirski <luto@amacapital.net>
16305 R:      Will Drewry <wad@chromium.org>
16306 S:      Supported
16307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
16308 F:      Documentation/userspace-api/seccomp_filter.rst
16309 F:      include/linux/seccomp.h
16310 F:      include/uapi/linux/seccomp.h
16311 F:      kernel/seccomp.c
16312 F:      tools/testing/selftests/kselftest_harness.h
16313 F:      tools/testing/selftests/seccomp/*
16314 K:      \bsecure_computing
16315 K:      \bTIF_SECCOMP\b
16316
16317 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
16318 M:      Al Cooper <alcooperx@gmail.com>
16319 L:      linux-mmc@vger.kernel.org
16320 L:      bcm-kernel-feedback-list@broadcom.com
16321 S:      Maintained
16322 F:      drivers/mmc/host/sdhci-brcmstb*
16323
16324 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
16325 M:      Adrian Hunter <adrian.hunter@intel.com>
16326 L:      linux-mmc@vger.kernel.org
16327 S:      Maintained
16328 F:      drivers/mmc/host/sdhci*
16329 F:      include/linux/mmc/sdhci*
16330
16331 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
16332 M:      Eugen Hristev <eugen.hristev@microchip.com>
16333 L:      linux-mmc@vger.kernel.org
16334 S:      Supported
16335 F:      drivers/mmc/host/sdhci-of-at91.c
16336
16337 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
16338 M:      Ben Dooks <ben-linux@fluff.org>
16339 M:      Jaehoon Chung <jh80.chung@samsung.com>
16340 L:      linux-mmc@vger.kernel.org
16341 S:      Maintained
16342 F:      drivers/mmc/host/sdhci-s3c*
16343
16344 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
16345 M:      Viresh Kumar <vireshk@kernel.org>
16346 L:      linux-mmc@vger.kernel.org
16347 S:      Maintained
16348 F:      drivers/mmc/host/sdhci-spear.c
16349
16350 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
16351 M:      Kishon Vijay Abraham I <kishon@ti.com>
16352 L:      linux-mmc@vger.kernel.org
16353 S:      Maintained
16354 F:      drivers/mmc/host/sdhci-omap.c
16355
16356 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
16357 M:      Jonathan Derrick <jonathan.derrick@intel.com>
16358 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
16359 L:      linux-block@vger.kernel.org
16360 S:      Supported
16361 F:      block/opal_proto.h
16362 F:      block/sed*
16363 F:      include/linux/sed*
16364 F:      include/uapi/linux/sed*
16365
16366 SECURITY CONTACT
16367 M:      Security Officers <security@kernel.org>
16368 S:      Supported
16369 F:      Documentation/admin-guide/security-bugs.rst
16370
16371 SECURITY SUBSYSTEM
16372 M:      James Morris <jmorris@namei.org>
16373 M:      "Serge E. Hallyn" <serge@hallyn.com>
16374 L:      linux-security-module@vger.kernel.org (suggested Cc:)
16375 S:      Supported
16376 W:      http://kernsec.org/
16377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
16378 F:      security/
16379 X:      security/selinux/
16380
16381 SELINUX SECURITY MODULE
16382 M:      Paul Moore <paul@paul-moore.com>
16383 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
16384 M:      Eric Paris <eparis@parisplace.org>
16385 L:      selinux@vger.kernel.org
16386 S:      Supported
16387 W:      https://selinuxproject.org
16388 W:      https://github.com/SELinuxProject
16389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
16390 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
16391 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
16392 F:      Documentation/admin-guide/LSM/SELinux.rst
16393 F:      include/trace/events/avc.h
16394 F:      include/uapi/linux/selinux_netlink.h
16395 F:      scripts/selinux/
16396 F:      security/selinux/
16397
16398 SENSABLE PHANTOM
16399 M:      Jiri Slaby <jirislaby@kernel.org>
16400 S:      Maintained
16401 F:      drivers/misc/phantom.c
16402 F:      include/uapi/linux/phantom.h
16403
16404 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
16405 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
16406 S:      Maintained
16407 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
16408 F:      drivers/iio/chemical/scd30.h
16409 F:      drivers/iio/chemical/scd30_core.c
16410 F:      drivers/iio/chemical/scd30_i2c.c
16411 F:      drivers/iio/chemical/scd30_serial.c
16412
16413 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
16414 M:      Tomasz Duszynski <tduszyns@gmail.com>
16415 S:      Maintained
16416 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
16417 F:      drivers/iio/chemical/sps30.c
16418
16419 SERIAL DEVICE BUS
16420 M:      Rob Herring <robh@kernel.org>
16421 L:      linux-serial@vger.kernel.org
16422 S:      Maintained
16423 F:      Documentation/devicetree/bindings/serial/serial.yaml
16424 F:      drivers/tty/serdev/
16425 F:      include/linux/serdev.h
16426
16427 SERIAL DRIVERS
16428 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16429 L:      linux-serial@vger.kernel.org
16430 S:      Maintained
16431 F:      Documentation/devicetree/bindings/serial/
16432 F:      drivers/tty/serial/
16433
16434 SERIAL IR RECEIVER
16435 M:      Sean Young <sean@mess.org>
16436 L:      linux-media@vger.kernel.org
16437 S:      Maintained
16438 F:      drivers/media/rc/serial_ir.c
16439
16440 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
16441 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16442 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16443 S:      Maintained
16444 F:      Documentation/devicetree/bindings/slimbus/
16445 F:      drivers/slimbus/
16446 F:      include/linux/slimbus.h
16447
16448 SFC NETWORK DRIVER
16449 M:      Edward Cree <ecree.xilinx@gmail.com>
16450 M:      Martin Habets <habetsm.xilinx@gmail.com>
16451 L:      netdev@vger.kernel.org
16452 S:      Supported
16453 F:      drivers/net/ethernet/sfc/
16454
16455 SFF/SFP/SFP+ MODULE SUPPORT
16456 M:      Russell King <linux@armlinux.org.uk>
16457 L:      netdev@vger.kernel.org
16458 S:      Maintained
16459 F:      drivers/net/phy/phylink.c
16460 F:      drivers/net/phy/sfp*
16461 F:      include/linux/mdio/mdio-i2c.h
16462 F:      include/linux/phylink.h
16463 F:      include/linux/sfp.h
16464 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)
16465
16466 SGI GRU DRIVER
16467 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
16468 S:      Maintained
16469 F:      drivers/misc/sgi-gru/
16470
16471 SGI XP/XPC/XPNET DRIVER
16472 M:      Robin Holt <robinmholt@gmail.com>
16473 M:      Steve Wahl <steve.wahl@hpe.com>
16474 R:      Mike Travis <mike.travis@hpe.com>
16475 S:      Maintained
16476 F:      drivers/misc/sgi-xp/
16477
16478 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
16479 M:      Karsten Graul <kgraul@linux.ibm.com>
16480 L:      linux-s390@vger.kernel.org
16481 S:      Supported
16482 W:      http://www.ibm.com/developerworks/linux/linux390/
16483 F:      net/smc/
16484
16485 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
16486 M:      Linus Walleij <linus.walleij@linaro.org>
16487 L:      linux-iio@vger.kernel.org
16488 S:      Maintained
16489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
16490 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
16491 F:      drivers/iio/light/gp2ap002.c
16492
16493 SHARP RJ54N1CB0C SENSOR DRIVER
16494 M:      Jacopo Mondi <jacopo@jmondi.org>
16495 L:      linux-media@vger.kernel.org
16496 S:      Odd fixes
16497 T:      git git://linuxtv.org/media_tree.git
16498 F:      drivers/media/i2c/rj54n1cb0c.c
16499 F:      include/media/i2c/rj54n1cb0c.h
16500
16501 SH_VOU V4L2 OUTPUT DRIVER
16502 L:      linux-media@vger.kernel.org
16503 S:      Orphan
16504 F:      drivers/media/platform/sh_vou.c
16505 F:      include/media/drv-intf/sh_vou.h
16506
16507 SI2157 MEDIA DRIVER
16508 M:      Antti Palosaari <crope@iki.fi>
16509 L:      linux-media@vger.kernel.org
16510 S:      Maintained
16511 W:      https://linuxtv.org
16512 W:      http://palosaari.fi/linux/
16513 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16514 T:      git git://linuxtv.org/anttip/media_tree.git
16515 F:      drivers/media/tuners/si2157*
16516
16517 SI2165 MEDIA DRIVER
16518 M:      Matthias Schwarzott <zzam@gentoo.org>
16519 L:      linux-media@vger.kernel.org
16520 S:      Maintained
16521 W:      https://linuxtv.org
16522 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16523 F:      drivers/media/dvb-frontends/si2165*
16524
16525 SI2168 MEDIA DRIVER
16526 M:      Antti Palosaari <crope@iki.fi>
16527 L:      linux-media@vger.kernel.org
16528 S:      Maintained
16529 W:      https://linuxtv.org
16530 W:      http://palosaari.fi/linux/
16531 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16532 T:      git git://linuxtv.org/anttip/media_tree.git
16533 F:      drivers/media/dvb-frontends/si2168*
16534
16535 SI470X FM RADIO RECEIVER I2C DRIVER
16536 M:      Hans Verkuil <hverkuil@xs4all.nl>
16537 L:      linux-media@vger.kernel.org
16538 S:      Odd Fixes
16539 W:      https://linuxtv.org
16540 T:      git git://linuxtv.org/media_tree.git
16541 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
16542
16543 SI470X FM RADIO RECEIVER USB DRIVER
16544 M:      Hans Verkuil <hverkuil@xs4all.nl>
16545 L:      linux-media@vger.kernel.org
16546 S:      Maintained
16547 W:      https://linuxtv.org
16548 T:      git git://linuxtv.org/media_tree.git
16549 F:      drivers/media/radio/si470x/radio-si470x-common.c
16550 F:      drivers/media/radio/si470x/radio-si470x-usb.c
16551 F:      drivers/media/radio/si470x/radio-si470x.h
16552
16553 SI4713 FM RADIO TRANSMITTER I2C DRIVER
16554 M:      Eduardo Valentin <edubezval@gmail.com>
16555 L:      linux-media@vger.kernel.org
16556 S:      Odd Fixes
16557 W:      https://linuxtv.org
16558 T:      git git://linuxtv.org/media_tree.git
16559 F:      drivers/media/radio/si4713/si4713.?
16560
16561 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
16562 M:      Eduardo Valentin <edubezval@gmail.com>
16563 L:      linux-media@vger.kernel.org
16564 S:      Odd Fixes
16565 W:      https://linuxtv.org
16566 T:      git git://linuxtv.org/media_tree.git
16567 F:      drivers/media/radio/si4713/radio-platform-si4713.c
16568
16569 SI4713 FM RADIO TRANSMITTER USB DRIVER
16570 M:      Hans Verkuil <hverkuil@xs4all.nl>
16571 L:      linux-media@vger.kernel.org
16572 S:      Maintained
16573 W:      https://linuxtv.org
16574 T:      git git://linuxtv.org/media_tree.git
16575 F:      drivers/media/radio/si4713/radio-usb-si4713.c
16576
16577 SIANO DVB DRIVER
16578 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16579 L:      linux-media@vger.kernel.org
16580 S:      Odd fixes
16581 W:      https://linuxtv.org
16582 T:      git git://linuxtv.org/media_tree.git
16583 F:      drivers/media/common/siano/
16584 F:      drivers/media/mmc/siano/
16585 F:      drivers/media/usb/siano/
16586 F:      drivers/media/usb/siano/
16587
16588 SIFIVE DRIVERS
16589 M:      Palmer Dabbelt <palmer@dabbelt.com>
16590 M:      Paul Walmsley <paul.walmsley@sifive.com>
16591 L:      linux-riscv@lists.infradead.org
16592 S:      Supported
16593 T:      git git://github.com/sifive/riscv-linux.git
16594 N:      sifive
16595 K:      [^@]sifive
16596
16597 SIFIVE FU540 SYSTEM-ON-CHIP
16598 M:      Paul Walmsley <paul.walmsley@sifive.com>
16599 M:      Palmer Dabbelt <palmer@dabbelt.com>
16600 L:      linux-riscv@lists.infradead.org
16601 S:      Supported
16602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
16603 N:      fu540
16604 K:      fu540
16605
16606 SIFIVE PDMA DRIVER
16607 M:      Green Wan <green.wan@sifive.com>
16608 S:      Maintained
16609 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
16610 F:      drivers/dma/sf-pdma/
16611
16612 SILEAD TOUCHSCREEN DRIVER
16613 M:      Hans de Goede <hdegoede@redhat.com>
16614 L:      linux-input@vger.kernel.org
16615 L:      platform-driver-x86@vger.kernel.org
16616 S:      Maintained
16617 F:      drivers/input/touchscreen/silead.c
16618 F:      drivers/platform/x86/touchscreen_dmi.c
16619
16620 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
16621 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
16622 S:      Supported
16623 F:      drivers/staging/wfx/
16624
16625 SILICON MOTION SM712 FRAME BUFFER DRIVER
16626 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16627 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16628 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16629 L:      linux-fbdev@vger.kernel.org
16630 S:      Maintained
16631 F:      Documentation/fb/sm712fb.rst
16632 F:      drivers/video/fbdev/sm712*
16633
16634 SILVACO I3C DUAL-ROLE MASTER
16635 M:      Miquel Raynal <miquel.raynal@bootlin.com>
16636 M:      Conor Culhane <conor.culhane@silvaco.com>
16637 L:      linux-i3c@lists.infradead.org
16638 S:      Maintained
16639 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
16640 F:      drivers/i3c/master/svc-i3c-master.c
16641
16642 SIMPLEFB FB DRIVER
16643 M:      Hans de Goede <hdegoede@redhat.com>
16644 L:      linux-fbdev@vger.kernel.org
16645 S:      Maintained
16646 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
16647 F:      drivers/video/fbdev/simplefb.c
16648 F:      include/linux/platform_data/simplefb.h
16649
16650 SIMTEC EB110ATX (Chalice CATS)
16651 M:      Simtec Linux Team <linux@simtec.co.uk>
16652 S:      Supported
16653 W:      http://www.simtec.co.uk/products/EB110ATX/
16654
16655 SIMTEC EB2410ITX (BAST)
16656 M:      Simtec Linux Team <linux@simtec.co.uk>
16657 S:      Supported
16658 W:      http://www.simtec.co.uk/products/EB2410ITX/
16659 F:      arch/arm/mach-s3c/bast-ide.c
16660 F:      arch/arm/mach-s3c/bast-irq.c
16661 F:      arch/arm/mach-s3c/mach-bast.c
16662
16663 SIOX
16664 M:      Thorsten Scherer <t.scherer@eckelmann.de>
16665 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16666 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
16667 S:      Supported
16668 F:      drivers/gpio/gpio-siox.c
16669 F:      drivers/siox/*
16670 F:      include/trace/events/siox.h
16671
16672 SIPHASH PRF ROUTINES
16673 M:      Jason A. Donenfeld <Jason@zx2c4.com>
16674 S:      Maintained
16675 F:      include/linux/siphash.h
16676 F:      lib/siphash.c
16677 F:      lib/test_siphash.c
16678
16679 SIS 190 ETHERNET DRIVER
16680 M:      Francois Romieu <romieu@fr.zoreil.com>
16681 L:      netdev@vger.kernel.org
16682 S:      Maintained
16683 F:      drivers/net/ethernet/sis/sis190.c
16684
16685 SIS 900/7016 FAST ETHERNET DRIVER
16686 M:      Daniele Venzano <venza@brownhat.org>
16687 L:      netdev@vger.kernel.org
16688 S:      Maintained
16689 W:      http://www.brownhat.org/sis900.html
16690 F:      drivers/net/ethernet/sis/sis900.*
16691
16692 SIS FRAMEBUFFER DRIVER
16693 M:      Thomas Winischhofer <thomas@winischhofer.net>
16694 S:      Maintained
16695 W:      http://www.winischhofer.net/linuxsisvga.shtml
16696 F:      Documentation/fb/sisfb.rst
16697 F:      drivers/video/fbdev/sis/
16698 F:      include/video/sisfb.h
16699
16700 SIS I2C TOUCHSCREEN DRIVER
16701 M:      Mika Penttilä <mika.penttila@nextfour.com>
16702 L:      linux-input@vger.kernel.org
16703 S:      Maintained
16704 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
16705 F:      drivers/input/touchscreen/sis_i2c.c
16706
16707 SIS USB2VGA DRIVER
16708 M:      Thomas Winischhofer <thomas@winischhofer.net>
16709 S:      Maintained
16710 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
16711 F:      drivers/usb/misc/sisusbvga/
16712
16713 SLAB ALLOCATOR
16714 M:      Christoph Lameter <cl@linux.com>
16715 M:      Pekka Enberg <penberg@kernel.org>
16716 M:      David Rientjes <rientjes@google.com>
16717 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
16718 M:      Andrew Morton <akpm@linux-foundation.org>
16719 M:      Vlastimil Babka <vbabka@suse.cz>
16720 L:      linux-mm@kvack.org
16721 S:      Maintained
16722 F:      include/linux/sl?b*.h
16723 F:      mm/sl?b*
16724
16725 SLEEPABLE READ-COPY UPDATE (SRCU)
16726 M:      Lai Jiangshan <jiangshanlai@gmail.com>
16727 M:      "Paul E. McKenney" <paulmck@kernel.org>
16728 M:      Josh Triplett <josh@joshtriplett.org>
16729 R:      Steven Rostedt <rostedt@goodmis.org>
16730 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16731 L:      rcu@vger.kernel.org
16732 S:      Supported
16733 W:      http://www.rdrop.com/users/paulmck/RCU/
16734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16735 F:      include/linux/srcu*.h
16736 F:      kernel/rcu/srcu*.c
16737
16738 SMACK SECURITY MODULE
16739 M:      Casey Schaufler <casey@schaufler-ca.com>
16740 L:      linux-security-module@vger.kernel.org
16741 S:      Maintained
16742 W:      http://schaufler-ca.com
16743 T:      git git://github.com/cschaufler/smack-next
16744 F:      Documentation/admin-guide/LSM/Smack.rst
16745 F:      security/smack/
16746
16747 SMC91x ETHERNET DRIVER
16748 M:      Nicolas Pitre <nico@fluxnic.net>
16749 S:      Odd Fixes
16750 F:      drivers/net/ethernet/smsc/smc91x.*
16751
16752 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
16753 M:      Mark Rutland <mark.rutland@arm.com>
16754 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
16755 M:      Sudeep Holla <sudeep.holla@arm.com>
16756 L:      linux-arm-kernel@lists.infradead.org
16757 S:      Maintained
16758 F:      drivers/firmware/smccc/
16759 F:      include/linux/arm-smccc.h
16760
16761 SMM665 HARDWARE MONITOR DRIVER
16762 M:      Guenter Roeck <linux@roeck-us.net>
16763 L:      linux-hwmon@vger.kernel.org
16764 S:      Maintained
16765 F:      Documentation/hwmon/smm665.rst
16766 F:      drivers/hwmon/smm665.c
16767
16768 SMSC EMC2103 HARDWARE MONITOR DRIVER
16769 M:      Steve Glendinning <steve.glendinning@shawell.net>
16770 L:      linux-hwmon@vger.kernel.org
16771 S:      Maintained
16772 F:      Documentation/hwmon/emc2103.rst
16773 F:      drivers/hwmon/emc2103.c
16774
16775 SMSC SCH5627 HARDWARE MONITOR DRIVER
16776 M:      Hans de Goede <hdegoede@redhat.com>
16777 L:      linux-hwmon@vger.kernel.org
16778 S:      Supported
16779 F:      Documentation/hwmon/sch5627.rst
16780 F:      drivers/hwmon/sch5627.c
16781
16782 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
16783 M:      Steve Glendinning <steve.glendinning@shawell.net>
16784 L:      linux-fbdev@vger.kernel.org
16785 S:      Maintained
16786 F:      drivers/video/fbdev/smscufx.c
16787
16788 SMSC47B397 HARDWARE MONITOR DRIVER
16789 M:      Jean Delvare <jdelvare@suse.com>
16790 L:      linux-hwmon@vger.kernel.org
16791 S:      Maintained
16792 F:      Documentation/hwmon/smsc47b397.rst
16793 F:      drivers/hwmon/smsc47b397.c
16794
16795 SMSC911x ETHERNET DRIVER
16796 M:      Steve Glendinning <steve.glendinning@shawell.net>
16797 L:      netdev@vger.kernel.org
16798 S:      Maintained
16799 F:      drivers/net/ethernet/smsc/smsc911x.*
16800 F:      include/linux/smsc911x.h
16801
16802 SMSC9420 PCI ETHERNET DRIVER
16803 M:      Steve Glendinning <steve.glendinning@shawell.net>
16804 L:      netdev@vger.kernel.org
16805 S:      Maintained
16806 F:      drivers/net/ethernet/smsc/smsc9420.*
16807
16808 SOCIONEXT (SNI) AVE NETWORK DRIVER
16809 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
16810 L:      netdev@vger.kernel.org
16811 S:      Maintained
16812 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
16813 F:      drivers/net/ethernet/socionext/sni_ave.c
16814
16815 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
16816 M:      Jassi Brar <jaswinder.singh@linaro.org>
16817 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
16818 L:      netdev@vger.kernel.org
16819 S:      Maintained
16820 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
16821 F:      drivers/net/ethernet/socionext/netsec.c
16822
16823 SOCIONEXT (SNI) Synquacer SPI DRIVER
16824 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
16825 M:      Jassi Brar <jaswinder.singh@linaro.org>
16826 L:      linux-spi@vger.kernel.org
16827 S:      Maintained
16828 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
16829 F:      drivers/spi/spi-synquacer.c
16830
16831 SOCIONEXT SYNQUACER I2C DRIVER
16832 M:      Ard Biesheuvel <ardb@kernel.org>
16833 L:      linux-i2c@vger.kernel.org
16834 S:      Maintained
16835 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
16836 F:      drivers/i2c/busses/i2c-synquacer.c
16837
16838 SOCIONEXT UNIPHIER SOUND DRIVER
16839 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16840 S:      Orphan
16841 F:      sound/soc/uniphier/
16842
16843 SOEKRIS NET48XX LED SUPPORT
16844 M:      Chris Boot <bootc@bootc.net>
16845 S:      Maintained
16846 F:      drivers/leds/leds-net48xx.c
16847
16848 SOFT-IWARP DRIVER (siw)
16849 M:      Bernard Metzler <bmt@zurich.ibm.com>
16850 L:      linux-rdma@vger.kernel.org
16851 S:      Supported
16852 F:      drivers/infiniband/sw/siw/
16853 F:      include/uapi/rdma/siw-abi.h
16854
16855 SOFT-ROCE DRIVER (rxe)
16856 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
16857 L:      linux-rdma@vger.kernel.org
16858 S:      Supported
16859 F:      drivers/infiniband/sw/rxe/
16860 F:      include/uapi/rdma/rdma_user_rxe.h
16861
16862 SOFTLOGIC 6x10 MPEG CODEC
16863 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
16864 M:      Anton Sviridenko <anton@corp.bluecherry.net>
16865 M:      Andrey Utkin <andrey_utkin@fastmail.com>
16866 M:      Ismael Luceno <ismael@iodev.co.uk>
16867 L:      linux-media@vger.kernel.org
16868 S:      Supported
16869 F:      drivers/media/pci/solo6x10/
16870
16871 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
16872 M:      James Morse <james.morse@arm.com>
16873 L:      linux-arm-kernel@lists.infradead.org
16874 S:      Maintained
16875 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
16876 F:      drivers/firmware/arm_sdei.c
16877 F:      include/linux/arm_sdei.h
16878 F:      include/uapi/linux/arm_sdei.h
16879
16880 SOFTWARE NODES
16881 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16882 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
16883 L:      linux-acpi@vger.kernel.org
16884 S:      Maintained
16885 F:      drivers/base/swnode.c
16886
16887 SOFTWARE RAID (Multiple Disks) SUPPORT
16888 M:      Song Liu <song@kernel.org>
16889 L:      linux-raid@vger.kernel.org
16890 S:      Supported
16891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
16892 F:      drivers/md/Kconfig
16893 F:      drivers/md/Makefile
16894 F:      drivers/md/md*
16895 F:      drivers/md/raid*
16896 F:      include/linux/raid/
16897 F:      include/uapi/linux/raid/
16898
16899 SOLIDRUN CLEARFOG SUPPORT
16900 M:      Russell King <linux@armlinux.org.uk>
16901 S:      Maintained
16902 F:      arch/arm/boot/dts/armada-388-clearfog*
16903 F:      arch/arm/boot/dts/armada-38x-solidrun-*
16904
16905 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
16906 M:      Russell King <linux@armlinux.org.uk>
16907 S:      Maintained
16908 F:      arch/arm/boot/dts/imx6*-cubox-i*
16909 F:      arch/arm/boot/dts/imx6*-hummingboard*
16910 F:      arch/arm/boot/dts/imx6*-sr-*
16911
16912 SONIC NETWORK DRIVER
16913 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
16914 L:      netdev@vger.kernel.org
16915 S:      Maintained
16916 F:      drivers/net/ethernet/natsemi/sonic.*
16917
16918 SONICS SILICON BACKPLANE DRIVER (SSB)
16919 M:      Michael Buesch <m@bues.ch>
16920 L:      linux-wireless@vger.kernel.org
16921 S:      Maintained
16922 F:      drivers/ssb/
16923 F:      include/linux/ssb/
16924
16925 SONY IMX214 SENSOR DRIVER
16926 M:      Ricardo Ribalda <ribalda@kernel.org>
16927 L:      linux-media@vger.kernel.org
16928 S:      Maintained
16929 T:      git git://linuxtv.org/media_tree.git
16930 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
16931 F:      drivers/media/i2c/imx214.c
16932
16933 SONY IMX219 SENSOR DRIVER
16934 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
16935 L:      linux-media@vger.kernel.org
16936 S:      Maintained
16937 T:      git git://linuxtv.org/media_tree.git
16938 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
16939 F:      drivers/media/i2c/imx219.c
16940
16941 SONY IMX258 SENSOR DRIVER
16942 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
16943 L:      linux-media@vger.kernel.org
16944 S:      Maintained
16945 T:      git git://linuxtv.org/media_tree.git
16946 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
16947 F:      drivers/media/i2c/imx258.c
16948
16949 SONY IMX274 SENSOR DRIVER
16950 M:      Leon Luo <leonl@leopardimaging.com>
16951 L:      linux-media@vger.kernel.org
16952 S:      Maintained
16953 T:      git git://linuxtv.org/media_tree.git
16954 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
16955 F:      drivers/media/i2c/imx274.c
16956
16957 SONY IMX290 SENSOR DRIVER
16958 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16959 L:      linux-media@vger.kernel.org
16960 S:      Maintained
16961 T:      git git://linuxtv.org/media_tree.git
16962 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
16963 F:      drivers/media/i2c/imx290.c
16964
16965 SONY IMX319 SENSOR DRIVER
16966 M:      Bingbu Cao <bingbu.cao@intel.com>
16967 L:      linux-media@vger.kernel.org
16968 S:      Maintained
16969 T:      git git://linuxtv.org/media_tree.git
16970 F:      drivers/media/i2c/imx319.c
16971
16972 SONY IMX334 SENSOR DRIVER
16973 M:      Paul J. Murphy <paul.j.murphy@intel.com>
16974 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
16975 L:      linux-media@vger.kernel.org
16976 S:      Maintained
16977 T:      git git://linuxtv.org/media_tree.git
16978 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
16979 F:      drivers/media/i2c/imx334.c
16980
16981 SONY IMX355 SENSOR DRIVER
16982 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
16983 L:      linux-media@vger.kernel.org
16984 S:      Maintained
16985 T:      git git://linuxtv.org/media_tree.git
16986 F:      drivers/media/i2c/imx355.c
16987
16988 SONY MEMORYSTICK SUBSYSTEM
16989 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16990 M:      Alex Dubov <oakad@yahoo.com>
16991 M:      Ulf Hansson <ulf.hansson@linaro.org>
16992 L:      linux-mmc@vger.kernel.org
16993 S:      Maintained
16994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
16995 F:      drivers/memstick/
16996 F:      include/linux/memstick.h
16997
16998 SONY VAIO CONTROL DEVICE DRIVER
16999 M:      Mattia Dongili <malattia@linux.it>
17000 L:      platform-driver-x86@vger.kernel.org
17001 S:      Maintained
17002 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
17003 F:      Documentation/admin-guide/laptops/sony-laptop.rst
17004 F:      drivers/char/sonypi.c
17005 F:      drivers/platform/x86/sony-laptop.c
17006 F:      include/linux/sony-laptop.h
17007
17008 SOUND
17009 M:      Jaroslav Kysela <perex@perex.cz>
17010 M:      Takashi Iwai <tiwai@suse.com>
17011 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17012 S:      Maintained
17013 W:      http://www.alsa-project.org/
17014 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
17015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17016 F:      Documentation/sound/
17017 F:      include/sound/
17018 F:      include/uapi/sound/
17019 F:      sound/
17020
17021 SOUND - COMPRESSED AUDIO
17022 M:      Vinod Koul <vkoul@kernel.org>
17023 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17024 S:      Supported
17025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17026 F:      Documentation/sound/designs/compress-offload.rst
17027 F:      include/sound/compress_driver.h
17028 F:      include/uapi/sound/compress_*
17029 F:      sound/core/compress_offload.c
17030 F:      sound/soc/soc-compress.c
17031
17032 SOUND - DMAENGINE HELPERS
17033 M:      Lars-Peter Clausen <lars@metafoo.de>
17034 S:      Supported
17035 F:      include/sound/dmaengine_pcm.h
17036 F:      sound/core/pcm_dmaengine.c
17037 F:      sound/soc/soc-generic-dmaengine-pcm.c
17038
17039 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
17040 M:      Liam Girdwood <lgirdwood@gmail.com>
17041 M:      Mark Brown <broonie@kernel.org>
17042 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17043 S:      Supported
17044 W:      http://alsa-project.org/main/index.php/ASoC
17045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
17046 F:      Documentation/devicetree/bindings/sound/
17047 F:      Documentation/sound/soc/
17048 F:      include/dt-bindings/sound/
17049 F:      include/sound/soc*
17050 F:      sound/soc/
17051
17052 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
17053 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17054 M:      Liam Girdwood <lgirdwood@gmail.com>
17055 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
17056 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
17057 M:      Daniel Baluta <daniel.baluta@nxp.com>
17058 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
17059 S:      Supported
17060 W:      https://github.com/thesofproject/linux/
17061 F:      sound/soc/sof/
17062
17063 SOUNDWIRE SUBSYSTEM
17064 M:      Vinod Koul <vkoul@kernel.org>
17065 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
17066 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17067 R:      Sanyog Kale <sanyog.r.kale@intel.com>
17068 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17069 S:      Supported
17070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
17071 F:      Documentation/driver-api/soundwire/
17072 F:      drivers/soundwire/
17073 F:      include/linux/soundwire/
17074
17075 SP2 MEDIA DRIVER
17076 M:      Olli Salonen <olli.salonen@iki.fi>
17077 L:      linux-media@vger.kernel.org
17078 S:      Maintained
17079 W:      https://linuxtv.org
17080 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17081 F:      drivers/media/dvb-frontends/sp2*
17082
17083 SPARC + UltraSPARC (sparc/sparc64)
17084 M:      "David S. Miller" <davem@davemloft.net>
17085 L:      sparclinux@vger.kernel.org
17086 S:      Maintained
17087 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
17088 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17089 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17090 F:      arch/sparc/
17091 F:      drivers/sbus/
17092
17093 SPARC SERIAL DRIVERS
17094 M:      "David S. Miller" <davem@davemloft.net>
17095 L:      sparclinux@vger.kernel.org
17096 S:      Maintained
17097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17099 F:      drivers/tty/serial/suncore.c
17100 F:      drivers/tty/serial/sunhv.c
17101 F:      drivers/tty/serial/sunsab.c
17102 F:      drivers/tty/serial/sunsab.h
17103 F:      drivers/tty/serial/sunsu.c
17104 F:      drivers/tty/serial/sunzilog.c
17105 F:      drivers/tty/serial/sunzilog.h
17106 F:      drivers/tty/vcc.c
17107 F:      include/linux/sunserialcore.h
17108
17109 SPARSE CHECKER
17110 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
17111 L:      linux-sparse@vger.kernel.org
17112 S:      Maintained
17113 W:      https://sparse.docs.kernel.org/
17114 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
17115 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
17116 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
17117 F:      include/linux/compiler.h
17118
17119 SPEAKUP CONSOLE SPEECH DRIVER
17120 M:      William Hubbs <w.d.hubbs@gmail.com>
17121 M:      Chris Brannon <chris@the-brannons.com>
17122 M:      Kirk Reiser <kirk@reisers.ca>
17123 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
17124 L:      speakup@linux-speakup.org
17125 S:      Odd Fixes
17126 W:      http://www.linux-speakup.org/
17127 W:      https://github.com/linux-speakup/speakup
17128 B:      https://github.com/linux-speakup/speakup/issues
17129 F:      drivers/accessibility/speakup/
17130
17131 SPEAR CLOCK FRAMEWORK SUPPORT
17132 M:      Viresh Kumar <vireshk@kernel.org>
17133 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17134 S:      Maintained
17135 W:      http://www.st.com/spear
17136 F:      drivers/clk/spear/
17137
17138 SPEAR PLATFORM SUPPORT
17139 M:      Viresh Kumar <vireshk@kernel.org>
17140 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
17141 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17142 S:      Maintained
17143 W:      http://www.st.com/spear
17144 F:      arch/arm/boot/dts/spear*
17145 F:      arch/arm/mach-spear/
17146
17147 SPI NOR SUBSYSTEM
17148 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
17149 R:      Michael Walle <michael@walle.cc>
17150 R:      Pratyush Yadav <p.yadav@ti.com>
17151 L:      linux-mtd@lists.infradead.org
17152 S:      Maintained
17153 W:      http://www.linux-mtd.infradead.org/
17154 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
17155 C:      irc://irc.oftc.net/mtd
17156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
17157 F:      drivers/mtd/spi-nor/
17158 F:      include/linux/mtd/spi-nor.h
17159
17160 SPI SUBSYSTEM
17161 M:      Mark Brown <broonie@kernel.org>
17162 L:      linux-spi@vger.kernel.org
17163 S:      Maintained
17164 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
17165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
17166 F:      Documentation/devicetree/bindings/spi/
17167 F:      Documentation/spi/
17168 F:      drivers/spi/
17169 F:      include/linux/spi/
17170 F:      include/uapi/linux/spi/
17171 F:      tools/spi/
17172
17173 SPIDERNET NETWORK DRIVER for CELL
17174 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
17175 M:      Geoff Levand <geoff@infradead.org>
17176 L:      netdev@vger.kernel.org
17177 L:      linuxppc-dev@lists.ozlabs.org
17178 S:      Maintained
17179 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
17180 F:      drivers/net/ethernet/toshiba/spider_net*
17181
17182 SPMI SUBSYSTEM
17183 M:      Stephen Boyd <sboyd@kernel.org>
17184 L:      linux-kernel@vger.kernel.org
17185 S:      Maintained
17186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
17187 F:      Documentation/devicetree/bindings/spmi/
17188 F:      drivers/spmi/
17189 F:      include/dt-bindings/spmi/spmi.h
17190 F:      include/linux/spmi.h
17191 F:      include/trace/events/spmi.h
17192
17193 SPU FILE SYSTEM
17194 M:      Jeremy Kerr <jk@ozlabs.org>
17195 L:      linuxppc-dev@lists.ozlabs.org
17196 S:      Supported
17197 W:      http://www.ibm.com/developerworks/power/cell/
17198 F:      Documentation/filesystems/spufs/spufs.rst
17199 F:      arch/powerpc/platforms/cell/spufs/
17200
17201 SQUASHFS FILE SYSTEM
17202 M:      Phillip Lougher <phillip@squashfs.org.uk>
17203 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
17204 S:      Maintained
17205 W:      http://squashfs.org.uk
17206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
17207 F:      Documentation/filesystems/squashfs.rst
17208 F:      fs/squashfs/
17209
17210 SRM (Alpha) environment access
17211 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
17212 S:      Maintained
17213 F:      arch/alpha/kernel/srm_env.c
17214
17215 ST LSM6DSx IMU IIO DRIVER
17216 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
17217 L:      linux-iio@vger.kernel.org
17218 S:      Maintained
17219 W:      http://www.st.com/
17220 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
17221 F:      drivers/iio/imu/st_lsm6dsx/
17222
17223 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
17224 M:      Mickael Guene <mickael.guene@st.com>
17225 L:      linux-media@vger.kernel.org
17226 S:      Maintained
17227 T:      git git://linuxtv.org/media_tree.git
17228 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
17229 F:      drivers/media/i2c/st-mipid02.c
17230
17231 ST STM32 I2C/SMBUS DRIVER
17232 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
17233 M:      Alain Volmat <alain.volmat@foss.st.com>
17234 L:      linux-i2c@vger.kernel.org
17235 S:      Maintained
17236 F:      drivers/i2c/busses/i2c-stm32*
17237
17238 ST STPDDC60 DRIVER
17239 M:      Daniel Nilsson <daniel.nilsson@flex.com>
17240 L:      linux-hwmon@vger.kernel.org
17241 S:      Maintained
17242 F:      Documentation/hwmon/stpddc60.rst
17243 F:      drivers/hwmon/pmbus/stpddc60.c
17244
17245 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
17246 M:      Song Qiang <songqiang1304521@gmail.com>
17247 L:      linux-iio@vger.kernel.org
17248 S:      Maintained
17249 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
17250 F:      drivers/iio/proximity/vl53l0x-i2c.c
17251
17252 STABLE BRANCH
17253 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17254 M:      Sasha Levin <sashal@kernel.org>
17255 L:      stable@vger.kernel.org
17256 S:      Supported
17257 F:      Documentation/process/stable-kernel-rules.rst
17258
17259 STAGING - ATOMISP DRIVER
17260 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17261 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
17262 L:      linux-media@vger.kernel.org
17263 S:      Maintained
17264 F:      drivers/staging/media/atomisp/
17265
17266 STAGING - FIELDBUS SUBSYSTEM
17267 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17268 S:      Maintained
17269 F:      drivers/staging/fieldbus/*
17270 F:      drivers/staging/fieldbus/Documentation/
17271
17272 STAGING - HMS ANYBUS-S BUS
17273 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17274 S:      Maintained
17275 F:      drivers/staging/fieldbus/anybuss/
17276
17277 STAGING - INDUSTRIAL IO
17278 M:      Jonathan Cameron <jic23@kernel.org>
17279 L:      linux-iio@vger.kernel.org
17280 S:      Odd Fixes
17281 F:      Documentation/devicetree/bindings/staging/iio/
17282 F:      drivers/staging/iio/
17283
17284 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
17285 M:      Marc Dietrich <marvin24@gmx.de>
17286 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
17287 L:      linux-tegra@vger.kernel.org
17288 S:      Maintained
17289 F:      drivers/staging/nvec/
17290
17291 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
17292 M:      Jens Frederich <jfrederich@gmail.com>
17293 M:      Daniel Drake <dsd@laptop.org>
17294 M:      Jon Nettleton <jon.nettleton@gmail.com>
17295 S:      Maintained
17296 W:      http://wiki.laptop.org/go/DCON
17297 F:      drivers/staging/olpc_dcon/
17298
17299 STAGING - REALTEK RTL8188EU DRIVERS
17300 M:      Larry Finger <Larry.Finger@lwfinger.net>
17301 S:      Odd Fixes
17302 F:      drivers/staging/rtl8188eu/
17303
17304 STAGING - REALTEK RTL8712U DRIVERS
17305 M:      Larry Finger <Larry.Finger@lwfinger.net>
17306 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
17307 S:      Odd Fixes
17308 F:      drivers/staging/rtl8712/
17309
17310 STAGING - SEPS525 LCD CONTROLLER DRIVERS
17311 M:      Michael Hennerich <michael.hennerich@analog.com>
17312 L:      linux-fbdev@vger.kernel.org
17313 S:      Supported
17314 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
17315 F:      drivers/staging/fbtft/fb_seps525.c
17316
17317 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
17318 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17319 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17320 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17321 L:      linux-fbdev@vger.kernel.org
17322 S:      Maintained
17323 F:      drivers/staging/sm750fb/
17324
17325 STAGING - VIA VT665X DRIVERS
17326 M:      Forest Bond <forest@alittletooquiet.net>
17327 S:      Odd Fixes
17328 F:      drivers/staging/vt665?/
17329
17330 STAGING SUBSYSTEM
17331 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17332 L:      linux-staging@lists.linux.dev
17333 S:      Supported
17334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
17335 F:      drivers/staging/
17336
17337 STARFIRE/DURALAN NETWORK DRIVER
17338 M:      Ion Badulescu <ionut@badula.org>
17339 S:      Odd Fixes
17340 F:      drivers/net/ethernet/adaptec/starfire*
17341
17342 STATIC BRANCH/CALL
17343 M:      Peter Zijlstra <peterz@infradead.org>
17344 M:      Josh Poimboeuf <jpoimboe@redhat.com>
17345 M:      Jason Baron <jbaron@akamai.com>
17346 R:      Steven Rostedt <rostedt@goodmis.org>
17347 R:      Ard Biesheuvel <ardb@kernel.org>
17348 S:      Supported
17349 F:      arch/*/include/asm/jump_label*.h
17350 F:      arch/*/include/asm/static_call*.h
17351 F:      arch/*/kernel/jump_label.c
17352 F:      arch/*/kernel/static_call.c
17353 F:      include/linux/jump_label*.h
17354 F:      include/linux/static_call*.h
17355 F:      kernel/jump_label.c
17356 F:      kernel/static_call.c
17357
17358 STI AUDIO (ASoC) DRIVERS
17359 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17360 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17361 S:      Maintained
17362 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
17363 F:      sound/soc/sti/
17364
17365 STI CEC DRIVER
17366 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
17367 S:      Maintained
17368 F:      Documentation/devicetree/bindings/media/stih-cec.txt
17369 F:      drivers/media/cec/platform/sti/
17370
17371 STK1160 USB VIDEO CAPTURE DRIVER
17372 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17373 L:      linux-media@vger.kernel.org
17374 S:      Maintained
17375 T:      git git://linuxtv.org/media_tree.git
17376 F:      drivers/media/usb/stk1160/
17377
17378 STM32 AUDIO (ASoC) DRIVERS
17379 M:      Olivier Moysan <olivier.moysan@foss.st.com>
17380 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17381 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17382 S:      Maintained
17383 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-*.yaml
17384 F:      sound/soc/stm/
17385
17386 STM32 TIMER/LPTIMER DRIVERS
17387 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
17388 S:      Maintained
17389 F:      Documentation/ABI/testing/*timer-stm32
17390 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
17391 F:      drivers/*/stm32-*timer*
17392 F:      drivers/pwm/pwm-stm32*
17393 F:      include/linux/*/stm32-*tim*
17394
17395 STMMAC ETHERNET DRIVER
17396 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
17397 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
17398 M:      Jose Abreu <joabreu@synopsys.com>
17399 L:      netdev@vger.kernel.org
17400 S:      Supported
17401 W:      http://www.stlinux.com
17402 F:      Documentation/networking/device_drivers/ethernet/stmicro/
17403 F:      drivers/net/ethernet/stmicro/stmmac/
17404
17405 SUN3/3X
17406 M:      Sam Creasey <sammy@sammy.net>
17407 S:      Maintained
17408 W:      http://sammy.net/sun3/
17409 F:      arch/m68k/include/asm/sun3*
17410 F:      arch/m68k/kernel/*sun3*
17411 F:      arch/m68k/sun3*/
17412 F:      drivers/net/ethernet/i825xx/sun3*
17413
17414 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
17415 M:      Hans de Goede <hdegoede@redhat.com>
17416 L:      linux-input@vger.kernel.org
17417 S:      Maintained
17418 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
17419 F:      drivers/input/keyboard/sun4i-lradc-keys.c
17420
17421 SUNDANCE NETWORK DRIVER
17422 M:      Denis Kirjanov <kda@linux-powerpc.org>
17423 L:      netdev@vger.kernel.org
17424 S:      Maintained
17425 F:      drivers/net/ethernet/dlink/sundance.c
17426
17427 SUPERH
17428 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
17429 M:      Rich Felker <dalias@libc.org>
17430 L:      linux-sh@vger.kernel.org
17431 S:      Maintained
17432 Q:      http://patchwork.kernel.org/project/linux-sh/list/
17433 F:      Documentation/sh/
17434 F:      arch/sh/
17435 F:      drivers/sh/
17436
17437 SUSPEND TO RAM
17438 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
17439 M:      Len Brown <len.brown@intel.com>
17440 M:      Pavel Machek <pavel@ucw.cz>
17441 L:      linux-pm@vger.kernel.org
17442 S:      Supported
17443 B:      https://bugzilla.kernel.org
17444 F:      Documentation/power/
17445 F:      arch/x86/kernel/acpi/
17446 F:      drivers/base/power/
17447 F:      include/linux/freezer.h
17448 F:      include/linux/pm.h
17449 F:      include/linux/suspend.h
17450 F:      kernel/power/
17451
17452 SVGA HANDLING
17453 M:      Martin Mares <mj@ucw.cz>
17454 L:      linux-video@atrey.karlin.mff.cuni.cz
17455 S:      Maintained
17456 F:      Documentation/admin-guide/svga.rst
17457 F:      arch/x86/boot/video*
17458
17459 SWIOTLB SUBSYSTEM
17460 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17461 L:      iommu@lists.linux-foundation.org
17462 S:      Supported
17463 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
17464 F:      arch/*/kernel/pci-swiotlb.c
17465 F:      include/linux/swiotlb.h
17466 F:      kernel/dma/swiotlb.c
17467
17468 SWITCHDEV
17469 M:      Jiri Pirko <jiri@resnulli.us>
17470 M:      Ivan Vecera <ivecera@redhat.com>
17471 L:      netdev@vger.kernel.org
17472 S:      Supported
17473 F:      include/net/switchdev.h
17474 F:      net/switchdev/
17475
17476 SY8106A REGULATOR DRIVER
17477 M:      Icenowy Zheng <icenowy@aosc.io>
17478 S:      Maintained
17479 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
17480 F:      drivers/regulator/sy8106a-regulator.c
17481
17482 SYNC FILE FRAMEWORK
17483 M:      Sumit Semwal <sumit.semwal@linaro.org>
17484 R:      Gustavo Padovan <gustavo@padovan.org>
17485 L:      linux-media@vger.kernel.org
17486 L:      dri-devel@lists.freedesktop.org
17487 S:      Maintained
17488 T:      git git://anongit.freedesktop.org/drm/drm-misc
17489 F:      Documentation/driver-api/sync_file.rst
17490 F:      drivers/dma-buf/dma-fence*
17491 F:      drivers/dma-buf/sw_sync.c
17492 F:      drivers/dma-buf/sync_*
17493 F:      include/linux/sync_file.h
17494 F:      include/uapi/linux/sync_file.h
17495
17496 SYNOPSYS ARC ARCHITECTURE
17497 M:      Vineet Gupta <vgupta@synopsys.com>
17498 L:      linux-snps-arc@lists.infradead.org
17499 S:      Supported
17500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
17501 F:      Documentation/devicetree/bindings/arc/*
17502 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
17503 F:      arch/arc/
17504 F:      drivers/clocksource/arc_timer.c
17505 F:      drivers/tty/serial/arc_uart.c
17506
17507 SYNOPSYS ARC HSDK SDP pll clock driver
17508 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17509 S:      Supported
17510 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
17511 F:      drivers/clk/clk-hsdk-pll.c
17512
17513 SYNOPSYS ARC SDP clock driver
17514 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17515 S:      Supported
17516 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
17517 F:      drivers/clk/axs10x/*
17518
17519 SYNOPSYS ARC SDP platform support
17520 M:      Alexey Brodkin <abrodkin@synopsys.com>
17521 S:      Supported
17522 F:      Documentation/devicetree/bindings/arc/axs10*
17523 F:      arch/arc/boot/dts/ax*
17524 F:      arch/arc/plat-axs10x
17525
17526 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
17527 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17528 S:      Supported
17529 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
17530 F:      drivers/reset/reset-axs10x.c
17531
17532 SYNOPSYS CREG GPIO DRIVER
17533 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17534 S:      Maintained
17535 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
17536 F:      drivers/gpio/gpio-creg-snps.c
17537
17538 SYNOPSYS DESIGNWARE 8250 UART DRIVER
17539 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17540 S:      Maintained
17541 F:      drivers/tty/serial/8250/8250_dw.c
17542 F:      drivers/tty/serial/8250/8250_dwlib.*
17543 F:      drivers/tty/serial/8250/8250_lpss.c
17544
17545 SYNOPSYS DESIGNWARE APB GPIO DRIVER
17546 M:      Hoan Tran <hoan@os.amperecomputing.com>
17547 M:      Serge Semin <fancer.lancer@gmail.com>
17548 L:      linux-gpio@vger.kernel.org
17549 S:      Maintained
17550 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
17551 F:      drivers/gpio/gpio-dwapb.c
17552
17553 SYNOPSYS DESIGNWARE APB SSI DRIVER
17554 M:      Serge Semin <fancer.lancer@gmail.com>
17555 L:      linux-spi@vger.kernel.org
17556 S:      Supported
17557 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
17558 F:      drivers/spi/spi-dw*
17559
17560 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
17561 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17562 S:      Maintained
17563 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
17564 F:      drivers/dma/dw-axi-dmac/
17565
17566 SYNOPSYS DESIGNWARE DMAC DRIVER
17567 M:      Viresh Kumar <vireshk@kernel.org>
17568 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17569 S:      Maintained
17570 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
17571 F:      drivers/dma/dw/
17572 F:      include/dt-bindings/dma/dw-dmac.h
17573 F:      include/linux/dma/dw.h
17574 F:      include/linux/platform_data/dma-dw.h
17575
17576 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
17577 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17578 L:      netdev@vger.kernel.org
17579 S:      Supported
17580 F:      drivers/net/ethernet/synopsys/
17581
17582 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
17583 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17584 L:      netdev@vger.kernel.org
17585 S:      Supported
17586 F:      drivers/net/pcs/pcs-xpcs.c
17587 F:      include/linux/pcs/pcs-xpcs.h
17588
17589 SYNOPSYS DESIGNWARE I2C DRIVER
17590 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
17591 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17592 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
17593 L:      linux-i2c@vger.kernel.org
17594 S:      Maintained
17595 F:      drivers/i2c/busses/i2c-designware-*
17596 F:      include/linux/platform_data/i2c-designware.h
17597
17598 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
17599 M:      Jaehoon Chung <jh80.chung@samsung.com>
17600 L:      linux-mmc@vger.kernel.org
17601 S:      Maintained
17602 F:      drivers/mmc/host/dw_mmc*
17603
17604 SYNOPSYS HSDK RESET CONTROLLER DRIVER
17605 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17606 S:      Supported
17607 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
17608 F:      drivers/reset/reset-hsdk.c
17609 F:      include/dt-bindings/reset/snps,hsdk-reset.h
17610
17611 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
17612 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
17613 M:      Manjunath M B <manjumb@synopsys.com>
17614 L:      linux-mmc@vger.kernel.org
17615 S:      Maintained
17616 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
17617
17618 SYSTEM CONFIGURATION (SYSCON)
17619 M:      Lee Jones <lee.jones@linaro.org>
17620 M:      Arnd Bergmann <arnd@arndb.de>
17621 S:      Supported
17622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
17623 F:      drivers/mfd/syscon.c
17624
17625 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
17626 M:      Sudeep Holla <sudeep.holla@arm.com>
17627 R:      Cristian Marussi <cristian.marussi@arm.com>
17628 L:      linux-arm-kernel@lists.infradead.org
17629 S:      Maintained
17630 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
17631 F:      drivers/clk/clk-sc[mp]i.c
17632 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
17633 F:      drivers/firmware/arm_scmi/
17634 F:      drivers/firmware/arm_scpi.c
17635 F:      drivers/regulator/scmi-regulator.c
17636 F:      drivers/reset/reset-scmi.c
17637 F:      include/linux/sc[mp]i_protocol.h
17638 F:      include/trace/events/scmi.h
17639
17640 SYSTEM RESET/SHUTDOWN DRIVERS
17641 M:      Sebastian Reichel <sre@kernel.org>
17642 L:      linux-pm@vger.kernel.org
17643 S:      Maintained
17644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
17645 F:      Documentation/devicetree/bindings/power/reset/
17646 F:      drivers/power/reset/
17647
17648 SYSTEM TRACE MODULE CLASS
17649 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
17650 S:      Maintained
17651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
17652 F:      Documentation/trace/stm.rst
17653 F:      drivers/hwtracing/stm/
17654 F:      include/linux/stm.h
17655 F:      include/uapi/linux/stm.h
17656
17657 SYSTEM76 ACPI DRIVER
17658 M:      Jeremy Soller <jeremy@system76.com>
17659 M:      System76 Product Development <productdev@system76.com>
17660 L:      platform-driver-x86@vger.kernel.org
17661 S:      Maintained
17662 F:      drivers/platform/x86/system76_acpi.c
17663
17664 SYSV FILESYSTEM
17665 M:      Christoph Hellwig <hch@infradead.org>
17666 S:      Maintained
17667 F:      Documentation/filesystems/sysv-fs.rst
17668 F:      fs/sysv/
17669 F:      include/linux/sysv_fs.h
17670
17671 TASKSTATS STATISTICS INTERFACE
17672 M:      Balbir Singh <bsingharora@gmail.com>
17673 S:      Maintained
17674 F:      Documentation/accounting/taskstats*
17675 F:      include/linux/taskstats*
17676 F:      kernel/taskstats.c
17677
17678 TC subsystem
17679 M:      Jamal Hadi Salim <jhs@mojatatu.com>
17680 M:      Cong Wang <xiyou.wangcong@gmail.com>
17681 M:      Jiri Pirko <jiri@resnulli.us>
17682 L:      netdev@vger.kernel.org
17683 S:      Maintained
17684 F:      include/net/pkt_cls.h
17685 F:      include/net/pkt_sched.h
17686 F:      include/net/tc_act/
17687 F:      include/uapi/linux/pkt_cls.h
17688 F:      include/uapi/linux/pkt_sched.h
17689 F:      include/uapi/linux/tc_act/
17690 F:      include/uapi/linux/tc_ematch/
17691 F:      net/sched/
17692
17693 TC90522 MEDIA DRIVER
17694 M:      Akihiro Tsukada <tskd08@gmail.com>
17695 L:      linux-media@vger.kernel.org
17696 S:      Odd Fixes
17697 F:      drivers/media/dvb-frontends/tc90522*
17698
17699 TCP LOW PRIORITY MODULE
17700 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
17701 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
17702 S:      Maintained
17703 W:      http://tcp-lp-mod.sourceforge.net/
17704 F:      net/ipv4/tcp_lp.c
17705
17706 TDA10071 MEDIA DRIVER
17707 M:      Antti Palosaari <crope@iki.fi>
17708 L:      linux-media@vger.kernel.org
17709 S:      Maintained
17710 W:      https://linuxtv.org
17711 W:      http://palosaari.fi/linux/
17712 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17713 T:      git git://linuxtv.org/anttip/media_tree.git
17714 F:      drivers/media/dvb-frontends/tda10071*
17715
17716 TDA18212 MEDIA DRIVER
17717 M:      Antti Palosaari <crope@iki.fi>
17718 L:      linux-media@vger.kernel.org
17719 S:      Maintained
17720 W:      https://linuxtv.org
17721 W:      http://palosaari.fi/linux/
17722 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17723 T:      git git://linuxtv.org/anttip/media_tree.git
17724 F:      drivers/media/tuners/tda18212*
17725
17726 TDA18218 MEDIA DRIVER
17727 M:      Antti Palosaari <crope@iki.fi>
17728 L:      linux-media@vger.kernel.org
17729 S:      Maintained
17730 W:      https://linuxtv.org
17731 W:      http://palosaari.fi/linux/
17732 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17733 T:      git git://linuxtv.org/anttip/media_tree.git
17734 F:      drivers/media/tuners/tda18218*
17735
17736 TDA18250 MEDIA DRIVER
17737 M:      Olli Salonen <olli.salonen@iki.fi>
17738 L:      linux-media@vger.kernel.org
17739 S:      Maintained
17740 W:      https://linuxtv.org
17741 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17742 T:      git git://linuxtv.org/media_tree.git
17743 F:      drivers/media/tuners/tda18250*
17744
17745 TDA18271 MEDIA DRIVER
17746 M:      Michael Krufky <mkrufky@linuxtv.org>
17747 L:      linux-media@vger.kernel.org
17748 S:      Maintained
17749 W:      https://linuxtv.org
17750 W:      http://github.com/mkrufky
17751 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17752 T:      git git://linuxtv.org/mkrufky/tuners.git
17753 F:      drivers/media/tuners/tda18271*
17754
17755 TDA1997x MEDIA DRIVER
17756 M:      Tim Harvey <tharvey@gateworks.com>
17757 L:      linux-media@vger.kernel.org
17758 S:      Maintained
17759 W:      https://linuxtv.org
17760 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17761 F:      drivers/media/i2c/tda1997x.*
17762
17763 TDA827x MEDIA DRIVER
17764 M:      Michael Krufky <mkrufky@linuxtv.org>
17765 L:      linux-media@vger.kernel.org
17766 S:      Maintained
17767 W:      https://linuxtv.org
17768 W:      http://github.com/mkrufky
17769 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17770 T:      git git://linuxtv.org/mkrufky/tuners.git
17771 F:      drivers/media/tuners/tda8290.*
17772
17773 TDA8290 MEDIA DRIVER
17774 M:      Michael Krufky <mkrufky@linuxtv.org>
17775 L:      linux-media@vger.kernel.org
17776 S:      Maintained
17777 W:      https://linuxtv.org
17778 W:      http://github.com/mkrufky
17779 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17780 T:      git git://linuxtv.org/mkrufky/tuners.git
17781 F:      drivers/media/tuners/tda8290.*
17782
17783 TDA9840 MEDIA DRIVER
17784 M:      Hans Verkuil <hverkuil@xs4all.nl>
17785 L:      linux-media@vger.kernel.org
17786 S:      Maintained
17787 W:      https://linuxtv.org
17788 T:      git git://linuxtv.org/media_tree.git
17789 F:      drivers/media/i2c/tda9840*
17790
17791 TEA5761 TUNER DRIVER
17792 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17793 L:      linux-media@vger.kernel.org
17794 S:      Odd fixes
17795 W:      https://linuxtv.org
17796 T:      git git://linuxtv.org/media_tree.git
17797 F:      drivers/media/tuners/tea5761.*
17798
17799 TEA5767 TUNER DRIVER
17800 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17801 L:      linux-media@vger.kernel.org
17802 S:      Maintained
17803 W:      https://linuxtv.org
17804 T:      git git://linuxtv.org/media_tree.git
17805 F:      drivers/media/tuners/tea5767.*
17806
17807 TEA6415C MEDIA DRIVER
17808 M:      Hans Verkuil <hverkuil@xs4all.nl>
17809 L:      linux-media@vger.kernel.org
17810 S:      Maintained
17811 W:      https://linuxtv.org
17812 T:      git git://linuxtv.org/media_tree.git
17813 F:      drivers/media/i2c/tea6415c*
17814
17815 TEA6420 MEDIA DRIVER
17816 M:      Hans Verkuil <hverkuil@xs4all.nl>
17817 L:      linux-media@vger.kernel.org
17818 S:      Maintained
17819 W:      https://linuxtv.org
17820 T:      git git://linuxtv.org/media_tree.git
17821 F:      drivers/media/i2c/tea6420*
17822
17823 TEAM DRIVER
17824 M:      Jiri Pirko <jiri@resnulli.us>
17825 L:      netdev@vger.kernel.org
17826 S:      Supported
17827 F:      drivers/net/team/
17828 F:      include/linux/if_team.h
17829 F:      include/uapi/linux/if_team.h
17830
17831 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
17832 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
17833 S:      Maintained
17834 F:      arch/x86/platform/ts5500/
17835
17836 TECHNOTREND USB IR RECEIVER
17837 M:      Sean Young <sean@mess.org>
17838 L:      linux-media@vger.kernel.org
17839 S:      Maintained
17840 F:      drivers/media/rc/ttusbir.c
17841
17842 TECHWELL TW9910 VIDEO DECODER
17843 L:      linux-media@vger.kernel.org
17844 S:      Orphan
17845 F:      drivers/media/i2c/tw9910.c
17846 F:      include/media/i2c/tw9910.h
17847
17848 TEE SUBSYSTEM
17849 M:      Jens Wiklander <jens.wiklander@linaro.org>
17850 L:      op-tee@lists.trustedfirmware.org
17851 S:      Maintained
17852 F:      Documentation/staging/tee.rst
17853 F:      drivers/tee/
17854 F:      include/linux/tee_drv.h
17855 F:      include/uapi/linux/tee.h
17856
17857 TEGRA ARCHITECTURE SUPPORT
17858 M:      Thierry Reding <thierry.reding@gmail.com>
17859 M:      Jonathan Hunter <jonathanh@nvidia.com>
17860 L:      linux-tegra@vger.kernel.org
17861 S:      Supported
17862 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
17863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
17864 N:      [^a-z]tegra
17865
17866 TEGRA CLOCK DRIVER
17867 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
17868 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
17869 S:      Supported
17870 F:      drivers/clk/tegra/
17871
17872 TEGRA DMA DRIVERS
17873 M:      Laxman Dewangan <ldewangan@nvidia.com>
17874 M:      Jon Hunter <jonathanh@nvidia.com>
17875 S:      Supported
17876 F:      drivers/dma/tegra*
17877
17878 TEGRA I2C DRIVER
17879 M:      Laxman Dewangan <ldewangan@nvidia.com>
17880 R:      Dmitry Osipenko <digetx@gmail.com>
17881 S:      Supported
17882 F:      drivers/i2c/busses/i2c-tegra.c
17883
17884 TEGRA IOMMU DRIVERS
17885 M:      Thierry Reding <thierry.reding@gmail.com>
17886 R:      Krishna Reddy <vdumpa@nvidia.com>
17887 L:      linux-tegra@vger.kernel.org
17888 S:      Supported
17889 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
17890 F:      drivers/iommu/tegra*
17891
17892 TEGRA KBC DRIVER
17893 M:      Laxman Dewangan <ldewangan@nvidia.com>
17894 S:      Supported
17895 F:      drivers/input/keyboard/tegra-kbc.c
17896
17897 TEGRA NAND DRIVER
17898 M:      Stefan Agner <stefan@agner.ch>
17899 M:      Lucas Stach <dev@lynxeye.de>
17900 S:      Maintained
17901 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
17902 F:      drivers/mtd/nand/raw/tegra_nand.c
17903
17904 TEGRA PWM DRIVER
17905 M:      Thierry Reding <thierry.reding@gmail.com>
17906 S:      Supported
17907 F:      drivers/pwm/pwm-tegra.c
17908
17909 TEGRA SERIAL DRIVER
17910 M:      Laxman Dewangan <ldewangan@nvidia.com>
17911 S:      Supported
17912 F:      drivers/tty/serial/serial-tegra.c
17913
17914 TEGRA SPI DRIVER
17915 M:      Laxman Dewangan <ldewangan@nvidia.com>
17916 S:      Supported
17917 F:      drivers/spi/spi-tegra*
17918
17919 TEGRA QUAD SPI DRIVER
17920 M:      Thierry Reding <thierry.reding@gmail.com>
17921 M:      Jonathan Hunter <jonathanh@nvidia.com>
17922 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
17923 L:      linux-tegra@vger.kernel.org
17924 S:      Maintained
17925 F:      drivers/spi/spi-tegra210-quad.c
17926
17927 TEGRA VIDEO DRIVER
17928 M:      Thierry Reding <thierry.reding@gmail.com>
17929 M:      Jonathan Hunter <jonathanh@nvidia.com>
17930 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
17931 L:      linux-media@vger.kernel.org
17932 L:      linux-tegra@vger.kernel.org
17933 S:      Maintained
17934 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
17935 F:      drivers/staging/media/tegra-video/
17936
17937 TEGRA XUSB PADCTL DRIVER
17938 M:      JC Kuo <jckuo@nvidia.com>
17939 S:      Supported
17940 F:      drivers/phy/tegra/xusb*
17941
17942 TEHUTI ETHERNET DRIVER
17943 M:      Andy Gospodarek <andy@greyhouse.net>
17944 L:      netdev@vger.kernel.org
17945 S:      Supported
17946 F:      drivers/net/ethernet/tehuti/*
17947
17948 TELECOM CLOCK DRIVER FOR MCPL0010
17949 M:      Mark Gross <mark.gross@intel.com>
17950 S:      Supported
17951 F:      drivers/char/tlclk.c
17952
17953 TEMPO SEMICONDUCTOR DRIVERS
17954 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
17955 S:      Maintained
17956 F:      Documentation/devicetree/bindings/sound/tscs*.txt
17957 F:      sound/soc/codecs/tscs*.c
17958 F:      sound/soc/codecs/tscs*.h
17959
17960 TENSILICA XTENSA PORT (xtensa)
17961 M:      Chris Zankel <chris@zankel.net>
17962 M:      Max Filippov <jcmvbkbc@gmail.com>
17963 L:      linux-xtensa@linux-xtensa.org
17964 S:      Maintained
17965 T:      git git://github.com/czankel/xtensa-linux.git
17966 F:      arch/xtensa/
17967 F:      drivers/irqchip/irq-xtensa-*
17968
17969 TEXAS INSTRUMENTS ASoC DRIVERS
17970 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
17971 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17972 S:      Maintained
17973 F:      sound/soc/ti/
17974
17975 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
17976 M:      Ricardo Ribalda <ribalda@kernel.org>
17977 L:      linux-iio@vger.kernel.org
17978 S:      Supported
17979 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
17980 F:      drivers/iio/dac/ti-dac7612.c
17981
17982 TEXAS INSTRUMENTS DMA DRIVERS
17983 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
17984 L:      dmaengine@vger.kernel.org
17985 S:      Maintained
17986 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
17987 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
17988 F:      Documentation/devicetree/bindings/dma/ti/
17989 F:      drivers/dma/ti/
17990 X:      drivers/dma/ti/cppi41.c
17991 F:      include/linux/dma/k3-udma-glue.h
17992 F:      include/linux/dma/ti-cppi5.h
17993 F:      include/linux/dma/k3-psil.h
17994
17995 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
17996 M:      Nishanth Menon <nm@ti.com>
17997 M:      Tero Kristo <kristo@kernel.org>
17998 M:      Santosh Shilimkar <ssantosh@kernel.org>
17999 L:      linux-arm-kernel@lists.infradead.org
18000 S:      Maintained
18001 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
18002 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
18003 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
18004 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
18005 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
18006 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
18007 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
18008 F:      drivers/clk/keystone/sci-clk.c
18009 F:      drivers/firmware/ti_sci*
18010 F:      drivers/irqchip/irq-ti-sci-inta.c
18011 F:      drivers/irqchip/irq-ti-sci-intr.c
18012 F:      drivers/reset/reset-ti-sci.c
18013 F:      drivers/soc/ti/ti_sci_inta_msi.c
18014 F:      drivers/soc/ti/ti_sci_pm_domains.c
18015 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
18016 F:      include/linux/soc/ti/ti_sci_inta_msi.h
18017 F:      include/linux/soc/ti/ti_sci_protocol.h
18018
18019 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
18020 M:      Robert Marko <robert.marko@sartura.hr>
18021 M:      Luka Perkov <luka.perkov@sartura.hr>
18022 L:      linux-hwmon@vger.kernel.org
18023 S:      Maintained
18024 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
18025 F:      Documentation/hwmon/tps23861.rst
18026 F:      drivers/hwmon/tps23861.c
18027
18028 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
18029 M:      Hans Verkuil <hverkuil@xs4all.nl>
18030 L:      linux-media@vger.kernel.org
18031 S:      Maintained
18032 W:      https://linuxtv.org
18033 T:      git git://linuxtv.org/media_tree.git
18034 F:      drivers/media/radio/radio-raremono.c
18035
18036 THERMAL
18037 M:      Zhang Rui <rui.zhang@intel.com>
18038 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18039 R:      Amit Kucheria <amitk@kernel.org>
18040 L:      linux-pm@vger.kernel.org
18041 S:      Supported
18042 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
18044 F:      Documentation/devicetree/bindings/thermal/
18045 F:      drivers/thermal/
18046 F:      include/linux/cpu_cooling.h
18047 F:      include/linux/thermal.h
18048 F:      include/uapi/linux/thermal.h
18049
18050 THERMAL DRIVER FOR AMLOGIC SOCS
18051 M:      Guillaume La Roque <glaroque@baylibre.com>
18052 L:      linux-pm@vger.kernel.org
18053 L:      linux-amlogic@lists.infradead.org
18054 S:      Supported
18055 W:      http://linux-meson.com/
18056 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
18057 F:      drivers/thermal/amlogic_thermal.c
18058
18059 THERMAL/CPU_COOLING
18060 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
18061 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18062 M:      Viresh Kumar <viresh.kumar@linaro.org>
18063 M:      Javi Merino <javi.merino@kernel.org>
18064 L:      linux-pm@vger.kernel.org
18065 S:      Supported
18066 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
18067 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
18068 F:      drivers/thermal/cpufreq_cooling.c
18069 F:      drivers/thermal/cpuidle_cooling.c
18070 F:      include/linux/cpu_cooling.h
18071
18072 THERMAL/POWER_ALLOCATOR
18073 M:      Lukasz Luba <lukasz.luba@arm.com>
18074 L:      linux-pm@vger.kernel.org
18075 S:      Maintained
18076 F:      Documentation/driver-api/thermal/power_allocator.rst
18077 F:      drivers/thermal/gov_power_allocator.c
18078 F:      include/trace/events/thermal_power_allocator.h
18079
18080 THINKPAD ACPI EXTRAS DRIVER
18081 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
18082 L:      ibm-acpi-devel@lists.sourceforge.net
18083 L:      platform-driver-x86@vger.kernel.org
18084 S:      Maintained
18085 W:      http://ibm-acpi.sourceforge.net
18086 W:      http://thinkwiki.org/wiki/Ibm-acpi
18087 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
18088 F:      drivers/platform/x86/thinkpad_acpi.c
18089
18090 THUNDERBOLT DMA TRAFFIC TEST DRIVER
18091 M:      Isaac Hazan <isaac.hazan@intel.com>
18092 L:      linux-usb@vger.kernel.org
18093 S:      Maintained
18094 F:      drivers/thunderbolt/dma_test.c
18095
18096 THUNDERBOLT DRIVER
18097 M:      Andreas Noever <andreas.noever@gmail.com>
18098 M:      Michael Jamet <michael.jamet@intel.com>
18099 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18100 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18101 L:      linux-usb@vger.kernel.org
18102 S:      Maintained
18103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
18104 F:      Documentation/admin-guide/thunderbolt.rst
18105 F:      drivers/thunderbolt/
18106 F:      include/linux/thunderbolt.h
18107
18108 THUNDERBOLT NETWORK DRIVER
18109 M:      Michael Jamet <michael.jamet@intel.com>
18110 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18111 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18112 L:      netdev@vger.kernel.org
18113 S:      Maintained
18114 F:      drivers/net/thunderbolt.c
18115
18116 THUNDERX GPIO DRIVER
18117 M:      Robert Richter <rric@kernel.org>
18118 S:      Odd Fixes
18119 F:      drivers/gpio/gpio-thunderx.c
18120
18121 TI ADS131E0X ADC SERIES DRIVER
18122 M:      Tomislav Denis <tomislav.denis@avl.com>
18123 L:      linux-iio@vger.kernel.org
18124 S:      Maintained
18125 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
18126 F:      drivers/iio/adc/ti-ads131e08.c
18127
18128 TI AM437X VPFE DRIVER
18129 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18130 L:      linux-media@vger.kernel.org
18131 S:      Maintained
18132 W:      https://linuxtv.org
18133 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18134 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18135 F:      drivers/media/platform/am437x/
18136
18137 TI BANDGAP AND THERMAL DRIVER
18138 M:      Eduardo Valentin <edubezval@gmail.com>
18139 M:      Keerthy <j-keerthy@ti.com>
18140 L:      linux-pm@vger.kernel.org
18141 L:      linux-omap@vger.kernel.org
18142 S:      Maintained
18143 F:      drivers/thermal/ti-soc-thermal/
18144
18145 TI BQ27XXX POWER SUPPLY DRIVER
18146 F:      drivers/power/supply/bq27xxx_battery.c
18147 F:      drivers/power/supply/bq27xxx_battery_i2c.c
18148 F:      include/linux/power/bq27xxx_battery.h
18149
18150 TI CDCE706 CLOCK DRIVER
18151 M:      Max Filippov <jcmvbkbc@gmail.com>
18152 S:      Maintained
18153 F:      drivers/clk/clk-cdce706.c
18154
18155 TI CLOCK DRIVER
18156 M:      Tero Kristo <kristo@kernel.org>
18157 L:      linux-omap@vger.kernel.org
18158 S:      Odd Fixes
18159 F:      drivers/clk/ti/
18160 F:      include/linux/clk/ti.h
18161
18162 TI DAVINCI MACHINE SUPPORT
18163 M:      Sekhar Nori <nsekhar@ti.com>
18164 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
18165 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18166 S:      Supported
18167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
18168 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
18169 F:      arch/arm/boot/dts/da850*
18170 F:      arch/arm/mach-davinci/
18171 F:      drivers/i2c/busses/i2c-davinci.c
18172
18173 TI DAVINCI SERIES CLOCK DRIVER
18174 M:      David Lechner <david@lechnology.com>
18175 R:      Sekhar Nori <nsekhar@ti.com>
18176 S:      Maintained
18177 F:      Documentation/devicetree/bindings/clock/ti/davinci/
18178 F:      drivers/clk/davinci/
18179
18180 TI DAVINCI SERIES GPIO DRIVER
18181 M:      Keerthy <j-keerthy@ti.com>
18182 L:      linux-gpio@vger.kernel.org
18183 S:      Maintained
18184 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
18185 F:      drivers/gpio/gpio-davinci.c
18186
18187 TI DAVINCI SERIES MEDIA DRIVER
18188 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18189 L:      linux-media@vger.kernel.org
18190 S:      Maintained
18191 W:      https://linuxtv.org
18192 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18193 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18194 F:      drivers/media/platform/davinci/
18195 F:      include/media/davinci/
18196
18197 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
18198 R:      David Lechner <david@lechnology.com>
18199 L:      linux-iio@vger.kernel.org
18200 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
18201 F:      drivers/counter/ti-eqep.c
18202
18203 TI ETHERNET SWITCH DRIVER (CPSW)
18204 R:      Grygorii Strashko <grygorii.strashko@ti.com>
18205 L:      linux-omap@vger.kernel.org
18206 L:      netdev@vger.kernel.org
18207 S:      Maintained
18208 F:      drivers/net/ethernet/ti/cpsw*
18209 F:      drivers/net/ethernet/ti/davinci*
18210
18211 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
18212 M:      Alex Dubov <oakad@yahoo.com>
18213 S:      Maintained
18214 W:      http://tifmxx.berlios.de/
18215 F:      drivers/memstick/host/tifm_ms.c
18216 F:      drivers/misc/tifm*
18217 F:      drivers/mmc/host/tifm_sd.c
18218 F:      include/linux/tifm.h
18219
18220 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
18221 M:      Santosh Shilimkar <ssantosh@kernel.org>
18222 L:      linux-kernel@vger.kernel.org
18223 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18224 S:      Maintained
18225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
18226 F:      drivers/soc/ti/*
18227
18228 TI LM49xxx FAMILY ASoC CODEC DRIVERS
18229 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
18230 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
18231 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18232 S:      Maintained
18233 F:      sound/soc/codecs/isabelle*
18234 F:      sound/soc/codecs/lm49453*
18235
18236 TI NETCP ETHERNET DRIVER
18237 M:      Wingman Kwok <w-kwok2@ti.com>
18238 M:      Murali Karicheri <m-karicheri2@ti.com>
18239 L:      netdev@vger.kernel.org
18240 S:      Maintained
18241 F:      drivers/net/ethernet/ti/netcp*
18242
18243 TI PCM3060 ASoC CODEC DRIVER
18244 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
18245 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18246 S:      Maintained
18247 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
18248 F:      sound/soc/codecs/pcm3060*
18249
18250 TI TAS571X FAMILY ASoC CODEC DRIVER
18251 M:      Kevin Cernekee <cernekee@chromium.org>
18252 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18253 S:      Odd Fixes
18254 F:      sound/soc/codecs/tas571x*
18255
18256 TI TRF7970A NFC DRIVER
18257 M:      Mark Greer <mgreer@animalcreek.com>
18258 L:      linux-wireless@vger.kernel.org
18259 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
18260 S:      Supported
18261 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
18262 F:      drivers/nfc/trf7970a.c
18263
18264 TI TWL4030 SERIES SOC CODEC DRIVER
18265 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18266 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18267 S:      Maintained
18268 F:      sound/soc/codecs/twl4030*
18269
18270 TI VPE/CAL DRIVERS
18271 M:      Benoit Parrot <bparrot@ti.com>
18272 L:      linux-media@vger.kernel.org
18273 S:      Maintained
18274 W:      http://linuxtv.org/
18275 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18276 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
18277 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
18278 F:      drivers/media/platform/ti-vpe/
18279
18280 TI WILINK WIRELESS DRIVERS
18281 L:      linux-wireless@vger.kernel.org
18282 S:      Orphan
18283 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
18284 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
18285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
18286 F:      drivers/net/wireless/ti/
18287 F:      include/linux/wl12xx.h
18288
18289 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
18290 M:      John Stultz <john.stultz@linaro.org>
18291 M:      Thomas Gleixner <tglx@linutronix.de>
18292 R:      Stephen Boyd <sboyd@kernel.org>
18293 L:      linux-kernel@vger.kernel.org
18294 S:      Supported
18295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
18296 F:      include/linux/clocksource.h
18297 F:      include/linux/time.h
18298 F:      include/linux/timex.h
18299 F:      include/uapi/linux/time.h
18300 F:      include/uapi/linux/timex.h
18301 F:      kernel/time/alarmtimer.c
18302 F:      kernel/time/clocksource.c
18303 F:      kernel/time/ntp.c
18304 F:      kernel/time/time*.c
18305 F:      tools/testing/selftests/timers/
18306
18307 TIPC NETWORK LAYER
18308 M:      Jon Maloy <jmaloy@redhat.com>
18309 M:      Ying Xue <ying.xue@windriver.com>
18310 L:      netdev@vger.kernel.org (core kernel code)
18311 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
18312 S:      Maintained
18313 W:      http://tipc.sourceforge.net/
18314 F:      include/uapi/linux/tipc*.h
18315 F:      net/tipc/
18316
18317 TLAN NETWORK DRIVER
18318 M:      Samuel Chessman <chessman@tux.org>
18319 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
18320 S:      Maintained
18321 W:      http://sourceforge.net/projects/tlan/
18322 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
18323 F:      drivers/net/ethernet/ti/tlan.*
18324
18325 TM6000 VIDEO4LINUX DRIVER
18326 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18327 L:      linux-media@vger.kernel.org
18328 S:      Odd fixes
18329 W:      https://linuxtv.org
18330 T:      git git://linuxtv.org/media_tree.git
18331 F:      Documentation/admin-guide/media/tm6000*
18332 F:      drivers/media/usb/tm6000/
18333
18334 TMIO/SDHI MMC DRIVER
18335 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
18336 L:      linux-mmc@vger.kernel.org
18337 S:      Supported
18338 F:      drivers/mmc/host/renesas_sdhi*
18339 F:      drivers/mmc/host/tmio_mmc*
18340 F:      include/linux/mfd/tmio.h
18341
18342 TMP401 HARDWARE MONITOR DRIVER
18343 M:      Guenter Roeck <linux@roeck-us.net>
18344 L:      linux-hwmon@vger.kernel.org
18345 S:      Maintained
18346 F:      Documentation/hwmon/tmp401.rst
18347 F:      drivers/hwmon/tmp401.c
18348
18349 TMP513 HARDWARE MONITOR DRIVER
18350 M:      Eric Tremblay <etremblay@distech-controls.com>
18351 L:      linux-hwmon@vger.kernel.org
18352 S:      Maintained
18353 F:      Documentation/hwmon/tmp513.rst
18354 F:      drivers/hwmon/tmp513.c
18355
18356 TMPFS (SHMEM FILESYSTEM)
18357 M:      Hugh Dickins <hughd@google.com>
18358 L:      linux-mm@kvack.org
18359 S:      Maintained
18360 F:      include/linux/shmem_fs.h
18361 F:      mm/shmem.c
18362
18363 TOMOYO SECURITY MODULE
18364 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
18365 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
18366 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
18367 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
18368 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
18369 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
18370 S:      Maintained
18371 W:      https://tomoyo.osdn.jp/
18372 F:      security/tomoyo/
18373
18374 TOPSTAR LAPTOP EXTRAS DRIVER
18375 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
18376 L:      platform-driver-x86@vger.kernel.org
18377 S:      Maintained
18378 F:      drivers/platform/x86/topstar-laptop.c
18379
18380 TORTURE-TEST MODULES
18381 M:      Davidlohr Bueso <dave@stgolabs.net>
18382 M:      "Paul E. McKenney" <paulmck@kernel.org>
18383 M:      Josh Triplett <josh@joshtriplett.org>
18384 L:      linux-kernel@vger.kernel.org
18385 S:      Supported
18386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18387 F:      Documentation/RCU/torture.rst
18388 F:      kernel/locking/locktorture.c
18389 F:      kernel/rcu/rcuscale.c
18390 F:      kernel/rcu/rcutorture.c
18391 F:      kernel/rcu/refscale.c
18392 F:      kernel/torture.c
18393
18394 TOSHIBA ACPI EXTRAS DRIVER
18395 M:      Azael Avalos <coproscefalo@gmail.com>
18396 L:      platform-driver-x86@vger.kernel.org
18397 S:      Maintained
18398 F:      drivers/platform/x86/toshiba_acpi.c
18399
18400 TOSHIBA BLUETOOTH DRIVER
18401 M:      Azael Avalos <coproscefalo@gmail.com>
18402 L:      platform-driver-x86@vger.kernel.org
18403 S:      Maintained
18404 F:      drivers/platform/x86/toshiba_bluetooth.c
18405
18406 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
18407 M:      Azael Avalos <coproscefalo@gmail.com>
18408 L:      platform-driver-x86@vger.kernel.org
18409 S:      Maintained
18410 F:      drivers/platform/x86/toshiba_haps.c
18411
18412 TOSHIBA SMM DRIVER
18413 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
18414 S:      Maintained
18415 W:      http://www.buzzard.org.uk/toshiba/
18416 F:      drivers/char/toshiba.c
18417 F:      include/linux/toshiba.h
18418 F:      include/uapi/linux/toshiba.h
18419
18420 TOSHIBA TC358743 DRIVER
18421 M:      Mats Randgaard <matrandg@cisco.com>
18422 L:      linux-media@vger.kernel.org
18423 S:      Maintained
18424 F:      drivers/media/i2c/tc358743*
18425 F:      include/media/i2c/tc358743.h
18426
18427 TOSHIBA WMI HOTKEYS DRIVER
18428 M:      Azael Avalos <coproscefalo@gmail.com>
18429 L:      platform-driver-x86@vger.kernel.org
18430 S:      Maintained
18431 F:      drivers/platform/x86/toshiba-wmi.c
18432
18433 TPM DEVICE DRIVER
18434 M:      Peter Huewe <peterhuewe@gmx.de>
18435 M:      Jarkko Sakkinen <jarkko@kernel.org>
18436 R:      Jason Gunthorpe <jgg@ziepe.ca>
18437 L:      linux-integrity@vger.kernel.org
18438 S:      Maintained
18439 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
18440 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
18441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
18442 F:      drivers/char/tpm/
18443
18444 TRACING
18445 M:      Steven Rostedt <rostedt@goodmis.org>
18446 M:      Ingo Molnar <mingo@redhat.com>
18447 S:      Maintained
18448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
18449 F:      Documentation/trace/ftrace.rst
18450 F:      arch/*/*/*/ftrace.h
18451 F:      arch/*/kernel/ftrace.c
18452 F:      fs/tracefs/
18453 F:      include/*/ftrace.h
18454 F:      include/linux/trace*.h
18455 F:      include/trace/
18456 F:      kernel/trace/
18457 F:      tools/testing/selftests/ftrace/
18458
18459 TRACING MMIO ACCESSES (MMIOTRACE)
18460 M:      Steven Rostedt <rostedt@goodmis.org>
18461 M:      Ingo Molnar <mingo@kernel.org>
18462 R:      Karol Herbst <karolherbst@gmail.com>
18463 R:      Pekka Paalanen <ppaalanen@gmail.com>
18464 L:      linux-kernel@vger.kernel.org
18465 L:      nouveau@lists.freedesktop.org
18466 S:      Maintained
18467 F:      arch/x86/mm/kmmio.c
18468 F:      arch/x86/mm/mmio-mod.c
18469 F:      arch/x86/mm/testmmiotrace.c
18470 F:      include/linux/mmiotrace.h
18471 F:      kernel/trace/trace_mmiotrace.c
18472
18473 TRIVIAL PATCHES
18474 M:      Jiri Kosina <trivial@kernel.org>
18475 S:      Maintained
18476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
18477 K:      ^Subject:.*(?i)trivial
18478
18479 TTY LAYER
18480 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18481 M:      Jiri Slaby <jirislaby@kernel.org>
18482 S:      Supported
18483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
18484 F:      Documentation/driver-api/serial/
18485 F:      drivers/tty/
18486 F:      drivers/tty/serial/serial_core.c
18487 F:      include/linux/serial.h
18488 F:      include/linux/serial_core.h
18489 F:      include/linux/tty.h
18490 F:      include/uapi/linux/serial.h
18491 F:      include/uapi/linux/serial_core.h
18492 F:      include/uapi/linux/tty.h
18493
18494 TUA9001 MEDIA DRIVER
18495 M:      Antti Palosaari <crope@iki.fi>
18496 L:      linux-media@vger.kernel.org
18497 S:      Maintained
18498 W:      https://linuxtv.org
18499 W:      http://palosaari.fi/linux/
18500 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18501 T:      git git://linuxtv.org/anttip/media_tree.git
18502 F:      drivers/media/tuners/tua9001*
18503
18504 TULIP NETWORK DRIVERS
18505 L:      netdev@vger.kernel.org
18506 L:      linux-parisc@vger.kernel.org
18507 S:      Orphan
18508 F:      drivers/net/ethernet/dec/tulip/
18509
18510 TUN/TAP driver
18511 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
18512 S:      Maintained
18513 W:      http://vtun.sourceforge.net/tun
18514 F:      Documentation/networking/tuntap.rst
18515 F:      arch/um/os-Linux/drivers/
18516
18517 TURBOCHANNEL SUBSYSTEM
18518 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
18519 M:      Ralf Baechle <ralf@linux-mips.org>
18520 L:      linux-mips@vger.kernel.org
18521 S:      Maintained
18522 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
18523 F:      drivers/tc/
18524 F:      include/linux/tc.h
18525
18526 TURBOSTAT UTILITY
18527 M:      "Len Brown" <lenb@kernel.org>
18528 L:      linux-pm@vger.kernel.org
18529 S:      Supported
18530 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18531 B:      https://bugzilla.kernel.org
18532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
18533 F:      tools/power/x86/turbostat/
18534
18535 TW5864 VIDEO4LINUX DRIVER
18536 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18537 M:      Anton Sviridenko <anton@corp.bluecherry.net>
18538 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
18539 M:      Andrey Utkin <andrey_utkin@fastmail.com>
18540 L:      linux-media@vger.kernel.org
18541 S:      Supported
18542 F:      drivers/media/pci/tw5864/
18543
18544 TW68 VIDEO4LINUX DRIVER
18545 M:      Hans Verkuil <hverkuil@xs4all.nl>
18546 L:      linux-media@vger.kernel.org
18547 S:      Odd Fixes
18548 W:      https://linuxtv.org
18549 T:      git git://linuxtv.org/media_tree.git
18550 F:      drivers/media/pci/tw68/
18551
18552 TW686X VIDEO4LINUX DRIVER
18553 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18554 L:      linux-media@vger.kernel.org
18555 S:      Maintained
18556 W:      http://linuxtv.org
18557 T:      git git://linuxtv.org/media_tree.git
18558 F:      drivers/media/pci/tw686x/
18559
18560 UACCE ACCELERATOR FRAMEWORK
18561 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
18562 M:      Zhou Wang <wangzhou1@hisilicon.com>
18563 L:      linux-accelerators@lists.ozlabs.org
18564 L:      linux-kernel@vger.kernel.org
18565 S:      Maintained
18566 F:      Documentation/ABI/testing/sysfs-driver-uacce
18567 F:      Documentation/misc-devices/uacce.rst
18568 F:      drivers/misc/uacce/
18569 F:      include/linux/uacce.h
18570 F:      include/uapi/misc/uacce/
18571
18572 UBI FILE SYSTEM (UBIFS)
18573 M:      Richard Weinberger <richard@nod.at>
18574 L:      linux-mtd@lists.infradead.org
18575 S:      Supported
18576 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
18577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18579 F:      Documentation/filesystems/ubifs-authentication.rst
18580 F:      Documentation/filesystems/ubifs.rst
18581 F:      fs/ubifs/
18582
18583 UCLINUX (M68KNOMMU AND COLDFIRE)
18584 M:      Greg Ungerer <gerg@linux-m68k.org>
18585 L:      linux-m68k@lists.linux-m68k.org
18586 L:      uclinux-dev@uclinux.org  (subscribers-only)
18587 S:      Maintained
18588 W:      http://www.linux-m68k.org/
18589 W:      http://www.uclinux.org/
18590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
18591 F:      arch/m68k/*/*_no.*
18592 F:      arch/m68k/68*/
18593 F:      arch/m68k/coldfire/
18594 F:      arch/m68k/include/asm/*_no.*
18595
18596 UDF FILESYSTEM
18597 M:      Jan Kara <jack@suse.com>
18598 S:      Maintained
18599 F:      Documentation/filesystems/udf.rst
18600 F:      fs/udf/
18601
18602 UDRAW TABLET
18603 M:      Bastien Nocera <hadess@hadess.net>
18604 L:      linux-input@vger.kernel.org
18605 S:      Maintained
18606 F:      drivers/hid/hid-udraw-ps3.c
18607
18608 UFS FILESYSTEM
18609 M:      Evgeniy Dushistov <dushistov@mail.ru>
18610 S:      Maintained
18611 F:      Documentation/admin-guide/ufs.rst
18612 F:      fs/ufs/
18613
18614 UHID USERSPACE HID IO DRIVER
18615 M:      David Rheinsberg <david.rheinsberg@gmail.com>
18616 L:      linux-input@vger.kernel.org
18617 S:      Maintained
18618 F:      drivers/hid/uhid.c
18619 F:      include/uapi/linux/uhid.h
18620
18621 ULPI BUS
18622 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18623 L:      linux-usb@vger.kernel.org
18624 S:      Maintained
18625 F:      drivers/usb/common/ulpi.c
18626 F:      include/linux/ulpi/
18627
18628 UNICODE SUBSYSTEM
18629 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
18630 L:      linux-fsdevel@vger.kernel.org
18631 S:      Supported
18632 F:      fs/unicode/
18633
18634 UNIFDEF
18635 M:      Tony Finch <dot@dotat.at>
18636 S:      Maintained
18637 W:      http://dotat.at/prog/unifdef
18638 F:      scripts/unifdef.c
18639
18640 UNIFORM CDROM DRIVER
18641 M:      Jens Axboe <axboe@kernel.dk>
18642 S:      Maintained
18643 W:      http://www.kernel.dk
18644 F:      Documentation/cdrom/
18645 F:      drivers/cdrom/cdrom.c
18646 F:      include/linux/cdrom.h
18647 F:      include/uapi/linux/cdrom.h
18648
18649 UNISYS S-PAR DRIVERS
18650 M:      David Kershner <david.kershner@unisys.com>
18651 L:      sparmaintainer@unisys.com (Unisys internal)
18652 S:      Supported
18653 F:      drivers/staging/unisys/
18654 F:      drivers/visorbus/
18655 F:      include/linux/visorbus.h
18656
18657 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
18658 R:      Alim Akhtar <alim.akhtar@samsung.com>
18659 R:      Avri Altman <avri.altman@wdc.com>
18660 L:      linux-scsi@vger.kernel.org
18661 S:      Supported
18662 F:      Documentation/scsi/ufs.rst
18663 F:      drivers/scsi/ufs/
18664
18665 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
18666 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
18667 L:      linux-scsi@vger.kernel.org
18668 S:      Supported
18669 F:      drivers/scsi/ufs/*dwc*
18670
18671 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
18672 M:      Stanley Chu <stanley.chu@mediatek.com>
18673 L:      linux-scsi@vger.kernel.org
18674 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
18675 S:      Maintained
18676 F:      drivers/scsi/ufs/ufs-mediatek*
18677
18678 UNSORTED BLOCK IMAGES (UBI)
18679 M:      Richard Weinberger <richard@nod.at>
18680 L:      linux-mtd@lists.infradead.org
18681 S:      Supported
18682 W:      http://www.linux-mtd.infradead.org/
18683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18685 F:      drivers/mtd/ubi/
18686 F:      include/linux/mtd/ubi.h
18687 F:      include/uapi/mtd/ubi-user.h
18688
18689 USB "USBNET" DRIVER FRAMEWORK
18690 M:      Oliver Neukum <oneukum@suse.com>
18691 L:      netdev@vger.kernel.org
18692 S:      Maintained
18693 W:      http://www.linux-usb.org/usbnet
18694 F:      drivers/net/usb/usbnet.c
18695 F:      include/linux/usb/usbnet.h
18696
18697 USB ACM DRIVER
18698 M:      Oliver Neukum <oneukum@suse.com>
18699 L:      linux-usb@vger.kernel.org
18700 S:      Maintained
18701 F:      Documentation/usb/acm.rst
18702 F:      drivers/usb/class/cdc-acm.*
18703
18704 USB APPLE MFI FASTCHARGE DRIVER
18705 M:      Bastien Nocera <hadess@hadess.net>
18706 L:      linux-usb@vger.kernel.org
18707 S:      Maintained
18708 F:      drivers/usb/misc/apple-mfi-fastcharge.c
18709
18710 USB AR5523 WIRELESS DRIVER
18711 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
18712 L:      linux-wireless@vger.kernel.org
18713 S:      Maintained
18714 F:      drivers/net/wireless/ath/ar5523/
18715
18716 USB ATTACHED SCSI
18717 M:      Oliver Neukum <oneukum@suse.com>
18718 L:      linux-usb@vger.kernel.org
18719 L:      linux-scsi@vger.kernel.org
18720 S:      Maintained
18721 F:      drivers/usb/storage/uas.c
18722
18723 USB CDC ETHERNET DRIVER
18724 M:      Oliver Neukum <oliver@neukum.org>
18725 L:      linux-usb@vger.kernel.org
18726 S:      Maintained
18727 F:      drivers/net/usb/cdc_*.c
18728 F:      include/uapi/linux/usb/cdc.h
18729
18730 USB CHAOSKEY DRIVER
18731 M:      Keith Packard <keithp@keithp.com>
18732 L:      linux-usb@vger.kernel.org
18733 S:      Maintained
18734 F:      drivers/usb/misc/chaoskey.c
18735
18736 USB CYPRESS C67X00 DRIVER
18737 M:      Peter Korsgaard <jacmet@sunsite.dk>
18738 L:      linux-usb@vger.kernel.org
18739 S:      Maintained
18740 F:      drivers/usb/c67x00/
18741
18742 USB DAVICOM DM9601 DRIVER
18743 M:      Peter Korsgaard <jacmet@sunsite.dk>
18744 L:      netdev@vger.kernel.org
18745 S:      Maintained
18746 W:      http://www.linux-usb.org/usbnet
18747 F:      drivers/net/usb/dm9601.c
18748
18749 USB EHCI DRIVER
18750 M:      Alan Stern <stern@rowland.harvard.edu>
18751 L:      linux-usb@vger.kernel.org
18752 S:      Maintained
18753 F:      Documentation/usb/ehci.rst
18754 F:      drivers/usb/host/ehci*
18755
18756 USB GADGET/PERIPHERAL SUBSYSTEM
18757 M:      Felipe Balbi <balbi@kernel.org>
18758 L:      linux-usb@vger.kernel.org
18759 S:      Maintained
18760 W:      http://www.linux-usb.org/gadget
18761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18762 F:      drivers/usb/gadget/
18763 F:      include/linux/usb/gadget*
18764
18765 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
18766 M:      Jiri Kosina <jikos@kernel.org>
18767 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
18768 L:      linux-usb@vger.kernel.org
18769 S:      Maintained
18770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
18771 F:      Documentation/hid/hiddev.rst
18772 F:      drivers/hid/usbhid/
18773
18774 USB INTEL XHCI ROLE MUX DRIVER
18775 M:      Hans de Goede <hdegoede@redhat.com>
18776 L:      linux-usb@vger.kernel.org
18777 S:      Maintained
18778 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
18779
18780 USB IP DRIVER FOR HISILICON KIRIN
18781 M:      Yu Chen <chenyu56@huawei.com>
18782 M:      Binghui Wang <wangbinghui@hisilicon.com>
18783 L:      linux-usb@vger.kernel.org
18784 S:      Maintained
18785 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
18786 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
18787
18788 USB ISP116X DRIVER
18789 M:      Olav Kongas <ok@artecdesign.ee>
18790 L:      linux-usb@vger.kernel.org
18791 S:      Maintained
18792 F:      drivers/usb/host/isp116x*
18793 F:      include/linux/usb/isp116x.h
18794
18795 USB LAN78XX ETHERNET DRIVER
18796 M:      Woojung Huh <woojung.huh@microchip.com>
18797 M:      UNGLinuxDriver@microchip.com
18798 L:      netdev@vger.kernel.org
18799 S:      Maintained
18800 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
18801 F:      drivers/net/usb/lan78xx.*
18802 F:      include/dt-bindings/net/microchip-lan78xx.h
18803
18804 USB MASS STORAGE DRIVER
18805 M:      Alan Stern <stern@rowland.harvard.edu>
18806 L:      linux-usb@vger.kernel.org
18807 L:      usb-storage@lists.one-eyed-alien.net
18808 S:      Maintained
18809 F:      drivers/usb/storage/
18810
18811 USB MIDI DRIVER
18812 M:      Clemens Ladisch <clemens@ladisch.de>
18813 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18814 S:      Maintained
18815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18816 F:      sound/usb/midi.*
18817
18818 USB NETWORKING DRIVERS
18819 L:      linux-usb@vger.kernel.org
18820 S:      Odd Fixes
18821 F:      drivers/net/usb/
18822
18823 USB OHCI DRIVER
18824 M:      Alan Stern <stern@rowland.harvard.edu>
18825 L:      linux-usb@vger.kernel.org
18826 S:      Maintained
18827 F:      Documentation/usb/ohci.rst
18828 F:      drivers/usb/host/ohci*
18829
18830 USB OTG FSM (Finite State Machine)
18831 M:      Peter Chen <peter.chen@kernel.org>
18832 L:      linux-usb@vger.kernel.org
18833 S:      Maintained
18834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
18835 F:      drivers/usb/common/usb-otg-fsm.c
18836
18837 USB OVER IP DRIVER
18838 M:      Valentina Manea <valentina.manea.m@gmail.com>
18839 M:      Shuah Khan <shuah@kernel.org>
18840 M:      Shuah Khan <skhan@linuxfoundation.org>
18841 L:      linux-usb@vger.kernel.org
18842 S:      Maintained
18843 F:      Documentation/usb/usbip_protocol.rst
18844 F:      drivers/usb/usbip/
18845 F:      tools/testing/selftests/drivers/usb/usbip/
18846 F:      tools/usb/usbip/
18847
18848 USB PEGASUS DRIVER
18849 M:      Petko Manolov <petkan@nucleusys.com>
18850 L:      linux-usb@vger.kernel.org
18851 L:      netdev@vger.kernel.org
18852 S:      Maintained
18853 W:      https://github.com/petkan/pegasus
18854 T:      git git://github.com/petkan/pegasus.git
18855 F:      drivers/net/usb/pegasus.*
18856
18857 USB PHY LAYER
18858 M:      Felipe Balbi <balbi@kernel.org>
18859 L:      linux-usb@vger.kernel.org
18860 S:      Maintained
18861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18862 F:      drivers/usb/phy/
18863
18864 USB PRINTER DRIVER (usblp)
18865 M:      Pete Zaitcev <zaitcev@redhat.com>
18866 L:      linux-usb@vger.kernel.org
18867 S:      Supported
18868 F:      drivers/usb/class/usblp.c
18869
18870 USB RAW GADGET DRIVER
18871 R:      Andrey Konovalov <andreyknvl@gmail.com>
18872 L:      linux-usb@vger.kernel.org
18873 S:      Maintained
18874 F:      Documentation/usb/raw-gadget.rst
18875 F:      drivers/usb/gadget/legacy/raw_gadget.c
18876 F:      include/uapi/linux/usb/raw_gadget.h
18877
18878 USB QMI WWAN NETWORK DRIVER
18879 M:      Bjørn Mork <bjorn@mork.no>
18880 L:      netdev@vger.kernel.org
18881 S:      Maintained
18882 F:      Documentation/ABI/testing/sysfs-class-net-qmi
18883 F:      drivers/net/usb/qmi_wwan.c
18884
18885 USB RTL8150 DRIVER
18886 M:      Petko Manolov <petkan@nucleusys.com>
18887 L:      linux-usb@vger.kernel.org
18888 L:      netdev@vger.kernel.org
18889 S:      Maintained
18890 W:      https://github.com/petkan/rtl8150
18891 T:      git git://github.com/petkan/rtl8150.git
18892 F:      drivers/net/usb/rtl8150.c
18893
18894 USB SERIAL SUBSYSTEM
18895 M:      Johan Hovold <johan@kernel.org>
18896 L:      linux-usb@vger.kernel.org
18897 S:      Maintained
18898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
18899 F:      Documentation/usb/usb-serial.rst
18900 F:      drivers/usb/serial/
18901 F:      include/linux/usb/serial.h
18902
18903 USB SMSC75XX ETHERNET DRIVER
18904 M:      Steve Glendinning <steve.glendinning@shawell.net>
18905 L:      netdev@vger.kernel.org
18906 S:      Maintained
18907 F:      drivers/net/usb/smsc75xx.*
18908
18909 USB SMSC95XX ETHERNET DRIVER
18910 M:      Steve Glendinning <steve.glendinning@shawell.net>
18911 M:      UNGLinuxDriver@microchip.com
18912 L:      netdev@vger.kernel.org
18913 S:      Maintained
18914 F:      drivers/net/usb/smsc95xx.*
18915
18916 USB SUBSYSTEM
18917 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18918 L:      linux-usb@vger.kernel.org
18919 S:      Supported
18920 W:      http://www.linux-usb.org
18921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
18922 F:      Documentation/devicetree/bindings/usb/
18923 F:      Documentation/usb/
18924 F:      drivers/usb/
18925 F:      include/linux/usb.h
18926 F:      include/linux/usb/
18927
18928 USB TYPEC BUS FOR ALTERNATE MODES
18929 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18930 L:      linux-usb@vger.kernel.org
18931 S:      Maintained
18932 F:      Documentation/ABI/testing/sysfs-bus-typec
18933 F:      Documentation/driver-api/usb/typec_bus.rst
18934 F:      drivers/usb/typec/altmodes/
18935 F:      include/linux/usb/typec_altmode.h
18936
18937 USB TYPEC CLASS
18938 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18939 L:      linux-usb@vger.kernel.org
18940 S:      Maintained
18941 F:      Documentation/ABI/testing/sysfs-class-typec
18942 F:      Documentation/driver-api/usb/typec.rst
18943 F:      drivers/usb/typec/
18944 F:      include/linux/usb/typec.h
18945
18946 USB TYPEC INTEL PMC MUX DRIVER
18947 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18948 L:      linux-usb@vger.kernel.org
18949 S:      Maintained
18950 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
18951 F:      drivers/usb/typec/mux/intel_pmc_mux.c
18952
18953 USB TYPEC PI3USB30532 MUX DRIVER
18954 M:      Hans de Goede <hdegoede@redhat.com>
18955 L:      linux-usb@vger.kernel.org
18956 S:      Maintained
18957 F:      drivers/usb/typec/mux/pi3usb30532.c
18958
18959 USB TYPEC PORT CONTROLLER DRIVERS
18960 M:      Guenter Roeck <linux@roeck-us.net>
18961 L:      linux-usb@vger.kernel.org
18962 S:      Maintained
18963 F:      drivers/usb/typec/tcpm/
18964
18965 USB UHCI DRIVER
18966 M:      Alan Stern <stern@rowland.harvard.edu>
18967 L:      linux-usb@vger.kernel.org
18968 S:      Maintained
18969 F:      drivers/usb/host/uhci*
18970
18971 USB VIDEO CLASS
18972 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18973 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
18974 L:      linux-media@vger.kernel.org
18975 S:      Maintained
18976 W:      http://www.ideasonboard.org/uvc/
18977 T:      git git://linuxtv.org/media_tree.git
18978 F:      drivers/media/usb/uvc/
18979 F:      include/uapi/linux/uvcvideo.h
18980
18981 USB WEBCAM GADGET
18982 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18983 L:      linux-usb@vger.kernel.org
18984 S:      Maintained
18985 F:      drivers/usb/gadget/function/*uvc*
18986 F:      drivers/usb/gadget/legacy/webcam.c
18987 F:      include/uapi/linux/usb/g_uvc.h
18988
18989 USB WIRELESS RNDIS DRIVER (rndis_wlan)
18990 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
18991 L:      linux-wireless@vger.kernel.org
18992 S:      Maintained
18993 F:      drivers/net/wireless/rndis_wlan.c
18994
18995 USB XHCI DRIVER
18996 M:      Mathias Nyman <mathias.nyman@intel.com>
18997 L:      linux-usb@vger.kernel.org
18998 S:      Supported
18999 F:      drivers/usb/host/pci-quirks*
19000 F:      drivers/usb/host/xhci*
19001
19002 USB ZD1201 DRIVER
19003 L:      linux-wireless@vger.kernel.org
19004 S:      Orphan
19005 W:      http://linux-lc100020.sourceforge.net
19006 F:      drivers/net/wireless/zydas/zd1201.*
19007
19008 USB ZR364XX DRIVER
19009 M:      Antoine Jacquet <royale@zerezo.com>
19010 L:      linux-usb@vger.kernel.org
19011 L:      linux-media@vger.kernel.org
19012 S:      Maintained
19013 W:      http://royale.zerezo.com/zr364xx/
19014 T:      git git://linuxtv.org/media_tree.git
19015 F:      Documentation/admin-guide/media/zr364xx*
19016 F:      drivers/media/usb/zr364xx/
19017
19018 USER-MODE LINUX (UML)
19019 M:      Jeff Dike <jdike@addtoit.com>
19020 M:      Richard Weinberger <richard@nod.at>
19021 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
19022 L:      linux-um@lists.infradead.org
19023 S:      Maintained
19024 W:      http://user-mode-linux.sourceforge.net
19025 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
19026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
19027 F:      Documentation/virt/uml/
19028 F:      arch/um/
19029 F:      arch/x86/um/
19030 F:      fs/hostfs/
19031
19032 USERSPACE COPYIN/COPYOUT (UIOVEC)
19033 M:      Alexander Viro <viro@zeniv.linux.org.uk>
19034 S:      Maintained
19035 F:      include/linux/uio.h
19036 F:      lib/iov_iter.c
19037
19038 USERSPACE DMA BUFFER DRIVER
19039 M:      Gerd Hoffmann <kraxel@redhat.com>
19040 L:      dri-devel@lists.freedesktop.org
19041 S:      Maintained
19042 T:      git git://anongit.freedesktop.org/drm/drm-misc
19043 F:      drivers/dma-buf/udmabuf.c
19044 F:      include/uapi/linux/udmabuf.h
19045
19046 USERSPACE I/O (UIO)
19047 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19048 S:      Maintained
19049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19050 F:      Documentation/driver-api/uio-howto.rst
19051 F:      drivers/uio/
19052 F:      include/linux/uio_driver.h
19053
19054 UTIL-LINUX PACKAGE
19055 M:      Karel Zak <kzak@redhat.com>
19056 L:      util-linux@vger.kernel.org
19057 S:      Maintained
19058 W:      http://en.wikipedia.org/wiki/Util-linux
19059 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
19060
19061 UUID HELPERS
19062 M:      Christoph Hellwig <hch@lst.de>
19063 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19064 L:      linux-kernel@vger.kernel.org
19065 S:      Maintained
19066 T:      git git://git.infradead.org/users/hch/uuid.git
19067 F:      include/linux/uuid.h
19068 F:      include/uapi/linux/uuid.h
19069 F:      lib/test_uuid.c
19070 F:      lib/uuid.c
19071
19072 UV SYSFS DRIVER
19073 M:      Justin Ernst <justin.ernst@hpe.com>
19074 L:      platform-driver-x86@vger.kernel.org
19075 S:      Maintained
19076 F:      drivers/platform/x86/uv_sysfs.c
19077
19078 UVESAFB DRIVER
19079 M:      Michal Januszewski <spock@gentoo.org>
19080 L:      linux-fbdev@vger.kernel.org
19081 S:      Maintained
19082 W:      https://github.com/mjanusz/v86d
19083 F:      Documentation/fb/uvesafb.rst
19084 F:      drivers/video/fbdev/uvesafb.*
19085
19086 Ux500 CLOCK DRIVERS
19087 M:      Ulf Hansson <ulf.hansson@linaro.org>
19088 L:      linux-clk@vger.kernel.org
19089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19090 S:      Maintained
19091 F:      drivers/clk/ux500/
19092
19093 VF610 NAND DRIVER
19094 M:      Stefan Agner <stefan@agner.ch>
19095 L:      linux-mtd@lists.infradead.org
19096 S:      Supported
19097 F:      drivers/mtd/nand/raw/vf610_nfc.c
19098
19099 VFAT/FAT/MSDOS FILESYSTEM
19100 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
19101 S:      Maintained
19102 F:      Documentation/filesystems/vfat.rst
19103 F:      fs/fat/
19104
19105 VFIO DRIVER
19106 M:      Alex Williamson <alex.williamson@redhat.com>
19107 R:      Cornelia Huck <cohuck@redhat.com>
19108 L:      kvm@vger.kernel.org
19109 S:      Maintained
19110 T:      git git://github.com/awilliam/linux-vfio.git
19111 F:      Documentation/driver-api/vfio.rst
19112 F:      drivers/vfio/
19113 F:      include/linux/vfio.h
19114 F:      include/uapi/linux/vfio.h
19115
19116 VFIO FSL-MC DRIVER
19117 M:      Diana Craciun <diana.craciun@oss.nxp.com>
19118 L:      kvm@vger.kernel.org
19119 S:      Maintained
19120 F:      drivers/vfio/fsl-mc/
19121
19122 VFIO MEDIATED DEVICE DRIVERS
19123 M:      Kirti Wankhede <kwankhede@nvidia.com>
19124 L:      kvm@vger.kernel.org
19125 S:      Maintained
19126 F:      Documentation/driver-api/vfio-mediated-device.rst
19127 F:      drivers/vfio/mdev/
19128 F:      include/linux/mdev.h
19129 F:      samples/vfio-mdev/
19130
19131 VFIO PLATFORM DRIVER
19132 M:      Eric Auger <eric.auger@redhat.com>
19133 L:      kvm@vger.kernel.org
19134 S:      Maintained
19135 F:      drivers/vfio/platform/
19136
19137 VGA_SWITCHEROO
19138 R:      Lukas Wunner <lukas@wunner.de>
19139 S:      Maintained
19140 T:      git git://anongit.freedesktop.org/drm/drm-misc
19141 F:      Documentation/gpu/vga-switcheroo.rst
19142 F:      drivers/gpu/vga/vga_switcheroo.c
19143 F:      include/linux/vga_switcheroo.h
19144
19145 VIA RHINE NETWORK DRIVER
19146 S:      Maintained
19147 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
19148 F:      drivers/net/ethernet/via/via-rhine.c
19149
19150 VIA SD/MMC CARD CONTROLLER DRIVER
19151 M:      Bruce Chang <brucechang@via.com.tw>
19152 M:      Harald Welte <HaraldWelte@viatech.com>
19153 S:      Maintained
19154 F:      drivers/mmc/host/via-sdmmc.c
19155
19156 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
19157 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
19158 L:      linux-fbdev@vger.kernel.org
19159 S:      Maintained
19160 F:      drivers/video/fbdev/via/
19161 F:      include/linux/via-core.h
19162 F:      include/linux/via-gpio.h
19163 F:      include/linux/via_i2c.h
19164
19165 VIA VELOCITY NETWORK DRIVER
19166 M:      Francois Romieu <romieu@fr.zoreil.com>
19167 L:      netdev@vger.kernel.org
19168 S:      Maintained
19169 F:      drivers/net/ethernet/via/via-velocity.*
19170
19171 VICODEC VIRTUAL CODEC DRIVER
19172 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
19173 L:      linux-media@vger.kernel.org
19174 S:      Maintained
19175 W:      https://linuxtv.org
19176 T:      git git://linuxtv.org/media_tree.git
19177 F:      drivers/media/test-drivers/vicodec/*
19178
19179 VIDEO I2C POLLING DRIVER
19180 M:      Matt Ranostay <matt.ranostay@konsulko.com>
19181 L:      linux-media@vger.kernel.org
19182 S:      Maintained
19183 F:      drivers/media/i2c/video-i2c.c
19184
19185 VIDEO MULTIPLEXER DRIVER
19186 M:      Philipp Zabel <p.zabel@pengutronix.de>
19187 L:      linux-media@vger.kernel.org
19188 S:      Maintained
19189 F:      drivers/media/platform/video-mux.c
19190
19191 VIDEOBUF2 FRAMEWORK
19192 M:      Tomasz Figa <tfiga@chromium.org>
19193 M:      Marek Szyprowski <m.szyprowski@samsung.com>
19194 L:      linux-media@vger.kernel.org
19195 S:      Maintained
19196 F:      drivers/media/common/videobuf2/*
19197 F:      include/media/videobuf2-*
19198
19199 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
19200 M:      Helen Koike <helen.koike@collabora.com>
19201 R:      Shuah Khan <skhan@linuxfoundation.org>
19202 L:      linux-media@vger.kernel.org
19203 S:      Maintained
19204 W:      https://linuxtv.org
19205 T:      git git://linuxtv.org/media_tree.git
19206 F:      drivers/media/test-drivers/vimc/*
19207
19208 VIRT LIB
19209 M:      Alex Williamson <alex.williamson@redhat.com>
19210 M:      Paolo Bonzini <pbonzini@redhat.com>
19211 L:      kvm@vger.kernel.org
19212 S:      Supported
19213 F:      virt/lib/
19214
19215 VIRTIO AND VHOST VSOCK DRIVER
19216 M:      Stefan Hajnoczi <stefanha@redhat.com>
19217 M:      Stefano Garzarella <sgarzare@redhat.com>
19218 L:      kvm@vger.kernel.org
19219 L:      virtualization@lists.linux-foundation.org
19220 L:      netdev@vger.kernel.org
19221 S:      Maintained
19222 F:      drivers/net/vsockmon.c
19223 F:      drivers/vhost/vsock.c
19224 F:      include/linux/virtio_vsock.h
19225 F:      include/uapi/linux/virtio_vsock.h
19226 F:      include/uapi/linux/vm_sockets_diag.h
19227 F:      include/uapi/linux/vsockmon.h
19228 F:      net/vmw_vsock/af_vsock_tap.c
19229 F:      net/vmw_vsock/diag.c
19230 F:      net/vmw_vsock/virtio_transport.c
19231 F:      net/vmw_vsock/virtio_transport_common.c
19232 F:      net/vmw_vsock/vsock_loopback.c
19233 F:      tools/testing/vsock/
19234
19235 VIRTIO BLOCK AND SCSI DRIVERS
19236 M:      "Michael S. Tsirkin" <mst@redhat.com>
19237 M:      Jason Wang <jasowang@redhat.com>
19238 R:      Paolo Bonzini <pbonzini@redhat.com>
19239 R:      Stefan Hajnoczi <stefanha@redhat.com>
19240 L:      virtualization@lists.linux-foundation.org
19241 S:      Maintained
19242 F:      drivers/block/virtio_blk.c
19243 F:      drivers/scsi/virtio_scsi.c
19244 F:      drivers/vhost/scsi.c
19245 F:      include/uapi/linux/virtio_blk.h
19246 F:      include/uapi/linux/virtio_scsi.h
19247
19248 VIRTIO CONSOLE DRIVER
19249 M:      Amit Shah <amit@kernel.org>
19250 L:      virtualization@lists.linux-foundation.org
19251 S:      Maintained
19252 F:      drivers/char/virtio_console.c
19253 F:      include/linux/virtio_console.h
19254 F:      include/uapi/linux/virtio_console.h
19255
19256 VIRTIO CORE AND NET DRIVERS
19257 M:      "Michael S. Tsirkin" <mst@redhat.com>
19258 M:      Jason Wang <jasowang@redhat.com>
19259 L:      virtualization@lists.linux-foundation.org
19260 S:      Maintained
19261 F:      Documentation/devicetree/bindings/virtio/
19262 F:      drivers/block/virtio_blk.c
19263 F:      drivers/crypto/virtio/
19264 F:      drivers/net/virtio_net.c
19265 F:      drivers/vdpa/
19266 F:      drivers/virtio/
19267 F:      include/linux/vdpa.h
19268 F:      include/linux/virtio*.h
19269 F:      include/uapi/linux/virtio_*.h
19270 F:      tools/virtio/
19271
19272 VIRTIO BALLOON
19273 M:      "Michael S. Tsirkin" <mst@redhat.com>
19274 M:      David Hildenbrand <david@redhat.com>
19275 L:      virtualization@lists.linux-foundation.org
19276 S:      Maintained
19277 F:      drivers/virtio/virtio_balloon.c
19278 F:      include/uapi/linux/virtio_balloon.h
19279 F:      include/linux/balloon_compaction.h
19280 F:      mm/balloon_compaction.c
19281
19282 VIRTIO CRYPTO DRIVER
19283 M:      Gonglei <arei.gonglei@huawei.com>
19284 L:      virtualization@lists.linux-foundation.org
19285 L:      linux-crypto@vger.kernel.org
19286 S:      Maintained
19287 F:      drivers/crypto/virtio/
19288 F:      include/uapi/linux/virtio_crypto.h
19289
19290 VIRTIO DRIVERS FOR S390
19291 M:      Cornelia Huck <cohuck@redhat.com>
19292 M:      Halil Pasic <pasic@linux.ibm.com>
19293 L:      linux-s390@vger.kernel.org
19294 L:      virtualization@lists.linux-foundation.org
19295 L:      kvm@vger.kernel.org
19296 S:      Supported
19297 F:      arch/s390/include/uapi/asm/virtio-ccw.h
19298 F:      drivers/s390/virtio/
19299
19300 VIRTIO FILE SYSTEM
19301 M:      Vivek Goyal <vgoyal@redhat.com>
19302 M:      Stefan Hajnoczi <stefanha@redhat.com>
19303 M:      Miklos Szeredi <miklos@szeredi.hu>
19304 L:      virtualization@lists.linux-foundation.org
19305 L:      linux-fsdevel@vger.kernel.org
19306 S:      Supported
19307 W:      https://virtio-fs.gitlab.io/
19308 F:      Documentation/filesystems/virtiofs.rst
19309 F:      fs/fuse/virtio_fs.c
19310 F:      include/uapi/linux/virtio_fs.h
19311
19312 VIRTIO GPU DRIVER
19313 M:      David Airlie <airlied@linux.ie>
19314 M:      Gerd Hoffmann <kraxel@redhat.com>
19315 L:      dri-devel@lists.freedesktop.org
19316 L:      virtualization@lists.linux-foundation.org
19317 S:      Maintained
19318 T:      git git://anongit.freedesktop.org/drm/drm-misc
19319 F:      drivers/gpu/drm/virtio/
19320 F:      include/uapi/linux/virtio_gpu.h
19321
19322 VIRTIO HOST (VHOST)
19323 M:      "Michael S. Tsirkin" <mst@redhat.com>
19324 M:      Jason Wang <jasowang@redhat.com>
19325 L:      kvm@vger.kernel.org
19326 L:      virtualization@lists.linux-foundation.org
19327 L:      netdev@vger.kernel.org
19328 S:      Maintained
19329 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
19330 F:      drivers/vhost/
19331 F:      include/linux/vhost_iotlb.h
19332 F:      include/uapi/linux/vhost.h
19333
19334 VIRTIO INPUT DRIVER
19335 M:      Gerd Hoffmann <kraxel@redhat.com>
19336 S:      Maintained
19337 F:      drivers/virtio/virtio_input.c
19338 F:      include/uapi/linux/virtio_input.h
19339
19340 VIRTIO IOMMU DRIVER
19341 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
19342 L:      virtualization@lists.linux-foundation.org
19343 S:      Maintained
19344 F:      drivers/iommu/virtio-iommu.c
19345 F:      include/uapi/linux/virtio_iommu.h
19346
19347 VIRTIO MEM DRIVER
19348 M:      David Hildenbrand <david@redhat.com>
19349 L:      virtualization@lists.linux-foundation.org
19350 S:      Maintained
19351 W:      https://virtio-mem.gitlab.io/
19352 F:      drivers/virtio/virtio_mem.c
19353 F:      include/uapi/linux/virtio_mem.h
19354
19355 VIRTUAL BOX GUEST DEVICE DRIVER
19356 M:      Hans de Goede <hdegoede@redhat.com>
19357 M:      Arnd Bergmann <arnd@arndb.de>
19358 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19359 S:      Maintained
19360 F:      drivers/virt/vboxguest/
19361 F:      include/linux/vbox_utils.h
19362 F:      include/uapi/linux/vbox*.h
19363
19364 VIRTUAL BOX SHARED FOLDER VFS DRIVER
19365 M:      Hans de Goede <hdegoede@redhat.com>
19366 L:      linux-fsdevel@vger.kernel.org
19367 S:      Maintained
19368 F:      fs/vboxsf/*
19369
19370 VIRTUAL SERIO DEVICE DRIVER
19371 M:      Stephen Chandler Paul <thatslyude@gmail.com>
19372 S:      Maintained
19373 F:      drivers/input/serio/userio.c
19374 F:      include/uapi/linux/userio.h
19375
19376 VIVID VIRTUAL VIDEO DRIVER
19377 M:      Hans Verkuil <hverkuil@xs4all.nl>
19378 L:      linux-media@vger.kernel.org
19379 S:      Maintained
19380 W:      https://linuxtv.org
19381 T:      git git://linuxtv.org/media_tree.git
19382 F:      drivers/media/test-drivers/vivid/*
19383
19384 VIDTV VIRTUAL DIGITAL TV DRIVER
19385 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
19386 L:      linux-media@vger.kernel.org
19387 S:      Maintained
19388 W:      https://linuxtv.org
19389 T:      git git://linuxtv.org/media_tree.git
19390 F:      drivers/media/test-drivers/vidtv/*
19391
19392 VLYNQ BUS
19393 M:      Florian Fainelli <f.fainelli@gmail.com>
19394 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
19395 S:      Maintained
19396 F:      drivers/vlynq/vlynq.c
19397 F:      include/linux/vlynq.h
19398
19399 VME SUBSYSTEM
19400 M:      Martyn Welch <martyn@welchs.me.uk>
19401 M:      Manohar Vanga <manohar.vanga@gmail.com>
19402 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19403 L:      linux-kernel@vger.kernel.org
19404 S:      Maintained
19405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19406 F:      Documentation/driver-api/vme.rst
19407 F:      drivers/staging/vme/
19408 F:      drivers/vme/
19409 F:      include/linux/vme*
19410
19411 VMWARE BALLOON DRIVER
19412 M:      Nadav Amit <namit@vmware.com>
19413 M:      "VMware, Inc." <pv-drivers@vmware.com>
19414 L:      linux-kernel@vger.kernel.org
19415 S:      Maintained
19416 F:      drivers/misc/vmw_balloon.c
19417
19418 VMWARE HYPERVISOR INTERFACE
19419 M:      Deep Shah <sdeep@vmware.com>
19420 M:      "VMware, Inc." <pv-drivers@vmware.com>
19421 L:      virtualization@lists.linux-foundation.org
19422 S:      Supported
19423 F:      arch/x86/include/asm/vmware.h
19424 F:      arch/x86/kernel/cpu/vmware.c
19425
19426 VMWARE PVRDMA DRIVER
19427 M:      Adit Ranadive <aditr@vmware.com>
19428 M:      VMware PV-Drivers <pv-drivers@vmware.com>
19429 L:      linux-rdma@vger.kernel.org
19430 S:      Maintained
19431 F:      drivers/infiniband/hw/vmw_pvrdma/
19432
19433 VMware PVSCSI driver
19434 M:      Vishal Bhakta <vbhakta@vmware.com>
19435 M:      VMware PV-Drivers <pv-drivers@vmware.com>
19436 L:      linux-scsi@vger.kernel.org
19437 S:      Maintained
19438 F:      drivers/scsi/vmw_pvscsi.c
19439 F:      drivers/scsi/vmw_pvscsi.h
19440
19441 VMWARE VIRTUAL PTP CLOCK DRIVER
19442 M:      Vivek Thampi <vithampi@vmware.com>
19443 M:      "VMware, Inc." <pv-drivers@vmware.com>
19444 L:      netdev@vger.kernel.org
19445 S:      Supported
19446 F:      drivers/ptp/ptp_vmw.c
19447
19448 VMWARE VMMOUSE SUBDRIVER
19449 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
19450 M:      "VMware, Inc." <pv-drivers@vmware.com>
19451 L:      linux-input@vger.kernel.org
19452 S:      Maintained
19453 F:      drivers/input/mouse/vmmouse.c
19454 F:      drivers/input/mouse/vmmouse.h
19455
19456 VMWARE VMXNET3 ETHERNET DRIVER
19457 M:      Ronak Doshi <doshir@vmware.com>
19458 M:      pv-drivers@vmware.com
19459 L:      netdev@vger.kernel.org
19460 S:      Maintained
19461 F:      drivers/net/vmxnet3/
19462
19463 VOCORE VOCORE2 BOARD
19464 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
19465 L:      linux-mips@vger.kernel.org
19466 S:      Maintained
19467 F:      arch/mips/boot/dts/ralink/vocore2.dts
19468
19469 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
19470 M:      Liam Girdwood <lgirdwood@gmail.com>
19471 M:      Mark Brown <broonie@kernel.org>
19472 L:      linux-kernel@vger.kernel.org
19473 S:      Supported
19474 W:      http://www.slimlogic.co.uk/?p=48
19475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
19476 F:      Documentation/devicetree/bindings/regulator/
19477 F:      Documentation/power/regulator/
19478 F:      drivers/regulator/
19479 F:      include/dt-bindings/regulator/
19480 F:      include/linux/regulator/
19481 K:      regulator_get_optional
19482
19483 VRF
19484 M:      David Ahern <dsahern@kernel.org>
19485 L:      netdev@vger.kernel.org
19486 S:      Maintained
19487 F:      Documentation/networking/vrf.rst
19488 F:      drivers/net/vrf.c
19489
19490 VSPRINTF
19491 M:      Petr Mladek <pmladek@suse.com>
19492 M:      Steven Rostedt <rostedt@goodmis.org>
19493 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
19494 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19495 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
19496 S:      Maintained
19497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
19498 F:      Documentation/core-api/printk-formats.rst
19499 F:      lib/test_printf.c
19500 F:      lib/vsprintf.c
19501
19502 VT1211 HARDWARE MONITOR DRIVER
19503 M:      Juerg Haefliger <juergh@gmail.com>
19504 L:      linux-hwmon@vger.kernel.org
19505 S:      Maintained
19506 F:      Documentation/hwmon/vt1211.rst
19507 F:      drivers/hwmon/vt1211.c
19508
19509 VT8231 HARDWARE MONITOR DRIVER
19510 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
19511 L:      linux-hwmon@vger.kernel.org
19512 S:      Maintained
19513 F:      drivers/hwmon/vt8231.c
19514
19515 VUB300 USB to SDIO/SD/MMC bridge chip
19516 L:      linux-mmc@vger.kernel.org
19517 S:      Orphan
19518 F:      drivers/mmc/host/vub300.c
19519
19520 W1 DALLAS'S 1-WIRE BUS
19521 M:      Evgeniy Polyakov <zbr@ioremap.net>
19522 S:      Maintained
19523 F:      Documentation/devicetree/bindings/w1/
19524 F:      Documentation/w1/
19525 F:      drivers/w1/
19526 F:      include/linux/w1.h
19527
19528 W83791D HARDWARE MONITORING DRIVER
19529 M:      Marc Hulsman <m.hulsman@tudelft.nl>
19530 L:      linux-hwmon@vger.kernel.org
19531 S:      Maintained
19532 F:      Documentation/hwmon/w83791d.rst
19533 F:      drivers/hwmon/w83791d.c
19534
19535 W83793 HARDWARE MONITORING DRIVER
19536 M:      Rudolf Marek <r.marek@assembler.cz>
19537 L:      linux-hwmon@vger.kernel.org
19538 S:      Maintained
19539 F:      Documentation/hwmon/w83793.rst
19540 F:      drivers/hwmon/w83793.c
19541
19542 W83795 HARDWARE MONITORING DRIVER
19543 M:      Jean Delvare <jdelvare@suse.com>
19544 L:      linux-hwmon@vger.kernel.org
19545 S:      Maintained
19546 F:      drivers/hwmon/w83795.c
19547
19548 W83L51xD SD/MMC CARD INTERFACE DRIVER
19549 M:      Pierre Ossman <pierre@ossman.eu>
19550 S:      Maintained
19551 F:      drivers/mmc/host/wbsd.*
19552
19553 WACOM PROTOCOL 4 SERIAL TABLETS
19554 M:      Julian Squires <julian@cipht.net>
19555 M:      Hans de Goede <hdegoede@redhat.com>
19556 L:      linux-input@vger.kernel.org
19557 S:      Maintained
19558 F:      drivers/input/tablet/wacom_serial4.c
19559
19560 WATCHDOG DEVICE DRIVERS
19561 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
19562 M:      Guenter Roeck <linux@roeck-us.net>
19563 L:      linux-watchdog@vger.kernel.org
19564 S:      Maintained
19565 W:      http://www.linux-watchdog.org/
19566 T:      git git://www.linux-watchdog.org/linux-watchdog.git
19567 F:      Documentation/devicetree/bindings/watchdog/
19568 F:      Documentation/watchdog/
19569 F:      drivers/watchdog/
19570 F:      include/linux/watchdog.h
19571 F:      include/uapi/linux/watchdog.h
19572
19573 WHISKEYCOVE PMIC GPIO DRIVER
19574 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
19575 L:      linux-gpio@vger.kernel.org
19576 S:      Maintained
19577 F:      drivers/gpio/gpio-wcove.c
19578
19579 WHWAVE RTC DRIVER
19580 M:      Dianlong Li <long17.cool@163.com>
19581 L:      linux-rtc@vger.kernel.org
19582 S:      Maintained
19583 F:      drivers/rtc/rtc-sd3078.c
19584
19585 WIIMOTE HID DRIVER
19586 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19587 L:      linux-input@vger.kernel.org
19588 S:      Maintained
19589 F:      drivers/hid/hid-wiimote*
19590
19591 WILOCITY WIL6210 WIRELESS DRIVER
19592 M:      Maya Erez <merez@codeaurora.org>
19593 L:      linux-wireless@vger.kernel.org
19594 L:      wil6210@qti.qualcomm.com
19595 S:      Supported
19596 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
19597 F:      drivers/net/wireless/ath/wil6210/
19598
19599 WINBOND CIR DRIVER
19600 M:      David Härdeman <david@hardeman.nu>
19601 S:      Maintained
19602 F:      drivers/media/rc/winbond-cir.c
19603
19604 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
19605 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
19606 L:      linux-watchdog@vger.kernel.org
19607 S:      Maintained
19608 F:      drivers/watchdog/ebc-c384_wdt.c
19609
19610 WINSYSTEMS WS16C48 GPIO DRIVER
19611 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
19612 L:      linux-gpio@vger.kernel.org
19613 S:      Maintained
19614 F:      drivers/gpio/gpio-ws16c48.c
19615
19616 WIREGUARD SECURE NETWORK TUNNEL
19617 M:      Jason A. Donenfeld <Jason@zx2c4.com>
19618 L:      wireguard@lists.zx2c4.com
19619 L:      netdev@vger.kernel.org
19620 S:      Maintained
19621 F:      drivers/net/wireguard/
19622 F:      tools/testing/selftests/wireguard/
19623
19624 WISTRON LAPTOP BUTTON DRIVER
19625 M:      Miloslav Trmac <mitr@volny.cz>
19626 S:      Maintained
19627 F:      drivers/input/misc/wistron_btns.c
19628
19629 WL3501 WIRELESS PCMCIA CARD DRIVER
19630 L:      linux-wireless@vger.kernel.org
19631 S:      Odd fixes
19632 F:      drivers/net/wireless/wl3501*
19633
19634 WOLFSON MICROELECTRONICS DRIVERS
19635 L:      patches@opensource.cirrus.com
19636 S:      Supported
19637 W:      https://github.com/CirrusLogic/linux-drivers/wiki
19638 T:      git https://github.com/CirrusLogic/linux-drivers.git
19639 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
19640 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
19641 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
19642 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
19643 F:      Documentation/devicetree/bindings/sound/wlf,arizona.yaml
19644 F:      Documentation/hwmon/wm83??.rst
19645 F:      arch/arm/mach-s3c/mach-crag6410*
19646 F:      drivers/clk/clk-wm83*.c
19647 F:      drivers/gpio/gpio-*wm*.c
19648 F:      drivers/gpio/gpio-arizona.c
19649 F:      drivers/hwmon/wm83??-hwmon.c
19650 F:      drivers/input/misc/wm831x-on.c
19651 F:      drivers/input/touchscreen/wm831x-ts.c
19652 F:      drivers/input/touchscreen/wm97*.c
19653 F:      drivers/leds/leds-wm83*.c
19654 F:      drivers/mfd/arizona*
19655 F:      drivers/mfd/cs47l24*
19656 F:      drivers/mfd/wm*.c
19657 F:      drivers/power/supply/wm83*.c
19658 F:      drivers/regulator/arizona*
19659 F:      drivers/regulator/wm8*.c
19660 F:      drivers/rtc/rtc-wm83*.c
19661 F:      drivers/video/backlight/wm83*_bl.c
19662 F:      drivers/watchdog/wm83*_wdt.c
19663 F:      include/linux/mfd/arizona/
19664 F:      include/linux/mfd/wm831x/
19665 F:      include/linux/mfd/wm8350/
19666 F:      include/linux/mfd/wm8400*
19667 F:      include/linux/regulator/arizona*
19668 F:      include/linux/wm97xx.h
19669 F:      include/sound/wm????.h
19670 F:      sound/soc/codecs/arizona*
19671 F:      sound/soc/codecs/cs47l24*
19672 F:      sound/soc/codecs/wm*
19673
19674 WORKQUEUE
19675 M:      Tejun Heo <tj@kernel.org>
19676 R:      Lai Jiangshan <jiangshanlai@gmail.com>
19677 S:      Maintained
19678 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
19679 F:      Documentation/core-api/workqueue.rst
19680 F:      include/linux/workqueue.h
19681 F:      kernel/workqueue.c
19682
19683 X-POWERS AXP288 PMIC DRIVERS
19684 M:      Hans de Goede <hdegoede@redhat.com>
19685 S:      Maintained
19686 F:      drivers/acpi/pmic/intel_pmic_xpower.c
19687 N:      axp288
19688
19689 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
19690 M:      Chen-Yu Tsai <wens@csie.org>
19691 L:      linux-kernel@vger.kernel.org
19692 S:      Maintained
19693 N:      axp[128]
19694
19695 X.25 STACK
19696 M:      Martin Schiller <ms@dev.tdt.de>
19697 L:      linux-x25@vger.kernel.org
19698 S:      Maintained
19699 F:      Documentation/networking/lapb-module.rst
19700 F:      Documentation/networking/x25*
19701 F:      drivers/net/wan/hdlc_x25.c
19702 F:      drivers/net/wan/lapbether.c
19703 F:      include/*/lapb.h
19704 F:      include/net/x25*
19705 F:      include/uapi/linux/x25.h
19706 F:      net/lapb/
19707 F:      net/x25/
19708
19709 X86 ARCHITECTURE (32-BIT AND 64-BIT)
19710 M:      Thomas Gleixner <tglx@linutronix.de>
19711 M:      Ingo Molnar <mingo@redhat.com>
19712 M:      Borislav Petkov <bp@alien8.de>
19713 M:      x86@kernel.org
19714 R:      "H. Peter Anvin" <hpa@zytor.com>
19715 L:      linux-kernel@vger.kernel.org
19716 S:      Maintained
19717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19718 F:      Documentation/devicetree/bindings/x86/
19719 F:      Documentation/x86/
19720 F:      arch/x86/
19721
19722 X86 ENTRY CODE
19723 M:      Andy Lutomirski <luto@kernel.org>
19724 L:      linux-kernel@vger.kernel.org
19725 S:      Maintained
19726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
19727 F:      arch/x86/entry/
19728
19729 X86 MCE INFRASTRUCTURE
19730 M:      Tony Luck <tony.luck@intel.com>
19731 M:      Borislav Petkov <bp@alien8.de>
19732 L:      linux-edac@vger.kernel.org
19733 S:      Maintained
19734 F:      arch/x86/kernel/cpu/mce/*
19735
19736 X86 MICROCODE UPDATE SUPPORT
19737 M:      Borislav Petkov <bp@alien8.de>
19738 S:      Maintained
19739 F:      arch/x86/kernel/cpu/microcode/*
19740
19741 X86 MM
19742 M:      Dave Hansen <dave.hansen@linux.intel.com>
19743 M:      Andy Lutomirski <luto@kernel.org>
19744 M:      Peter Zijlstra <peterz@infradead.org>
19745 L:      linux-kernel@vger.kernel.org
19746 S:      Maintained
19747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
19748 F:      arch/x86/mm/
19749
19750 X86 PLATFORM DRIVERS
19751 M:      Hans de Goede <hdegoede@redhat.com>
19752 M:      Mark Gross <mgross@linux.intel.com>
19753 L:      platform-driver-x86@vger.kernel.org
19754 S:      Maintained
19755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
19756 F:      drivers/platform/olpc/
19757 F:      drivers/platform/x86/
19758
19759 X86 PLATFORM DRIVERS - ARCH
19760 R:      Darren Hart <dvhart@infradead.org>
19761 R:      Andy Shevchenko <andy@infradead.org>
19762 L:      platform-driver-x86@vger.kernel.org
19763 L:      x86@kernel.org
19764 S:      Maintained
19765 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19766 F:      arch/x86/platform
19767
19768 X86 PLATFORM UV HPE SUPERDOME FLEX
19769 M:      Steve Wahl <steve.wahl@hpe.com>
19770 R:      Mike Travis <mike.travis@hpe.com>
19771 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
19772 R:      Russ Anderson <russ.anderson@hpe.com>
19773 S:      Supported
19774 F:      arch/x86/include/asm/uv/
19775 F:      arch/x86/kernel/apic/x2apic_uv_x.c
19776 F:      arch/x86/platform/uv/
19777
19778 X86 VDSO
19779 M:      Andy Lutomirski <luto@kernel.org>
19780 L:      linux-kernel@vger.kernel.org
19781 S:      Maintained
19782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
19783 F:      arch/x86/entry/vdso/
19784
19785 XARRAY
19786 M:      Matthew Wilcox <willy@infradead.org>
19787 L:      linux-fsdevel@vger.kernel.org
19788 S:      Supported
19789 F:      Documentation/core-api/xarray.rst
19790 F:      include/linux/idr.h
19791 F:      include/linux/xarray.h
19792 F:      lib/idr.c
19793 F:      lib/xarray.c
19794 F:      tools/testing/radix-tree
19795
19796 XBOX DVD IR REMOTE
19797 M:      Benjamin Valentin <benpicco@googlemail.com>
19798 S:      Maintained
19799 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
19800 F:      drivers/media/rc/xbox_remote.c
19801
19802 XC2028/3028 TUNER DRIVER
19803 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19804 L:      linux-media@vger.kernel.org
19805 S:      Maintained
19806 W:      https://linuxtv.org
19807 T:      git git://linuxtv.org/media_tree.git
19808 F:      drivers/media/tuners/tuner-xc2028.*
19809
19810 XDP (eXpress Data Path)
19811 M:      Alexei Starovoitov <ast@kernel.org>
19812 M:      Daniel Borkmann <daniel@iogearbox.net>
19813 M:      David S. Miller <davem@davemloft.net>
19814 M:      Jakub Kicinski <kuba@kernel.org>
19815 M:      Jesper Dangaard Brouer <hawk@kernel.org>
19816 M:      John Fastabend <john.fastabend@gmail.com>
19817 L:      netdev@vger.kernel.org
19818 L:      bpf@vger.kernel.org
19819 S:      Supported
19820 F:      include/net/xdp.h
19821 F:      include/net/xdp_priv.h
19822 F:      include/trace/events/xdp.h
19823 F:      kernel/bpf/cpumap.c
19824 F:      kernel/bpf/devmap.c
19825 F:      net/core/xdp.c
19826 F:      samples/bpf/xdp*
19827 F:      tools/testing/selftests/bpf/*xdp*
19828 F:      tools/testing/selftests/bpf/*/*xdp*
19829 F:      drivers/net/ethernet/*/*/*/*/*xdp*
19830 F:      drivers/net/ethernet/*/*/*xdp*
19831 K:      (?:\b|_)xdp(?:\b|_)
19832
19833 XDP SOCKETS (AF_XDP)
19834 M:      Björn Töpel <bjorn@kernel.org>
19835 M:      Magnus Karlsson <magnus.karlsson@intel.com>
19836 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
19837 L:      netdev@vger.kernel.org
19838 L:      bpf@vger.kernel.org
19839 S:      Maintained
19840 F:      Documentation/networking/af_xdp.rst
19841 F:      include/net/xdp_sock*
19842 F:      include/net/xsk_buff_pool.h
19843 F:      include/uapi/linux/if_xdp.h
19844 F:      include/uapi/linux/xdp_diag.h
19845 F:      include/net/netns/xdp.h
19846 F:      net/xdp/
19847 F:      samples/bpf/xdpsock*
19848 F:      tools/lib/bpf/xsk*
19849
19850 XEN BLOCK SUBSYSTEM
19851 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19852 M:      Roger Pau Monné <roger.pau@citrix.com>
19853 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19854 S:      Supported
19855 F:      drivers/block/xen*
19856 F:      drivers/block/xen-blkback/*
19857
19858 XEN HYPERVISOR ARM
19859 M:      Stefano Stabellini <sstabellini@kernel.org>
19860 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19861 S:      Maintained
19862 F:      arch/arm/include/asm/xen/
19863 F:      arch/arm/xen/
19864
19865 XEN HYPERVISOR ARM64
19866 M:      Stefano Stabellini <sstabellini@kernel.org>
19867 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19868 S:      Maintained
19869 F:      arch/arm64/include/asm/xen/
19870 F:      arch/arm64/xen/
19871
19872 XEN HYPERVISOR INTERFACE
19873 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
19874 M:      Juergen Gross <jgross@suse.com>
19875 R:      Stefano Stabellini <sstabellini@kernel.org>
19876 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19877 S:      Supported
19878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
19879 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
19880 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
19881 F:      arch/x86/include/asm/pvclock-abi.h
19882 F:      arch/x86/include/asm/xen/
19883 F:      arch/x86/platform/pvh/
19884 F:      arch/x86/xen/
19885 F:      drivers/*/xen-*front.c
19886 F:      drivers/xen/
19887 F:      include/uapi/xen/
19888 F:      include/xen/
19889
19890 XEN NETWORK BACKEND DRIVER
19891 M:      Wei Liu <wei.liu@kernel.org>
19892 M:      Paul Durrant <paul@xen.org>
19893 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19894 L:      netdev@vger.kernel.org
19895 S:      Supported
19896 F:      drivers/net/xen-netback/*
19897
19898 XEN PCI SUBSYSTEM
19899 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19900 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19901 S:      Supported
19902 F:      arch/x86/pci/*xen*
19903 F:      drivers/pci/*xen*
19904
19905 XEN PVSCSI DRIVERS
19906 M:      Juergen Gross <jgross@suse.com>
19907 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19908 L:      linux-scsi@vger.kernel.org
19909 S:      Supported
19910 F:      drivers/scsi/xen-scsifront.c
19911 F:      drivers/xen/xen-scsiback.c
19912 F:      include/xen/interface/io/vscsiif.h
19913
19914 XEN SOUND FRONTEND DRIVER
19915 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
19916 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19917 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19918 S:      Supported
19919 F:      sound/xen/*
19920
19921 XEN SWIOTLB SUBSYSTEM
19922 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19923 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19924 L:      iommu@lists.linux-foundation.org
19925 S:      Supported
19926 F:      arch/x86/xen/*swiotlb*
19927 F:      drivers/xen/*swiotlb*
19928
19929 XFS FILESYSTEM
19930 M:      Darrick J. Wong <djwong@kernel.org>
19931 M:      linux-xfs@vger.kernel.org
19932 L:      linux-xfs@vger.kernel.org
19933 S:      Supported
19934 W:      http://xfs.org/
19935 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
19936 F:      Documentation/ABI/testing/sysfs-fs-xfs
19937 F:      Documentation/admin-guide/xfs.rst
19938 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
19939 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
19940 F:      fs/xfs/
19941 F:      include/uapi/linux/dqblk_xfs.h
19942 F:      include/uapi/linux/fsmap.h
19943
19944 XILINX AXI ETHERNET DRIVER
19945 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
19946 S:      Maintained
19947 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
19948
19949 XILINX CAN DRIVER
19950 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
19951 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
19952 L:      linux-can@vger.kernel.org
19953 S:      Maintained
19954 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
19955 F:      drivers/net/can/xilinx_can.c
19956
19957 XILINX GPIO DRIVER
19958 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
19959 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
19960 R:      Michal Simek <michal.simek@xilinx.com>
19961 S:      Maintained
19962 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
19963 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.txt
19964 F:      drivers/gpio/gpio-xilinx.c
19965 F:      drivers/gpio/gpio-zynq.c
19966
19967 XILINX SD-FEC IP CORES
19968 M:      Derek Kiernan <derek.kiernan@xilinx.com>
19969 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
19970 S:      Maintained
19971 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
19972 F:      Documentation/misc-devices/xilinx_sdfec.rst
19973 F:      drivers/misc/Kconfig
19974 F:      drivers/misc/Makefile
19975 F:      drivers/misc/xilinx_sdfec.c
19976 F:      include/uapi/misc/xilinx_sdfec.h
19977
19978 XILINX UARTLITE SERIAL DRIVER
19979 M:      Peter Korsgaard <jacmet@sunsite.dk>
19980 L:      linux-serial@vger.kernel.org
19981 S:      Maintained
19982 F:      drivers/tty/serial/uartlite.c
19983
19984 XILINX VIDEO IP CORES
19985 M:      Hyun Kwon <hyun.kwon@xilinx.com>
19986 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19987 L:      linux-media@vger.kernel.org
19988 S:      Supported
19989 T:      git git://linuxtv.org/media_tree.git
19990 F:      Documentation/devicetree/bindings/media/xilinx/
19991 F:      drivers/media/platform/xilinx/
19992 F:      include/uapi/linux/xilinx-v4l2-controls.h
19993
19994 XILINX ZYNQMP DPDMA DRIVER
19995 M:      Hyun Kwon <hyun.kwon@xilinx.com>
19996 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19997 L:      dmaengine@vger.kernel.org
19998 S:      Supported
19999 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
20000 F:      drivers/dma/xilinx/xilinx_dpdma.c
20001 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
20002
20003 XILINX ZYNQMP PSGTR PHY DRIVER
20004 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
20005 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20006 L:      linux-kernel@vger.kernel.org
20007 S:      Supported
20008 T:      git https://github.com/Xilinx/linux-xlnx.git
20009 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
20010 F:      drivers/phy/xilinx/phy-zynqmp.c
20011
20012 XILLYBUS DRIVER
20013 M:      Eli Billauer <eli.billauer@gmail.com>
20014 L:      linux-kernel@vger.kernel.org
20015 S:      Supported
20016 F:      drivers/char/xillybus/
20017
20018 XLP9XX I2C DRIVER
20019 M:      George Cherian <gcherian@marvell.com>
20020 L:      linux-i2c@vger.kernel.org
20021 S:      Supported
20022 W:      http://www.marvell.com
20023 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
20024 F:      drivers/i2c/busses/i2c-xlp9xx.c
20025
20026 XRA1403 GPIO EXPANDER
20027 M:      Nandor Han <nandor.han@ge.com>
20028 M:      Semi Malinen <semi.malinen@ge.com>
20029 L:      linux-gpio@vger.kernel.org
20030 S:      Maintained
20031 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
20032 F:      drivers/gpio/gpio-xra1403.c
20033
20034 XTENSA XTFPGA PLATFORM SUPPORT
20035 M:      Max Filippov <jcmvbkbc@gmail.com>
20036 L:      linux-xtensa@linux-xtensa.org
20037 S:      Maintained
20038 F:      drivers/spi/spi-xtensa-xtfpga.c
20039 F:      sound/soc/xtensa/xtfpga-i2s.c
20040
20041 YAM DRIVER FOR AX.25
20042 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
20043 L:      linux-hams@vger.kernel.org
20044 S:      Maintained
20045 F:      drivers/net/hamradio/yam*
20046 F:      include/linux/yam.h
20047
20048 YAMA SECURITY MODULE
20049 M:      Kees Cook <keescook@chromium.org>
20050 S:      Supported
20051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
20052 F:      Documentation/admin-guide/LSM/Yama.rst
20053 F:      security/yama/
20054
20055 YEALINK PHONE DRIVER
20056 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
20057 L:      usbb2k-api-dev@nongnu.org
20058 S:      Maintained
20059 F:      Documentation/input/devices/yealink.rst
20060 F:      drivers/input/misc/yealink.*
20061
20062 Z8530 DRIVER FOR AX.25
20063 M:      Joerg Reuter <jreuter@yaina.de>
20064 L:      linux-hams@vger.kernel.org
20065 S:      Maintained
20066 W:      http://yaina.de/jreuter/
20067 W:      http://www.qsl.net/dl1bke/
20068 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
20069 F:      drivers/net/hamradio/*scc.c
20070 F:      drivers/net/hamradio/z8530.h
20071
20072 ZBUD COMPRESSED PAGE ALLOCATOR
20073 M:      Seth Jennings <sjenning@redhat.com>
20074 M:      Dan Streetman <ddstreet@ieee.org>
20075 L:      linux-mm@kvack.org
20076 S:      Maintained
20077 F:      include/linux/zbud.h
20078 F:      mm/zbud.c
20079
20080 ZD1211RW WIRELESS DRIVER
20081 M:      Daniel Drake <dsd@gentoo.org>
20082 M:      Ulrich Kunitz <kune@deine-taler.de>
20083 L:      linux-wireless@vger.kernel.org
20084 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
20085 S:      Maintained
20086 W:      http://zd1211.ath.cx/wiki/DriverRewrite
20087 F:      drivers/net/wireless/zydas/zd1211rw/
20088
20089 ZD1301 MEDIA DRIVER
20090 M:      Antti Palosaari <crope@iki.fi>
20091 L:      linux-media@vger.kernel.org
20092 S:      Maintained
20093 W:      https://linuxtv.org/
20094 W:      http://palosaari.fi/linux/
20095 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20096 F:      drivers/media/usb/dvb-usb-v2/zd1301*
20097
20098 ZD1301_DEMOD MEDIA DRIVER
20099 M:      Antti Palosaari <crope@iki.fi>
20100 L:      linux-media@vger.kernel.org
20101 S:      Maintained
20102 W:      https://linuxtv.org/
20103 W:      http://palosaari.fi/linux/
20104 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20105 F:      drivers/media/dvb-frontends/zd1301_demod*
20106
20107 ZHAOXIN PROCESSOR SUPPORT
20108 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
20109 L:      linux-kernel@vger.kernel.org
20110 S:      Maintained
20111 F:      arch/x86/kernel/cpu/zhaoxin.c
20112
20113 ZONEFS FILESYSTEM
20114 M:      Damien Le Moal <damien.lemoal@wdc.com>
20115 M:      Naohiro Aota <naohiro.aota@wdc.com>
20116 R:      Johannes Thumshirn <jth@kernel.org>
20117 L:      linux-fsdevel@vger.kernel.org
20118 S:      Maintained
20119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
20120 F:      Documentation/filesystems/zonefs.rst
20121 F:      fs/zonefs/
20122
20123 ZPOOL COMPRESSED PAGE STORAGE API
20124 M:      Dan Streetman <ddstreet@ieee.org>
20125 L:      linux-mm@kvack.org
20126 S:      Maintained
20127 F:      include/linux/zpool.h
20128 F:      mm/zpool.c
20129
20130 ZR36067 VIDEO FOR LINUX DRIVER
20131 M:      Corentin Labbe <clabbe@baylibre.com>
20132 L:      mjpeg-users@lists.sourceforge.net
20133 L:      linux-media@vger.kernel.org
20134 S:      Maintained
20135 W:      http://mjpeg.sourceforge.net/driver-zoran/
20136 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20137 F:      Documentation/driver-api/media/drivers/zoran.rst
20138 F:      drivers/staging/media/zoran/
20139
20140 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
20141 M:      Minchan Kim <minchan@kernel.org>
20142 M:      Nitin Gupta <ngupta@vflare.org>
20143 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20144 L:      linux-kernel@vger.kernel.org
20145 S:      Maintained
20146 F:      Documentation/admin-guide/blockdev/zram.rst
20147 F:      drivers/block/zram/
20148
20149 ZS DECSTATION Z85C30 SERIAL DRIVER
20150 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
20151 S:      Maintained
20152 F:      drivers/tty/serial/zs.*
20153
20154 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
20155 M:      Minchan Kim <minchan@kernel.org>
20156 M:      Nitin Gupta <ngupta@vflare.org>
20157 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20158 L:      linux-mm@kvack.org
20159 S:      Maintained
20160 F:      Documentation/vm/zsmalloc.rst
20161 F:      include/linux/zsmalloc.h
20162 F:      mm/zsmalloc.c
20163
20164 ZSWAP COMPRESSED SWAP CACHING
20165 M:      Seth Jennings <sjenning@redhat.com>
20166 M:      Dan Streetman <ddstreet@ieee.org>
20167 M:      Vitaly Wool <vitaly.wool@konsulko.com>
20168 L:      linux-mm@kvack.org
20169 S:      Maintained
20170 F:      mm/zswap.c
20171
20172 THE REST
20173 M:      Linus Torvalds <torvalds@linux-foundation.org>
20174 L:      linux-kernel@vger.kernel.org
20175 S:      Buried alive in reporters
20176 Q:      http://patchwork.kernel.org/project/LKML/list/
20177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
20178 F:      *
20179 F:      */