Merge tag 'driver-core-5.14-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-microblaze.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <klassert@kernel.org>
148 L:      netdev@vger.kernel.org
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <dave@thedillows.org>
155 L:      netdev@vger.kernel.org
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <aradford@gmail.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L:      linux-scsi@vger.kernel.org
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <alex.aring@gmail.com>
174 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L:      linux-bluetooth@vger.kernel.org
176 L:      linux-wpan@vger.kernel.org
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L:      linux-hams@vger.kernel.org
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <johannes@sipsolutions.net>
190 L:      linux-wireless@vger.kernel.org
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      net/wireless/
204
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M:      Heiner Kallweit <hkallweit1@gmail.com>
207 M:      nic_swsd@realtek.com
208 L:      netdev@vger.kernel.org
209 S:      Maintained
210 F:      drivers/net/ethernet/realtek/r8169*
211
212 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
213 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
214 L:      linux-serial@vger.kernel.org
215 S:      Maintained
216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
217 F:      drivers/tty/serial/8250*
218 F:      include/linux/serial_8250.h
219
220 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
221 L:      netdev@vger.kernel.org
222 S:      Orphan / Obsolete
223 F:      drivers/net/ethernet/8390/
224
225 9P FILE SYSTEM
226 M:      Eric Van Hensbergen <ericvh@gmail.com>
227 M:      Latchesar Ionkov <lucho@ionkov.net>
228 M:      Dominique Martinet <asmadeus@codewreck.org>
229 L:      v9fs-developer@lists.sourceforge.net
230 S:      Maintained
231 W:      http://swik.net/v9fs
232 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
234 T:      git git://github.com/martinetd/linux.git
235 F:      Documentation/filesystems/9p.rst
236 F:      fs/9p/
237 F:      include/net/9p/
238 F:      include/trace/events/9p.h
239 F:      include/uapi/linux/virtio_9p.h
240 F:      net/9p/
241
242 A8293 MEDIA DRIVER
243 M:      Antti Palosaari <crope@iki.fi>
244 L:      linux-media@vger.kernel.org
245 S:      Maintained
246 W:      https://linuxtv.org
247 W:      http://palosaari.fi/linux/
248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
249 T:      git git://linuxtv.org/anttip/media_tree.git
250 F:      drivers/media/dvb-frontends/a8293*
251
252 AACRAID SCSI RAID DRIVER
253 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
254 L:      linux-scsi@vger.kernel.org
255 S:      Supported
256 W:      http://www.adaptec.com/
257 F:      Documentation/scsi/aacraid.rst
258 F:      drivers/scsi/aacraid/
259
260 ABI/API
261 L:      linux-api@vger.kernel.org
262 F:      include/linux/syscalls.h
263 F:      kernel/sys_ni.c
264 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 VIOT DRIVER
435 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
436 L:      linux-acpi@vger.kernel.org
437 L:      iommu@lists.linux-foundation.org
438 S:      Maintained
439 F:      drivers/acpi/viot.c
440 F:      include/linux/acpi_viot.h
441
442 ACPI WMI DRIVER
443 L:      platform-driver-x86@vger.kernel.org
444 S:      Orphan
445 F:      drivers/platform/x86/wmi.c
446 F:      include/uapi/linux/wmi.h
447
448 ACRN HYPERVISOR SERVICE MODULE
449 M:      Shuo Liu <shuo.a.liu@intel.com>
450 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
451 S:      Supported
452 W:      https://projectacrn.org
453 F:      Documentation/virt/acrn/
454 F:      drivers/virt/acrn/
455 F:      include/uapi/linux/acrn.h
456
457 AD1889 ALSA SOUND DRIVER
458 L:      linux-parisc@vger.kernel.org
459 S:      Maintained
460 W:      https://parisc.wiki.kernel.org/index.php/AD1889
461 F:      sound/pci/ad1889.*
462
463 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
464 M:      Michael Hennerich <michael.hennerich@analog.com>
465 S:      Supported
466 W:      http://wiki.analog.com/AD5254
467 W:      http://ez.analog.com/community/linux-device-drivers
468 F:      drivers/misc/ad525x_dpot.c
469
470 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
471 M:      Michael Hennerich <michael.hennerich@analog.com>
472 S:      Supported
473 W:      http://wiki.analog.com/AD5398
474 W:      http://ez.analog.com/community/linux-device-drivers
475 F:      drivers/regulator/ad5398.c
476
477 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
478 M:      Michael Hennerich <michael.hennerich@analog.com>
479 S:      Supported
480 W:      http://wiki.analog.com/AD7142
481 W:      http://ez.analog.com/community/linux-device-drivers
482 F:      drivers/input/misc/ad714x.c
483
484 AD7877 TOUCHSCREEN DRIVER
485 M:      Michael Hennerich <michael.hennerich@analog.com>
486 S:      Supported
487 W:      http://wiki.analog.com/AD7877
488 W:      http://ez.analog.com/community/linux-device-drivers
489 F:      drivers/input/touchscreen/ad7877.c
490
491 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
492 M:      Michael Hennerich <michael.hennerich@analog.com>
493 S:      Supported
494 W:      http://wiki.analog.com/AD7879
495 W:      http://ez.analog.com/community/linux-device-drivers
496 F:      drivers/input/touchscreen/ad7879.c
497
498 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
499 M:      Jiri Kosina <jikos@kernel.org>
500 S:      Maintained
501
502 ADF7242 IEEE 802.15.4 RADIO DRIVER
503 M:      Michael Hennerich <michael.hennerich@analog.com>
504 L:      linux-wpan@vger.kernel.org
505 S:      Supported
506 W:      https://wiki.analog.com/ADF7242
507 W:      http://ez.analog.com/community/linux-device-drivers
508 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
509 F:      drivers/net/ieee802154/adf7242.c
510
511 ADM1025 HARDWARE MONITOR DRIVER
512 M:      Jean Delvare <jdelvare@suse.com>
513 L:      linux-hwmon@vger.kernel.org
514 S:      Maintained
515 F:      Documentation/hwmon/adm1025.rst
516 F:      drivers/hwmon/adm1025.c
517
518 ADM1029 HARDWARE MONITOR DRIVER
519 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
520 L:      linux-hwmon@vger.kernel.org
521 S:      Maintained
522 F:      drivers/hwmon/adm1029.c
523
524 ADM8211 WIRELESS DRIVER
525 L:      linux-wireless@vger.kernel.org
526 S:      Orphan
527 W:      https://wireless.wiki.kernel.org/
528 F:      drivers/net/wireless/admtek/adm8211.*
529
530 ADP1653 FLASH CONTROLLER DRIVER
531 M:      Sakari Ailus <sakari.ailus@iki.fi>
532 L:      linux-media@vger.kernel.org
533 S:      Maintained
534 F:      drivers/media/i2c/adp1653.c
535 F:      include/media/i2c/adp1653.h
536
537 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
538 M:      Michael Hennerich <michael.hennerich@analog.com>
539 S:      Supported
540 W:      http://wiki.analog.com/ADP5520
541 W:      http://ez.analog.com/community/linux-device-drivers
542 F:      drivers/gpio/gpio-adp5520.c
543 F:      drivers/input/keyboard/adp5520-keys.c
544 F:      drivers/leds/leds-adp5520.c
545 F:      drivers/mfd/adp5520.c
546 F:      drivers/video/backlight/adp5520_bl.c
547
548 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
549 M:      Michael Hennerich <michael.hennerich@analog.com>
550 S:      Supported
551 W:      http://wiki.analog.com/ADP5588
552 W:      http://ez.analog.com/community/linux-device-drivers
553 F:      drivers/gpio/gpio-adp5588.c
554 F:      drivers/input/keyboard/adp5588-keys.c
555
556 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
557 M:      Michael Hennerich <michael.hennerich@analog.com>
558 S:      Supported
559 W:      http://wiki.analog.com/ADP8860
560 W:      http://ez.analog.com/community/linux-device-drivers
561 F:      drivers/video/backlight/adp8860_bl.c
562
563 ADT746X FAN DRIVER
564 M:      Colin Leroy <colin@colino.net>
565 S:      Maintained
566 F:      drivers/macintosh/therm_adt746x.c
567
568 ADT7475 HARDWARE MONITOR DRIVER
569 M:      Jean Delvare <jdelvare@suse.com>
570 L:      linux-hwmon@vger.kernel.org
571 S:      Maintained
572 F:      Documentation/hwmon/adt7475.rst
573 F:      drivers/hwmon/adt7475.c
574
575 ADVANSYS SCSI DRIVER
576 M:      Matthew Wilcox <willy@infradead.org>
577 M:      Hannes Reinecke <hare@suse.com>
578 L:      linux-scsi@vger.kernel.org
579 S:      Maintained
580 F:      Documentation/scsi/advansys.rst
581 F:      drivers/scsi/advansys.c
582
583 ADVANTECH SWBTN DRIVER
584 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
585 L:      platform-driver-x86@vger.kernel.org
586 S:      Maintained
587 F:      drivers/platform/x86/adv_swbutton.c
588
589 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
590 M:      Michael Hennerich <michael.hennerich@analog.com>
591 S:      Supported
592 W:      http://wiki.analog.com/ADXL345
593 W:      http://ez.analog.com/community/linux-device-drivers
594 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
595 F:      drivers/input/misc/adxl34x.c
596
597 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
598 M:      Michael Hennerich <michael.hennerich@analog.com>
599 S:      Supported
600 W:      http://ez.analog.com/community/linux-device-drivers
601 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
602 F:      drivers/iio/accel/adxl372.c
603 F:      drivers/iio/accel/adxl372_i2c.c
604 F:      drivers/iio/accel/adxl372_spi.c
605
606 AF9013 MEDIA DRIVER
607 M:      Antti Palosaari <crope@iki.fi>
608 L:      linux-media@vger.kernel.org
609 S:      Maintained
610 W:      https://linuxtv.org
611 W:      http://palosaari.fi/linux/
612 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
613 T:      git git://linuxtv.org/anttip/media_tree.git
614 F:      drivers/media/dvb-frontends/af9013*
615
616 AF9033 MEDIA DRIVER
617 M:      Antti Palosaari <crope@iki.fi>
618 L:      linux-media@vger.kernel.org
619 S:      Maintained
620 W:      https://linuxtv.org
621 W:      http://palosaari.fi/linux/
622 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
623 T:      git git://linuxtv.org/anttip/media_tree.git
624 F:      drivers/media/dvb-frontends/af9033*
625
626 AFFS FILE SYSTEM
627 M:      David Sterba <dsterba@suse.com>
628 L:      linux-fsdevel@vger.kernel.org
629 S:      Odd Fixes
630 F:      Documentation/filesystems/affs.rst
631 F:      fs/affs/
632
633 AFS FILESYSTEM
634 M:      David Howells <dhowells@redhat.com>
635 M:      Marc Dionne <marc.dionne@auristor.com>
636 L:      linux-afs@lists.infradead.org
637 S:      Supported
638 W:      https://www.infradead.org/~dhowells/kafs/
639 F:      Documentation/filesystems/afs.rst
640 F:      fs/afs/
641 F:      include/trace/events/afs.h
642
643 AGPGART DRIVER
644 M:      David Airlie <airlied@linux.ie>
645 S:      Maintained
646 T:      git git://anongit.freedesktop.org/drm/drm
647 F:      drivers/char/agp/
648 F:      include/linux/agp*
649 F:      include/uapi/linux/agp*
650
651 AHA152X SCSI DRIVER
652 M:      "Juergen E. Fischer" <fischer@norbit.de>
653 L:      linux-scsi@vger.kernel.org
654 S:      Maintained
655 F:      drivers/scsi/aha152x*
656 F:      drivers/scsi/pcmcia/aha152x*
657
658 AIC7XXX / AIC79XX SCSI DRIVER
659 M:      Hannes Reinecke <hare@suse.com>
660 L:      linux-scsi@vger.kernel.org
661 S:      Maintained
662 F:      drivers/scsi/aic7xxx/
663
664 AIMSLAB FM RADIO RECEIVER DRIVER
665 M:      Hans Verkuil <hverkuil@xs4all.nl>
666 L:      linux-media@vger.kernel.org
667 S:      Maintained
668 W:      https://linuxtv.org
669 T:      git git://linuxtv.org/media_tree.git
670 F:      drivers/media/radio/radio-aimslab*
671
672 AIO
673 M:      Benjamin LaHaise <bcrl@kvack.org>
674 L:      linux-aio@kvack.org
675 S:      Supported
676 F:      fs/aio.c
677 F:      include/linux/*aio*.h
678
679 AIRSPY MEDIA DRIVER
680 M:      Antti Palosaari <crope@iki.fi>
681 L:      linux-media@vger.kernel.org
682 S:      Maintained
683 W:      https://linuxtv.org
684 W:      http://palosaari.fi/linux/
685 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
686 T:      git git://linuxtv.org/anttip/media_tree.git
687 F:      drivers/media/usb/airspy/
688
689 ALACRITECH GIGABIT ETHERNET DRIVER
690 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
691 S:      Maintained
692 F:      drivers/net/ethernet/alacritech/*
693
694 ALCATEL SPEEDTOUCH USB DRIVER
695 M:      Duncan Sands <duncan.sands@free.fr>
696 L:      linux-usb@vger.kernel.org
697 S:      Maintained
698 W:      http://www.linux-usb.org/SpeedTouch/
699 F:      drivers/usb/atm/speedtch.c
700 F:      drivers/usb/atm/usbatm.c
701
702 ALCHEMY AU1XX0 MMC DRIVER
703 M:      Manuel Lauss <manuel.lauss@gmail.com>
704 S:      Maintained
705 F:      drivers/mmc/host/au1xmmc.c
706
707 ALI1563 I2C DRIVER
708 M:      Rudolf Marek <r.marek@assembler.cz>
709 L:      linux-i2c@vger.kernel.org
710 S:      Maintained
711 F:      Documentation/i2c/busses/i2c-ali1563.rst
712 F:      drivers/i2c/busses/i2c-ali1563.c
713
714 ALIENWARE WMI DRIVER
715 L:      Dell.Client.Kernel@dell.com
716 S:      Maintained
717 F:      drivers/platform/x86/dell/alienware-wmi.c
718
719 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
720 M:      Tomislav Denis <tomislav.denis@avl.com>
721 L:      linux-iio@vger.kernel.org
722 S:      Maintained
723 W:      http://www.allsensors.com/
724 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
725 F:      drivers/iio/pressure/dlhl60d.c
726
727 ALLEGRO DVT VIDEO IP CORE DRIVER
728 M:      Michael Tretter <m.tretter@pengutronix.de>
729 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
730 L:      linux-media@vger.kernel.org
731 S:      Maintained
732 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
733 F:      drivers/media/platform/allegro-dvt/
734
735 ALLWINNER A10 CSI DRIVER
736 M:      Maxime Ripard <mripard@kernel.org>
737 L:      linux-media@vger.kernel.org
738 S:      Maintained
739 T:      git git://linuxtv.org/media_tree.git
740 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
741 F:      drivers/media/platform/sunxi/sun4i-csi/
742
743 ALLWINNER CPUFREQ DRIVER
744 M:      Yangtao Li <tiny.windzz@gmail.com>
745 L:      linux-pm@vger.kernel.org
746 S:      Maintained
747 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
748 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
749
750 ALLWINNER CRYPTO DRIVERS
751 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
752 L:      linux-crypto@vger.kernel.org
753 S:      Maintained
754 F:      drivers/crypto/allwinner/
755
756 ALLWINNER THERMAL DRIVER
757 M:      Vasily Khoruzhick <anarsoul@gmail.com>
758 M:      Yangtao Li <tiny.windzz@gmail.com>
759 L:      linux-pm@vger.kernel.org
760 S:      Maintained
761 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
762 F:      drivers/thermal/sun8i_thermal.c
763
764 ALLWINNER VPU DRIVER
765 M:      Maxime Ripard <mripard@kernel.org>
766 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
767 L:      linux-media@vger.kernel.org
768 S:      Maintained
769 F:      drivers/staging/media/sunxi/cedrus/
770
771 ALPHA PORT
772 M:      Richard Henderson <rth@twiddle.net>
773 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
774 M:      Matt Turner <mattst88@gmail.com>
775 L:      linux-alpha@vger.kernel.org
776 S:      Odd Fixes
777 F:      arch/alpha/
778
779 ALPS PS/2 TOUCHPAD DRIVER
780 R:      Pali Rohár <pali@kernel.org>
781 F:      drivers/input/mouse/alps.*
782
783 ALTERA I2C CONTROLLER DRIVER
784 M:      Thor Thayer <thor.thayer@linux.intel.com>
785 S:      Maintained
786 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
787 F:      drivers/i2c/busses/i2c-altera.c
788
789 ALTERA MAILBOX DRIVER
790 M:      Ley Foon Tan <ley.foon.tan@intel.com>
791 S:      Maintained
792 F:      drivers/mailbox/mailbox-altera.c
793
794 ALTERA MSGDMA IP CORE DRIVER
795 M:      Olivier Dautricourt <olivier.dautricourt@orolia.com>
796 R:      Stefan Roese <sr@denx.de>
797 L:      dmaengine@vger.kernel.org
798 S:      Odd Fixes
799 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
800 F:      drivers/dma/altera-msgdma.c
801
802 ALTERA PIO DRIVER
803 M:      Joyce Ooi <joyce.ooi@intel.com>
804 L:      linux-gpio@vger.kernel.org
805 S:      Maintained
806 F:      drivers/gpio/gpio-altera.c
807
808 ALTERA SYSTEM MANAGER DRIVER
809 M:      Thor Thayer <thor.thayer@linux.intel.com>
810 S:      Maintained
811 F:      drivers/mfd/altera-sysmgr.c
812 F:      include/linux/mfd/altera-sysmgr.h
813
814 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
815 M:      Thor Thayer <thor.thayer@linux.intel.com>
816 S:      Maintained
817 F:      drivers/gpio/gpio-altera-a10sr.c
818 F:      drivers/mfd/altera-a10sr.c
819 F:      drivers/reset/reset-a10sr.c
820 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
821 F:      include/linux/mfd/altera-a10sr.h
822
823 ALTERA TRIPLE SPEED ETHERNET DRIVER
824 M:      Joyce Ooi <joyce.ooi@intel.com>
825 L:      netdev@vger.kernel.org
826 S:      Maintained
827 F:      drivers/net/ethernet/altera/
828
829 ALTERA UART/JTAG UART SERIAL DRIVERS
830 M:      Tobias Klauser <tklauser@distanz.ch>
831 L:      linux-serial@vger.kernel.org
832 S:      Maintained
833 F:      drivers/tty/serial/altera_jtaguart.c
834 F:      drivers/tty/serial/altera_uart.c
835 F:      include/linux/altera_jtaguart.h
836 F:      include/linux/altera_uart.h
837
838 AMAZON ANNAPURNA LABS FIC DRIVER
839 M:      Talel Shenhar <talel@amazon.com>
840 S:      Maintained
841 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
842 F:      drivers/irqchip/irq-al-fic.c
843
844 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
845 M:      Talel Shenhar <talel@amazon.com>
846 M:      Talel Shenhar <talelshenhar@gmail.com>
847 S:      Maintained
848 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
849 F:      drivers/edac/al_mc_edac.c
850
851 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
852 M:      Talel Shenhar <talel@amazon.com>
853 S:      Maintained
854 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
855 F:      drivers/thermal/thermal_mmio.c
856
857 AMAZON ETHERNET DRIVERS
858 M:      Netanel Belgazal <netanel@amazon.com>
859 M:      Arthur Kiyanovski <akiyano@amazon.com>
860 R:      Guy Tzalik <gtzalik@amazon.com>
861 R:      Saeed Bishara <saeedb@amazon.com>
862 L:      netdev@vger.kernel.org
863 S:      Supported
864 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
865 F:      drivers/net/ethernet/amazon/
866
867 AMAZON RDMA EFA DRIVER
868 M:      Gal Pressman <galpress@amazon.com>
869 R:      Yossi Leybovich <sleybo@amazon.com>
870 L:      linux-rdma@vger.kernel.org
871 S:      Supported
872 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
873 F:      drivers/infiniband/hw/efa/
874 F:      include/uapi/rdma/efa-abi.h
875
876 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
877 M:      Tom Lendacky <thomas.lendacky@amd.com>
878 M:      John Allen <john.allen@amd.com>
879 L:      linux-crypto@vger.kernel.org
880 S:      Supported
881 F:      drivers/crypto/ccp/
882 F:      include/linux/ccp.h
883
884 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
885 M:      Brijesh Singh <brijesh.singh@amd.com>
886 M:      Tom Lendacky <thomas.lendacky@amd.com>
887 L:      linux-crypto@vger.kernel.org
888 S:      Supported
889 F:      drivers/crypto/ccp/sev*
890 F:      include/uapi/linux/psp-sev.h
891
892 AMD DISPLAY CORE
893 M:      Harry Wentland <harry.wentland@amd.com>
894 M:      Leo Li <sunpeng.li@amd.com>
895 L:      amd-gfx@lists.freedesktop.org
896 S:      Supported
897 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
898 F:      drivers/gpu/drm/amd/display/
899
900 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
901 M:      Huang Rui <ray.huang@amd.com>
902 L:      linux-hwmon@vger.kernel.org
903 S:      Supported
904 F:      Documentation/hwmon/fam15h_power.rst
905 F:      drivers/hwmon/fam15h_power.c
906
907 AMD FCH GPIO DRIVER
908 M:      Enrico Weigelt, metux IT consult <info@metux.net>
909 L:      linux-gpio@vger.kernel.org
910 S:      Maintained
911 F:      drivers/gpio/gpio-amd-fch.c
912 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
913
914 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
915 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
916 S:      Orphan
917 F:      drivers/usb/gadget/udc/amd5536udc.*
918
919 AMD GEODE PROCESSOR/CHIPSET SUPPORT
920 M:      Andres Salomon <dilinger@queued.net>
921 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
922 S:      Supported
923 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
924 F:      arch/x86/include/asm/geode.h
925 F:      drivers/char/hw_random/geode-rng.c
926 F:      drivers/crypto/geode*
927 F:      drivers/video/fbdev/geode/
928
929 AMD IOMMU (AMD-VI)
930 M:      Joerg Roedel <joro@8bytes.org>
931 L:      iommu@lists.linux-foundation.org
932 S:      Maintained
933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
934 F:      drivers/iommu/amd/
935 F:      include/linux/amd-iommu.h
936
937 AMD KFD
938 M:      Felix Kuehling <Felix.Kuehling@amd.com>
939 L:      amd-gfx@lists.freedesktop.org
940 S:      Supported
941 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
942 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
943 F:      drivers/gpu/drm/amd/amdkfd/
944 F:      drivers/gpu/drm/amd/include/cik_structs.h
945 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
946 F:      drivers/gpu/drm/amd/include/v9_structs.h
947 F:      drivers/gpu/drm/amd/include/vi_structs.h
948 F:      include/uapi/linux/kfd_ioctl.h
949
950 AMD SPI DRIVER
951 M:      Sanjay R Mehta <sanju.mehta@amd.com>
952 S:      Maintained
953 F:      drivers/spi/spi-amd.c
954
955 AMD MP2 I2C DRIVER
956 M:      Elie Morisse <syniurge@gmail.com>
957 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
958 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
959 L:      linux-i2c@vger.kernel.org
960 S:      Maintained
961 F:      drivers/i2c/busses/i2c-amd-mp2*
962
963 AMD PMC DRIVER
964 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
965 L:      platform-driver-x86@vger.kernel.org
966 S:      Maintained
967 F:      drivers/platform/x86/amd-pmc.*
968
969 AMD POWERPLAY
970 M:      Evan Quan <evan.quan@amd.com>
971 L:      amd-gfx@lists.freedesktop.org
972 S:      Supported
973 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
974 F:      drivers/gpu/drm/amd/pm/powerplay/
975
976 AMD SEATTLE DEVICE TREE SUPPORT
977 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
978 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
979 M:      Tom Lendacky <thomas.lendacky@amd.com>
980 S:      Supported
981 F:      arch/arm64/boot/dts/amd/
982
983 AMD XGBE DRIVER
984 M:      Tom Lendacky <thomas.lendacky@amd.com>
985 L:      netdev@vger.kernel.org
986 S:      Supported
987 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
988 F:      drivers/net/ethernet/amd/xgbe/
989
990 AMD SENSOR FUSION HUB DRIVER
991 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
992 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
993 L:      linux-input@vger.kernel.org
994 S:      Maintained
995 F:      Documentation/hid/amd-sfh*
996 F:      drivers/hid/amd-sfh-hid/
997
998 AMS AS73211 DRIVER
999 M:      Christian Eggers <ceggers@arri.de>
1000 L:      linux-iio@vger.kernel.org
1001 S:      Maintained
1002 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1003 F:      drivers/iio/light/as73211.c
1004
1005 ANALOG DEVICES INC AD7192 DRIVER
1006 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1007 L:      linux-iio@vger.kernel.org
1008 S:      Supported
1009 W:      http://ez.analog.com/community/linux-device-drivers
1010 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1011 F:      drivers/iio/adc/ad7192.c
1012
1013 ANALOG DEVICES INC AD7292 DRIVER
1014 M:      Marcelo Schmitt <marcelo.schmitt1@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,ad7292.yaml
1019 F:      drivers/iio/adc/ad7292.c
1020
1021 ANALOG DEVICES INC AD7768-1 DRIVER
1022 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1023 L:      linux-iio@vger.kernel.org
1024 S:      Supported
1025 W:      http://ez.analog.com/community/linux-device-drivers
1026 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1027 F:      drivers/iio/adc/ad7768-1.c
1028
1029 ANALOG DEVICES INC AD7780 DRIVER
1030 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1031 M:      Renato Lui Geh <renatogeh@gmail.com>
1032 L:      linux-iio@vger.kernel.org
1033 S:      Supported
1034 W:      http://ez.analog.com/community/linux-device-drivers
1035 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1036 F:      drivers/iio/adc/ad7780.c
1037
1038 ANALOG DEVICES INC AD9389B DRIVER
1039 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1040 L:      linux-media@vger.kernel.org
1041 S:      Maintained
1042 F:      drivers/media/i2c/ad9389b*
1043
1044 ANALOG DEVICES INC ADGS1408 DRIVER
1045 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1046 S:      Supported
1047 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1048 F:      drivers/mux/adgs1408.c
1049
1050 ANALOG DEVICES INC ADIN DRIVER
1051 M:      Michael Hennerich <michael.hennerich@analog.com>
1052 L:      netdev@vger.kernel.org
1053 S:      Supported
1054 W:      http://ez.analog.com/community/linux-device-drivers
1055 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1056 F:      drivers/net/phy/adin.c
1057
1058 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1059 M:      Nuno Sa <nuno.sa@analog.com>
1060 L:      linux-iio@vger.kernel.org
1061 S:      Supported
1062 F:      drivers/iio/imu/adis.c
1063 F:      include/linux/iio/imu/adis.h
1064
1065 ANALOG DEVICES INC ADIS16460 DRIVER
1066 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1067 L:      linux-iio@vger.kernel.org
1068 S:      Supported
1069 W:      http://ez.analog.com/community/linux-device-drivers
1070 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1071 F:      drivers/iio/imu/adis16460.c
1072
1073 ANALOG DEVICES INC ADIS16475 DRIVER
1074 M:      Nuno Sa <nuno.sa@analog.com>
1075 L:      linux-iio@vger.kernel.org
1076 W:      http://ez.analog.com/community/linux-device-drivers
1077 S:      Supported
1078 F:      drivers/iio/imu/adis16475.c
1079 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1080
1081 ANALOG DEVICES INC ADM1177 DRIVER
1082 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1083 L:      linux-hwmon@vger.kernel.org
1084 S:      Supported
1085 W:      http://ez.analog.com/community/linux-device-drivers
1086 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1087 F:      drivers/hwmon/adm1177.c
1088
1089 ANALOG DEVICES INC ADP5061 DRIVER
1090 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1091 L:      linux-pm@vger.kernel.org
1092 S:      Supported
1093 W:      http://ez.analog.com/community/linux-device-drivers
1094 F:      drivers/power/supply/adp5061.c
1095
1096 ANALOG DEVICES INC ADV7180 DRIVER
1097 M:      Lars-Peter Clausen <lars@metafoo.de>
1098 L:      linux-media@vger.kernel.org
1099 S:      Supported
1100 W:      http://ez.analog.com/community/linux-device-drivers
1101 F:      drivers/media/i2c/adv7180.c
1102 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1103
1104 ANALOG DEVICES INC ADV748X DRIVER
1105 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1106 L:      linux-media@vger.kernel.org
1107 S:      Maintained
1108 F:      drivers/media/i2c/adv748x/*
1109
1110 ANALOG DEVICES INC ADV7511 DRIVER
1111 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1112 L:      linux-media@vger.kernel.org
1113 S:      Maintained
1114 F:      drivers/media/i2c/adv7511*
1115
1116 ANALOG DEVICES INC ADV7604 DRIVER
1117 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1118 L:      linux-media@vger.kernel.org
1119 S:      Maintained
1120 F:      drivers/media/i2c/adv7604*
1121 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1122
1123 ANALOG DEVICES INC ADV7842 DRIVER
1124 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1125 L:      linux-media@vger.kernel.org
1126 S:      Maintained
1127 F:      drivers/media/i2c/adv7842*
1128
1129 ANALOG DEVICES INC ADXRS290 DRIVER
1130 M:      Nishant Malpani <nish.malpani25@gmail.com>
1131 L:      linux-iio@vger.kernel.org
1132 S:      Supported
1133 F:      drivers/iio/gyro/adxrs290.c
1134 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1135
1136 ANALOG DEVICES INC ASOC CODEC DRIVERS
1137 M:      Lars-Peter Clausen <lars@metafoo.de>
1138 M:      Nuno Sá <nuno.sa@analog.com>
1139 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1140 S:      Supported
1141 W:      http://wiki.analog.com/
1142 W:      http://ez.analog.com/community/linux-device-drivers
1143 F:      sound/soc/codecs/ad1*
1144 F:      sound/soc/codecs/ad7*
1145 F:      sound/soc/codecs/adau*
1146 F:      sound/soc/codecs/adav*
1147 F:      sound/soc/codecs/sigmadsp.*
1148 F:      sound/soc/codecs/ssm*
1149
1150 ANALOG DEVICES INC DMA DRIVERS
1151 M:      Lars-Peter Clausen <lars@metafoo.de>
1152 S:      Supported
1153 W:      http://ez.analog.com/community/linux-device-drivers
1154 F:      drivers/dma/dma-axi-dmac.c
1155
1156 ANALOG DEVICES INC IIO DRIVERS
1157 M:      Lars-Peter Clausen <lars@metafoo.de>
1158 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1159 S:      Supported
1160 W:      http://wiki.analog.com/
1161 W:      http://ez.analog.com/community/linux-device-drivers
1162 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1163 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1164 F:      Documentation/devicetree/bindings/iio/*/adi,*
1165 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1166 F:      drivers/iio/*/ad*
1167 F:      drivers/iio/adc/ltc249*
1168 F:      drivers/iio/amplifiers/hmc425a.c
1169 F:      drivers/staging/iio/*/ad*
1170 X:      drivers/iio/*/adjd*
1171
1172 ANALOGBITS PLL LIBRARIES
1173 M:      Paul Walmsley <paul.walmsley@sifive.com>
1174 S:      Supported
1175 F:      drivers/clk/analogbits/*
1176 F:      include/linux/clk/analogbits*
1177
1178 ANDES ARCHITECTURE
1179 M:      Nick Hu <nickhu@andestech.com>
1180 M:      Greentime Hu <green.hu@gmail.com>
1181 M:      Vincent Chen <deanbo422@gmail.com>
1182 S:      Supported
1183 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1184 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1185 F:      Documentation/devicetree/bindings/nds32/
1186 F:      arch/nds32/
1187 N:      nds32
1188 K:      nds32
1189
1190 ANDROID CONFIG FRAGMENTS
1191 M:      Rob Herring <robh@kernel.org>
1192 S:      Supported
1193 F:      kernel/configs/android*
1194
1195 ANDROID DRIVERS
1196 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1197 M:      Arve Hjønnevåg <arve@android.com>
1198 M:      Todd Kjos <tkjos@android.com>
1199 M:      Martijn Coenen <maco@android.com>
1200 M:      Joel Fernandes <joel@joelfernandes.org>
1201 M:      Christian Brauner <christian@brauner.io>
1202 M:      Hridya Valsaraju <hridya@google.com>
1203 M:      Suren Baghdasaryan <surenb@google.com>
1204 L:      linux-kernel@vger.kernel.org
1205 S:      Supported
1206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1207 F:      drivers/android/
1208 F:      drivers/staging/android/
1209
1210 ANDROID GOLDFISH PIC DRIVER
1211 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1212 S:      Supported
1213 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1214 F:      drivers/irqchip/irq-goldfish-pic.c
1215
1216 ANDROID GOLDFISH RTC DRIVER
1217 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1218 S:      Supported
1219 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1220 F:      drivers/rtc/rtc-goldfish.c
1221
1222 AOA (Apple Onboard Audio) ALSA DRIVER
1223 M:      Johannes Berg <johannes@sipsolutions.net>
1224 L:      linuxppc-dev@lists.ozlabs.org
1225 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1226 S:      Maintained
1227 F:      sound/aoa/
1228
1229 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1230 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1231 L:      linux-iio@vger.kernel.org
1232 S:      Maintained
1233 F:      drivers/iio/adc/stx104.c
1234
1235 APM DRIVER
1236 M:      Jiri Kosina <jikos@kernel.org>
1237 S:      Odd fixes
1238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1239 F:      arch/x86/kernel/apm_32.c
1240 F:      drivers/char/apm-emulation.c
1241 F:      include/linux/apm_bios.h
1242 F:      include/uapi/linux/apm_bios.h
1243
1244 APPARMOR SECURITY MODULE
1245 M:      John Johansen <john.johansen@canonical.com>
1246 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1247 S:      Supported
1248 W:      wiki.apparmor.net
1249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1250 F:      Documentation/admin-guide/LSM/apparmor.rst
1251 F:      security/apparmor/
1252
1253 APPLE BCM5974 MULTITOUCH DRIVER
1254 M:      Henrik Rydberg <rydberg@bitmath.org>
1255 L:      linux-input@vger.kernel.org
1256 S:      Odd fixes
1257 F:      drivers/input/mouse/bcm5974.c
1258
1259 APPLE SMC DRIVER
1260 M:      Henrik Rydberg <rydberg@bitmath.org>
1261 L:      linux-hwmon@vger.kernel.org
1262 S:      Odd fixes
1263 F:      drivers/hwmon/applesmc.c
1264
1265 APPLETALK NETWORK LAYER
1266 L:      netdev@vger.kernel.org
1267 S:      Odd fixes
1268 F:      drivers/net/appletalk/
1269 F:      include/linux/atalk.h
1270 F:      include/uapi/linux/atalk.h
1271 F:      net/appletalk/
1272
1273 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1274 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1275 S:      Supported
1276 F:      arch/arm64/boot/dts/apm/
1277
1278 APPLIED MICRO (APM) X-GENE SOC EDAC
1279 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1280 S:      Supported
1281 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1282 F:      drivers/edac/xgene_edac.c
1283
1284 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1285 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1286 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1287 S:      Supported
1288 F:      drivers/net/ethernet/apm/xgene-v2/
1289
1290 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1291 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1292 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1293 M:      Quan Nguyen <quan@os.amperecomputing.com>
1294 S:      Supported
1295 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1296 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1297 F:      drivers/net/ethernet/apm/xgene/
1298 F:      drivers/net/mdio/mdio-xgene.c
1299
1300 APPLIED MICRO (APM) X-GENE SOC PMU
1301 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1302 S:      Supported
1303 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1304 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1305 F:      drivers/perf/xgene_pmu.c
1306
1307 APTINA CAMERA SENSOR PLL
1308 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1309 L:      linux-media@vger.kernel.org
1310 S:      Maintained
1311 F:      drivers/media/i2c/aptina-pll.*
1312
1313 AQUANTIA ETHERNET DRIVER (atlantic)
1314 M:      Igor Russkikh <irusskikh@marvell.com>
1315 L:      netdev@vger.kernel.org
1316 S:      Supported
1317 W:      https://www.marvell.com/
1318 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1319 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1320 F:      drivers/net/ethernet/aquantia/atlantic/
1321
1322 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1323 M:      Egor Pomozov <epomozov@marvell.com>
1324 L:      netdev@vger.kernel.org
1325 S:      Supported
1326 W:      http://www.aquantia.com
1327 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1328
1329 ARASAN NAND CONTROLLER DRIVER
1330 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1331 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1332 L:      linux-mtd@lists.infradead.org
1333 S:      Maintained
1334 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1335 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1336
1337 ARC FRAMEBUFFER DRIVER
1338 M:      Jaya Kumar <jayalk@intworks.biz>
1339 S:      Maintained
1340 F:      drivers/video/fbdev/arcfb.c
1341 F:      drivers/video/fbdev/core/fb_defio.c
1342
1343 ARC PGU DRM DRIVER
1344 M:      Alexey Brodkin <abrodkin@synopsys.com>
1345 S:      Supported
1346 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1347 F:      drivers/gpu/drm/tiny/arcpgu.c
1348
1349 ARCNET NETWORK LAYER
1350 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1351 L:      netdev@vger.kernel.org
1352 S:      Maintained
1353 F:      drivers/net/arcnet/
1354 F:      include/uapi/linux/if_arcnet.h
1355
1356 ARM ARCHITECTED TIMER DRIVER
1357 M:      Mark Rutland <mark.rutland@arm.com>
1358 M:      Marc Zyngier <maz@kernel.org>
1359 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1360 S:      Maintained
1361 F:      arch/arm/include/asm/arch_timer.h
1362 F:      arch/arm64/include/asm/arch_timer.h
1363 F:      drivers/clocksource/arm_arch_timer.c
1364
1365 ARM HDLCD DRM DRIVER
1366 M:      Liviu Dudau <liviu.dudau@arm.com>
1367 S:      Supported
1368 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1369 F:      drivers/gpu/drm/arm/hdlcd_*
1370
1371 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1372 M:      Linus Walleij <linus.walleij@linaro.org>
1373 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1374 S:      Maintained
1375 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1376 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1377 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1378 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1379 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1380 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1381 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1382 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1383 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1384 F:      arch/arm/boot/dts/arm-realview-*
1385 F:      arch/arm/boot/dts/integrator*
1386 F:      arch/arm/boot/dts/versatile*
1387 F:      arch/arm/mach-integrator/
1388 F:      arch/arm/mach-realview/
1389 F:      arch/arm/mach-versatile/
1390 F:      arch/arm/plat-versatile/
1391 F:      drivers/bus/arm-integrator-lm.c
1392 F:      drivers/clk/versatile/
1393 F:      drivers/i2c/busses/i2c-versatile.c
1394 F:      drivers/irqchip/irq-versatile-fpga.c
1395 F:      drivers/mtd/maps/physmap-versatile.*
1396 F:      drivers/power/reset/arm-versatile-reboot.c
1397 F:      drivers/soc/versatile/
1398
1399 ARM KOMEDA DRM-KMS DRIVER
1400 M:      James (Qian) Wang <james.qian.wang@arm.com>
1401 M:      Liviu Dudau <liviu.dudau@arm.com>
1402 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1403 L:      Mali DP Maintainers <malidp@foss.arm.com>
1404 S:      Supported
1405 T:      git git://anongit.freedesktop.org/drm/drm-misc
1406 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1407 F:      Documentation/gpu/komeda-kms.rst
1408 F:      drivers/gpu/drm/arm/display/include/
1409 F:      drivers/gpu/drm/arm/display/komeda/
1410
1411 ARM MALI PANFROST DRM DRIVER
1412 M:      Rob Herring <robh@kernel.org>
1413 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1414 R:      Steven Price <steven.price@arm.com>
1415 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1416 L:      dri-devel@lists.freedesktop.org
1417 S:      Supported
1418 T:      git git://anongit.freedesktop.org/drm/drm-misc
1419 F:      drivers/gpu/drm/panfrost/
1420 F:      include/uapi/drm/panfrost_drm.h
1421
1422 ARM MALI-DP DRM DRIVER
1423 M:      Liviu Dudau <liviu.dudau@arm.com>
1424 M:      Brian Starkey <brian.starkey@arm.com>
1425 L:      Mali DP Maintainers <malidp@foss.arm.com>
1426 S:      Supported
1427 T:      git git://anongit.freedesktop.org/drm/drm-misc
1428 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1429 F:      Documentation/gpu/afbc.rst
1430 F:      drivers/gpu/drm/arm/
1431
1432 ARM MFM AND FLOPPY DRIVERS
1433 M:      Ian Molton <spyro@f2s.com>
1434 S:      Maintained
1435 F:      arch/arm/include/asm/floppy.h
1436 F:      arch/arm/mach-rpc/floppydma.S
1437
1438 ARM PMU PROFILING AND DEBUGGING
1439 M:      Will Deacon <will@kernel.org>
1440 M:      Mark Rutland <mark.rutland@arm.com>
1441 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1442 S:      Maintained
1443 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1444 F:      Documentation/devicetree/bindings/perf/
1445 F:      arch/arm*/include/asm/hw_breakpoint.h
1446 F:      arch/arm*/include/asm/perf_event.h
1447 F:      arch/arm*/kernel/hw_breakpoint.c
1448 F:      arch/arm*/kernel/perf_*
1449 F:      drivers/perf/
1450 F:      include/linux/perf/arm_pmu.h
1451
1452 ARM PORT
1453 M:      Russell King <linux@armlinux.org.uk>
1454 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1455 S:      Odd Fixes
1456 W:      http://www.armlinux.org.uk/
1457 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1458 F:      arch/arm/
1459 X:      arch/arm/boot/dts/
1460
1461 ARM PRIMECELL AACI PL041 DRIVER
1462 M:      Russell King <linux@armlinux.org.uk>
1463 S:      Odd Fixes
1464 F:      sound/arm/aaci.*
1465
1466 ARM PRIMECELL BUS SUPPORT
1467 M:      Russell King <linux@armlinux.org.uk>
1468 S:      Odd Fixes
1469 F:      drivers/amba/
1470 F:      include/linux/amba/bus.h
1471
1472 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1473 M:      Miquel Raynal <miquel.raynal@bootlin.com@bootlin.com>
1474 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1475 L:      linux-mtd@lists.infradead.org
1476 S:      Maintained
1477 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1478 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1479
1480 ARM PRIMECELL PL35X SMC DRIVER
1481 M:      Miquel Raynal <miquel.raynal@bootlin.com@bootlin.com>
1482 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1483 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1484 S:      Maintained
1485 F:      Documentation/devicetree/bindings/mtd/arm,pl353-smc.yaml
1486 F:      drivers/memory/pl353-smc.c
1487
1488 ARM PRIMECELL CLCD PL110 DRIVER
1489 M:      Russell King <linux@armlinux.org.uk>
1490 S:      Odd Fixes
1491 F:      drivers/video/fbdev/amba-clcd.*
1492
1493 ARM PRIMECELL KMI PL050 DRIVER
1494 M:      Russell King <linux@armlinux.org.uk>
1495 S:      Odd Fixes
1496 F:      drivers/input/serio/ambakmi.*
1497 F:      include/linux/amba/kmi.h
1498
1499 ARM PRIMECELL MMCI PL180/1 DRIVER
1500 M:      Russell King <linux@armlinux.org.uk>
1501 S:      Odd Fixes
1502 F:      drivers/mmc/host/mmci.*
1503 F:      include/linux/amba/mmci.h
1504
1505 ARM PRIMECELL SSP PL022 SPI DRIVER
1506 M:      Linus Walleij <linus.walleij@linaro.org>
1507 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1508 S:      Maintained
1509 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1510 F:      drivers/spi/spi-pl022.c
1511
1512 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1513 M:      Russell King <linux@armlinux.org.uk>
1514 S:      Odd Fixes
1515 F:      drivers/tty/serial/amba-pl01*.c
1516 F:      include/linux/amba/serial.h
1517
1518 ARM PRIMECELL VIC PL190/PL192 DRIVER
1519 M:      Linus Walleij <linus.walleij@linaro.org>
1520 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1521 S:      Maintained
1522 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1523 F:      drivers/irqchip/irq-vic.c
1524
1525 ARM SMC WATCHDOG DRIVER
1526 M:      Julius Werner <jwerner@chromium.org>
1527 R:      Evan Benn <evanbenn@chromium.org>
1528 S:      Maintained
1529 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1530 F:      drivers/watchdog/arm_smc_wdt.c
1531
1532 ARM SMMU DRIVERS
1533 M:      Will Deacon <will@kernel.org>
1534 R:      Robin Murphy <robin.murphy@arm.com>
1535 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1536 S:      Maintained
1537 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1538 F:      drivers/iommu/arm/
1539 F:      drivers/iommu/io-pgtable-arm*
1540
1541 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1542 M:      Arnd Bergmann <arnd@arndb.de>
1543 M:      Olof Johansson <olof@lixom.net>
1544 M:      soc@kernel.org
1545 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1546 S:      Maintained
1547 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1548 F:      arch/arm/boot/dts/Makefile
1549 F:      arch/arm64/boot/dts/Makefile
1550
1551 ARM SUB-ARCHITECTURES
1552 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1553 S:      Maintained
1554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1555 F:      arch/arm/mach-*/
1556 F:      arch/arm/plat-*/
1557
1558 ARM/ACTIONS SEMI ARCHITECTURE
1559 M:      Andreas Färber <afaerber@suse.de>
1560 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1561 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1562 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1563 S:      Maintained
1564 F:      Documentation/devicetree/bindings/arm/actions.yaml
1565 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1566 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1567 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1568 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1569 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1570 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1571 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1572 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1573 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1574 F:      arch/arm/boot/dts/owl-*
1575 F:      arch/arm/mach-actions/
1576 F:      arch/arm64/boot/dts/actions/
1577 F:      drivers/clk/actions/
1578 F:      drivers/clocksource/timer-owl*
1579 F:      drivers/dma/owl-dma.c
1580 F:      drivers/i2c/busses/i2c-owl.c
1581 F:      drivers/irqchip/irq-owl-sirq.c
1582 F:      drivers/mmc/host/owl-mmc.c
1583 F:      drivers/net/ethernet/actions/
1584 F:      drivers/pinctrl/actions/*
1585 F:      drivers/soc/actions/
1586 F:      include/dt-bindings/power/owl-*
1587 F:      include/dt-bindings/reset/actions,*
1588 F:      include/linux/soc/actions/
1589 N:      owl
1590
1591 ARM/ADS SPHERE MACHINE SUPPORT
1592 M:      Lennert Buytenhek <kernel@wantstofly.org>
1593 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1594 S:      Maintained
1595
1596 ARM/AFEB9260 MACHINE SUPPORT
1597 M:      Sergey Lapin <slapin@ossfans.org>
1598 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1599 S:      Maintained
1600
1601 ARM/AJECO 1ARM MACHINE SUPPORT
1602 M:      Lennert Buytenhek <kernel@wantstofly.org>
1603 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1604 S:      Maintained
1605
1606 ARM/Allwinner SoC Clock Support
1607 M:      Emilio López <emilio@elopez.com.ar>
1608 S:      Maintained
1609 F:      drivers/clk/sunxi/
1610
1611 ARM/Allwinner sunXi SoC support
1612 M:      Maxime Ripard <mripard@kernel.org>
1613 M:      Chen-Yu Tsai <wens@csie.org>
1614 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
1615 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1616 S:      Maintained
1617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1618 L:      linux-sunxi@lists.linux.dev
1619 F:      arch/arm/mach-sunxi/
1620 F:      arch/arm64/boot/dts/allwinner/
1621 F:      drivers/clk/sunxi-ng/
1622 F:      drivers/pinctrl/sunxi/
1623 F:      drivers/soc/sunxi/
1624 N:      allwinner
1625 N:      sun[x456789]i
1626 N:      sun50i
1627
1628 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1629 M:      Neil Armstrong <narmstrong@baylibre.com>
1630 M:      Jerome Brunet <jbrunet@baylibre.com>
1631 L:      linux-amlogic@lists.infradead.org
1632 S:      Maintained
1633 F:      Documentation/devicetree/bindings/clock/amlogic*
1634 F:      drivers/clk/meson/
1635 F:      include/dt-bindings/clock/gxbb*
1636 F:      include/dt-bindings/clock/meson*
1637
1638 ARM/Amlogic Meson SoC Crypto Drivers
1639 M:      Corentin Labbe <clabbe@baylibre.com>
1640 L:      linux-crypto@vger.kernel.org
1641 L:      linux-amlogic@lists.infradead.org
1642 S:      Maintained
1643 F:      Documentation/devicetree/bindings/crypto/amlogic*
1644 F:      drivers/crypto/amlogic/
1645
1646 ARM/Amlogic Meson SoC Sound Drivers
1647 M:      Jerome Brunet <jbrunet@baylibre.com>
1648 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1649 S:      Maintained
1650 F:      Documentation/devicetree/bindings/sound/amlogic*
1651 F:      sound/soc/meson/
1652
1653 ARM/Amlogic Meson SoC support
1654 M:      Neil Armstrong <narmstrong@baylibre.com>
1655 M:      Kevin Hilman <khilman@baylibre.com>
1656 R:      Jerome Brunet <jbrunet@baylibre.com>
1657 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1658 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1659 L:      linux-amlogic@lists.infradead.org
1660 S:      Maintained
1661 W:      http://linux-meson.com/
1662 F:      arch/arm/boot/dts/meson*
1663 F:      arch/arm/mach-meson/
1664 F:      arch/arm64/boot/dts/amlogic/
1665 F:      drivers/mmc/host/meson*
1666 F:      drivers/pinctrl/meson/
1667 F:      drivers/rtc/rtc-meson*
1668 F:      drivers/soc/amlogic/
1669 N:      meson
1670
1671 ARM/Annapurna Labs ALPINE ARCHITECTURE
1672 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1673 M:      Antoine Tenart <atenart@kernel.org>
1674 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1675 S:      Maintained
1676 F:      arch/arm/boot/dts/alpine*
1677 F:      arch/arm/mach-alpine/
1678 F:      arch/arm64/boot/dts/amazon/
1679 F:      drivers/*/*alpine*
1680
1681 ARM/APPLE MACHINE SUPPORT
1682 M:      Hector Martin <marcan@marcan.st>
1683 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1684 S:      Maintained
1685 W:      https://asahilinux.org
1686 B:      https://github.com/AsahiLinux/linux/issues
1687 C:      irc://chat.freenode.net/asahi-dev
1688 T:      git https://github.com/AsahiLinux/linux.git
1689 F:      Documentation/devicetree/bindings/arm/apple.yaml
1690 F:      Documentation/devicetree/bindings/interrupt-controller/apple,aic.yaml
1691 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1692 F:      arch/arm64/boot/dts/apple/
1693 F:      drivers/irqchip/irq-apple-aic.c
1694 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1695 F:      include/dt-bindings/pinctrl/apple.h
1696
1697 ARM/ARTPEC MACHINE SUPPORT
1698 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1699 M:      Lars Persson <lars.persson@axis.com>
1700 L:      linux-arm-kernel@axis.com
1701 S:      Maintained
1702 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1703 F:      arch/arm/boot/dts/artpec6*
1704 F:      arch/arm/mach-artpec
1705 F:      drivers/clk/axis
1706 F:      drivers/crypto/axis
1707 F:      drivers/mmc/host/usdhi6rol0.c
1708 F:      drivers/pinctrl/pinctrl-artpec*
1709
1710 ARM/ASPEED I2C DRIVER
1711 M:      Brendan Higgins <brendanhiggins@google.com>
1712 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1713 R:      Joel Stanley <joel@jms.id.au>
1714 L:      linux-i2c@vger.kernel.org
1715 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1716 S:      Maintained
1717 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1718 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1719 F:      drivers/i2c/busses/i2c-aspeed.c
1720 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1721
1722 ARM/ASPEED MACHINE SUPPORT
1723 M:      Joel Stanley <joel@jms.id.au>
1724 R:      Andrew Jeffery <andrew@aj.id.au>
1725 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1726 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1727 S:      Supported
1728 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1730 F:      arch/arm/boot/dts/aspeed-*
1731 F:      arch/arm/mach-aspeed/
1732 N:      aspeed
1733
1734 ARM/BITMAIN ARCHITECTURE
1735 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1736 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1737 S:      Maintained
1738 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1739 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1740 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1741 F:      arch/arm64/boot/dts/bitmain/
1742 F:      drivers/clk/clk-bm1880.c
1743 F:      drivers/pinctrl/pinctrl-bm1880.c
1744
1745 ARM/CALXEDA HIGHBANK ARCHITECTURE
1746 M:      Andre Przywara <andre.przywara@arm.com>
1747 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1748 S:      Maintained
1749 F:      arch/arm/boot/dts/ecx-*.dts*
1750 F:      arch/arm/boot/dts/highbank.dts
1751 F:      arch/arm/mach-highbank/
1752
1753 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1754 M:      Krzysztof Halasa <khalasa@piap.pl>
1755 S:      Maintained
1756 F:      arch/arm/mach-cns3xxx/
1757
1758 ARM/CAVIUM THUNDER NETWORK DRIVER
1759 M:      Sunil Goutham <sgoutham@marvell.com>
1760 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1761 S:      Supported
1762 F:      drivers/net/ethernet/cavium/thunder/
1763
1764 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1765 M:      Lukasz Majewski <lukma@denx.de>
1766 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1767 S:      Maintained
1768 F:      arch/arm/mach-ep93xx/ts72xx.c
1769
1770 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1771 M:      Alexander Shiyan <shc_work@mail.ru>
1772 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1773 S:      Odd Fixes
1774 N:      clps711x
1775
1776 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1777 M:      Lennert Buytenhek <kernel@wantstofly.org>
1778 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1779 S:      Maintained
1780
1781 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1782 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1783 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1784 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1785 S:      Maintained
1786 F:      arch/arm/mach-ep93xx/
1787 F:      arch/arm/mach-ep93xx/include/mach/
1788
1789 ARM/CLKDEV SUPPORT
1790 M:      Russell King <linux@armlinux.org.uk>
1791 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1792 S:      Maintained
1793 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1794 F:      drivers/clk/clkdev.c
1795
1796 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1797 M:      Baruch Siach <baruch@tkos.co.il>
1798 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1799 S:      Maintained
1800 F:      arch/arm/boot/dts/cx92755*
1801 N:      digicolor
1802
1803 ARM/CONTEC MICRO9 MACHINE SUPPORT
1804 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1805 S:      Maintained
1806 F:      arch/arm/mach-ep93xx/micro9.c
1807
1808 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1809 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1810 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1811 R:      Mike Leach <mike.leach@linaro.org>
1812 R:      Leo Yan <leo.yan@linaro.org>
1813 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1814 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1815 S:      Maintained
1816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1817 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1818 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1819 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1820 F:      Documentation/devicetree/bindings/arm/coresight.txt
1821 F:      Documentation/devicetree/bindings/arm/ete.yaml
1822 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1823 F:      Documentation/trace/coresight/*
1824 F:      drivers/hwtracing/coresight/*
1825 F:      include/dt-bindings/arm/coresight-cti-dt.h
1826 F:      include/linux/coresight*
1827 F:      tools/perf/arch/arm/util/auxtrace.c
1828 F:      tools/perf/arch/arm/util/cs-etm.c
1829 F:      tools/perf/arch/arm/util/cs-etm.h
1830 F:      tools/perf/arch/arm/util/pmu.c
1831 F:      tools/perf/util/cs-etm-decoder/*
1832 F:      tools/perf/util/cs-etm.*
1833
1834 ARM/CORGI MACHINE SUPPORT
1835 M:      Richard Purdie <rpurdie@rpsys.net>
1836 S:      Maintained
1837
1838 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1839 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1840 M:      Linus Walleij <linus.walleij@linaro.org>
1841 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1842 S:      Maintained
1843 T:      git git://github.com/ulli-kroll/linux.git
1844 F:      Documentation/devicetree/bindings/arm/gemini.txt
1845 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1846 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1847 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1848 F:      arch/arm/mach-gemini/
1849 F:      drivers/crypto/gemini/
1850 F:      drivers/net/ethernet/cortina/
1851 F:      drivers/pinctrl/pinctrl-gemini.c
1852 F:      drivers/rtc/rtc-ftrtc010.c
1853
1854 ARM/CZ.NIC TURRIS SUPPORT
1855 M:      Marek Behún <kabel@kernel.org>
1856 S:      Maintained
1857 W:      https://www.turris.cz/
1858 F:      Documentation/ABI/testing/debugfs-moxtet
1859 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1860 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1861 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1862 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1863 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1864 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1865 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1866 F:      drivers/bus/moxtet.c
1867 F:      drivers/firmware/turris-mox-rwtm.c
1868 F:      drivers/leds/leds-turris-omnia.c
1869 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
1870 F:      drivers/gpio/gpio-moxtet.c
1871 F:      drivers/watchdog/armada_37xx_wdt.c
1872 F:      include/dt-bindings/bus/moxtet.h
1873 F:      include/linux/armada-37xx-rwtm-mailbox.h
1874 F:      include/linux/moxtet.h
1875
1876 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1877 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1878 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1879 S:      Maintained
1880 F:      arch/arm/mach-pxa/ezx.c
1881
1882 ARM/FARADAY FA526 PORT
1883 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1884 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1885 S:      Maintained
1886 T:      git git://git.berlios.de/gemini-board
1887 F:      arch/arm/mm/*-fa*
1888
1889 ARM/FOOTBRIDGE ARCHITECTURE
1890 M:      Russell King <linux@armlinux.org.uk>
1891 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1892 S:      Maintained
1893 W:      http://www.armlinux.org.uk/
1894 F:      arch/arm/include/asm/hardware/dec21285.h
1895 F:      arch/arm/mach-footbridge/
1896
1897 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1898 M:      Shawn Guo <shawnguo@kernel.org>
1899 M:      Sascha Hauer <s.hauer@pengutronix.de>
1900 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1901 R:      Fabio Estevam <festevam@gmail.com>
1902 R:      NXP Linux Team <linux-imx@nxp.com>
1903 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1904 S:      Maintained
1905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1906 X:      drivers/media/i2c/
1907 N:      imx
1908 N:      mxs
1909
1910 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1911 M:      Shawn Guo <shawnguo@kernel.org>
1912 M:      Li Yang <leoyang.li@nxp.com>
1913 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1914 S:      Maintained
1915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1916 F:      arch/arm/boot/dts/ls1021a*
1917 F:      arch/arm64/boot/dts/freescale/fsl-*
1918 F:      arch/arm64/boot/dts/freescale/qoriq-*
1919
1920 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1921 M:      Shawn Guo <shawnguo@kernel.org>
1922 M:      Sascha Hauer <s.hauer@pengutronix.de>
1923 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1924 R:      Stefan Agner <stefan@agner.ch>
1925 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1926 S:      Maintained
1927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1928 F:      arch/arm/boot/dts/vf*
1929 F:      arch/arm/mach-imx/*vf610*
1930
1931 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1932 M:      Lennert Buytenhek <kernel@wantstofly.org>
1933 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1934 S:      Maintained
1935
1936 ARM/GUMSTIX MACHINE SUPPORT
1937 M:      Steve Sakoman <sakoman@gmail.com>
1938 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1939 S:      Maintained
1940
1941 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1942 M:      Philipp Zabel <philipp.zabel@gmail.com>
1943 M:      Paul Parsons <lost.distance@yahoo.com>
1944 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1945 S:      Maintained
1946 F:      arch/arm/mach-pxa/hx4700.c
1947 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1948 F:      sound/soc/pxa/hx4700.c
1949
1950 ARM/HISILICON SOC SUPPORT
1951 M:      Wei Xu <xuwei5@hisilicon.com>
1952 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1953 S:      Supported
1954 W:      http://www.hisilicon.com
1955 T:      git git://github.com/hisilicon/linux-hisi.git
1956 F:      arch/arm/boot/dts/hi3*
1957 F:      arch/arm/boot/dts/hip*
1958 F:      arch/arm/boot/dts/hisi*
1959 F:      arch/arm/mach-hisi/
1960 F:      arch/arm64/boot/dts/hisilicon/
1961
1962 ARM/HP JORNADA 7XX MACHINE SUPPORT
1963 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1964 S:      Maintained
1965 W:      www.jlime.com
1966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1967 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1968 F:      arch/arm/mach-sa1100/jornada720.c
1969
1970 ARM/IGEP MACHINE SUPPORT
1971 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1972 M:      Javier Martinez Canillas <javier@dowhile0.org>
1973 L:      linux-omap@vger.kernel.org
1974 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1975 S:      Maintained
1976 F:      arch/arm/boot/dts/omap3-igep*
1977
1978 ARM/INCOME PXA270 SUPPORT
1979 M:      Marek Vasut <marek.vasut@gmail.com>
1980 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1981 S:      Maintained
1982 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1983
1984 ARM/INTEL IOP32X ARM ARCHITECTURE
1985 M:      Lennert Buytenhek <kernel@wantstofly.org>
1986 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1987 S:      Maintained
1988
1989 ARM/INTEL IQ81342EX MACHINE SUPPORT
1990 M:      Lennert Buytenhek <kernel@wantstofly.org>
1991 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1992 S:      Maintained
1993
1994 ARM/INTEL IXDP2850 MACHINE SUPPORT
1995 M:      Lennert Buytenhek <kernel@wantstofly.org>
1996 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1997 S:      Maintained
1998
1999 ARM/INTEL IXP4XX ARM ARCHITECTURE
2000 M:      Linus Walleij <linusw@kernel.org>
2001 M:      Imre Kaloz <kaloz@openwrt.org>
2002 M:      Krzysztof Halasa <khalasa@piap.pl>
2003 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2004 S:      Maintained
2005 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2006 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2007 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2008 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2009 F:      arch/arm/mach-ixp4xx/
2010 F:      drivers/clocksource/timer-ixp4xx.c
2011 F:      drivers/crypto/ixp4xx_crypto.c
2012 F:      drivers/gpio/gpio-ixp4xx.c
2013 F:      drivers/irqchip/irq-ixp4xx.c
2014 F:      include/linux/irqchip/irq-ixp4xx.h
2015 F:      include/linux/platform_data/timer-ixp4xx.h
2016
2017 ARM/INTEL KEEMBAY ARCHITECTURE
2018 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2019 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2020 S:      Maintained
2021 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2022 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2023 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2024
2025 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
2026 M:      Jonathan Cameron <jic23@cam.ac.uk>
2027 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2028 S:      Maintained
2029 F:      arch/arm/mach-pxa/stargate2.c
2030 F:      drivers/pcmcia/pxa2xx_stargate2.c
2031
2032 ARM/INTEL XSC3 (MANZANO) ARM CORE
2033 M:      Lennert Buytenhek <kernel@wantstofly.org>
2034 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2035 S:      Maintained
2036
2037 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2038 M:      Lennert Buytenhek <kernel@wantstofly.org>
2039 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2040 S:      Maintained
2041
2042 ARM/LG1K ARCHITECTURE
2043 M:      Chanho Min <chanho.min@lge.com>
2044 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2045 S:      Maintained
2046 F:      arch/arm64/boot/dts/lg/
2047
2048 ARM/LOGICPD PXA270 MACHINE SUPPORT
2049 M:      Lennert Buytenhek <kernel@wantstofly.org>
2050 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2051 S:      Maintained
2052
2053 ARM/LPC18XX ARCHITECTURE
2054 M:      Vladimir Zapolskiy <vz@mleia.com>
2055 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2056 S:      Maintained
2057 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2058 F:      arch/arm/boot/dts/lpc43*
2059 F:      drivers/i2c/busses/i2c-lpc2k.c
2060 F:      drivers/memory/pl172.c
2061 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2062 F:      drivers/rtc/rtc-lpc24xx.c
2063 N:      lpc18xx
2064
2065 ARM/LPC32XX SOC SUPPORT
2066 M:      Vladimir Zapolskiy <vz@mleia.com>
2067 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2068 S:      Maintained
2069 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2070 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2071 F:      arch/arm/boot/dts/lpc32*
2072 F:      arch/arm/mach-lpc32xx/
2073 F:      drivers/i2c/busses/i2c-pnx.c
2074 F:      drivers/net/ethernet/nxp/lpc_eth.c
2075 F:      drivers/usb/host/ohci-nxp.c
2076 F:      drivers/watchdog/pnx4008_wdt.c
2077 N:      lpc32xx
2078
2079 ARM/MAGICIAN MACHINE SUPPORT
2080 M:      Philipp Zabel <philipp.zabel@gmail.com>
2081 S:      Maintained
2082
2083 ARM/Marvell Dove/MV78xx0/Orion SOC support
2084 M:      Andrew Lunn <andrew@lunn.ch>
2085 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2086 M:      Gregory Clement <gregory.clement@bootlin.com>
2087 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2088 S:      Maintained
2089 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2090 F:      Documentation/devicetree/bindings/soc/dove/
2091 F:      arch/arm/boot/dts/dove*
2092 F:      arch/arm/boot/dts/orion5x*
2093 F:      arch/arm/mach-dove/
2094 F:      arch/arm/mach-mv78xx0/
2095 F:      arch/arm/mach-orion5x/
2096 F:      arch/arm/plat-orion/
2097 F:      drivers/soc/dove/
2098
2099 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2100 M:      Andrew Lunn <andrew@lunn.ch>
2101 M:      Gregory Clement <gregory.clement@bootlin.com>
2102 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2103 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2104 S:      Maintained
2105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2106 F:      arch/arm/boot/dts/armada*
2107 F:      arch/arm/boot/dts/kirkwood*
2108 F:      arch/arm/configs/mvebu_*_defconfig
2109 F:      arch/arm/mach-mvebu/
2110 F:      arch/arm64/boot/dts/marvell/armada*
2111 F:      arch/arm64/boot/dts/marvell/cn913*
2112 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2113 F:      drivers/cpufreq/armada-8k-cpufreq.c
2114 F:      drivers/cpufreq/mvebu-cpufreq.c
2115 F:      drivers/irqchip/irq-armada-370-xp.c
2116 F:      drivers/irqchip/irq-mvebu-*
2117 F:      drivers/pinctrl/mvebu/
2118 F:      drivers/rtc/rtc-armada38x.c
2119
2120 ARM/Mediatek RTC DRIVER
2121 M:      Eddie Huang <eddie.huang@mediatek.com>
2122 M:      Sean Wang <sean.wang@mediatek.com>
2123 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2124 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2125 S:      Maintained
2126 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2127 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2128 F:      drivers/rtc/rtc-mt2712.c
2129 F:      drivers/rtc/rtc-mt6397.c
2130 F:      drivers/rtc/rtc-mt7622.c
2131
2132 ARM/Mediatek SoC support
2133 M:      Matthias Brugger <matthias.bgg@gmail.com>
2134 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2135 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2136 S:      Maintained
2137 W:      https://mtk.wiki.kernel.org/
2138 C:      irc://chat.freenode.net/linux-mediatek
2139 F:      arch/arm/boot/dts/mt6*
2140 F:      arch/arm/boot/dts/mt7*
2141 F:      arch/arm/boot/dts/mt8*
2142 F:      arch/arm/mach-mediatek/
2143 F:      arch/arm64/boot/dts/mediatek/
2144 F:      drivers/soc/mediatek/
2145 N:      mtk
2146 N:      mt[678]
2147 K:      mediatek
2148
2149 ARM/Mediatek USB3 PHY DRIVER
2150 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2151 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2152 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2153 S:      Maintained
2154 F:      Documentation/devicetree/bindings/phy/mediatek,*
2155 F:      drivers/phy/mediatek/
2156
2157 ARM/Microchip (AT91) SoC support
2158 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2159 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2160 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2161 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2162 S:      Supported
2163 W:      http://www.linux4sam.org
2164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2165 F:      arch/arm/boot/dts/at91*.dts
2166 F:      arch/arm/boot/dts/at91*.dtsi
2167 F:      arch/arm/boot/dts/sama*.dts
2168 F:      arch/arm/boot/dts/sama*.dtsi
2169 F:      arch/arm/include/debug/at91.S
2170 F:      arch/arm/mach-at91/
2171 F:      drivers/memory/atmel*
2172 F:      drivers/watchdog/sama5d4_wdt.c
2173 F:      include/soc/at91/
2174 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2175 X:      drivers/net/wireless/atmel/
2176 N:      at91
2177 N:      atmel
2178
2179 ARM/Microchip Sparx5 SoC support
2180 M:      Lars Povlsen <lars.povlsen@microchip.com>
2181 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2182 M:      UNGLinuxDriver@microchip.com
2183 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2184 S:      Supported
2185 T:      git git://github.com/microchip-ung/linux-upstream.git
2186 F:      arch/arm64/boot/dts/microchip/
2187 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2188 N:      sparx5
2189
2190 Microchip Timer Counter Block (TCB) Capture Driver
2191 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2192 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2193 L:      linux-iio@vger.kernel.org
2194 S:      Maintained
2195 F:      drivers/counter/microchip-tcb-capture.c
2196
2197 ARM/MIOA701 MACHINE SUPPORT
2198 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2199 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2200 S:      Maintained
2201 F:      arch/arm/mach-pxa/mioa701.c
2202
2203 ARM/MStar/Sigmastar Armv7 SoC support
2204 M:      Daniel Palmer <daniel@thingy.jp>
2205 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2206 S:      Maintained
2207 W:      http://linux-chenxing.org/
2208 F:      Documentation/devicetree/bindings/arm/mstar/*
2209 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2210 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2211 F:      arch/arm/boot/dts/mstar-*
2212 F:      arch/arm/mach-mstar/
2213 F:      drivers/clk/mstar/
2214 F:      drivers/gpio/gpio-msc313.c
2215 F:      include/dt-bindings/clock/mstar-*
2216 F:      include/dt-bindings/gpio/msc313-gpio.h
2217
2218 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2219 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2220 S:      Maintained
2221
2222 ARM/NOMADIK/Ux500 ARCHITECTURES
2223 M:      Linus Walleij <linus.walleij@linaro.org>
2224 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2225 S:      Maintained
2226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2227 F:      Documentation/devicetree/bindings/arm/ste-*
2228 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2229 F:      Documentation/devicetree/bindings/arm/ux500/
2230 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2231 F:      arch/arm/boot/dts/ste-*
2232 F:      arch/arm/mach-nomadik/
2233 F:      arch/arm/mach-ux500/
2234 F:      drivers/clk/clk-nomadik.c
2235 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2236 F:      drivers/dma/ste_dma40*
2237 F:      drivers/hwspinlock/u8500_hsem.c
2238 F:      drivers/i2c/busses/i2c-nomadik.c
2239 F:      drivers/iio/adc/ab8500-gpadc.c
2240 F:      drivers/mfd/ab8500*
2241 F:      drivers/mfd/abx500*
2242 F:      drivers/mfd/db8500*
2243 F:      drivers/mfd/dbx500*
2244 F:      drivers/pinctrl/nomadik/
2245 F:      drivers/rtc/rtc-ab8500.c
2246 F:      drivers/rtc/rtc-pl031.c
2247 F:      drivers/soc/ux500/
2248
2249 ARM/NUVOTON NPCM ARCHITECTURE
2250 M:      Avi Fishman <avifishman70@gmail.com>
2251 M:      Tomer Maimon <tmaimon77@gmail.com>
2252 M:      Tali Perry <tali.perry1@gmail.com>
2253 R:      Patrick Venture <venture@google.com>
2254 R:      Nancy Yuen <yuenn@google.com>
2255 R:      Benjamin Fair <benjaminfair@google.com>
2256 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2257 S:      Supported
2258 F:      Documentation/devicetree/bindings/*/*/*npcm*
2259 F:      Documentation/devicetree/bindings/*/*npcm*
2260 F:      arch/arm/boot/dts/nuvoton-npcm*
2261 F:      arch/arm/mach-npcm/
2262 F:      drivers/*/*npcm*
2263 F:      drivers/*/*/*npcm*
2264 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2265
2266 ARM/NUVOTON WPCM450 ARCHITECTURE
2267 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2268 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2269 S:      Maintained
2270 F:      Documentation/devicetree/bindings/*/*wpcm*
2271 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2272 F:      arch/arm/mach-npcm/wpcm450.c
2273 F:      drivers/*/*wpcm*
2274
2275 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2276 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2277 S:      Orphan
2278 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2279 F:      arch/arm/mach-s3c/gta02.h
2280 F:      arch/arm/mach-s3c/mach-gta02.c
2281
2282 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2283 M:      Alexander Clouter <alex@digriz.org.uk>
2284 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2285 S:      Maintained
2286 W:      http://www.digriz.org.uk/ts78xx/kernel
2287 F:      arch/arm/mach-orion5x/ts78xx-*
2288
2289 ARM/OXNAS platform support
2290 M:      Neil Armstrong <narmstrong@baylibre.com>
2291 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2292 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2293 S:      Maintained
2294 F:      arch/arm/boot/dts/ox8*.dts*
2295 F:      arch/arm/mach-oxnas/
2296 F:      drivers/power/reset/oxnas-restart.c
2297 N:      oxnas
2298
2299 ARM/PALM TREO SUPPORT
2300 M:      Tomas Cech <sleep_walker@suse.com>
2301 L:      linux-arm-kernel@lists.infradead.org
2302 S:      Maintained
2303 W:      http://hackndev.com
2304 F:      arch/arm/mach-pxa/palmtreo.*
2305
2306 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2307 M:      Marek Vasut <marek.vasut@gmail.com>
2308 L:      linux-arm-kernel@lists.infradead.org
2309 S:      Maintained
2310 W:      http://hackndev.com
2311 F:      arch/arm/mach-pxa/include/mach/palmld.h
2312 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2313 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2314 F:      arch/arm/mach-pxa/palmld.c
2315 F:      arch/arm/mach-pxa/palmt5.*
2316 F:      arch/arm/mach-pxa/palmtc.c
2317 F:      arch/arm/mach-pxa/palmte2.*
2318 F:      arch/arm/mach-pxa/palmtx.c
2319
2320 ARM/PALMZ72 SUPPORT
2321 M:      Sergey Lapin <slapin@ossfans.org>
2322 L:      linux-arm-kernel@lists.infradead.org
2323 S:      Maintained
2324 W:      http://hackndev.com
2325 F:      arch/arm/mach-pxa/palmz72.*
2326
2327 ARM/PLEB SUPPORT
2328 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2329 S:      Maintained
2330 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2331
2332 ARM/PT DIGITAL BOARD PORT
2333 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2334 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2335 S:      Maintained
2336 W:      http://www.armlinux.org.uk/
2337
2338 ARM/QUALCOMM SUPPORT
2339 M:      Andy Gross <agross@kernel.org>
2340 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2341 L:      linux-arm-msm@vger.kernel.org
2342 S:      Maintained
2343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2344 F:      Documentation/devicetree/bindings/*/qcom*
2345 F:      Documentation/devicetree/bindings/soc/qcom/
2346 F:      arch/arm/boot/dts/qcom-*.dts
2347 F:      arch/arm/boot/dts/qcom-*.dtsi
2348 F:      arch/arm/mach-qcom/
2349 F:      arch/arm64/boot/dts/qcom/
2350 F:      drivers/*/*/qcom*
2351 F:      drivers/*/*/qcom/
2352 F:      drivers/*/pm8???-*
2353 F:      drivers/*/qcom*
2354 F:      drivers/*/qcom/
2355 F:      drivers/bluetooth/btqcomsmd.c
2356 F:      drivers/clocksource/timer-qcom.c
2357 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2358 F:      drivers/extcon/extcon-qcom*
2359 F:      drivers/i2c/busses/i2c-qcom-geni.c
2360 F:      drivers/i2c/busses/i2c-qup.c
2361 F:      drivers/iommu/msm*
2362 F:      drivers/mfd/ssbi.c
2363 F:      drivers/mmc/host/mmci_qcom*
2364 F:      drivers/mmc/host/sdhci-msm.c
2365 F:      drivers/pci/controller/dwc/pcie-qcom.c
2366 F:      drivers/phy/qualcomm/
2367 F:      drivers/power/*/msm*
2368 F:      drivers/reset/reset-qcom-*
2369 F:      drivers/scsi/ufs/ufs-qcom*
2370 F:      drivers/spi/spi-geni-qcom.c
2371 F:      drivers/spi/spi-qcom-qspi.c
2372 F:      drivers/spi/spi-qup.c
2373 F:      drivers/tty/serial/msm_serial.c
2374 F:      drivers/usb/dwc3/dwc3-qcom.c
2375 F:      include/dt-bindings/*/qcom*
2376 F:      include/linux/*/qcom*
2377 F:      include/linux/soc/qcom/
2378
2379 ARM/RADISYS ENP2611 MACHINE SUPPORT
2380 M:      Lennert Buytenhek <kernel@wantstofly.org>
2381 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2382 S:      Maintained
2383
2384 ARM/RDA MICRO ARCHITECTURE
2385 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2386 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2387 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2388 S:      Maintained
2389 F:      Documentation/devicetree/bindings/arm/rda.yaml
2390 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2391 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2392 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2393 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2394 F:      arch/arm/boot/dts/rda8810pl-*
2395 F:      drivers/clocksource/timer-rda.c
2396 F:      drivers/gpio/gpio-rda.c
2397 F:      drivers/irqchip/irq-rda-intc.c
2398 F:      drivers/tty/serial/rda-uart.c
2399
2400 ARM/REALTEK ARCHITECTURE
2401 M:      Andreas Färber <afaerber@suse.de>
2402 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2403 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2404 S:      Maintained
2405 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2406 F:      arch/arm/boot/dts/rtd*
2407 F:      arch/arm/mach-realtek/
2408 F:      arch/arm64/boot/dts/realtek/
2409
2410 ARM/RENESAS ARM64 ARCHITECTURE
2411 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2412 M:      Magnus Damm <magnus.damm@gmail.com>
2413 L:      linux-renesas-soc@vger.kernel.org
2414 S:      Supported
2415 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2417 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2418 F:      arch/arm64/boot/dts/renesas/
2419 F:      drivers/soc/renesas/
2420 F:      include/linux/soc/renesas/
2421
2422 ARM/RISCPC ARCHITECTURE
2423 M:      Russell King <linux@armlinux.org.uk>
2424 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2425 S:      Maintained
2426 W:      http://www.armlinux.org.uk/
2427 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2428 F:      arch/arm/include/asm/hardware/ioc.h
2429 F:      arch/arm/include/asm/hardware/iomd.h
2430 F:      arch/arm/include/asm/hardware/memc.h
2431 F:      arch/arm/mach-rpc/
2432 F:      drivers/net/ethernet/8390/etherh.c
2433 F:      drivers/net/ethernet/i825xx/ether1*
2434 F:      drivers/net/ethernet/seeq/ether3*
2435 F:      drivers/scsi/arm/
2436
2437 ARM/Rockchip SoC support
2438 M:      Heiko Stuebner <heiko@sntech.de>
2439 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2440 L:      linux-rockchip@lists.infradead.org
2441 S:      Maintained
2442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2443 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2444 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2445 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2446 F:      arch/arm/boot/dts/rk3*
2447 F:      arch/arm/boot/dts/rv1108*
2448 F:      arch/arm/mach-rockchip/
2449 F:      drivers/*/*/*rockchip*
2450 F:      drivers/*/*rockchip*
2451 F:      drivers/clk/rockchip/
2452 F:      drivers/i2c/busses/i2c-rk3x.c
2453 F:      sound/soc/rockchip/
2454 N:      rockchip
2455
2456 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2457 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
2458 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2459 L:      linux-samsung-soc@vger.kernel.org
2460 S:      Maintained
2461 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2462 F:      Documentation/arm/samsung/
2463 F:      Documentation/devicetree/bindings/arm/samsung/
2464 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2465 F:      arch/arm/boot/dts/exynos*
2466 F:      arch/arm/boot/dts/s3c*
2467 F:      arch/arm/boot/dts/s5p*
2468 F:      arch/arm/mach-exynos*/
2469 F:      arch/arm/mach-s3c/
2470 F:      arch/arm/mach-s5p*/
2471 F:      arch/arm64/boot/dts/exynos/
2472 F:      drivers/*/*/*s3c24*
2473 F:      drivers/*/*s3c24*
2474 F:      drivers/*/*s3c64xx*
2475 F:      drivers/*/*s5pv210*
2476 F:      drivers/memory/samsung/
2477 F:      drivers/soc/samsung/
2478 F:      drivers/tty/serial/samsung*
2479 F:      include/linux/platform_data/*s3c*
2480 F:      include/linux/serial_s3c.h
2481 F:      include/linux/soc/samsung/
2482 N:      exynos
2483 N:      s3c2410
2484 N:      s3c64xx
2485 N:      s5pv210
2486
2487 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2488 M:      Andrzej Hajda <a.hajda@samsung.com>
2489 L:      linux-arm-kernel@lists.infradead.org
2490 L:      linux-media@vger.kernel.org
2491 S:      Maintained
2492 F:      drivers/media/platform/s5p-g2d/
2493
2494 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2495 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2496 L:      linux-samsung-soc@vger.kernel.org
2497 L:      linux-media@vger.kernel.org
2498 S:      Maintained
2499 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2500 F:      drivers/media/cec/platform/s5p/
2501
2502 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2503 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2504 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2505 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2506 L:      linux-arm-kernel@lists.infradead.org
2507 L:      linux-media@vger.kernel.org
2508 S:      Maintained
2509 F:      drivers/media/platform/s5p-jpeg/
2510
2511 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2512 M:      Andrzej Hajda <a.hajda@samsung.com>
2513 L:      linux-arm-kernel@lists.infradead.org
2514 L:      linux-media@vger.kernel.org
2515 S:      Maintained
2516 F:      drivers/media/platform/s5p-mfc/
2517
2518 ARM/SHMOBILE ARM ARCHITECTURE
2519 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2520 M:      Magnus Damm <magnus.damm@gmail.com>
2521 L:      linux-renesas-soc@vger.kernel.org
2522 S:      Supported
2523 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2525 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2526 F:      arch/arm/boot/dts/emev2*
2527 F:      arch/arm/boot/dts/gr-peach*
2528 F:      arch/arm/boot/dts/iwg20d-q7*
2529 F:      arch/arm/boot/dts/r7s*
2530 F:      arch/arm/boot/dts/r8a*
2531 F:      arch/arm/boot/dts/r9a*
2532 F:      arch/arm/boot/dts/sh*
2533 F:      arch/arm/configs/shmobile_defconfig
2534 F:      arch/arm/include/debug/renesas-scif.S
2535 F:      arch/arm/mach-shmobile/
2536 F:      drivers/soc/renesas/
2537 F:      include/linux/soc/renesas/
2538
2539 ARM/SOCFPGA ARCHITECTURE
2540 M:      Dinh Nguyen <dinguyen@kernel.org>
2541 S:      Maintained
2542 W:      http://www.rocketboards.org
2543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2544 F:      arch/arm/boot/dts/socfpga*
2545 F:      arch/arm/configs/socfpga_defconfig
2546 F:      arch/arm/mach-socfpga/
2547 F:      arch/arm64/boot/dts/altera/
2548 F:      arch/arm64/boot/dts/intel/
2549
2550 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2551 M:      Dinh Nguyen <dinguyen@kernel.org>
2552 S:      Maintained
2553 F:      drivers/clk/socfpga/
2554
2555 ARM/SOCFPGA EDAC SUPPORT
2556 M:      Dinh Nguyen <dinguyen@kernel.org>
2557 S:      Maintained
2558 F:      drivers/edac/altera_edac.[ch]
2559
2560 ARM/SPREADTRUM SoC SUPPORT
2561 M:      Orson Zhai <orsonzhai@gmail.com>
2562 M:      Baolin Wang <baolin.wang7@gmail.com>
2563 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2564 S:      Maintained
2565 F:      arch/arm64/boot/dts/sprd
2566 N:      sprd
2567 N:      sc27xx
2568 N:      sc2731
2569
2570 ARM/STI ARCHITECTURE
2571 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2572 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2573 S:      Maintained
2574 W:      http://www.stlinux.com
2575 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2576 F:      arch/arm/boot/dts/sti*
2577 F:      arch/arm/mach-sti/
2578 F:      drivers/ata/ahci_st.c
2579 F:      drivers/char/hw_random/st-rng.c
2580 F:      drivers/clocksource/arm_global_timer.c
2581 F:      drivers/clocksource/clksrc_st_lpc.c
2582 F:      drivers/cpufreq/sti-cpufreq.c
2583 F:      drivers/dma/st_fdma*
2584 F:      drivers/i2c/busses/i2c-st.c
2585 F:      drivers/media/platform/sti/c8sectpfe/
2586 F:      drivers/media/rc/st_rc.c
2587 F:      drivers/mmc/host/sdhci-st.c
2588 F:      drivers/phy/st/phy-miphy28lp.c
2589 F:      drivers/phy/st/phy-stih407-usb.c
2590 F:      drivers/pinctrl/pinctrl-st.c
2591 F:      drivers/remoteproc/st_remoteproc.c
2592 F:      drivers/remoteproc/st_slim_rproc.c
2593 F:      drivers/reset/sti/
2594 F:      drivers/rtc/rtc-st-lpc.c
2595 F:      drivers/tty/serial/st-asc.c
2596 F:      drivers/usb/dwc3/dwc3-st.c
2597 F:      drivers/usb/host/ehci-st.c
2598 F:      drivers/usb/host/ohci-st.c
2599 F:      drivers/watchdog/st_lpc_wdt.c
2600 F:      include/linux/remoteproc/st_slim_rproc.h
2601
2602 ARM/STM32 ARCHITECTURE
2603 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2604 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2605 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2606 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2607 S:      Maintained
2608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2609 F:      arch/arm/boot/dts/stm32*
2610 F:      arch/arm/mach-stm32/
2611 F:      drivers/clocksource/armv7m_systick.c
2612 N:      stm32
2613 N:      stm
2614
2615 ARM/Synaptics SoC support
2616 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2617 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2618 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2619 S:      Maintained
2620 F:      arch/arm/boot/dts/berlin*
2621 F:      arch/arm/mach-berlin/
2622 F:      arch/arm64/boot/dts/synaptics/
2623
2624 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2625 M:      Lennert Buytenhek <kernel@wantstofly.org>
2626 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2627 S:      Maintained
2628
2629 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2630 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2631 L:      linux-tegra@vger.kernel.org
2632 L:      linux-media@vger.kernel.org
2633 S:      Maintained
2634 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2635 F:      drivers/media/cec/platform/tegra/
2636
2637 ARM/TETON BGA MACHINE SUPPORT
2638 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2639 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2640 S:      Maintained
2641
2642 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2643 M:      Santosh Shilimkar <ssantosh@kernel.org>
2644 L:      linux-kernel@vger.kernel.org
2645 S:      Maintained
2646 F:      drivers/memory/*emif*
2647
2648 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2649 M:      Santosh Shilimkar <ssantosh@kernel.org>
2650 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2651 S:      Maintained
2652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2653 F:      arch/arm/boot/dts/keystone-*
2654 F:      arch/arm/mach-keystone/
2655
2656 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2657 M:      Santosh Shilimkar <ssantosh@kernel.org>
2658 L:      linux-kernel@vger.kernel.org
2659 S:      Maintained
2660 F:      drivers/clk/keystone/
2661
2662 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2663 M:      Santosh Shilimkar <ssantosh@kernel.org>
2664 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2665 L:      linux-kernel@vger.kernel.org
2666 S:      Maintained
2667 F:      drivers/clocksource/timer-keystone.c
2668
2669 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2670 M:      Santosh Shilimkar <ssantosh@kernel.org>
2671 L:      linux-kernel@vger.kernel.org
2672 S:      Maintained
2673 F:      drivers/power/reset/keystone-reset.c
2674
2675 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2676 M:      Nishanth Menon <nm@ti.com>
2677 M:      Tero Kristo <kristo@kernel.org>
2678 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2679 S:      Supported
2680 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2681 F:      arch/arm64/boot/dts/ti/Makefile
2682 F:      arch/arm64/boot/dts/ti/k3-*
2683 F:      include/dt-bindings/pinctrl/k3.h
2684
2685 ARM/THECUS N2100 MACHINE SUPPORT
2686 M:      Lennert Buytenhek <kernel@wantstofly.org>
2687 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2688 S:      Maintained
2689
2690 ARM/TOSA MACHINE SUPPORT
2691 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2692 M:      Dirk Opfer <dirk@opfer-online.de>
2693 S:      Maintained
2694
2695 ARM/TOSHIBA VISCONTI ARCHITECTURE
2696 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2698 S:      Supported
2699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2700 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2701 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2702 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2703 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2704 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2705 F:      arch/arm64/boot/dts/toshiba/
2706 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2707 F:      drivers/gpio/gpio-visconti.c
2708 F:      drivers/pinctrl/visconti/
2709 F:      drivers/watchdog/visconti_wdt.c
2710 N:      visconti
2711
2712 ARM/UNIPHIER ARCHITECTURE
2713 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2714 M:      Masami Hiramatsu <mhiramat@kernel.org>
2715 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2716 S:      Maintained
2717 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2718 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2719 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2720 F:      arch/arm/boot/dts/uniphier*
2721 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2722 F:      arch/arm/mach-uniphier/
2723 F:      arch/arm/mm/cache-uniphier.c
2724 F:      arch/arm64/boot/dts/socionext/uniphier*
2725 F:      drivers/bus/uniphier-system-bus.c
2726 F:      drivers/clk/uniphier/
2727 F:      drivers/dma/uniphier-mdmac.c
2728 F:      drivers/gpio/gpio-uniphier.c
2729 F:      drivers/i2c/busses/i2c-uniphier*
2730 F:      drivers/irqchip/irq-uniphier-aidet.c
2731 F:      drivers/mmc/host/uniphier-sd.c
2732 F:      drivers/pinctrl/uniphier/
2733 F:      drivers/reset/reset-uniphier.c
2734 F:      drivers/tty/serial/8250/8250_uniphier.c
2735 N:      uniphier
2736
2737 ARM/VERSATILE EXPRESS PLATFORM
2738 M:      Liviu Dudau <liviu.dudau@arm.com>
2739 M:      Sudeep Holla <sudeep.holla@arm.com>
2740 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2741 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2742 S:      Maintained
2743 F:      */*/*/vexpress*
2744 F:      */*/vexpress*
2745 F:      arch/arm/boot/dts/vexpress*
2746 F:      arch/arm/mach-vexpress/
2747 F:      arch/arm64/boot/dts/arm/
2748 F:      drivers/clk/versatile/clk-vexpress-osc.c
2749 F:      drivers/clocksource/timer-versatile.c
2750 N:      mps2
2751
2752 ARM/VFP SUPPORT
2753 M:      Russell King <linux@armlinux.org.uk>
2754 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2755 S:      Maintained
2756 W:      http://www.armlinux.org.uk/
2757 F:      arch/arm/vfp/
2758
2759 ARM/VOIPAC PXA270 SUPPORT
2760 M:      Marek Vasut <marek.vasut@gmail.com>
2761 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2762 S:      Maintained
2763 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2764 F:      arch/arm/mach-pxa/vpac270.c
2765
2766 ARM/VT8500 ARM ARCHITECTURE
2767 M:      Tony Prisk <linux@prisktech.co.nz>
2768 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2769 S:      Maintained
2770 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2771 F:      arch/arm/mach-vt8500/
2772 F:      drivers/clocksource/timer-vt8500.c
2773 F:      drivers/i2c/busses/i2c-wmt.c
2774 F:      drivers/mmc/host/wmt-sdmmc.c
2775 F:      drivers/pwm/pwm-vt8500.c
2776 F:      drivers/rtc/rtc-vt8500.c
2777 F:      drivers/tty/serial/vt8500_serial.c
2778 F:      drivers/usb/host/ehci-platform.c
2779 F:      drivers/usb/host/uhci-platform.c
2780 F:      drivers/video/fbdev/vt8500lcdfb.*
2781 F:      drivers/video/fbdev/wm8505fb*
2782 F:      drivers/video/fbdev/wmt_ge_rops.*
2783
2784 ARM/ZIPIT Z2 SUPPORT
2785 M:      Marek Vasut <marek.vasut@gmail.com>
2786 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2787 S:      Maintained
2788 F:      arch/arm/mach-pxa/include/mach/z2.h
2789 F:      arch/arm/mach-pxa/z2.c
2790
2791 ARM/ZYNQ ARCHITECTURE
2792 M:      Michal Simek <michal.simek@xilinx.com>
2793 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2794 S:      Supported
2795 W:      http://wiki.xilinx.com
2796 T:      git https://github.com/Xilinx/linux-xlnx.git
2797 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2798 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2799 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2800 F:      arch/arm/mach-zynq/
2801 F:      drivers/clocksource/timer-cadence-ttc.c
2802 F:      drivers/cpuidle/cpuidle-zynq.c
2803 F:      drivers/edac/synopsys_edac.c
2804 F:      drivers/i2c/busses/i2c-cadence.c
2805 F:      drivers/i2c/busses/i2c-xiic.c
2806 F:      drivers/mmc/host/sdhci-of-arasan.c
2807 N:      zynq
2808 N:      xilinx
2809
2810 ARM64 PORT (AARCH64 ARCHITECTURE)
2811 M:      Catalin Marinas <catalin.marinas@arm.com>
2812 M:      Will Deacon <will@kernel.org>
2813 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2814 S:      Maintained
2815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2816 F:      Documentation/arm64/
2817 F:      arch/arm64/
2818 F:      tools/testing/selftests/arm64/
2819 X:      arch/arm64/boot/dts/
2820
2821 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2822 M:      George McCollister <george.mccollister@gmail.com>
2823 L:      netdev@vger.kernel.org
2824 S:      Maintained
2825 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2826 F:      drivers/net/dsa/xrs700x/*
2827 F:      net/dsa/tag_xrs700x.c
2828
2829 AS3645A LED FLASH CONTROLLER DRIVER
2830 M:      Sakari Ailus <sakari.ailus@iki.fi>
2831 L:      linux-leds@vger.kernel.org
2832 S:      Maintained
2833 F:      drivers/leds/leds-as3645a.c
2834
2835 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2836 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2837 L:      linux-media@vger.kernel.org
2838 S:      Maintained
2839 T:      git git://linuxtv.org/media_tree.git
2840 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2841 F:      drivers/media/i2c/ak7375.c
2842
2843 ASAHI KASEI AK8974 DRIVER
2844 M:      Linus Walleij <linus.walleij@linaro.org>
2845 L:      linux-iio@vger.kernel.org
2846 S:      Supported
2847 W:      http://www.akm.com/
2848 F:      drivers/iio/magnetometer/ak8974.c
2849
2850 ASC7621 HARDWARE MONITOR DRIVER
2851 M:      George Joseph <george.joseph@fairview5.com>
2852 L:      linux-hwmon@vger.kernel.org
2853 S:      Maintained
2854 F:      Documentation/hwmon/asc7621.rst
2855 F:      drivers/hwmon/asc7621.c
2856
2857 ASPEED PINCTRL DRIVERS
2858 M:      Andrew Jeffery <andrew@aj.id.au>
2859 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2860 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2861 L:      linux-gpio@vger.kernel.org
2862 S:      Maintained
2863 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2864 F:      drivers/pinctrl/aspeed/
2865
2866 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2867 M:      Eddie James <eajames@linux.ibm.com>
2868 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2869 S:      Maintained
2870 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2871 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2872 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2873
2874 ASPEED SD/MMC DRIVER
2875 M:      Andrew Jeffery <andrew@aj.id.au>
2876 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2877 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2878 L:      linux-mmc@vger.kernel.org
2879 S:      Maintained
2880 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
2881 F:      drivers/mmc/host/sdhci-of-aspeed*
2882
2883 ASPEED VIDEO ENGINE DRIVER
2884 M:      Eddie James <eajames@linux.ibm.com>
2885 L:      linux-media@vger.kernel.org
2886 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2887 S:      Maintained
2888 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2889 F:      drivers/media/platform/aspeed-video.c
2890
2891 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2892 M:      Corentin Chary <corentin.chary@gmail.com>
2893 L:      acpi4asus-user@lists.sourceforge.net
2894 L:      platform-driver-x86@vger.kernel.org
2895 S:      Maintained
2896 W:      http://acpi4asus.sf.net
2897 F:      drivers/platform/x86/asus*.c
2898 F:      drivers/platform/x86/eeepc*.c
2899
2900 ASUS WIRELESS RADIO CONTROL DRIVER
2901 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2902 L:      platform-driver-x86@vger.kernel.org
2903 S:      Maintained
2904 F:      drivers/platform/x86/asus-wireless.c
2905
2906 ASYMMETRIC KEYS
2907 M:      David Howells <dhowells@redhat.com>
2908 L:      keyrings@vger.kernel.org
2909 S:      Maintained
2910 F:      Documentation/crypto/asymmetric-keys.rst
2911 F:      crypto/asymmetric_keys/
2912 F:      include/crypto/pkcs7.h
2913 F:      include/crypto/public_key.h
2914 F:      include/linux/verification.h
2915
2916 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2917 R:      Dan Williams <dan.j.williams@intel.com>
2918 S:      Odd fixes
2919 W:      http://sourceforge.net/projects/xscaleiop
2920 F:      Documentation/crypto/async-tx-api.rst
2921 F:      crypto/async_tx/
2922 F:      include/linux/async_tx.h
2923
2924 AT24 EEPROM DRIVER
2925 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2926 L:      linux-i2c@vger.kernel.org
2927 S:      Maintained
2928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2929 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2930 F:      drivers/misc/eeprom/at24.c
2931
2932 ATA OVER ETHERNET (AOE) DRIVER
2933 M:      "Justin Sanders" <justin@coraid.com>
2934 S:      Supported
2935 W:      http://www.openaoe.org/
2936 F:      Documentation/admin-guide/aoe/
2937 F:      drivers/block/aoe/
2938
2939 ATC260X PMIC MFD DRIVER
2940 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2941 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
2942 L:      linux-actions@lists.infradead.org
2943 S:      Maintained
2944 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
2945 F:      drivers/input/misc/atc260x-onkey.c
2946 F:      drivers/mfd/atc260*
2947 F:      drivers/power/reset/atc260x-poweroff.c
2948 F:      drivers/regulator/atc260x-regulator.c
2949 F:      include/linux/mfd/atc260x/*
2950
2951 ATHEROS 71XX/9XXX GPIO DRIVER
2952 M:      Alban Bedel <albeu@free.fr>
2953 S:      Maintained
2954 W:      https://github.com/AlbanBedel/linux
2955 T:      git git://github.com/AlbanBedel/linux
2956 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2957 F:      drivers/gpio/gpio-ath79.c
2958
2959 ATHEROS 71XX/9XXX USB PHY DRIVER
2960 M:      Alban Bedel <albeu@free.fr>
2961 S:      Maintained
2962 W:      https://github.com/AlbanBedel/linux
2963 T:      git git://github.com/AlbanBedel/linux
2964 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2965 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2966
2967 ATHEROS ATH GENERIC UTILITIES
2968 M:      Kalle Valo <kvalo@codeaurora.org>
2969 L:      linux-wireless@vger.kernel.org
2970 S:      Supported
2971 F:      drivers/net/wireless/ath/*
2972
2973 ATHEROS ATH5K WIRELESS DRIVER
2974 M:      Jiri Slaby <jirislaby@kernel.org>
2975 M:      Nick Kossifidis <mickflemm@gmail.com>
2976 M:      Luis Chamberlain <mcgrof@kernel.org>
2977 L:      linux-wireless@vger.kernel.org
2978 S:      Maintained
2979 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2980 F:      drivers/net/wireless/ath/ath5k/
2981
2982 ATHEROS ATH6KL WIRELESS DRIVER
2983 M:      Kalle Valo <kvalo@codeaurora.org>
2984 L:      linux-wireless@vger.kernel.org
2985 S:      Supported
2986 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2988 F:      drivers/net/wireless/ath/ath6kl/
2989
2990 ATI_REMOTE2 DRIVER
2991 M:      Ville Syrjala <syrjala@sci.fi>
2992 S:      Maintained
2993 F:      drivers/input/misc/ati_remote2.c
2994
2995 ATK0110 HWMON DRIVER
2996 M:      Luca Tettamanti <kronos.it@gmail.com>
2997 L:      linux-hwmon@vger.kernel.org
2998 S:      Maintained
2999 F:      drivers/hwmon/asus_atk0110.c
3000
3001 ATLX ETHERNET DRIVERS
3002 M:      Chris Snook <chris.snook@gmail.com>
3003 L:      netdev@vger.kernel.org
3004 S:      Maintained
3005 W:      http://sourceforge.net/projects/atl1
3006 W:      http://atl1.sourceforge.net
3007 F:      drivers/net/ethernet/atheros/
3008
3009 ATM
3010 M:      Chas Williams <3chas3@gmail.com>
3011 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3012 L:      netdev@vger.kernel.org
3013 S:      Maintained
3014 W:      http://linux-atm.sourceforge.net
3015 F:      drivers/atm/
3016 F:      include/linux/atm*
3017 F:      include/uapi/linux/atm*
3018
3019 ATMEL MACB ETHERNET DRIVER
3020 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3021 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3022 S:      Supported
3023 F:      drivers/net/ethernet/cadence/
3024
3025 ATMEL MAXTOUCH DRIVER
3026 M:      Nick Dyer <nick@shmanahar.org>
3027 S:      Maintained
3028 T:      git git://github.com/ndyer/linux.git
3029 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3030 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3031
3032 ATMEL WIRELESS DRIVER
3033 M:      Simon Kelley <simon@thekelleys.org.uk>
3034 L:      linux-wireless@vger.kernel.org
3035 S:      Maintained
3036 W:      http://www.thekelleys.org.uk/atmel
3037 W:      http://atmelwlandriver.sourceforge.net/
3038 F:      drivers/net/wireless/atmel/atmel*
3039
3040 ATOMIC INFRASTRUCTURE
3041 M:      Will Deacon <will@kernel.org>
3042 M:      Peter Zijlstra <peterz@infradead.org>
3043 R:      Boqun Feng <boqun.feng@gmail.com>
3044 L:      linux-kernel@vger.kernel.org
3045 S:      Maintained
3046 F:      arch/*/include/asm/atomic*.h
3047 F:      include/*/atomic*.h
3048 F:      include/linux/refcount.h
3049 F:      Documentation/atomic_*.txt
3050 F:      scripts/atomic/
3051
3052 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3053 M:      Bradley Grove <linuxdrivers@attotech.com>
3054 L:      linux-scsi@vger.kernel.org
3055 S:      Supported
3056 W:      http://www.attotech.com
3057 F:      drivers/scsi/esas2r
3058
3059 ATUSB IEEE 802.15.4 RADIO DRIVER
3060 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3061 L:      linux-wpan@vger.kernel.org
3062 S:      Maintained
3063 F:      drivers/net/ieee802154/at86rf230.h
3064 F:      drivers/net/ieee802154/atusb.c
3065 F:      drivers/net/ieee802154/atusb.h
3066
3067 AUDIT SUBSYSTEM
3068 M:      Paul Moore <paul@paul-moore.com>
3069 M:      Eric Paris <eparis@redhat.com>
3070 L:      linux-audit@redhat.com (moderated for non-subscribers)
3071 S:      Supported
3072 W:      https://github.com/linux-audit
3073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3074 F:      include/asm-generic/audit_*.h
3075 F:      include/linux/audit.h
3076 F:      include/uapi/linux/audit.h
3077 F:      kernel/audit*
3078 F:      lib/*audit.c
3079
3080 AUXILIARY DISPLAY DRIVERS
3081 M:      Miguel Ojeda <ojeda@kernel.org>
3082 S:      Maintained
3083 F:      drivers/auxdisplay/
3084 F:      include/linux/cfag12864b.h
3085
3086 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3087 M:      Andreas Klinger <ak@it-klinger.de>
3088 L:      linux-iio@vger.kernel.org
3089 S:      Maintained
3090 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3091 F:      drivers/iio/adc/hx711.c
3092
3093 AX.25 NETWORK LAYER
3094 M:      Ralf Baechle <ralf@linux-mips.org>
3095 L:      linux-hams@vger.kernel.org
3096 S:      Maintained
3097 W:      http://www.linux-ax25.org/
3098 F:      include/net/ax25.h
3099 F:      include/uapi/linux/ax25.h
3100 F:      net/ax25/
3101
3102 AXENTIA ARM DEVICES
3103 M:      Peter Rosin <peda@axentia.se>
3104 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3105 S:      Maintained
3106 F:      arch/arm/boot/dts/at91-linea.dtsi
3107 F:      arch/arm/boot/dts/at91-natte.dtsi
3108 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3109 F:      arch/arm/boot/dts/at91-tse850-3.dts
3110
3111 AXENTIA ASOC DRIVERS
3112 M:      Peter Rosin <peda@axentia.se>
3113 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3114 S:      Maintained
3115 F:      Documentation/devicetree/bindings/sound/axentia,*
3116 F:      sound/soc/atmel/tse850-pcm5142.c
3117
3118 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3119 M:      Nuno Sá <nuno.sa@analog.com>
3120 L:      linux-hwmon@vger.kernel.org
3121 S:      Supported
3122 W:      http://ez.analog.com/community/linux-device-drivers
3123 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3124 F:      drivers/hwmon/axi-fan-control.c
3125
3126 AXXIA I2C CONTROLLER
3127 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3128 L:      linux-i2c@vger.kernel.org
3129 S:      Maintained
3130 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3131 F:      drivers/i2c/busses/i2c-axxia.c
3132
3133 AZ6007 DVB DRIVER
3134 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3135 L:      linux-media@vger.kernel.org
3136 S:      Maintained
3137 W:      https://linuxtv.org
3138 T:      git git://linuxtv.org/media_tree.git
3139 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3140
3141 AZTECH FM RADIO RECEIVER DRIVER
3142 M:      Hans Verkuil <hverkuil@xs4all.nl>
3143 L:      linux-media@vger.kernel.org
3144 S:      Maintained
3145 W:      https://linuxtv.org
3146 T:      git git://linuxtv.org/media_tree.git
3147 F:      drivers/media/radio/radio-aztech*
3148
3149 B43 WIRELESS DRIVER
3150 L:      linux-wireless@vger.kernel.org
3151 L:      b43-dev@lists.infradead.org
3152 S:      Odd Fixes
3153 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3154 F:      drivers/net/wireless/broadcom/b43/
3155
3156 B43LEGACY WIRELESS DRIVER
3157 M:      Larry Finger <Larry.Finger@lwfinger.net>
3158 L:      linux-wireless@vger.kernel.org
3159 L:      b43-dev@lists.infradead.org
3160 S:      Maintained
3161 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3162 F:      drivers/net/wireless/broadcom/b43legacy/
3163
3164 BACKLIGHT CLASS/SUBSYSTEM
3165 M:      Lee Jones <lee.jones@linaro.org>
3166 M:      Daniel Thompson <daniel.thompson@linaro.org>
3167 M:      Jingoo Han <jingoohan1@gmail.com>
3168 L:      dri-devel@lists.freedesktop.org
3169 S:      Maintained
3170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3171 F:      Documentation/ABI/stable/sysfs-class-backlight
3172 F:      Documentation/ABI/testing/sysfs-class-backlight
3173 F:      Documentation/devicetree/bindings/leds/backlight
3174 F:      drivers/video/backlight/
3175 F:      include/linux/backlight.h
3176 F:      include/linux/pwm_backlight.h
3177
3178 BATMAN ADVANCED
3179 M:      Marek Lindner <mareklindner@neomailbox.ch>
3180 M:      Simon Wunderlich <sw@simonwunderlich.de>
3181 M:      Antonio Quartulli <a@unstable.cc>
3182 M:      Sven Eckelmann <sven@narfation.org>
3183 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3184 S:      Maintained
3185 W:      https://www.open-mesh.org/
3186 Q:      https://patchwork.open-mesh.org/project/batman/list/
3187 B:      https://www.open-mesh.org/projects/batman-adv/issues
3188 C:      irc://chat.freenode.net/batman
3189 T:      git https://git.open-mesh.org/linux-merge.git
3190 F:      Documentation/networking/batman-adv.rst
3191 F:      include/uapi/linux/batadv_packet.h
3192 F:      include/uapi/linux/batman_adv.h
3193 F:      net/batman-adv/
3194
3195 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3196 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3197 L:      linux-hams@vger.kernel.org
3198 S:      Maintained
3199 W:      http://www.baycom.org/~tom/ham/ham.html
3200 F:      drivers/net/hamradio/baycom*
3201
3202 BCACHE (BLOCK LAYER CACHE)
3203 M:      Coly Li <colyli@suse.de>
3204 M:      Kent Overstreet <kent.overstreet@gmail.com>
3205 L:      linux-bcache@vger.kernel.org
3206 S:      Maintained
3207 W:      http://bcache.evilpiepirate.org
3208 C:      irc://irc.oftc.net/bcache
3209 F:      drivers/md/bcache/
3210
3211 BDISP ST MEDIA DRIVER
3212 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3213 L:      linux-media@vger.kernel.org
3214 S:      Supported
3215 W:      https://linuxtv.org
3216 T:      git git://linuxtv.org/media_tree.git
3217 F:      drivers/media/platform/sti/bdisp
3218
3219 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3220 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3221 L:      netdev@vger.kernel.org
3222 S:      Maintained
3223 F:      drivers/net/ethernet/ec_bhf.c
3224
3225 BEFS FILE SYSTEM
3226 M:      Luis de Bethencourt <luisbg@kernel.org>
3227 M:      Salah Triki <salah.triki@gmail.com>
3228 S:      Maintained
3229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3230 F:      Documentation/filesystems/befs.rst
3231 F:      fs/befs/
3232
3233 BFQ I/O SCHEDULER
3234 M:      Paolo Valente <paolo.valente@linaro.org>
3235 M:      Jens Axboe <axboe@kernel.dk>
3236 L:      linux-block@vger.kernel.org
3237 S:      Maintained
3238 F:      Documentation/block/bfq-iosched.rst
3239 F:      block/bfq-*
3240
3241 BFS FILE SYSTEM
3242 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3243 S:      Maintained
3244 F:      Documentation/filesystems/bfs.rst
3245 F:      fs/bfs/
3246 F:      include/uapi/linux/bfs_fs.h
3247
3248 BITMAP API
3249 M:      Yury Norov <yury.norov@gmail.com>
3250 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3251 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3252 S:      Maintained
3253 F:      include/asm-generic/bitops/find.h
3254 F:      include/linux/bitmap.h
3255 F:      lib/bitmap.c
3256 F:      lib/find_bit.c
3257 F:      lib/find_bit_benchmark.c
3258 F:      lib/test_bitmap.c
3259 F:      tools/include/asm-generic/bitops/find.h
3260 F:      tools/include/linux/bitmap.h
3261 F:      tools/lib/bitmap.c
3262 F:      tools/lib/find_bit.c
3263
3264 BLINKM RGB LED DRIVER
3265 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3266 S:      Maintained
3267 F:      drivers/leds/leds-blinkm.c
3268
3269 BLOCK LAYER
3270 M:      Jens Axboe <axboe@kernel.dk>
3271 L:      linux-block@vger.kernel.org
3272 S:      Maintained
3273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3274 F:      block/
3275 F:      drivers/block/
3276 F:      fs/block_dev.c
3277 F:      include/linux/blk*
3278 F:      kernel/trace/blktrace.c
3279 F:      lib/sbitmap.c
3280
3281 BLOCK2MTD DRIVER
3282 M:      Joern Engel <joern@lazybastard.org>
3283 L:      linux-mtd@lists.infradead.org
3284 S:      Maintained
3285 F:      drivers/mtd/devices/block2mtd.c
3286
3287 BLUETOOTH DRIVERS
3288 M:      Marcel Holtmann <marcel@holtmann.org>
3289 M:      Johan Hedberg <johan.hedberg@gmail.com>
3290 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3291 L:      linux-bluetooth@vger.kernel.org
3292 S:      Supported
3293 W:      http://www.bluez.org/
3294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3296 F:      drivers/bluetooth/
3297
3298 BLUETOOTH SUBSYSTEM
3299 M:      Marcel Holtmann <marcel@holtmann.org>
3300 M:      Johan Hedberg <johan.hedberg@gmail.com>
3301 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3302 L:      linux-bluetooth@vger.kernel.org
3303 S:      Supported
3304 W:      http://www.bluez.org/
3305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3307 F:      include/net/bluetooth/
3308 F:      net/bluetooth/
3309
3310 BONDING DRIVER
3311 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3312 M:      Veaceslav Falico <vfalico@gmail.com>
3313 M:      Andy Gospodarek <andy@greyhouse.net>
3314 L:      netdev@vger.kernel.org
3315 S:      Supported
3316 W:      http://sourceforge.net/projects/bonding/
3317 F:      drivers/net/bonding/
3318 F:      include/net/bonding.h
3319 F:      include/uapi/linux/if_bonding.h
3320
3321 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3322 M:      Dan Robertson <dan@dlrobertson.com>
3323 L:      linux-iio@vger.kernel.org
3324 S:      Maintained
3325 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3326 F:      drivers/iio/accel/bma400*
3327
3328 BPF (Safe dynamic programs and tools)
3329 M:      Alexei Starovoitov <ast@kernel.org>
3330 M:      Daniel Borkmann <daniel@iogearbox.net>
3331 M:      Andrii Nakryiko <andrii@kernel.org>
3332 R:      Martin KaFai Lau <kafai@fb.com>
3333 R:      Song Liu <songliubraving@fb.com>
3334 R:      Yonghong Song <yhs@fb.com>
3335 R:      John Fastabend <john.fastabend@gmail.com>
3336 R:      KP Singh <kpsingh@kernel.org>
3337 L:      netdev@vger.kernel.org
3338 L:      bpf@vger.kernel.org
3339 S:      Supported
3340 W:      https://bpf.io/
3341 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3344 F:      Documentation/bpf/
3345 F:      Documentation/networking/filter.rst
3346 F:      Documentation/userspace-api/ebpf/
3347 F:      arch/*/net/*
3348 F:      include/linux/bpf*
3349 F:      include/linux/filter.h
3350 F:      include/trace/events/xdp.h
3351 F:      include/uapi/linux/bpf*
3352 F:      include/uapi/linux/filter.h
3353 F:      kernel/bpf/
3354 F:      kernel/trace/bpf_trace.c
3355 F:      lib/test_bpf.c
3356 F:      net/bpf/
3357 F:      net/core/filter.c
3358 F:      net/sched/act_bpf.c
3359 F:      net/sched/cls_bpf.c
3360 F:      samples/bpf/
3361 F:      scripts/bpf_doc.py
3362 F:      tools/bpf/
3363 F:      tools/lib/bpf/
3364 F:      tools/testing/selftests/bpf/
3365 N:      bpf
3366 K:      bpf
3367
3368 BPF JIT for ARM
3369 M:      Shubham Bansal <illusionist.neo@gmail.com>
3370 L:      netdev@vger.kernel.org
3371 L:      bpf@vger.kernel.org
3372 S:      Maintained
3373 F:      arch/arm/net/
3374
3375 BPF JIT for ARM64
3376 M:      Daniel Borkmann <daniel@iogearbox.net>
3377 M:      Alexei Starovoitov <ast@kernel.org>
3378 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3379 L:      netdev@vger.kernel.org
3380 L:      bpf@vger.kernel.org
3381 S:      Supported
3382 F:      arch/arm64/net/
3383
3384 BPF JIT for MIPS (32-BIT AND 64-BIT)
3385 M:      Paul Burton <paulburton@kernel.org>
3386 L:      netdev@vger.kernel.org
3387 L:      bpf@vger.kernel.org
3388 S:      Maintained
3389 F:      arch/mips/net/
3390
3391 BPF JIT for NFP NICs
3392 M:      Jakub Kicinski <kuba@kernel.org>
3393 L:      netdev@vger.kernel.org
3394 L:      bpf@vger.kernel.org
3395 S:      Supported
3396 F:      drivers/net/ethernet/netronome/nfp/bpf/
3397
3398 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3399 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3400 M:      Sandipan Das <sandipan@linux.ibm.com>
3401 L:      netdev@vger.kernel.org
3402 L:      bpf@vger.kernel.org
3403 S:      Maintained
3404 F:      arch/powerpc/net/
3405
3406 BPF JIT for RISC-V (32-bit)
3407 M:      Luke Nelson <luke.r.nels@gmail.com>
3408 M:      Xi Wang <xi.wang@gmail.com>
3409 L:      netdev@vger.kernel.org
3410 L:      bpf@vger.kernel.org
3411 S:      Maintained
3412 F:      arch/riscv/net/
3413 X:      arch/riscv/net/bpf_jit_comp64.c
3414
3415 BPF JIT for RISC-V (64-bit)
3416 M:      Björn Töpel <bjorn@kernel.org>
3417 L:      netdev@vger.kernel.org
3418 L:      bpf@vger.kernel.org
3419 S:      Maintained
3420 F:      arch/riscv/net/
3421 X:      arch/riscv/net/bpf_jit_comp32.c
3422
3423 BPF JIT for S390
3424 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3425 M:      Heiko Carstens <hca@linux.ibm.com>
3426 M:      Vasily Gorbik <gor@linux.ibm.com>
3427 L:      netdev@vger.kernel.org
3428 L:      bpf@vger.kernel.org
3429 S:      Maintained
3430 F:      arch/s390/net/
3431 X:      arch/s390/net/pnet.c
3432
3433 BPF JIT for SPARC (32-BIT AND 64-BIT)
3434 M:      David S. Miller <davem@davemloft.net>
3435 L:      netdev@vger.kernel.org
3436 L:      bpf@vger.kernel.org
3437 S:      Maintained
3438 F:      arch/sparc/net/
3439
3440 BPF JIT for X86 32-BIT
3441 M:      Wang YanQing <udknight@gmail.com>
3442 L:      netdev@vger.kernel.org
3443 L:      bpf@vger.kernel.org
3444 S:      Maintained
3445 F:      arch/x86/net/bpf_jit_comp32.c
3446
3447 BPF JIT for X86 64-BIT
3448 M:      Alexei Starovoitov <ast@kernel.org>
3449 M:      Daniel Borkmann <daniel@iogearbox.net>
3450 L:      netdev@vger.kernel.org
3451 L:      bpf@vger.kernel.org
3452 S:      Supported
3453 F:      arch/x86/net/
3454 X:      arch/x86/net/bpf_jit_comp32.c
3455
3456 BPF LSM (Security Audit and Enforcement using BPF)
3457 M:      KP Singh <kpsingh@kernel.org>
3458 R:      Florent Revest <revest@chromium.org>
3459 R:      Brendan Jackman <jackmanb@chromium.org>
3460 L:      bpf@vger.kernel.org
3461 S:      Maintained
3462 F:      Documentation/bpf/bpf_lsm.rst
3463 F:      include/linux/bpf_lsm.h
3464 F:      kernel/bpf/bpf_lsm.c
3465 F:      security/bpf/
3466
3467 BROADCOM B44 10/100 ETHERNET DRIVER
3468 M:      Michael Chan <michael.chan@broadcom.com>
3469 L:      netdev@vger.kernel.org
3470 S:      Supported
3471 F:      drivers/net/ethernet/broadcom/b44.*
3472
3473 BROADCOM B53 ETHERNET SWITCH DRIVER
3474 M:      Florian Fainelli <f.fainelli@gmail.com>
3475 L:      netdev@vger.kernel.org
3476 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3477 S:      Supported
3478 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3479 F:      drivers/net/dsa/b53/*
3480 F:      include/linux/dsa/brcm.h
3481 F:      include/linux/platform_data/b53.h
3482
3483 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3484 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3485 L:      bcm-kernel-feedback-list@broadcom.com
3486 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3487 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3488 S:      Maintained
3489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3490 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3491 F:      drivers/pci/controller/pcie-brcmstb.c
3492 F:      drivers/staging/vc04_services
3493 N:      bcm2711
3494 N:      bcm283*
3495
3496 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3497 M:      Florian Fainelli <f.fainelli@gmail.com>
3498 M:      Ray Jui <rjui@broadcom.com>
3499 M:      Scott Branden <sbranden@broadcom.com>
3500 M:      bcm-kernel-feedback-list@broadcom.com
3501 S:      Maintained
3502 T:      git git://github.com/broadcom/mach-bcm
3503 F:      arch/arm/mach-bcm/
3504 N:      bcm281*
3505 N:      bcm113*
3506 N:      bcm216*
3507 N:      kona
3508
3509 BROADCOM BCM47XX MIPS ARCHITECTURE
3510 M:      Hauke Mehrtens <hauke@hauke-m.de>
3511 M:      Rafał Miłecki <zajec5@gmail.com>
3512 L:      linux-mips@vger.kernel.org
3513 S:      Maintained
3514 F:      Documentation/devicetree/bindings/mips/brcm/
3515 F:      arch/mips/bcm47xx/*
3516 F:      arch/mips/include/asm/mach-bcm47xx/*
3517
3518 BROADCOM BCM4908 ETHERNET DRIVER
3519 M:      Rafał Miłecki <rafal@milecki.pl>
3520 M:      bcm-kernel-feedback-list@broadcom.com
3521 L:      netdev@vger.kernel.org
3522 S:      Maintained
3523 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3524 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3525 F:      drivers/net/ethernet/broadcom/unimac.h
3526
3527 BROADCOM BCM5301X ARM ARCHITECTURE
3528 M:      Hauke Mehrtens <hauke@hauke-m.de>
3529 M:      Rafał Miłecki <zajec5@gmail.com>
3530 M:      bcm-kernel-feedback-list@broadcom.com
3531 L:      linux-arm-kernel@lists.infradead.org
3532 S:      Maintained
3533 F:      arch/arm/boot/dts/bcm470*
3534 F:      arch/arm/boot/dts/bcm5301*
3535 F:      arch/arm/boot/dts/bcm953012*
3536 F:      arch/arm/mach-bcm/bcm_5301x.c
3537
3538 BROADCOM BCM53573 ARM ARCHITECTURE
3539 M:      Rafał Miłecki <rafal@milecki.pl>
3540 L:      bcm-kernel-feedback-list@broadcom.com
3541 L:      linux-arm-kernel@lists.infradead.org
3542 S:      Maintained
3543 F:      arch/arm/boot/dts/bcm47189*
3544 F:      arch/arm/boot/dts/bcm53573*
3545
3546 BROADCOM BCM63XX ARM ARCHITECTURE
3547 M:      Florian Fainelli <f.fainelli@gmail.com>
3548 M:      bcm-kernel-feedback-list@broadcom.com
3549 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3550 S:      Maintained
3551 T:      git git://github.com/broadcom/stblinux.git
3552 N:      bcm63xx
3553
3554 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3555 M:      Kevin Cernekee <cernekee@gmail.com>
3556 L:      linux-usb@vger.kernel.org
3557 S:      Maintained
3558 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3559
3560 BROADCOM BCM7XXX ARM ARCHITECTURE
3561 M:      Florian Fainelli <f.fainelli@gmail.com>
3562 M:      bcm-kernel-feedback-list@broadcom.com
3563 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3564 S:      Maintained
3565 T:      git git://github.com/broadcom/stblinux.git
3566 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3567 F:      arch/arm/boot/dts/bcm7*.dts*
3568 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3569 F:      arch/arm/mach-bcm/*brcmstb*
3570 F:      arch/arm/mm/cache-b15-rac.c
3571 F:      drivers/bus/brcmstb_gisb.c
3572 F:      drivers/pci/controller/pcie-brcmstb.c
3573 N:      brcmstb
3574
3575 BROADCOM BDC DRIVER
3576 M:      Al Cooper <alcooperx@gmail.com>
3577 L:      linux-usb@vger.kernel.org
3578 L:      bcm-kernel-feedback-list@broadcom.com
3579 S:      Maintained
3580 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3581 F:      drivers/usb/gadget/udc/bdc/
3582
3583 BROADCOM BMIPS CPUFREQ DRIVER
3584 M:      Markus Mayer <mmayer@broadcom.com>
3585 M:      bcm-kernel-feedback-list@broadcom.com
3586 L:      linux-pm@vger.kernel.org
3587 S:      Maintained
3588 F:      drivers/cpufreq/bmips-cpufreq.c
3589
3590 BROADCOM BMIPS MIPS ARCHITECTURE
3591 M:      Florian Fainelli <f.fainelli@gmail.com>
3592 L:      bcm-kernel-feedback-list@broadcom.com
3593 L:      linux-mips@vger.kernel.org
3594 S:      Maintained
3595 T:      git git://github.com/broadcom/stblinux.git
3596 F:      arch/mips/bmips/*
3597 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3598 F:      arch/mips/include/asm/mach-bmips/*
3599 F:      arch/mips/kernel/*bmips*
3600 F:      drivers/soc/bcm/bcm63xx
3601 F:      drivers/irqchip/irq-bcm63*
3602 F:      drivers/irqchip/irq-bcm7*
3603 F:      drivers/irqchip/irq-brcmstb*
3604 F:      include/linux/bcm963xx_nvram.h
3605 F:      include/linux/bcm963xx_tag.h
3606
3607 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3608 M:      Rasesh Mody <rmody@marvell.com>
3609 M:      GR-Linux-NIC-Dev@marvell.com
3610 L:      netdev@vger.kernel.org
3611 S:      Supported
3612 F:      drivers/net/ethernet/broadcom/bnx2.*
3613 F:      drivers/net/ethernet/broadcom/bnx2_*
3614
3615 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3616 M:      Saurav Kashyap <skashyap@marvell.com>
3617 M:      Javed Hasan <jhasan@marvell.com>
3618 M:      GR-QLogic-Storage-Upstream@marvell.com
3619 L:      linux-scsi@vger.kernel.org
3620 S:      Supported
3621 F:      drivers/scsi/bnx2fc/
3622
3623 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3624 M:      Nilesh Javali <njavali@marvell.com>
3625 M:      Manish Rangankar <mrangankar@marvell.com>
3626 M:      GR-QLogic-Storage-Upstream@marvell.com
3627 L:      linux-scsi@vger.kernel.org
3628 S:      Supported
3629 F:      drivers/scsi/bnx2i/
3630
3631 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3632 M:      Ariel Elior <aelior@marvell.com>
3633 M:      Sudarsana Kalluru <skalluru@marvell.com>
3634 M:      GR-everest-linux-l2@marvell.com
3635 L:      netdev@vger.kernel.org
3636 S:      Supported
3637 F:      drivers/net/ethernet/broadcom/bnx2x/
3638
3639 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3640 M:      Michael Chan <michael.chan@broadcom.com>
3641 L:      netdev@vger.kernel.org
3642 S:      Supported
3643 F:      drivers/net/ethernet/broadcom/bnxt/
3644
3645 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3646 M:      Arend van Spriel <aspriel@gmail.com>
3647 M:      Franky Lin <franky.lin@broadcom.com>
3648 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3649 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3650 M:      Wright Feng <wright.feng@infineon.com>
3651 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3652 L:      linux-wireless@vger.kernel.org
3653 L:      brcm80211-dev-list.pdl@broadcom.com
3654 L:      SHA-cyfmac-dev-list@infineon.com
3655 S:      Supported
3656 F:      drivers/net/wireless/broadcom/brcm80211/
3657
3658 BROADCOM BRCMSTB GPIO DRIVER
3659 M:      Gregory Fong <gregory.0xf0@gmail.com>
3660 L:      bcm-kernel-feedback-list@broadcom.com
3661 S:      Supported
3662 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3663 F:      drivers/gpio/gpio-brcmstb.c
3664
3665 BROADCOM BRCMSTB I2C DRIVER
3666 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3667 L:      linux-i2c@vger.kernel.org
3668 L:      bcm-kernel-feedback-list@broadcom.com
3669 S:      Supported
3670 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3671 F:      drivers/i2c/busses/i2c-brcmstb.c
3672
3673 BROADCOM BRCMSTB UART DRIVER
3674 M:      Al Cooper <alcooperx@gmail.com>
3675 L:      linux-serial@vger.kernel.org
3676 L:      bcm-kernel-feedback-list@broadcom.com
3677 S:      Maintained
3678 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3679 F:      drivers/tty/serial/8250/8250_bcm7271.c
3680
3681 BROADCOM BRCMSTB USB EHCI DRIVER
3682 M:      Al Cooper <alcooperx@gmail.com>
3683 L:      linux-usb@vger.kernel.org
3684 L:      bcm-kernel-feedback-list@broadcom.com
3685 S:      Maintained
3686 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3687 F:      drivers/usb/host/ehci-brcm.*
3688
3689 BROADCOM BRCMSTB USB PIN MAP DRIVER
3690 M:      Al Cooper <alcooperx@gmail.com>
3691 L:      linux-usb@vger.kernel.org
3692 L:      bcm-kernel-feedback-list@broadcom.com
3693 S:      Maintained
3694 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3695 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3696
3697 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3698 M:      Al Cooper <alcooperx@gmail.com>
3699 L:      linux-kernel@vger.kernel.org
3700 L:      bcm-kernel-feedback-list@broadcom.com
3701 S:      Maintained
3702 F:      drivers/phy/broadcom/phy-brcm-usb*
3703
3704 BROADCOM ETHERNET PHY DRIVERS
3705 M:      Florian Fainelli <f.fainelli@gmail.com>
3706 L:      bcm-kernel-feedback-list@broadcom.com
3707 L:      netdev@vger.kernel.org
3708 S:      Supported
3709 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3710 F:      drivers/net/phy/bcm*.[ch]
3711 F:      drivers/net/phy/broadcom.c
3712 F:      include/linux/brcmphy.h
3713
3714 BROADCOM GENET ETHERNET DRIVER
3715 M:      Doug Berger <opendmb@gmail.com>
3716 M:      Florian Fainelli <f.fainelli@gmail.com>
3717 L:      bcm-kernel-feedback-list@broadcom.com
3718 L:      netdev@vger.kernel.org
3719 S:      Supported
3720 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3721 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3722 F:      drivers/net/ethernet/broadcom/genet/
3723 F:      drivers/net/ethernet/broadcom/unimac.h
3724 F:      drivers/net/mdio/mdio-bcm-unimac.c
3725 F:      include/linux/platform_data/bcmgenet.h
3726 F:      include/linux/platform_data/mdio-bcm-unimac.h
3727
3728 BROADCOM IPROC ARM ARCHITECTURE
3729 M:      Ray Jui <rjui@broadcom.com>
3730 M:      Scott Branden <sbranden@broadcom.com>
3731 M:      bcm-kernel-feedback-list@broadcom.com
3732 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3733 S:      Maintained
3734 T:      git git://github.com/broadcom/cygnus-linux.git
3735 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3736 F:      arch/arm64/boot/dts/broadcom/stingray/*
3737 F:      drivers/clk/bcm/clk-ns*
3738 F:      drivers/clk/bcm/clk-sr*
3739 F:      drivers/pinctrl/bcm/pinctrl-ns*
3740 F:      include/dt-bindings/clock/bcm-sr*
3741 N:      iproc
3742 N:      cygnus
3743 N:      bcm[-_]nsp
3744 N:      bcm9113*
3745 N:      bcm9583*
3746 N:      bcm9585*
3747 N:      bcm9586*
3748 N:      bcm988312
3749 N:      bcm113*
3750 N:      bcm583*
3751 N:      bcm585*
3752 N:      bcm586*
3753 N:      bcm88312
3754 N:      hr2
3755 N:      stingray
3756
3757 BROADCOM IPROC GBIT ETHERNET DRIVER
3758 M:      Rafał Miłecki <rafal@milecki.pl>
3759 M:      bcm-kernel-feedback-list@broadcom.com
3760 L:      netdev@vger.kernel.org
3761 S:      Maintained
3762 F:      Documentation/devicetree/bindings/net/brcm,amac.txt
3763 F:      drivers/net/ethernet/broadcom/bgmac*
3764 F:      drivers/net/ethernet/broadcom/unimac.h
3765
3766 BROADCOM KONA GPIO DRIVER
3767 M:      Ray Jui <rjui@broadcom.com>
3768 L:      bcm-kernel-feedback-list@broadcom.com
3769 S:      Supported
3770 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3771 F:      drivers/gpio/gpio-bcm-kona.c
3772
3773 BROADCOM NETXTREME-E ROCE DRIVER
3774 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3775 M:      Naresh Kumar PBS <nareshkumar.pbs@broadcom.com>
3776 L:      linux-rdma@vger.kernel.org
3777 S:      Supported
3778 W:      http://www.broadcom.com
3779 F:      drivers/infiniband/hw/bnxt_re/
3780 F:      include/uapi/rdma/bnxt_re-abi.h
3781
3782 BROADCOM NVRAM DRIVER
3783 M:      Rafał Miłecki <zajec5@gmail.com>
3784 L:      linux-mips@vger.kernel.org
3785 S:      Maintained
3786 F:      drivers/firmware/broadcom/*
3787
3788 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3789 M:      Rafał Miłecki <rafal@milecki.pl>
3790 M:      Florian Fainelli <f.fainelli@gmail.com>
3791 M:      bcm-kernel-feedback-list@broadcom.com
3792 L:      linux-pm@vger.kernel.org
3793 S:      Maintained
3794 T:      git git://github.com/broadcom/stblinux.git
3795 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
3796 F:      include/dt-bindings/soc/bcm-pmb.h
3797
3798 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3799 M:      Rafał Miłecki <zajec5@gmail.com>
3800 L:      linux-wireless@vger.kernel.org
3801 S:      Maintained
3802 F:      drivers/bcma/
3803 F:      include/linux/bcma/
3804
3805 BROADCOM SPI DRIVER
3806 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3807 M:      bcm-kernel-feedback-list@broadcom.com
3808 S:      Maintained
3809 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
3810 F:      drivers/spi/spi-bcm-qspi.*
3811 F:      drivers/spi/spi-brcmstb-qspi.c
3812 F:      drivers/spi/spi-iproc-qspi.c
3813
3814 BROADCOM STB AVS CPUFREQ DRIVER
3815 M:      Markus Mayer <mmayer@broadcom.com>
3816 M:      bcm-kernel-feedback-list@broadcom.com
3817 L:      linux-pm@vger.kernel.org
3818 S:      Maintained
3819 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3820 F:      drivers/cpufreq/brcmstb*
3821
3822 BROADCOM STB AVS TMON DRIVER
3823 M:      Markus Mayer <mmayer@broadcom.com>
3824 M:      bcm-kernel-feedback-list@broadcom.com
3825 L:      linux-pm@vger.kernel.org
3826 S:      Maintained
3827 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3828 F:      drivers/thermal/broadcom/brcmstb*
3829
3830 BROADCOM STB DPFE DRIVER
3831 M:      Markus Mayer <mmayer@broadcom.com>
3832 M:      bcm-kernel-feedback-list@broadcom.com
3833 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3834 S:      Maintained
3835 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3836 F:      drivers/memory/brcmstb_dpfe.c
3837
3838 BROADCOM STB NAND FLASH DRIVER
3839 M:      Brian Norris <computersforpeace@gmail.com>
3840 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3841 L:      linux-mtd@lists.infradead.org
3842 L:      bcm-kernel-feedback-list@broadcom.com
3843 S:      Maintained
3844 F:      drivers/mtd/nand/raw/brcmnand/
3845
3846 BROADCOM SYSTEMPORT ETHERNET DRIVER
3847 M:      Florian Fainelli <f.fainelli@gmail.com>
3848 L:      bcm-kernel-feedback-list@broadcom.com
3849 L:      netdev@vger.kernel.org
3850 S:      Supported
3851 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3852 F:      drivers/net/ethernet/broadcom/unimac.h
3853
3854 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3855 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3856 M:      Prashant Sreedharan <prashant@broadcom.com>
3857 M:      Michael Chan <mchan@broadcom.com>
3858 L:      netdev@vger.kernel.org
3859 S:      Supported
3860 F:      drivers/net/ethernet/broadcom/tg3.*
3861
3862 BROADCOM VK DRIVER
3863 M:      Scott Branden <scott.branden@broadcom.com>
3864 L:      bcm-kernel-feedback-list@broadcom.com
3865 S:      Supported
3866 F:      drivers/misc/bcm-vk/
3867 F:      include/uapi/linux/misc/bcm_vk.h
3868
3869 BROCADE BFA FC SCSI DRIVER
3870 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3871 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3872 L:      linux-scsi@vger.kernel.org
3873 S:      Supported
3874 F:      drivers/scsi/bfa/
3875
3876 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3877 M:      Rasesh Mody <rmody@marvell.com>
3878 M:      Sudarsana Kalluru <skalluru@marvell.com>
3879 M:      GR-Linux-NIC-Dev@marvell.com
3880 L:      netdev@vger.kernel.org
3881 S:      Supported
3882 F:      drivers/net/ethernet/brocade/bna/
3883
3884 BSG (block layer generic sg v4 driver)
3885 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3886 L:      linux-scsi@vger.kernel.org
3887 S:      Supported
3888 F:      block/bsg.c
3889 F:      include/linux/bsg.h
3890 F:      include/uapi/linux/bsg.h
3891
3892 BT87X AUDIO DRIVER
3893 M:      Clemens Ladisch <clemens@ladisch.de>
3894 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3895 S:      Maintained
3896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3897 F:      Documentation/sound/cards/bt87x.rst
3898 F:      sound/pci/bt87x.c
3899
3900 BT8XXGPIO DRIVER
3901 M:      Michael Buesch <m@bues.ch>
3902 S:      Maintained
3903 W:      http://bu3sch.de/btgpio.php
3904 F:      drivers/gpio/gpio-bt8xx.c
3905
3906 BTRFS FILE SYSTEM
3907 M:      Chris Mason <clm@fb.com>
3908 M:      Josef Bacik <josef@toxicpanda.com>
3909 M:      David Sterba <dsterba@suse.com>
3910 L:      linux-btrfs@vger.kernel.org
3911 S:      Maintained
3912 W:      http://btrfs.wiki.kernel.org/
3913 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3914 C:      irc://irc.libera.chat/btrfs
3915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3916 F:      Documentation/filesystems/btrfs.rst
3917 F:      fs/btrfs/
3918 F:      include/linux/btrfs*
3919 F:      include/uapi/linux/btrfs*
3920
3921 BTTV VIDEO4LINUX DRIVER
3922 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3923 L:      linux-media@vger.kernel.org
3924 S:      Odd fixes
3925 W:      https://linuxtv.org
3926 T:      git git://linuxtv.org/media_tree.git
3927 F:      Documentation/driver-api/media/drivers/bttv*
3928 F:      drivers/media/pci/bt8xx/bttv*
3929
3930 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3931 M:      Chanwoo Choi <cw00.choi@samsung.com>
3932 L:      linux-pm@vger.kernel.org
3933 L:      linux-samsung-soc@vger.kernel.org
3934 S:      Maintained
3935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3936 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3937 F:      drivers/devfreq/exynos-bus.c
3938
3939 BUSLOGIC SCSI DRIVER
3940 M:      Khalid Aziz <khalid@gonehiking.org>
3941 L:      linux-scsi@vger.kernel.org
3942 S:      Maintained
3943 F:      drivers/scsi/BusLogic.*
3944 F:      drivers/scsi/FlashPoint.*
3945
3946 C-MEDIA CMI8788 DRIVER
3947 M:      Clemens Ladisch <clemens@ladisch.de>
3948 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3949 S:      Maintained
3950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3951 F:      sound/pci/oxygen/
3952
3953 C-SKY ARCHITECTURE
3954 M:      Guo Ren <guoren@kernel.org>
3955 L:      linux-csky@vger.kernel.org
3956 S:      Supported
3957 T:      git https://github.com/c-sky/csky-linux.git
3958 F:      Documentation/devicetree/bindings/csky/
3959 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3960 F:      Documentation/devicetree/bindings/timer/csky,*
3961 F:      arch/csky/
3962 F:      drivers/clocksource/timer-gx6605s.c
3963 F:      drivers/clocksource/timer-mp-csky.c
3964 F:      drivers/irqchip/irq-csky-*
3965 N:      csky
3966 K:      csky
3967
3968 CA8210 IEEE-802.15.4 RADIO DRIVER
3969 M:      Harry Morris <h.morris@cascoda.com>
3970 L:      linux-wpan@vger.kernel.org
3971 S:      Maintained
3972 W:      https://github.com/Cascoda/ca8210-linux.git
3973 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3974 F:      drivers/net/ieee802154/ca8210.c
3975
3976 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
3977 M:      Damien Le Moal <damien.lemoal@wdc.com>
3978 L:      linux-riscv@lists.infradead.org
3979 L:      linux-gpio@vger.kernel.org (pinctrl driver)
3980 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
3981 F:      drivers/pinctrl/pinctrl-k210.c
3982
3983 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
3984 M:      Damien Le Moal <damien.lemoal@wdc.com>
3985 L:      linux-kernel@vger.kernel.org
3986 L:      linux-riscv@lists.infradead.org
3987 S:      Maintained
3988 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
3989 F:      drivers/reset/reset-k210.c
3990
3991 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
3992 M:      Damien Le Moal <damien.lemoal@wdc.com>
3993 L:      linux-riscv@lists.infradead.org
3994 S:      Maintained
3995 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
3996 F:      drivers/soc/canaan/
3997 F:      include/soc/canaan/
3998
3999 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4000 M:      David Howells <dhowells@redhat.com>
4001 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4002 S:      Supported
4003 F:      Documentation/filesystems/caching/cachefiles.rst
4004 F:      fs/cachefiles/
4005
4006 CADENCE MIPI-CSI2 BRIDGES
4007 M:      Maxime Ripard <mripard@kernel.org>
4008 L:      linux-media@vger.kernel.org
4009 S:      Maintained
4010 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4011 F:      drivers/media/platform/cadence/cdns-csi2*
4012
4013 CADENCE NAND DRIVER
4014 L:      linux-mtd@lists.infradead.org
4015 S:      Orphan
4016 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4017 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4018
4019 CADENCE USB3 DRD IP DRIVER
4020 M:      Peter Chen <peter.chen@kernel.org>
4021 M:      Pawel Laszczak <pawell@cadence.com>
4022 R:      Roger Quadros <rogerq@kernel.org>
4023 R:      Aswath Govindraju <a-govindraju@ti.com>
4024 L:      linux-usb@vger.kernel.org
4025 S:      Maintained
4026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4027 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4028 F:      drivers/usb/cdns3/
4029 X:      drivers/usb/cdns3/cdnsp*
4030
4031 CADENCE USBSSP DRD IP DRIVER
4032 M:      Pawel Laszczak <pawell@cadence.com>
4033 L:      linux-usb@vger.kernel.org
4034 S:      Maintained
4035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4036 F:      drivers/usb/cdns3/
4037 X:      drivers/usb/cdns3/cdns3*
4038
4039 CADET FM/AM RADIO RECEIVER DRIVER
4040 M:      Hans Verkuil <hverkuil@xs4all.nl>
4041 L:      linux-media@vger.kernel.org
4042 S:      Maintained
4043 W:      https://linuxtv.org
4044 T:      git git://linuxtv.org/media_tree.git
4045 F:      drivers/media/radio/radio-cadet*
4046
4047 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4048 L:      linux-media@vger.kernel.org
4049 S:      Orphan
4050 T:      git git://linuxtv.org/media_tree.git
4051 F:      Documentation/admin-guide/media/cafe_ccic*
4052 F:      drivers/media/platform/marvell-ccic/
4053
4054 CAIF NETWORK LAYER
4055 L:      netdev@vger.kernel.org
4056 S:      Orphan
4057 F:      Documentation/networking/caif/
4058 F:      drivers/net/caif/
4059 F:      include/net/caif/
4060 F:      include/uapi/linux/caif/
4061 F:      net/caif/
4062
4063 CAKE QDISC
4064 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4065 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4066 S:      Maintained
4067 F:      net/sched/sch_cake.c
4068
4069 CAN NETWORK DRIVERS
4070 M:      Wolfgang Grandegger <wg@grandegger.com>
4071 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4072 L:      linux-can@vger.kernel.org
4073 S:      Maintained
4074 W:      https://github.com/linux-can
4075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4077 F:      Documentation/devicetree/bindings/net/can/
4078 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4079 F:      drivers/net/can/
4080 F:      drivers/phy/phy-can-transceiver.c
4081 F:      include/linux/can/bittiming.h
4082 F:      include/linux/can/dev.h
4083 F:      include/linux/can/led.h
4084 F:      include/linux/can/length.h
4085 F:      include/linux/can/platform/
4086 F:      include/linux/can/rx-offload.h
4087 F:      include/uapi/linux/can/error.h
4088 F:      include/uapi/linux/can/netlink.h
4089 F:      include/uapi/linux/can/vxcan.h
4090
4091 CAN NETWORK LAYER
4092 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4093 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4094 L:      linux-can@vger.kernel.org
4095 S:      Maintained
4096 W:      https://github.com/linux-can
4097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4099 F:      Documentation/networking/can.rst
4100 F:      include/linux/can/can-ml.h
4101 F:      include/linux/can/core.h
4102 F:      include/linux/can/skb.h
4103 F:      include/net/netns/can.h
4104 F:      include/uapi/linux/can.h
4105 F:      include/uapi/linux/can/bcm.h
4106 F:      include/uapi/linux/can/gw.h
4107 F:      include/uapi/linux/can/isotp.h
4108 F:      include/uapi/linux/can/raw.h
4109 F:      net/can/
4110
4111 CAN-J1939 NETWORK LAYER
4112 M:      Robin van der Gracht <robin@protonic.nl>
4113 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4114 R:      kernel@pengutronix.de
4115 L:      linux-can@vger.kernel.org
4116 S:      Maintained
4117 F:      Documentation/networking/j1939.rst
4118 F:      include/uapi/linux/can/j1939.h
4119 F:      net/can/j1939/
4120
4121 CAPABILITIES
4122 M:      Serge Hallyn <serge@hallyn.com>
4123 L:      linux-security-module@vger.kernel.org
4124 S:      Supported
4125 F:      include/linux/capability.h
4126 F:      include/uapi/linux/capability.h
4127 F:      kernel/capability.c
4128 F:      security/commoncap.c
4129
4130 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4131 M:      Kevin Tsai <ktsai@capellamicro.com>
4132 S:      Maintained
4133 F:      drivers/iio/light/cm*
4134
4135 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4136 M:      Christian Lamparter <chunkeey@googlemail.com>
4137 L:      linux-wireless@vger.kernel.org
4138 S:      Maintained
4139 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4140 F:      drivers/net/wireless/ath/carl9170/
4141
4142 CAVIUM I2C DRIVER
4143 M:      Robert Richter <rric@kernel.org>
4144 S:      Odd Fixes
4145 W:      http://www.marvell.com
4146 F:      drivers/i2c/busses/i2c-octeon*
4147 F:      drivers/i2c/busses/i2c-thunderx*
4148
4149 CAVIUM LIQUIDIO NETWORK DRIVER
4150 M:      Derek Chickles <dchickles@marvell.com>
4151 M:      Satanand Burla <sburla@marvell.com>
4152 M:      Felix Manlunas <fmanlunas@marvell.com>
4153 L:      netdev@vger.kernel.org
4154 S:      Supported
4155 W:      http://www.marvell.com
4156 F:      drivers/net/ethernet/cavium/liquidio/
4157
4158 CAVIUM MMC DRIVER
4159 M:      Robert Richter <rric@kernel.org>
4160 S:      Odd Fixes
4161 W:      http://www.marvell.com
4162 F:      drivers/mmc/host/cavium*
4163
4164 CAVIUM OCTEON-TX CRYPTO DRIVER
4165 M:      George Cherian <gcherian@marvell.com>
4166 L:      linux-crypto@vger.kernel.org
4167 S:      Supported
4168 W:      http://www.marvell.com
4169 F:      drivers/crypto/cavium/cpt/
4170
4171 CAVIUM THUNDERX2 ARM64 SOC
4172 M:      Robert Richter <rric@kernel.org>
4173 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4174 S:      Odd Fixes
4175 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4176 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4177
4178 CBS/ETF/TAPRIO QDISCS
4179 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4180 S:      Maintained
4181 L:      netdev@vger.kernel.org
4182 F:      net/sched/sch_cbs.c
4183 F:      net/sched/sch_etf.c
4184 F:      net/sched/sch_taprio.c
4185
4186 CC2520 IEEE-802.15.4 RADIO DRIVER
4187 M:      Varka Bhadram <varkabhadram@gmail.com>
4188 L:      linux-wpan@vger.kernel.org
4189 S:      Maintained
4190 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4191 F:      drivers/net/ieee802154/cc2520.c
4192 F:      include/linux/spi/cc2520.h
4193
4194 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4195 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4196 L:      linux-crypto@vger.kernel.org
4197 S:      Supported
4198 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4199 F:      drivers/crypto/ccree/
4200
4201 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4202 M:      Hadar Gat <hadar.gat@arm.com>
4203 L:      linux-crypto@vger.kernel.org
4204 S:      Supported
4205 F:      drivers/char/hw_random/cctrng.c
4206 F:      drivers/char/hw_random/cctrng.h
4207 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4208 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4209
4210 CEC FRAMEWORK
4211 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4212 L:      linux-media@vger.kernel.org
4213 S:      Supported
4214 W:      http://linuxtv.org
4215 T:      git git://linuxtv.org/media_tree.git
4216 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4217 F:      Documentation/devicetree/bindings/media/cec.txt
4218 F:      Documentation/driver-api/media/cec-core.rst
4219 F:      Documentation/userspace-api/media/cec
4220 F:      drivers/media/cec/
4221 F:      drivers/media/rc/keymaps/rc-cec.c
4222 F:      include/media/cec-notifier.h
4223 F:      include/media/cec.h
4224 F:      include/uapi/linux/cec-funcs.h
4225 F:      include/uapi/linux/cec.h
4226
4227 CEC GPIO DRIVER
4228 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4229 L:      linux-media@vger.kernel.org
4230 S:      Supported
4231 W:      http://linuxtv.org
4232 T:      git git://linuxtv.org/media_tree.git
4233 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4234 F:      drivers/media/cec/platform/cec-gpio/
4235
4236 CELL BROADBAND ENGINE ARCHITECTURE
4237 M:      Arnd Bergmann <arnd@arndb.de>
4238 L:      linuxppc-dev@lists.ozlabs.org
4239 S:      Supported
4240 W:      http://www.ibm.com/developerworks/power/cell/
4241 F:      arch/powerpc/include/asm/cell*.h
4242 F:      arch/powerpc/include/asm/spu*.h
4243 F:      arch/powerpc/include/uapi/asm/spu*.h
4244 F:      arch/powerpc/platforms/cell/
4245
4246 CELLWISE CW2015 BATTERY DRIVER
4247 M:      Tobias Schrammm <t.schramm@manjaro.org>
4248 S:      Maintained
4249 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4250 F:      drivers/power/supply/cw2015_battery.c
4251
4252 CEPH COMMON CODE (LIBCEPH)
4253 M:      Ilya Dryomov <idryomov@gmail.com>
4254 M:      Jeff Layton <jlayton@kernel.org>
4255 L:      ceph-devel@vger.kernel.org
4256 S:      Supported
4257 W:      http://ceph.com/
4258 T:      git git://github.com/ceph/ceph-client.git
4259 F:      include/linux/ceph/
4260 F:      include/linux/crush/
4261 F:      net/ceph/
4262
4263 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4264 M:      Jeff Layton <jlayton@kernel.org>
4265 M:      Ilya Dryomov <idryomov@gmail.com>
4266 L:      ceph-devel@vger.kernel.org
4267 S:      Supported
4268 W:      http://ceph.com/
4269 T:      git git://github.com/ceph/ceph-client.git
4270 F:      Documentation/filesystems/ceph.rst
4271 F:      fs/ceph/
4272
4273 CERTIFICATE HANDLING
4274 M:      David Howells <dhowells@redhat.com>
4275 M:      David Woodhouse <dwmw2@infradead.org>
4276 L:      keyrings@vger.kernel.org
4277 S:      Maintained
4278 F:      Documentation/admin-guide/module-signing.rst
4279 F:      certs/
4280 F:      scripts/extract-cert.c
4281 F:      scripts/sign-file.c
4282
4283 CFAG12864B LCD DRIVER
4284 M:      Miguel Ojeda <ojeda@kernel.org>
4285 S:      Maintained
4286 F:      drivers/auxdisplay/cfag12864b.c
4287 F:      include/linux/cfag12864b.h
4288
4289 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4290 M:      Miguel Ojeda <ojeda@kernel.org>
4291 S:      Maintained
4292 F:      drivers/auxdisplay/cfag12864bfb.c
4293 F:      include/linux/cfag12864b.h
4294
4295 CHAR and MISC DRIVERS
4296 M:      Arnd Bergmann <arnd@arndb.de>
4297 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4298 S:      Supported
4299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4300 F:      drivers/char/
4301 F:      drivers/misc/
4302 F:      include/linux/miscdevice.h
4303 X:      drivers/char/agp/
4304 X:      drivers/char/hw_random/
4305 X:      drivers/char/ipmi/
4306 X:      drivers/char/random.c
4307 X:      drivers/char/tpm/
4308
4309 CHECKPATCH
4310 M:      Andy Whitcroft <apw@canonical.com>
4311 M:      Joe Perches <joe@perches.com>
4312 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4313 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4314 S:      Maintained
4315 F:      scripts/checkpatch.pl
4316
4317 CHECKPATCH DOCUMENTATION
4318 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4319 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4320 R:      Joe Perches <joe@perches.com>
4321 S:      Maintained
4322 F:      Documentation/dev-tools/checkpatch.rst
4323
4324 CHINESE DOCUMENTATION
4325 M:      Alex Shi <alexs@kernel.org>
4326 S:      Maintained
4327 F:      Documentation/translations/zh_CN/
4328
4329 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4330 M:      Peter Chen <peter.chen@kernel.org>
4331 L:      linux-usb@vger.kernel.org
4332 S:      Maintained
4333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4334 F:      drivers/usb/chipidea/
4335
4336 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4337 M:      Hans de Goede <hdegoede@redhat.com>
4338 L:      linux-input@vger.kernel.org
4339 S:      Maintained
4340 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4341 F:      drivers/input/touchscreen/chipone_icn8318.c
4342
4343 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4344 M:      Hans de Goede <hdegoede@redhat.com>
4345 L:      linux-input@vger.kernel.org
4346 S:      Maintained
4347 F:      drivers/input/touchscreen/chipone_icn8505.c
4348
4349 CHROME HARDWARE PLATFORM SUPPORT
4350 M:      Benson Leung <bleung@chromium.org>
4351 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4352 S:      Maintained
4353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4354 F:      drivers/platform/chrome/
4355
4356 CHROMEOS EC CODEC DRIVER
4357 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4358 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4359 R:      Guenter Roeck <groeck@chromium.org>
4360 S:      Maintained
4361 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4362 F:      sound/soc/codecs/cros_ec_codec.*
4363
4364 CHROMEOS EC SUBDRIVERS
4365 M:      Benson Leung <bleung@chromium.org>
4366 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4367 R:      Guenter Roeck <groeck@chromium.org>
4368 S:      Maintained
4369 F:      drivers/power/supply/cros_usbpd-charger.c
4370 N:      cros_ec
4371 N:      cros-ec
4372
4373 CHRONTEL CH7322 CEC DRIVER
4374 M:      Jeff Chase <jnchase@google.com>
4375 L:      linux-media@vger.kernel.org
4376 S:      Maintained
4377 T:      git git://linuxtv.org/media_tree.git
4378 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4379 F:      drivers/media/cec/i2c/ch7322.c
4380
4381 CIRRUS LOGIC AUDIO CODEC DRIVERS
4382 M:      James Schulman <james.schulman@cirrus.com>
4383 M:      David Rhodes <david.rhodes@cirrus.com>
4384 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4385 L:      patches@opensource.cirrus.com
4386 S:      Maintained
4387 F:      sound/soc/codecs/cs*
4388
4389 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4390 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4391 L:      netdev@vger.kernel.org
4392 S:      Maintained
4393 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4394
4395 CIRRUS LOGIC LOCHNAGAR DRIVER
4396 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4397 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4398 L:      patches@opensource.cirrus.com
4399 S:      Supported
4400 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4401 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4402 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4403 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4404 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4405 F:      Documentation/hwmon/lochnagar.rst
4406 F:      drivers/clk/clk-lochnagar.c
4407 F:      drivers/hwmon/lochnagar-hwmon.c
4408 F:      drivers/mfd/lochnagar-i2c.c
4409 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4410 F:      drivers/regulator/lochnagar-regulator.c
4411 F:      include/dt-bindings/clk/lochnagar.h
4412 F:      include/dt-bindings/pinctrl/lochnagar.h
4413 F:      include/linux/mfd/lochnagar*
4414 F:      sound/soc/codecs/lochnagar-sc.c
4415
4416 CIRRUS LOGIC MADERA CODEC DRIVERS
4417 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4418 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4419 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4420 L:      patches@opensource.cirrus.com
4421 S:      Supported
4422 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4423 T:      git https://github.com/CirrusLogic/linux-drivers.git
4424 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4425 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4426 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4427 F:      drivers/gpio/gpio-madera*
4428 F:      drivers/irqchip/irq-madera*
4429 F:      drivers/mfd/cs47l*
4430 F:      drivers/mfd/madera*
4431 F:      drivers/pinctrl/cirrus/*
4432 F:      include/dt-bindings/sound/madera*
4433 F:      include/linux/irqchip/irq-madera*
4434 F:      include/linux/mfd/madera/*
4435 F:      include/sound/madera*
4436 F:      sound/soc/codecs/cs47l*
4437 F:      sound/soc/codecs/madera*
4438
4439 CISCO FCOE HBA DRIVER
4440 M:      Satish Kharat <satishkh@cisco.com>
4441 M:      Sesidhar Baddela <sebaddel@cisco.com>
4442 M:      Karan Tilak Kumar <kartilak@cisco.com>
4443 L:      linux-scsi@vger.kernel.org
4444 S:      Supported
4445 F:      drivers/scsi/fnic/
4446
4447 CISCO SCSI HBA DRIVER
4448 M:      Karan Tilak Kumar <kartilak@cisco.com>
4449 M:      Sesidhar Baddela <sebaddel@cisco.com>
4450 L:      linux-scsi@vger.kernel.org
4451 S:      Supported
4452 F:      drivers/scsi/snic/
4453
4454 CISCO VIC ETHERNET NIC DRIVER
4455 M:      Christian Benvenuti <benve@cisco.com>
4456 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4457 S:      Supported
4458 F:      drivers/net/ethernet/cisco/enic/
4459
4460 CISCO VIC LOW LATENCY NIC DRIVER
4461 M:      Christian Benvenuti <benve@cisco.com>
4462 M:      Nelson Escobar <neescoba@cisco.com>
4463 S:      Supported
4464 F:      drivers/infiniband/hw/usnic/
4465
4466 CLANG-FORMAT FILE
4467 M:      Miguel Ojeda <ojeda@kernel.org>
4468 S:      Maintained
4469 F:      .clang-format
4470
4471 CLANG/LLVM BUILD SUPPORT
4472 M:      Nathan Chancellor <nathan@kernel.org>
4473 M:      Nick Desaulniers <ndesaulniers@google.com>
4474 L:      clang-built-linux@googlegroups.com
4475 S:      Supported
4476 W:      https://clangbuiltlinux.github.io/
4477 B:      https://github.com/ClangBuiltLinux/linux/issues
4478 C:      irc://chat.freenode.net/clangbuiltlinux
4479 F:      Documentation/kbuild/llvm.rst
4480 F:      include/linux/compiler-clang.h
4481 F:      scripts/clang-tools/
4482 K:      \b(?i:clang|llvm)\b
4483
4484 CLANG CONTROL FLOW INTEGRITY SUPPORT
4485 M:      Sami Tolvanen <samitolvanen@google.com>
4486 M:      Kees Cook <keescook@chromium.org>
4487 R:      Nathan Chancellor <nathan@kernel.org>
4488 R:      Nick Desaulniers <ndesaulniers@google.com>
4489 L:      clang-built-linux@googlegroups.com
4490 S:      Supported
4491 B:      https://github.com/ClangBuiltLinux/linux/issues
4492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4493 F:      include/linux/cfi.h
4494 F:      kernel/cfi.c
4495
4496 CLEANCACHE API
4497 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4498 L:      linux-kernel@vger.kernel.org
4499 S:      Maintained
4500 F:      include/linux/cleancache.h
4501 F:      mm/cleancache.c
4502
4503 CLK API
4504 M:      Russell King <linux@armlinux.org.uk>
4505 L:      linux-clk@vger.kernel.org
4506 S:      Maintained
4507 F:      include/linux/clk.h
4508
4509 CLOCKSOURCE, CLOCKEVENT DRIVERS
4510 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4511 M:      Thomas Gleixner <tglx@linutronix.de>
4512 L:      linux-kernel@vger.kernel.org
4513 S:      Supported
4514 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4515 F:      Documentation/devicetree/bindings/timer/
4516 F:      drivers/clocksource/
4517
4518 CMPC ACPI DRIVER
4519 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4520 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4521 L:      platform-driver-x86@vger.kernel.org
4522 S:      Supported
4523 F:      drivers/platform/x86/classmate-laptop.c
4524
4525 COBALT MEDIA DRIVER
4526 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4527 L:      linux-media@vger.kernel.org
4528 S:      Supported
4529 W:      https://linuxtv.org
4530 T:      git git://linuxtv.org/media_tree.git
4531 F:      drivers/media/pci/cobalt/
4532
4533 COCCINELLE/Semantic Patches (SmPL)
4534 M:      Julia Lawall <Julia.Lawall@inria.fr>
4535 M:      Gilles Muller <Gilles.Muller@inria.fr>
4536 M:      Nicolas Palix <nicolas.palix@imag.fr>
4537 M:      Michal Marek <michal.lkml@markovi.net>
4538 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4539 S:      Supported
4540 W:      http://coccinelle.lip6.fr/
4541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4542 F:      Documentation/dev-tools/coccinelle.rst
4543 F:      scripts/coccicheck
4544 F:      scripts/coccinelle/
4545
4546 CODA FILE SYSTEM
4547 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4548 M:      coda@cs.cmu.edu
4549 L:      codalist@coda.cs.cmu.edu
4550 S:      Maintained
4551 W:      http://www.coda.cs.cmu.edu/
4552 F:      Documentation/filesystems/coda.rst
4553 F:      fs/coda/
4554 F:      include/linux/coda*.h
4555 F:      include/uapi/linux/coda*.h
4556
4557 CODA V4L2 MEM2MEM DRIVER
4558 M:      Philipp Zabel <p.zabel@pengutronix.de>
4559 L:      linux-media@vger.kernel.org
4560 S:      Maintained
4561 F:      Documentation/devicetree/bindings/media/coda.yaml
4562 F:      drivers/media/platform/coda/
4563
4564 CODE OF CONDUCT
4565 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4566 S:      Supported
4567 F:      Documentation/process/code-of-conduct-interpretation.rst
4568 F:      Documentation/process/code-of-conduct.rst
4569
4570 COMEDI DRIVERS
4571 M:      Ian Abbott <abbotti@mev.co.uk>
4572 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4573 S:      Odd Fixes
4574 F:      drivers/comedi/
4575
4576 COMMON CLK FRAMEWORK
4577 M:      Michael Turquette <mturquette@baylibre.com>
4578 M:      Stephen Boyd <sboyd@kernel.org>
4579 L:      linux-clk@vger.kernel.org
4580 S:      Maintained
4581 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4583 F:      Documentation/devicetree/bindings/clock/
4584 F:      drivers/clk/
4585 F:      include/linux/clk-pr*
4586 F:      include/linux/clk/
4587 F:      include/linux/of_clk.h
4588 X:      drivers/clk/clkdev.c
4589
4590 COMMON INTERNET FILE SYSTEM (CIFS)
4591 M:      Steve French <sfrench@samba.org>
4592 L:      linux-cifs@vger.kernel.org
4593 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4594 S:      Supported
4595 W:      http://linux-cifs.samba.org/
4596 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4597 F:      Documentation/admin-guide/cifs/
4598 F:      fs/cifs/
4599
4600 COMPACTPCI HOTPLUG CORE
4601 M:      Scott Murray <scott@spiteful.org>
4602 L:      linux-pci@vger.kernel.org
4603 S:      Maintained
4604 F:      drivers/pci/hotplug/cpci_hotplug*
4605
4606 COMPACTPCI HOTPLUG GENERIC DRIVER
4607 M:      Scott Murray <scott@spiteful.org>
4608 L:      linux-pci@vger.kernel.org
4609 S:      Maintained
4610 F:      drivers/pci/hotplug/cpcihp_generic.c
4611
4612 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4613 M:      Scott Murray <scott@spiteful.org>
4614 L:      linux-pci@vger.kernel.org
4615 S:      Maintained
4616 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4617
4618 COMPAL LAPTOP SUPPORT
4619 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4620 L:      platform-driver-x86@vger.kernel.org
4621 S:      Maintained
4622 F:      drivers/platform/x86/compal-laptop.c
4623
4624 COMPILER ATTRIBUTES
4625 M:      Miguel Ojeda <ojeda@kernel.org>
4626 S:      Maintained
4627 F:      include/linux/compiler_attributes.h
4628
4629 COMPUTE EXPRESS LINK (CXL)
4630 M:      Alison Schofield <alison.schofield@intel.com>
4631 M:      Vishal Verma <vishal.l.verma@intel.com>
4632 M:      Ira Weiny <ira.weiny@intel.com>
4633 M:      Ben Widawsky <ben.widawsky@intel.com>
4634 M:      Dan Williams <dan.j.williams@intel.com>
4635 L:      linux-cxl@vger.kernel.org
4636 S:      Maintained
4637 F:      drivers/cxl/
4638 F:      include/uapi/linux/cxl_mem.h
4639
4640 CONEXANT ACCESSRUNNER USB DRIVER
4641 L:      accessrunner-general@lists.sourceforge.net
4642 S:      Orphan
4643 W:      http://accessrunner.sourceforge.net/
4644 F:      drivers/usb/atm/cxacru.c
4645
4646 CONFIGFS
4647 M:      Joel Becker <jlbec@evilplan.org>
4648 M:      Christoph Hellwig <hch@lst.de>
4649 S:      Supported
4650 T:      git git://git.infradead.org/users/hch/configfs.git
4651 F:      fs/configfs/
4652 F:      include/linux/configfs.h
4653 F:      samples/configfs/
4654
4655 CONSOLE SUBSYSTEM
4656 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4657 S:      Supported
4658 F:      drivers/video/console/
4659 F:      include/linux/console*
4660
4661 CONTEXT TRACKING
4662 M:      Frederic Weisbecker <frederic@kernel.org>
4663 S:      Maintained
4664 F:      kernel/context_tracking.c
4665 F:      include/linux/context_tracking*
4666
4667 CONTROL GROUP (CGROUP)
4668 M:      Tejun Heo <tj@kernel.org>
4669 M:      Zefan Li <lizefan.x@bytedance.com>
4670 M:      Johannes Weiner <hannes@cmpxchg.org>
4671 L:      cgroups@vger.kernel.org
4672 S:      Maintained
4673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4674 F:      Documentation/admin-guide/cgroup-v1/
4675 F:      Documentation/admin-guide/cgroup-v2.rst
4676 F:      include/linux/cgroup*
4677 F:      kernel/cgroup/
4678
4679 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4680 M:      Tejun Heo <tj@kernel.org>
4681 M:      Jens Axboe <axboe@kernel.dk>
4682 L:      cgroups@vger.kernel.org
4683 L:      linux-block@vger.kernel.org
4684 T:      git git://git.kernel.dk/linux-block
4685 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4686 F:      block/bfq-cgroup.c
4687 F:      block/blk-cgroup.c
4688 F:      block/blk-iolatency.c
4689 F:      block/blk-throttle.c
4690 F:      include/linux/blk-cgroup.h
4691
4692 CONTROL GROUP - CPUSET
4693 M:      Zefan Li <lizefan.x@bytedance.com>
4694 L:      cgroups@vger.kernel.org
4695 S:      Maintained
4696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4697 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4698 F:      include/linux/cpuset.h
4699 F:      kernel/cgroup/cpuset.c
4700
4701 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4702 M:      Johannes Weiner <hannes@cmpxchg.org>
4703 M:      Michal Hocko <mhocko@kernel.org>
4704 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4705 L:      cgroups@vger.kernel.org
4706 L:      linux-mm@kvack.org
4707 S:      Maintained
4708 F:      mm/memcontrol.c
4709 F:      mm/swap_cgroup.c
4710
4711 CORETEMP HARDWARE MONITORING DRIVER
4712 M:      Fenghua Yu <fenghua.yu@intel.com>
4713 L:      linux-hwmon@vger.kernel.org
4714 S:      Maintained
4715 F:      Documentation/hwmon/coretemp.rst
4716 F:      drivers/hwmon/coretemp.c
4717
4718 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4719 M:      Marius Zachmann <mail@mariuszachmann.de>
4720 L:      linux-hwmon@vger.kernel.org
4721 S:      Maintained
4722 F:      drivers/hwmon/corsair-cpro.c
4723
4724 CORSAIR-PSU HARDWARE MONITOR DRIVER
4725 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4726 L:      linux-hwmon@vger.kernel.org
4727 S:      Maintained
4728 F:      Documentation/hwmon/corsair-psu.rst
4729 F:      drivers/hwmon/corsair-psu.c
4730
4731 COSA/SRP SYNC SERIAL DRIVER
4732 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4733 S:      Maintained
4734 W:      http://www.fi.muni.cz/~kas/cosa/
4735 F:      drivers/net/wan/cosa*
4736
4737 COUNTER SUBSYSTEM
4738 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4739 L:      linux-iio@vger.kernel.org
4740 S:      Maintained
4741 F:      Documentation/ABI/testing/sysfs-bus-counter*
4742 F:      Documentation/driver-api/generic-counter.rst
4743 F:      drivers/counter/
4744 F:      include/linux/counter.h
4745 F:      include/linux/counter_enum.h
4746
4747 CP2615 I2C DRIVER
4748 M:      Bence Csókás <bence98@sch.bme.hu>
4749 S:      Maintained
4750 F:      drivers/i2c/busses/i2c-cp2615.c
4751
4752 CPMAC ETHERNET DRIVER
4753 M:      Florian Fainelli <f.fainelli@gmail.com>
4754 L:      netdev@vger.kernel.org
4755 S:      Maintained
4756 F:      drivers/net/ethernet/ti/cpmac.c
4757
4758 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4759 M:      Viresh Kumar <viresh.kumar@linaro.org>
4760 M:      Sudeep Holla <sudeep.holla@arm.com>
4761 L:      linux-pm@vger.kernel.org
4762 S:      Maintained
4763 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4764 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4765
4766 CPU FREQUENCY SCALING FRAMEWORK
4767 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4768 M:      Viresh Kumar <viresh.kumar@linaro.org>
4769 L:      linux-pm@vger.kernel.org
4770 S:      Maintained
4771 B:      https://bugzilla.kernel.org
4772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4774 F:      Documentation/admin-guide/pm/cpufreq.rst
4775 F:      Documentation/admin-guide/pm/intel_pstate.rst
4776 F:      Documentation/cpu-freq/
4777 F:      Documentation/devicetree/bindings/cpufreq/
4778 F:      drivers/cpufreq/
4779 F:      include/linux/cpufreq.h
4780 F:      include/linux/sched/cpufreq.h
4781 F:      kernel/sched/cpufreq*.c
4782 F:      tools/testing/selftests/cpufreq/
4783
4784 CPU IDLE TIME MANAGEMENT FRAMEWORK
4785 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4786 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4787 L:      linux-pm@vger.kernel.org
4788 S:      Maintained
4789 B:      https://bugzilla.kernel.org
4790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4791 F:      Documentation/admin-guide/pm/cpuidle.rst
4792 F:      Documentation/driver-api/pm/cpuidle.rst
4793 F:      drivers/cpuidle/
4794 F:      include/linux/cpuidle.h
4795
4796 CPU POWER MONITORING SUBSYSTEM
4797 M:      Thomas Renninger <trenn@suse.com>
4798 M:      Shuah Khan <shuah@kernel.org>
4799 M:      Shuah Khan <skhan@linuxfoundation.org>
4800 L:      linux-pm@vger.kernel.org
4801 S:      Maintained
4802 F:      tools/power/cpupower/
4803
4804 CPUID/MSR DRIVER
4805 M:      "H. Peter Anvin" <hpa@zytor.com>
4806 S:      Maintained
4807 F:      arch/x86/kernel/cpuid.c
4808 F:      arch/x86/kernel/msr.c
4809
4810 CPUIDLE DRIVER - ARM BIG LITTLE
4811 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4812 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4813 L:      linux-pm@vger.kernel.org
4814 L:      linux-arm-kernel@lists.infradead.org
4815 S:      Maintained
4816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4817 F:      drivers/cpuidle/cpuidle-big_little.c
4818
4819 CPUIDLE DRIVER - ARM EXYNOS
4820 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4821 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4822 M:      Kukjin Kim <kgene@kernel.org>
4823 L:      linux-pm@vger.kernel.org
4824 L:      linux-samsung-soc@vger.kernel.org
4825 S:      Supported
4826 F:      arch/arm/mach-exynos/pm.c
4827 F:      drivers/cpuidle/cpuidle-exynos.c
4828 F:      include/linux/platform_data/cpuidle-exynos.h
4829
4830 CPUIDLE DRIVER - ARM PSCI
4831 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4832 M:      Sudeep Holla <sudeep.holla@arm.com>
4833 L:      linux-pm@vger.kernel.org
4834 L:      linux-arm-kernel@lists.infradead.org
4835 S:      Supported
4836 F:      drivers/cpuidle/cpuidle-psci.c
4837
4838 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4839 M:      Ulf Hansson <ulf.hansson@linaro.org>
4840 L:      linux-pm@vger.kernel.org
4841 L:      linux-arm-kernel@lists.infradead.org
4842 S:      Supported
4843 F:      drivers/cpuidle/cpuidle-psci.h
4844 F:      drivers/cpuidle/cpuidle-psci-domain.c
4845
4846 CRAMFS FILESYSTEM
4847 M:      Nicolas Pitre <nico@fluxnic.net>
4848 S:      Maintained
4849 F:      Documentation/filesystems/cramfs.rst
4850 F:      fs/cramfs/
4851
4852 CREATIVE SB0540
4853 M:      Bastien Nocera <hadess@hadess.net>
4854 L:      linux-input@vger.kernel.org
4855 S:      Maintained
4856 F:      drivers/hid/hid-creative-sb0540.c
4857
4858 CRYPTO API
4859 M:      Herbert Xu <herbert@gondor.apana.org.au>
4860 M:      "David S. Miller" <davem@davemloft.net>
4861 L:      linux-crypto@vger.kernel.org
4862 S:      Maintained
4863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4865 F:      Documentation/crypto/
4866 F:      Documentation/devicetree/bindings/crypto/
4867 F:      arch/*/crypto/
4868 F:      crypto/
4869 F:      drivers/crypto/
4870 F:      include/crypto/
4871 F:      include/linux/crypto*
4872 F:      lib/crypto/
4873
4874 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4875 M:      Neil Horman <nhorman@tuxdriver.com>
4876 L:      linux-crypto@vger.kernel.org
4877 S:      Maintained
4878 F:      crypto/ansi_cprng.c
4879 F:      crypto/rng.c
4880
4881 CS3308 MEDIA DRIVER
4882 M:      Hans Verkuil <hverkuil@xs4all.nl>
4883 L:      linux-media@vger.kernel.org
4884 S:      Odd Fixes
4885 W:      http://linuxtv.org
4886 T:      git git://linuxtv.org/media_tree.git
4887 F:      drivers/media/i2c/cs3308.c
4888
4889 CS5535 Audio ALSA driver
4890 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4891 S:      Maintained
4892 F:      sound/pci/cs5535audio/
4893
4894 CSI DRIVERS FOR ALLWINNER V3s
4895 M:      Yong Deng <yong.deng@magewell.com>
4896 L:      linux-media@vger.kernel.org
4897 S:      Maintained
4898 T:      git git://linuxtv.org/media_tree.git
4899 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4900 F:      drivers/media/platform/sunxi/sun6i-csi/
4901
4902 CW1200 WLAN driver
4903 M:      Solomon Peachy <pizza@shaftnet.org>
4904 S:      Maintained
4905 F:      drivers/net/wireless/st/cw1200/
4906
4907 CX18 VIDEO4LINUX DRIVER
4908 M:      Andy Walls <awalls@md.metrocast.net>
4909 L:      linux-media@vger.kernel.org
4910 S:      Maintained
4911 W:      https://linuxtv.org
4912 T:      git git://linuxtv.org/media_tree.git
4913 F:      drivers/media/pci/cx18/
4914 F:      include/uapi/linux/ivtv*
4915
4916 CX2341X MPEG ENCODER HELPER MODULE
4917 M:      Hans Verkuil <hverkuil@xs4all.nl>
4918 L:      linux-media@vger.kernel.org
4919 S:      Maintained
4920 W:      https://linuxtv.org
4921 T:      git git://linuxtv.org/media_tree.git
4922 F:      drivers/media/common/cx2341x*
4923 F:      include/media/drv-intf/cx2341x.h
4924
4925 CX24120 MEDIA DRIVER
4926 M:      Jemma Denson <jdenson@gmail.com>
4927 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4928 L:      linux-media@vger.kernel.org
4929 S:      Maintained
4930 W:      https://linuxtv.org
4931 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4932 F:      drivers/media/dvb-frontends/cx24120*
4933
4934 CX88 VIDEO4LINUX DRIVER
4935 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4936 L:      linux-media@vger.kernel.org
4937 S:      Odd fixes
4938 W:      https://linuxtv.org
4939 T:      git git://linuxtv.org/media_tree.git
4940 F:      Documentation/driver-api/media/drivers/cx88*
4941 F:      drivers/media/pci/cx88/
4942
4943 CXD2820R MEDIA DRIVER
4944 M:      Antti Palosaari <crope@iki.fi>
4945 L:      linux-media@vger.kernel.org
4946 S:      Maintained
4947 W:      https://linuxtv.org
4948 W:      http://palosaari.fi/linux/
4949 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4950 T:      git git://linuxtv.org/anttip/media_tree.git
4951 F:      drivers/media/dvb-frontends/cxd2820r*
4952
4953 CXGB3 ETHERNET DRIVER (CXGB3)
4954 M:      Raju Rangoju <rajur@chelsio.com>
4955 L:      netdev@vger.kernel.org
4956 S:      Supported
4957 W:      http://www.chelsio.com
4958 F:      drivers/net/ethernet/chelsio/cxgb3/
4959
4960 CXGB3 ISCSI DRIVER (CXGB3I)
4961 M:      Karen Xie <kxie@chelsio.com>
4962 L:      linux-scsi@vger.kernel.org
4963 S:      Supported
4964 W:      http://www.chelsio.com
4965 F:      drivers/scsi/cxgbi/cxgb3i
4966
4967 CXGB4 CRYPTO DRIVER (chcr)
4968 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4969 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4970 M:      Rohit Maheshwari <rohitm@chelsio.com>
4971 L:      linux-crypto@vger.kernel.org
4972 S:      Supported
4973 W:      http://www.chelsio.com
4974 F:      drivers/crypto/chelsio
4975
4976 CXGB4 INLINE CRYPTO DRIVER
4977 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4978 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4979 M:      Rohit Maheshwari <rohitm@chelsio.com>
4980 L:      netdev@vger.kernel.org
4981 S:      Supported
4982 W:      http://www.chelsio.com
4983 F:      drivers/net/ethernet/chelsio/inline_crypto/
4984
4985 CXGB4 ETHERNET DRIVER (CXGB4)
4986 M:      Raju Rangoju <rajur@chelsio.com>
4987 L:      netdev@vger.kernel.org
4988 S:      Supported
4989 W:      http://www.chelsio.com
4990 F:      drivers/net/ethernet/chelsio/cxgb4/
4991
4992 CXGB4 ISCSI DRIVER (CXGB4I)
4993 M:      Karen Xie <kxie@chelsio.com>
4994 L:      linux-scsi@vger.kernel.org
4995 S:      Supported
4996 W:      http://www.chelsio.com
4997 F:      drivers/scsi/cxgbi/cxgb4i
4998
4999 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5000 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5001 L:      linux-rdma@vger.kernel.org
5002 S:      Supported
5003 W:      http://www.openfabrics.org
5004 F:      drivers/infiniband/hw/cxgb4/
5005 F:      include/uapi/rdma/cxgb4-abi.h
5006
5007 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5008 M:      Raju Rangoju <rajur@chelsio.com>
5009 L:      netdev@vger.kernel.org
5010 S:      Supported
5011 W:      http://www.chelsio.com
5012 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5013
5014 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5015 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5016 M:      Andrew Donnellan <ajd@linux.ibm.com>
5017 L:      linuxppc-dev@lists.ozlabs.org
5018 S:      Supported
5019 F:      Documentation/ABI/testing/sysfs-class-cxl
5020 F:      Documentation/powerpc/cxl.rst
5021 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5022 F:      drivers/misc/cxl/
5023 F:      include/misc/cxl*
5024 F:      include/uapi/misc/cxl.h
5025
5026 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5027 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5028 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5029 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5030 L:      linux-scsi@vger.kernel.org
5031 S:      Supported
5032 F:      Documentation/powerpc/cxlflash.rst
5033 F:      drivers/scsi/cxlflash/
5034 F:      include/uapi/scsi/cxlflash_ioctl.h
5035
5036 CYBERPRO FB DRIVER
5037 M:      Russell King <linux@armlinux.org.uk>
5038 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5039 S:      Maintained
5040 W:      http://www.armlinux.org.uk/
5041 F:      drivers/video/fbdev/cyber2000fb.*
5042
5043 CYCLADES PC300 DRIVER
5044 S:      Orphan
5045 F:      drivers/net/wan/pc300*
5046
5047 CYPRESS_FIRMWARE MEDIA DRIVER
5048 M:      Antti Palosaari <crope@iki.fi>
5049 L:      linux-media@vger.kernel.org
5050 S:      Maintained
5051 W:      https://linuxtv.org
5052 W:      http://palosaari.fi/linux/
5053 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5054 T:      git git://linuxtv.org/anttip/media_tree.git
5055 F:      drivers/media/common/cypress_firmware*
5056
5057 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5058 M:      Linus Walleij <linus.walleij@linaro.org>
5059 L:      linux-input@vger.kernel.org
5060 S:      Maintained
5061 F:      drivers/input/touchscreen/cy8ctma140.c
5062
5063 CYTTSP TOUCHSCREEN DRIVER
5064 M:      Linus Walleij <linus.walleij@linaro.org>
5065 L:      linux-input@vger.kernel.org
5066 S:      Maintained
5067 F:      drivers/input/touchscreen/cyttsp*
5068
5069 D-LINK DIR-685 TOUCHKEYS DRIVER
5070 M:      Linus Walleij <linus.walleij@linaro.org>
5071 L:      linux-input@vger.kernel.org
5072 S:      Supported
5073 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5074
5075 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5076 M:      Joshua Kinard <kumba@gentoo.org>
5077 S:      Maintained
5078 F:      drivers/rtc/rtc-ds1685.c
5079 F:      include/linux/rtc/ds1685.h
5080
5081 DAMA SLAVE for AX.25
5082 M:      Joerg Reuter <jreuter@yaina.de>
5083 L:      linux-hams@vger.kernel.org
5084 S:      Maintained
5085 W:      http://yaina.de/jreuter/
5086 W:      http://www.qsl.net/dl1bke/
5087 F:      net/ax25/af_ax25.c
5088 F:      net/ax25/ax25_dev.c
5089 F:      net/ax25/ax25_ds_*
5090 F:      net/ax25/ax25_in.c
5091 F:      net/ax25/ax25_out.c
5092 F:      net/ax25/ax25_timer.c
5093 F:      net/ax25/sysctl_net_ax25.c
5094
5095 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5096 L:      netdev@vger.kernel.org
5097 S:      Orphan
5098 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5099 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5100
5101 DC390/AM53C974 SCSI driver
5102 M:      Hannes Reinecke <hare@suse.com>
5103 L:      linux-scsi@vger.kernel.org
5104 S:      Maintained
5105 F:      drivers/scsi/am53c974.c
5106
5107 DC395x SCSI driver
5108 M:      Oliver Neukum <oliver@neukum.org>
5109 M:      Ali Akcaagac <aliakc@web.de>
5110 M:      Jamie Lenehan <lenehan@twibble.org>
5111 L:      dc395x@twibble.org
5112 S:      Maintained
5113 W:      http://twibble.org/dist/dc395x/
5114 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5115 F:      Documentation/scsi/dc395x.rst
5116 F:      drivers/scsi/dc395x.*
5117
5118 DCCP PROTOCOL
5119 L:      dccp@vger.kernel.org
5120 S:      Orphan
5121 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5122 F:      include/linux/dccp.h
5123 F:      include/linux/tfrc.h
5124 F:      include/uapi/linux/dccp.h
5125 F:      net/dccp/
5126
5127 DECnet NETWORK LAYER
5128 L:      linux-decnet-user@lists.sourceforge.net
5129 S:      Orphan
5130 W:      http://linux-decnet.sourceforge.net
5131 F:      Documentation/networking/decnet.rst
5132 F:      net/decnet/
5133
5134 DECSTATION PLATFORM SUPPORT
5135 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5136 L:      linux-mips@vger.kernel.org
5137 S:      Maintained
5138 W:      http://www.linux-mips.org/wiki/DECstation
5139 F:      arch/mips/dec/
5140 F:      arch/mips/include/asm/dec/
5141 F:      arch/mips/include/asm/mach-dec/
5142
5143 DEFXX FDDI NETWORK DRIVER
5144 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5145 S:      Maintained
5146 F:      drivers/net/fddi/defxx.*
5147
5148 DEFZA FDDI NETWORK DRIVER
5149 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5150 S:      Maintained
5151 F:      drivers/net/fddi/defza.*
5152
5153 DEINTERLACE DRIVERS FOR ALLWINNER H3
5154 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5155 L:      linux-media@vger.kernel.org
5156 S:      Maintained
5157 T:      git git://linuxtv.org/media_tree.git
5158 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5159 F:      drivers/media/platform/sunxi/sun8i-di/
5160
5161 DELL LAPTOP DRIVER
5162 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5163 M:      Pali Rohár <pali@kernel.org>
5164 L:      platform-driver-x86@vger.kernel.org
5165 S:      Maintained
5166 F:      drivers/platform/x86/dell/dell-laptop.c
5167
5168 DELL LAPTOP FREEFALL DRIVER
5169 M:      Pali Rohár <pali@kernel.org>
5170 S:      Maintained
5171 F:      drivers/platform/x86/dell/dell-smo8800.c
5172
5173 DELL LAPTOP RBTN DRIVER
5174 M:      Pali Rohár <pali@kernel.org>
5175 S:      Maintained
5176 F:      drivers/platform/x86/dell/dell-rbtn.*
5177
5178 DELL LAPTOP SMM DRIVER
5179 M:      Pali Rohár <pali@kernel.org>
5180 S:      Maintained
5181 F:      drivers/hwmon/dell-smm-hwmon.c
5182 F:      include/uapi/linux/i8k.h
5183
5184 DELL REMOTE BIOS UPDATE DRIVER
5185 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5186 L:      platform-driver-x86@vger.kernel.org
5187 S:      Maintained
5188 F:      drivers/platform/x86/dell/dell_rbu.c
5189
5190 DELL SMBIOS DRIVER
5191 M:      Pali Rohár <pali@kernel.org>
5192 L:      Dell.Client.Kernel@dell.com
5193 L:      platform-driver-x86@vger.kernel.org
5194 S:      Maintained
5195 F:      drivers/platform/x86/dell/dell-smbios.*
5196
5197 DELL SMBIOS SMM DRIVER
5198 L:      Dell.Client.Kernel@dell.com
5199 L:      platform-driver-x86@vger.kernel.org
5200 S:      Maintained
5201 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5202
5203 DELL SMBIOS WMI DRIVER
5204 L:      Dell.Client.Kernel@dell.com
5205 L:      platform-driver-x86@vger.kernel.org
5206 S:      Maintained
5207 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5208 F:      tools/wmi/dell-smbios-example.c
5209
5210 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5211 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5212 L:      platform-driver-x86@vger.kernel.org
5213 S:      Maintained
5214 F:      Documentation/driver-api/dcdbas.rst
5215 F:      drivers/platform/x86/dell/dcdbas.*
5216
5217 DELL WMI DESCRIPTOR DRIVER
5218 L:      Dell.Client.Kernel@dell.com
5219 S:      Maintained
5220 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5221
5222 DELL WMI SYSMAN DRIVER
5223 M:      Divya Bharathi <divya.bharathi@dell.com>
5224 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5225 L:      Dell.Client.Kernel@dell.com
5226 L:      platform-driver-x86@vger.kernel.org
5227 S:      Maintained
5228 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5229 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5230
5231 DELL WMI NOTIFICATIONS DRIVER
5232 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5233 M:      Pali Rohár <pali@kernel.org>
5234 S:      Maintained
5235 F:      drivers/platform/x86/dell/dell-wmi-base.c
5236
5237 DELL WMI HARDWARE PRIVACY SUPPORT
5238 M:      Perry Yuan <Perry.Yuan@dell.com>
5239 L:      Dell.Client.Kernel@dell.com
5240 L:      platform-driver-x86@vger.kernel.org
5241 S:      Maintained
5242 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5243
5244 DELTA ST MEDIA DRIVER
5245 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5246 L:      linux-media@vger.kernel.org
5247 S:      Supported
5248 W:      https://linuxtv.org
5249 T:      git git://linuxtv.org/media_tree.git
5250 F:      drivers/media/platform/sti/delta
5251
5252 DELTA DPS920AB PSU DRIVER
5253 M:      Robert Marko <robert.marko@sartura.hr>
5254 L:      linux-hwmon@vger.kernel.org
5255 S:      Maintained
5256 F:      Documentation/hwmon/dps920ab.rst
5257 F:      drivers/hwmon/pmbus/dps920ab.c
5258
5259 DENALI NAND DRIVER
5260 L:      linux-mtd@lists.infradead.org
5261 S:      Orphan
5262 F:      drivers/mtd/nand/raw/denali*
5263
5264 DESIGNWARE EDMA CORE IP DRIVER
5265 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5266 L:      dmaengine@vger.kernel.org
5267 S:      Maintained
5268 F:      drivers/dma/dw-edma/
5269 F:      include/linux/dma/edma.h
5270
5271 DESIGNWARE XDATA IP DRIVER
5272 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5273 L:      linux-pci@vger.kernel.org
5274 S:      Maintained
5275 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5276 F:      drivers/misc/dw-xdata-pcie.c
5277
5278 DESIGNWARE USB2 DRD IP DRIVER
5279 M:      Minas Harutyunyan <hminas@synopsys.com>
5280 L:      linux-usb@vger.kernel.org
5281 S:      Maintained
5282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5283 F:      drivers/usb/dwc2/
5284
5285 DESIGNWARE USB3 DRD IP DRIVER
5286 M:      Felipe Balbi <balbi@kernel.org>
5287 L:      linux-usb@vger.kernel.org
5288 S:      Maintained
5289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5290 F:      drivers/usb/dwc3/
5291
5292 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5293 M:      Andreas Klinger <ak@it-klinger.de>
5294 L:      linux-iio@vger.kernel.org
5295 S:      Maintained
5296 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5297 F:      drivers/iio/proximity/srf*.c
5298
5299 DEVICE COREDUMP (DEV_COREDUMP)
5300 M:      Johannes Berg <johannes@sipsolutions.net>
5301 L:      linux-kernel@vger.kernel.org
5302 S:      Maintained
5303 F:      drivers/base/devcoredump.c
5304 F:      include/linux/devcoredump.h
5305
5306 DEVICE DEPENDENCY HELPER SCRIPT
5307 M:      Saravana Kannan <saravanak@google.com>
5308 L:      linux-kernel@vger.kernel.org
5309 S:      Maintained
5310 F:      scripts/dev-needs.sh
5311
5312 DEVICE DIRECT ACCESS (DAX)
5313 M:      Dan Williams <dan.j.williams@intel.com>
5314 M:      Vishal Verma <vishal.l.verma@intel.com>
5315 M:      Dave Jiang <dave.jiang@intel.com>
5316 L:      nvdimm@lists.linux.dev
5317 S:      Supported
5318 F:      drivers/dax/
5319
5320 DEVICE FREQUENCY (DEVFREQ)
5321 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5322 M:      Kyungmin Park <kyungmin.park@samsung.com>
5323 M:      Chanwoo Choi <cw00.choi@samsung.com>
5324 L:      linux-pm@vger.kernel.org
5325 S:      Maintained
5326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5327 F:      Documentation/devicetree/bindings/devfreq/
5328 F:      drivers/devfreq/
5329 F:      include/linux/devfreq.h
5330 F:      include/trace/events/devfreq.h
5331
5332 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5333 M:      Chanwoo Choi <cw00.choi@samsung.com>
5334 L:      linux-pm@vger.kernel.org
5335 S:      Supported
5336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5337 F:      Documentation/devicetree/bindings/devfreq/event/
5338 F:      drivers/devfreq/devfreq-event.c
5339 F:      drivers/devfreq/event/
5340 F:      include/dt-bindings/pmu/exynos_ppmu.h
5341 F:      include/linux/devfreq-event.h
5342
5343 DEVICE NUMBER REGISTRY
5344 M:      Torben Mathiasen <device@lanana.org>
5345 S:      Maintained
5346 W:      http://lanana.org/docs/device-list/index.html
5347
5348 DEVICE RESOURCE MANAGEMENT HELPERS
5349 M:      Hans de Goede <hdegoede@redhat.com>
5350 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5351 S:      Maintained
5352 F:      include/linux/devm-helpers.h
5353
5354 DEVICE-MAPPER  (LVM)
5355 M:      Alasdair Kergon <agk@redhat.com>
5356 M:      Mike Snitzer <snitzer@redhat.com>
5357 M:      dm-devel@redhat.com
5358 L:      dm-devel@redhat.com
5359 S:      Maintained
5360 W:      http://sources.redhat.com/dm
5361 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5363 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5364 F:      Documentation/admin-guide/device-mapper/
5365 F:      drivers/md/Kconfig
5366 F:      drivers/md/Makefile
5367 F:      drivers/md/dm*
5368 F:      drivers/md/persistent-data/
5369 F:      include/linux/device-mapper.h
5370 F:      include/linux/dm-*.h
5371 F:      include/uapi/linux/dm-*.h
5372
5373 DEVLINK
5374 M:      Jiri Pirko <jiri@nvidia.com>
5375 L:      netdev@vger.kernel.org
5376 S:      Supported
5377 F:      Documentation/networking/devlink
5378 F:      include/net/devlink.h
5379 F:      include/uapi/linux/devlink.h
5380 F:      net/core/devlink.c
5381
5382 DIALOG SEMICONDUCTOR DRIVERS
5383 M:      Support Opensource <support.opensource@diasemi.com>
5384 S:      Supported
5385 W:      http://www.dialog-semiconductor.com/products
5386 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5387 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5388 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5389 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5390 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5391 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5392 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5393 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5394 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5395 F:      Documentation/hwmon/da90??.rst
5396 F:      drivers/gpio/gpio-da90??.c
5397 F:      drivers/hwmon/da90??-hwmon.c
5398 F:      drivers/iio/adc/da91??-*.c
5399 F:      drivers/input/misc/da72??.[ch]
5400 F:      drivers/input/misc/da90??_onkey.c
5401 F:      drivers/input/touchscreen/da9052_tsi.c
5402 F:      drivers/leds/leds-da90??.c
5403 F:      drivers/mfd/da903x.c
5404 F:      drivers/mfd/da90??-*.c
5405 F:      drivers/mfd/da91??-*.c
5406 F:      drivers/pinctrl/pinctrl-da90??.c
5407 F:      drivers/power/supply/da9052-battery.c
5408 F:      drivers/power/supply/da91??-*.c
5409 F:      drivers/regulator/da9???-regulator.[ch]
5410 F:      drivers/regulator/slg51000-regulator.[ch]
5411 F:      drivers/rtc/rtc-da90??.c
5412 F:      drivers/thermal/da90??-thermal.c
5413 F:      drivers/video/backlight/da90??_bl.c
5414 F:      drivers/watchdog/da90??_wdt.c
5415 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5416 F:      include/linux/mfd/da903x.h
5417 F:      include/linux/mfd/da9052/
5418 F:      include/linux/mfd/da9055/
5419 F:      include/linux/mfd/da9062/
5420 F:      include/linux/mfd/da9063/
5421 F:      include/linux/mfd/da9150/
5422 F:      include/linux/regulator/da9211.h
5423 F:      include/sound/da[79]*.h
5424 F:      sound/soc/codecs/da[79]*.[ch]
5425
5426 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5427 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5428 L:      linux-gpio@vger.kernel.org
5429 S:      Maintained
5430 F:      drivers/gpio/gpio-gpio-mm.c
5431
5432 DIOLAN U2C-12 I2C DRIVER
5433 M:      Guenter Roeck <linux@roeck-us.net>
5434 L:      linux-i2c@vger.kernel.org
5435 S:      Maintained
5436 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5437
5438 DIRECTORY NOTIFICATION (DNOTIFY)
5439 M:      Jan Kara <jack@suse.cz>
5440 R:      Amir Goldstein <amir73il@gmail.com>
5441 L:      linux-fsdevel@vger.kernel.org
5442 S:      Maintained
5443 F:      Documentation/filesystems/dnotify.rst
5444 F:      fs/notify/dnotify/
5445 F:      include/linux/dnotify.h
5446
5447 DISK GEOMETRY AND PARTITION HANDLING
5448 M:      Andries Brouwer <aeb@cwi.nl>
5449 S:      Maintained
5450 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5451 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5452 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5453
5454 DISKQUOTA
5455 M:      Jan Kara <jack@suse.com>
5456 S:      Maintained
5457 F:      Documentation/filesystems/quota.rst
5458 F:      fs/quota/
5459 F:      include/linux/quota*.h
5460 F:      include/uapi/linux/quota*.h
5461
5462 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5463 M:      Bernie Thompson <bernie@plugable.com>
5464 L:      linux-fbdev@vger.kernel.org
5465 S:      Maintained
5466 W:      http://plugable.com/category/projects/udlfb/
5467 F:      Documentation/fb/udlfb.rst
5468 F:      drivers/video/fbdev/udlfb.c
5469 F:      include/video/udlfb.h
5470
5471 DISTRIBUTED LOCK MANAGER (DLM)
5472 M:      Christine Caulfield <ccaulfie@redhat.com>
5473 M:      David Teigland <teigland@redhat.com>
5474 L:      cluster-devel@redhat.com
5475 S:      Supported
5476 W:      http://sources.redhat.com/cluster/
5477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5478 F:      fs/dlm/
5479
5480 DMA BUFFER SHARING FRAMEWORK
5481 M:      Sumit Semwal <sumit.semwal@linaro.org>
5482 M:      Christian König <christian.koenig@amd.com>
5483 L:      linux-media@vger.kernel.org
5484 L:      dri-devel@lists.freedesktop.org
5485 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5486 S:      Maintained
5487 T:      git git://anongit.freedesktop.org/drm/drm-misc
5488 F:      Documentation/driver-api/dma-buf.rst
5489 F:      drivers/dma-buf/
5490 F:      include/linux/*fence.h
5491 F:      include/linux/dma-buf*
5492 F:      include/linux/dma-resv.h
5493 K:      \bdma_(?:buf|fence|resv)\b
5494
5495 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5496 M:      Vinod Koul <vkoul@kernel.org>
5497 L:      dmaengine@vger.kernel.org
5498 S:      Maintained
5499 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5501 F:      Documentation/devicetree/bindings/dma/
5502 F:      Documentation/driver-api/dmaengine/
5503 F:      drivers/dma/
5504 F:      include/linux/dma/
5505 F:      include/linux/dmaengine.h
5506 F:      include/linux/of_dma.h
5507
5508 DMA MAPPING HELPERS
5509 M:      Christoph Hellwig <hch@lst.de>
5510 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5511 R:      Robin Murphy <robin.murphy@arm.com>
5512 L:      iommu@lists.linux-foundation.org
5513 S:      Supported
5514 W:      http://git.infradead.org/users/hch/dma-mapping.git
5515 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5516 F:      include/asm-generic/dma-mapping.h
5517 F:      include/linux/dma-direct.h
5518 F:      include/linux/dma-mapping.h
5519 F:      include/linux/dma-map-ops.h
5520 F:      kernel/dma/
5521
5522 DMA MAPPING BENCHMARK
5523 M:      Barry Song <song.bao.hua@hisilicon.com>
5524 L:      iommu@lists.linux-foundation.org
5525 F:      kernel/dma/map_benchmark.c
5526 F:      tools/testing/selftests/dma/
5527
5528 DMA-BUF HEAPS FRAMEWORK
5529 M:      Sumit Semwal <sumit.semwal@linaro.org>
5530 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5531 R:      Liam Mark <lmark@codeaurora.org>
5532 R:      Laura Abbott <labbott@redhat.com>
5533 R:      Brian Starkey <Brian.Starkey@arm.com>
5534 R:      John Stultz <john.stultz@linaro.org>
5535 L:      linux-media@vger.kernel.org
5536 L:      dri-devel@lists.freedesktop.org
5537 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5538 S:      Maintained
5539 T:      git git://anongit.freedesktop.org/drm/drm-misc
5540 F:      drivers/dma-buf/dma-heap.c
5541 F:      drivers/dma-buf/heaps/*
5542 F:      include/linux/dma-heap.h
5543 F:      include/uapi/linux/dma-heap.h
5544
5545 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5546 M:      Lukasz Luba <lukasz.luba@arm.com>
5547 L:      linux-pm@vger.kernel.org
5548 L:      linux-samsung-soc@vger.kernel.org
5549 S:      Maintained
5550 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5551 F:      drivers/memory/samsung/exynos5422-dmc.c
5552
5553 DME1737 HARDWARE MONITOR DRIVER
5554 M:      Juerg Haefliger <juergh@gmail.com>
5555 L:      linux-hwmon@vger.kernel.org
5556 S:      Maintained
5557 F:      Documentation/hwmon/dme1737.rst
5558 F:      drivers/hwmon/dme1737.c
5559
5560 DMI/SMBIOS SUPPORT
5561 M:      Jean Delvare <jdelvare@suse.com>
5562 S:      Maintained
5563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5564 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5565 F:      drivers/firmware/dmi-id.c
5566 F:      drivers/firmware/dmi_scan.c
5567 F:      include/linux/dmi.h
5568
5569 DOCUMENTATION
5570 M:      Jonathan Corbet <corbet@lwn.net>
5571 L:      linux-doc@vger.kernel.org
5572 S:      Maintained
5573 P:      Documentation/doc-guide/maintainer-profile.rst
5574 T:      git git://git.lwn.net/linux.git docs-next
5575 F:      Documentation/
5576 F:      scripts/documentation-file-ref-check
5577 F:      scripts/kernel-doc
5578 F:      scripts/sphinx-pre-install
5579 X:      Documentation/ABI/
5580 X:      Documentation/admin-guide/media/
5581 X:      Documentation/devicetree/
5582 X:      Documentation/driver-api/media/
5583 X:      Documentation/firmware-guide/acpi/
5584 X:      Documentation/i2c/
5585 X:      Documentation/power/
5586 X:      Documentation/spi/
5587 X:      Documentation/userspace-api/media/
5588
5589 DOCUMENTATION REPORTING ISSUES
5590 M:      Thorsten Leemhuis <linux@leemhuis.info>
5591 L:      linux-doc@vger.kernel.org
5592 S:      Maintained
5593 F:      Documentation/admin-guide/reporting-issues.rst
5594
5595 DOCUMENTATION SCRIPTS
5596 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5597 L:      linux-doc@vger.kernel.org
5598 S:      Maintained
5599 F:      Documentation/sphinx/parse-headers.pl
5600 F:      scripts/documentation-file-ref-check
5601 F:      scripts/sphinx-pre-install
5602
5603 DOCUMENTATION/ITALIAN
5604 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5605 L:      linux-doc@vger.kernel.org
5606 S:      Maintained
5607 F:      Documentation/translations/it_IT
5608
5609 DONGWOON DW9714 LENS VOICE COIL DRIVER
5610 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5611 L:      linux-media@vger.kernel.org
5612 S:      Maintained
5613 T:      git git://linuxtv.org/media_tree.git
5614 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5615 F:      drivers/media/i2c/dw9714.c
5616
5617 DONGWOON DW9768 LENS VOICE COIL DRIVER
5618 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5619 L:      linux-media@vger.kernel.org
5620 S:      Maintained
5621 T:      git git://linuxtv.org/media_tree.git
5622 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5623 F:      drivers/media/i2c/dw9768.c
5624
5625 DONGWOON DW9807 LENS VOICE COIL DRIVER
5626 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5627 L:      linux-media@vger.kernel.org
5628 S:      Maintained
5629 T:      git git://linuxtv.org/media_tree.git
5630 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5631 F:      drivers/media/i2c/dw9807-vcm.c
5632
5633 DOUBLETALK DRIVER
5634 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5635 L:      blinux-list@redhat.com
5636 S:      Maintained
5637 F:      drivers/char/dtlk.c
5638 F:      include/linux/dtlk.h
5639
5640 DPAA2 DATAPATH I/O (DPIO) DRIVER
5641 M:      Roy Pledge <Roy.Pledge@nxp.com>
5642 L:      linux-kernel@vger.kernel.org
5643 S:      Maintained
5644 F:      drivers/soc/fsl/dpio
5645
5646 DPAA2 ETHERNET DRIVER
5647 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5648 L:      netdev@vger.kernel.org
5649 S:      Maintained
5650 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5651 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5652 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5653 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5654 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5655 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5656 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5657 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5658 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5659
5660 DPAA2 ETHERNET SWITCH DRIVER
5661 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5662 L:      netdev@vger.kernel.org
5663 S:      Maintained
5664 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5665 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
5666
5667 DPT_I2O SCSI RAID DRIVER
5668 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5669 L:      linux-scsi@vger.kernel.org
5670 S:      Maintained
5671 W:      http://www.adaptec.com/
5672 F:      drivers/scsi/dpt*
5673 F:      drivers/scsi/dpt/
5674
5675 DRBD DRIVER
5676 M:      Philipp Reisner <philipp.reisner@linbit.com>
5677 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5678 L:      drbd-dev@lists.linbit.com
5679 S:      Supported
5680 W:      http://www.drbd.org
5681 T:      git git://git.linbit.com/linux-drbd.git
5682 T:      git git://git.linbit.com/drbd-8.4.git
5683 F:      Documentation/admin-guide/blockdev/
5684 F:      drivers/block/drbd/
5685 F:      lib/lru_cache.c
5686
5687 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5688 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5689 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5690 S:      Supported
5691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5692 F:      Documentation/core-api/kobject.rst
5693 F:      drivers/base/
5694 F:      fs/debugfs/
5695 F:      fs/sysfs/
5696 F:      include/linux/debugfs.h
5697 F:      include/linux/kobj*
5698 F:      lib/kobj*
5699
5700 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5701 M:      Nishanth Menon <nm@ti.com>
5702 L:      linux-pm@vger.kernel.org
5703 S:      Maintained
5704 F:      drivers/soc/ti/smartreflex.c
5705 F:      include/linux/power/smartreflex.h
5706
5707 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5708 M:      Maxime Ripard <mripard@kernel.org>
5709 M:      Chen-Yu Tsai <wens@csie.org>
5710 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
5711 L:      dri-devel@lists.freedesktop.org
5712 S:      Supported
5713 T:      git git://anongit.freedesktop.org/drm/drm-misc
5714 F:      drivers/gpu/drm/sun4i/sun8i*
5715
5716 DRM DRIVER FOR ARM PL111 CLCD
5717 M:      Emma Anholt <emma@anholt.net>
5718 S:      Supported
5719 T:      git git://anongit.freedesktop.org/drm/drm-misc
5720 F:      drivers/gpu/drm/pl111/
5721
5722 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5723 M:      Linus Walleij <linus.walleij@linaro.org>
5724 S:      Maintained
5725 T:      git git://anongit.freedesktop.org/drm/drm-misc
5726 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5727 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5728
5729 DRM DRIVER FOR ASPEED BMC GFX
5730 M:      Joel Stanley <joel@jms.id.au>
5731 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5732 S:      Supported
5733 T:      git git://anongit.freedesktop.org/drm/drm-misc
5734 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5735 F:      drivers/gpu/drm/aspeed/
5736
5737 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5738 M:      Dave Airlie <airlied@redhat.com>
5739 R:      Thomas Zimmermann <tzimmermann@suse.de>
5740 L:      dri-devel@lists.freedesktop.org
5741 S:      Supported
5742 T:      git git://anongit.freedesktop.org/drm/drm-misc
5743 F:      drivers/gpu/drm/ast/
5744
5745 DRM DRIVER FOR BOCHS VIRTUAL GPU
5746 M:      Gerd Hoffmann <kraxel@redhat.com>
5747 L:      virtualization@lists.linux-foundation.org
5748 S:      Maintained
5749 T:      git git://anongit.freedesktop.org/drm/drm-misc
5750 F:      drivers/gpu/drm/bochs/
5751
5752 DRM DRIVER FOR BOE HIMAX8279D PANELS
5753 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5754 S:      Maintained
5755 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5756 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5757
5758 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
5759 M:      Jagan Teki <jagan@amarulasolutions.com>
5760 S:      Maintained
5761 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
5762 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
5763
5764 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5765 M:      Linus Walleij <linus.walleij@linaro.org>
5766 S:      Maintained
5767 T:      git git://anongit.freedesktop.org/drm/drm-misc
5768 F:      drivers/gpu/drm/tve200/
5769
5770 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5771 M:      Icenowy Zheng <icenowy@aosc.io>
5772 S:      Maintained
5773 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5774 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5775
5776 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5777 M:      Jagan Teki <jagan@amarulasolutions.com>
5778 S:      Maintained
5779 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5780 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5781
5782 DRM DRIVER FOR GENERIC USB DISPLAY
5783 M:      Noralf Trønnes <noralf@tronnes.org>
5784 S:      Maintained
5785 W:      https://github.com/notro/gud/wiki
5786 T:      git git://anongit.freedesktop.org/drm/drm-misc
5787 F:      drivers/gpu/drm/gud/
5788 F:      include/drm/gud.h
5789
5790 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5791 M:      Hans de Goede <hdegoede@redhat.com>
5792 S:      Maintained
5793 T:      git git://anongit.freedesktop.org/drm/drm-misc
5794 F:      drivers/gpu/drm/tiny/gm12u320.c
5795
5796 DRM DRIVER FOR HX8357D PANELS
5797 M:      Emma Anholt <emma@anholt.net>
5798 S:      Maintained
5799 T:      git git://anongit.freedesktop.org/drm/drm-misc
5800 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5801 F:      drivers/gpu/drm/tiny/hx8357d.c
5802
5803 DRM DRIVER FOR ILITEK ILI9225 PANELS
5804 M:      David Lechner <david@lechnology.com>
5805 S:      Maintained
5806 T:      git git://anongit.freedesktop.org/drm/drm-misc
5807 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5808 F:      drivers/gpu/drm/tiny/ili9225.c
5809
5810 DRM DRIVER FOR ILITEK ILI9486 PANELS
5811 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5812 S:      Maintained
5813 T:      git git://anongit.freedesktop.org/drm/drm-misc
5814 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5815 F:      drivers/gpu/drm/tiny/ili9486.c
5816
5817 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5818 S:      Orphan / Obsolete
5819 F:      drivers/gpu/drm/i810/
5820 F:      include/uapi/drm/i810_drm.h
5821
5822 DRM DRIVER FOR LVDS PANELS
5823 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5824 L:      dri-devel@lists.freedesktop.org
5825 T:      git git://anongit.freedesktop.org/drm/drm-misc
5826 S:      Maintained
5827 F:      drivers/gpu/drm/panel/panel-lvds.c
5828 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5829
5830 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5831 M:      Guido Günther <agx@sigxcpu.org>
5832 R:      Purism Kernel Team <kernel@puri.sm>
5833 S:      Maintained
5834 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5835 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5836
5837 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5838 S:      Orphan / Obsolete
5839 F:      drivers/gpu/drm/mga/
5840 F:      include/uapi/drm/mga_drm.h
5841
5842 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5843 M:      Dave Airlie <airlied@redhat.com>
5844 R:      Thomas Zimmermann <tzimmermann@suse.de>
5845 L:      dri-devel@lists.freedesktop.org
5846 S:      Supported
5847 T:      git git://anongit.freedesktop.org/drm/drm-misc
5848 F:      drivers/gpu/drm/mgag200/
5849
5850 DRM DRIVER FOR MI0283QT
5851 M:      Noralf Trønnes <noralf@tronnes.org>
5852 S:      Maintained
5853 T:      git git://anongit.freedesktop.org/drm/drm-misc
5854 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5855 F:      drivers/gpu/drm/tiny/mi0283qt.c
5856
5857 DRM DRIVER FOR MSM ADRENO GPU
5858 M:      Rob Clark <robdclark@gmail.com>
5859 M:      Sean Paul <sean@poorly.run>
5860 L:      linux-arm-msm@vger.kernel.org
5861 L:      dri-devel@lists.freedesktop.org
5862 L:      freedreno@lists.freedesktop.org
5863 S:      Maintained
5864 T:      git https://gitlab.freedesktop.org/drm/msm.git
5865 F:      Documentation/devicetree/bindings/display/msm/
5866 F:      drivers/gpu/drm/msm/
5867 F:      include/uapi/drm/msm_drm.h
5868
5869 DRM DRIVER FOR NOVATEK NT35510 PANELS
5870 M:      Linus Walleij <linus.walleij@linaro.org>
5871 S:      Maintained
5872 T:      git git://anongit.freedesktop.org/drm/drm-misc
5873 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5874 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5875
5876 DRM DRIVER FOR NOVATEK NT36672A PANELS
5877 M:      Sumit Semwal <sumit.semwal@linaro.org>
5878 S:      Maintained
5879 T:      git git://anongit.freedesktop.org/drm/drm-misc
5880 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
5881 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
5882
5883 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5884 M:      Ben Skeggs <bskeggs@redhat.com>
5885 L:      dri-devel@lists.freedesktop.org
5886 L:      nouveau@lists.freedesktop.org
5887 S:      Supported
5888 T:      git git://github.com/skeggsb/linux
5889 F:      drivers/gpu/drm/nouveau/
5890 F:      include/uapi/drm/nouveau_drm.h
5891
5892 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5893 M:      Stefan Mavrodiev <stefan@olimex.com>
5894 S:      Maintained
5895 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5896 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5897
5898 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5899 M:      Noralf Trønnes <noralf@tronnes.org>
5900 S:      Maintained
5901 T:      git git://anongit.freedesktop.org/drm/drm-misc
5902 F:      Documentation/devicetree/bindings/display/repaper.txt
5903 F:      drivers/gpu/drm/tiny/repaper.c
5904
5905 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5906 M:      Dave Airlie <airlied@redhat.com>
5907 M:      Gerd Hoffmann <kraxel@redhat.com>
5908 L:      virtualization@lists.linux-foundation.org
5909 S:      Obsolete
5910 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5911 T:      git git://anongit.freedesktop.org/drm/drm-misc
5912 F:      drivers/gpu/drm/tiny/cirrus.c
5913
5914 DRM DRIVER FOR QXL VIRTUAL GPU
5915 M:      Dave Airlie <airlied@redhat.com>
5916 M:      Gerd Hoffmann <kraxel@redhat.com>
5917 L:      virtualization@lists.linux-foundation.org
5918 L:      spice-devel@lists.freedesktop.org
5919 S:      Maintained
5920 T:      git git://anongit.freedesktop.org/drm/drm-misc
5921 F:      drivers/gpu/drm/qxl/
5922 F:      include/uapi/drm/qxl_drm.h
5923
5924 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5925 S:      Orphan / Obsolete
5926 F:      drivers/gpu/drm/r128/
5927 F:      include/uapi/drm/r128_drm.h
5928
5929 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5930 M:      Robert Chiras <robert.chiras@nxp.com>
5931 S:      Maintained
5932 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
5933 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5934
5935 DRM DRIVER FOR SITRONIX ST7703 PANELS
5936 M:      Guido Günther <agx@sigxcpu.org>
5937 R:      Purism Kernel Team <kernel@puri.sm>
5938 R:      Ondrej Jirman <megous@megous.com>
5939 S:      Maintained
5940 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
5941 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
5942
5943 DRM DRIVER FOR SAVAGE VIDEO CARDS
5944 S:      Orphan / Obsolete
5945 F:      drivers/gpu/drm/savage/
5946 F:      include/uapi/drm/savage_drm.h
5947
5948 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
5949 M:      Thomas Zimmermann <tzimmermann@suse.de>
5950 L:      dri-devel@lists.freedesktop.org
5951 S:      Maintained
5952 T:      git git://anongit.freedesktop.org/drm/drm-misc
5953 F:      drivers/gpu/drm/tiny/simpledrm.c
5954
5955 DRM DRIVER FOR SIS VIDEO CARDS
5956 S:      Orphan / Obsolete
5957 F:      drivers/gpu/drm/sis/
5958 F:      include/uapi/drm/sis_drm.h
5959
5960 DRM DRIVER FOR SITRONIX ST7586 PANELS
5961 M:      David Lechner <david@lechnology.com>
5962 S:      Maintained
5963 T:      git git://anongit.freedesktop.org/drm/drm-misc
5964 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5965 F:      drivers/gpu/drm/tiny/st7586.c
5966
5967 DRM DRIVER FOR SITRONIX ST7701 PANELS
5968 M:      Jagan Teki <jagan@amarulasolutions.com>
5969 S:      Maintained
5970 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5971 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5972
5973 DRM DRIVER FOR SITRONIX ST7735R PANELS
5974 M:      David Lechner <david@lechnology.com>
5975 S:      Maintained
5976 T:      git git://anongit.freedesktop.org/drm/drm-misc
5977 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5978 F:      drivers/gpu/drm/tiny/st7735r.c
5979
5980 DRM DRIVER FOR SONY ACX424AKP PANELS
5981 M:      Linus Walleij <linus.walleij@linaro.org>
5982 S:      Maintained
5983 T:      git git://anongit.freedesktop.org/drm/drm-misc
5984 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5985
5986 DRM DRIVER FOR ST-ERICSSON MCDE
5987 M:      Linus Walleij <linus.walleij@linaro.org>
5988 S:      Maintained
5989 T:      git git://anongit.freedesktop.org/drm/drm-misc
5990 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
5991 F:      drivers/gpu/drm/mcde/
5992
5993 DRM DRIVER FOR TDFX VIDEO CARDS
5994 S:      Orphan / Obsolete
5995 F:      drivers/gpu/drm/tdfx/
5996
5997 DRM DRIVER FOR TPO TPG110 PANELS
5998 M:      Linus Walleij <linus.walleij@linaro.org>
5999 S:      Maintained
6000 T:      git git://anongit.freedesktop.org/drm/drm-misc
6001 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6002 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6003
6004 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6005 M:      Dave Airlie <airlied@redhat.com>
6006 R:      Sean Paul <sean@poorly.run>
6007 R:      Thomas Zimmermann <tzimmermann@suse.de>
6008 L:      dri-devel@lists.freedesktop.org
6009 S:      Supported
6010 T:      git git://anongit.freedesktop.org/drm/drm-misc
6011 F:      drivers/gpu/drm/udl/
6012
6013 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6014 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6015 M:      Melissa Wen <melissa.srw@gmail.com>
6016 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6017 R:      Daniel Vetter <daniel@ffwll.ch>
6018 L:      dri-devel@lists.freedesktop.org
6019 S:      Maintained
6020 T:      git git://anongit.freedesktop.org/drm/drm-misc
6021 F:      Documentation/gpu/vkms.rst
6022 F:      drivers/gpu/drm/vkms/
6023
6024 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6025 M:      Hans de Goede <hdegoede@redhat.com>
6026 L:      dri-devel@lists.freedesktop.org
6027 S:      Maintained
6028 T:      git git://anongit.freedesktop.org/drm/drm-misc
6029 F:      drivers/gpu/drm/vboxvideo/
6030
6031 DRM DRIVER FOR VMWARE VIRTUAL GPU
6032 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
6033 M:      Roland Scheidegger <sroland@vmware.com>
6034 M:      Zack Rusin <zackr@vmware.com>
6035 L:      dri-devel@lists.freedesktop.org
6036 S:      Supported
6037 T:      git git://people.freedesktop.org/~sroland/linux
6038 F:      drivers/gpu/drm/vmwgfx/
6039 F:      include/uapi/drm/vmwgfx_drm.h
6040
6041 DRM DRIVERS
6042 M:      David Airlie <airlied@linux.ie>
6043 M:      Daniel Vetter <daniel@ffwll.ch>
6044 L:      dri-devel@lists.freedesktop.org
6045 S:      Maintained
6046 B:      https://gitlab.freedesktop.org/drm
6047 C:      irc://chat.freenode.net/dri-devel
6048 T:      git git://anongit.freedesktop.org/drm/drm
6049 F:      Documentation/devicetree/bindings/display/
6050 F:      Documentation/devicetree/bindings/gpu/
6051 F:      Documentation/gpu/
6052 F:      drivers/gpu/drm/
6053 F:      drivers/gpu/vga/
6054 F:      include/drm/
6055 F:      include/linux/vga*
6056 F:      include/uapi/drm/
6057
6058 DRM DRIVERS AND MISC GPU PATCHES
6059 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6060 M:      Maxime Ripard <mripard@kernel.org>
6061 M:      Thomas Zimmermann <tzimmermann@suse.de>
6062 S:      Maintained
6063 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6064 T:      git git://anongit.freedesktop.org/drm/drm-misc
6065 F:      Documentation/gpu/
6066 F:      drivers/gpu/drm/*
6067 F:      drivers/gpu/vga/
6068 F:      include/drm/drm*
6069 F:      include/linux/vga*
6070 F:      include/uapi/drm/drm*
6071
6072 DRM DRIVERS FOR ALLWINNER A10
6073 M:      Maxime Ripard <mripard@kernel.org>
6074 M:      Chen-Yu Tsai <wens@csie.org>
6075 L:      dri-devel@lists.freedesktop.org
6076 S:      Supported
6077 T:      git git://anongit.freedesktop.org/drm/drm-misc
6078 F:      Documentation/devicetree/bindings/display/allwinner*
6079 F:      drivers/gpu/drm/sun4i/
6080
6081 DRM DRIVERS FOR AMLOGIC SOCS
6082 M:      Neil Armstrong <narmstrong@baylibre.com>
6083 L:      dri-devel@lists.freedesktop.org
6084 L:      linux-amlogic@lists.infradead.org
6085 S:      Supported
6086 W:      http://linux-meson.com/
6087 T:      git git://anongit.freedesktop.org/drm/drm-misc
6088 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6089 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6090 F:      Documentation/gpu/meson.rst
6091 F:      drivers/gpu/drm/meson/
6092
6093 DRM DRIVERS FOR ATMEL HLCDC
6094 M:      Sam Ravnborg <sam@ravnborg.org>
6095 M:      Boris Brezillon <bbrezillon@kernel.org>
6096 L:      dri-devel@lists.freedesktop.org
6097 S:      Supported
6098 T:      git git://anongit.freedesktop.org/drm/drm-misc
6099 F:      Documentation/devicetree/bindings/display/atmel/
6100 F:      drivers/gpu/drm/atmel-hlcdc/
6101
6102 DRM DRIVERS FOR BRIDGE CHIPS
6103 M:      Andrzej Hajda <a.hajda@samsung.com>
6104 M:      Neil Armstrong <narmstrong@baylibre.com>
6105 M:      Robert Foss <robert.foss@linaro.org>
6106 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6107 R:      Jonas Karlman <jonas@kwiboo.se>
6108 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6109 S:      Maintained
6110 T:      git git://anongit.freedesktop.org/drm/drm-misc
6111 F:      drivers/gpu/drm/bridge/
6112
6113 DRM DRIVERS FOR EXYNOS
6114 M:      Inki Dae <inki.dae@samsung.com>
6115 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6116 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6117 M:      Kyungmin Park <kyungmin.park@samsung.com>
6118 L:      dri-devel@lists.freedesktop.org
6119 S:      Supported
6120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6121 F:      Documentation/devicetree/bindings/display/exynos/
6122 F:      drivers/gpu/drm/exynos/
6123 F:      include/uapi/drm/exynos_drm.h
6124
6125 DRM DRIVERS FOR FREESCALE DCU
6126 M:      Stefan Agner <stefan@agner.ch>
6127 M:      Alison Wang <alison.wang@nxp.com>
6128 L:      dri-devel@lists.freedesktop.org
6129 S:      Supported
6130 T:      git git://anongit.freedesktop.org/drm/drm-misc
6131 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6132 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6133 F:      drivers/gpu/drm/fsl-dcu/
6134
6135 DRM DRIVERS FOR FREESCALE IMX
6136 M:      Philipp Zabel <p.zabel@pengutronix.de>
6137 L:      dri-devel@lists.freedesktop.org
6138 S:      Maintained
6139 F:      Documentation/devicetree/bindings/display/imx/
6140 F:      drivers/gpu/drm/imx/
6141 F:      drivers/gpu/ipu-v3/
6142
6143 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6144 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6145 L:      dri-devel@lists.freedesktop.org
6146 S:      Maintained
6147 T:      git git://github.com/patjak/drm-gma500
6148 F:      drivers/gpu/drm/gma500/
6149
6150 DRM DRIVERS FOR HISILICON
6151 M:      Xinliang Liu <xinliang.liu@linaro.org>
6152 M:      Tian Tao  <tiantao6@hisilicon.com>
6153 R:      John Stultz <john.stultz@linaro.org>
6154 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6155 R:      Chen Feng <puck.chen@hisilicon.com>
6156 L:      dri-devel@lists.freedesktop.org
6157 S:      Maintained
6158 T:      git git://anongit.freedesktop.org/drm/drm-misc
6159 F:      Documentation/devicetree/bindings/display/hisilicon/
6160 F:      drivers/gpu/drm/hisilicon/
6161
6162 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6163 M:      Deepak Rawat <drawat.floss@gmail.com>
6164 L:      linux-hyperv@vger.kernel.org
6165 L:      dri-devel@lists.freedesktop.org
6166 S:      Maintained
6167 T:      git git://anongit.freedesktop.org/drm/drm-misc
6168 F:      drivers/gpu/drm/hyperv
6169
6170 DRM DRIVERS FOR LIMA
6171 M:      Qiang Yu <yuq825@gmail.com>
6172 L:      dri-devel@lists.freedesktop.org
6173 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6174 S:      Maintained
6175 T:      git git://anongit.freedesktop.org/drm/drm-misc
6176 F:      drivers/gpu/drm/lima/
6177 F:      include/uapi/drm/lima_drm.h
6178
6179 DRM DRIVERS FOR MEDIATEK
6180 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6181 M:      Philipp Zabel <p.zabel@pengutronix.de>
6182 L:      dri-devel@lists.freedesktop.org
6183 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6184 S:      Supported
6185 F:      Documentation/devicetree/bindings/display/mediatek/
6186 F:      drivers/gpu/drm/mediatek/
6187 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6188 F:      drivers/phy/mediatek/phy-mtk-mipi*
6189
6190 DRM DRIVERS FOR NVIDIA TEGRA
6191 M:      Thierry Reding <thierry.reding@gmail.com>
6192 L:      dri-devel@lists.freedesktop.org
6193 L:      linux-tegra@vger.kernel.org
6194 S:      Supported
6195 T:      git git://anongit.freedesktop.org/tegra/linux.git
6196 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6197 F:      drivers/gpu/drm/tegra/
6198 F:      drivers/gpu/host1x/
6199 F:      include/linux/host1x.h
6200 F:      include/uapi/drm/tegra_drm.h
6201
6202 DRM DRIVERS FOR RENESAS
6203 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6204 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6205 L:      dri-devel@lists.freedesktop.org
6206 L:      linux-renesas-soc@vger.kernel.org
6207 S:      Supported
6208 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6209 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6210 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6211 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6212 F:      drivers/gpu/drm/rcar-du/
6213 F:      drivers/gpu/drm/shmobile/
6214 F:      include/linux/platform_data/shmob_drm.h
6215
6216 DRM DRIVERS FOR ROCKCHIP
6217 M:      Sandy Huang <hjc@rock-chips.com>
6218 M:      Heiko Stübner <heiko@sntech.de>
6219 L:      dri-devel@lists.freedesktop.org
6220 S:      Maintained
6221 T:      git git://anongit.freedesktop.org/drm/drm-misc
6222 F:      Documentation/devicetree/bindings/display/rockchip/
6223 F:      drivers/gpu/drm/rockchip/
6224
6225 DRM DRIVERS FOR STI
6226 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6227 L:      dri-devel@lists.freedesktop.org
6228 S:      Maintained
6229 T:      git git://anongit.freedesktop.org/drm/drm-misc
6230 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6231 F:      drivers/gpu/drm/sti
6232
6233 DRM DRIVERS FOR STM
6234 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6235 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6236 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6237 L:      dri-devel@lists.freedesktop.org
6238 S:      Maintained
6239 T:      git git://anongit.freedesktop.org/drm/drm-misc
6240 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6241 F:      drivers/gpu/drm/stm
6242
6243 DRM DRIVERS FOR TI KEYSTONE
6244 M:      Jyri Sarha <jyri.sarha@iki.fi>
6245 M:      Tomi Valkeinen <tomba@kernel.org>
6246 L:      dri-devel@lists.freedesktop.org
6247 S:      Maintained
6248 T:      git git://anongit.freedesktop.org/drm/drm-misc
6249 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6250 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6251 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6252 F:      drivers/gpu/drm/tidss/
6253
6254 DRM DRIVERS FOR TI LCDC
6255 M:      Jyri Sarha <jyri.sarha@iki.fi>
6256 R:      Tomi Valkeinen <tomba@kernel.org>
6257 L:      dri-devel@lists.freedesktop.org
6258 S:      Maintained
6259 F:      Documentation/devicetree/bindings/display/tilcdc/
6260 F:      drivers/gpu/drm/tilcdc/
6261
6262 DRM DRIVERS FOR TI OMAP
6263 M:      Tomi Valkeinen <tomba@kernel.org>
6264 L:      dri-devel@lists.freedesktop.org
6265 S:      Maintained
6266 F:      Documentation/devicetree/bindings/display/ti/
6267 F:      drivers/gpu/drm/omapdrm/
6268
6269 DRM DRIVERS FOR V3D
6270 M:      Emma Anholt <emma@anholt.net>
6271 S:      Supported
6272 T:      git git://anongit.freedesktop.org/drm/drm-misc
6273 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6274 F:      drivers/gpu/drm/v3d/
6275 F:      include/uapi/drm/v3d_drm.h
6276
6277 DRM DRIVERS FOR VC4
6278 M:      Emma Anholt <emma@anholt.net>
6279 M:      Maxime Ripard <mripard@kernel.org>
6280 S:      Supported
6281 T:      git git://github.com/anholt/linux
6282 T:      git git://anongit.freedesktop.org/drm/drm-misc
6283 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6284 F:      drivers/gpu/drm/vc4/
6285 F:      include/uapi/drm/vc4_drm.h
6286
6287 DRM DRIVERS FOR VIVANTE GPU IP
6288 M:      Lucas Stach <l.stach@pengutronix.de>
6289 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6290 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6291 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6292 L:      dri-devel@lists.freedesktop.org
6293 S:      Maintained
6294 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6295 F:      drivers/gpu/drm/etnaviv/
6296 F:      include/uapi/drm/etnaviv_drm.h
6297
6298 DRM DRIVERS FOR XEN
6299 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6300 L:      dri-devel@lists.freedesktop.org
6301 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6302 S:      Supported
6303 T:      git git://anongit.freedesktop.org/drm/drm-misc
6304 F:      Documentation/gpu/xen-front.rst
6305 F:      drivers/gpu/drm/xen/
6306
6307 DRM DRIVERS FOR XILINX
6308 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6309 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6310 L:      dri-devel@lists.freedesktop.org
6311 S:      Maintained
6312 T:      git git://anongit.freedesktop.org/drm/drm-misc
6313 F:      Documentation/devicetree/bindings/display/xlnx/
6314 F:      drivers/gpu/drm/xlnx/
6315
6316 DRM PANEL DRIVERS
6317 M:      Thierry Reding <thierry.reding@gmail.com>
6318 R:      Sam Ravnborg <sam@ravnborg.org>
6319 L:      dri-devel@lists.freedesktop.org
6320 S:      Maintained
6321 T:      git git://anongit.freedesktop.org/drm/drm-misc
6322 F:      Documentation/devicetree/bindings/display/panel/
6323 F:      drivers/gpu/drm/drm_panel.c
6324 F:      drivers/gpu/drm/panel/
6325 F:      include/drm/drm_panel.h
6326
6327 DRM TTM SUBSYSTEM
6328 M:      Christian Koenig <christian.koenig@amd.com>
6329 M:      Huang Rui <ray.huang@amd.com>
6330 L:      dri-devel@lists.freedesktop.org
6331 S:      Maintained
6332 T:      git git://anongit.freedesktop.org/drm/drm-misc
6333 F:      drivers/gpu/drm/ttm/
6334 F:      include/drm/ttm/
6335
6336 DSBR100 USB FM RADIO DRIVER
6337 M:      Alexey Klimov <klimov.linux@gmail.com>
6338 L:      linux-media@vger.kernel.org
6339 S:      Maintained
6340 T:      git git://linuxtv.org/media_tree.git
6341 F:      drivers/media/radio/dsbr100.c
6342
6343 DT3155 MEDIA DRIVER
6344 M:      Hans Verkuil <hverkuil@xs4all.nl>
6345 L:      linux-media@vger.kernel.org
6346 S:      Odd Fixes
6347 W:      https://linuxtv.org
6348 T:      git git://linuxtv.org/media_tree.git
6349 F:      drivers/media/pci/dt3155/
6350
6351 DVB_USB_AF9015 MEDIA DRIVER
6352 M:      Antti Palosaari <crope@iki.fi>
6353 L:      linux-media@vger.kernel.org
6354 S:      Maintained
6355 W:      https://linuxtv.org
6356 W:      http://palosaari.fi/linux/
6357 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6358 T:      git git://linuxtv.org/anttip/media_tree.git
6359 F:      drivers/media/usb/dvb-usb-v2/af9015*
6360
6361 DVB_USB_AF9035 MEDIA DRIVER
6362 M:      Antti Palosaari <crope@iki.fi>
6363 L:      linux-media@vger.kernel.org
6364 S:      Maintained
6365 W:      https://linuxtv.org
6366 W:      http://palosaari.fi/linux/
6367 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6368 T:      git git://linuxtv.org/anttip/media_tree.git
6369 F:      drivers/media/usb/dvb-usb-v2/af9035*
6370
6371 DVB_USB_ANYSEE MEDIA DRIVER
6372 M:      Antti Palosaari <crope@iki.fi>
6373 L:      linux-media@vger.kernel.org
6374 S:      Maintained
6375 W:      https://linuxtv.org
6376 W:      http://palosaari.fi/linux/
6377 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6378 T:      git git://linuxtv.org/anttip/media_tree.git
6379 F:      drivers/media/usb/dvb-usb-v2/anysee*
6380
6381 DVB_USB_AU6610 MEDIA DRIVER
6382 M:      Antti Palosaari <crope@iki.fi>
6383 L:      linux-media@vger.kernel.org
6384 S:      Maintained
6385 W:      https://linuxtv.org
6386 W:      http://palosaari.fi/linux/
6387 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6388 T:      git git://linuxtv.org/anttip/media_tree.git
6389 F:      drivers/media/usb/dvb-usb-v2/au6610*
6390
6391 DVB_USB_CE6230 MEDIA DRIVER
6392 M:      Antti Palosaari <crope@iki.fi>
6393 L:      linux-media@vger.kernel.org
6394 S:      Maintained
6395 W:      https://linuxtv.org
6396 W:      http://palosaari.fi/linux/
6397 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6398 T:      git git://linuxtv.org/anttip/media_tree.git
6399 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6400
6401 DVB_USB_CXUSB MEDIA DRIVER
6402 M:      Michael Krufky <mkrufky@linuxtv.org>
6403 L:      linux-media@vger.kernel.org
6404 S:      Maintained
6405 W:      https://linuxtv.org
6406 W:      http://github.com/mkrufky
6407 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6408 T:      git git://linuxtv.org/media_tree.git
6409 F:      drivers/media/usb/dvb-usb/cxusb*
6410
6411 DVB_USB_EC168 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/usb/dvb-usb-v2/ec168*
6420
6421 DVB_USB_GL861 MEDIA DRIVER
6422 M:      Antti Palosaari <crope@iki.fi>
6423 L:      linux-media@vger.kernel.org
6424 S:      Maintained
6425 W:      https://linuxtv.org
6426 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6427 T:      git git://linuxtv.org/anttip/media_tree.git
6428 F:      drivers/media/usb/dvb-usb-v2/gl861*
6429
6430 DVB_USB_MXL111SF MEDIA DRIVER
6431 M:      Michael Krufky <mkrufky@linuxtv.org>
6432 L:      linux-media@vger.kernel.org
6433 S:      Maintained
6434 W:      https://linuxtv.org
6435 W:      http://github.com/mkrufky
6436 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6437 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6438 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6439
6440 DVB_USB_RTL28XXU MEDIA DRIVER
6441 M:      Antti Palosaari <crope@iki.fi>
6442 L:      linux-media@vger.kernel.org
6443 S:      Maintained
6444 W:      https://linuxtv.org
6445 W:      http://palosaari.fi/linux/
6446 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6447 T:      git git://linuxtv.org/anttip/media_tree.git
6448 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6449
6450 DVB_USB_V2 MEDIA DRIVER
6451 M:      Antti Palosaari <crope@iki.fi>
6452 L:      linux-media@vger.kernel.org
6453 S:      Maintained
6454 W:      https://linuxtv.org
6455 W:      http://palosaari.fi/linux/
6456 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6457 T:      git git://linuxtv.org/anttip/media_tree.git
6458 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6459 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6460
6461 DYNAMIC DEBUG
6462 M:      Jason Baron <jbaron@akamai.com>
6463 S:      Maintained
6464 F:      include/linux/dynamic_debug.h
6465 F:      lib/dynamic_debug.c
6466
6467 DYNAMIC INTERRUPT MODERATION
6468 M:      Tal Gilboa <talgi@nvidia.com>
6469 S:      Maintained
6470 F:      Documentation/networking/net_dim.rst
6471 F:      include/linux/dim.h
6472 F:      lib/dim/
6473
6474 DZ DECSTATION DZ11 SERIAL DRIVER
6475 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6476 S:      Maintained
6477 F:      drivers/tty/serial/dz.*
6478
6479 E3X0 POWER BUTTON DRIVER
6480 M:      Moritz Fischer <moritz.fischer@ettus.com>
6481 L:      usrp-users@lists.ettus.com
6482 S:      Supported
6483 W:      http://www.ettus.com
6484 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6485 F:      drivers/input/misc/e3x0-button.c
6486
6487 E4000 MEDIA DRIVER
6488 M:      Antti Palosaari <crope@iki.fi>
6489 L:      linux-media@vger.kernel.org
6490 S:      Maintained
6491 W:      https://linuxtv.org
6492 W:      http://palosaari.fi/linux/
6493 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6494 T:      git git://linuxtv.org/anttip/media_tree.git
6495 F:      drivers/media/tuners/e4000*
6496
6497 EARTH_PT1 MEDIA DRIVER
6498 M:      Akihiro Tsukada <tskd08@gmail.com>
6499 L:      linux-media@vger.kernel.org
6500 S:      Odd Fixes
6501 F:      drivers/media/pci/pt1/
6502
6503 EARTH_PT3 MEDIA DRIVER
6504 M:      Akihiro Tsukada <tskd08@gmail.com>
6505 L:      linux-media@vger.kernel.org
6506 S:      Odd Fixes
6507 F:      drivers/media/pci/pt3/
6508
6509 EC100 MEDIA DRIVER
6510 M:      Antti Palosaari <crope@iki.fi>
6511 L:      linux-media@vger.kernel.org
6512 S:      Maintained
6513 W:      https://linuxtv.org
6514 W:      http://palosaari.fi/linux/
6515 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6516 T:      git git://linuxtv.org/anttip/media_tree.git
6517 F:      drivers/media/dvb-frontends/ec100*
6518
6519 ECRYPT FILE SYSTEM
6520 M:      Tyler Hicks <code@tyhicks.com>
6521 L:      ecryptfs@vger.kernel.org
6522 S:      Odd Fixes
6523 W:      http://ecryptfs.org
6524 W:      https://launchpad.net/ecryptfs
6525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6526 F:      Documentation/filesystems/ecryptfs.rst
6527 F:      fs/ecryptfs/
6528
6529 EDAC-AMD64
6530 M:      Yazen Ghannam <yazen.ghannam@amd.com>
6531 L:      linux-edac@vger.kernel.org
6532 S:      Supported
6533 F:      drivers/edac/amd64_edac*
6534 F:      drivers/edac/mce_amd*
6535
6536 EDAC-ARMADA
6537 M:      Jan Luebbe <jlu@pengutronix.de>
6538 L:      linux-edac@vger.kernel.org
6539 S:      Maintained
6540 F:      drivers/edac/armada_xp_*
6541
6542 EDAC-AST2500
6543 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6544 S:      Supported
6545 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6546 F:      drivers/edac/aspeed_edac.c
6547
6548 EDAC-BLUEFIELD
6549 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6550 S:      Supported
6551 F:      drivers/edac/bluefield_edac.c
6552
6553 EDAC-CALXEDA
6554 M:      Andre Przywara <andre.przywara@arm.com>
6555 L:      linux-edac@vger.kernel.org
6556 S:      Maintained
6557 F:      drivers/edac/highbank*
6558
6559 EDAC-CAVIUM OCTEON
6560 M:      Ralf Baechle <ralf@linux-mips.org>
6561 L:      linux-edac@vger.kernel.org
6562 L:      linux-mips@vger.kernel.org
6563 S:      Supported
6564 F:      drivers/edac/octeon_edac*
6565
6566 EDAC-CAVIUM THUNDERX
6567 M:      Robert Richter <rric@kernel.org>
6568 L:      linux-edac@vger.kernel.org
6569 S:      Odd Fixes
6570 F:      drivers/edac/thunderx_edac*
6571
6572 EDAC-CORE
6573 M:      Borislav Petkov <bp@alien8.de>
6574 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6575 M:      Tony Luck <tony.luck@intel.com>
6576 R:      James Morse <james.morse@arm.com>
6577 R:      Robert Richter <rric@kernel.org>
6578 L:      linux-edac@vger.kernel.org
6579 S:      Supported
6580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6581 F:      Documentation/admin-guide/ras.rst
6582 F:      Documentation/driver-api/edac.rst
6583 F:      drivers/edac/
6584 F:      include/linux/edac.h
6585
6586 EDAC-DMC520
6587 M:      Lei Wang <lewan@microsoft.com>
6588 L:      linux-edac@vger.kernel.org
6589 S:      Supported
6590 F:      drivers/edac/dmc520_edac.c
6591
6592 EDAC-E752X
6593 M:      Mark Gross <mark.gross@intel.com>
6594 L:      linux-edac@vger.kernel.org
6595 S:      Maintained
6596 F:      drivers/edac/e752x_edac.c
6597
6598 EDAC-E7XXX
6599 L:      linux-edac@vger.kernel.org
6600 S:      Maintained
6601 F:      drivers/edac/e7xxx_edac.c
6602
6603 EDAC-FSL_DDR
6604 M:      York Sun <york.sun@nxp.com>
6605 L:      linux-edac@vger.kernel.org
6606 S:      Maintained
6607 F:      drivers/edac/fsl_ddr_edac.*
6608
6609 EDAC-GHES
6610 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6611 L:      linux-edac@vger.kernel.org
6612 S:      Maintained
6613 F:      drivers/edac/ghes_edac.c
6614
6615 EDAC-I10NM
6616 M:      Tony Luck <tony.luck@intel.com>
6617 L:      linux-edac@vger.kernel.org
6618 S:      Maintained
6619 F:      drivers/edac/i10nm_base.c
6620
6621 EDAC-I3000
6622 L:      linux-edac@vger.kernel.org
6623 S:      Orphan
6624 F:      drivers/edac/i3000_edac.c
6625
6626 EDAC-I5000
6627 L:      linux-edac@vger.kernel.org
6628 S:      Maintained
6629 F:      drivers/edac/i5000_edac.c
6630
6631 EDAC-I5400
6632 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6633 L:      linux-edac@vger.kernel.org
6634 S:      Maintained
6635 F:      drivers/edac/i5400_edac.c
6636
6637 EDAC-I7300
6638 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6639 L:      linux-edac@vger.kernel.org
6640 S:      Maintained
6641 F:      drivers/edac/i7300_edac.c
6642
6643 EDAC-I7CORE
6644 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6645 L:      linux-edac@vger.kernel.org
6646 S:      Maintained
6647 F:      drivers/edac/i7core_edac.c
6648
6649 EDAC-I82443BXGX
6650 M:      Tim Small <tim@buttersideup.com>
6651 L:      linux-edac@vger.kernel.org
6652 S:      Maintained
6653 F:      drivers/edac/i82443bxgx_edac.c
6654
6655 EDAC-I82975X
6656 M:      "Arvind R." <arvino55@gmail.com>
6657 L:      linux-edac@vger.kernel.org
6658 S:      Maintained
6659 F:      drivers/edac/i82975x_edac.c
6660
6661 EDAC-IE31200
6662 M:      Jason Baron <jbaron@akamai.com>
6663 L:      linux-edac@vger.kernel.org
6664 S:      Maintained
6665 F:      drivers/edac/ie31200_edac.c
6666
6667 EDAC-IGEN6
6668 M:      Tony Luck <tony.luck@intel.com>
6669 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6670 L:      linux-edac@vger.kernel.org
6671 S:      Maintained
6672 F:      drivers/edac/igen6_edac.c
6673
6674 EDAC-MPC85XX
6675 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6676 L:      linux-edac@vger.kernel.org
6677 S:      Maintained
6678 F:      drivers/edac/mpc85xx_edac.[ch]
6679
6680 EDAC-PASEMI
6681 M:      Egor Martovetsky <egor@pasemi.com>
6682 L:      linux-edac@vger.kernel.org
6683 S:      Maintained
6684 F:      drivers/edac/pasemi_edac.c
6685
6686 EDAC-PND2
6687 M:      Tony Luck <tony.luck@intel.com>
6688 L:      linux-edac@vger.kernel.org
6689 S:      Maintained
6690 F:      drivers/edac/pnd2_edac.[ch]
6691
6692 EDAC-QCOM
6693 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6694 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6695 L:      linux-arm-msm@vger.kernel.org
6696 L:      linux-edac@vger.kernel.org
6697 S:      Maintained
6698 F:      drivers/edac/qcom_edac.c
6699
6700 EDAC-R82600
6701 M:      Tim Small <tim@buttersideup.com>
6702 L:      linux-edac@vger.kernel.org
6703 S:      Maintained
6704 F:      drivers/edac/r82600_edac.c
6705
6706 EDAC-SBRIDGE
6707 M:      Tony Luck <tony.luck@intel.com>
6708 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6709 L:      linux-edac@vger.kernel.org
6710 S:      Maintained
6711 F:      drivers/edac/sb_edac.c
6712
6713 EDAC-SIFIVE
6714 M:      Yash Shah <yash.shah@sifive.com>
6715 L:      linux-edac@vger.kernel.org
6716 S:      Supported
6717 F:      drivers/edac/sifive_edac.c
6718
6719 EDAC-SKYLAKE
6720 M:      Tony Luck <tony.luck@intel.com>
6721 L:      linux-edac@vger.kernel.org
6722 S:      Maintained
6723 F:      drivers/edac/skx_*.[ch]
6724
6725 EDAC-TI
6726 M:      Tero Kristo <kristo@kernel.org>
6727 L:      linux-edac@vger.kernel.org
6728 S:      Odd Fixes
6729 F:      drivers/edac/ti_edac.c
6730
6731 EDIROL UA-101/UA-1000 DRIVER
6732 M:      Clemens Ladisch <clemens@ladisch.de>
6733 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6734 S:      Maintained
6735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6736 F:      sound/usb/misc/ua101.c
6737
6738 EFI TEST DRIVER
6739 M:      Ivan Hu <ivan.hu@canonical.com>
6740 M:      Ard Biesheuvel <ardb@kernel.org>
6741 L:      linux-efi@vger.kernel.org
6742 S:      Maintained
6743 F:      drivers/firmware/efi/test/
6744
6745 EFI VARIABLE FILESYSTEM
6746 M:      Matthew Garrett <matthew.garrett@nebula.com>
6747 M:      Jeremy Kerr <jk@ozlabs.org>
6748 M:      Ard Biesheuvel <ardb@kernel.org>
6749 L:      linux-efi@vger.kernel.org
6750 S:      Maintained
6751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6752 F:      fs/efivarfs/
6753
6754 EFIFB FRAMEBUFFER DRIVER
6755 M:      Peter Jones <pjones@redhat.com>
6756 L:      linux-fbdev@vger.kernel.org
6757 S:      Maintained
6758 F:      drivers/video/fbdev/efifb.c
6759
6760 EFS FILESYSTEM
6761 S:      Orphan
6762 W:      http://aeschi.ch.eu.org/efs/
6763 F:      fs/efs/
6764
6765 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6766 M:      Douglas Miller <dougmill@linux.ibm.com>
6767 L:      netdev@vger.kernel.org
6768 S:      Maintained
6769 F:      drivers/net/ethernet/ibm/ehea/
6770
6771 EM28XX VIDEO4LINUX DRIVER
6772 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6773 L:      linux-media@vger.kernel.org
6774 S:      Maintained
6775 W:      https://linuxtv.org
6776 T:      git git://linuxtv.org/media_tree.git
6777 F:      Documentation/admin-guide/media/em28xx*
6778 F:      drivers/media/usb/em28xx/
6779
6780 EMBEDDED LINUX
6781 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6782 M:      Matt Mackall <mpm@selenic.com>
6783 M:      David Woodhouse <dwmw2@infradead.org>
6784 L:      linux-embedded@vger.kernel.org
6785 S:      Maintained
6786
6787 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6788 M:      Adrian Hunter <adrian.hunter@intel.com>
6789 M:      Ritesh Harjani <riteshh@codeaurora.org>
6790 M:      Asutosh Das <asutoshd@codeaurora.org>
6791 L:      linux-mmc@vger.kernel.org
6792 S:      Maintained
6793 F:      drivers/mmc/host/cqhci*
6794
6795 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6796 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6797 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6798 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6799 L:      linux-scsi@vger.kernel.org
6800 S:      Supported
6801 W:      http://www.broadcom.com
6802 F:      drivers/scsi/be2iscsi/
6803
6804 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6805 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6806 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6807 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6808 L:      netdev@vger.kernel.org
6809 S:      Supported
6810 W:      http://www.emulex.com
6811 F:      drivers/net/ethernet/emulex/benet/
6812
6813 EMULEX ONECONNECT ROCE DRIVER
6814 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6815 L:      linux-rdma@vger.kernel.org
6816 S:      Odd Fixes
6817 W:      http://www.broadcom.com
6818 F:      drivers/infiniband/hw/ocrdma/
6819 F:      include/uapi/rdma/ocrdma-abi.h
6820
6821 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6822 M:      James Smart <james.smart@broadcom.com>
6823 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6824 L:      linux-scsi@vger.kernel.org
6825 S:      Supported
6826 W:      http://www.broadcom.com
6827 F:      drivers/scsi/lpfc/
6828
6829 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
6830 M:      James Smart <james.smart@broadcom.com>
6831 M:      Ram Vegesna <ram.vegesna@broadcom.com>
6832 L:      linux-scsi@vger.kernel.org
6833 L:      target-devel@vger.kernel.org
6834 S:      Supported
6835 W:      http://www.broadcom.com
6836 F:      drivers/scsi/elx/
6837
6838 ENE CB710 FLASH CARD READER DRIVER
6839 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6840 S:      Maintained
6841 F:      drivers/misc/cb710/
6842 F:      drivers/mmc/host/cb710-mmc.*
6843 F:      include/linux/cb710.h
6844
6845 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6846 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6847 S:      Maintained
6848 F:      drivers/media/rc/ene_ir.*
6849
6850 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6851 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6852 L:      linuxppc-dev@lists.ozlabs.org
6853 S:      Maintained
6854 F:      drivers/tty/ehv_bytechan.c
6855
6856 EPSON S1D13XXX FRAMEBUFFER DRIVER
6857 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6858 S:      Maintained
6859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6860 F:      drivers/video/fbdev/s1d13xxxfb.c
6861 F:      include/video/s1d13xxxfb.h
6862
6863 EROFS FILE SYSTEM
6864 M:      Gao Xiang <xiang@kernel.org>
6865 M:      Chao Yu <chao@kernel.org>
6866 L:      linux-erofs@lists.ozlabs.org
6867 S:      Maintained
6868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6869 F:      Documentation/filesystems/erofs.rst
6870 F:      fs/erofs/
6871 F:      include/trace/events/erofs.h
6872
6873 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6874 M:      Jeff Layton <jlayton@kernel.org>
6875 S:      Maintained
6876 F:      include/linux/errseq.h
6877 F:      lib/errseq.c
6878
6879 ET131X NETWORK DRIVER
6880 M:      Mark Einon <mark.einon@gmail.com>
6881 S:      Odd Fixes
6882 F:      drivers/net/ethernet/agere/
6883
6884 ETHERNET BRIDGE
6885 M:      Roopa Prabhu <roopa@nvidia.com>
6886 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
6887 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6888 L:      netdev@vger.kernel.org
6889 S:      Maintained
6890 W:      http://www.linuxfoundation.org/en/Net:Bridge
6891 F:      include/linux/netfilter_bridge/
6892 F:      net/bridge/
6893
6894 ETHERNET PHY LIBRARY
6895 M:      Andrew Lunn <andrew@lunn.ch>
6896 M:      Heiner Kallweit <hkallweit1@gmail.com>
6897 R:      Russell King <linux@armlinux.org.uk>
6898 L:      netdev@vger.kernel.org
6899 S:      Maintained
6900 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6901 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6902 F:      Documentation/devicetree/bindings/net/mdio*
6903 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6904 F:      Documentation/networking/phy.rst
6905 F:      drivers/net/mdio/
6906 F:      drivers/net/mdio/acpi_mdio.c
6907 F:      drivers/net/mdio/fwnode_mdio.c
6908 F:      drivers/net/mdio/of_mdio.c
6909 F:      drivers/net/pcs/
6910 F:      drivers/net/phy/
6911 F:      drivers/of/of_net.c
6912 F:      include/dt-bindings/net/qca-ar803x.h
6913 F:      include/linux/*mdio*.h
6914 F:      include/linux/mdio/*.h
6915 F:      include/linux/of_net.h
6916 F:      include/linux/phy.h
6917 F:      include/linux/phy_fixed.h
6918 F:      include/linux/platform_data/mdio-bcm-unimac.h
6919 F:      include/linux/platform_data/mdio-gpio.h
6920 F:      include/trace/events/mdio.h
6921 F:      include/uapi/linux/mdio.h
6922 F:      include/uapi/linux/mii.h
6923
6924 EXFAT FILE SYSTEM
6925 M:      Namjae Jeon <namjae.jeon@samsung.com>
6926 M:      Sungjong Seo <sj1557.seo@samsung.com>
6927 L:      linux-fsdevel@vger.kernel.org
6928 S:      Maintained
6929 F:      fs/exfat/
6930
6931 EXT2 FILE SYSTEM
6932 M:      Jan Kara <jack@suse.com>
6933 L:      linux-ext4@vger.kernel.org
6934 S:      Maintained
6935 F:      Documentation/filesystems/ext2.rst
6936 F:      fs/ext2/
6937 F:      include/linux/ext2*
6938
6939 EXT4 FILE SYSTEM
6940 M:      "Theodore Ts'o" <tytso@mit.edu>
6941 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6942 L:      linux-ext4@vger.kernel.org
6943 S:      Maintained
6944 W:      http://ext4.wiki.kernel.org
6945 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6947 F:      Documentation/filesystems/ext4/
6948 F:      fs/ext4/
6949 F:      include/trace/events/ext4.h
6950
6951 Extended Verification Module (EVM)
6952 M:      Mimi Zohar <zohar@linux.ibm.com>
6953 L:      linux-integrity@vger.kernel.org
6954 S:      Supported
6955 F:      security/integrity/evm/
6956
6957 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6958 M:      Ard Biesheuvel <ardb@kernel.org>
6959 L:      linux-efi@vger.kernel.org
6960 S:      Maintained
6961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6962 F:      Documentation/admin-guide/efi-stub.rst
6963 F:      arch/*/include/asm/efi.h
6964 F:      arch/*/kernel/efi.c
6965 F:      arch/arm/boot/compressed/efi-header.S
6966 F:      arch/arm64/kernel/efi-entry.S
6967 F:      arch/x86/platform/efi/
6968 F:      drivers/firmware/efi/
6969 F:      include/linux/efi*.h
6970
6971 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6972 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6973 M:      Chanwoo Choi <cw00.choi@samsung.com>
6974 L:      linux-kernel@vger.kernel.org
6975 S:      Maintained
6976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6977 F:      Documentation/devicetree/bindings/extcon/
6978 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6979 F:      drivers/extcon/
6980 F:      include/linux/extcon.h
6981 F:      include/linux/extcon/
6982
6983 EXTRA BOOT CONFIG
6984 M:      Masami Hiramatsu <mhiramat@kernel.org>
6985 S:      Maintained
6986 F:      Documentation/admin-guide/bootconfig.rst
6987 F:      fs/proc/bootconfig.c
6988 F:      include/linux/bootconfig.h
6989 F:      lib/bootconfig.c
6990 F:      tools/bootconfig/*
6991 F:      tools/bootconfig/scripts/*
6992
6993 EXYNOS DP DRIVER
6994 M:      Jingoo Han <jingoohan1@gmail.com>
6995 L:      dri-devel@lists.freedesktop.org
6996 S:      Maintained
6997 F:      drivers/gpu/drm/exynos/exynos_dp*
6998
6999 EXYNOS SYSMMU (IOMMU) driver
7000 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7001 L:      iommu@lists.linux-foundation.org
7002 S:      Maintained
7003 F:      drivers/iommu/exynos-iommu.c
7004
7005 F2FS FILE SYSTEM
7006 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7007 M:      Chao Yu <yuchao0@huawei.com>
7008 L:      linux-f2fs-devel@lists.sourceforge.net
7009 S:      Maintained
7010 W:      https://f2fs.wiki.kernel.org/
7011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7012 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7013 F:      Documentation/filesystems/f2fs.rst
7014 F:      fs/f2fs/
7015 F:      include/linux/f2fs_fs.h
7016 F:      include/trace/events/f2fs.h
7017 F:      include/uapi/linux/f2fs.h
7018
7019 F71805F HARDWARE MONITORING DRIVER
7020 M:      Jean Delvare <jdelvare@suse.com>
7021 L:      linux-hwmon@vger.kernel.org
7022 S:      Maintained
7023 F:      Documentation/hwmon/f71805f.rst
7024 F:      drivers/hwmon/f71805f.c
7025
7026 FADDR2LINE
7027 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7028 S:      Maintained
7029 F:      scripts/faddr2line
7030
7031 FAILOVER MODULE
7032 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7033 L:      netdev@vger.kernel.org
7034 S:      Supported
7035 F:      Documentation/networking/failover.rst
7036 F:      include/net/failover.h
7037 F:      net/core/failover.c
7038
7039 FANOTIFY
7040 M:      Jan Kara <jack@suse.cz>
7041 R:      Amir Goldstein <amir73il@gmail.com>
7042 R:      Matthew Bobrowski <repnop@google.com>
7043 L:      linux-fsdevel@vger.kernel.org
7044 S:      Maintained
7045 F:      fs/notify/fanotify/
7046 F:      include/linux/fanotify.h
7047 F:      include/uapi/linux/fanotify.h
7048
7049 FARSYNC SYNCHRONOUS DRIVER
7050 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7051 S:      Supported
7052 W:      http://www.farsite.co.uk/
7053 F:      drivers/net/wan/farsync.*
7054
7055 FAULT INJECTION SUPPORT
7056 M:      Akinobu Mita <akinobu.mita@gmail.com>
7057 S:      Supported
7058 F:      Documentation/fault-injection/
7059 F:      lib/fault-inject.c
7060
7061 FBTFT Framebuffer drivers
7062 L:      dri-devel@lists.freedesktop.org
7063 L:      linux-fbdev@vger.kernel.org
7064 S:      Orphan
7065 F:      drivers/staging/fbtft/
7066
7067 FC0011 TUNER DRIVER
7068 M:      Michael Buesch <m@bues.ch>
7069 L:      linux-media@vger.kernel.org
7070 S:      Maintained
7071 F:      drivers/media/tuners/fc0011.c
7072 F:      drivers/media/tuners/fc0011.h
7073
7074 FC2580 MEDIA DRIVER
7075 M:      Antti Palosaari <crope@iki.fi>
7076 L:      linux-media@vger.kernel.org
7077 S:      Maintained
7078 W:      https://linuxtv.org
7079 W:      http://palosaari.fi/linux/
7080 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7081 T:      git git://linuxtv.org/anttip/media_tree.git
7082 F:      drivers/media/tuners/fc2580*
7083
7084 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7085 M:      Hannes Reinecke <hare@suse.de>
7086 L:      linux-scsi@vger.kernel.org
7087 S:      Supported
7088 W:      www.Open-FCoE.org
7089 F:      drivers/scsi/fcoe/
7090 F:      drivers/scsi/libfc/
7091 F:      include/scsi/fc/
7092 F:      include/scsi/libfc.h
7093 F:      include/scsi/libfcoe.h
7094 F:      include/uapi/scsi/fc/
7095
7096 FILE LOCKING (flock() and fcntl()/lockf())
7097 M:      Jeff Layton <jlayton@kernel.org>
7098 M:      "J. Bruce Fields" <bfields@fieldses.org>
7099 L:      linux-fsdevel@vger.kernel.org
7100 S:      Maintained
7101 F:      fs/fcntl.c
7102 F:      fs/locks.c
7103 F:      include/linux/fcntl.h
7104 F:      include/uapi/linux/fcntl.h
7105
7106 FILESYSTEM DIRECT ACCESS (DAX)
7107 M:      Dan Williams <dan.j.williams@intel.com>
7108 R:      Matthew Wilcox <willy@infradead.org>
7109 R:      Jan Kara <jack@suse.cz>
7110 L:      linux-fsdevel@vger.kernel.org
7111 L:      nvdimm@lists.linux.dev
7112 S:      Supported
7113 F:      fs/dax.c
7114 F:      include/linux/dax.h
7115 F:      include/trace/events/fs_dax.h
7116
7117 FILESYSTEMS (VFS and infrastructure)
7118 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7119 L:      linux-fsdevel@vger.kernel.org
7120 S:      Maintained
7121 F:      fs/*
7122 F:      include/linux/fs.h
7123 F:      include/linux/fs_types.h
7124 F:      include/uapi/linux/fs.h
7125 F:      include/uapi/linux/openat2.h
7126 X:      fs/io-wq.c
7127 X:      fs/io-wq.h
7128 X:      fs/io_uring.c
7129
7130 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7131 M:      Riku Voipio <riku.voipio@iki.fi>
7132 L:      linux-hwmon@vger.kernel.org
7133 S:      Maintained
7134 F:      drivers/hwmon/f75375s.c
7135 F:      include/linux/f75375s.h
7136
7137 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7138 M:      Clemens Ladisch <clemens@ladisch.de>
7139 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7140 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7141 S:      Maintained
7142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7143 F:      include/uapi/sound/firewire.h
7144 F:      sound/firewire/
7145
7146 FIREWIRE MEDIA DRIVERS (firedtv)
7147 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7148 L:      linux-media@vger.kernel.org
7149 L:      linux1394-devel@lists.sourceforge.net
7150 S:      Maintained
7151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7152 F:      drivers/media/firewire/
7153
7154 FIREWIRE SBP-2 TARGET
7155 M:      Chris Boot <bootc@bootc.net>
7156 L:      linux-scsi@vger.kernel.org
7157 L:      target-devel@vger.kernel.org
7158 L:      linux1394-devel@lists.sourceforge.net
7159 S:      Maintained
7160 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7161 F:      drivers/target/sbp/
7162
7163 FIREWIRE SUBSYSTEM
7164 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7165 L:      linux1394-devel@lists.sourceforge.net
7166 S:      Maintained
7167 W:      http://ieee1394.wiki.kernel.org/
7168 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7169 F:      drivers/firewire/
7170 F:      include/linux/firewire.h
7171 F:      include/uapi/linux/firewire*.h
7172 F:      tools/firewire/
7173
7174 FIRMWARE LOADER (request_firmware)
7175 M:      Luis Chamberlain <mcgrof@kernel.org>
7176 L:      linux-kernel@vger.kernel.org
7177 S:      Maintained
7178 F:      Documentation/firmware_class/
7179 F:      drivers/base/firmware_loader/
7180 F:      include/linux/firmware.h
7181
7182 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
7183 M:      Joshua Morris <josh.h.morris@us.ibm.com>
7184 M:      Philip Kelleher <pjk1939@linux.ibm.com>
7185 S:      Maintained
7186 F:      drivers/block/rsxx/
7187
7188 FLEXTIMER FTM-QUADDEC DRIVER
7189 M:      Patrick Havelange <patrick.havelange@essensium.com>
7190 L:      linux-iio@vger.kernel.org
7191 S:      Maintained
7192 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
7193 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7194 F:      drivers/counter/ftm-quaddec.c
7195
7196 FLOPPY DRIVER
7197 M:      Denis Efremov <efremov@linux.com>
7198 L:      linux-block@vger.kernel.org
7199 S:      Odd Fixes
7200 F:      drivers/block/floppy.c
7201
7202 FLYSKY FSIA6B RC RECEIVER
7203 M:      Markus Koch <markus@notsyncing.net>
7204 L:      linux-input@vger.kernel.org
7205 S:      Maintained
7206 F:      drivers/input/joystick/fsia6b.c
7207
7208 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7209 M:      Geoffrey D. Bennett <g@b4.vu>
7210 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7211 S:      Maintained
7212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7213 F:      sound/usb/mixer_scarlett_gen2.c
7214
7215 FORCEDETH GIGABIT ETHERNET DRIVER
7216 M:      Rain River <rain.1986.08.12@gmail.com>
7217 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7218 L:      netdev@vger.kernel.org
7219 S:      Maintained
7220 F:      drivers/net/ethernet/nvidia/*
7221
7222 FPGA DFL DRIVERS
7223 M:      Wu Hao <hao.wu@intel.com>
7224 R:      Tom Rix <trix@redhat.com>
7225 L:      linux-fpga@vger.kernel.org
7226 S:      Maintained
7227 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7228 F:      Documentation/fpga/dfl.rst
7229 F:      drivers/fpga/dfl*
7230 F:      drivers/uio/uio_dfl.c
7231 F:      include/linux/dfl.h
7232 F:      include/uapi/linux/fpga-dfl.h
7233
7234 FPGA MANAGER FRAMEWORK
7235 M:      Moritz Fischer <mdf@kernel.org>
7236 R:      Tom Rix <trix@redhat.com>
7237 L:      linux-fpga@vger.kernel.org
7238 S:      Maintained
7239 W:      http://www.rocketboards.org
7240 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7242 F:      Documentation/devicetree/bindings/fpga/
7243 F:      Documentation/driver-api/fpga/
7244 F:      Documentation/fpga/
7245 F:      drivers/fpga/
7246 F:      include/linux/fpga/
7247
7248 FPU EMULATOR
7249 M:      Bill Metzenthen <billm@melbpc.org.au>
7250 S:      Maintained
7251 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7252 F:      arch/x86/math-emu/
7253
7254 FRAMEBUFFER LAYER
7255 L:      dri-devel@lists.freedesktop.org
7256 L:      linux-fbdev@vger.kernel.org
7257 S:      Orphan
7258 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7259 T:      git git://anongit.freedesktop.org/drm/drm-misc
7260 F:      Documentation/fb/
7261 F:      drivers/video/
7262 F:      include/linux/fb.h
7263 F:      include/uapi/linux/fb.h
7264 F:      include/uapi/video/
7265 F:      include/video/
7266
7267 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7268 M:      Horia Geantă <horia.geanta@nxp.com>
7269 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7270 L:      linux-crypto@vger.kernel.org
7271 S:      Maintained
7272 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7273 F:      drivers/crypto/caam/
7274
7275 FREESCALE COLDFIRE M5441X MMC DRIVER
7276 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7277 L:      linux-mmc@vger.kernel.org
7278 S:      Maintained
7279 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7280 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7281
7282 FREESCALE DIU FRAMEBUFFER DRIVER
7283 M:      Timur Tabi <timur@kernel.org>
7284 L:      linux-fbdev@vger.kernel.org
7285 S:      Maintained
7286 F:      drivers/video/fbdev/fsl-diu-fb.*
7287
7288 FREESCALE DMA DRIVER
7289 M:      Li Yang <leoyang.li@nxp.com>
7290 M:      Zhang Wei <zw@zh-kernel.org>
7291 L:      linuxppc-dev@lists.ozlabs.org
7292 S:      Maintained
7293 F:      drivers/dma/fsldma.*
7294
7295 FREESCALE DSPI DRIVER
7296 M:      Vladimir Oltean <olteanv@gmail.com>
7297 L:      linux-spi@vger.kernel.org
7298 S:      Maintained
7299 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7300 F:      drivers/spi/spi-fsl-dspi.c
7301 F:      include/linux/spi/spi-fsl-dspi.h
7302
7303 FREESCALE ENETC ETHERNET DRIVERS
7304 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7305 L:      netdev@vger.kernel.org
7306 S:      Maintained
7307 F:      drivers/net/ethernet/freescale/enetc/
7308
7309 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7310 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7311 L:      netdev@vger.kernel.org
7312 S:      Maintained
7313 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7314 F:      drivers/net/ethernet/freescale/gianfar*
7315
7316 FREESCALE GPMI NAND DRIVER
7317 M:      Han Xu <han.xu@nxp.com>
7318 L:      linux-mtd@lists.infradead.org
7319 S:      Maintained
7320 F:      drivers/mtd/nand/raw/gpmi-nand/*
7321
7322 FREESCALE I2C CPM DRIVER
7323 M:      Jochen Friedrich <jochen@scram.de>
7324 L:      linuxppc-dev@lists.ozlabs.org
7325 L:      linux-i2c@vger.kernel.org
7326 S:      Maintained
7327 F:      drivers/i2c/busses/i2c-cpm.c
7328
7329 FREESCALE IMX / MXC FEC DRIVER
7330 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7331 L:      netdev@vger.kernel.org
7332 S:      Maintained
7333 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
7334 F:      drivers/net/ethernet/freescale/fec.h
7335 F:      drivers/net/ethernet/freescale/fec_main.c
7336 F:      drivers/net/ethernet/freescale/fec_ptp.c
7337
7338 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7339 M:      Sascha Hauer <s.hauer@pengutronix.de>
7340 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7341 L:      linux-fbdev@vger.kernel.org
7342 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7343 S:      Maintained
7344 F:      drivers/video/fbdev/imxfb.c
7345 F:      include/linux/platform_data/video-imxfb.h
7346
7347 FREESCALE IMX DDR PMU DRIVER
7348 M:      Frank Li <Frank.li@nxp.com>
7349 L:      linux-arm-kernel@lists.infradead.org
7350 S:      Maintained
7351 F:      Documentation/admin-guide/perf/imx-ddr.rst
7352 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7353 F:      drivers/perf/fsl_imx8_ddr_perf.c
7354
7355 FREESCALE IMX I2C DRIVER
7356 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7357 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7358 L:      linux-i2c@vger.kernel.org
7359 S:      Maintained
7360 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7361 F:      drivers/i2c/busses/i2c-imx.c
7362
7363 FREESCALE IMX LPI2C DRIVER
7364 M:      Dong Aisheng <aisheng.dong@nxp.com>
7365 L:      linux-i2c@vger.kernel.org
7366 L:      linux-imx@nxp.com
7367 S:      Maintained
7368 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7369 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7370
7371 FREESCALE MPC I2C DRIVER
7372 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7373 L:      linux-i2c@vger.kernel.org
7374 S:      Maintained
7375 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7376 F:      drivers/i2c/busses/i2c-mpc.c
7377
7378 FREESCALE QORIQ DPAA ETHERNET DRIVER
7379 M:      Madalin Bucur <madalin.bucur@nxp.com>
7380 L:      netdev@vger.kernel.org
7381 S:      Maintained
7382 F:      drivers/net/ethernet/freescale/dpaa
7383
7384 FREESCALE QORIQ DPAA FMAN DRIVER
7385 M:      Madalin Bucur <madalin.bucur@nxp.com>
7386 L:      netdev@vger.kernel.org
7387 S:      Maintained
7388 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7389 F:      drivers/net/ethernet/freescale/fman
7390
7391 FREESCALE QORIQ PTP CLOCK DRIVER
7392 M:      Yangbo Lu <yangbo.lu@nxp.com>
7393 L:      netdev@vger.kernel.org
7394 S:      Maintained
7395 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7396 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7397 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7398 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7399 F:      drivers/ptp/ptp_qoriq.c
7400 F:      drivers/ptp/ptp_qoriq_debugfs.c
7401 F:      include/linux/fsl/ptp_qoriq.h
7402
7403 FREESCALE QUAD SPI DRIVER
7404 M:      Han Xu <han.xu@nxp.com>
7405 L:      linux-spi@vger.kernel.org
7406 S:      Maintained
7407 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7408 F:      drivers/spi/spi-fsl-qspi.c
7409
7410 FREESCALE QUICC ENGINE LIBRARY
7411 M:      Qiang Zhao <qiang.zhao@nxp.com>
7412 L:      linuxppc-dev@lists.ozlabs.org
7413 S:      Maintained
7414 F:      drivers/soc/fsl/qe/
7415 F:      include/soc/fsl/*qe*.h
7416 F:      include/soc/fsl/*ucc*.h
7417
7418 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7419 M:      Li Yang <leoyang.li@nxp.com>
7420 L:      netdev@vger.kernel.org
7421 L:      linuxppc-dev@lists.ozlabs.org
7422 S:      Maintained
7423 F:      drivers/net/ethernet/freescale/ucc_geth*
7424
7425 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7426 M:      Zhao Qiang <qiang.zhao@nxp.com>
7427 L:      netdev@vger.kernel.org
7428 L:      linuxppc-dev@lists.ozlabs.org
7429 S:      Maintained
7430 F:      drivers/net/wan/fsl_ucc_hdlc*
7431
7432 FREESCALE QUICC ENGINE UCC UART DRIVER
7433 M:      Timur Tabi <timur@kernel.org>
7434 L:      linuxppc-dev@lists.ozlabs.org
7435 S:      Maintained
7436 F:      drivers/tty/serial/ucc_uart.c
7437
7438 FREESCALE SOC DRIVERS
7439 M:      Li Yang <leoyang.li@nxp.com>
7440 L:      linuxppc-dev@lists.ozlabs.org
7441 L:      linux-arm-kernel@lists.infradead.org
7442 S:      Maintained
7443 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7444 F:      Documentation/devicetree/bindings/soc/fsl/
7445 F:      drivers/soc/fsl/
7446 F:      include/linux/fsl/
7447
7448 FREESCALE SOC FS_ENET DRIVER
7449 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7450 L:      linuxppc-dev@lists.ozlabs.org
7451 L:      netdev@vger.kernel.org
7452 S:      Maintained
7453 F:      drivers/net/ethernet/freescale/fs_enet/
7454 F:      include/linux/fs_enet_pd.h
7455
7456 FREESCALE SOC SOUND DRIVERS
7457 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7458 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7459 R:      Fabio Estevam <festevam@gmail.com>
7460 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7461 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7462 L:      linuxppc-dev@lists.ozlabs.org
7463 S:      Maintained
7464 F:      sound/soc/fsl/fsl*
7465 F:      sound/soc/fsl/imx*
7466 F:      sound/soc/fsl/mpc8610_hpcd.c
7467
7468 FREESCALE USB PERIPHERAL DRIVERS
7469 M:      Li Yang <leoyang.li@nxp.com>
7470 L:      linux-usb@vger.kernel.org
7471 L:      linuxppc-dev@lists.ozlabs.org
7472 S:      Maintained
7473 F:      drivers/usb/gadget/udc/fsl*
7474
7475 FREESCALE USB PHY DRIVER
7476 M:      Ran Wang <ran.wang_1@nxp.com>
7477 L:      linux-usb@vger.kernel.org
7478 L:      linuxppc-dev@lists.ozlabs.org
7479 S:      Maintained
7480 F:      drivers/usb/phy/phy-fsl-usb*
7481
7482 FREEVXFS FILESYSTEM
7483 M:      Christoph Hellwig <hch@infradead.org>
7484 S:      Maintained
7485 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7486 F:      fs/freevxfs/
7487
7488 FREEZER
7489 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7490 M:      Pavel Machek <pavel@ucw.cz>
7491 L:      linux-pm@vger.kernel.org
7492 S:      Supported
7493 F:      Documentation/power/freezing-of-tasks.rst
7494 F:      include/linux/freezer.h
7495 F:      kernel/freezer.c
7496
7497 FRONTSWAP API
7498 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7499 L:      linux-kernel@vger.kernel.org
7500 S:      Maintained
7501 F:      include/linux/frontswap.h
7502 F:      mm/frontswap.c
7503
7504 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7505 M:      David Howells <dhowells@redhat.com>
7506 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7507 S:      Supported
7508 F:      Documentation/filesystems/caching/
7509 F:      fs/fscache/
7510 F:      include/linux/fscache*.h
7511
7512 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7513 M:      Theodore Y. Ts'o <tytso@mit.edu>
7514 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7515 M:      Eric Biggers <ebiggers@kernel.org>
7516 L:      linux-fscrypt@vger.kernel.org
7517 S:      Supported
7518 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7519 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7520 F:      Documentation/filesystems/fscrypt.rst
7521 F:      fs/crypto/
7522 F:      include/linux/fscrypt*.h
7523 F:      include/uapi/linux/fscrypt.h
7524
7525 FSI SUBSYSTEM
7526 M:      Jeremy Kerr <jk@ozlabs.org>
7527 M:      Joel Stanley <joel@jms.id.au>
7528 R:      Alistar Popple <alistair@popple.id.au>
7529 R:      Eddie James <eajames@linux.ibm.com>
7530 L:      linux-fsi@lists.ozlabs.org
7531 S:      Supported
7532 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7534 F:      drivers/fsi/
7535 F:      include/linux/fsi*.h
7536 F:      include/trace/events/fsi*.h
7537
7538 FSI-ATTACHED I2C DRIVER
7539 M:      Eddie James <eajames@linux.ibm.com>
7540 L:      linux-i2c@vger.kernel.org
7541 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7542 S:      Maintained
7543 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7544 F:      drivers/i2c/busses/i2c-fsi.c
7545
7546 FSI-ATTACHED SPI DRIVER
7547 M:      Eddie James <eajames@linux.ibm.com>
7548 L:      linux-spi@vger.kernel.org
7549 S:      Maintained
7550 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7551 F:      drivers/spi/spi-fsi.c
7552
7553 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7554 M:      Jan Kara <jack@suse.cz>
7555 R:      Amir Goldstein <amir73il@gmail.com>
7556 L:      linux-fsdevel@vger.kernel.org
7557 S:      Maintained
7558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7559 F:      fs/notify/
7560 F:      include/linux/fsnotify*.h
7561
7562 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7563 M:      Eric Biggers <ebiggers@kernel.org>
7564 M:      Theodore Y. Ts'o <tytso@mit.edu>
7565 L:      linux-fscrypt@vger.kernel.org
7566 S:      Supported
7567 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7568 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7569 F:      Documentation/filesystems/fsverity.rst
7570 F:      fs/verity/
7571 F:      include/linux/fsverity.h
7572 F:      include/uapi/linux/fsverity.h
7573
7574 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7575 M:      Michael Zaidman <michael.zaidman@gmail.com>
7576 L:      linux-i2c@vger.kernel.org
7577 L:      linux-input@vger.kernel.org
7578 S:      Maintained
7579 F:      drivers/hid/hid-ft260.c
7580
7581 FUJITSU LAPTOP EXTRAS
7582 M:      Jonathan Woithe <jwoithe@just42.net>
7583 L:      platform-driver-x86@vger.kernel.org
7584 S:      Maintained
7585 F:      drivers/platform/x86/fujitsu-laptop.c
7586
7587 FUJITSU M-5MO LS CAMERA ISP DRIVER
7588 M:      Kyungmin Park <kyungmin.park@samsung.com>
7589 M:      Heungjun Kim <riverful.kim@samsung.com>
7590 L:      linux-media@vger.kernel.org
7591 S:      Maintained
7592 F:      drivers/media/i2c/m5mols/
7593 F:      include/media/i2c/m5mols.h
7594
7595 FUJITSU TABLET EXTRAS
7596 M:      Robert Gerlach <khnz@gmx.de>
7597 L:      platform-driver-x86@vger.kernel.org
7598 S:      Maintained
7599 F:      drivers/platform/x86/fujitsu-tablet.c
7600
7601 FUSE: FILESYSTEM IN USERSPACE
7602 M:      Miklos Szeredi <miklos@szeredi.hu>
7603 L:      linux-fsdevel@vger.kernel.org
7604 S:      Maintained
7605 W:      https://github.com/libfuse/
7606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7607 F:      Documentation/filesystems/fuse.rst
7608 F:      fs/fuse/
7609 F:      include/uapi/linux/fuse.h
7610
7611 FUTEX SUBSYSTEM
7612 M:      Thomas Gleixner <tglx@linutronix.de>
7613 M:      Ingo Molnar <mingo@redhat.com>
7614 R:      Peter Zijlstra <peterz@infradead.org>
7615 R:      Darren Hart <dvhart@infradead.org>
7616 R:      Davidlohr Bueso <dave@stgolabs.net>
7617 L:      linux-kernel@vger.kernel.org
7618 S:      Maintained
7619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7620 F:      Documentation/locking/*futex*
7621 F:      include/asm-generic/futex.h
7622 F:      include/linux/futex.h
7623 F:      include/uapi/linux/futex.h
7624 F:      kernel/futex.c
7625 F:      tools/perf/bench/futex*
7626 F:      tools/testing/selftests/futex/
7627
7628 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7629 M:      Tim Harvey <tharvey@gateworks.com>
7630 M:      Robert Jones <rjones@gateworks.com>
7631 S:      Maintained
7632 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7633 F:      drivers/mfd/gateworks-gsc.c
7634 F:      include/linux/mfd/gsc.h
7635 F:      Documentation/hwmon/gsc-hwmon.rst
7636 F:      drivers/hwmon/gsc-hwmon.c
7637 F:      include/linux/platform_data/gsc_hwmon.h
7638
7639 GCC PLUGINS
7640 M:      Kees Cook <keescook@chromium.org>
7641 L:      linux-hardening@vger.kernel.org
7642 S:      Maintained
7643 F:      Documentation/kbuild/gcc-plugins.rst
7644 F:      scripts/Makefile.gcc-plugins
7645 F:      scripts/gcc-plugins/
7646
7647 GCOV BASED KERNEL PROFILING
7648 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7649 S:      Maintained
7650 F:      Documentation/dev-tools/gcov.rst
7651 F:      kernel/gcov/
7652
7653 GDB KERNEL DEBUGGING HELPER SCRIPTS
7654 M:      Jan Kiszka <jan.kiszka@siemens.com>
7655 M:      Kieran Bingham <kbingham@kernel.org>
7656 S:      Supported
7657 F:      scripts/gdb/
7658
7659 GEMINI CRYPTO DRIVER
7660 M:      Corentin Labbe <clabbe@baylibre.com>
7661 L:      linux-crypto@vger.kernel.org
7662 S:      Maintained
7663 F:      drivers/crypto/gemini/
7664
7665 GEMTEK FM RADIO RECEIVER DRIVER
7666 M:      Hans Verkuil <hverkuil@xs4all.nl>
7667 L:      linux-media@vger.kernel.org
7668 S:      Maintained
7669 W:      https://linuxtv.org
7670 T:      git git://linuxtv.org/media_tree.git
7671 F:      drivers/media/radio/radio-gemtek*
7672
7673 GENERIC ARCHITECTURE TOPOLOGY
7674 M:      Sudeep Holla <sudeep.holla@arm.com>
7675 L:      linux-kernel@vger.kernel.org
7676 S:      Maintained
7677 F:      drivers/base/arch_topology.c
7678 F:      include/linux/arch_topology.h
7679
7680 GENERIC ENTRY CODE
7681 M:      Thomas Gleixner <tglx@linutronix.de>
7682 M:      Peter Zijlstra <peterz@infradead.org>
7683 M:      Andy Lutomirski <luto@kernel.org>
7684 L:      linux-kernel@vger.kernel.org
7685 S:      Maintained
7686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7687 F:      include/linux/entry-common.h
7688 F:      include/linux/entry-kvm.h
7689 F:      kernel/entry/
7690
7691 GENERIC GPIO I2C DRIVER
7692 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7693 S:      Supported
7694 F:      drivers/i2c/busses/i2c-gpio.c
7695 F:      include/linux/platform_data/i2c-gpio.h
7696
7697 GENERIC GPIO I2C MULTIPLEXER DRIVER
7698 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7699 L:      linux-i2c@vger.kernel.org
7700 S:      Supported
7701 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7702 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7703 F:      include/linux/platform_data/i2c-mux-gpio.h
7704
7705 GENERIC HDLC (WAN) DRIVERS
7706 M:      Krzysztof Halasa <khc@pm.waw.pl>
7707 S:      Maintained
7708 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7709 F:      drivers/net/wan/c101.c
7710 F:      drivers/net/wan/hd6457*
7711 F:      drivers/net/wan/hdlc*
7712 F:      drivers/net/wan/n2.c
7713 F:      drivers/net/wan/pc300too.c
7714 F:      drivers/net/wan/pci200syn.c
7715 F:      drivers/net/wan/wanxl*
7716
7717 GENERIC INCLUDE/ASM HEADER FILES
7718 M:      Arnd Bergmann <arnd@arndb.de>
7719 L:      linux-arch@vger.kernel.org
7720 S:      Maintained
7721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7722 F:      include/asm-generic/
7723 F:      include/uapi/asm-generic/
7724
7725 GENERIC PHY FRAMEWORK
7726 M:      Kishon Vijay Abraham I <kishon@ti.com>
7727 M:      Vinod Koul <vkoul@kernel.org>
7728 L:      linux-phy@lists.infradead.org
7729 S:      Supported
7730 Q:      https://patchwork.kernel.org/project/linux-phy/list/
7731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7732 F:      Documentation/devicetree/bindings/phy/
7733 F:      drivers/phy/
7734 F:      include/linux/phy/
7735
7736 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7737 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7738 S:      Supported
7739 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7740
7741 GENERIC PM DOMAINS
7742 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7743 M:      Kevin Hilman <khilman@kernel.org>
7744 M:      Ulf Hansson <ulf.hansson@linaro.org>
7745 L:      linux-pm@vger.kernel.org
7746 S:      Supported
7747 F:      Documentation/devicetree/bindings/power/power?domain*
7748 F:      drivers/base/power/domain*.c
7749 F:      include/linux/pm_domain.h
7750
7751 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7752 M:      Eugen Hristev <eugen.hristev@microchip.com>
7753 L:      linux-input@vger.kernel.org
7754 S:      Maintained
7755 F:      drivers/input/touchscreen/resistive-adc-touch.c
7756
7757 GENERIC STRING LIBRARY
7758 R:      Andy Shevchenko <andy@kernel.org>
7759 S:      Maintained
7760 F:      lib/string.c
7761 F:      lib/string_helpers.c
7762 F:      lib/test_string.c
7763 F:      lib/test-string_helpers.c
7764
7765 GENERIC UIO DRIVER FOR PCI DEVICES
7766 M:      "Michael S. Tsirkin" <mst@redhat.com>
7767 L:      kvm@vger.kernel.org
7768 S:      Supported
7769 F:      drivers/uio/uio_pci_generic.c
7770
7771 GENERIC VDSO LIBRARY
7772 M:      Andy Lutomirski <luto@kernel.org>
7773 M:      Thomas Gleixner <tglx@linutronix.de>
7774 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7775 L:      linux-kernel@vger.kernel.org
7776 S:      Maintained
7777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7778 F:      include/asm-generic/vdso/vsyscall.h
7779 F:      include/vdso/
7780 F:      kernel/time/vsyscall.c
7781 F:      lib/vdso/
7782
7783 GENWQE (IBM Generic Workqueue Card)
7784 M:      Frank Haverkamp <haver@linux.ibm.com>
7785 S:      Supported
7786 F:      drivers/misc/genwqe/
7787
7788 GET_MAINTAINER SCRIPT
7789 M:      Joe Perches <joe@perches.com>
7790 S:      Maintained
7791 F:      scripts/get_maintainer.pl
7792
7793 GFS2 FILE SYSTEM
7794 M:      Bob Peterson <rpeterso@redhat.com>
7795 M:      Andreas Gruenbacher <agruenba@redhat.com>
7796 L:      cluster-devel@redhat.com
7797 S:      Supported
7798 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
7799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7800 F:      Documentation/filesystems/gfs2*
7801 F:      fs/gfs2/
7802 F:      include/uapi/linux/gfs2_ondisk.h
7803
7804 GIGABYTE WMI DRIVER
7805 M:      Thomas Weißschuh <thomas@weissschuh.net>
7806 L:      platform-driver-x86@vger.kernel.org
7807 S:      Maintained
7808 F:      drivers/platform/x86/gigabyte-wmi.c
7809
7810 GNSS SUBSYSTEM
7811 M:      Johan Hovold <johan@kernel.org>
7812 S:      Maintained
7813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7814 F:      Documentation/ABI/testing/sysfs-class-gnss
7815 F:      Documentation/devicetree/bindings/gnss/
7816 F:      drivers/gnss/
7817 F:      include/linux/gnss.h
7818
7819 GO7007 MPEG CODEC
7820 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7821 L:      linux-media@vger.kernel.org
7822 S:      Maintained
7823 F:      drivers/media/usb/go7007/
7824
7825 GOODIX TOUCHSCREEN
7826 M:      Bastien Nocera <hadess@hadess.net>
7827 L:      linux-input@vger.kernel.org
7828 S:      Maintained
7829 F:      drivers/input/touchscreen/goodix.c
7830
7831 GOOGLE ETHERNET DRIVERS
7832 M:      Catherine Sullivan <csully@google.com>
7833 R:      Sagi Shahar <sagis@google.com>
7834 R:      Jon Olson <jonolson@google.com>
7835 L:      netdev@vger.kernel.org
7836 S:      Supported
7837 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
7838 F:      drivers/net/ethernet/google
7839
7840 GPD POCKET FAN DRIVER
7841 M:      Hans de Goede <hdegoede@redhat.com>
7842 L:      platform-driver-x86@vger.kernel.org
7843 S:      Maintained
7844 F:      drivers/platform/x86/gpd-pocket-fan.c
7845
7846 GPIO ACPI SUPPORT
7847 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7848 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7849 L:      linux-gpio@vger.kernel.org
7850 L:      linux-acpi@vger.kernel.org
7851 S:      Maintained
7852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
7853 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7854 F:      drivers/gpio/gpiolib-acpi.c
7855 F:      drivers/gpio/gpiolib-acpi.h
7856
7857 GPIO AGGREGATOR
7858 M:      Geert Uytterhoeven <geert+renesas@glider.be>
7859 L:      linux-gpio@vger.kernel.org
7860 S:      Supported
7861 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7862 F:      drivers/gpio/gpio-aggregator.c
7863
7864 GPIO IR Transmitter
7865 M:      Sean Young <sean@mess.org>
7866 L:      linux-media@vger.kernel.org
7867 S:      Maintained
7868 F:      drivers/media/rc/gpio-ir-tx.c
7869
7870 GPIO MOCKUP DRIVER
7871 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7872 L:      linux-gpio@vger.kernel.org
7873 S:      Maintained
7874 F:      drivers/gpio/gpio-mockup.c
7875 F:      tools/testing/selftests/gpio/
7876
7877 GPIO REGMAP
7878 R:      Michael Walle <michael@walle.cc>
7879 S:      Maintained
7880 F:      drivers/gpio/gpio-regmap.c
7881 F:      include/linux/gpio/regmap.h
7882
7883 GPIO SUBSYSTEM
7884 M:      Linus Walleij <linus.walleij@linaro.org>
7885 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7886 L:      linux-gpio@vger.kernel.org
7887 S:      Maintained
7888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7889 F:      Documentation/ABI/obsolete/sysfs-gpio
7890 F:      Documentation/ABI/testing/gpio-cdev
7891 F:      Documentation/admin-guide/gpio/
7892 F:      Documentation/devicetree/bindings/gpio/
7893 F:      Documentation/driver-api/gpio/
7894 F:      drivers/gpio/
7895 F:      include/asm-generic/gpio.h
7896 F:      include/linux/gpio.h
7897 F:      include/linux/gpio/
7898 F:      include/linux/of_gpio.h
7899 F:      include/uapi/linux/gpio.h
7900 F:      tools/gpio/
7901
7902 GRE DEMULTIPLEXER DRIVER
7903 M:      Dmitry Kozlov <xeb@mail.ru>
7904 L:      netdev@vger.kernel.org
7905 S:      Maintained
7906 F:      include/net/gre.h
7907 F:      net/ipv4/gre_demux.c
7908 F:      net/ipv4/gre_offload.c
7909
7910 GRETH 10/100/1G Ethernet MAC device driver
7911 M:      Andreas Larsson <andreas@gaisler.com>
7912 L:      netdev@vger.kernel.org
7913 S:      Maintained
7914 F:      drivers/net/ethernet/aeroflex/
7915
7916 GREYBUS AUDIO PROTOCOLS DRIVERS
7917 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7918 M:      Mark Greer <mgreer@animalcreek.com>
7919 S:      Maintained
7920 F:      drivers/staging/greybus/audio_apbridgea.c
7921 F:      drivers/staging/greybus/audio_apbridgea.h
7922 F:      drivers/staging/greybus/audio_codec.c
7923 F:      drivers/staging/greybus/audio_codec.h
7924 F:      drivers/staging/greybus/audio_gb.c
7925 F:      drivers/staging/greybus/audio_manager.c
7926 F:      drivers/staging/greybus/audio_manager.h
7927 F:      drivers/staging/greybus/audio_manager_module.c
7928 F:      drivers/staging/greybus/audio_manager_private.h
7929 F:      drivers/staging/greybus/audio_manager_sysfs.c
7930 F:      drivers/staging/greybus/audio_module.c
7931 F:      drivers/staging/greybus/audio_topology.c
7932
7933 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7934 M:      Viresh Kumar <vireshk@kernel.org>
7935 S:      Maintained
7936 F:      drivers/staging/greybus/authentication.c
7937 F:      drivers/staging/greybus/bootrom.c
7938 F:      drivers/staging/greybus/firmware.h
7939 F:      drivers/staging/greybus/fw-core.c
7940 F:      drivers/staging/greybus/fw-download.c
7941 F:      drivers/staging/greybus/fw-management.c
7942 F:      drivers/staging/greybus/greybus_authentication.h
7943 F:      drivers/staging/greybus/greybus_firmware.h
7944 F:      drivers/staging/greybus/hid.c
7945 F:      drivers/staging/greybus/i2c.c
7946 F:      drivers/staging/greybus/spi.c
7947 F:      drivers/staging/greybus/spilib.c
7948 F:      drivers/staging/greybus/spilib.h
7949
7950 GREYBUS LOOPBACK DRIVER
7951 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7952 S:      Maintained
7953 F:      drivers/staging/greybus/loopback.c
7954
7955 GREYBUS PLATFORM DRIVERS
7956 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7957 S:      Maintained
7958 F:      drivers/staging/greybus/arche-apb-ctrl.c
7959 F:      drivers/staging/greybus/arche-platform.c
7960 F:      drivers/staging/greybus/arche_platform.h
7961
7962 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7963 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7964 S:      Maintained
7965 F:      drivers/staging/greybus/gpio.c
7966 F:      drivers/staging/greybus/light.c
7967 F:      drivers/staging/greybus/power_supply.c
7968 F:      drivers/staging/greybus/sdio.c
7969 F:      drivers/staging/greybus/spi.c
7970 F:      drivers/staging/greybus/spilib.c
7971
7972 GREYBUS SUBSYSTEM
7973 M:      Johan Hovold <johan@kernel.org>
7974 M:      Alex Elder <elder@kernel.org>
7975 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7976 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7977 S:      Maintained
7978 F:      drivers/greybus/
7979 F:      drivers/staging/greybus/
7980 F:      include/linux/greybus.h
7981 F:      include/linux/greybus/
7982
7983 GREYBUS UART PROTOCOLS DRIVERS
7984 M:      David Lin <dtwlin@gmail.com>
7985 S:      Maintained
7986 F:      drivers/staging/greybus/log.c
7987 F:      drivers/staging/greybus/uart.c
7988
7989 GS1662 VIDEO SERIALIZER
7990 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7991 L:      linux-media@vger.kernel.org
7992 S:      Maintained
7993 T:      git git://linuxtv.org/media_tree.git
7994 F:      drivers/media/spi/gs1662.c
7995
7996 GSPCA FINEPIX SUBDRIVER
7997 M:      Frank Zago <frank@zago.net>
7998 L:      linux-media@vger.kernel.org
7999 S:      Maintained
8000 T:      git git://linuxtv.org/media_tree.git
8001 F:      drivers/media/usb/gspca/finepix.c
8002
8003 GSPCA GL860 SUBDRIVER
8004 M:      Olivier Lorin <o.lorin@laposte.net>
8005 L:      linux-media@vger.kernel.org
8006 S:      Maintained
8007 T:      git git://linuxtv.org/media_tree.git
8008 F:      drivers/media/usb/gspca/gl860/
8009
8010 GSPCA M5602 SUBDRIVER
8011 M:      Erik Andren <erik.andren@gmail.com>
8012 L:      linux-media@vger.kernel.org
8013 S:      Maintained
8014 T:      git git://linuxtv.org/media_tree.git
8015 F:      drivers/media/usb/gspca/m5602/
8016
8017 GSPCA PAC207 SONIXB SUBDRIVER
8018 M:      Hans Verkuil <hverkuil@xs4all.nl>
8019 L:      linux-media@vger.kernel.org
8020 S:      Odd Fixes
8021 T:      git git://linuxtv.org/media_tree.git
8022 F:      drivers/media/usb/gspca/pac207.c
8023
8024 GSPCA SN9C20X SUBDRIVER
8025 M:      Brian Johnson <brijohn@gmail.com>
8026 L:      linux-media@vger.kernel.org
8027 S:      Maintained
8028 T:      git git://linuxtv.org/media_tree.git
8029 F:      drivers/media/usb/gspca/sn9c20x.c
8030
8031 GSPCA T613 SUBDRIVER
8032 M:      Leandro Costantino <lcostantino@gmail.com>
8033 L:      linux-media@vger.kernel.org
8034 S:      Maintained
8035 T:      git git://linuxtv.org/media_tree.git
8036 F:      drivers/media/usb/gspca/t613.c
8037
8038 GSPCA USB WEBCAM DRIVER
8039 M:      Hans Verkuil <hverkuil@xs4all.nl>
8040 L:      linux-media@vger.kernel.org
8041 S:      Odd Fixes
8042 T:      git git://linuxtv.org/media_tree.git
8043 F:      drivers/media/usb/gspca/
8044
8045 GTP (GPRS Tunneling Protocol)
8046 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8047 M:      Harald Welte <laforge@gnumonks.org>
8048 L:      osmocom-net-gprs@lists.osmocom.org
8049 S:      Maintained
8050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8051 F:      drivers/net/gtp.c
8052
8053 GUID PARTITION TABLE (GPT)
8054 M:      Davidlohr Bueso <dave@stgolabs.net>
8055 L:      linux-efi@vger.kernel.org
8056 S:      Maintained
8057 F:      block/partitions/efi.*
8058
8059 H8/300 ARCHITECTURE
8060 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
8061 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8062 S:      Maintained
8063 W:      http://uclinux-h8.sourceforge.jp
8064 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8065 F:      arch/h8300/
8066 F:      drivers/clk/h8300/
8067 F:      drivers/clocksource/h8300_*.c
8068 F:      drivers/irqchip/irq-renesas-h8*.c
8069
8070 HABANALABS PCI DRIVER
8071 M:      Oded Gabbay <ogabbay@kernel.org>
8072 S:      Supported
8073 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8074 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8075 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8076 F:      drivers/misc/habanalabs/
8077 F:      include/uapi/misc/habanalabs.h
8078
8079 HACKRF MEDIA DRIVER
8080 M:      Antti Palosaari <crope@iki.fi>
8081 L:      linux-media@vger.kernel.org
8082 S:      Maintained
8083 W:      https://linuxtv.org
8084 W:      http://palosaari.fi/linux/
8085 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8086 T:      git git://linuxtv.org/anttip/media_tree.git
8087 F:      drivers/media/usb/hackrf/
8088
8089 HANTRO VPU CODEC DRIVER
8090 M:      Ezequiel Garcia <ezequiel@collabora.com>
8091 M:      Philipp Zabel <p.zabel@pengutronix.de>
8092 L:      linux-media@vger.kernel.org
8093 L:      linux-rockchip@lists.infradead.org
8094 S:      Maintained
8095 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8096 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8097 F:      drivers/staging/media/hantro/
8098
8099 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8100 M:      Frank Seidel <frank@f-seidel.de>
8101 L:      platform-driver-x86@vger.kernel.org
8102 S:      Maintained
8103 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8104 F:      drivers/platform/x86/hdaps.c
8105
8106 HARDWARE MONITORING
8107 M:      Jean Delvare <jdelvare@suse.com>
8108 M:      Guenter Roeck <linux@roeck-us.net>
8109 L:      linux-hwmon@vger.kernel.org
8110 S:      Maintained
8111 W:      http://hwmon.wiki.kernel.org/
8112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8113 F:      Documentation/devicetree/bindings/hwmon/
8114 F:      Documentation/hwmon/
8115 F:      drivers/hwmon/
8116 F:      include/linux/hwmon*.h
8117 F:      include/trace/events/hwmon*.h
8118 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8119
8120 HARDWARE RANDOM NUMBER GENERATOR CORE
8121 M:      Matt Mackall <mpm@selenic.com>
8122 M:      Herbert Xu <herbert@gondor.apana.org.au>
8123 L:      linux-crypto@vger.kernel.org
8124 S:      Odd fixes
8125 F:      Documentation/admin-guide/hw_random.rst
8126 F:      Documentation/devicetree/bindings/rng/
8127 F:      drivers/char/hw_random/
8128 F:      include/linux/hw_random.h
8129
8130 HARDWARE SPINLOCK CORE
8131 M:      Ohad Ben-Cohen <ohad@wizery.com>
8132 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8133 R:      Baolin Wang <baolin.wang7@gmail.com>
8134 L:      linux-remoteproc@vger.kernel.org
8135 S:      Maintained
8136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8137 F:      Documentation/devicetree/bindings/hwlock/
8138 F:      Documentation/locking/hwspinlock.rst
8139 F:      drivers/hwspinlock/
8140 F:      include/linux/hwspinlock.h
8141
8142 HARDWARE TRACING FACILITIES
8143 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8144 S:      Maintained
8145 F:      drivers/hwtracing/
8146
8147 HARMONY SOUND DRIVER
8148 L:      linux-parisc@vger.kernel.org
8149 S:      Maintained
8150 F:      sound/parisc/harmony.*
8151
8152 HDPVR USB VIDEO ENCODER DRIVER
8153 M:      Hans Verkuil <hverkuil@xs4all.nl>
8154 L:      linux-media@vger.kernel.org
8155 S:      Odd Fixes
8156 W:      https://linuxtv.org
8157 T:      git git://linuxtv.org/media_tree.git
8158 F:      drivers/media/usb/hdpvr/
8159
8160 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8161 M:      Matt Hsiao <matt.hsiao@hpe.com>
8162 S:      Supported
8163 F:      drivers/misc/hpilo.[ch]
8164
8165 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8166 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8167 S:      Supported
8168 F:      Documentation/watchdog/hpwdt.rst
8169 F:      drivers/watchdog/hpwdt.c
8170
8171 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8172 M:      Don Brace <don.brace@microchip.com>
8173 L:      storagedev@microchip.com
8174 L:      linux-scsi@vger.kernel.org
8175 S:      Supported
8176 F:      Documentation/scsi/hpsa.rst
8177 F:      drivers/scsi/hpsa*.[ch]
8178 F:      include/linux/cciss*.h
8179 F:      include/uapi/linux/cciss*.h
8180
8181 HFI1 DRIVER
8182 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8183 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8184 L:      linux-rdma@vger.kernel.org
8185 S:      Supported
8186 F:      drivers/infiniband/hw/hfi1
8187
8188 HFS FILESYSTEM
8189 L:      linux-fsdevel@vger.kernel.org
8190 S:      Orphan
8191 F:      Documentation/filesystems/hfs.rst
8192 F:      fs/hfs/
8193
8194 HFSPLUS FILESYSTEM
8195 L:      linux-fsdevel@vger.kernel.org
8196 S:      Orphan
8197 F:      Documentation/filesystems/hfsplus.rst
8198 F:      fs/hfsplus/
8199
8200 HGA FRAMEBUFFER DRIVER
8201 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8202 L:      linux-nvidia@lists.surfsouth.com
8203 S:      Maintained
8204 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8205 F:      drivers/video/fbdev/hgafb.c
8206
8207 HIBERNATION (aka Software Suspend, aka swsusp)
8208 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
8209 M:      Pavel Machek <pavel@ucw.cz>
8210 L:      linux-pm@vger.kernel.org
8211 S:      Supported
8212 B:      https://bugzilla.kernel.org
8213 F:      arch/*/include/asm/suspend*.h
8214 F:      arch/x86/power/
8215 F:      drivers/base/power/
8216 F:      include/linux/freezer.h
8217 F:      include/linux/pm.h
8218 F:      include/linux/suspend.h
8219 F:      kernel/power/
8220
8221 HID CORE LAYER
8222 M:      Jiri Kosina <jikos@kernel.org>
8223 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8224 L:      linux-input@vger.kernel.org
8225 S:      Maintained
8226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8227 F:      drivers/hid/
8228 F:      include/linux/hid*
8229 F:      include/uapi/linux/hid*
8230
8231 HID PLAYSTATION DRIVER
8232 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8233 L:      linux-input@vger.kernel.org
8234 S:      Supported
8235 F:      drivers/hid/hid-playstation.c
8236
8237 HID SENSOR HUB DRIVERS
8238 M:      Jiri Kosina <jikos@kernel.org>
8239 M:      Jonathan Cameron <jic23@kernel.org>
8240 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8241 L:      linux-input@vger.kernel.org
8242 L:      linux-iio@vger.kernel.org
8243 S:      Maintained
8244 F:      Documentation/hid/hid-sensor*
8245 F:      drivers/hid/hid-sensor-*
8246 F:      drivers/iio/*/hid-*
8247 F:      include/linux/hid-sensor-*
8248
8249 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8250 M:      Thomas Gleixner <tglx@linutronix.de>
8251 L:      linux-kernel@vger.kernel.org
8252 S:      Maintained
8253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8254 F:      Documentation/timers/
8255 F:      include/linux/clockchips.h
8256 F:      include/linux/hrtimer.h
8257 F:      kernel/time/clockevents.c
8258 F:      kernel/time/hrtimer.c
8259 F:      kernel/time/timer_*.c
8260
8261 HIGH-SPEED SCC DRIVER FOR AX.25
8262 L:      linux-hams@vger.kernel.org
8263 S:      Orphan
8264 F:      drivers/net/hamradio/dmascc.c
8265 F:      drivers/net/hamradio/scc.c
8266
8267 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8268 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8269 S:      Supported
8270 W:      http://www.highpoint-tech.com
8271 F:      Documentation/scsi/hptiop.rst
8272 F:      drivers/scsi/hptiop.c
8273
8274 HIPPI
8275 M:      Jes Sorensen <jes@trained-monkey.org>
8276 L:      linux-hippi@sunsite.dk
8277 S:      Maintained
8278 F:      drivers/net/hippi/
8279 F:      include/linux/hippidevice.h
8280 F:      include/uapi/linux/if_hippi.h
8281 F:      net/802/hippi.c
8282
8283 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8284 M:      Kurt Kanzenbach <kurt@linutronix.de>
8285 L:      netdev@vger.kernel.org
8286 S:      Maintained
8287 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8288 F:      drivers/net/dsa/hirschmann/*
8289 F:      include/linux/platform_data/hirschmann-hellcreek.h
8290 F:      net/dsa/tag_hellcreek.c
8291
8292 HISILICON DMA DRIVER
8293 M:      Zhou Wang <wangzhou1@hisilicon.com>
8294 L:      dmaengine@vger.kernel.org
8295 S:      Maintained
8296 F:      drivers/dma/hisi_dma.c
8297
8298 HISILICON GPIO DRIVER
8299 M:      Luo Jiaxing <luojiaxing@huawei.com>
8300 L:      linux-gpio@vger.kernel.org
8301 S:      Maintained
8302 F:      drivers/gpio/gpio-hisi.c
8303
8304 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8305 M:      Zaibo Xu <xuzaibo@huawei.com>
8306 L:      linux-crypto@vger.kernel.org
8307 S:      Maintained
8308 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8309 F:      drivers/crypto/hisilicon/hpre/hpre.h
8310 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8311 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8312
8313 HISILICON I2C CONTROLLER DRIVER
8314 M:      Yicong Yang <yangyicong@hisilicon.com>
8315 L:      linux-i2c@vger.kernel.org
8316 S:      Maintained
8317 W:      https://www.hisilicon.com
8318 F:      drivers/i2c/busses/i2c-hisi.c
8319
8320 HISILICON LPC BUS DRIVER
8321 M:      john.garry@huawei.com
8322 S:      Maintained
8323 W:      http://www.hisilicon.com
8324 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8325 F:      drivers/bus/hisi_lpc.c
8326
8327 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8328 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8329 M:      Salil Mehta <salil.mehta@huawei.com>
8330 L:      netdev@vger.kernel.org
8331 S:      Maintained
8332 W:      http://www.hisilicon.com
8333 F:      drivers/net/ethernet/hisilicon/hns3/
8334
8335 HISILICON NETWORK SUBSYSTEM DRIVER
8336 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8337 M:      Salil Mehta <salil.mehta@huawei.com>
8338 L:      netdev@vger.kernel.org
8339 S:      Maintained
8340 W:      http://www.hisilicon.com
8341 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8342 F:      drivers/net/ethernet/hisilicon/
8343
8344 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8345 M:      John Stultz <john.stultz@linaro.org>
8346 L:      linux-kernel@vger.kernel.org
8347 S:      Maintained
8348 F:      drivers/misc/hisi_hikey_usb.c
8349 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8350
8351 HISILICON PMU DRIVER
8352 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8353 S:      Supported
8354 W:      http://www.hisilicon.com
8355 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8356 F:      drivers/perf/hisilicon
8357
8358 HISILICON QM AND ZIP Controller DRIVER
8359 M:      Zhou Wang <wangzhou1@hisilicon.com>
8360 L:      linux-crypto@vger.kernel.org
8361 S:      Maintained
8362 F:      Documentation/ABI/testing/debugfs-hisi-zip
8363 F:      drivers/crypto/hisilicon/qm.c
8364 F:      drivers/crypto/hisilicon/qm.h
8365 F:      drivers/crypto/hisilicon/sgl.c
8366 F:      drivers/crypto/hisilicon/zip/
8367
8368 HISILICON ROCE DRIVER
8369 M:      Lijun Ou <oulijun@huawei.com>
8370 M:      Weihang Li <liweihang@huawei.com>
8371 L:      linux-rdma@vger.kernel.org
8372 S:      Maintained
8373 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8374 F:      drivers/infiniband/hw/hns/
8375
8376 HISILICON SAS Controller
8377 M:      John Garry <john.garry@huawei.com>
8378 S:      Supported
8379 W:      http://www.hisilicon.com
8380 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8381 F:      drivers/scsi/hisi_sas/
8382
8383 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8384 M:      Zaibo Xu <xuzaibo@huawei.com>
8385 L:      linux-crypto@vger.kernel.org
8386 S:      Maintained
8387 F:      Documentation/ABI/testing/debugfs-hisi-sec
8388 F:      drivers/crypto/hisilicon/sec2/sec.h
8389 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8390 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8391 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8392
8393 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8394 M:      Jay Fang <f.fangjian@huawei.com>
8395 L:      linux-spi@vger.kernel.org
8396 S:      Maintained
8397 W:      http://www.hisilicon.com
8398 F:      drivers/spi/spi-hisi-kunpeng.c
8399
8400 HISILICON STAGING DRIVERS FOR HIKEY 960/970
8401 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8402 S:      Maintained
8403 F:      drivers/staging/hikey9xx/
8404
8405 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8406 M:      Zaibo Xu <xuzaibo@huawei.com>
8407 S:      Maintained
8408 F:      drivers/crypto/hisilicon/trng/trng.c
8409
8410 HISILICON V3XX SPI NOR FLASH Controller Driver
8411 M:      John Garry <john.garry@huawei.com>
8412 S:      Maintained
8413 W:      http://www.hisilicon.com
8414 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8415
8416 HMM - Heterogeneous Memory Management
8417 M:      Jérôme Glisse <jglisse@redhat.com>
8418 L:      linux-mm@kvack.org
8419 S:      Maintained
8420 F:      Documentation/vm/hmm.rst
8421 F:      include/linux/hmm*
8422 F:      lib/test_hmm*
8423 F:      mm/hmm*
8424 F:      tools/testing/selftests/vm/*hmm*
8425
8426 HOST AP DRIVER
8427 M:      Jouni Malinen <j@w1.fi>
8428 L:      linux-wireless@vger.kernel.org
8429 S:      Obsolete
8430 W:      http://w1.fi/hostap-driver.html
8431 F:      drivers/net/wireless/intersil/hostap/
8432
8433 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8434 L:      platform-driver-x86@vger.kernel.org
8435 S:      Orphan
8436 F:      drivers/platform/x86/tc1100-wmi.c
8437
8438 HPET:   High Precision Event Timers driver
8439 M:      Clemens Ladisch <clemens@ladisch.de>
8440 S:      Maintained
8441 F:      Documentation/timers/hpet.rst
8442 F:      drivers/char/hpet.c
8443 F:      include/linux/hpet.h
8444 F:      include/uapi/linux/hpet.h
8445
8446 HPET:   x86
8447 S:      Orphan
8448 F:      arch/x86/include/asm/hpet.h
8449 F:      arch/x86/kernel/hpet.c
8450
8451 HPFS FILESYSTEM
8452 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8453 S:      Maintained
8454 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8455 F:      fs/hpfs/
8456
8457 HSI SUBSYSTEM
8458 M:      Sebastian Reichel <sre@kernel.org>
8459 S:      Maintained
8460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8461 F:      Documentation/ABI/testing/sysfs-bus-hsi
8462 F:      Documentation/driver-api/hsi.rst
8463 F:      drivers/hsi/
8464 F:      include/linux/hsi/
8465 F:      include/uapi/linux/hsi/
8466
8467 HSO 3G MODEM DRIVER
8468 L:      linux-usb@vger.kernel.org
8469 S:      Orphan
8470 F:      drivers/net/usb/hso.c
8471
8472 HSR NETWORK PROTOCOL
8473 L:      netdev@vger.kernel.org
8474 S:      Orphan
8475 F:      net/hsr/
8476
8477 HT16K33 LED CONTROLLER DRIVER
8478 M:      Robin van der Gracht <robin@protonic.nl>
8479 S:      Maintained
8480 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8481 F:      drivers/auxdisplay/ht16k33.c
8482
8483 HTCPEN TOUCHSCREEN DRIVER
8484 M:      Pau Oliva Fora <pof@eslack.org>
8485 L:      linux-input@vger.kernel.org
8486 S:      Maintained
8487 F:      drivers/input/touchscreen/htcpen.c
8488
8489 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8490 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8491 L:      linux-iio@vger.kernel.org
8492 S:      Maintained
8493 W:      http://www.st.com/
8494 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8495 F:      drivers/iio/humidity/hts221*
8496
8497 HUAWEI ETHERNET DRIVER
8498 M:      Bin Luo <luobin9@huawei.com>
8499 L:      netdev@vger.kernel.org
8500 S:      Supported
8501 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8502 F:      drivers/net/ethernet/huawei/hinic/
8503
8504 HUGETLB FILESYSTEM
8505 M:      Mike Kravetz <mike.kravetz@oracle.com>
8506 L:      linux-mm@kvack.org
8507 S:      Maintained
8508 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8509 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8510 F:      Documentation/vm/hugetlbfs_reserv.rst
8511 F:      fs/hugetlbfs/
8512 F:      include/linux/hugetlb.h
8513 F:      mm/hugetlb.c
8514
8515 HVA ST MEDIA DRIVER
8516 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8517 L:      linux-media@vger.kernel.org
8518 S:      Supported
8519 W:      https://linuxtv.org
8520 T:      git git://linuxtv.org/media_tree.git
8521 F:      drivers/media/platform/sti/hva
8522
8523 HWPOISON MEMORY FAILURE HANDLING
8524 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8525 L:      linux-mm@kvack.org
8526 S:      Maintained
8527 F:      mm/hwpoison-inject.c
8528 F:      mm/memory-failure.c
8529
8530 HYCON HY46XX TOUCHSCREEN SUPPORT
8531 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
8532 L:      linux-input@vger.kernel.org
8533 S:      Maintained
8534 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
8535 F:      drivers/input/touchscreen/hycon-hy46xx.c
8536
8537 HYGON PROCESSOR SUPPORT
8538 M:      Pu Wen <puwen@hygon.cn>
8539 L:      linux-kernel@vger.kernel.org
8540 S:      Maintained
8541 F:      arch/x86/kernel/cpu/hygon.c
8542
8543 HYNIX HI556 SENSOR DRIVER
8544 M:      Shawn Tu <shawnx.tu@intel.com>
8545 L:      linux-media@vger.kernel.org
8546 S:      Maintained
8547 T:      git git://linuxtv.org/media_tree.git
8548 F:      drivers/media/i2c/hi556.c
8549
8550 Hyper-V/Azure CORE AND DRIVERS
8551 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8552 M:      Haiyang Zhang <haiyangz@microsoft.com>
8553 M:      Stephen Hemminger <sthemmin@microsoft.com>
8554 M:      Wei Liu <wei.liu@kernel.org>
8555 M:      Dexuan Cui <decui@microsoft.com>
8556 L:      linux-hyperv@vger.kernel.org
8557 S:      Supported
8558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8559 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8560 F:      Documentation/ABI/testing/debugfs-hyperv
8561 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8562 F:      arch/x86/hyperv
8563 F:      arch/x86/include/asm/hyperv-tlfs.h
8564 F:      arch/x86/include/asm/mshyperv.h
8565 F:      arch/x86/include/asm/trace/hyperv.h
8566 F:      arch/x86/kernel/cpu/mshyperv.c
8567 F:      drivers/clocksource/hyperv_timer.c
8568 F:      drivers/hid/hid-hyperv.c
8569 F:      drivers/hv/
8570 F:      drivers/input/serio/hyperv-keyboard.c
8571 F:      drivers/iommu/hyperv-iommu.c
8572 F:      drivers/net/ethernet/microsoft/
8573 F:      drivers/net/hyperv/
8574 F:      drivers/pci/controller/pci-hyperv-intf.c
8575 F:      drivers/pci/controller/pci-hyperv.c
8576 F:      drivers/scsi/storvsc_drv.c
8577 F:      drivers/uio/uio_hv_generic.c
8578 F:      drivers/video/fbdev/hyperv_fb.c
8579 F:      include/asm-generic/hyperv-tlfs.h
8580 F:      include/asm-generic/mshyperv.h
8581 F:      include/clocksource/hyperv_timer.h
8582 F:      include/linux/hyperv.h
8583 F:      include/uapi/linux/hyperv.h
8584 F:      net/vmw_vsock/hyperv_transport.c
8585 F:      tools/hv/
8586
8587 HYPERBUS SUPPORT
8588 M:      Vignesh Raghavendra <vigneshr@ti.com>
8589 L:      linux-mtd@lists.infradead.org
8590 S:      Supported
8591 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8592 C:      irc://irc.oftc.net/mtd
8593 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8594 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8595 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8596 F:      drivers/mtd/hyperbus/
8597 F:      include/linux/mtd/hyperbus.h
8598
8599 HYPERVISOR VIRTUAL CONSOLE DRIVER
8600 L:      linuxppc-dev@lists.ozlabs.org
8601 S:      Odd Fixes
8602 F:      drivers/tty/hvc/
8603
8604 I2C ACPI SUPPORT
8605 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8606 L:      linux-i2c@vger.kernel.org
8607 L:      linux-acpi@vger.kernel.org
8608 S:      Maintained
8609 F:      drivers/i2c/i2c-core-acpi.c
8610
8611 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8612 M:      Ajay Gupta <ajayg@nvidia.com>
8613 L:      linux-i2c@vger.kernel.org
8614 S:      Maintained
8615 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8616 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8617
8618 I2C MUXES
8619 M:      Peter Rosin <peda@axentia.se>
8620 L:      linux-i2c@vger.kernel.org
8621 S:      Maintained
8622 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8623 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8624 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8625 F:      Documentation/i2c/i2c-topology.rst
8626 F:      Documentation/i2c/muxes/
8627 F:      drivers/i2c/i2c-mux.c
8628 F:      drivers/i2c/muxes/
8629 F:      include/linux/i2c-mux.h
8630
8631 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8632 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8633 L:      linux-i2c@vger.kernel.org
8634 S:      Maintained
8635 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8636 F:      drivers/i2c/busses/i2c-mv64xxx.c
8637
8638 I2C OVER PARALLEL PORT
8639 M:      Jean Delvare <jdelvare@suse.com>
8640 L:      linux-i2c@vger.kernel.org
8641 S:      Maintained
8642 F:      Documentation/i2c/busses/i2c-parport.rst
8643 F:      drivers/i2c/busses/i2c-parport.c
8644
8645 I2C SUBSYSTEM
8646 M:      Wolfram Sang <wsa@kernel.org>
8647 L:      linux-i2c@vger.kernel.org
8648 S:      Maintained
8649 W:      https://i2c.wiki.kernel.org/
8650 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8652 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8653 F:      Documentation/i2c/
8654 F:      drivers/i2c/*
8655 F:      include/linux/i2c-dev.h
8656 F:      include/linux/i2c-smbus.h
8657 F:      include/linux/i2c.h
8658 F:      include/uapi/linux/i2c-*.h
8659 F:      include/uapi/linux/i2c.h
8660
8661 I2C SUBSYSTEM HOST DRIVERS
8662 L:      linux-i2c@vger.kernel.org
8663 S:      Odd Fixes
8664 W:      https://i2c.wiki.kernel.org/
8665 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8667 F:      Documentation/devicetree/bindings/i2c/
8668 F:      drivers/i2c/algos/
8669 F:      drivers/i2c/busses/
8670
8671 I2C-TAOS-EVM DRIVER
8672 M:      Jean Delvare <jdelvare@suse.com>
8673 L:      linux-i2c@vger.kernel.org
8674 S:      Maintained
8675 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8676 F:      drivers/i2c/busses/i2c-taos-evm.c
8677
8678 I2C-TINY-USB DRIVER
8679 M:      Till Harbaum <till@harbaum.org>
8680 L:      linux-i2c@vger.kernel.org
8681 S:      Maintained
8682 W:      http://www.harbaum.org/till/i2c_tiny_usb
8683 F:      drivers/i2c/busses/i2c-tiny-usb.c
8684
8685 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8686 M:      Jean Delvare <jdelvare@suse.com>
8687 L:      linux-i2c@vger.kernel.org
8688 S:      Maintained
8689 F:      Documentation/i2c/busses/i2c-ali1535.rst
8690 F:      Documentation/i2c/busses/i2c-ali1563.rst
8691 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8692 F:      Documentation/i2c/busses/i2c-amd756.rst
8693 F:      Documentation/i2c/busses/i2c-amd8111.rst
8694 F:      Documentation/i2c/busses/i2c-i801.rst
8695 F:      Documentation/i2c/busses/i2c-nforce2.rst
8696 F:      Documentation/i2c/busses/i2c-piix4.rst
8697 F:      Documentation/i2c/busses/i2c-sis5595.rst
8698 F:      Documentation/i2c/busses/i2c-sis630.rst
8699 F:      Documentation/i2c/busses/i2c-sis96x.rst
8700 F:      Documentation/i2c/busses/i2c-via.rst
8701 F:      Documentation/i2c/busses/i2c-viapro.rst
8702 F:      drivers/i2c/busses/i2c-ali1535.c
8703 F:      drivers/i2c/busses/i2c-ali1563.c
8704 F:      drivers/i2c/busses/i2c-ali15x3.c
8705 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8706 F:      drivers/i2c/busses/i2c-amd756.c
8707 F:      drivers/i2c/busses/i2c-amd8111.c
8708 F:      drivers/i2c/busses/i2c-i801.c
8709 F:      drivers/i2c/busses/i2c-isch.c
8710 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8711 F:      drivers/i2c/busses/i2c-nforce2.c
8712 F:      drivers/i2c/busses/i2c-piix4.c
8713 F:      drivers/i2c/busses/i2c-sis5595.c
8714 F:      drivers/i2c/busses/i2c-sis630.c
8715 F:      drivers/i2c/busses/i2c-sis96x.c
8716 F:      drivers/i2c/busses/i2c-via.c
8717 F:      drivers/i2c/busses/i2c-viapro.c
8718
8719 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8720 M:      Hans de Goede <hdegoede@redhat.com>
8721 L:      linux-i2c@vger.kernel.org
8722 S:      Maintained
8723 F:      drivers/i2c/busses/i2c-cht-wc.c
8724
8725 I2C/SMBUS ISMT DRIVER
8726 M:      Seth Heasley <seth.heasley@intel.com>
8727 M:      Neil Horman <nhorman@tuxdriver.com>
8728 L:      linux-i2c@vger.kernel.org
8729 F:      Documentation/i2c/busses/i2c-ismt.rst
8730 F:      drivers/i2c/busses/i2c-ismt.c
8731
8732 I2C/SMBUS STUB DRIVER
8733 M:      Jean Delvare <jdelvare@suse.com>
8734 L:      linux-i2c@vger.kernel.org
8735 S:      Maintained
8736 F:      drivers/i2c/i2c-stub.c
8737
8738 I3C DRIVER FOR CADENCE I3C MASTER IP
8739 M:      Przemysław Gaj <pgaj@cadence.com>
8740 S:      Maintained
8741 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8742 F:      drivers/i3c/master/i3c-master-cdns.c
8743
8744 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8745 M:      Vitor Soares <vitor.soares@synopsys.com>
8746 S:      Maintained
8747 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8748 F:      drivers/i3c/master/dw*
8749
8750 I3C SUBSYSTEM
8751 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
8752 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8753 S:      Maintained
8754 C:      irc://chat.freenode.net/linux-i3c
8755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8756 F:      Documentation/ABI/testing/sysfs-bus-i3c
8757 F:      Documentation/devicetree/bindings/i3c/
8758 F:      Documentation/driver-api/i3c
8759 F:      drivers/i3c/
8760 F:      include/linux/i3c/
8761
8762 IA64 (Itanium) PLATFORM
8763 L:      linux-ia64@vger.kernel.org
8764 S:      Orphan
8765 F:      Documentation/ia64/
8766 F:      arch/ia64/
8767
8768 IBM Power 842 compression accelerator
8769 M:      Haren Myneni <haren@us.ibm.com>
8770 S:      Supported
8771 F:      crypto/842.c
8772 F:      drivers/crypto/nx/Kconfig
8773 F:      drivers/crypto/nx/Makefile
8774 F:      drivers/crypto/nx/nx-842*
8775 F:      include/linux/sw842.h
8776 F:      lib/842/
8777
8778 IBM Power in-Nest Crypto Acceleration
8779 M:      Breno Leitão <leitao@debian.org>
8780 M:      Nayna Jain <nayna@linux.ibm.com>
8781 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8782 L:      linux-crypto@vger.kernel.org
8783 S:      Supported
8784 F:      drivers/crypto/nx/Kconfig
8785 F:      drivers/crypto/nx/Makefile
8786 F:      drivers/crypto/nx/nx-aes*
8787 F:      drivers/crypto/nx/nx-sha*
8788 F:      drivers/crypto/nx/nx.*
8789 F:      drivers/crypto/nx/nx_csbcpb.h
8790 F:      drivers/crypto/nx/nx_debugfs.c
8791
8792 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8793 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8794 L:      linux-pci@vger.kernel.org
8795 L:      linuxppc-dev@lists.ozlabs.org
8796 S:      Supported
8797 F:      drivers/pci/hotplug/rpadlpar*
8798
8799 IBM Power Linux RAID adapter
8800 M:      Brian King <brking@us.ibm.com>
8801 S:      Supported
8802 F:      drivers/scsi/ipr.*
8803
8804 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8805 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8806 L:      linux-pci@vger.kernel.org
8807 L:      linuxppc-dev@lists.ozlabs.org
8808 S:      Supported
8809 F:      drivers/pci/hotplug/rpaphp*
8810
8811 IBM Power SRIOV Virtual NIC Device Driver
8812 M:      Dany Madden <drt@linux.ibm.com>
8813 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8814 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
8815 L:      netdev@vger.kernel.org
8816 S:      Supported
8817 F:      drivers/net/ethernet/ibm/ibmvnic.*
8818
8819 IBM Power Virtual Accelerator Switchboard
8820 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8821 L:      linuxppc-dev@lists.ozlabs.org
8822 S:      Supported
8823 F:      arch/powerpc/include/asm/vas.h
8824 F:      arch/powerpc/platforms/powernv/copy-paste.h
8825 F:      arch/powerpc/platforms/powernv/vas*
8826
8827 IBM Power Virtual Ethernet Device Driver
8828 M:      Cristobal Forno <cforno12@linux.ibm.com>
8829 L:      netdev@vger.kernel.org
8830 S:      Supported
8831 F:      drivers/net/ethernet/ibm/ibmveth.*
8832
8833 IBM Power Virtual FC Device Drivers
8834 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8835 L:      linux-scsi@vger.kernel.org
8836 S:      Supported
8837 F:      drivers/scsi/ibmvscsi/ibmvfc*
8838
8839 IBM Power Virtual Management Channel Driver
8840 M:      Brad Warrum <bwarrum@linux.ibm.com>
8841 M:      Ritu Agarwal <rituagar@linux.ibm.com>
8842 S:      Supported
8843 F:      drivers/misc/ibmvmc.*
8844
8845 IBM Power Virtual SCSI Device Drivers
8846 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8847 L:      linux-scsi@vger.kernel.org
8848 S:      Supported
8849 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8850 F:      include/scsi/viosrp.h
8851
8852 IBM Power Virtual SCSI Device Target Driver
8853 M:      Michael Cyr <mikecyr@linux.ibm.com>
8854 L:      linux-scsi@vger.kernel.org
8855 L:      target-devel@vger.kernel.org
8856 S:      Supported
8857 F:      drivers/scsi/ibmvscsi_tgt/
8858
8859 IBM Power VMX Cryptographic instructions
8860 M:      Breno Leitão <leitao@debian.org>
8861 M:      Nayna Jain <nayna@linux.ibm.com>
8862 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8863 L:      linux-crypto@vger.kernel.org
8864 S:      Supported
8865 F:      drivers/crypto/vmx/Kconfig
8866 F:      drivers/crypto/vmx/Makefile
8867 F:      drivers/crypto/vmx/aes*
8868 F:      drivers/crypto/vmx/ghash*
8869 F:      drivers/crypto/vmx/ppc-xlate.pl
8870 F:      drivers/crypto/vmx/vmx.c
8871
8872 IBM ServeRAID RAID DRIVER
8873 S:      Orphan
8874 F:      drivers/scsi/ips.*
8875
8876 ICH LPC AND GPIO DRIVER
8877 M:      Peter Tyser <ptyser@xes-inc.com>
8878 S:      Maintained
8879 F:      drivers/gpio/gpio-ich.c
8880 F:      drivers/mfd/lpc_ich.c
8881
8882 ICY I2C DRIVER
8883 M:      Max Staudt <max@enpas.org>
8884 L:      linux-i2c@vger.kernel.org
8885 S:      Maintained
8886 F:      drivers/i2c/busses/i2c-icy.c
8887
8888 IDEAPAD LAPTOP EXTRAS DRIVER
8889 M:      Ike Panhc <ike.pan@canonical.com>
8890 L:      platform-driver-x86@vger.kernel.org
8891 S:      Maintained
8892 W:      http://launchpad.net/ideapad-laptop
8893 F:      drivers/platform/x86/ideapad-laptop.c
8894
8895 IDEAPAD LAPTOP SLIDEBAR DRIVER
8896 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
8897 L:      linux-input@vger.kernel.org
8898 S:      Maintained
8899 W:      https://github.com/o2genum/ideapad-slidebar
8900 F:      drivers/input/misc/ideapad_slidebar.c
8901
8902 IDT VersaClock 5 CLOCK DRIVER
8903 M:      Luca Ceresoli <luca@lucaceresoli.net>
8904 S:      Maintained
8905 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
8906 F:      drivers/clk/clk-versaclock5.c
8907
8908 IEEE 802.15.4 SUBSYSTEM
8909 M:      Alexander Aring <alex.aring@gmail.com>
8910 M:      Stefan Schmidt <stefan@datenfreihafen.org>
8911 L:      linux-wpan@vger.kernel.org
8912 S:      Maintained
8913 W:      https://linux-wpan.org/
8914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8916 F:      Documentation/networking/ieee802154.rst
8917 F:      drivers/net/ieee802154/
8918 F:      include/linux/ieee802154.h
8919 F:      include/linux/nl802154.h
8920 F:      include/net/af_ieee802154.h
8921 F:      include/net/cfg802154.h
8922 F:      include/net/ieee802154_netdev.h
8923 F:      include/net/mac802154.h
8924 F:      include/net/nl802154.h
8925 F:      net/ieee802154/
8926 F:      net/mac802154/
8927
8928 IFE PROTOCOL
8929 M:      Yotam Gigi <yotam.gi@gmail.com>
8930 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8931 F:      include/net/ife.h
8932 F:      include/uapi/linux/ife.h
8933 F:      net/ife
8934
8935 IGORPLUG-USB IR RECEIVER
8936 M:      Sean Young <sean@mess.org>
8937 L:      linux-media@vger.kernel.org
8938 S:      Maintained
8939 F:      drivers/media/rc/igorplugusb.c
8940
8941 IGUANAWORKS USB IR TRANSCEIVER
8942 M:      Sean Young <sean@mess.org>
8943 L:      linux-media@vger.kernel.org
8944 S:      Maintained
8945 F:      drivers/media/rc/iguanair.c
8946
8947 IIO DIGITAL POTENTIOMETER DAC
8948 M:      Peter Rosin <peda@axentia.se>
8949 L:      linux-iio@vger.kernel.org
8950 S:      Maintained
8951 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8952 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
8953 F:      drivers/iio/dac/dpot-dac.c
8954
8955 IIO ENVELOPE DETECTOR
8956 M:      Peter Rosin <peda@axentia.se>
8957 L:      linux-iio@vger.kernel.org
8958 S:      Maintained
8959 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8960 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
8961 F:      drivers/iio/adc/envelope-detector.c
8962
8963 IIO MULTIPLEXER
8964 M:      Peter Rosin <peda@axentia.se>
8965 L:      linux-iio@vger.kernel.org
8966 S:      Maintained
8967 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
8968 F:      drivers/iio/multiplexer/iio-mux.c
8969
8970 IIO SCMI BASED DRIVER
8971 M:      Jyoti Bhayana <jbhayana@google.com>
8972 L:      linux-iio@vger.kernel.org
8973 S:      Maintained
8974 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
8975
8976 IIO SUBSYSTEM AND DRIVERS
8977 M:      Jonathan Cameron <jic23@kernel.org>
8978 R:      Lars-Peter Clausen <lars@metafoo.de>
8979 L:      linux-iio@vger.kernel.org
8980 S:      Maintained
8981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8982 F:      Documentation/ABI/testing/configfs-iio*
8983 F:      Documentation/ABI/testing/sysfs-bus-iio*
8984 F:      Documentation/devicetree/bindings/iio/
8985 F:      drivers/iio/
8986 F:      drivers/staging/iio/
8987 F:      include/linux/iio/
8988 F:      tools/iio/
8989
8990 IIO UNIT CONVERTER
8991 M:      Peter Rosin <peda@axentia.se>
8992 L:      linux-iio@vger.kernel.org
8993 S:      Maintained
8994 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
8995 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
8996 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
8997 F:      drivers/iio/afe/iio-rescale.c
8998
8999 IKANOS/ADI EAGLE ADSL USB DRIVER
9000 M:      Matthieu Castet <castet.matthieu@free.fr>
9001 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9002 S:      Maintained
9003 F:      drivers/usb/atm/ueagle-atm.c
9004
9005 IMGTEC ASCII LCD DRIVER
9006 M:      Paul Burton <paulburton@kernel.org>
9007 S:      Maintained
9008 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
9009 F:      drivers/auxdisplay/img-ascii-lcd.c
9010
9011 IMGTEC IR DECODER DRIVER
9012 S:      Orphan
9013 F:      drivers/media/rc/img-ir/
9014
9015 IMON SOUNDGRAPH USB IR RECEIVER
9016 M:      Sean Young <sean@mess.org>
9017 L:      linux-media@vger.kernel.org
9018 S:      Maintained
9019 F:      drivers/media/rc/imon.c
9020 F:      drivers/media/rc/imon_raw.c
9021
9022 IMS TWINTURBO FRAMEBUFFER DRIVER
9023 L:      linux-fbdev@vger.kernel.org
9024 S:      Orphan
9025 F:      drivers/video/fbdev/imsttfb.c
9026
9027 INA209 HARDWARE MONITOR DRIVER
9028 M:      Guenter Roeck <linux@roeck-us.net>
9029 L:      linux-hwmon@vger.kernel.org
9030 S:      Maintained
9031 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9032 F:      Documentation/hwmon/ina209.rst
9033 F:      drivers/hwmon/ina209.c
9034
9035 INA2XX HARDWARE MONITOR DRIVER
9036 M:      Guenter Roeck <linux@roeck-us.net>
9037 L:      linux-hwmon@vger.kernel.org
9038 S:      Maintained
9039 F:      Documentation/hwmon/ina2xx.rst
9040 F:      drivers/hwmon/ina2xx.c
9041 F:      include/linux/platform_data/ina2xx.h
9042
9043 INDUSTRY PACK SUBSYSTEM (IPACK)
9044 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9045 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9046 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9047 L:      industrypack-devel@lists.sourceforge.net
9048 S:      Maintained
9049 W:      http://industrypack.sourceforge.net
9050 F:      drivers/ipack/
9051
9052 INFINEON DPS310 Driver
9053 M:      Eddie James <eajames@linux.ibm.com>
9054 L:      linux-iio@vger.kernel.org
9055 S:      Maintained
9056 F:      drivers/iio/pressure/dps310.c
9057
9058 INFINIBAND SUBSYSTEM
9059 M:      Doug Ledford <dledford@redhat.com>
9060 M:      Jason Gunthorpe <jgg@nvidia.com>
9061 L:      linux-rdma@vger.kernel.org
9062 S:      Supported
9063 W:      https://github.com/linux-rdma/rdma-core
9064 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9066 F:      Documentation/devicetree/bindings/infiniband/
9067 F:      Documentation/infiniband/
9068 F:      drivers/infiniband/
9069 F:      include/rdma/
9070 F:      include/trace/events/ib_mad.h
9071 F:      include/trace/events/ib_umad.h
9072 F:      include/uapi/linux/if_infiniband.h
9073 F:      include/uapi/rdma/
9074 F:      samples/bpf/ibumad_kern.c
9075 F:      samples/bpf/ibumad_user.c
9076
9077 INGENIC JZ4780 NAND DRIVER
9078 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9079 L:      linux-mtd@lists.infradead.org
9080 L:      linux-mips@vger.kernel.org
9081 S:      Maintained
9082 F:      drivers/mtd/nand/raw/ingenic/
9083
9084 INGENIC JZ47xx SoCs
9085 M:      Paul Cercueil <paul@crapouillou.net>
9086 L:      linux-mips@vger.kernel.org
9087 S:      Maintained
9088 F:      arch/mips/boot/dts/ingenic/
9089 F:      arch/mips/generic/board-ingenic.c
9090 F:      arch/mips/include/asm/mach-ingenic/
9091 F:      arch/mips/ingenic/Kconfig
9092 F:      drivers/clk/ingenic/
9093 F:      drivers/dma/dma-jz4780.c
9094 F:      drivers/gpu/drm/ingenic/
9095 F:      drivers/i2c/busses/i2c-jz4780.c
9096 F:      drivers/iio/adc/ingenic-adc.c
9097 F:      drivers/irqchip/irq-ingenic.c
9098 F:      drivers/memory/jz4780-nemc.c
9099 F:      drivers/mmc/host/jz4740_mmc.c
9100 F:      drivers/mtd/nand/raw/ingenic/
9101 F:      drivers/pinctrl/pinctrl-ingenic.c
9102 F:      drivers/power/supply/ingenic-battery.c
9103 F:      drivers/pwm/pwm-jz4740.c
9104 F:      drivers/remoteproc/ingenic_rproc.c
9105 F:      drivers/rtc/rtc-jz4740.c
9106 F:      drivers/tty/serial/8250/8250_ingenic.c
9107 F:      drivers/usb/musb/jz4740.c
9108 F:      drivers/watchdog/jz4740_wdt.c
9109 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9110 F:      include/linux/mfd/ingenic-tcu.h
9111 F:      sound/soc/codecs/jz47*
9112 F:      sound/soc/jz4740/
9113
9114 INOTIFY
9115 M:      Jan Kara <jack@suse.cz>
9116 R:      Amir Goldstein <amir73il@gmail.com>
9117 L:      linux-fsdevel@vger.kernel.org
9118 S:      Maintained
9119 F:      Documentation/filesystems/inotify.rst
9120 F:      fs/notify/inotify/
9121 F:      include/linux/inotify.h
9122 F:      include/uapi/linux/inotify.h
9123
9124 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9125 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9126 L:      linux-input@vger.kernel.org
9127 S:      Maintained
9128 Q:      http://patchwork.kernel.org/project/linux-input/list/
9129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9130 F:      Documentation/devicetree/bindings/input/
9131 F:      Documentation/devicetree/bindings/serio/
9132 F:      Documentation/input/
9133 F:      drivers/input/
9134 F:      include/linux/input.h
9135 F:      include/linux/input/
9136 F:      include/uapi/linux/input-event-codes.h
9137 F:      include/uapi/linux/input.h
9138
9139 INPUT MULTITOUCH (MT) PROTOCOL
9140 M:      Henrik Rydberg <rydberg@bitmath.org>
9141 L:      linux-input@vger.kernel.org
9142 S:      Odd fixes
9143 F:      Documentation/input/multi-touch-protocol.rst
9144 F:      drivers/input/input-mt.c
9145 K:      \b(ABS|SYN)_MT_
9146
9147 INSIDE SECURE CRYPTO DRIVER
9148 M:      Antoine Tenart <atenart@kernel.org>
9149 L:      linux-crypto@vger.kernel.org
9150 S:      Maintained
9151 F:      drivers/crypto/inside-secure/
9152
9153 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9154 M:      Mimi Zohar <zohar@linux.ibm.com>
9155 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9156 L:      linux-integrity@vger.kernel.org
9157 S:      Supported
9158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9159 F:      security/integrity/ima/
9160
9161 INTEL 810/815 FRAMEBUFFER DRIVER
9162 M:      Antonino Daplas <adaplas@gmail.com>
9163 L:      linux-fbdev@vger.kernel.org
9164 S:      Maintained
9165 F:      drivers/video/fbdev/i810/
9166
9167 INTEL ASoC DRIVERS
9168 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9169 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9170 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9171 M:      Jie Yang <yang.jie@linux.intel.com>
9172 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9173 S:      Supported
9174 F:      sound/soc/intel/
9175
9176 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9177 M:      Hans de Goede <hdegoede@redhat.com>
9178 L:      platform-driver-x86@vger.kernel.org
9179 S:      Maintained
9180 F:      drivers/platform/x86/intel_atomisp2_pm.c
9181
9182 INTEL ATOMISP2 LED DRIVER
9183 M:      Hans de Goede <hdegoede@redhat.com>
9184 L:      platform-driver-x86@vger.kernel.org
9185 S:      Maintained
9186 F:      drivers/platform/x86/intel_atomisp2_led.c
9187
9188 INTEL BROXTON PMC DRIVER
9189 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9190 M:      Zha Qipeng <qipeng.zha@intel.com>
9191 S:      Maintained
9192 F:      drivers/mfd/intel_pmc_bxt.c
9193 F:      include/linux/mfd/intel_pmc_bxt.h
9194
9195 INTEL C600 SERIES SAS CONTROLLER DRIVER
9196 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9197 L:      linux-scsi@vger.kernel.org
9198 S:      Supported
9199 T:      git git://git.code.sf.net/p/intel-sas/isci
9200 F:      drivers/scsi/isci/
9201
9202 INTEL CPU family model numbers
9203 M:      Tony Luck <tony.luck@intel.com>
9204 M:      x86@kernel.org
9205 L:      linux-kernel@vger.kernel.org
9206 S:      Supported
9207 F:      arch/x86/include/asm/intel-family.h
9208
9209 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9210 M:      Jani Nikula <jani.nikula@linux.intel.com>
9211 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9212 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9213 L:      intel-gfx@lists.freedesktop.org
9214 S:      Supported
9215 W:      https://01.org/linuxgraphics/
9216 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9217 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9218 C:      irc://chat.freenode.net/intel-gfx
9219 T:      git git://anongit.freedesktop.org/drm-intel
9220 F:      Documentation/gpu/i915.rst
9221 F:      drivers/gpu/drm/i915/
9222 F:      include/drm/i915*
9223 F:      include/uapi/drm/i915_drm.h
9224
9225 INTEL ETHERNET DRIVERS
9226 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9227 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9228 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9229 S:      Supported
9230 W:      http://www.intel.com/support/feedback.htm
9231 W:      http://e1000.sourceforge.net/
9232 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9235 F:      Documentation/networking/device_drivers/ethernet/intel/
9236 F:      drivers/net/ethernet/intel/
9237 F:      drivers/net/ethernet/intel/*/
9238 F:      include/linux/avf/virtchnl.h
9239 F:      include/linux/net/intel/iidc.h
9240
9241 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9242 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9243 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9244 L:      linux-rdma@vger.kernel.org
9245 S:      Supported
9246 F:      drivers/infiniband/hw/irdma/
9247 F:      include/uapi/rdma/irdma-abi.h
9248
9249 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9250 M:      Maik Broemme <mbroemme@libmpq.org>
9251 L:      linux-fbdev@vger.kernel.org
9252 S:      Maintained
9253 F:      Documentation/fb/intelfb.rst
9254 F:      drivers/video/fbdev/intelfb/
9255
9256 INTEL GPIO DRIVERS
9257 M:      Andy Shevchenko <andy@kernel.org>
9258 L:      linux-gpio@vger.kernel.org
9259 S:      Maintained
9260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9261 F:      drivers/gpio/gpio-ich.c
9262 F:      drivers/gpio/gpio-merrifield.c
9263 F:      drivers/gpio/gpio-ml-ioh.c
9264 F:      drivers/gpio/gpio-pch.c
9265 F:      drivers/gpio/gpio-sch.c
9266 F:      drivers/gpio/gpio-sodaville.c
9267
9268 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9269 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9270 M:      Zhi Wang <zhi.a.wang@intel.com>
9271 L:      intel-gvt-dev@lists.freedesktop.org
9272 L:      intel-gfx@lists.freedesktop.org
9273 S:      Supported
9274 W:      https://01.org/igvt-g
9275 T:      git https://github.com/intel/gvt-linux.git
9276 F:      drivers/gpu/drm/i915/gvt/
9277
9278 INTEL HID EVENT DRIVER
9279 M:      Alex Hung <alex.hung@canonical.com>
9280 L:      platform-driver-x86@vger.kernel.org
9281 S:      Maintained
9282 F:      drivers/platform/x86/intel-hid.c
9283
9284 INTEL I/OAT DMA DRIVER
9285 M:      Dave Jiang <dave.jiang@intel.com>
9286 R:      Dan Williams <dan.j.williams@intel.com>
9287 L:      dmaengine@vger.kernel.org
9288 S:      Supported
9289 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9290 F:      drivers/dma/ioat*
9291
9292 INTEL IADX DRIVER
9293 M:      Dave Jiang <dave.jiang@intel.com>
9294 L:      dmaengine@vger.kernel.org
9295 S:      Supported
9296 F:      drivers/dma/idxd/*
9297 F:      include/uapi/linux/idxd.h
9298
9299 INTEL IDLE DRIVER
9300 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9301 M:      Len Brown <lenb@kernel.org>
9302 L:      linux-pm@vger.kernel.org
9303 S:      Supported
9304 B:      https://bugzilla.kernel.org
9305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9306 F:      drivers/idle/intel_idle.c
9307
9308 INTEL INTEGRATED SENSOR HUB DRIVER
9309 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9310 M:      Jiri Kosina <jikos@kernel.org>
9311 L:      linux-input@vger.kernel.org
9312 S:      Maintained
9313 F:      drivers/hid/intel-ish-hid/
9314
9315 INTEL IOMMU (VT-d)
9316 M:      David Woodhouse <dwmw2@infradead.org>
9317 M:      Lu Baolu <baolu.lu@linux.intel.com>
9318 L:      iommu@lists.linux-foundation.org
9319 S:      Supported
9320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9321 F:      drivers/iommu/intel/
9322 F:      include/linux/intel-iommu.h
9323 F:      include/linux/intel-svm.h
9324
9325 INTEL IOP-ADMA DMA DRIVER
9326 R:      Dan Williams <dan.j.williams@intel.com>
9327 S:      Odd fixes
9328 F:      drivers/dma/iop-adma.c
9329
9330 INTEL IPU3 CSI-2 CIO2 DRIVER
9331 M:      Yong Zhi <yong.zhi@intel.com>
9332 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9333 M:      Bingbu Cao <bingbu.cao@intel.com>
9334 M:      Dan Scally <djrscally@gmail.com>
9335 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9336 L:      linux-media@vger.kernel.org
9337 S:      Maintained
9338 T:      git git://linuxtv.org/media_tree.git
9339 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9340 F:      drivers/media/pci/intel/ipu3/
9341
9342 INTEL IPU3 CSI-2 IMGU DRIVER
9343 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9344 R:      Bingbu Cao <bingbu.cao@intel.com>
9345 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9346 L:      linux-media@vger.kernel.org
9347 S:      Maintained
9348 F:      Documentation/admin-guide/media/ipu3.rst
9349 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9350 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9351 F:      drivers/staging/media/ipu3/
9352
9353 INTEL IXP4XX CRYPTO SUPPORT
9354 M:      Corentin Labbe <clabbe@baylibre.com>
9355 L:      linux-crypto@vger.kernel.org
9356 S:      Maintained
9357 F:      drivers/crypto/ixp4xx_crypto.c
9358
9359 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9360 M:      Krzysztof Halasa <khalasa@piap.pl>
9361 S:      Maintained
9362 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9363 F:      drivers/net/wan/ixp4xx_hss.c
9364 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9365 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9366 F:      include/linux/soc/ixp4xx/npe.h
9367 F:      include/linux/soc/ixp4xx/qmgr.h
9368
9369 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9370 M:      Deepak Saxena <dsaxena@plexity.net>
9371 S:      Maintained
9372 F:      drivers/char/hw_random/ixp4xx-rng.c
9373
9374 INTEL KEEM BAY DRM DRIVER
9375 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9376 M:      Edmund Dea <edmund.j.dea@intel.com>
9377 S:      Maintained
9378 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9379 F:      drivers/gpu/drm/kmb/
9380
9381 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9382 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9383 S:      Maintained
9384 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9385 F:      drivers/crypto/keembay/Kconfig
9386 F:      drivers/crypto/keembay/Makefile
9387 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9388 F:      drivers/crypto/keembay/ocs-aes.c
9389 F:      drivers/crypto/keembay/ocs-aes.h
9390
9391 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9392 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9393 M:      Declan Murphy <declan.murphy@intel.com>
9394 S:      Maintained
9395 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9396 F:      drivers/crypto/keembay/Kconfig
9397 F:      drivers/crypto/keembay/Makefile
9398 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9399 F:      drivers/crypto/keembay/ocs-hcu.c
9400 F:      drivers/crypto/keembay/ocs-hcu.h
9401
9402 INTEL MANAGEMENT ENGINE (mei)
9403 M:      Tomas Winkler <tomas.winkler@intel.com>
9404 L:      linux-kernel@vger.kernel.org
9405 S:      Supported
9406 F:      Documentation/driver-api/mei/*
9407 F:      drivers/misc/mei/
9408 F:      drivers/watchdog/mei_wdt.c
9409 F:      include/linux/mei_cl_bus.h
9410 F:      include/uapi/linux/mei.h
9411 F:      samples/mei/*
9412
9413 INTEL MAX 10 BMC MFD DRIVER
9414 M:      Xu Yilun <yilun.xu@intel.com>
9415 R:      Tom Rix <trix@redhat.com>
9416 S:      Maintained
9417 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9418 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9419 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9420 F:      drivers/mfd/intel-m10-bmc.c
9421 F:      include/linux/mfd/intel-m10-bmc.h
9422
9423 INTEL MENLOW THERMAL DRIVER
9424 M:      Sujith Thomas <sujith.thomas@intel.com>
9425 L:      platform-driver-x86@vger.kernel.org
9426 S:      Supported
9427 W:      https://01.org/linux-acpi
9428 F:      drivers/platform/x86/intel_menlow.c
9429
9430 INTEL P-Unit IPC DRIVER
9431 M:      Zha Qipeng <qipeng.zha@intel.com>
9432 L:      platform-driver-x86@vger.kernel.org
9433 S:      Maintained
9434 F:      arch/x86/include/asm/intel_punit_ipc.h
9435 F:      drivers/platform/x86/intel_punit_ipc.c
9436
9437 INTEL PMC CORE DRIVER
9438 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9439 M:      David E Box <david.e.box@intel.com>
9440 L:      platform-driver-x86@vger.kernel.org
9441 S:      Maintained
9442 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
9443 F:      drivers/platform/x86/intel_pmc_core*
9444
9445 INTEL PMIC GPIO DRIVERS
9446 M:      Andy Shevchenko <andy@kernel.org>
9447 S:      Maintained
9448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9449 F:      drivers/gpio/gpio-*cove.c
9450
9451 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9452 M:      Andy Shevchenko <andy@kernel.org>
9453 S:      Maintained
9454 F:      drivers/mfd/intel_soc_pmic*
9455 F:      include/linux/mfd/intel_soc_pmic*
9456
9457 INTEL PMT DRIVER
9458 M:      "David E. Box" <david.e.box@linux.intel.com>
9459 S:      Maintained
9460 F:      drivers/mfd/intel_pmt.c
9461 F:      drivers/platform/x86/intel_pmt_*
9462
9463 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9464 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9465 L:      linux-wireless@vger.kernel.org
9466 S:      Maintained
9467 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9468 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9469 F:      drivers/net/wireless/intel/ipw2x00/
9470
9471 INTEL PSTATE DRIVER
9472 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9473 M:      Len Brown <lenb@kernel.org>
9474 L:      linux-pm@vger.kernel.org
9475 S:      Supported
9476 F:      drivers/cpufreq/intel_pstate.c
9477
9478 INTEL SCU DRIVERS
9479 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9480 S:      Maintained
9481 F:      arch/x86/include/asm/intel_scu_ipc.h
9482 F:      drivers/platform/x86/intel_scu_*
9483
9484 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
9485 M:      Daniel Scally <djrscally@gmail.com>
9486 S:      Maintained
9487 F:      drivers/platform/x86/intel/int3472/
9488
9489 INTEL SPEED SELECT TECHNOLOGY
9490 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9491 L:      platform-driver-x86@vger.kernel.org
9492 S:      Maintained
9493 F:      drivers/platform/x86/intel_speed_select_if/
9494 F:      include/uapi/linux/isst_if.h
9495 F:      tools/power/x86/intel-speed-select/
9496
9497 INTEL STRATIX10 FIRMWARE DRIVERS
9498 M:      Richard Gong <richard.gong@linux.intel.com>
9499 L:      linux-kernel@vger.kernel.org
9500 S:      Maintained
9501 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9502 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9503 F:      drivers/firmware/stratix10-rsu.c
9504 F:      drivers/firmware/stratix10-svc.c
9505 F:      include/linux/firmware/intel/stratix10-smc.h
9506 F:      include/linux/firmware/intel/stratix10-svc-client.h
9507
9508 INTEL TELEMETRY DRIVER
9509 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9510 M:      "David E. Box" <david.e.box@linux.intel.com>
9511 L:      platform-driver-x86@vger.kernel.org
9512 S:      Maintained
9513 F:      arch/x86/include/asm/intel_telemetry.h
9514 F:      drivers/platform/x86/intel_telemetry*
9515
9516 INTEL UNCORE FREQUENCY CONTROL
9517 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9518 L:      platform-driver-x86@vger.kernel.org
9519 S:      Maintained
9520 F:      drivers/platform/x86/intel-uncore-frequency.c
9521
9522 INTEL VIRTUAL BUTTON DRIVER
9523 M:      AceLan Kao <acelan.kao@canonical.com>
9524 L:      platform-driver-x86@vger.kernel.org
9525 S:      Maintained
9526 F:      drivers/platform/x86/intel-vbtn.c
9527
9528 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9529 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9530 L:      linux-wireless@vger.kernel.org
9531 S:      Supported
9532 F:      drivers/net/wireless/intel/iwlegacy/
9533
9534 INTEL WIRELESS WIFI LINK (iwlwifi)
9535 M:      Luca Coelho <luciano.coelho@intel.com>
9536 L:      linux-wireless@vger.kernel.org
9537 S:      Supported
9538 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9540 F:      drivers/net/wireless/intel/iwlwifi/
9541
9542 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9543 M:      Jithu Joseph <jithu.joseph@intel.com>
9544 R:      Maurice Ma <maurice.ma@intel.com>
9545 S:      Maintained
9546 W:      https://slimbootloader.github.io/security/firmware-update.html
9547 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
9548
9549 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9550 L:      Dell.Client.Kernel@dell.com
9551 S:      Maintained
9552 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
9553
9554 INTEL WWAN IOSM DRIVER
9555 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
9556 M:      Intel Corporation <linuxwwan@intel.com>
9557 L:      netdev@vger.kernel.org
9558 S:      Maintained
9559 F:      drivers/net/wwan/iosm/
9560
9561 INTEL(R) TRACE HUB
9562 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9563 S:      Supported
9564 F:      Documentation/trace/intel_th.rst
9565 F:      drivers/hwtracing/intel_th/
9566 F:      include/linux/intel_th.h
9567
9568 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9569 M:      Ning Sun <ning.sun@intel.com>
9570 L:      tboot-devel@lists.sourceforge.net
9571 S:      Supported
9572 W:      http://tboot.sourceforge.net
9573 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9574 F:      Documentation/x86/intel_txt.rst
9575 F:      arch/x86/kernel/tboot.c
9576 F:      include/linux/tboot.h
9577
9578 INTEL SGX
9579 M:      Jarkko Sakkinen <jarkko@kernel.org>
9580 R:      Dave Hansen <dave.hansen@linux.intel.com>
9581 L:      linux-sgx@vger.kernel.org
9582 S:      Supported
9583 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9585 F:      Documentation/x86/sgx.rst
9586 F:      arch/x86/entry/vdso/vsgx.S
9587 F:      arch/x86/include/asm/sgx.h
9588 F:      arch/x86/include/uapi/asm/sgx.h
9589 F:      arch/x86/kernel/cpu/sgx/*
9590 F:      tools/testing/selftests/sgx/*
9591 K:      \bSGX_
9592
9593 INTERCONNECT API
9594 M:      Georgi Djakov <djakov@kernel.org>
9595 L:      linux-pm@vger.kernel.org
9596 S:      Maintained
9597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
9598 F:      Documentation/devicetree/bindings/interconnect/
9599 F:      Documentation/driver-api/interconnect.rst
9600 F:      drivers/interconnect/
9601 F:      include/dt-bindings/interconnect/
9602 F:      include/linux/interconnect-provider.h
9603 F:      include/linux/interconnect.h
9604
9605 INTERRUPT COUNTER DRIVER
9606 M:      Oleksij Rempel <o.rempel@pengutronix.de>
9607 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
9608 L:      linux-iio@vger.kernel.org
9609 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
9610 F:      drivers/counter/interrupt-cnt.c
9611
9612 INVENSENSE ICM-426xx IMU DRIVER
9613 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9614 L:      linux-iio@vger.kernel.org
9615 S:      Maintained
9616 W:      https://invensense.tdk.com/
9617 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9618 F:      drivers/iio/imu/inv_icm42600/
9619
9620 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9621 M:      Linus Walleij <linus.walleij@linaro.org>
9622 L:      linux-iio@vger.kernel.org
9623 S:      Maintained
9624 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
9625 F:      drivers/iio/gyro/mpu3050*
9626
9627 IOC3 ETHERNET DRIVER
9628 M:      Ralf Baechle <ralf@linux-mips.org>
9629 L:      linux-mips@vger.kernel.org
9630 S:      Maintained
9631 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9632
9633 IOMAP FILESYSTEM LIBRARY
9634 M:      Christoph Hellwig <hch@infradead.org>
9635 M:      Darrick J. Wong <djwong@kernel.org>
9636 M:      linux-xfs@vger.kernel.org
9637 M:      linux-fsdevel@vger.kernel.org
9638 L:      linux-xfs@vger.kernel.org
9639 L:      linux-fsdevel@vger.kernel.org
9640 S:      Supported
9641 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9642 F:      fs/iomap/
9643 F:      include/linux/iomap.h
9644
9645 IOMMU DRIVERS
9646 M:      Joerg Roedel <joro@8bytes.org>
9647 M:      Will Deacon <will@kernel.org>
9648 L:      iommu@lists.linux-foundation.org
9649 S:      Maintained
9650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9651 F:      Documentation/devicetree/bindings/iommu/
9652 F:      Documentation/userspace-api/iommu.rst
9653 F:      drivers/iommu/
9654 F:      include/linux/iommu.h
9655 F:      include/linux/iova.h
9656 F:      include/linux/of_iommu.h
9657 F:      include/uapi/linux/iommu.h
9658
9659 IO_URING
9660 M:      Jens Axboe <axboe@kernel.dk>
9661 R:      Pavel Begunkov <asml.silence@gmail.com>
9662 L:      io-uring@vger.kernel.org
9663 S:      Maintained
9664 T:      git git://git.kernel.dk/linux-block
9665 T:      git git://git.kernel.dk/liburing
9666 F:      fs/io-wq.c
9667 F:      fs/io-wq.h
9668 F:      fs/io_uring.c
9669 F:      include/linux/io_uring.h
9670 F:      include/uapi/linux/io_uring.h
9671 F:      tools/io_uring/
9672
9673 IPMI SUBSYSTEM
9674 M:      Corey Minyard <minyard@acm.org>
9675 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9676 S:      Supported
9677 W:      http://openipmi.sourceforge.net/
9678 F:      Documentation/driver-api/ipmi.rst
9679 F:      Documentation/devicetree/bindings/ipmi/
9680 F:      drivers/char/ipmi/
9681 F:      include/linux/ipmi*
9682 F:      include/uapi/linux/ipmi*
9683
9684 IPS SCSI RAID DRIVER
9685 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9686 L:      linux-scsi@vger.kernel.org
9687 S:      Maintained
9688 W:      http://www.adaptec.com/
9689 F:      drivers/scsi/ips*
9690
9691 IPVS
9692 M:      Simon Horman <horms@verge.net.au>
9693 M:      Julian Anastasov <ja@ssi.bg>
9694 L:      netdev@vger.kernel.org
9695 L:      lvs-devel@vger.kernel.org
9696 S:      Maintained
9697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9699 F:      Documentation/networking/ipvs-sysctl.rst
9700 F:      include/net/ip_vs.h
9701 F:      include/uapi/linux/ip_vs.h
9702 F:      net/netfilter/ipvs/
9703
9704 IPWIRELESS DRIVER
9705 M:      Jiri Kosina <jikos@kernel.org>
9706 M:      David Sterba <dsterba@suse.com>
9707 S:      Odd Fixes
9708 F:      drivers/tty/ipwireless/
9709
9710 IPX NETWORK LAYER
9711 L:      netdev@vger.kernel.org
9712 S:      Obsolete
9713 F:      include/uapi/linux/ipx.h
9714
9715 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9716 M:      Marc Zyngier <maz@kernel.org>
9717 S:      Maintained
9718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9719 F:      Documentation/core-api/irq/irq-domain.rst
9720 F:      include/linux/irqdomain.h
9721 F:      kernel/irq/irqdomain.c
9722 F:      kernel/irq/msi.c
9723
9724 IRQ SUBSYSTEM
9725 M:      Thomas Gleixner <tglx@linutronix.de>
9726 L:      linux-kernel@vger.kernel.org
9727 S:      Maintained
9728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9729 F:      kernel/irq/
9730
9731 IRQCHIP DRIVERS
9732 M:      Thomas Gleixner <tglx@linutronix.de>
9733 M:      Marc Zyngier <maz@kernel.org>
9734 L:      linux-kernel@vger.kernel.org
9735 S:      Maintained
9736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9737 F:      Documentation/devicetree/bindings/interrupt-controller/
9738 F:      drivers/irqchip/
9739
9740 ISA
9741 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9742 S:      Maintained
9743 F:      Documentation/driver-api/isa.rst
9744 F:      drivers/base/isa.c
9745 F:      include/linux/isa.h
9746
9747 ISA RADIO MODULE
9748 M:      Hans Verkuil <hverkuil@xs4all.nl>
9749 L:      linux-media@vger.kernel.org
9750 S:      Maintained
9751 W:      https://linuxtv.org
9752 T:      git git://linuxtv.org/media_tree.git
9753 F:      drivers/media/radio/radio-isa*
9754
9755 ISAPNP
9756 M:      Jaroslav Kysela <perex@perex.cz>
9757 S:      Maintained
9758 F:      Documentation/driver-api/isapnp.rst
9759 F:      drivers/pnp/isapnp/
9760 F:      include/linux/isapnp.h
9761
9762 ISCSI
9763 M:      Lee Duncan <lduncan@suse.com>
9764 M:      Chris Leech <cleech@redhat.com>
9765 L:      open-iscsi@googlegroups.com
9766 L:      linux-scsi@vger.kernel.org
9767 S:      Maintained
9768 W:      www.open-iscsi.com
9769 F:      drivers/scsi/*iscsi*
9770 F:      include/scsi/*iscsi*
9771
9772 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9773 M:      Peter Jones <pjones@redhat.com>
9774 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9775 S:      Maintained
9776 F:      drivers/firmware/iscsi_ibft*
9777
9778 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9779 M:      Sagi Grimberg <sagi@grimberg.me>
9780 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
9781 L:      linux-rdma@vger.kernel.org
9782 S:      Supported
9783 W:      http://www.openfabrics.org
9784 W:      www.open-iscsi.org
9785 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9786 F:      drivers/infiniband/ulp/iser/
9787
9788 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9789 M:      Sagi Grimberg <sagi@grimberg.me>
9790 L:      linux-rdma@vger.kernel.org
9791 L:      target-devel@vger.kernel.org
9792 S:      Supported
9793 W:      http://www.linux-iscsi.org
9794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9795 F:      drivers/infiniband/ulp/isert
9796
9797 ISDN/CMTP OVER BLUETOOTH
9798 M:      Karsten Keil <isdn@linux-pingi.de>
9799 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9800 L:      netdev@vger.kernel.org
9801 S:      Odd Fixes
9802 W:      http://www.isdn4linux.de
9803 F:      Documentation/isdn/
9804 F:      drivers/isdn/capi/
9805 F:      include/linux/isdn/
9806 F:      include/uapi/linux/isdn/
9807 F:      net/bluetooth/cmtp/
9808
9809 ISDN/mISDN SUBSYSTEM
9810 M:      Karsten Keil <isdn@linux-pingi.de>
9811 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9812 L:      netdev@vger.kernel.org
9813 S:      Maintained
9814 W:      http://www.isdn4linux.de
9815 F:      drivers/isdn/Kconfig
9816 F:      drivers/isdn/Makefile
9817 F:      drivers/isdn/hardware/
9818 F:      drivers/isdn/mISDN/
9819
9820 IT87 HARDWARE MONITORING DRIVER
9821 M:      Jean Delvare <jdelvare@suse.com>
9822 L:      linux-hwmon@vger.kernel.org
9823 S:      Maintained
9824 F:      Documentation/hwmon/it87.rst
9825 F:      drivers/hwmon/it87.c
9826
9827 IT913X MEDIA DRIVER
9828 M:      Antti Palosaari <crope@iki.fi>
9829 L:      linux-media@vger.kernel.org
9830 S:      Maintained
9831 W:      https://linuxtv.org
9832 W:      http://palosaari.fi/linux/
9833 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9834 T:      git git://linuxtv.org/anttip/media_tree.git
9835 F:      drivers/media/tuners/it913x*
9836
9837 ITE IT66121 HDMI BRIDGE DRIVER
9838 M:      Phong LE <ple@baylibre.com>
9839 M:      Neil Armstrong <narmstrong@baylibre.com>
9840 S:      Maintained
9841 T:      git git://anongit.freedesktop.org/drm/drm-misc
9842 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
9843 F:      drivers/gpu/drm/bridge/ite-it66121.c
9844
9845 IVTV VIDEO4LINUX DRIVER
9846 M:      Andy Walls <awalls@md.metrocast.net>
9847 L:      linux-media@vger.kernel.org
9848 S:      Maintained
9849 W:      https://linuxtv.org
9850 T:      git git://linuxtv.org/media_tree.git
9851 F:      Documentation/admin-guide/media/ivtv*
9852 F:      drivers/media/pci/ivtv/
9853 F:      include/uapi/linux/ivtv*
9854
9855 IX2505V MEDIA DRIVER
9856 M:      Malcolm Priestley <tvboxspy@gmail.com>
9857 L:      linux-media@vger.kernel.org
9858 S:      Maintained
9859 W:      https://linuxtv.org
9860 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9861 F:      drivers/media/dvb-frontends/ix2505v*
9862
9863 JAILHOUSE HYPERVISOR INTERFACE
9864 M:      Jan Kiszka <jan.kiszka@siemens.com>
9865 L:      jailhouse-dev@googlegroups.com
9866 S:      Maintained
9867 F:      arch/x86/include/asm/jailhouse_para.h
9868 F:      arch/x86/kernel/jailhouse.c
9869
9870 JC42.4 TEMPERATURE SENSOR DRIVER
9871 M:      Guenter Roeck <linux@roeck-us.net>
9872 L:      linux-hwmon@vger.kernel.org
9873 S:      Maintained
9874 F:      Documentation/hwmon/jc42.rst
9875 F:      drivers/hwmon/jc42.c
9876
9877 JFS FILESYSTEM
9878 M:      Dave Kleikamp <shaggy@kernel.org>
9879 L:      jfs-discussion@lists.sourceforge.net
9880 S:      Maintained
9881 W:      http://jfs.sourceforge.net/
9882 T:      git git://github.com/kleikamp/linux-shaggy.git
9883 F:      Documentation/admin-guide/jfs.rst
9884 F:      fs/jfs/
9885
9886 JME NETWORK DRIVER
9887 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
9888 L:      netdev@vger.kernel.org
9889 S:      Maintained
9890 F:      drivers/net/ethernet/jme.*
9891
9892 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9893 M:      David Woodhouse <dwmw2@infradead.org>
9894 M:      Richard Weinberger <richard@nod.at>
9895 L:      linux-mtd@lists.infradead.org
9896 S:      Odd Fixes
9897 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9898 T:      git git://git.infradead.org/ubifs-2.6.git
9899 F:      fs/jffs2/
9900 F:      include/uapi/linux/jffs2.h
9901
9902 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9903 M:      "Theodore Ts'o" <tytso@mit.edu>
9904 M:      Jan Kara <jack@suse.com>
9905 L:      linux-ext4@vger.kernel.org
9906 S:      Maintained
9907 F:      fs/jbd2/
9908 F:      include/linux/jbd2.h
9909
9910 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9911 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9912 L:      linux-media@vger.kernel.org
9913 S:      Maintained
9914 F:      drivers/media/platform/rcar_jpu.c
9915
9916 JSM Neo PCI based serial card
9917 L:      linux-serial@vger.kernel.org
9918 S:      Orphan
9919 F:      drivers/tty/serial/jsm/
9920
9921 K10TEMP HARDWARE MONITORING DRIVER
9922 M:      Clemens Ladisch <clemens@ladisch.de>
9923 L:      linux-hwmon@vger.kernel.org
9924 S:      Maintained
9925 F:      Documentation/hwmon/k10temp.rst
9926 F:      drivers/hwmon/k10temp.c
9927
9928 K8TEMP HARDWARE MONITORING DRIVER
9929 M:      Rudolf Marek <r.marek@assembler.cz>
9930 L:      linux-hwmon@vger.kernel.org
9931 S:      Maintained
9932 F:      Documentation/hwmon/k8temp.rst
9933 F:      drivers/hwmon/k8temp.c
9934
9935 KASAN
9936 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
9937 R:      Alexander Potapenko <glider@google.com>
9938 R:      Andrey Konovalov <andreyknvl@gmail.com>
9939 R:      Dmitry Vyukov <dvyukov@google.com>
9940 L:      kasan-dev@googlegroups.com
9941 S:      Maintained
9942 F:      Documentation/dev-tools/kasan.rst
9943 F:      arch/*/include/asm/*kasan.h
9944 F:      arch/*/mm/kasan_init*
9945 F:      include/linux/kasan*.h
9946 F:      lib/Kconfig.kasan
9947 F:      lib/test_kasan*.c
9948 F:      mm/kasan/
9949 F:      scripts/Makefile.kasan
9950
9951 KCONFIG
9952 M:      Masahiro Yamada <masahiroy@kernel.org>
9953 L:      linux-kbuild@vger.kernel.org
9954 S:      Maintained
9955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9956 F:      Documentation/kbuild/kconfig*
9957 F:      scripts/Kconfig.include
9958 F:      scripts/kconfig/
9959
9960 KCOV
9961 R:      Dmitry Vyukov <dvyukov@google.com>
9962 R:      Andrey Konovalov <andreyknvl@gmail.com>
9963 L:      kasan-dev@googlegroups.com
9964 S:      Maintained
9965 F:      Documentation/dev-tools/kcov.rst
9966 F:      include/linux/kcov.h
9967 F:      include/uapi/linux/kcov.h
9968 F:      kernel/kcov.c
9969 F:      scripts/Makefile.kcov
9970
9971 KCSAN
9972 M:      Marco Elver <elver@google.com>
9973 R:      Dmitry Vyukov <dvyukov@google.com>
9974 L:      kasan-dev@googlegroups.com
9975 S:      Maintained
9976 F:      Documentation/dev-tools/kcsan.rst
9977 F:      include/linux/kcsan*.h
9978 F:      kernel/kcsan/
9979 F:      lib/Kconfig.kcsan
9980 F:      scripts/Makefile.kcsan
9981
9982 KDUMP
9983 M:      Dave Young <dyoung@redhat.com>
9984 M:      Baoquan He <bhe@redhat.com>
9985 R:      Vivek Goyal <vgoyal@redhat.com>
9986 L:      kexec@lists.infradead.org
9987 S:      Maintained
9988 W:      http://lse.sourceforge.net/kdump/
9989 F:      Documentation/admin-guide/kdump/
9990 F:      fs/proc/vmcore.c
9991 F:      include/linux/crash_core.h
9992 F:      include/linux/crash_dump.h
9993 F:      include/uapi/linux/vmcore.h
9994 F:      kernel/crash_*.c
9995
9996 KEENE FM RADIO TRANSMITTER DRIVER
9997 M:      Hans Verkuil <hverkuil@xs4all.nl>
9998 L:      linux-media@vger.kernel.org
9999 S:      Maintained
10000 W:      https://linuxtv.org
10001 T:      git git://linuxtv.org/media_tree.git
10002 F:      drivers/media/radio/radio-keene*
10003
10004 KERNEL AUTOMOUNTER
10005 M:      Ian Kent <raven@themaw.net>
10006 L:      autofs@vger.kernel.org
10007 S:      Maintained
10008 F:      fs/autofs/
10009
10010 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10011 M:      Masahiro Yamada <masahiroy@kernel.org>
10012 M:      Michal Marek <michal.lkml@markovi.net>
10013 L:      linux-kbuild@vger.kernel.org
10014 S:      Maintained
10015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10016 F:      Documentation/kbuild/
10017 F:      Makefile
10018 F:      scripts/*vmlinux*
10019 F:      scripts/Kbuild*
10020 F:      scripts/Makefile*
10021 F:      scripts/basic/
10022 F:      scripts/dummy-tools/
10023 F:      scripts/mk*
10024 F:      scripts/mod/
10025 F:      scripts/package/
10026
10027 KERNEL JANITORS
10028 L:      kernel-janitors@vger.kernel.org
10029 S:      Odd Fixes
10030 W:      http://kernelnewbies.org/KernelJanitors
10031
10032 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10033 M:      "J. Bruce Fields" <bfields@fieldses.org>
10034 M:      Chuck Lever <chuck.lever@oracle.com>
10035 L:      linux-nfs@vger.kernel.org
10036 S:      Supported
10037 W:      http://nfs.sourceforge.net/
10038 T:      git git://linux-nfs.org/~bfields/linux.git
10039 F:      fs/lockd/
10040 F:      fs/nfs_common/
10041 F:      fs/nfsd/
10042 F:      include/linux/lockd/
10043 F:      include/linux/sunrpc/
10044 F:      include/uapi/linux/nfsd/
10045 F:      include/uapi/linux/sunrpc/
10046 F:      net/sunrpc/
10047 F:      Documentation/filesystems/nfs/
10048
10049 KERNEL REGRESSIONS
10050 M:      Thorsten Leemhuis <linux@leemhuis.info>
10051 L:      regressions@lists.linux.dev
10052 S:      Supported
10053
10054 KERNEL SELFTEST FRAMEWORK
10055 M:      Shuah Khan <shuah@kernel.org>
10056 M:      Shuah Khan <skhan@linuxfoundation.org>
10057 L:      linux-kselftest@vger.kernel.org
10058 S:      Maintained
10059 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10061 F:      Documentation/dev-tools/kselftest*
10062 F:      tools/testing/selftests/
10063
10064 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10065 M:      Brendan Higgins <brendanhiggins@google.com>
10066 L:      linux-kselftest@vger.kernel.org
10067 L:      kunit-dev@googlegroups.com
10068 S:      Maintained
10069 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10070 F:      Documentation/dev-tools/kunit/
10071 F:      include/kunit/
10072 F:      lib/kunit/
10073 F:      tools/testing/kunit/
10074
10075 KERNEL USERMODE HELPER
10076 M:      Luis Chamberlain <mcgrof@kernel.org>
10077 L:      linux-kernel@vger.kernel.org
10078 S:      Maintained
10079 F:      include/linux/umh.h
10080 F:      kernel/umh.c
10081
10082 KERNEL VIRTUAL MACHINE (KVM)
10083 M:      Paolo Bonzini <pbonzini@redhat.com>
10084 L:      kvm@vger.kernel.org
10085 S:      Supported
10086 W:      http://www.linux-kvm.org
10087 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10088 F:      Documentation/virt/kvm/
10089 F:      include/asm-generic/kvm*
10090 F:      include/kvm/iodev.h
10091 F:      include/linux/kvm*
10092 F:      include/trace/events/kvm.h
10093 F:      include/uapi/asm-generic/kvm*
10094 F:      include/uapi/linux/kvm*
10095 F:      tools/kvm/
10096 F:      tools/testing/selftests/kvm/
10097 F:      virt/kvm/*
10098
10099 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10100 M:      Marc Zyngier <maz@kernel.org>
10101 R:      James Morse <james.morse@arm.com>
10102 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10103 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10104 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10105 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10106 S:      Maintained
10107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10108 F:      arch/arm64/include/asm/kvm*
10109 F:      arch/arm64/include/uapi/asm/kvm*
10110 F:      arch/arm64/kvm/
10111 F:      include/kvm/arm_*
10112 F:      tools/testing/selftests/kvm/*/aarch64/
10113 F:      tools/testing/selftests/kvm/aarch64/
10114
10115 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10116 M:      Huacai Chen <chenhuacai@kernel.org>
10117 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10118 L:      linux-mips@vger.kernel.org
10119 L:      kvm@vger.kernel.org
10120 S:      Maintained
10121 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10122 F:      arch/mips/include/asm/kvm*
10123 F:      arch/mips/include/uapi/asm/kvm*
10124 F:      arch/mips/kvm/
10125
10126 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10127 M:      Paul Mackerras <paulus@ozlabs.org>
10128 L:      kvm-ppc@vger.kernel.org
10129 S:      Supported
10130 W:      http://www.linux-kvm.org/
10131 T:      git git://github.com/agraf/linux-2.6.git
10132 F:      arch/powerpc/include/asm/kvm*
10133 F:      arch/powerpc/include/uapi/asm/kvm*
10134 F:      arch/powerpc/kernel/kvm*
10135 F:      arch/powerpc/kvm/
10136
10137 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10138 M:      Christian Borntraeger <borntraeger@de.ibm.com>
10139 M:      Janosch Frank <frankja@linux.ibm.com>
10140 R:      David Hildenbrand <david@redhat.com>
10141 R:      Cornelia Huck <cohuck@redhat.com>
10142 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10143 L:      kvm@vger.kernel.org
10144 S:      Supported
10145 W:      http://www.ibm.com/developerworks/linux/linux390/
10146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10147 F:      Documentation/virt/kvm/s390*
10148 F:      arch/s390/include/asm/gmap.h
10149 F:      arch/s390/include/asm/kvm*
10150 F:      arch/s390/include/uapi/asm/kvm*
10151 F:      arch/s390/kernel/uv.c
10152 F:      arch/s390/kvm/
10153 F:      arch/s390/mm/gmap.c
10154 F:      tools/testing/selftests/kvm/*/s390x/
10155 F:      tools/testing/selftests/kvm/s390x/
10156
10157 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10158 M:      Paolo Bonzini <pbonzini@redhat.com>
10159 R:      Sean Christopherson <seanjc@google.com>
10160 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10161 R:      Wanpeng Li <wanpengli@tencent.com>
10162 R:      Jim Mattson <jmattson@google.com>
10163 R:      Joerg Roedel <joro@8bytes.org>
10164 L:      kvm@vger.kernel.org
10165 S:      Supported
10166 W:      http://www.linux-kvm.org
10167 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10168 F:      arch/x86/include/asm/kvm*
10169 F:      arch/x86/include/asm/pvclock-abi.h
10170 F:      arch/x86/include/asm/svm.h
10171 F:      arch/x86/include/asm/vmx*.h
10172 F:      arch/x86/include/uapi/asm/kvm*
10173 F:      arch/x86/include/uapi/asm/svm.h
10174 F:      arch/x86/include/uapi/asm/vmx.h
10175 F:      arch/x86/kernel/kvm.c
10176 F:      arch/x86/kernel/kvmclock.c
10177 F:      arch/x86/kvm/
10178 F:      arch/x86/kvm/*/
10179
10180 KERNFS
10181 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10182 M:      Tejun Heo <tj@kernel.org>
10183 S:      Supported
10184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10185 F:      fs/kernfs/
10186 F:      include/linux/kernfs.h
10187
10188 KEXEC
10189 M:      Eric Biederman <ebiederm@xmission.com>
10190 L:      kexec@lists.infradead.org
10191 S:      Maintained
10192 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10193 F:      include/linux/kexec.h
10194 F:      include/uapi/linux/kexec.h
10195 F:      kernel/kexec*
10196
10197 KEYS-ENCRYPTED
10198 M:      Mimi Zohar <zohar@linux.ibm.com>
10199 L:      linux-integrity@vger.kernel.org
10200 L:      keyrings@vger.kernel.org
10201 S:      Supported
10202 F:      Documentation/security/keys/trusted-encrypted.rst
10203 F:      include/keys/encrypted-type.h
10204 F:      security/keys/encrypted-keys/
10205
10206 KEYS-TRUSTED
10207 M:      James Bottomley <jejb@linux.ibm.com>
10208 M:      Jarkko Sakkinen <jarkko@kernel.org>
10209 M:      Mimi Zohar <zohar@linux.ibm.com>
10210 L:      linux-integrity@vger.kernel.org
10211 L:      keyrings@vger.kernel.org
10212 S:      Supported
10213 F:      Documentation/security/keys/trusted-encrypted.rst
10214 F:      include/keys/trusted-type.h
10215 F:      include/keys/trusted_tpm.h
10216 F:      security/keys/trusted-keys/
10217
10218 KEYS-TRUSTED-TEE
10219 M:      Sumit Garg <sumit.garg@linaro.org>
10220 L:      linux-integrity@vger.kernel.org
10221 L:      keyrings@vger.kernel.org
10222 S:      Supported
10223 F:      include/keys/trusted_tee.h
10224 F:      security/keys/trusted-keys/trusted_tee.c
10225
10226 KEYS/KEYRINGS
10227 M:      David Howells <dhowells@redhat.com>
10228 M:      Jarkko Sakkinen <jarkko@kernel.org>
10229 L:      keyrings@vger.kernel.org
10230 S:      Maintained
10231 F:      Documentation/security/keys/core.rst
10232 F:      include/keys/
10233 F:      include/linux/key-type.h
10234 F:      include/linux/key.h
10235 F:      include/linux/keyctl.h
10236 F:      include/uapi/linux/keyctl.h
10237 F:      security/keys/
10238
10239 KFENCE
10240 M:      Alexander Potapenko <glider@google.com>
10241 M:      Marco Elver <elver@google.com>
10242 R:      Dmitry Vyukov <dvyukov@google.com>
10243 L:      kasan-dev@googlegroups.com
10244 S:      Maintained
10245 F:      Documentation/dev-tools/kfence.rst
10246 F:      arch/*/include/asm/kfence.h
10247 F:      include/linux/kfence.h
10248 F:      lib/Kconfig.kfence
10249 F:      mm/kfence/
10250
10251 KFIFO
10252 M:      Stefani Seibold <stefani@seibold.net>
10253 S:      Maintained
10254 F:      include/linux/kfifo.h
10255 F:      lib/kfifo.c
10256 F:      samples/kfifo/
10257
10258 KGDB / KDB /debug_core
10259 M:      Jason Wessel <jason.wessel@windriver.com>
10260 M:      Daniel Thompson <daniel.thompson@linaro.org>
10261 R:      Douglas Anderson <dianders@chromium.org>
10262 L:      kgdb-bugreport@lists.sourceforge.net
10263 S:      Maintained
10264 W:      http://kgdb.wiki.kernel.org/
10265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10266 F:      Documentation/dev-tools/kgdb.rst
10267 F:      drivers/misc/kgdbts.c
10268 F:      drivers/tty/serial/kgdboc.c
10269 F:      include/linux/kdb.h
10270 F:      include/linux/kgdb.h
10271 F:      kernel/debug/
10272
10273 KHADAS MCU MFD DRIVER
10274 M:      Neil Armstrong <narmstrong@baylibre.com>
10275 L:      linux-amlogic@lists.infradead.org
10276 S:      Maintained
10277 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10278 F:      drivers/mfd/khadas-mcu.c
10279 F:      include/linux/mfd/khadas-mcu.h
10280 F:      drivers/thermal/khadas_mcu_fan.c
10281
10282 KMEMLEAK
10283 M:      Catalin Marinas <catalin.marinas@arm.com>
10284 S:      Maintained
10285 F:      Documentation/dev-tools/kmemleak.rst
10286 F:      include/linux/kmemleak.h
10287 F:      mm/kmemleak.c
10288 F:      samples/kmemleak/kmemleak-test.c
10289
10290 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10291 M:      Luis Chamberlain <mcgrof@kernel.org>
10292 L:      linux-kernel@vger.kernel.org
10293 S:      Maintained
10294 F:      include/linux/kmod.h
10295 F:      kernel/kmod.c
10296 F:      lib/test_kmod.c
10297 F:      tools/testing/selftests/kmod/
10298
10299 KPROBES
10300 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10301 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10302 M:      "David S. Miller" <davem@davemloft.net>
10303 M:      Masami Hiramatsu <mhiramat@kernel.org>
10304 S:      Maintained
10305 F:      Documentation/trace/kprobes.rst
10306 F:      include/asm-generic/kprobes.h
10307 F:      include/linux/kprobes.h
10308 F:      kernel/kprobes.c
10309
10310 KS0108 LCD CONTROLLER DRIVER
10311 M:      Miguel Ojeda <ojeda@kernel.org>
10312 S:      Maintained
10313 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10314 F:      drivers/auxdisplay/ks0108.c
10315 F:      include/linux/ks0108.h
10316
10317 KTD253 BACKLIGHT DRIVER
10318 M:      Linus Walleij <linus.walleij@linaro.org>
10319 S:      Maintained
10320 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10321 F:      drivers/video/backlight/ktd253-backlight.c
10322
10323 KTEST
10324 M:      Steven Rostedt <rostedt@goodmis.org>
10325 M:      John Hawley <warthog9@eaglescrag.net>
10326 S:      Maintained
10327 F:      tools/testing/ktest
10328
10329 L3MDEV
10330 M:      David Ahern <dsahern@kernel.org>
10331 L:      netdev@vger.kernel.org
10332 S:      Maintained
10333 F:      include/net/l3mdev.h
10334 F:      net/l3mdev
10335
10336 L7 BPF FRAMEWORK
10337 M:      John Fastabend <john.fastabend@gmail.com>
10338 M:      Daniel Borkmann <daniel@iogearbox.net>
10339 M:      Jakub Sitnicki <jakub@cloudflare.com>
10340 M:      Lorenz Bauer <lmb@cloudflare.com>
10341 L:      netdev@vger.kernel.org
10342 L:      bpf@vger.kernel.org
10343 S:      Maintained
10344 F:      include/linux/skmsg.h
10345 F:      net/core/skmsg.c
10346 F:      net/core/sock_map.c
10347 F:      net/ipv4/tcp_bpf.c
10348 F:      net/ipv4/udp_bpf.c
10349
10350 LANDLOCK SECURITY MODULE
10351 M:      Mickaël Salaün <mic@digikod.net>
10352 L:      linux-security-module@vger.kernel.org
10353 S:      Supported
10354 W:      https://landlock.io
10355 T:      git https://github.com/landlock-lsm/linux.git
10356 F:      Documentation/security/landlock.rst
10357 F:      Documentation/userspace-api/landlock.rst
10358 F:      include/uapi/linux/landlock.h
10359 F:      samples/landlock/
10360 F:      security/landlock/
10361 F:      tools/testing/selftests/landlock/
10362 K:      landlock
10363 K:      LANDLOCK
10364
10365 LANTIQ / INTEL Ethernet drivers
10366 M:      Hauke Mehrtens <hauke@hauke-m.de>
10367 L:      netdev@vger.kernel.org
10368 S:      Maintained
10369 F:      drivers/net/dsa/lantiq_gswip.c
10370 F:      drivers/net/dsa/lantiq_pce.h
10371 F:      drivers/net/ethernet/lantiq_xrx200.c
10372 F:      net/dsa/tag_gswip.c
10373
10374 LANTIQ MIPS ARCHITECTURE
10375 M:      John Crispin <john@phrozen.org>
10376 L:      linux-mips@vger.kernel.org
10377 S:      Maintained
10378 F:      arch/mips/lantiq
10379 F:      drivers/soc/lantiq
10380
10381 LASI 53c700 driver for PARISC
10382 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10383 L:      linux-scsi@vger.kernel.org
10384 S:      Maintained
10385 F:      Documentation/scsi/53c700.rst
10386 F:      drivers/scsi/53c700*
10387
10388 LEAKING_ADDRESSES
10389 M:      Tobin C. Harding <me@tobin.cc>
10390 M:      Tycho Andersen <tycho@tycho.pizza>
10391 L:      linux-hardening@vger.kernel.org
10392 S:      Maintained
10393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10394 F:      scripts/leaking_addresses.pl
10395
10396 LED SUBSYSTEM
10397 M:      Pavel Machek <pavel@ucw.cz>
10398 L:      linux-leds@vger.kernel.org
10399 S:      Maintained
10400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10401 F:      Documentation/devicetree/bindings/leds/
10402 F:      drivers/leds/
10403 F:      include/linux/leds.h
10404
10405 LEGACY EEPROM DRIVER
10406 M:      Jean Delvare <jdelvare@suse.com>
10407 S:      Maintained
10408 F:      Documentation/misc-devices/eeprom.rst
10409 F:      drivers/misc/eeprom/eeprom.c
10410
10411 LEGO MINDSTORMS EV3
10412 R:      David Lechner <david@lechnology.com>
10413 S:      Maintained
10414 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10415 F:      arch/arm/boot/dts/da850-lego-ev3.dts
10416 F:      drivers/power/supply/lego_ev3_battery.c
10417
10418 LEGO USB Tower driver
10419 M:      Juergen Stuber <starblue@users.sourceforge.net>
10420 L:      legousb-devel@lists.sourceforge.net
10421 S:      Maintained
10422 W:      http://legousb.sourceforge.net/
10423 F:      drivers/usb/misc/legousbtower.c
10424
10425 LG LAPTOP EXTRAS
10426 M:      Matan Ziv-Av <matan@svgalib.org>
10427 L:      platform-driver-x86@vger.kernel.org
10428 S:      Maintained
10429 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
10430 F:      Documentation/admin-guide/laptops/lg-laptop.rst
10431 F:      drivers/platform/x86/lg-laptop.c
10432
10433 LG2160 MEDIA DRIVER
10434 M:      Michael Krufky <mkrufky@linuxtv.org>
10435 L:      linux-media@vger.kernel.org
10436 S:      Maintained
10437 W:      https://linuxtv.org
10438 W:      http://github.com/mkrufky
10439 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10440 T:      git git://linuxtv.org/mkrufky/tuners.git
10441 F:      drivers/media/dvb-frontends/lg2160.*
10442
10443 LGDT3305 MEDIA DRIVER
10444 M:      Michael Krufky <mkrufky@linuxtv.org>
10445 L:      linux-media@vger.kernel.org
10446 S:      Maintained
10447 W:      https://linuxtv.org
10448 W:      http://github.com/mkrufky
10449 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10450 T:      git git://linuxtv.org/mkrufky/tuners.git
10451 F:      drivers/media/dvb-frontends/lgdt3305.*
10452
10453 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10454 M:      Viresh Kumar <vireshk@kernel.org>
10455 L:      linux-ide@vger.kernel.org
10456 S:      Maintained
10457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10458 F:      drivers/ata/pata_arasan_cf.c
10459 F:      include/linux/pata_arasan_cf_data.h
10460
10461 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10462 M:      Linus Walleij <linus.walleij@linaro.org>
10463 L:      linux-ide@vger.kernel.org
10464 S:      Maintained
10465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10466 F:      drivers/ata/pata_ftide010.c
10467 F:      drivers/ata/sata_gemini.c
10468 F:      drivers/ata/sata_gemini.h
10469
10470 LIBATA SATA AHCI PLATFORM devices support
10471 M:      Hans de Goede <hdegoede@redhat.com>
10472 M:      Jens Axboe <axboe@kernel.dk>
10473 L:      linux-ide@vger.kernel.org
10474 S:      Maintained
10475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10476 F:      drivers/ata/ahci_platform.c
10477 F:      drivers/ata/libahci_platform.c
10478 F:      include/linux/ahci_platform.h
10479
10480 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10481 M:      Mikael Pettersson <mikpelinux@gmail.com>
10482 L:      linux-ide@vger.kernel.org
10483 S:      Maintained
10484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10485 F:      drivers/ata/sata_promise.*
10486
10487 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10488 M:      Jens Axboe <axboe@kernel.dk>
10489 L:      linux-ide@vger.kernel.org
10490 S:      Maintained
10491 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10492 F:      Documentation/devicetree/bindings/ata/
10493 F:      drivers/ata/
10494 F:      include/linux/ata.h
10495 F:      include/linux/libata.h
10496
10497 LIBLOCKDEP
10498 M:      Sasha Levin <alexander.levin@microsoft.com>
10499 S:      Maintained
10500 F:      tools/lib/lockdep/
10501
10502 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10503 M:      Dan Williams <dan.j.williams@intel.com>
10504 M:      Vishal Verma <vishal.l.verma@intel.com>
10505 M:      Dave Jiang <dave.jiang@intel.com>
10506 L:      nvdimm@lists.linux.dev
10507 S:      Supported
10508 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10509 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10510 F:      drivers/nvdimm/blk.c
10511 F:      drivers/nvdimm/region_devs.c
10512
10513 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10514 M:      Vishal Verma <vishal.l.verma@intel.com>
10515 M:      Dan Williams <dan.j.williams@intel.com>
10516 M:      Dave Jiang <dave.jiang@intel.com>
10517 L:      nvdimm@lists.linux.dev
10518 S:      Supported
10519 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10520 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10521 F:      drivers/nvdimm/btt*
10522
10523 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10524 M:      Dan Williams <dan.j.williams@intel.com>
10525 M:      Vishal Verma <vishal.l.verma@intel.com>
10526 M:      Dave Jiang <dave.jiang@intel.com>
10527 L:      nvdimm@lists.linux.dev
10528 S:      Supported
10529 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10530 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10531 F:      drivers/nvdimm/pmem*
10532
10533 LIBNVDIMM: DEVICETREE BINDINGS
10534 M:      Oliver O'Halloran <oohall@gmail.com>
10535 L:      nvdimm@lists.linux.dev
10536 S:      Supported
10537 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10538 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10539 F:      drivers/nvdimm/of_pmem.c
10540
10541 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10542 M:      Dan Williams <dan.j.williams@intel.com>
10543 M:      Vishal Verma <vishal.l.verma@intel.com>
10544 M:      Dave Jiang <dave.jiang@intel.com>
10545 M:      Ira Weiny <ira.weiny@intel.com>
10546 L:      nvdimm@lists.linux.dev
10547 S:      Supported
10548 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10549 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10551 F:      drivers/acpi/nfit/*
10552 F:      drivers/nvdimm/*
10553 F:      include/linux/libnvdimm.h
10554 F:      include/linux/nd.h
10555 F:      include/uapi/linux/ndctl.h
10556 F:      tools/testing/nvdimm/
10557
10558 LICENSES and SPDX stuff
10559 M:      Thomas Gleixner <tglx@linutronix.de>
10560 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10561 L:      linux-spdx@vger.kernel.org
10562 S:      Maintained
10563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10564 F:      COPYING
10565 F:      Documentation/process/license-rules.rst
10566 F:      LICENSES/
10567 F:      scripts/spdxcheck-test.sh
10568 F:      scripts/spdxcheck.py
10569
10570 LIGHTNVM PLATFORM SUPPORT
10571 M:      Matias Bjorling <mb@lightnvm.io>
10572 L:      linux-block@vger.kernel.org
10573 S:      Maintained
10574 W:      http://github/OpenChannelSSD
10575 F:      drivers/lightnvm/
10576 F:      include/linux/lightnvm.h
10577 F:      include/uapi/linux/lightnvm.h
10578
10579 LINEAR RANGES HELPERS
10580 M:      Mark Brown <broonie@kernel.org>
10581 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10582 F:      lib/linear_ranges.c
10583 F:      lib/test_linear_ranges.c
10584 F:      include/linux/linear_range.h
10585
10586 LINUX FOR POWER MACINTOSH
10587 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10588 L:      linuxppc-dev@lists.ozlabs.org
10589 S:      Odd Fixes
10590 F:      arch/powerpc/platforms/powermac/
10591 F:      drivers/macintosh/
10592
10593 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10594 M:      Michael Ellerman <mpe@ellerman.id.au>
10595 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10596 R:      Paul Mackerras <paulus@samba.org>
10597 L:      linuxppc-dev@lists.ozlabs.org
10598 S:      Supported
10599 W:      https://github.com/linuxppc/wiki/wiki
10600 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10602 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10603 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10604 F:      Documentation/devicetree/bindings/powerpc/
10605 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10606 F:      Documentation/powerpc/
10607 F:      arch/powerpc/
10608 F:      drivers/*/*/*pasemi*
10609 F:      drivers/*/*pasemi*
10610 F:      drivers/char/tpm/tpm_ibmvtpm*
10611 F:      drivers/crypto/nx/
10612 F:      drivers/crypto/vmx/
10613 F:      drivers/i2c/busses/i2c-opal.c
10614 F:      drivers/net/ethernet/ibm/ibmveth.*
10615 F:      drivers/net/ethernet/ibm/ibmvnic.*
10616 F:      drivers/pci/hotplug/pnv_php.c
10617 F:      drivers/pci/hotplug/rpa*
10618 F:      drivers/rtc/rtc-opal.c
10619 F:      drivers/scsi/ibmvscsi/
10620 F:      drivers/tty/hvc/hvc_opal.c
10621 F:      drivers/watchdog/wdrtas.c
10622 F:      tools/testing/selftests/powerpc
10623 N:      /pmac
10624 N:      powermac
10625 N:      powernv
10626 N:      [^a-z0-9]ps3
10627 N:      pseries
10628
10629 LINUX FOR POWERPC EMBEDDED MPC5XXX
10630 M:      Anatolij Gustschin <agust@denx.de>
10631 L:      linuxppc-dev@lists.ozlabs.org
10632 S:      Odd Fixes
10633 F:      arch/powerpc/platforms/512x/
10634 F:      arch/powerpc/platforms/52xx/
10635
10636 LINUX FOR POWERPC EMBEDDED PPC4XX
10637 L:      linuxppc-dev@lists.ozlabs.org
10638 S:      Orphan
10639 F:      arch/powerpc/platforms/40x/
10640 F:      arch/powerpc/platforms/44x/
10641
10642 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10643 M:      Scott Wood <oss@buserror.net>
10644 L:      linuxppc-dev@lists.ozlabs.org
10645 S:      Odd fixes
10646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10647 F:      Documentation/devicetree/bindings/powerpc/fsl/
10648 F:      arch/powerpc/platforms/83xx/
10649 F:      arch/powerpc/platforms/85xx/
10650
10651 LINUX FOR POWERPC EMBEDDED PPC8XX
10652 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10653 L:      linuxppc-dev@lists.ozlabs.org
10654 S:      Maintained
10655 F:      arch/powerpc/platforms/8xx/
10656
10657 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10658 M:      Kees Cook <keescook@chromium.org>
10659 S:      Maintained
10660 F:      drivers/misc/lkdtm/*
10661 F:      tools/testing/selftests/lkdtm/*
10662
10663 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10664 M:      Alan Stern <stern@rowland.harvard.edu>
10665 M:      Andrea Parri <parri.andrea@gmail.com>
10666 M:      Will Deacon <will@kernel.org>
10667 M:      Peter Zijlstra <peterz@infradead.org>
10668 M:      Boqun Feng <boqun.feng@gmail.com>
10669 M:      Nicholas Piggin <npiggin@gmail.com>
10670 M:      David Howells <dhowells@redhat.com>
10671 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10672 M:      Luc Maranget <luc.maranget@inria.fr>
10673 M:      "Paul E. McKenney" <paulmck@kernel.org>
10674 R:      Akira Yokosawa <akiyks@gmail.com>
10675 R:      Daniel Lustig <dlustig@nvidia.com>
10676 R:      Joel Fernandes <joel@joelfernandes.org>
10677 L:      linux-kernel@vger.kernel.org
10678 L:      linux-arch@vger.kernel.org
10679 S:      Supported
10680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10681 F:      Documentation/atomic_bitops.txt
10682 F:      Documentation/atomic_t.txt
10683 F:      Documentation/core-api/refcount-vs-atomic.rst
10684 F:      Documentation/litmus-tests/
10685 F:      Documentation/memory-barriers.txt
10686 F:      tools/memory-model/
10687
10688 LIS3LV02D ACCELEROMETER DRIVER
10689 M:      Eric Piel <eric.piel@tremplin-utc.net>
10690 S:      Maintained
10691 F:      Documentation/misc-devices/lis3lv02d.rst
10692 F:      drivers/misc/lis3lv02d/
10693 F:      drivers/platform/x86/hp_accel.c
10694
10695 LIST KUNIT TEST
10696 M:      David Gow <davidgow@google.com>
10697 L:      linux-kselftest@vger.kernel.org
10698 L:      kunit-dev@googlegroups.com
10699 S:      Maintained
10700 F:      lib/list-test.c
10701
10702 LITEX PLATFORM
10703 M:      Karol Gugala <kgugala@antmicro.com>
10704 M:      Mateusz Holenko <mholenko@antmicro.com>
10705 S:      Maintained
10706 F:      Documentation/devicetree/bindings/*/litex,*.yaml
10707 F:      arch/openrisc/boot/dts/or1klitex.dts
10708 F:      drivers/soc/litex/litex_soc_ctrl.c
10709 F:      drivers/tty/serial/liteuart.c
10710 F:      include/linux/litex.h
10711
10712 LIVE PATCHING
10713 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10714 M:      Jiri Kosina <jikos@kernel.org>
10715 M:      Miroslav Benes <mbenes@suse.cz>
10716 M:      Petr Mladek <pmladek@suse.com>
10717 R:      Joe Lawrence <joe.lawrence@redhat.com>
10718 L:      live-patching@vger.kernel.org
10719 S:      Maintained
10720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10721 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10722 F:      Documentation/livepatch/
10723 F:      arch/powerpc/include/asm/livepatch.h
10724 F:      arch/s390/include/asm/livepatch.h
10725 F:      arch/x86/include/asm/livepatch.h
10726 F:      include/linux/livepatch.h
10727 F:      kernel/livepatch/
10728 F:      lib/livepatch/
10729 F:      samples/livepatch/
10730 F:      tools/testing/selftests/livepatch/
10731
10732 LLC (802.2)
10733 L:      netdev@vger.kernel.org
10734 S:      Odd fixes
10735 F:      include/linux/llc.h
10736 F:      include/net/llc*
10737 F:      include/uapi/linux/llc.h
10738 F:      net/llc/
10739
10740 LM73 HARDWARE MONITOR DRIVER
10741 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10742 L:      linux-hwmon@vger.kernel.org
10743 S:      Maintained
10744 F:      drivers/hwmon/lm73.c
10745
10746 LM78 HARDWARE MONITOR DRIVER
10747 M:      Jean Delvare <jdelvare@suse.com>
10748 L:      linux-hwmon@vger.kernel.org
10749 S:      Maintained
10750 F:      Documentation/hwmon/lm78.rst
10751 F:      drivers/hwmon/lm78.c
10752
10753 LM83 HARDWARE MONITOR DRIVER
10754 M:      Jean Delvare <jdelvare@suse.com>
10755 L:      linux-hwmon@vger.kernel.org
10756 S:      Maintained
10757 F:      Documentation/hwmon/lm83.rst
10758 F:      drivers/hwmon/lm83.c
10759
10760 LM90 HARDWARE MONITOR DRIVER
10761 M:      Jean Delvare <jdelvare@suse.com>
10762 L:      linux-hwmon@vger.kernel.org
10763 S:      Maintained
10764 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10765 F:      Documentation/hwmon/lm90.rst
10766 F:      drivers/hwmon/lm90.c
10767 F:      include/dt-bindings/thermal/lm90.h
10768
10769 LM95234 HARDWARE MONITOR DRIVER
10770 M:      Guenter Roeck <linux@roeck-us.net>
10771 L:      linux-hwmon@vger.kernel.org
10772 S:      Maintained
10773 F:      Documentation/hwmon/lm95234.rst
10774 F:      drivers/hwmon/lm95234.c
10775
10776 LME2510 MEDIA DRIVER
10777 M:      Malcolm Priestley <tvboxspy@gmail.com>
10778 L:      linux-media@vger.kernel.org
10779 S:      Maintained
10780 W:      https://linuxtv.org
10781 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10782 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10783
10784 LOADPIN SECURITY MODULE
10785 M:      Kees Cook <keescook@chromium.org>
10786 S:      Supported
10787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10788 F:      Documentation/admin-guide/LSM/LoadPin.rst
10789 F:      security/loadpin/
10790
10791 LOCKING PRIMITIVES
10792 M:      Peter Zijlstra <peterz@infradead.org>
10793 M:      Ingo Molnar <mingo@redhat.com>
10794 M:      Will Deacon <will@kernel.org>
10795 R:      Waiman Long <longman@redhat.com>
10796 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
10797 L:      linux-kernel@vger.kernel.org
10798 S:      Maintained
10799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10800 F:      Documentation/locking/
10801 F:      arch/*/include/asm/spinlock*.h
10802 F:      include/linux/lockdep.h
10803 F:      include/linux/mutex*.h
10804 F:      include/linux/rwlock*.h
10805 F:      include/linux/rwsem*.h
10806 F:      include/linux/seqlock.h
10807 F:      include/linux/spinlock*.h
10808 F:      kernel/locking/
10809 F:      lib/locking*.[ch]
10810 X:      kernel/locking/locktorture.c
10811
10812 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10813 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
10814 L:      linux-ntfs-dev@lists.sourceforge.net
10815 S:      Maintained
10816 W:      http://www.linux-ntfs.org/content/view/19/37/
10817 F:      Documentation/admin-guide/ldm.rst
10818 F:      block/partitions/ldm.*
10819
10820 LOGITECH HID GAMING KEYBOARDS
10821 M:      Hans de Goede <hdegoede@redhat.com>
10822 L:      linux-input@vger.kernel.org
10823 S:      Maintained
10824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10825 F:      drivers/hid/hid-lg-g15.c
10826
10827 LONTIUM LT8912B MIPI TO HDMI BRIDGE
10828 M:      Adrien Grassein <adrien.grassein@gmail.com>
10829 S:      Maintained
10830 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
10831 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
10832
10833 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10834 M:      Sathya Prakash <sathya.prakash@broadcom.com>
10835 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
10836 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10837 L:      MPT-FusionLinux.pdl@broadcom.com
10838 L:      linux-scsi@vger.kernel.org
10839 S:      Supported
10840 W:      http://www.avagotech.com/support/
10841 F:      drivers/message/fusion/
10842 F:      drivers/scsi/mpt3sas/
10843
10844 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10845 M:      Matthew Wilcox <willy@infradead.org>
10846 L:      linux-scsi@vger.kernel.org
10847 S:      Maintained
10848 F:      drivers/scsi/sym53c8xx_2/
10849
10850 LTC1660 DAC DRIVER
10851 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10852 L:      linux-iio@vger.kernel.org
10853 S:      Maintained
10854 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10855 F:      drivers/iio/dac/ltc1660.c
10856
10857 LTC2947 HARDWARE MONITOR DRIVER
10858 M:      Nuno Sá <nuno.sa@analog.com>
10859 L:      linux-hwmon@vger.kernel.org
10860 S:      Supported
10861 W:      http://ez.analog.com/community/linux-device-drivers
10862 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10863 F:      drivers/hwmon/ltc2947-core.c
10864 F:      drivers/hwmon/ltc2947-i2c.c
10865 F:      drivers/hwmon/ltc2947-spi.c
10866 F:      drivers/hwmon/ltc2947.h
10867
10868 LTC2983 IIO TEMPERATURE DRIVER
10869 M:      Nuno Sá <nuno.sa@analog.com>
10870 L:      linux-iio@vger.kernel.org
10871 S:      Supported
10872 W:      http://ez.analog.com/community/linux-device-drivers
10873 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10874 F:      drivers/iio/temperature/ltc2983.c
10875
10876 LTC4261 HARDWARE MONITOR DRIVER
10877 M:      Guenter Roeck <linux@roeck-us.net>
10878 L:      linux-hwmon@vger.kernel.org
10879 S:      Maintained
10880 F:      Documentation/hwmon/ltc4261.rst
10881 F:      drivers/hwmon/ltc4261.c
10882
10883 LTC4306 I2C MULTIPLEXER DRIVER
10884 M:      Michael Hennerich <michael.hennerich@analog.com>
10885 L:      linux-i2c@vger.kernel.org
10886 S:      Supported
10887 W:      http://ez.analog.com/community/linux-device-drivers
10888 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10889 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10890
10891 LTP (Linux Test Project)
10892 M:      Mike Frysinger <vapier@gentoo.org>
10893 M:      Cyril Hrubis <chrubis@suse.cz>
10894 M:      Wanlong Gao <wanlong.gao@gmail.com>
10895 M:      Jan Stancek <jstancek@redhat.com>
10896 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
10897 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
10898 L:      ltp@lists.linux.it (subscribers-only)
10899 S:      Maintained
10900 W:      http://linux-test-project.github.io/
10901 T:      git git://github.com/linux-test-project/ltp.git
10902
10903 LYNX PCS MODULE
10904 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
10905 L:      netdev@vger.kernel.org
10906 S:      Supported
10907 F:      drivers/net/pcs/pcs-lynx.c
10908 F:      include/linux/pcs-lynx.h
10909
10910 M68K ARCHITECTURE
10911 M:      Geert Uytterhoeven <geert@linux-m68k.org>
10912 L:      linux-m68k@lists.linux-m68k.org
10913 S:      Maintained
10914 W:      http://www.linux-m68k.org/
10915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10916 F:      arch/m68k/
10917 F:      drivers/zorro/
10918
10919 M68K ON APPLE MACINTOSH
10920 M:      Joshua Thompson <funaho@jurai.org>
10921 L:      linux-m68k@lists.linux-m68k.org
10922 S:      Maintained
10923 W:      http://www.mac.linux-m68k.org/
10924 F:      arch/m68k/mac/
10925 F:      drivers/macintosh/adb-iop.c
10926 F:      drivers/macintosh/via-macii.c
10927
10928 M68K ON HP9000/300
10929 M:      Philip Blundell <philb@gnu.org>
10930 S:      Maintained
10931 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10932 F:      arch/m68k/hp300/
10933
10934 M88DS3103 MEDIA DRIVER
10935 M:      Antti Palosaari <crope@iki.fi>
10936 L:      linux-media@vger.kernel.org
10937 S:      Maintained
10938 W:      https://linuxtv.org
10939 W:      http://palosaari.fi/linux/
10940 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10941 T:      git git://linuxtv.org/anttip/media_tree.git
10942 F:      drivers/media/dvb-frontends/m88ds3103*
10943
10944 M88RS2000 MEDIA DRIVER
10945 M:      Malcolm Priestley <tvboxspy@gmail.com>
10946 L:      linux-media@vger.kernel.org
10947 S:      Maintained
10948 W:      https://linuxtv.org
10949 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10950 F:      drivers/media/dvb-frontends/m88rs2000*
10951
10952 MA901 MASTERKIT USB FM RADIO DRIVER
10953 M:      Alexey Klimov <klimov.linux@gmail.com>
10954 L:      linux-media@vger.kernel.org
10955 S:      Maintained
10956 T:      git git://linuxtv.org/media_tree.git
10957 F:      drivers/media/radio/radio-ma901.c
10958
10959 MAC80211
10960 M:      Johannes Berg <johannes@sipsolutions.net>
10961 L:      linux-wireless@vger.kernel.org
10962 S:      Maintained
10963 W:      https://wireless.wiki.kernel.org/
10964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10966 F:      Documentation/networking/mac80211-injection.rst
10967 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10968 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10969 F:      include/net/mac80211.h
10970 F:      net/mac80211/
10971
10972 MAILBOX API
10973 M:      Jassi Brar <jassisinghbrar@gmail.com>
10974 L:      linux-kernel@vger.kernel.org
10975 S:      Maintained
10976 F:      drivers/mailbox/
10977 F:      include/linux/mailbox_client.h
10978 F:      include/linux/mailbox_controller.h
10979 F:      include/dt-bindings/mailbox/
10980 F:      Documentation/devicetree/bindings/mailbox/
10981
10982 MAILBOX ARM MHUv2
10983 M:      Viresh Kumar <viresh.kumar@linaro.org>
10984 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
10985 L:      linux-kernel@vger.kernel.org
10986 S:      Maintained
10987 F:      drivers/mailbox/arm_mhuv2.c
10988 F:      include/linux/mailbox/arm_mhuv2_message.h
10989 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
10990
10991 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10992 M:      Michael Kerrisk <mtk.manpages@gmail.com>
10993 L:      linux-man@vger.kernel.org
10994 S:      Maintained
10995 W:      http://www.kernel.org/doc/man-pages
10996
10997 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10998 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
10999 L:      linux-mips@vger.kernel.org
11000 S:      Maintained
11001 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
11002
11003 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11004 M:      Andrew Lunn <andrew@lunn.ch>
11005 M:      Vivien Didelot <vivien.didelot@gmail.com>
11006 L:      netdev@vger.kernel.org
11007 S:      Maintained
11008 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11009 F:      Documentation/networking/devlink/mv88e6xxx.rst
11010 F:      drivers/net/dsa/mv88e6xxx/
11011 F:      include/linux/platform_data/mv88e6xxx.h
11012
11013 MARVELL ARMADA 3700 PHY DRIVERS
11014 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11015 S:      Maintained
11016 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11017 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11018 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11019 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11020
11021 MARVELL ARMADA DRM SUPPORT
11022 M:      Russell King <linux@armlinux.org.uk>
11023 S:      Maintained
11024 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11025 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11026 F:      Documentation/devicetree/bindings/display/armada/
11027 F:      drivers/gpu/drm/armada/
11028 F:      include/uapi/drm/armada_drm.h
11029
11030 MARVELL CRYPTO DRIVER
11031 M:      Boris Brezillon <bbrezillon@kernel.org>
11032 M:      Arnaud Ebalard <arno@natisbad.org>
11033 M:      Srujana Challa <schalla@marvell.com>
11034 L:      linux-crypto@vger.kernel.org
11035 S:      Maintained
11036 F:      drivers/crypto/marvell/
11037 F:      include/linux/soc/marvell/octeontx2/
11038
11039 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11040 M:      Mirko Lindner <mlindner@marvell.com>
11041 M:      Stephen Hemminger <stephen@networkplumber.org>
11042 L:      netdev@vger.kernel.org
11043 S:      Maintained
11044 F:      drivers/net/ethernet/marvell/sk*
11045
11046 MARVELL LIBERTAS WIRELESS DRIVER
11047 L:      libertas-dev@lists.infradead.org
11048 S:      Orphan
11049 F:      drivers/net/wireless/marvell/libertas/
11050
11051 MARVELL MACCHIATOBIN SUPPORT
11052 M:      Russell King <linux@armlinux.org.uk>
11053 L:      linux-arm-kernel@lists.infradead.org
11054 S:      Maintained
11055 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11056
11057 MARVELL MV643XX ETHERNET DRIVER
11058 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11059 L:      netdev@vger.kernel.org
11060 S:      Maintained
11061 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11062 F:      include/linux/mv643xx.h
11063
11064 MARVELL MV88X3310 PHY DRIVER
11065 M:      Russell King <linux@armlinux.org.uk>
11066 M:      Marek Behún <kabel@kernel.org>
11067 L:      netdev@vger.kernel.org
11068 S:      Maintained
11069 F:      drivers/net/phy/marvell10g.c
11070
11071 MARVELL MVEBU THERMAL DRIVER
11072 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11073 S:      Maintained
11074 F:      drivers/thermal/armada_thermal.c
11075
11076 MARVELL MVNETA ETHERNET DRIVER
11077 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11078 L:      netdev@vger.kernel.org
11079 S:      Maintained
11080 F:      drivers/net/ethernet/marvell/mvneta.*
11081
11082 MARVELL MVPP2 ETHERNET DRIVER
11083 M:      Marcin Wojtas <mw@semihalf.com>
11084 M:      Russell King <linux@armlinux.org.uk>
11085 L:      netdev@vger.kernel.org
11086 S:      Maintained
11087 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11088 F:      drivers/net/ethernet/marvell/mvpp2/
11089
11090 MARVELL MWIFIEX WIRELESS DRIVER
11091 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11092 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11093 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11094 M:      Xinming Hu <huxinming820@gmail.com>
11095 L:      linux-wireless@vger.kernel.org
11096 S:      Maintained
11097 F:      drivers/net/wireless/marvell/mwifiex/
11098
11099 MARVELL MWL8K WIRELESS DRIVER
11100 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11101 L:      linux-wireless@vger.kernel.org
11102 S:      Odd Fixes
11103 F:      drivers/net/wireless/marvell/mwl8k.c
11104
11105 MARVELL NAND CONTROLLER DRIVER
11106 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11107 L:      linux-mtd@lists.infradead.org
11108 S:      Maintained
11109 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11110 F:      drivers/mtd/nand/raw/marvell_nand.c
11111
11112 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11113 M:      Sunil Goutham <sgoutham@marvell.com>
11114 M:      Geetha sowjanya <gakula@marvell.com>
11115 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11116 M:      hariprasad <hkelam@marvell.com>
11117 L:      netdev@vger.kernel.org
11118 S:      Supported
11119 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11120 F:      include/linux/soc/marvell/octeontx2/
11121
11122 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11123 M:      Sunil Goutham <sgoutham@marvell.com>
11124 M:      Linu Cherian <lcherian@marvell.com>
11125 M:      Geetha sowjanya <gakula@marvell.com>
11126 M:      Jerin Jacob <jerinj@marvell.com>
11127 M:      hariprasad <hkelam@marvell.com>
11128 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11129 L:      netdev@vger.kernel.org
11130 S:      Supported
11131 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11132 F:      drivers/net/ethernet/marvell/octeontx2/af/
11133
11134 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11135 M:      Vadym Kochan <vkochan@marvell.com>
11136 M:      Taras Chornyi <tchornyi@marvell.com>
11137 S:      Supported
11138 W:      https://github.com/Marvell-switching/switchdev-prestera
11139 F:      drivers/net/ethernet/marvell/prestera/
11140
11141 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11142 M:      Nicolas Pitre <nico@fluxnic.net>
11143 S:      Odd Fixes
11144 F:      drivers/mmc/host/mvsdio.*
11145
11146 MARVELL USB MDIO CONTROLLER DRIVER
11147 M:      Tobias Waldekranz <tobias@waldekranz.com>
11148 L:      netdev@vger.kernel.org
11149 S:      Maintained
11150 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11151 F:      drivers/net/mdio/mdio-mvusb.c
11152
11153 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11154 M:      Hu Ziji <huziji@marvell.com>
11155 L:      linux-mmc@vger.kernel.org
11156 S:      Supported
11157 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11158 F:      drivers/mmc/host/sdhci-xenon*
11159
11160 MATROX FRAMEBUFFER DRIVER
11161 L:      linux-fbdev@vger.kernel.org
11162 S:      Orphan
11163 F:      drivers/video/fbdev/matrox/matroxfb_*
11164 F:      include/uapi/linux/matroxfb.h
11165
11166 MAX15301 DRIVER
11167 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11168 L:      linux-hwmon@vger.kernel.org
11169 S:      Maintained
11170 F:      Documentation/hwmon/max15301.rst
11171 F:      drivers/hwmon/pmbus/max15301.c
11172
11173 MAX16065 HARDWARE MONITOR DRIVER
11174 M:      Guenter Roeck <linux@roeck-us.net>
11175 L:      linux-hwmon@vger.kernel.org
11176 S:      Maintained
11177 F:      Documentation/hwmon/max16065.rst
11178 F:      drivers/hwmon/max16065.c
11179
11180 MAX2175 SDR TUNER DRIVER
11181 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11182 L:      linux-media@vger.kernel.org
11183 S:      Maintained
11184 T:      git git://linuxtv.org/media_tree.git
11185 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11186 F:      Documentation/userspace-api/media/drivers/max2175.rst
11187 F:      drivers/media/i2c/max2175*
11188 F:      include/uapi/linux/max2175.h
11189
11190 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11191 L:      linux-hwmon@vger.kernel.org
11192 S:      Orphan
11193 F:      Documentation/hwmon/max6650.rst
11194 F:      drivers/hwmon/max6650.c
11195
11196 MAX6697 HARDWARE MONITOR DRIVER
11197 M:      Guenter Roeck <linux@roeck-us.net>
11198 L:      linux-hwmon@vger.kernel.org
11199 S:      Maintained
11200 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11201 F:      Documentation/hwmon/max6697.rst
11202 F:      drivers/hwmon/max6697.c
11203 F:      include/linux/platform_data/max6697.h
11204
11205 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11206 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
11207 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11208 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11209 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11210 L:      linux-media@vger.kernel.org
11211 S:      Maintained
11212 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11213 F:      drivers/media/i2c/max9286.c
11214
11215 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11216 M:      Peter Rosin <peda@axentia.se>
11217 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11218 S:      Maintained
11219 F:      Documentation/devicetree/bindings/sound/max9860.txt
11220 F:      sound/soc/codecs/max9860.*
11221
11222 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11223 M:      Andreas Klinger <ak@it-klinger.de>
11224 L:      linux-iio@vger.kernel.org
11225 S:      Maintained
11226 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11227 F:      drivers/iio/proximity/mb1232.c
11228
11229 MAXIM MAX77650 PMIC MFD DRIVER
11230 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
11231 L:      linux-kernel@vger.kernel.org
11232 S:      Maintained
11233 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11234 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11235 F:      drivers/gpio/gpio-max77650.c
11236 F:      drivers/input/misc/max77650-onkey.c
11237 F:      drivers/leds/leds-max77650.c
11238 F:      drivers/mfd/max77650.c
11239 F:      drivers/power/supply/max77650-charger.c
11240 F:      drivers/regulator/max77650-regulator.c
11241 F:      include/linux/mfd/max77650.h
11242
11243 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11244 M:      Javier Martinez Canillas <javier@dowhile0.org>
11245 L:      linux-kernel@vger.kernel.org
11246 S:      Supported
11247 F:      Documentation/devicetree/bindings/*/*max77802.txt
11248 F:      drivers/regulator/max77802-regulator.c
11249 F:      include/dt-bindings/*/*max77802.h
11250
11251 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11252 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11253 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11254 L:      linux-pm@vger.kernel.org
11255 S:      Supported
11256 F:      drivers/power/supply/max14577_charger.c
11257 F:      drivers/power/supply/max77693_charger.c
11258
11259 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11260 M:      Chanwoo Choi <cw00.choi@samsung.com>
11261 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11262 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11263 L:      linux-kernel@vger.kernel.org
11264 S:      Supported
11265 F:      Documentation/devicetree/bindings/*/max77686.txt
11266 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
11267 F:      Documentation/devicetree/bindings/mfd/max14577.txt
11268 F:      Documentation/devicetree/bindings/mfd/max77693.txt
11269 F:      drivers/*/max14577*.c
11270 F:      drivers/*/max77686*.c
11271 F:      drivers/*/max77693*.c
11272 F:      drivers/clk/clk-max77686.c
11273 F:      drivers/extcon/extcon-max14577.c
11274 F:      drivers/extcon/extcon-max77693.c
11275 F:      drivers/rtc/rtc-max77686.c
11276 F:      include/linux/mfd/max14577*.h
11277 F:      include/linux/mfd/max77686*.h
11278 F:      include/linux/mfd/max77693*.h
11279
11280 MAXIRADIO FM RADIO RECEIVER DRIVER
11281 M:      Hans Verkuil <hverkuil@xs4all.nl>
11282 L:      linux-media@vger.kernel.org
11283 S:      Maintained
11284 W:      https://linuxtv.org
11285 T:      git git://linuxtv.org/media_tree.git
11286 F:      drivers/media/radio/radio-maxiradio*
11287
11288 MCAN MMIO DEVICE DRIVER
11289 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11290 L:      linux-can@vger.kernel.org
11291 S:      Maintained
11292 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11293 F:      drivers/net/can/m_can/m_can.c
11294 F:      drivers/net/can/m_can/m_can.h
11295 F:      drivers/net/can/m_can/m_can_platform.c
11296
11297 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11298 M:      Rishi Gupta <gupt21@gmail.com>
11299 L:      linux-i2c@vger.kernel.org
11300 L:      linux-input@vger.kernel.org
11301 S:      Maintained
11302 F:      drivers/hid/hid-mcp2221.c
11303
11304 MCP251XFD SPI-CAN NETWORK DRIVER
11305 M:      Marc Kleine-Budde <mkl@pengutronix.de>
11306 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11307 R:      Thomas Kopp <thomas.kopp@microchip.com>
11308 L:      linux-can@vger.kernel.org
11309 S:      Maintained
11310 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11311 F:      drivers/net/can/spi/mcp251xfd/
11312
11313 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11314 M:      Peter Rosin <peda@axentia.se>
11315 L:      linux-iio@vger.kernel.org
11316 S:      Maintained
11317 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11318 F:      drivers/iio/potentiometer/mcp4018.c
11319 F:      drivers/iio/potentiometer/mcp4531.c
11320
11321 MCR20A IEEE-802.15.4 RADIO DRIVER
11322 M:      Xue Liu <liuxuenetmail@gmail.com>
11323 L:      linux-wpan@vger.kernel.org
11324 S:      Maintained
11325 W:      https://github.com/xueliu/mcr20a-linux
11326 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11327 F:      drivers/net/ieee802154/mcr20a.c
11328 F:      drivers/net/ieee802154/mcr20a.h
11329
11330 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11331 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
11332 L:      linux-iio@vger.kernel.org
11333 S:      Maintained
11334 F:      drivers/iio/dac/cio-dac.c
11335
11336 MEDIA CONTROLLER FRAMEWORK
11337 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11338 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11339 L:      linux-media@vger.kernel.org
11340 S:      Supported
11341 W:      https://www.linuxtv.org
11342 T:      git git://linuxtv.org/media_tree.git
11343 F:      drivers/media/mc/
11344 F:      include/media/media-*.h
11345 F:      include/uapi/linux/media.h
11346
11347 MEDIA DRIVER FOR FREESCALE IMX PXP
11348 M:      Philipp Zabel <p.zabel@pengutronix.de>
11349 L:      linux-media@vger.kernel.org
11350 S:      Maintained
11351 T:      git git://linuxtv.org/media_tree.git
11352 F:      drivers/media/platform/imx-pxp.[ch]
11353
11354 MEDIA DRIVERS FOR ASCOT2E
11355 M:      Sergey Kozlov <serjk@netup.ru>
11356 M:      Abylay Ospan <aospan@netup.ru>
11357 L:      linux-media@vger.kernel.org
11358 S:      Supported
11359 W:      https://linuxtv.org
11360 W:      http://netup.tv/
11361 T:      git git://linuxtv.org/media_tree.git
11362 F:      drivers/media/dvb-frontends/ascot2e*
11363
11364 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11365 M:      Jasmin Jessich <jasmin@anw.at>
11366 L:      linux-media@vger.kernel.org
11367 S:      Maintained
11368 W:      https://linuxtv.org
11369 T:      git git://linuxtv.org/media_tree.git
11370 F:      drivers/media/dvb-frontends/cxd2099*
11371
11372 MEDIA DRIVERS FOR CXD2841ER
11373 M:      Sergey Kozlov <serjk@netup.ru>
11374 M:      Abylay Ospan <aospan@netup.ru>
11375 L:      linux-media@vger.kernel.org
11376 S:      Supported
11377 W:      https://linuxtv.org
11378 W:      http://netup.tv/
11379 T:      git git://linuxtv.org/media_tree.git
11380 F:      drivers/media/dvb-frontends/cxd2841er*
11381
11382 MEDIA DRIVERS FOR CXD2880
11383 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
11384 L:      linux-media@vger.kernel.org
11385 S:      Supported
11386 W:      http://linuxtv.org/
11387 T:      git git://linuxtv.org/media_tree.git
11388 F:      drivers/media/dvb-frontends/cxd2880/*
11389 F:      drivers/media/spi/cxd2880*
11390
11391 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11392 L:      linux-media@vger.kernel.org
11393 S:      Orphan
11394 W:      https://linuxtv.org
11395 T:      git git://linuxtv.org/media_tree.git
11396 F:      drivers/media/pci/ddbridge/*
11397
11398 MEDIA DRIVERS FOR FREESCALE IMX
11399 M:      Steve Longerbeam <slongerbeam@gmail.com>
11400 M:      Philipp Zabel <p.zabel@pengutronix.de>
11401 L:      linux-media@vger.kernel.org
11402 S:      Maintained
11403 T:      git git://linuxtv.org/media_tree.git
11404 F:      Documentation/admin-guide/media/imx.rst
11405 F:      Documentation/devicetree/bindings/media/imx.txt
11406 F:      drivers/staging/media/imx/
11407 F:      include/linux/imx-media.h
11408 F:      include/media/imx.h
11409
11410 MEDIA DRIVERS FOR FREESCALE IMX7
11411 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11412 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11413 L:      linux-media@vger.kernel.org
11414 S:      Maintained
11415 T:      git git://linuxtv.org/media_tree.git
11416 F:      Documentation/admin-guide/media/imx7.rst
11417 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11418 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11419 F:      drivers/staging/media/imx/imx7-media-csi.c
11420 F:      drivers/staging/media/imx/imx7-mipi-csis.c
11421
11422 MEDIA DRIVERS FOR HELENE
11423 M:      Abylay Ospan <aospan@netup.ru>
11424 L:      linux-media@vger.kernel.org
11425 S:      Supported
11426 W:      https://linuxtv.org
11427 W:      http://netup.tv/
11428 T:      git git://linuxtv.org/media_tree.git
11429 F:      drivers/media/dvb-frontends/helene*
11430
11431 MEDIA DRIVERS FOR HORUS3A
11432 M:      Sergey Kozlov <serjk@netup.ru>
11433 M:      Abylay Ospan <aospan@netup.ru>
11434 L:      linux-media@vger.kernel.org
11435 S:      Supported
11436 W:      https://linuxtv.org
11437 W:      http://netup.tv/
11438 T:      git git://linuxtv.org/media_tree.git
11439 F:      drivers/media/dvb-frontends/horus3a*
11440
11441 MEDIA DRIVERS FOR LNBH25
11442 M:      Sergey Kozlov <serjk@netup.ru>
11443 M:      Abylay Ospan <aospan@netup.ru>
11444 L:      linux-media@vger.kernel.org
11445 S:      Supported
11446 W:      https://linuxtv.org
11447 W:      http://netup.tv/
11448 T:      git git://linuxtv.org/media_tree.git
11449 F:      drivers/media/dvb-frontends/lnbh25*
11450
11451 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11452 L:      linux-media@vger.kernel.org
11453 S:      Orphan
11454 W:      https://linuxtv.org
11455 T:      git git://linuxtv.org/media_tree.git
11456 F:      drivers/media/dvb-frontends/mxl5xx*
11457
11458 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11459 M:      Sergey Kozlov <serjk@netup.ru>
11460 M:      Abylay Ospan <aospan@netup.ru>
11461 L:      linux-media@vger.kernel.org
11462 S:      Supported
11463 W:      https://linuxtv.org
11464 W:      http://netup.tv/
11465 T:      git git://linuxtv.org/media_tree.git
11466 F:      drivers/media/pci/netup_unidvb/*
11467
11468 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11469 M:      Dmitry Osipenko <digetx@gmail.com>
11470 L:      linux-media@vger.kernel.org
11471 L:      linux-tegra@vger.kernel.org
11472 S:      Maintained
11473 T:      git git://linuxtv.org/media_tree.git
11474 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11475 F:      drivers/staging/media/tegra-vde/
11476
11477 MEDIA DRIVERS FOR RENESAS - CEU
11478 M:      Jacopo Mondi <jacopo@jmondi.org>
11479 L:      linux-media@vger.kernel.org
11480 L:      linux-renesas-soc@vger.kernel.org
11481 S:      Supported
11482 T:      git git://linuxtv.org/media_tree.git
11483 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
11484 F:      drivers/media/platform/renesas-ceu.c
11485 F:      include/media/drv-intf/renesas-ceu.h
11486
11487 MEDIA DRIVERS FOR RENESAS - DRIF
11488 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
11489 L:      linux-media@vger.kernel.org
11490 L:      linux-renesas-soc@vger.kernel.org
11491 S:      Supported
11492 T:      git git://linuxtv.org/media_tree.git
11493 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
11494 F:      drivers/media/platform/rcar_drif.c
11495
11496 MEDIA DRIVERS FOR RENESAS - FCP
11497 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11498 L:      linux-media@vger.kernel.org
11499 L:      linux-renesas-soc@vger.kernel.org
11500 S:      Supported
11501 T:      git git://linuxtv.org/media_tree.git
11502 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11503 F:      drivers/media/platform/rcar-fcp.c
11504 F:      include/media/rcar-fcp.h
11505
11506 MEDIA DRIVERS FOR RENESAS - FDP1
11507 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11508 L:      linux-media@vger.kernel.org
11509 L:      linux-renesas-soc@vger.kernel.org
11510 S:      Supported
11511 T:      git git://linuxtv.org/media_tree.git
11512 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11513 F:      drivers/media/platform/rcar_fdp1.c
11514
11515 MEDIA DRIVERS FOR RENESAS - VIN
11516 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11517 L:      linux-media@vger.kernel.org
11518 L:      linux-renesas-soc@vger.kernel.org
11519 S:      Supported
11520 T:      git git://linuxtv.org/media_tree.git
11521 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11522 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
11523 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11524 F:      drivers/media/platform/rcar-vin/
11525
11526 MEDIA DRIVERS FOR RENESAS - VSP1
11527 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11528 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11529 L:      linux-media@vger.kernel.org
11530 L:      linux-renesas-soc@vger.kernel.org
11531 S:      Supported
11532 T:      git git://linuxtv.org/media_tree.git
11533 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11534 F:      drivers/media/platform/vsp1/
11535
11536 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11537 L:      linux-media@vger.kernel.org
11538 S:      Orphan
11539 W:      https://linuxtv.org
11540 T:      git git://linuxtv.org/media_tree.git
11541 F:      drivers/media/dvb-frontends/stv0910*
11542
11543 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11544 L:      linux-media@vger.kernel.org
11545 S:      Orphan
11546 W:      https://linuxtv.org
11547 T:      git git://linuxtv.org/media_tree.git
11548 F:      drivers/media/dvb-frontends/stv6111*
11549
11550 MEDIA DRIVERS FOR STM32 - DCMI
11551 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
11552 L:      linux-media@vger.kernel.org
11553 S:      Supported
11554 T:      git git://linuxtv.org/media_tree.git
11555 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11556 F:      drivers/media/platform/stm32/stm32-dcmi.c
11557
11558 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11559 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11560 L:      linux-media@vger.kernel.org
11561 S:      Maintained
11562 W:      https://linuxtv.org
11563 Q:      http://patchwork.kernel.org/project/linux-media/list/
11564 T:      git git://linuxtv.org/media_tree.git
11565 F:      Documentation/admin-guide/media/
11566 F:      Documentation/devicetree/bindings/media/
11567 F:      Documentation/driver-api/media/
11568 F:      Documentation/userspace-api/media/
11569 F:      drivers/media/
11570 F:      drivers/staging/media/
11571 F:      include/linux/platform_data/media/
11572 F:      include/media/
11573 F:      include/uapi/linux/dvb/
11574 F:      include/uapi/linux/ivtv*
11575 F:      include/uapi/linux/media.h
11576 F:      include/uapi/linux/meye.h
11577 F:      include/uapi/linux/uvcvideo.h
11578 F:      include/uapi/linux/v4l2-*
11579 F:      include/uapi/linux/videodev2.h
11580
11581 MEDIATEK BLUETOOTH DRIVER
11582 M:      Sean Wang <sean.wang@mediatek.com>
11583 L:      linux-bluetooth@vger.kernel.org
11584 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11585 S:      Maintained
11586 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11587 F:      drivers/bluetooth/btmtkuart.c
11588
11589 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11590 M:      Sean Wang <sean.wang@mediatek.com>
11591 L:      linux-pm@vger.kernel.org
11592 S:      Maintained
11593 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11594 F:      drivers/power/reset/mt6323-poweroff.c
11595
11596 MEDIATEK CIR DRIVER
11597 M:      Sean Wang <sean.wang@mediatek.com>
11598 S:      Maintained
11599 F:      drivers/media/rc/mtk-cir.c
11600
11601 MEDIATEK DMA DRIVER
11602 M:      Sean Wang <sean.wang@mediatek.com>
11603 L:      dmaengine@vger.kernel.org
11604 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11605 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11606 S:      Maintained
11607 F:      Documentation/devicetree/bindings/dma/mtk-*
11608 F:      drivers/dma/mediatek/
11609
11610 MEDIATEK ETHERNET DRIVER
11611 M:      Felix Fietkau <nbd@nbd.name>
11612 M:      John Crispin <john@phrozen.org>
11613 M:      Sean Wang <sean.wang@mediatek.com>
11614 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11615 L:      netdev@vger.kernel.org
11616 S:      Maintained
11617 F:      drivers/net/ethernet/mediatek/
11618
11619 MEDIATEK I2C CONTROLLER DRIVER
11620 M:      Qii Wang <qii.wang@mediatek.com>
11621 L:      linux-i2c@vger.kernel.org
11622 S:      Maintained
11623 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11624 F:      drivers/i2c/busses/i2c-mt65xx.c
11625
11626 MEDIATEK IOMMU DRIVER
11627 M:      Yong Wu <yong.wu@mediatek.com>
11628 L:      iommu@lists.linux-foundation.org
11629 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11630 S:      Supported
11631 F:      Documentation/devicetree/bindings/iommu/mediatek*
11632 F:      drivers/iommu/mtk_iommu*
11633 F:      include/dt-bindings/memory/mt*-port.h
11634
11635 MEDIATEK JPEG DRIVER
11636 M:      Rick Chang <rick.chang@mediatek.com>
11637 M:      Bin Liu <bin.liu@mediatek.com>
11638 S:      Supported
11639 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11640 F:      drivers/media/platform/mtk-jpeg/
11641
11642 MEDIATEK MDP DRIVER
11643 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11644 M:      Houlong Wei <houlong.wei@mediatek.com>
11645 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11646 S:      Supported
11647 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11648 F:      drivers/media/platform/mtk-mdp/
11649 F:      drivers/media/platform/mtk-vpu/
11650
11651 MEDIATEK MEDIA DRIVER
11652 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11653 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11654 S:      Supported
11655 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11656 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11657 F:      drivers/media/platform/mtk-vcodec/
11658 F:      drivers/media/platform/mtk-vpu/
11659
11660 MEDIATEK MMC/SD/SDIO DRIVER
11661 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11662 S:      Maintained
11663 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
11664 F:      drivers/mmc/host/mtk-sd.c
11665
11666 MEDIATEK MT76 WIRELESS LAN DRIVER
11667 M:      Felix Fietkau <nbd@nbd.name>
11668 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11669 R:      Ryder Lee <ryder.lee@mediatek.com>
11670 L:      linux-wireless@vger.kernel.org
11671 S:      Maintained
11672 F:      drivers/net/wireless/mediatek/mt76/
11673
11674 MEDIATEK MT7601U WIRELESS LAN DRIVER
11675 M:      Jakub Kicinski <kubakici@wp.pl>
11676 L:      linux-wireless@vger.kernel.org
11677 S:      Maintained
11678 F:      drivers/net/wireless/mediatek/mt7601u/
11679
11680 MEDIATEK MT7621 CLOCK DRIVER
11681 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11682 S:      Maintained
11683 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
11684 F:      drivers/clk/ralink/clk-mt7621.c
11685
11686 MEDIATEK MT7621/28/88 I2C DRIVER
11687 M:      Stefan Roese <sr@denx.de>
11688 L:      linux-i2c@vger.kernel.org
11689 S:      Maintained
11690 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11691 F:      drivers/i2c/busses/i2c-mt7621.c
11692
11693 MEDIATEK MT7621 PHY PCI DRIVER
11694 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11695 S:      Maintained
11696 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11697 F:      drivers/phy/ralink/phy-mt7621-pci.c
11698
11699 MEDIATEK NAND CONTROLLER DRIVER
11700 L:      linux-mtd@lists.infradead.org
11701 S:      Orphan
11702 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11703 F:      drivers/mtd/nand/raw/mtk_*
11704
11705 MEDIATEK PMIC LED DRIVER
11706 M:      Sean Wang <sean.wang@mediatek.com>
11707 S:      Maintained
11708 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11709 F:      drivers/leds/leds-mt6323.c
11710
11711 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11712 M:      Sean Wang <sean.wang@mediatek.com>
11713 S:      Maintained
11714 F:      drivers/char/hw_random/mtk-rng.c
11715
11716 MEDIATEK SWITCH DRIVER
11717 M:      Sean Wang <sean.wang@mediatek.com>
11718 M:      Landen Chao <Landen.Chao@mediatek.com>
11719 L:      netdev@vger.kernel.org
11720 S:      Maintained
11721 F:      drivers/net/dsa/mt7530.*
11722 F:      net/dsa/tag_mtk.c
11723
11724 MEDIATEK USB3 DRD IP DRIVER
11725 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
11726 L:      linux-usb@vger.kernel.org
11727 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11728 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11729 S:      Maintained
11730 F:      Documentation/devicetree/bindings/usb/mediatek,*
11731 F:      drivers/usb/host/xhci-mtk*
11732 F:      drivers/usb/mtu3/
11733
11734 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11735 M:      Peter Senna Tschudin <peter.senna@gmail.com>
11736 M:      Martin Donnelly <martin.donnelly@ge.com>
11737 M:      Martyn Welch <martyn.welch@collabora.co.uk>
11738 S:      Maintained
11739 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11740 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11741
11742 MEGARAID SCSI/SAS DRIVERS
11743 M:      Kashyap Desai <kashyap.desai@broadcom.com>
11744 M:      Sumit Saxena <sumit.saxena@broadcom.com>
11745 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11746 L:      megaraidlinux.pdl@broadcom.com
11747 L:      linux-scsi@vger.kernel.org
11748 S:      Maintained
11749 W:      http://www.avagotech.com/support/
11750 F:      Documentation/scsi/megaraid.rst
11751 F:      drivers/scsi/megaraid.*
11752 F:      drivers/scsi/megaraid/
11753
11754 MELEXIS MLX90614 DRIVER
11755 M:      Crt Mori <cmo@melexis.com>
11756 L:      linux-iio@vger.kernel.org
11757 S:      Supported
11758 W:      http://www.melexis.com
11759 F:      drivers/iio/temperature/mlx90614.c
11760
11761 MELEXIS MLX90632 DRIVER
11762 M:      Crt Mori <cmo@melexis.com>
11763 L:      linux-iio@vger.kernel.org
11764 S:      Supported
11765 W:      http://www.melexis.com
11766 F:      drivers/iio/temperature/mlx90632.c
11767
11768 MELFAS MIP4 TOUCHSCREEN DRIVER
11769 M:      Sangwon Jee <jeesw@melfas.com>
11770 S:      Supported
11771 W:      http://www.melfas.com
11772 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11773 F:      drivers/input/touchscreen/melfas_mip4.c
11774
11775 MELLANOX BLUEFIELD I2C DRIVER
11776 M:      Khalil Blaiech <kblaiech@nvidia.com>
11777 L:      linux-i2c@vger.kernel.org
11778 S:      Supported
11779 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
11780 F:      drivers/i2c/busses/i2c-mlxbf.c
11781
11782 MELLANOX ETHERNET DRIVER (mlx4_en)
11783 M:      Tariq Toukan <tariqt@nvidia.com>
11784 L:      netdev@vger.kernel.org
11785 S:      Supported
11786 W:      http://www.mellanox.com
11787 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11788 F:      drivers/net/ethernet/mellanox/mlx4/en_*
11789
11790 MELLANOX ETHERNET DRIVER (mlx5e)
11791 M:      Saeed Mahameed <saeedm@nvidia.com>
11792 L:      netdev@vger.kernel.org
11793 S:      Supported
11794 W:      http://www.mellanox.com
11795 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11796 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
11797
11798 MELLANOX ETHERNET INNOVA DRIVERS
11799 R:      Boris Pismenny <borisp@nvidia.com>
11800 L:      netdev@vger.kernel.org
11801 S:      Supported
11802 W:      http://www.mellanox.com
11803 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11804 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
11805 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
11806 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
11807 F:      include/linux/mlx5/mlx5_ifc_fpga.h
11808
11809 MELLANOX ETHERNET SWITCH DRIVERS
11810 M:      Jiri Pirko <jiri@nvidia.com>
11811 M:      Ido Schimmel <idosch@nvidia.com>
11812 L:      netdev@vger.kernel.org
11813 S:      Supported
11814 W:      http://www.mellanox.com
11815 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11816 F:      drivers/net/ethernet/mellanox/mlxsw/
11817 F:      tools/testing/selftests/drivers/net/mlxsw/
11818
11819 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
11820 M:      mlxsw@nvidia.com
11821 L:      netdev@vger.kernel.org
11822 S:      Supported
11823 W:      http://www.mellanox.com
11824 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11825 F:      drivers/net/ethernet/mellanox/mlxfw/
11826
11827 MELLANOX HARDWARE PLATFORM SUPPORT
11828 M:      Hans de Goede <hdegoede@redhat.com>
11829 M:      Mark Gross <mgross@linux.intel.com>
11830 M:      Vadim Pasternak <vadimp@nvidia.com>
11831 L:      platform-driver-x86@vger.kernel.org
11832 S:      Supported
11833 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
11834 F:      drivers/platform/mellanox/
11835 F:      include/linux/platform_data/mlxreg.h
11836
11837 MELLANOX MLX4 core VPI driver
11838 M:      Tariq Toukan <tariqt@nvidia.com>
11839 L:      netdev@vger.kernel.org
11840 L:      linux-rdma@vger.kernel.org
11841 S:      Supported
11842 W:      http://www.mellanox.com
11843 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11844 F:      drivers/net/ethernet/mellanox/mlx4/
11845 F:      include/linux/mlx4/
11846
11847 MELLANOX MLX4 IB driver
11848 M:      Yishai Hadas <yishaih@nvidia.com>
11849 L:      linux-rdma@vger.kernel.org
11850 S:      Supported
11851 W:      http://www.mellanox.com
11852 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11853 F:      drivers/infiniband/hw/mlx4/
11854 F:      include/linux/mlx4/
11855 F:      include/uapi/rdma/mlx4-abi.h
11856
11857 MELLANOX MLX5 core VPI driver
11858 M:      Saeed Mahameed <saeedm@nvidia.com>
11859 M:      Leon Romanovsky <leonro@nvidia.com>
11860 L:      netdev@vger.kernel.org
11861 L:      linux-rdma@vger.kernel.org
11862 S:      Supported
11863 W:      http://www.mellanox.com
11864 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11865 F:      Documentation/networking/device_drivers/ethernet/mellanox/
11866 F:      drivers/net/ethernet/mellanox/mlx5/core/
11867 F:      include/linux/mlx5/
11868
11869 MELLANOX MLX5 IB driver
11870 M:      Leon Romanovsky <leonro@nvidia.com>
11871 L:      linux-rdma@vger.kernel.org
11872 S:      Supported
11873 W:      http://www.mellanox.com
11874 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11875 F:      drivers/infiniband/hw/mlx5/
11876 F:      include/linux/mlx5/
11877 F:      include/uapi/rdma/mlx5-abi.h
11878
11879 MELLANOX MLXCPLD I2C AND MUX DRIVER
11880 M:      Vadim Pasternak <vadimp@nvidia.com>
11881 M:      Michael Shych <michaelsh@nvidia.com>
11882 L:      linux-i2c@vger.kernel.org
11883 S:      Supported
11884 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11885 F:      drivers/i2c/busses/i2c-mlxcpld.c
11886 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11887
11888 MELLANOX MLXCPLD LED DRIVER
11889 M:      Vadim Pasternak <vadimp@nvidia.com>
11890 L:      linux-leds@vger.kernel.org
11891 S:      Supported
11892 F:      Documentation/leds/leds-mlxcpld.rst
11893 F:      drivers/leds/leds-mlxcpld.c
11894 F:      drivers/leds/leds-mlxreg.c
11895
11896 MELLANOX PLATFORM DRIVER
11897 M:      Vadim Pasternak <vadimp@nvidia.com>
11898 L:      platform-driver-x86@vger.kernel.org
11899 S:      Supported
11900 F:      drivers/platform/x86/mlx-platform.c
11901
11902 MEMBARRIER SUPPORT
11903 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11904 M:      "Paul E. McKenney" <paulmck@kernel.org>
11905 L:      linux-kernel@vger.kernel.org
11906 S:      Supported
11907 F:      arch/powerpc/include/asm/membarrier.h
11908 F:      include/uapi/linux/membarrier.h
11909 F:      kernel/sched/membarrier.c
11910
11911 MEMBLOCK
11912 M:      Mike Rapoport <rppt@linux.ibm.com>
11913 L:      linux-mm@kvack.org
11914 S:      Maintained
11915 F:      Documentation/core-api/boot-time-mm.rst
11916 F:      include/linux/memblock.h
11917 F:      mm/memblock.c
11918
11919 MEMORY CONTROLLER DRIVERS
11920 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11921 L:      linux-kernel@vger.kernel.org
11922 S:      Maintained
11923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
11924 F:      Documentation/devicetree/bindings/memory-controllers/
11925 F:      drivers/memory/
11926 F:      include/dt-bindings/memory/
11927
11928 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
11929 M:      Dmitry Osipenko <digetx@gmail.com>
11930 L:      linux-pm@vger.kernel.org
11931 L:      linux-tegra@vger.kernel.org
11932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
11933 S:      Maintained
11934 F:      drivers/devfreq/tegra30-devfreq.c
11935
11936 MEMORY MANAGEMENT
11937 M:      Andrew Morton <akpm@linux-foundation.org>
11938 L:      linux-mm@kvack.org
11939 S:      Maintained
11940 W:      http://www.linux-mm.org
11941 T:      quilt https://ozlabs.org/~akpm/mmotm/
11942 T:      quilt https://ozlabs.org/~akpm/mmots/
11943 T:      git git://github.com/hnaz/linux-mm.git
11944 F:      include/linux/gfp.h
11945 F:      include/linux/memory_hotplug.h
11946 F:      include/linux/mm.h
11947 F:      include/linux/mmzone.h
11948 F:      include/linux/pagewalk.h
11949 F:      include/linux/vmalloc.h
11950 F:      mm/
11951 F:      tools/testing/selftests/vm/
11952
11953 MEMORY TECHNOLOGY DEVICES (MTD)
11954 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11955 M:      Richard Weinberger <richard@nod.at>
11956 M:      Vignesh Raghavendra <vigneshr@ti.com>
11957 L:      linux-mtd@lists.infradead.org
11958 S:      Maintained
11959 W:      http://www.linux-mtd.infradead.org/
11960 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11961 C:      irc://irc.oftc.net/mtd
11962 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11964 F:      Documentation/devicetree/bindings/mtd/
11965 F:      drivers/mtd/
11966 F:      include/linux/mtd/
11967 F:      include/uapi/mtd/
11968
11969 MEN A21 WATCHDOG DRIVER
11970 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11971 L:      linux-watchdog@vger.kernel.org
11972 S:      Maintained
11973 F:      drivers/watchdog/mena21_wdt.c
11974
11975 MEN CHAMELEON BUS (mcb)
11976 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11977 S:      Maintained
11978 F:      Documentation/driver-api/men-chameleon-bus.rst
11979 F:      drivers/mcb/
11980 F:      include/linux/mcb.h
11981
11982 MEN F21BMC (Board Management Controller)
11983 M:      Andreas Werner <andreas.werner@men.de>
11984 S:      Supported
11985 F:      Documentation/hwmon/menf21bmc.rst
11986 F:      drivers/hwmon/menf21bmc_hwmon.c
11987 F:      drivers/leds/leds-menf21bmc.c
11988 F:      drivers/mfd/menf21bmc.c
11989 F:      drivers/watchdog/menf21bmc_wdt.c
11990
11991 MEN Z069 WATCHDOG DRIVER
11992 M:      Johannes Thumshirn <jth@kernel.org>
11993 L:      linux-watchdog@vger.kernel.org
11994 S:      Maintained
11995 F:      drivers/watchdog/menz69_wdt.c
11996
11997 MESON AO CEC DRIVER FOR AMLOGIC SOCS
11998 M:      Neil Armstrong <narmstrong@baylibre.com>
11999 L:      linux-media@vger.kernel.org
12000 L:      linux-amlogic@lists.infradead.org
12001 S:      Supported
12002 W:      http://linux-meson.com/
12003 T:      git git://linuxtv.org/media_tree.git
12004 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12005 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12006 F:      drivers/media/cec/platform/meson/ao-cec.c
12007
12008 MESON GE2D DRIVER FOR AMLOGIC SOCS
12009 M:      Neil Armstrong <narmstrong@baylibre.com>
12010 L:      linux-media@vger.kernel.org
12011 L:      linux-amlogic@lists.infradead.org
12012 S:      Supported
12013 T:      git git://linuxtv.org/media_tree.git
12014 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12015 F:      drivers/media/platform/meson/ge2d/
12016
12017 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12018 M:      Liang Yang <liang.yang@amlogic.com>
12019 L:      linux-mtd@lists.infradead.org
12020 S:      Maintained
12021 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12022 F:      drivers/mtd/nand/raw/meson_*
12023
12024 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12025 M:      Neil Armstrong <narmstrong@baylibre.com>
12026 L:      linux-media@vger.kernel.org
12027 L:      linux-amlogic@lists.infradead.org
12028 S:      Supported
12029 T:      git git://linuxtv.org/media_tree.git
12030 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12031 F:      drivers/staging/media/meson/vdec/
12032
12033 METHODE UDPU SUPPORT
12034 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12035 S:      Maintained
12036 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12037
12038 MHI BUS
12039 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12040 M:      Hemant Kumar <hemantk@codeaurora.org>
12041 L:      linux-arm-msm@vger.kernel.org
12042 S:      Maintained
12043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12044 F:      Documentation/ABI/stable/sysfs-bus-mhi
12045 F:      Documentation/mhi/
12046 F:      drivers/bus/mhi/
12047 F:      include/linux/mhi.h
12048
12049 MICROBLAZE ARCHITECTURE
12050 M:      Michal Simek <monstr@monstr.eu>
12051 S:      Supported
12052 W:      http://www.monstr.eu/fdt/
12053 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12054 F:      arch/microblaze/
12055
12056 MICROCHIP AT91 DMA DRIVERS
12057 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12058 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12059 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12060 L:      dmaengine@vger.kernel.org
12061 S:      Supported
12062 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12063 F:      drivers/dma/at_hdmac.c
12064 F:      drivers/dma/at_hdmac_regs.h
12065 F:      drivers/dma/at_xdmac.c
12066 F:      include/dt-bindings/dma/at91.h
12067
12068 MICROCHIP AT91 SERIAL DRIVER
12069 M:      Richard Genoud <richard.genoud@gmail.com>
12070 S:      Maintained
12071 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12072 F:      drivers/tty/serial/atmel_serial.c
12073 F:      drivers/tty/serial/atmel_serial.h
12074
12075 MICROCHIP AT91 USART MFD DRIVER
12076 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12077 L:      linux-kernel@vger.kernel.org
12078 S:      Supported
12079 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12080 F:      drivers/mfd/at91-usart.c
12081 F:      include/dt-bindings/mfd/at91-usart.h
12082
12083 MICROCHIP AT91 USART SPI DRIVER
12084 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12085 L:      linux-spi@vger.kernel.org
12086 S:      Supported
12087 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12088 F:      drivers/spi/spi-at91-usart.c
12089
12090 MICROCHIP AUDIO ASOC DRIVERS
12091 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12092 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12093 S:      Supported
12094 F:      sound/soc/atmel
12095
12096 MICROCHIP ECC DRIVER
12097 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12098 L:      linux-crypto@vger.kernel.org
12099 S:      Maintained
12100 F:      drivers/crypto/atmel-ecc.*
12101
12102 MICROCHIP I2C DRIVER
12103 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12104 L:      linux-i2c@vger.kernel.org
12105 S:      Supported
12106 F:      drivers/i2c/busses/i2c-at91-*.c
12107 F:      drivers/i2c/busses/i2c-at91.h
12108
12109 MICROCHIP ISC DRIVER
12110 M:      Eugen Hristev <eugen.hristev@microchip.com>
12111 L:      linux-media@vger.kernel.org
12112 S:      Supported
12113 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
12114 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
12115 F:      drivers/media/platform/atmel/atmel-isc-base.c
12116 F:      drivers/media/platform/atmel/atmel-isc-regs.h
12117 F:      drivers/media/platform/atmel/atmel-isc.h
12118 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
12119 F:      drivers/media/platform/atmel/atmel-sama7g5-isc.c
12120 F:      include/linux/atmel-isc-media.h
12121
12122 MICROCHIP ISI DRIVER
12123 M:      Eugen Hristev <eugen.hristev@microchip.com>
12124 L:      linux-media@vger.kernel.org
12125 S:      Supported
12126 F:      drivers/media/platform/atmel/atmel-isi.c
12127 F:      drivers/media/platform/atmel/atmel-isi.h
12128
12129 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12130 M:      Woojung Huh <woojung.huh@microchip.com>
12131 M:      UNGLinuxDriver@microchip.com
12132 L:      netdev@vger.kernel.org
12133 S:      Maintained
12134 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12135 F:      drivers/net/dsa/microchip/*
12136 F:      include/linux/platform_data/microchip-ksz.h
12137 F:      net/dsa/tag_ksz.c
12138
12139 MICROCHIP LAN743X ETHERNET DRIVER
12140 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
12141 M:      UNGLinuxDriver@microchip.com
12142 L:      netdev@vger.kernel.org
12143 S:      Maintained
12144 F:      drivers/net/ethernet/microchip/lan743x_*
12145
12146 MICROCHIP LCDFB DRIVER
12147 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
12148 L:      linux-fbdev@vger.kernel.org
12149 S:      Maintained
12150 F:      drivers/video/fbdev/atmel_lcdfb.c
12151 F:      include/video/atmel_lcdc.h
12152
12153 MICROCHIP MCP16502 PMIC DRIVER
12154 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12155 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12156 S:      Supported
12157 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12158 F:      drivers/regulator/mcp16502.c
12159
12160 MICROCHIP MCP3911 ADC DRIVER
12161 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12162 M:      Kent Gustavsson <kent@minoris.se>
12163 L:      linux-iio@vger.kernel.org
12164 S:      Supported
12165 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12166 F:      drivers/iio/adc/mcp3911.c
12167
12168 MICROCHIP MMC/SD/SDIO MCI DRIVER
12169 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12170 S:      Maintained
12171 F:      drivers/mmc/host/atmel-mci.c
12172
12173 MICROCHIP NAND DRIVER
12174 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12175 L:      linux-mtd@lists.infradead.org
12176 S:      Supported
12177 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
12178 F:      drivers/mtd/nand/raw/atmel/*
12179
12180 MICROCHIP PWM DRIVER
12181 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12182 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12183 L:      linux-pwm@vger.kernel.org
12184 S:      Supported
12185 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12186 F:      drivers/pwm/pwm-atmel.c
12187
12188 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12189 M:      Eugen Hristev <eugen.hristev@microchip.com>
12190 L:      linux-iio@vger.kernel.org
12191 S:      Supported
12192 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12193 F:      drivers/iio/adc/at91-sama5d2_adc.c
12194 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12195
12196 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12197 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12198 S:      Supported
12199 F:      drivers/power/reset/at91-sama5d2_shdwc.c
12200
12201 MICROCHIP SPI DRIVER
12202 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12203 S:      Supported
12204 F:      drivers/spi/spi-atmel.*
12205
12206 MICROCHIP SSC DRIVER
12207 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12208 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12209 S:      Supported
12210 F:      drivers/misc/atmel-ssc.c
12211 F:      include/linux/atmel-ssc.h
12212
12213 MICROCHIP USB251XB DRIVER
12214 M:      Richard Leitner <richard.leitner@skidata.com>
12215 L:      linux-usb@vger.kernel.org
12216 S:      Maintained
12217 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
12218 F:      drivers/usb/misc/usb251xb.c
12219
12220 MICROCHIP USBA UDC DRIVER
12221 M:      Cristian Birsan <cristian.birsan@microchip.com>
12222 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12223 S:      Supported
12224 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
12225
12226 MICROCHIP WILC1000 WIFI DRIVER
12227 M:      Ajay Singh <ajay.kathat@microchip.com>
12228 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12229 L:      linux-wireless@vger.kernel.org
12230 S:      Supported
12231 F:      drivers/net/wireless/microchip/wilc1000/
12232
12233 MICROSEMI MIPS SOCS
12234 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12235 M:      UNGLinuxDriver@microchip.com
12236 L:      linux-mips@vger.kernel.org
12237 S:      Supported
12238 F:      Documentation/devicetree/bindings/mips/mscc.txt
12239 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12240 F:      arch/mips/boot/dts/mscc/
12241 F:      arch/mips/configs/generic/board-ocelot.config
12242 F:      arch/mips/generic/board-ocelot.c
12243
12244 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12245 M:      Don Brace <don.brace@microchip.com>
12246 L:      storagedev@microchip.com
12247 L:      linux-scsi@vger.kernel.org
12248 S:      Supported
12249 F:      Documentation/scsi/smartpqi.rst
12250 F:      drivers/scsi/smartpqi/Kconfig
12251 F:      drivers/scsi/smartpqi/Makefile
12252 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
12253 F:      include/linux/cciss*.h
12254 F:      include/uapi/linux/cciss*.h
12255
12256 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12257 M:      Maximilian Luz <luzmaximilian@gmail.com>
12258 L:      linux-pm@vger.kernel.org
12259 L:      platform-driver-x86@vger.kernel.org
12260 S:      Maintained
12261 F:      drivers/power/supply/surface_battery.c
12262 F:      drivers/power/supply/surface_charger.c
12263
12264 MICROSOFT SURFACE DTX DRIVER
12265 M:      Maximilian Luz <luzmaximilian@gmail.com>
12266 L:      platform-driver-x86@vger.kernel.org
12267 S:      Maintained
12268 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
12269 F:      drivers/platform/surface/surface_dtx.c
12270 F:      include/uapi/linux/surface_aggregator/dtx.h
12271
12272 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12273 M:      Maximilian Luz <luzmaximilian@gmail.com>
12274 L:      platform-driver-x86@vger.kernel.org
12275 S:      Maintained
12276 F:      drivers/platform/surface/surface_gpe.c
12277
12278 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12279 M:      Hans de Goede <hdegoede@redhat.com>
12280 M:      Mark Gross <mgross@linux.intel.com>
12281 M:      Maximilian Luz <luzmaximilian@gmail.com>
12282 L:      platform-driver-x86@vger.kernel.org
12283 S:      Maintained
12284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12285 F:      drivers/platform/surface/
12286
12287 MICROSOFT SURFACE HID TRANSPORT DRIVER
12288 M:      Maximilian Luz <luzmaximilian@gmail.com>
12289 L:      linux-input@vger.kernel.org
12290 L:      platform-driver-x86@vger.kernel.org
12291 S:      Maintained
12292 F:      drivers/hid/surface-hid/
12293
12294 MICROSOFT SURFACE HOT-PLUG DRIVER
12295 M:      Maximilian Luz <luzmaximilian@gmail.com>
12296 L:      platform-driver-x86@vger.kernel.org
12297 S:      Maintained
12298 F:      drivers/platform/surface/surface_hotplug.c
12299
12300 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12301 M:      Maximilian Luz <luzmaximilian@gmail.com>
12302 L:      platform-driver-x86@vger.kernel.org
12303 S:      Maintained
12304 F:      drivers/platform/surface/surface_platform_profile.c
12305
12306 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12307 M:      Chen Yu <yu.c.chen@intel.com>
12308 L:      platform-driver-x86@vger.kernel.org
12309 S:      Supported
12310 F:      drivers/platform/surface/surfacepro3_button.c
12311
12312 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12313 M:      Maximilian Luz <luzmaximilian@gmail.com>
12314 L:      platform-driver-x86@vger.kernel.org
12315 S:      Maintained
12316 W:      https://github.com/linux-surface/surface-aggregator-module
12317 C:      irc://irc.libera.chat/linux-surface
12318 F:      Documentation/driver-api/surface_aggregator/
12319 F:      drivers/platform/surface/aggregator/
12320 F:      drivers/platform/surface/surface_acpi_notify.c
12321 F:      drivers/platform/surface/surface_aggregator_cdev.c
12322 F:      drivers/platform/surface/surface_aggregator_registry.c
12323 F:      include/linux/surface_acpi_notify.h
12324 F:      include/linux/surface_aggregator/
12325 F:      include/uapi/linux/surface_aggregator/
12326
12327 MICROTEK X6 SCANNER
12328 M:      Oliver Neukum <oliver@neukum.org>
12329 S:      Maintained
12330 F:      drivers/usb/image/microtek.*
12331
12332 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12333 M:      Luka Kovacic <luka.kovacic@sartura.hr>
12334 M:      Luka Perkov <luka.perkov@sartura.hr>
12335 S:      Maintained
12336 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12337 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12338 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12339 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12340 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12341 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12342
12343 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12344 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12345 L:      linux-media@vger.kernel.org
12346 S:      Maintained
12347 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12348 F:      Documentation/driver-api/media/drivers/ccs/
12349 F:      Documentation/userspace-api/media/drivers/ccs.rst
12350 F:      drivers/media/i2c/ccs-pll.c
12351 F:      drivers/media/i2c/ccs-pll.h
12352 F:      drivers/media/i2c/ccs/
12353 F:      include/uapi/linux/ccs.h
12354 F:      include/uapi/linux/smiapp.h
12355
12356 MIPS
12357 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12358 L:      linux-mips@vger.kernel.org
12359 S:      Maintained
12360 W:      http://www.linux-mips.org/
12361 Q:      https://patchwork.kernel.org/project/linux-mips/list/
12362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12363 F:      Documentation/devicetree/bindings/mips/
12364 F:      Documentation/mips/
12365 F:      arch/mips/
12366 F:      drivers/platform/mips/
12367
12368 MIPS BOSTON DEVELOPMENT BOARD
12369 M:      Paul Burton <paulburton@kernel.org>
12370 L:      linux-mips@vger.kernel.org
12371 S:      Maintained
12372 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
12373 F:      arch/mips/boot/dts/img/boston.dts
12374 F:      arch/mips/configs/generic/board-boston.config
12375 F:      drivers/clk/imgtec/clk-boston.c
12376 F:      include/dt-bindings/clock/boston-clock.h
12377
12378 MIPS CORE DRIVERS
12379 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12380 M:      Serge Semin <fancer.lancer@gmail.com>
12381 L:      linux-mips@vger.kernel.org
12382 S:      Supported
12383 F:      drivers/bus/mips_cdmm.c
12384 F:      drivers/clocksource/mips-gic-timer.c
12385 F:      drivers/cpuidle/cpuidle-cps.c
12386 F:      drivers/irqchip/irq-mips-cpu.c
12387 F:      drivers/irqchip/irq-mips-gic.c
12388
12389 MIPS GENERIC PLATFORM
12390 M:      Paul Burton <paulburton@kernel.org>
12391 L:      linux-mips@vger.kernel.org
12392 S:      Supported
12393 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12394 F:      arch/mips/generic/
12395 F:      arch/mips/tools/generic-board-config.sh
12396
12397 MIPS RINT INSTRUCTION EMULATION
12398 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
12399 L:      linux-mips@vger.kernel.org
12400 S:      Supported
12401 F:      arch/mips/math-emu/dp_rint.c
12402 F:      arch/mips/math-emu/sp_rint.c
12403
12404 MIPS/LOONGSON1 ARCHITECTURE
12405 M:      Keguang Zhang <keguang.zhang@gmail.com>
12406 L:      linux-mips@vger.kernel.org
12407 S:      Maintained
12408 F:      arch/mips/include/asm/mach-loongson32/
12409 F:      arch/mips/loongson32/
12410 F:      drivers/*/*/*loongson1*
12411 F:      drivers/*/*loongson1*
12412
12413 MIPS/LOONGSON2EF ARCHITECTURE
12414 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12415 L:      linux-mips@vger.kernel.org
12416 S:      Maintained
12417 F:      arch/mips/include/asm/mach-loongson2ef/
12418 F:      arch/mips/loongson2ef/
12419 F:      drivers/cpufreq/loongson2_cpufreq.c
12420
12421 MIPS/LOONGSON64 ARCHITECTURE
12422 M:      Huacai Chen <chenhuacai@kernel.org>
12423 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12424 L:      linux-mips@vger.kernel.org
12425 S:      Maintained
12426 F:      arch/mips/include/asm/mach-loongson64/
12427 F:      arch/mips/loongson64/
12428 F:      drivers/irqchip/irq-loongson*
12429 F:      drivers/platform/mips/cpu_hwmon.c
12430
12431 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12432 M:      Hans Verkuil <hverkuil@xs4all.nl>
12433 L:      linux-media@vger.kernel.org
12434 S:      Odd Fixes
12435 W:      https://linuxtv.org
12436 T:      git git://linuxtv.org/media_tree.git
12437 F:      drivers/media/radio/radio-miropcm20*
12438
12439 MMP SUPPORT
12440 R:      Lubomir Rintel <lkundrak@v3.sk>
12441 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12442 S:      Odd Fixes
12443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12444 F:      arch/arm/boot/dts/mmp*
12445 F:      arch/arm/mach-mmp/
12446 F:      include/linux/soc/mmp/
12447
12448 MMP USB PHY DRIVERS
12449 R:      Lubomir Rintel <lkundrak@v3.sk>
12450 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12451 S:      Maintained
12452 F:      drivers/phy/marvell/phy-mmp3-usb.c
12453 F:      drivers/phy/marvell/phy-pxa-usb.c
12454
12455 MMU GATHER AND TLB INVALIDATION
12456 M:      Will Deacon <will@kernel.org>
12457 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
12458 M:      Andrew Morton <akpm@linux-foundation.org>
12459 M:      Nick Piggin <npiggin@gmail.com>
12460 M:      Peter Zijlstra <peterz@infradead.org>
12461 L:      linux-arch@vger.kernel.org
12462 L:      linux-mm@kvack.org
12463 S:      Maintained
12464 F:      arch/*/include/asm/tlb.h
12465 F:      include/asm-generic/tlb.h
12466 F:      mm/mmu_gather.c
12467
12468 MN88472 MEDIA DRIVER
12469 M:      Antti Palosaari <crope@iki.fi>
12470 L:      linux-media@vger.kernel.org
12471 S:      Maintained
12472 W:      https://linuxtv.org
12473 W:      http://palosaari.fi/linux/
12474 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12475 F:      drivers/media/dvb-frontends/mn88472*
12476
12477 MN88473 MEDIA DRIVER
12478 M:      Antti Palosaari <crope@iki.fi>
12479 L:      linux-media@vger.kernel.org
12480 S:      Maintained
12481 W:      https://linuxtv.org
12482 W:      http://palosaari.fi/linux/
12483 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12484 F:      drivers/media/dvb-frontends/mn88473*
12485
12486 MODULE SUPPORT
12487 M:      Jessica Yu <jeyu@kernel.org>
12488 S:      Maintained
12489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12490 F:      include/linux/module.h
12491 F:      kernel/module.c
12492
12493 MONOLITHIC POWER SYSTEM PMIC DRIVER
12494 M:      Saravanan Sekar <sravanhome@gmail.com>
12495 S:      Maintained
12496 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12497 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12498 F:      drivers/iio/adc/mp2629_adc.c
12499 F:      drivers/mfd/mp2629.c
12500 F:      drivers/power/supply/mp2629_charger.c
12501 F:      drivers/regulator/mp5416.c
12502 F:      drivers/regulator/mpq7920.c
12503 F:      drivers/regulator/mpq7920.h
12504 F:      include/linux/mfd/mp2629.h
12505
12506 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12507 S:      Orphan
12508 W:      http://popies.net/meye/
12509 F:      Documentation/userspace-api/media/drivers/meye*
12510 F:      drivers/media/pci/meye/
12511 F:      include/uapi/linux/meye.h
12512
12513 MOTORCOMM PHY DRIVER
12514 M:      Peter Geis <pgwipeout@gmail.com>
12515 L:      netdev@vger.kernel.org
12516 S:      Maintained
12517 F:      drivers/net/phy/motorcomm.c
12518
12519 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12520 S:      Orphan
12521 F:      Documentation/driver-api/serial/moxa-smartio.rst
12522 F:      drivers/tty/mxser.*
12523
12524 MR800 AVERMEDIA USB FM RADIO DRIVER
12525 M:      Alexey Klimov <klimov.linux@gmail.com>
12526 L:      linux-media@vger.kernel.org
12527 S:      Maintained
12528 T:      git git://linuxtv.org/media_tree.git
12529 F:      drivers/media/radio/radio-mr800.c
12530
12531 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12532 M:      Alan Ott <alan@signal11.us>
12533 L:      linux-wpan@vger.kernel.org
12534 S:      Maintained
12535 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12536 F:      drivers/net/ieee802154/mrf24j40.c
12537
12538 MSI LAPTOP SUPPORT
12539 M:      "Lee, Chun-Yi" <jlee@suse.com>
12540 L:      platform-driver-x86@vger.kernel.org
12541 S:      Maintained
12542 F:      drivers/platform/x86/msi-laptop.c
12543
12544 MSI WMI SUPPORT
12545 L:      platform-driver-x86@vger.kernel.org
12546 S:      Orphan
12547 F:      drivers/platform/x86/msi-wmi.c
12548
12549 MSI001 MEDIA DRIVER
12550 M:      Antti Palosaari <crope@iki.fi>
12551 L:      linux-media@vger.kernel.org
12552 S:      Maintained
12553 W:      https://linuxtv.org
12554 W:      http://palosaari.fi/linux/
12555 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12556 T:      git git://linuxtv.org/anttip/media_tree.git
12557 F:      drivers/media/tuners/msi001*
12558
12559 MSI2500 MEDIA DRIVER
12560 M:      Antti Palosaari <crope@iki.fi>
12561 L:      linux-media@vger.kernel.org
12562 S:      Maintained
12563 W:      https://linuxtv.org
12564 W:      http://palosaari.fi/linux/
12565 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12566 T:      git git://linuxtv.org/anttip/media_tree.git
12567 F:      drivers/media/usb/msi2500/
12568
12569 MSTAR INTERRUPT CONTROLLER DRIVER
12570 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12571 M:      Daniel Palmer <daniel@thingy.jp>
12572 S:      Maintained
12573 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12574 F:      drivers/irqchip/irq-mst-intc.c
12575
12576 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12577 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12578 L:      linux-mtd@lists.infradead.org
12579 S:      Maintained
12580 F:      drivers/mtd/devices/docg3*
12581
12582 MT9M032 APTINA SENSOR DRIVER
12583 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12584 L:      linux-media@vger.kernel.org
12585 S:      Maintained
12586 T:      git git://linuxtv.org/media_tree.git
12587 F:      drivers/media/i2c/mt9m032.c
12588 F:      include/media/i2c/mt9m032.h
12589
12590 MT9P031 APTINA CAMERA SENSOR
12591 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12592 L:      linux-media@vger.kernel.org
12593 S:      Maintained
12594 T:      git git://linuxtv.org/media_tree.git
12595 F:      drivers/media/i2c/mt9p031.c
12596 F:      include/media/i2c/mt9p031.h
12597
12598 MT9T001 APTINA CAMERA SENSOR
12599 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12600 L:      linux-media@vger.kernel.org
12601 S:      Maintained
12602 T:      git git://linuxtv.org/media_tree.git
12603 F:      drivers/media/i2c/mt9t001.c
12604 F:      include/media/i2c/mt9t001.h
12605
12606 MT9T112 APTINA CAMERA SENSOR
12607 M:      Jacopo Mondi <jacopo@jmondi.org>
12608 L:      linux-media@vger.kernel.org
12609 S:      Odd Fixes
12610 T:      git git://linuxtv.org/media_tree.git
12611 F:      drivers/media/i2c/mt9t112.c
12612 F:      include/media/i2c/mt9t112.h
12613
12614 MT9V032 APTINA CAMERA SENSOR
12615 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12616 L:      linux-media@vger.kernel.org
12617 S:      Maintained
12618 T:      git git://linuxtv.org/media_tree.git
12619 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12620 F:      drivers/media/i2c/mt9v032.c
12621 F:      include/media/i2c/mt9v032.h
12622
12623 MT9V111 APTINA CAMERA SENSOR
12624 M:      Jacopo Mondi <jacopo@jmondi.org>
12625 L:      linux-media@vger.kernel.org
12626 S:      Maintained
12627 T:      git git://linuxtv.org/media_tree.git
12628 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12629 F:      drivers/media/i2c/mt9v111.c
12630
12631 MULTIFUNCTION DEVICES (MFD)
12632 M:      Lee Jones <lee.jones@linaro.org>
12633 S:      Supported
12634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12635 F:      Documentation/devicetree/bindings/mfd/
12636 F:      drivers/mfd/
12637 F:      include/dt-bindings/mfd/
12638 F:      include/linux/mfd/
12639
12640 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12641 S:      Orphan
12642 F:      drivers/mmc/host/mmc_spi.c
12643 F:      include/linux/spi/mmc_spi.h
12644
12645 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12646 M:      Ulf Hansson <ulf.hansson@linaro.org>
12647 L:      linux-mmc@vger.kernel.org
12648 S:      Maintained
12649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12650 F:      Documentation/devicetree/bindings/mmc/
12651 F:      drivers/mmc/
12652 F:      include/linux/mmc/
12653 F:      include/uapi/linux/mmc/
12654
12655 MULTIPLEXER SUBSYSTEM
12656 M:      Peter Rosin <peda@axentia.se>
12657 S:      Maintained
12658 F:      Documentation/ABI/testing/sysfs-class-mux*
12659 F:      Documentation/devicetree/bindings/mux/
12660 F:      drivers/mux/
12661 F:      include/dt-bindings/mux/
12662 F:      include/linux/mux/
12663
12664 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12665 M:      Bin Liu <b-liu@ti.com>
12666 L:      linux-usb@vger.kernel.org
12667 S:      Maintained
12668 F:      drivers/usb/musb/
12669
12670 MXL301RF MEDIA DRIVER
12671 M:      Akihiro Tsukada <tskd08@gmail.com>
12672 L:      linux-media@vger.kernel.org
12673 S:      Odd Fixes
12674 F:      drivers/media/tuners/mxl301rf*
12675
12676 MXL5007T MEDIA DRIVER
12677 M:      Michael Krufky <mkrufky@linuxtv.org>
12678 L:      linux-media@vger.kernel.org
12679 S:      Maintained
12680 W:      https://linuxtv.org
12681 W:      http://github.com/mkrufky
12682 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12683 T:      git git://linuxtv.org/mkrufky/tuners.git
12684 F:      drivers/media/tuners/mxl5007t.*
12685
12686 MXSFB DRM DRIVER
12687 M:      Marek Vasut <marex@denx.de>
12688 M:      Stefan Agner <stefan@agner.ch>
12689 L:      dri-devel@lists.freedesktop.org
12690 S:      Supported
12691 T:      git git://anongit.freedesktop.org/drm/drm-misc
12692 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
12693 F:      drivers/gpu/drm/mxsfb/
12694
12695 MYLEX DAC960 PCI RAID Controller
12696 M:      Hannes Reinecke <hare@kernel.org>
12697 L:      linux-scsi@vger.kernel.org
12698 S:      Supported
12699 F:      drivers/scsi/myrb.*
12700 F:      drivers/scsi/myrs.*
12701
12702 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12703 M:      Chris Lee <christopher.lee@cspi.com>
12704 L:      netdev@vger.kernel.org
12705 S:      Supported
12706 W:      https://www.cspi.com/ethernet-products/support/downloads/
12707 F:      drivers/net/ethernet/myricom/myri10ge/
12708
12709 NAND FLASH SUBSYSTEM
12710 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12711 R:      Richard Weinberger <richard@nod.at>
12712 L:      linux-mtd@lists.infradead.org
12713 S:      Maintained
12714 W:      http://www.linux-mtd.infradead.org/
12715 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12716 C:      irc://irc.oftc.net/mtd
12717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12718 F:      drivers/mtd/nand/
12719 F:      include/linux/mtd/*nand*.h
12720
12721 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12722 M:      Daniel Mack <zonque@gmail.com>
12723 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12724 S:      Maintained
12725 W:      http://www.native-instruments.com
12726 F:      sound/usb/caiaq/
12727
12728 NATSEMI ETHERNET DRIVER (DP8381x)
12729 S:      Orphan
12730 F:      drivers/net/ethernet/natsemi/natsemi.c
12731
12732 NCR 5380 SCSI DRIVERS
12733 M:      Finn Thain <fthain@linux-m68k.org>
12734 M:      Michael Schmitz <schmitzmic@gmail.com>
12735 L:      linux-scsi@vger.kernel.org
12736 S:      Maintained
12737 F:      Documentation/scsi/g_NCR5380.rst
12738 F:      drivers/scsi/NCR5380.*
12739 F:      drivers/scsi/arm/cumana_1.c
12740 F:      drivers/scsi/arm/oak.c
12741 F:      drivers/scsi/atari_scsi.*
12742 F:      drivers/scsi/dmx3191d.c
12743 F:      drivers/scsi/g_NCR5380.*
12744 F:      drivers/scsi/mac_scsi.*
12745 F:      drivers/scsi/sun3_scsi.*
12746 F:      drivers/scsi/sun3_scsi_vme.c
12747
12748 NCSI LIBRARY
12749 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
12750 S:      Maintained
12751 F:      net/ncsi/
12752
12753 NCT6775 HARDWARE MONITOR DRIVER
12754 M:      Guenter Roeck <linux@roeck-us.net>
12755 L:      linux-hwmon@vger.kernel.org
12756 S:      Maintained
12757 F:      Documentation/hwmon/nct6775.rst
12758 F:      drivers/hwmon/nct6775.c
12759
12760 NETDEVSIM
12761 M:      Jakub Kicinski <kuba@kernel.org>
12762 S:      Maintained
12763 F:      drivers/net/netdevsim/*
12764
12765 NETEM NETWORK EMULATOR
12766 M:      Stephen Hemminger <stephen@networkplumber.org>
12767 L:      netdev@vger.kernel.org
12768 S:      Maintained
12769 F:      net/sched/sch_netem.c
12770
12771 NETERION 10GbE DRIVERS (s2io/vxge)
12772 M:      Jon Mason <jdmason@kudzu.us>
12773 L:      netdev@vger.kernel.org
12774 S:      Supported
12775 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12776 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12777 F:      drivers/net/ethernet/neterion/
12778
12779 NETFILTER
12780 M:      Pablo Neira Ayuso <pablo@netfilter.org>
12781 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
12782 M:      Florian Westphal <fw@strlen.de>
12783 L:      netfilter-devel@vger.kernel.org
12784 L:      coreteam@netfilter.org
12785 S:      Maintained
12786 W:      http://www.netfilter.org/
12787 W:      http://www.iptables.org/
12788 W:      http://www.nftables.org/
12789 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
12790 C:      irc://irc.libera.chat/netfilter
12791 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
12792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
12793 F:      include/linux/netfilter*
12794 F:      include/linux/netfilter/
12795 F:      include/net/netfilter/
12796 F:      include/uapi/linux/netfilter*
12797 F:      include/uapi/linux/netfilter/
12798 F:      net/*/netfilter.c
12799 F:      net/*/netfilter/
12800 F:      net/bridge/br_netfilter*.c
12801 F:      net/netfilter/
12802
12803 NETROM NETWORK LAYER
12804 M:      Ralf Baechle <ralf@linux-mips.org>
12805 L:      linux-hams@vger.kernel.org
12806 S:      Maintained
12807 W:      http://www.linux-ax25.org/
12808 F:      include/net/netrom.h
12809 F:      include/uapi/linux/netrom.h
12810 F:      net/netrom/
12811
12812 NETRONIX EMBEDDED CONTROLLER
12813 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
12814 S:      Maintained
12815 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
12816 F:      drivers/mfd/ntxec.c
12817 F:      drivers/pwm/pwm-ntxec.c
12818 F:      drivers/rtc/rtc-ntxec.c
12819 F:      include/linux/mfd/ntxec.h
12820
12821 NETRONOME ETHERNET DRIVERS
12822 M:      Simon Horman <simon.horman@corigine.com>
12823 R:      Jakub Kicinski <kuba@kernel.org>
12824 L:      oss-drivers@corigine.com
12825 S:      Maintained
12826 F:      drivers/net/ethernet/netronome/
12827
12828 NETWORK BLOCK DEVICE (NBD)
12829 M:      Josef Bacik <josef@toxicpanda.com>
12830 L:      linux-block@vger.kernel.org
12831 L:      nbd@other.debian.org
12832 S:      Maintained
12833 F:      Documentation/admin-guide/blockdev/nbd.rst
12834 F:      drivers/block/nbd.c
12835 F:      include/trace/events/nbd.h
12836 F:      include/uapi/linux/nbd.h
12837
12838 NETWORK DROP MONITOR
12839 M:      Neil Horman <nhorman@tuxdriver.com>
12840 L:      netdev@vger.kernel.org
12841 S:      Maintained
12842 W:      https://fedorahosted.org/dropwatch/
12843 F:      include/uapi/linux/net_dropmon.h
12844 F:      net/core/drop_monitor.c
12845
12846 NETWORKING DRIVERS
12847 M:      "David S. Miller" <davem@davemloft.net>
12848 M:      Jakub Kicinski <kuba@kernel.org>
12849 L:      netdev@vger.kernel.org
12850 S:      Maintained
12851 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12854 F:      Documentation/devicetree/bindings/net/
12855 F:      drivers/connector/
12856 F:      drivers/net/
12857 F:      include/linux/etherdevice.h
12858 F:      include/linux/fcdevice.h
12859 F:      include/linux/fddidevice.h
12860 F:      include/linux/hippidevice.h
12861 F:      include/linux/if_*
12862 F:      include/linux/inetdevice.h
12863 F:      include/linux/netdevice.h
12864 F:      include/uapi/linux/if_*
12865 F:      include/uapi/linux/netdevice.h
12866
12867 NETWORKING DRIVERS (WIRELESS)
12868 M:      Kalle Valo <kvalo@codeaurora.org>
12869 L:      linux-wireless@vger.kernel.org
12870 S:      Maintained
12871 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
12873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
12874 F:      Documentation/devicetree/bindings/net/wireless/
12875 F:      drivers/net/wireless/
12876
12877 NETWORKING [DSA]
12878 M:      Andrew Lunn <andrew@lunn.ch>
12879 M:      Vivien Didelot <vivien.didelot@gmail.com>
12880 M:      Florian Fainelli <f.fainelli@gmail.com>
12881 M:      Vladimir Oltean <olteanv@gmail.com>
12882 S:      Maintained
12883 F:      Documentation/devicetree/bindings/net/dsa/
12884 F:      drivers/net/dsa/
12885 F:      include/linux/dsa/
12886 F:      include/linux/platform_data/dsa.h
12887 F:      include/net/dsa.h
12888 F:      net/dsa/
12889
12890 NETWORKING [GENERAL]
12891 M:      "David S. Miller" <davem@davemloft.net>
12892 M:      Jakub Kicinski <kuba@kernel.org>
12893 L:      netdev@vger.kernel.org
12894 S:      Maintained
12895 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12896 B:      mailto:netdev@vger.kernel.org
12897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12899 F:      Documentation/networking/
12900 F:      include/linux/in.h
12901 F:      include/linux/net.h
12902 F:      include/linux/netdevice.h
12903 F:      include/net/
12904 F:      include/uapi/linux/in.h
12905 F:      include/uapi/linux/net.h
12906 F:      include/uapi/linux/net_namespace.h
12907 F:      include/uapi/linux/netdevice.h
12908 F:      lib/net_utils.c
12909 F:      lib/random32.c
12910 F:      net/
12911 F:      tools/testing/selftests/net/
12912
12913 NETWORKING [IPSEC]
12914 M:      Steffen Klassert <steffen.klassert@secunet.com>
12915 M:      Herbert Xu <herbert@gondor.apana.org.au>
12916 M:      "David S. Miller" <davem@davemloft.net>
12917 L:      netdev@vger.kernel.org
12918 S:      Maintained
12919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
12920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
12921 F:      include/net/xfrm.h
12922 F:      include/uapi/linux/xfrm.h
12923 F:      net/ipv4/ah4.c
12924 F:      net/ipv4/esp4*
12925 F:      net/ipv4/ip_vti.c
12926 F:      net/ipv4/ipcomp.c
12927 F:      net/ipv4/xfrm*
12928 F:      net/ipv6/ah6.c
12929 F:      net/ipv6/esp6*
12930 F:      net/ipv6/ip6_vti.c
12931 F:      net/ipv6/ipcomp6.c
12932 F:      net/ipv6/xfrm*
12933 F:      net/key/
12934 F:      net/xfrm/
12935 F:      tools/testing/selftests/net/ipsec.c
12936
12937 NETWORKING [IPv4/IPv6]
12938 M:      "David S. Miller" <davem@davemloft.net>
12939 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
12940 M:      David Ahern <dsahern@kernel.org>
12941 L:      netdev@vger.kernel.org
12942 S:      Maintained
12943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12944 F:      arch/x86/net/*
12945 F:      include/net/ip*
12946 F:      net/ipv4/
12947 F:      net/ipv6/
12948
12949 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
12950 M:      Paul Moore <paul@paul-moore.com>
12951 L:      netdev@vger.kernel.org
12952 L:      linux-security-module@vger.kernel.org
12953 S:      Maintained
12954 W:      https://github.com/netlabel
12955 F:      Documentation/netlabel/
12956 F:      include/net/calipso.h
12957 F:      include/net/cipso_ipv4.h
12958 F:      include/net/netlabel.h
12959 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
12960 F:      include/uapi/linux/netfilter/xt_SECMARK.h
12961 F:      net/ipv4/cipso_ipv4.c
12962 F:      net/ipv6/calipso.c
12963 F:      net/netfilter/xt_CONNSECMARK.c
12964 F:      net/netfilter/xt_SECMARK.c
12965 F:      net/netlabel/
12966
12967 NETWORKING [MPTCP]
12968 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
12969 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
12970 L:      netdev@vger.kernel.org
12971 L:      mptcp@lists.linux.dev
12972 S:      Maintained
12973 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
12974 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
12975 F:      Documentation/networking/mptcp-sysctl.rst
12976 F:      include/net/mptcp.h
12977 F:      include/trace/events/mptcp.h
12978 F:      include/uapi/linux/mptcp.h
12979 F:      net/mptcp/
12980 F:      tools/testing/selftests/net/mptcp/
12981
12982 NETWORKING [TCP]
12983 M:      Eric Dumazet <edumazet@google.com>
12984 L:      netdev@vger.kernel.org
12985 S:      Maintained
12986 F:      include/linux/tcp.h
12987 F:      include/net/tcp.h
12988 F:      include/trace/events/tcp.h
12989 F:      include/uapi/linux/tcp.h
12990 F:      net/ipv4/syncookies.c
12991 F:      net/ipv4/tcp*.c
12992 F:      net/ipv6/syncookies.c
12993 F:      net/ipv6/tcp*.c
12994
12995 NETWORKING [TLS]
12996 M:      Boris Pismenny <borisp@nvidia.com>
12997 M:      John Fastabend <john.fastabend@gmail.com>
12998 M:      Daniel Borkmann <daniel@iogearbox.net>
12999 M:      Jakub Kicinski <kuba@kernel.org>
13000 L:      netdev@vger.kernel.org
13001 S:      Maintained
13002 F:      include/net/tls.h
13003 F:      include/uapi/linux/tls.h
13004 F:      net/tls/*
13005
13006 NETWORKING [WIRELESS]
13007 L:      linux-wireless@vger.kernel.org
13008 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13009
13010 NETXEN (1/10) GbE SUPPORT
13011 M:      Manish Chopra <manishc@marvell.com>
13012 M:      Rahul Verma <rahulv@marvell.com>
13013 M:      GR-Linux-NIC-Dev@marvell.com
13014 L:      netdev@vger.kernel.org
13015 S:      Supported
13016 F:      drivers/net/ethernet/qlogic/netxen/
13017
13018 NET_FAILOVER MODULE
13019 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13020 L:      netdev@vger.kernel.org
13021 S:      Supported
13022 F:      Documentation/networking/net_failover.rst
13023 F:      drivers/net/net_failover.c
13024 F:      include/net/net_failover.h
13025
13026 NEXTHOP
13027 M:      David Ahern <dsahern@kernel.org>
13028 L:      netdev@vger.kernel.org
13029 S:      Maintained
13030 F:      include/net/netns/nexthop.h
13031 F:      include/net/nexthop.h
13032 F:      include/uapi/linux/nexthop.h
13033 F:      net/ipv4/nexthop.c
13034
13035 NFC SUBSYSTEM
13036 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13037 L:      linux-nfc@lists.01.org (subscribers-only)
13038 L:      netdev@vger.kernel.org
13039 S:      Maintained
13040 F:      Documentation/devicetree/bindings/net/nfc/
13041 F:      drivers/nfc/
13042 F:      include/linux/platform_data/nfcmrvl.h
13043 F:      include/net/nfc/
13044 F:      include/uapi/linux/nfc.h
13045 F:      net/nfc/
13046
13047 NFC VIRTUAL NCI DEVICE DRIVER
13048 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
13049 L:      netdev@vger.kernel.org
13050 L:      linux-nfc@lists.01.org (subscribers-only)
13051 S:      Supported
13052 F:      drivers/nfc/virtual_ncidev.c
13053 F:      tools/testing/selftests/nci/
13054
13055 NFS, SUNRPC, AND LOCKD CLIENTS
13056 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
13057 M:      Anna Schumaker <anna.schumaker@netapp.com>
13058 L:      linux-nfs@vger.kernel.org
13059 S:      Maintained
13060 W:      http://client.linux-nfs.org
13061 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13062 F:      fs/lockd/
13063 F:      fs/nfs/
13064 F:      fs/nfs_common/
13065 F:      include/linux/lockd/
13066 F:      include/linux/nfs*
13067 F:      include/linux/sunrpc/
13068 F:      include/uapi/linux/nfs*
13069 F:      include/uapi/linux/sunrpc/
13070 F:      net/sunrpc/
13071 F:      Documentation/filesystems/nfs/
13072
13073 NILFS2 FILESYSTEM
13074 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
13075 L:      linux-nilfs@vger.kernel.org
13076 S:      Supported
13077 W:      https://nilfs.sourceforge.io/
13078 W:      https://nilfs.osdn.jp/
13079 T:      git git://github.com/konis/nilfs2.git
13080 F:      Documentation/filesystems/nilfs2.rst
13081 F:      fs/nilfs2/
13082 F:      include/trace/events/nilfs2.h
13083 F:      include/uapi/linux/nilfs2_api.h
13084 F:      include/uapi/linux/nilfs2_ondisk.h
13085
13086 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13087 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13088 S:      Maintained
13089 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13090 F:      Documentation/scsi/NinjaSCSI.rst
13091 F:      drivers/scsi/pcmcia/nsp_*
13092
13093 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13094 M:      GOTO Masanori <gotom@debian.or.jp>
13095 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13096 S:      Maintained
13097 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13098 F:      Documentation/scsi/NinjaSCSI.rst
13099 F:      drivers/scsi/nsp32*
13100
13101 NIOS2 ARCHITECTURE
13102 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13103 S:      Maintained
13104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
13105 F:      arch/nios2/
13106
13107 NITRO ENCLAVES (NE)
13108 M:      Andra Paraschiv <andraprs@amazon.com>
13109 M:      Alexandru Vasile <lexnv@amazon.com>
13110 M:      Alexandru Ciobotaru <alcioa@amazon.com>
13111 L:      linux-kernel@vger.kernel.org
13112 S:      Supported
13113 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13114 F:      Documentation/virt/ne_overview.rst
13115 F:      drivers/virt/nitro_enclaves/
13116 F:      include/linux/nitro_enclaves.h
13117 F:      include/uapi/linux/nitro_enclaves.h
13118 F:      samples/nitro_enclaves/
13119
13120 NOHZ, DYNTICKS SUPPORT
13121 M:      Frederic Weisbecker <fweisbec@gmail.com>
13122 M:      Thomas Gleixner <tglx@linutronix.de>
13123 M:      Ingo Molnar <mingo@kernel.org>
13124 L:      linux-kernel@vger.kernel.org
13125 S:      Maintained
13126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13127 F:      include/linux/sched/nohz.h
13128 F:      include/linux/tick.h
13129 F:      kernel/time/tick*.*
13130
13131 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13132 M:      Pavel Machek <pavel@ucw.cz>
13133 M:      Sakari Ailus <sakari.ailus@iki.fi>
13134 L:      linux-media@vger.kernel.org
13135 S:      Maintained
13136 F:      drivers/media/i2c/ad5820.c
13137 F:      drivers/media/i2c/et8ek8
13138
13139 NOKIA N900 POWER SUPPLY DRIVERS
13140 R:      Pali Rohár <pali@kernel.org>
13141 F:      drivers/power/supply/bq2415x_charger.c
13142 F:      drivers/power/supply/bq27xxx_battery.c
13143 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13144 F:      drivers/power/supply/isp1704_charger.c
13145 F:      drivers/power/supply/rx51_battery.c
13146 F:      include/linux/power/bq2415x_charger.h
13147 F:      include/linux/power/bq27xxx_battery.h
13148
13149 NOLIBC HEADER FILE
13150 M:      Willy Tarreau <w@1wt.eu>
13151 S:      Maintained
13152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13153 F:      tools/include/nolibc/
13154
13155 NSDEPS
13156 M:      Matthias Maennich <maennich@google.com>
13157 S:      Maintained
13158 F:      Documentation/core-api/symbol-namespaces.rst
13159 F:      scripts/nsdeps
13160
13161 NTB AMD DRIVER
13162 M:      Sanjay R Mehta <sanju.mehta@amd.com>
13163 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13164 L:      linux-ntb@googlegroups.com
13165 S:      Supported
13166 F:      drivers/ntb/hw/amd/
13167
13168 NTB DRIVER CORE
13169 M:      Jon Mason <jdmason@kudzu.us>
13170 M:      Dave Jiang <dave.jiang@intel.com>
13171 M:      Allen Hubbe <allenbh@gmail.com>
13172 L:      linux-ntb@googlegroups.com
13173 S:      Supported
13174 W:      https://github.com/jonmason/ntb/wiki
13175 T:      git git://github.com/jonmason/ntb.git
13176 F:      drivers/net/ntb_netdev.c
13177 F:      drivers/ntb/
13178 F:      include/linux/ntb.h
13179 F:      include/linux/ntb_transport.h
13180 F:      tools/testing/selftests/ntb/
13181
13182 NTB IDT DRIVER
13183 M:      Serge Semin <fancer.lancer@gmail.com>
13184 L:      linux-ntb@googlegroups.com
13185 S:      Supported
13186 F:      drivers/ntb/hw/idt/
13187
13188 NTB INTEL DRIVER
13189 M:      Dave Jiang <dave.jiang@intel.com>
13190 L:      linux-ntb@googlegroups.com
13191 S:      Supported
13192 W:      https://github.com/davejiang/linux/wiki
13193 T:      git https://github.com/davejiang/linux.git
13194 F:      drivers/ntb/hw/intel/
13195
13196 NTFS FILESYSTEM
13197 M:      Anton Altaparmakov <anton@tuxera.com>
13198 L:      linux-ntfs-dev@lists.sourceforge.net
13199 S:      Supported
13200 W:      http://www.tuxera.com/
13201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13202 F:      Documentation/filesystems/ntfs.rst
13203 F:      fs/ntfs/
13204
13205 NUBUS SUBSYSTEM
13206 M:      Finn Thain <fthain@linux-m68k.org>
13207 L:      linux-m68k@lists.linux-m68k.org
13208 S:      Maintained
13209 F:      arch/*/include/asm/nubus.h
13210 F:      drivers/nubus/
13211 F:      include/linux/nubus.h
13212 F:      include/uapi/linux/nubus.h
13213
13214 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13215 M:      Antonino Daplas <adaplas@gmail.com>
13216 L:      linux-fbdev@vger.kernel.org
13217 S:      Maintained
13218 F:      drivers/video/fbdev/nvidia/
13219 F:      drivers/video/fbdev/riva/
13220
13221 NVM EXPRESS DRIVER
13222 M:      Keith Busch <kbusch@kernel.org>
13223 M:      Jens Axboe <axboe@fb.com>
13224 M:      Christoph Hellwig <hch@lst.de>
13225 M:      Sagi Grimberg <sagi@grimberg.me>
13226 L:      linux-nvme@lists.infradead.org
13227 S:      Supported
13228 W:      http://git.infradead.org/nvme.git
13229 T:      git://git.infradead.org/nvme.git
13230 F:      drivers/nvme/host/
13231 F:      include/linux/nvme.h
13232 F:      include/uapi/linux/nvme_ioctl.h
13233
13234 NVM EXPRESS FC TRANSPORT DRIVERS
13235 M:      James Smart <james.smart@broadcom.com>
13236 L:      linux-nvme@lists.infradead.org
13237 S:      Supported
13238 F:      drivers/nvme/host/fc.c
13239 F:      drivers/nvme/target/fc.c
13240 F:      drivers/nvme/target/fcloop.c
13241 F:      include/linux/nvme-fc-driver.h
13242 F:      include/linux/nvme-fc.h
13243
13244 NVM EXPRESS TARGET DRIVER
13245 M:      Christoph Hellwig <hch@lst.de>
13246 M:      Sagi Grimberg <sagi@grimberg.me>
13247 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
13248 L:      linux-nvme@lists.infradead.org
13249 S:      Supported
13250 W:      http://git.infradead.org/nvme.git
13251 T:      git://git.infradead.org/nvme.git
13252 F:      drivers/nvme/target/
13253
13254 NVMEM FRAMEWORK
13255 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13256 S:      Maintained
13257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13258 F:      Documentation/ABI/stable/sysfs-bus-nvmem
13259 F:      Documentation/devicetree/bindings/nvmem/
13260 F:      drivers/nvmem/
13261 F:      include/linux/nvmem-consumer.h
13262 F:      include/linux/nvmem-provider.h
13263
13264 NXP C45 TJA11XX PHY DRIVER
13265 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13266 L:      netdev@vger.kernel.org
13267 S:      Maintained
13268 F:      drivers/net/phy/nxp-c45-tja11xx.c
13269
13270 NXP FSPI DRIVER
13271 M:      Ashish Kumar <ashish.kumar@nxp.com>
13272 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
13273 L:      linux-spi@vger.kernel.org
13274 S:      Maintained
13275 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
13276 F:      drivers/spi/spi-nxp-fspi.c
13277
13278 NXP FXAS21002C DRIVER
13279 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13280 L:      linux-iio@vger.kernel.org
13281 S:      Maintained
13282 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13283 F:      drivers/iio/gyro/fxas21002c.h
13284 F:      drivers/iio/gyro/fxas21002c_core.c
13285 F:      drivers/iio/gyro/fxas21002c_i2c.c
13286 F:      drivers/iio/gyro/fxas21002c_spi.c
13287
13288 NXP i.MX CLOCK DRIVERS
13289 M:      Abel Vesa <abel.vesa@nxp.com>
13290 L:      linux-clk@vger.kernel.org
13291 L:      linux-imx@nxp.com
13292 S:      Maintained
13293 F:      drivers/clk/imx/
13294
13295 NXP i.MX 8MQ DCSS DRIVER
13296 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13297 R:      Lucas Stach <l.stach@pengutronix.de>
13298 L:      dri-devel@lists.freedesktop.org
13299 S:      Maintained
13300 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13301 F:      drivers/gpu/drm/imx/dcss/
13302
13303 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13304 M:      Jagan Teki <jagan@amarulasolutions.com>
13305 S:      Maintained
13306 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13307 F:      drivers/regulator/pf8x00-regulator.c
13308
13309 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13310 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13311 L:      linux-kernel@vger.kernel.org
13312 S:      Maintained
13313 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13314 F:      drivers/extcon/extcon-ptn5150.c
13315
13316 NXP SGTL5000 DRIVER
13317 M:      Fabio Estevam <festevam@gmail.com>
13318 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13319 S:      Maintained
13320 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
13321 F:      sound/soc/codecs/sgtl5000*
13322
13323 NXP SJA1105 ETHERNET SWITCH DRIVER
13324 M:      Vladimir Oltean <olteanv@gmail.com>
13325 L:      linux-kernel@vger.kernel.org
13326 S:      Maintained
13327 F:      drivers/net/dsa/sja1105
13328 F:      drivers/net/pcs/pcs-xpcs-nxp.c
13329
13330 NXP TDA998X DRM DRIVER
13331 M:      Russell King <linux@armlinux.org.uk>
13332 S:      Maintained
13333 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13334 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13335 F:      drivers/gpu/drm/i2c/tda998x_drv.c
13336 F:      include/drm/i2c/tda998x.h
13337 F:      include/dt-bindings/display/tda998x.h
13338 K:      "nxp,tda998x"
13339
13340 NXP TFA9879 DRIVER
13341 M:      Peter Rosin <peda@axentia.se>
13342 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13343 S:      Maintained
13344 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
13345 F:      sound/soc/codecs/tfa9879*
13346
13347 NXP/Goodix TFA989X (TFA1) DRIVER
13348 M:      Stephan Gerhold <stephan@gerhold.net>
13349 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13350 S:      Maintained
13351 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
13352 F:      sound/soc/codecs/tfa989x.c
13353
13354 NXP-NCI NFC DRIVER
13355 R:      Charles Gorand <charles.gorand@effinnov.com>
13356 L:      linux-nfc@lists.01.org (subscribers-only)
13357 S:      Supported
13358 F:      drivers/nfc/nxp-nci
13359
13360 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13361 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
13362 R:      NXP Linux Team <linux-imx@nxp.com>
13363 L:      linux-media@vger.kernel.org
13364 S:      Maintained
13365 F:      Documentation/devicetree/bindings/media/imx8-jpeg.yaml
13366 F:      drivers/media/platform/imx-jpeg
13367
13368 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13369 M:      Jonas Malaco <jonas@protocubo.io>
13370 L:      linux-hwmon@vger.kernel.org
13371 S:      Maintained
13372 F:      Documentation/hwmon/nzxt-kraken2.rst
13373 F:      drivers/hwmon/nzxt-kraken2.c
13374
13375 OBJAGG
13376 M:      Jiri Pirko <jiri@nvidia.com>
13377 L:      netdev@vger.kernel.org
13378 S:      Supported
13379 F:      include/linux/objagg.h
13380 F:      lib/objagg.c
13381 F:      lib/test_objagg.c
13382
13383 OBJTOOL
13384 M:      Josh Poimboeuf <jpoimboe@redhat.com>
13385 M:      Peter Zijlstra <peterz@infradead.org>
13386 S:      Supported
13387 F:      tools/objtool/
13388 F:      include/linux/objtool.h
13389
13390 OCELOT ETHERNET SWITCH DRIVER
13391 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
13392 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
13393 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13394 M:      UNGLinuxDriver@microchip.com
13395 L:      netdev@vger.kernel.org
13396 S:      Supported
13397 F:      drivers/net/dsa/ocelot/*
13398 F:      drivers/net/ethernet/mscc/
13399 F:      include/soc/mscc/ocelot*
13400 F:      net/dsa/tag_ocelot.c
13401 F:      net/dsa/tag_ocelot_8021q.c
13402 F:      tools/testing/selftests/drivers/net/ocelot/*
13403
13404 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13405 M:      Frederic Barrat <fbarrat@linux.ibm.com>
13406 M:      Andrew Donnellan <ajd@linux.ibm.com>
13407 L:      linuxppc-dev@lists.ozlabs.org
13408 S:      Supported
13409 F:      Documentation/userspace-api/accelerators/ocxl.rst
13410 F:      arch/powerpc/include/asm/pnv-ocxl.h
13411 F:      arch/powerpc/platforms/powernv/ocxl.c
13412 F:      drivers/misc/ocxl/
13413 F:      include/misc/ocxl*
13414 F:      include/uapi/misc/ocxl.h
13415
13416 OMAP AUDIO SUPPORT
13417 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
13418 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
13419 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13420 L:      linux-omap@vger.kernel.org
13421 S:      Maintained
13422 F:      sound/soc/ti/n810.c
13423 F:      sound/soc/ti/omap*
13424 F:      sound/soc/ti/rx51.c
13425 F:      sound/soc/ti/sdma-pcm.*
13426
13427 OMAP CLOCK FRAMEWORK SUPPORT
13428 M:      Paul Walmsley <paul@pwsan.com>
13429 L:      linux-omap@vger.kernel.org
13430 S:      Maintained
13431 F:      arch/arm/*omap*/*clock*
13432
13433 OMAP DEVICE TREE SUPPORT
13434 M:      Benoît Cousson <bcousson@baylibre.com>
13435 M:      Tony Lindgren <tony@atomide.com>
13436 L:      linux-omap@vger.kernel.org
13437 L:      devicetree@vger.kernel.org
13438 S:      Maintained
13439 F:      arch/arm/boot/dts/*am3*
13440 F:      arch/arm/boot/dts/*am4*
13441 F:      arch/arm/boot/dts/*am5*
13442 F:      arch/arm/boot/dts/*dra7*
13443 F:      arch/arm/boot/dts/*omap*
13444 F:      arch/arm/boot/dts/logicpd-som-lv*
13445 F:      arch/arm/boot/dts/logicpd-torpedo*
13446
13447 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
13448 L:      linux-omap@vger.kernel.org
13449 L:      linux-fbdev@vger.kernel.org
13450 S:      Orphan
13451 F:      Documentation/arm/omap/dss.rst
13452 F:      drivers/video/fbdev/omap2/
13453
13454 OMAP FRAMEBUFFER SUPPORT
13455 L:      linux-fbdev@vger.kernel.org
13456 L:      linux-omap@vger.kernel.org
13457 S:      Orphan
13458 F:      drivers/video/fbdev/omap/
13459
13460 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
13461 M:      Roger Quadros <rogerq@kernel.org>
13462 M:      Tony Lindgren <tony@atomide.com>
13463 L:      linux-omap@vger.kernel.org
13464 S:      Maintained
13465 F:      arch/arm/mach-omap2/*gpmc*
13466 F:      drivers/memory/omap-gpmc.c
13467
13468 OMAP GPIO DRIVER
13469 M:      Grygorii Strashko <grygorii.strashko@ti.com>
13470 M:      Santosh Shilimkar <ssantosh@kernel.org>
13471 M:      Kevin Hilman <khilman@kernel.org>
13472 L:      linux-omap@vger.kernel.org
13473 S:      Maintained
13474 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
13475 F:      drivers/gpio/gpio-omap.c
13476
13477 OMAP HARDWARE SPINLOCK SUPPORT
13478 M:      Ohad Ben-Cohen <ohad@wizery.com>
13479 L:      linux-omap@vger.kernel.org
13480 S:      Maintained
13481 F:      drivers/hwspinlock/omap_hwspinlock.c
13482
13483 OMAP HS MMC SUPPORT
13484 L:      linux-mmc@vger.kernel.org
13485 L:      linux-omap@vger.kernel.org
13486 S:      Orphan
13487 F:      drivers/mmc/host/omap_hsmmc.c
13488
13489 OMAP HWMOD DATA
13490 M:      Paul Walmsley <paul@pwsan.com>
13491 L:      linux-omap@vger.kernel.org
13492 S:      Maintained
13493 F:      arch/arm/mach-omap2/omap_hwmod*data*
13494
13495 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
13496 M:      Benoît Cousson <bcousson@baylibre.com>
13497 L:      linux-omap@vger.kernel.org
13498 S:      Maintained
13499 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
13500
13501 OMAP HWMOD SUPPORT
13502 M:      Benoît Cousson <bcousson@baylibre.com>
13503 M:      Paul Walmsley <paul@pwsan.com>
13504 L:      linux-omap@vger.kernel.org
13505 S:      Maintained
13506 F:      arch/arm/mach-omap2/omap_hwmod.*
13507
13508 OMAP I2C DRIVER
13509 M:      Vignesh R <vigneshr@ti.com>
13510 L:      linux-omap@vger.kernel.org
13511 L:      linux-i2c@vger.kernel.org
13512 S:      Maintained
13513 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
13514 F:      drivers/i2c/busses/i2c-omap.c
13515
13516 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
13517 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13518 L:      linux-media@vger.kernel.org
13519 S:      Maintained
13520 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
13521 F:      drivers/media/platform/omap3isp/
13522 F:      drivers/staging/media/omap4iss/
13523
13524 OMAP MMC SUPPORT
13525 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13526 L:      linux-omap@vger.kernel.org
13527 S:      Odd Fixes
13528 F:      drivers/mmc/host/omap.c
13529
13530 OMAP POWER MANAGEMENT SUPPORT
13531 M:      Kevin Hilman <khilman@kernel.org>
13532 L:      linux-omap@vger.kernel.org
13533 S:      Maintained
13534 F:      arch/arm/*omap*/*pm*
13535 F:      drivers/cpufreq/omap-cpufreq.c
13536
13537 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13538 M:      Rajendra Nayak <rnayak@codeaurora.org>
13539 M:      Paul Walmsley <paul@pwsan.com>
13540 L:      linux-omap@vger.kernel.org
13541 S:      Maintained
13542 F:      arch/arm/mach-omap2/prm*
13543
13544 OMAP RANDOM NUMBER GENERATOR SUPPORT
13545 M:      Deepak Saxena <dsaxena@plexity.net>
13546 S:      Maintained
13547 F:      drivers/char/hw_random/omap-rng.c
13548
13549 OMAP USB SUPPORT
13550 L:      linux-usb@vger.kernel.org
13551 L:      linux-omap@vger.kernel.org
13552 S:      Orphan
13553 F:      arch/arm/*omap*/usb*
13554 F:      drivers/usb/*/*omap*
13555
13556 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13557 M:      Mark Jackson <mpfj@newflow.co.uk>
13558 L:      linux-omap@vger.kernel.org
13559 S:      Maintained
13560 F:      arch/arm/boot/dts/am335x-nano.dts
13561
13562 OMAP1 SUPPORT
13563 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13564 M:      Tony Lindgren <tony@atomide.com>
13565 L:      linux-omap@vger.kernel.org
13566 S:      Maintained
13567 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13568 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13569 F:      arch/arm/configs/omap1_defconfig
13570 F:      arch/arm/mach-omap1/
13571 F:      arch/arm/plat-omap/
13572 F:      drivers/i2c/busses/i2c-omap.c
13573 F:      include/linux/platform_data/ams-delta-fiq.h
13574 F:      include/linux/platform_data/i2c-omap.h
13575
13576 OMAP2+ SUPPORT
13577 M:      Tony Lindgren <tony@atomide.com>
13578 L:      linux-omap@vger.kernel.org
13579 S:      Maintained
13580 W:      http://www.muru.com/linux/omap/
13581 W:      http://linux.omap.com/
13582 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13584 F:      arch/arm/configs/omap2plus_defconfig
13585 F:      arch/arm/mach-omap2/
13586 F:      arch/arm/plat-omap/
13587 F:      drivers/bus/ti-sysc.c
13588 F:      drivers/i2c/busses/i2c-omap.c
13589 F:      drivers/irqchip/irq-omap-intc.c
13590 F:      drivers/mfd/*omap*.c
13591 F:      drivers/mfd/menelaus.c
13592 F:      drivers/mfd/palmas.c
13593 F:      drivers/mfd/tps65217.c
13594 F:      drivers/mfd/tps65218.c
13595 F:      drivers/mfd/tps65910.c
13596 F:      drivers/mfd/twl-core.[ch]
13597 F:      drivers/mfd/twl4030*.c
13598 F:      drivers/mfd/twl6030*.c
13599 F:      drivers/mfd/twl6040*.c
13600 F:      drivers/regulator/palmas-regulator*.c
13601 F:      drivers/regulator/pbias-regulator.c
13602 F:      drivers/regulator/tps65217-regulator.c
13603 F:      drivers/regulator/tps65218-regulator.c
13604 F:      drivers/regulator/tps65910-regulator.c
13605 F:      drivers/regulator/twl-regulator.c
13606 F:      drivers/regulator/twl6030-regulator.c
13607 F:      include/linux/platform_data/i2c-omap.h
13608 F:      include/linux/platform_data/ti-sysc.h
13609
13610 OMFS FILESYSTEM
13611 M:      Bob Copeland <me@bobcopeland.com>
13612 L:      linux-karma-devel@lists.sourceforge.net
13613 S:      Maintained
13614 F:      Documentation/filesystems/omfs.rst
13615 F:      fs/omfs/
13616
13617 OMNIKEY CARDMAN 4000 DRIVER
13618 M:      Harald Welte <laforge@gnumonks.org>
13619 S:      Maintained
13620 F:      drivers/char/pcmcia/cm4000_cs.c
13621 F:      include/linux/cm4000_cs.h
13622 F:      include/uapi/linux/cm4000_cs.h
13623
13624 OMNIKEY CARDMAN 4040 DRIVER
13625 M:      Harald Welte <laforge@gnumonks.org>
13626 S:      Maintained
13627 F:      drivers/char/pcmcia/cm4040_cs.*
13628
13629 OMNIVISION OV02A10 SENSOR DRIVER
13630 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13631 L:      linux-media@vger.kernel.org
13632 S:      Maintained
13633 T:      git git://linuxtv.org/media_tree.git
13634 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13635 F:      drivers/media/i2c/ov02a10.c
13636
13637 OMNIVISION OV13858 SENSOR DRIVER
13638 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13639 L:      linux-media@vger.kernel.org
13640 S:      Maintained
13641 T:      git git://linuxtv.org/media_tree.git
13642 F:      drivers/media/i2c/ov13858.c
13643
13644 OMNIVISION OV2680 SENSOR DRIVER
13645 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13646 L:      linux-media@vger.kernel.org
13647 S:      Maintained
13648 T:      git git://linuxtv.org/media_tree.git
13649 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
13650 F:      drivers/media/i2c/ov2680.c
13651
13652 OMNIVISION OV2685 SENSOR DRIVER
13653 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13654 L:      linux-media@vger.kernel.org
13655 S:      Maintained
13656 T:      git git://linuxtv.org/media_tree.git
13657 F:      drivers/media/i2c/ov2685.c
13658
13659 OMNIVISION OV2740 SENSOR DRIVER
13660 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13661 R:      Shawn Tu <shawnx.tu@intel.com>
13662 R:      Bingbu Cao <bingbu.cao@intel.com>
13663 L:      linux-media@vger.kernel.org
13664 S:      Maintained
13665 T:      git git://linuxtv.org/media_tree.git
13666 F:      drivers/media/i2c/ov2740.c
13667
13668 OMNIVISION OV5640 SENSOR DRIVER
13669 M:      Steve Longerbeam <slongerbeam@gmail.com>
13670 L:      linux-media@vger.kernel.org
13671 S:      Maintained
13672 T:      git git://linuxtv.org/media_tree.git
13673 F:      drivers/media/i2c/ov5640.c
13674
13675 OMNIVISION OV5647 SENSOR DRIVER
13676 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
13677 M:      Jacopo Mondi <jacopo@jmondi.org>
13678 L:      linux-media@vger.kernel.org
13679 S:      Maintained
13680 T:      git git://linuxtv.org/media_tree.git
13681 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
13682 F:      drivers/media/i2c/ov5647.c
13683
13684 OMNIVISION OV5670 SENSOR DRIVER
13685 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13686 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
13687 L:      linux-media@vger.kernel.org
13688 S:      Maintained
13689 T:      git git://linuxtv.org/media_tree.git
13690 F:      drivers/media/i2c/ov5670.c
13691
13692 OMNIVISION OV5675 SENSOR DRIVER
13693 M:      Shawn Tu <shawnx.tu@intel.com>
13694 L:      linux-media@vger.kernel.org
13695 S:      Maintained
13696 T:      git git://linuxtv.org/media_tree.git
13697 F:      drivers/media/i2c/ov5675.c
13698
13699 OMNIVISION OV5695 SENSOR DRIVER
13700 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13701 L:      linux-media@vger.kernel.org
13702 S:      Maintained
13703 T:      git git://linuxtv.org/media_tree.git
13704 F:      drivers/media/i2c/ov5695.c
13705
13706 OMNIVISION OV7670 SENSOR DRIVER
13707 L:      linux-media@vger.kernel.org
13708 S:      Orphan
13709 T:      git git://linuxtv.org/media_tree.git
13710 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
13711 F:      drivers/media/i2c/ov7670.c
13712
13713 OMNIVISION OV772x SENSOR DRIVER
13714 M:      Jacopo Mondi <jacopo@jmondi.org>
13715 L:      linux-media@vger.kernel.org
13716 S:      Odd fixes
13717 T:      git git://linuxtv.org/media_tree.git
13718 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13719 F:      drivers/media/i2c/ov772x.c
13720 F:      include/media/i2c/ov772x.h
13721
13722 OMNIVISION OV7740 SENSOR DRIVER
13723 M:      Wenyou Yang <wenyou.yang@microchip.com>
13724 L:      linux-media@vger.kernel.org
13725 S:      Maintained
13726 T:      git git://linuxtv.org/media_tree.git
13727 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
13728 F:      drivers/media/i2c/ov7740.c
13729
13730 OMNIVISION OV8856 SENSOR DRIVER
13731 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13732 L:      linux-media@vger.kernel.org
13733 S:      Maintained
13734 T:      git git://linuxtv.org/media_tree.git
13735 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13736 F:      drivers/media/i2c/ov8856.c
13737
13738 OMNIVISION OV9640 SENSOR DRIVER
13739 M:      Petr Cvek <petrcvekcz@gmail.com>
13740 L:      linux-media@vger.kernel.org
13741 S:      Maintained
13742 F:      drivers/media/i2c/ov9640.*
13743
13744 OMNIVISION OV9650 SENSOR DRIVER
13745 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13746 R:      Akinobu Mita <akinobu.mita@gmail.com>
13747 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13748 L:      linux-media@vger.kernel.org
13749 S:      Maintained
13750 T:      git git://linuxtv.org/media_tree.git
13751 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
13752 F:      drivers/media/i2c/ov9650.c
13753
13754 OMNIVISION OV9734 SENSOR DRIVER
13755 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13756 R:      Bingbu Cao <bingbu.cao@intel.com>
13757 L:      linux-media@vger.kernel.org
13758 S:      Maintained
13759 T:      git git://linuxtv.org/media_tree.git
13760 F:      drivers/media/i2c/ov9734.c
13761
13762 ONENAND FLASH DRIVER
13763 M:      Kyungmin Park <kyungmin.park@samsung.com>
13764 L:      linux-mtd@lists.infradead.org
13765 S:      Maintained
13766 F:      drivers/mtd/nand/onenand/
13767 F:      include/linux/mtd/onenand*.h
13768
13769 ONION OMEGA2+ BOARD
13770 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
13771 L:      linux-mips@vger.kernel.org
13772 S:      Maintained
13773 F:      arch/mips/boot/dts/ralink/omega2p.dts
13774
13775 OP-TEE DRIVER
13776 M:      Jens Wiklander <jens.wiklander@linaro.org>
13777 L:      op-tee@lists.trustedfirmware.org
13778 S:      Maintained
13779 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
13780 F:      drivers/tee/optee/
13781
13782 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
13783 M:      Sumit Garg <sumit.garg@linaro.org>
13784 L:      op-tee@lists.trustedfirmware.org
13785 S:      Maintained
13786 F:      drivers/char/hw_random/optee-rng.c
13787
13788 OPA-VNIC DRIVER
13789 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
13790 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
13791 L:      linux-rdma@vger.kernel.org
13792 S:      Supported
13793 F:      drivers/infiniband/ulp/opa_vnic
13794
13795 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
13796 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
13797 M:      Frank Rowand <frowand.list@gmail.com>
13798 L:      devicetree@vger.kernel.org
13799 S:      Maintained
13800 F:      Documentation/devicetree/dynamic-resolution-notes.rst
13801 F:      Documentation/devicetree/overlay-notes.rst
13802 F:      drivers/of/overlay.c
13803 F:      drivers/of/resolver.c
13804 K:      of_overlay_notifier_
13805
13806 OPEN FIRMWARE AND FLATTENED DEVICE TREE
13807 M:      Rob Herring <robh+dt@kernel.org>
13808 M:      Frank Rowand <frowand.list@gmail.com>
13809 L:      devicetree@vger.kernel.org
13810 S:      Maintained
13811 W:      http://www.devicetree.org/
13812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13813 F:      Documentation/ABI/testing/sysfs-firmware-ofw
13814 F:      drivers/of/
13815 F:      include/linux/of*.h
13816 F:      scripts/dtc/
13817
13818 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
13819 M:      Rob Herring <robh+dt@kernel.org>
13820 L:      devicetree@vger.kernel.org
13821 S:      Maintained
13822 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
13823 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13824 F:      Documentation/devicetree/
13825 F:      arch/*/boot/dts/
13826 F:      include/dt-bindings/
13827
13828 OPENCORES I2C BUS DRIVER
13829 M:      Peter Korsgaard <peter@korsgaard.com>
13830 M:      Andrew Lunn <andrew@lunn.ch>
13831 L:      linux-i2c@vger.kernel.org
13832 S:      Maintained
13833 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
13834 F:      Documentation/i2c/busses/i2c-ocores.rst
13835 F:      drivers/i2c/busses/i2c-ocores.c
13836 F:      include/linux/platform_data/i2c-ocores.h
13837
13838 OPENRISC ARCHITECTURE
13839 M:      Jonas Bonn <jonas@southpole.se>
13840 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
13841 M:      Stafford Horne <shorne@gmail.com>
13842 L:      openrisc@lists.librecores.org
13843 S:      Maintained
13844 W:      http://openrisc.io
13845 T:      git git://github.com/openrisc/linux.git
13846 F:      Documentation/devicetree/bindings/openrisc/
13847 F:      Documentation/openrisc/
13848 F:      arch/openrisc/
13849 F:      drivers/irqchip/irq-ompic.c
13850 F:      drivers/irqchip/irq-or1k-*
13851
13852 OPENVSWITCH
13853 M:      Pravin B Shelar <pshelar@ovn.org>
13854 L:      netdev@vger.kernel.org
13855 L:      dev@openvswitch.org
13856 S:      Maintained
13857 W:      http://openvswitch.org
13858 F:      include/uapi/linux/openvswitch.h
13859 F:      net/openvswitch/
13860
13861 OPERATING PERFORMANCE POINTS (OPP)
13862 M:      Viresh Kumar <vireshk@kernel.org>
13863 M:      Nishanth Menon <nm@ti.com>
13864 M:      Stephen Boyd <sboyd@kernel.org>
13865 L:      linux-pm@vger.kernel.org
13866 S:      Maintained
13867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
13868 F:      Documentation/devicetree/bindings/opp/
13869 F:      Documentation/power/opp.rst
13870 F:      drivers/opp/
13871 F:      include/linux/pm_opp.h
13872
13873 OPL4 DRIVER
13874 M:      Clemens Ladisch <clemens@ladisch.de>
13875 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13876 S:      Maintained
13877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
13878 F:      sound/drivers/opl4/
13879
13880 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
13881 M:      Mark Fasheh <mark@fasheh.com>
13882 M:      Joel Becker <jlbec@evilplan.org>
13883 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
13884 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
13885 S:      Supported
13886 W:      http://ocfs2.wiki.kernel.org
13887 F:      Documentation/filesystems/dlmfs.rst
13888 F:      Documentation/filesystems/ocfs2.rst
13889 F:      fs/ocfs2/
13890
13891 ORANGEFS FILESYSTEM
13892 M:      Mike Marshall <hubcap@omnibond.com>
13893 R:      Martin Brandenburg <martin@omnibond.com>
13894 L:      devel@lists.orangefs.org
13895 S:      Supported
13896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
13897 F:      Documentation/filesystems/orangefs.rst
13898 F:      fs/orangefs/
13899
13900 ORINOCO DRIVER
13901 L:      linux-wireless@vger.kernel.org
13902 S:      Orphan
13903 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
13904 W:      http://www.nongnu.org/orinoco/
13905 F:      drivers/net/wireless/intersil/orinoco/
13906
13907 OV2659 OMNIVISION SENSOR DRIVER
13908 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13909 L:      linux-media@vger.kernel.org
13910 S:      Maintained
13911 W:      https://linuxtv.org
13912 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13913 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13914 F:      drivers/media/i2c/ov2659.c
13915 F:      include/media/i2c/ov2659.h
13916
13917 OVERLAY FILESYSTEM
13918 M:      Miklos Szeredi <miklos@szeredi.hu>
13919 L:      linux-unionfs@vger.kernel.org
13920 S:      Supported
13921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
13922 F:      Documentation/filesystems/overlayfs.rst
13923 F:      fs/overlayfs/
13924
13925 P54 WIRELESS DRIVER
13926 M:      Christian Lamparter <chunkeey@googlemail.com>
13927 L:      linux-wireless@vger.kernel.org
13928 S:      Maintained
13929 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
13930 F:      drivers/net/wireless/intersil/p54/
13931
13932 PACKING
13933 M:      Vladimir Oltean <olteanv@gmail.com>
13934 L:      netdev@vger.kernel.org
13935 S:      Supported
13936 F:      Documentation/core-api/packing.rst
13937 F:      include/linux/packing.h
13938 F:      lib/packing.c
13939
13940 PADATA PARALLEL EXECUTION MECHANISM
13941 M:      Steffen Klassert <steffen.klassert@secunet.com>
13942 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
13943 L:      linux-crypto@vger.kernel.org
13944 L:      linux-kernel@vger.kernel.org
13945 S:      Maintained
13946 F:      Documentation/core-api/padata.rst
13947 F:      include/linux/padata.h
13948 F:      kernel/padata.c
13949
13950 PAGE POOL
13951 M:      Jesper Dangaard Brouer <hawk@kernel.org>
13952 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
13953 L:      netdev@vger.kernel.org
13954 S:      Supported
13955 F:      Documentation/networking/page_pool.rst
13956 F:      include/net/page_pool.h
13957 F:      include/trace/events/page_pool.h
13958 F:      net/core/page_pool.c
13959
13960 PANASONIC LAPTOP ACPI EXTRAS DRIVER
13961 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
13962 L:      platform-driver-x86@vger.kernel.org
13963 S:      Maintained
13964 F:      drivers/platform/x86/panasonic-laptop.c
13965
13966 PARALLAX PING IIO SENSOR DRIVER
13967 M:      Andreas Klinger <ak@it-klinger.de>
13968 L:      linux-iio@vger.kernel.org
13969 S:      Maintained
13970 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
13971 F:      drivers/iio/proximity/ping.c
13972
13973 PARALLEL LCD/KEYPAD PANEL DRIVER
13974 M:      Willy Tarreau <willy@haproxy.com>
13975 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
13976 S:      Odd Fixes
13977 F:      Documentation/admin-guide/lcd-panel-cgram.rst
13978 F:      drivers/auxdisplay/panel.c
13979
13980 PARALLEL PORT SUBSYSTEM
13981 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
13982 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
13983 L:      linux-parport@lists.infradead.org (subscribers-only)
13984 S:      Maintained
13985 F:      Documentation/driver-api/parport*.rst
13986 F:      drivers/char/ppdev.c
13987 F:      drivers/parport/
13988 F:      include/linux/parport*.h
13989 F:      include/uapi/linux/ppdev.h
13990
13991 PARAVIRT_OPS INTERFACE
13992 M:      Juergen Gross <jgross@suse.com>
13993 M:      Deep Shah <sdeep@vmware.com>
13994 M:      "VMware, Inc." <pv-drivers@vmware.com>
13995 L:      virtualization@lists.linux-foundation.org
13996 S:      Supported
13997 F:      Documentation/virt/paravirt_ops.rst
13998 F:      arch/*/include/asm/paravirt*.h
13999 F:      arch/*/kernel/paravirt*
14000 F:      include/linux/hypervisor.h
14001
14002 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14003 M:      Tim Waugh <tim@cyberelk.net>
14004 L:      linux-parport@lists.infradead.org (subscribers-only)
14005 S:      Maintained
14006 F:      Documentation/admin-guide/blockdev/paride.rst
14007 F:      drivers/block/paride/
14008
14009 PARISC ARCHITECTURE
14010 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14011 M:      Helge Deller <deller@gmx.de>
14012 L:      linux-parisc@vger.kernel.org
14013 S:      Maintained
14014 W:      https://parisc.wiki.kernel.org
14015 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
14016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14017 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14018 F:      Documentation/parisc/
14019 F:      arch/parisc/
14020 F:      drivers/char/agp/parisc-agp.c
14021 F:      drivers/input/misc/hp_sdc_rtc.c
14022 F:      drivers/input/serio/gscps2.c
14023 F:      drivers/input/serio/hp_sdc*
14024 F:      drivers/parisc/
14025 F:      drivers/parport/parport_gsc.*
14026 F:      drivers/tty/serial/8250/8250_gsc.c
14027 F:      drivers/video/console/sti*
14028 F:      drivers/video/fbdev/sti*
14029 F:      drivers/video/logo/logo_parisc*
14030 F:      include/linux/hp_sdc.h
14031
14032 PARMAN
14033 M:      Jiri Pirko <jiri@nvidia.com>
14034 L:      netdev@vger.kernel.org
14035 S:      Supported
14036 F:      include/linux/parman.h
14037 F:      lib/parman.c
14038 F:      lib/test_parman.c
14039
14040 PC ENGINES APU BOARD DRIVER
14041 M:      Enrico Weigelt, metux IT consult <info@metux.net>
14042 S:      Maintained
14043 F:      drivers/platform/x86/pcengines-apuv2.c
14044
14045 PC87360 HARDWARE MONITORING DRIVER
14046 M:      Jim Cromie <jim.cromie@gmail.com>
14047 L:      linux-hwmon@vger.kernel.org
14048 S:      Maintained
14049 F:      Documentation/hwmon/pc87360.rst
14050 F:      drivers/hwmon/pc87360.c
14051
14052 PC8736x GPIO DRIVER
14053 M:      Jim Cromie <jim.cromie@gmail.com>
14054 S:      Maintained
14055 F:      drivers/char/pc8736x_gpio.c
14056
14057 PC87427 HARDWARE MONITORING DRIVER
14058 M:      Jean Delvare <jdelvare@suse.com>
14059 L:      linux-hwmon@vger.kernel.org
14060 S:      Maintained
14061 F:      Documentation/hwmon/pc87427.rst
14062 F:      drivers/hwmon/pc87427.c
14063
14064 PCA9532 LED DRIVER
14065 M:      Riku Voipio <riku.voipio@iki.fi>
14066 S:      Maintained
14067 F:      drivers/leds/leds-pca9532.c
14068 F:      include/linux/leds-pca9532.h
14069
14070 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14071 M:      Guenter Roeck <linux@roeck-us.net>
14072 L:      linux-i2c@vger.kernel.org
14073 S:      Maintained
14074 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
14075
14076 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14077 M:      Khalid Aziz <khalid@gonehiking.org>
14078 S:      Maintained
14079 F:      drivers/firmware/pcdp.*
14080
14081 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14082 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14083 M:      Pali Rohár <pali@kernel.org>
14084 L:      linux-pci@vger.kernel.org
14085 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14086 S:      Maintained
14087 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
14088 F:      drivers/pci/controller/pci-aardvark.c
14089
14090 PCI DRIVER FOR ALTERA PCIE IP
14091 M:      Ley Foon Tan <ley.foon.tan@intel.com>
14092 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
14093 L:      linux-pci@vger.kernel.org
14094 S:      Supported
14095 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
14096 F:      drivers/pci/controller/pcie-altera.c
14097
14098 PCI DRIVER FOR APPLIEDMICRO XGENE
14099 M:      Toan Le <toan@os.amperecomputing.com>
14100 L:      linux-pci@vger.kernel.org
14101 L:      linux-arm-kernel@lists.infradead.org
14102 S:      Maintained
14103 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
14104 F:      drivers/pci/controller/pci-xgene.c
14105
14106 PCI DRIVER FOR ARM VERSATILE PLATFORM
14107 M:      Rob Herring <robh@kernel.org>
14108 L:      linux-pci@vger.kernel.org
14109 L:      linux-arm-kernel@lists.infradead.org
14110 S:      Maintained
14111 F:      Documentation/devicetree/bindings/pci/versatile.yaml
14112 F:      drivers/pci/controller/pci-versatile.c
14113
14114 PCI DRIVER FOR ARMADA 8K
14115 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14116 L:      linux-pci@vger.kernel.org
14117 L:      linux-arm-kernel@lists.infradead.org
14118 S:      Maintained
14119 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
14120 F:      drivers/pci/controller/dwc/pcie-armada8k.c
14121
14122 PCI DRIVER FOR CADENCE PCIE IP
14123 M:      Tom Joseph <tjoseph@cadence.com>
14124 L:      linux-pci@vger.kernel.org
14125 S:      Maintained
14126 F:      Documentation/devicetree/bindings/pci/cdns,*
14127 F:      drivers/pci/controller/cadence/
14128
14129 PCI DRIVER FOR FREESCALE LAYERSCAPE
14130 M:      Minghuan Lian <minghuan.Lian@nxp.com>
14131 M:      Mingkai Hu <mingkai.hu@nxp.com>
14132 M:      Roy Zang <roy.zang@nxp.com>
14133 L:      linuxppc-dev@lists.ozlabs.org
14134 L:      linux-pci@vger.kernel.org
14135 L:      linux-arm-kernel@lists.infradead.org
14136 S:      Maintained
14137 F:      drivers/pci/controller/dwc/*layerscape*
14138
14139 PCI DRIVER FOR GENERIC OF HOSTS
14140 M:      Will Deacon <will@kernel.org>
14141 L:      linux-pci@vger.kernel.org
14142 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14143 S:      Maintained
14144 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
14145 F:      drivers/pci/controller/pci-host-common.c
14146 F:      drivers/pci/controller/pci-host-generic.c
14147
14148 PCI DRIVER FOR IMX6
14149 M:      Richard Zhu <hongxing.zhu@nxp.com>
14150 M:      Lucas Stach <l.stach@pengutronix.de>
14151 L:      linux-pci@vger.kernel.org
14152 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14153 S:      Maintained
14154 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
14155 F:      drivers/pci/controller/dwc/*imx6*
14156
14157 PCI DRIVER FOR FU740
14158 M:      Paul Walmsley <paul.walmsley@sifive.com>
14159 M:      Greentime Hu <greentime.hu@sifive.com>
14160 L:      linux-pci@vger.kernel.org
14161 S:      Maintained
14162 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
14163 F:      drivers/pci/controller/dwc/pcie-fu740.c
14164
14165 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
14166 M:      Jonathan Derrick <jonathan.derrick@intel.com>
14167 L:      linux-pci@vger.kernel.org
14168 S:      Supported
14169 F:      drivers/pci/controller/vmd.c
14170
14171 PCI DRIVER FOR MICROSEMI SWITCHTEC
14172 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
14173 M:      Logan Gunthorpe <logang@deltatee.com>
14174 L:      linux-pci@vger.kernel.org
14175 S:      Maintained
14176 F:      Documentation/ABI/testing/sysfs-class-switchtec
14177 F:      Documentation/driver-api/switchtec.rst
14178 F:      drivers/ntb/hw/mscc/
14179 F:      drivers/pci/switch/switchtec*
14180 F:      include/linux/switchtec.h
14181 F:      include/uapi/linux/switchtec_ioctl.h
14182
14183 PCI DRIVER FOR MOBIVEIL PCIE IP
14184 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
14185 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14186 L:      linux-pci@vger.kernel.org
14187 S:      Supported
14188 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14189 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
14190
14191 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14192 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14193 L:      linux-pci@vger.kernel.org
14194 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14195 S:      Maintained
14196 F:      drivers/pci/controller/*mvebu*
14197
14198 PCI DRIVER FOR NVIDIA TEGRA
14199 M:      Thierry Reding <thierry.reding@gmail.com>
14200 L:      linux-tegra@vger.kernel.org
14201 L:      linux-pci@vger.kernel.org
14202 S:      Supported
14203 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14204 F:      drivers/pci/controller/pci-tegra.c
14205
14206 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14207 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14208 L:      linux-pci@vger.kernel.org
14209 L:      linux-arm-kernel@lists.infradead.org
14210 S:      Maintained
14211 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14212 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14213
14214 PCI DRIVER FOR RENESAS R-CAR
14215 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14216 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14217 L:      linux-pci@vger.kernel.org
14218 L:      linux-renesas-soc@vger.kernel.org
14219 S:      Maintained
14220 F:      Documentation/devicetree/bindings/pci/*rcar*
14221 F:      drivers/pci/controller/*rcar*
14222
14223 PCI DRIVER FOR SAMSUNG EXYNOS
14224 M:      Jingoo Han <jingoohan1@gmail.com>
14225 L:      linux-pci@vger.kernel.org
14226 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14227 L:      linux-samsung-soc@vger.kernel.org
14228 S:      Maintained
14229 F:      drivers/pci/controller/dwc/pci-exynos.c
14230
14231 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14232 M:      Jingoo Han <jingoohan1@gmail.com>
14233 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
14234 L:      linux-pci@vger.kernel.org
14235 S:      Maintained
14236 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
14237 F:      drivers/pci/controller/dwc/*designware*
14238
14239 PCI DRIVER FOR TI DRA7XX/J721E
14240 M:      Kishon Vijay Abraham I <kishon@ti.com>
14241 L:      linux-omap@vger.kernel.org
14242 L:      linux-pci@vger.kernel.org
14243 L:      linux-arm-kernel@lists.infradead.org
14244 S:      Supported
14245 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
14246 F:      drivers/pci/controller/cadence/pci-j721e.c
14247 F:      drivers/pci/controller/dwc/pci-dra7xx.c
14248
14249 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14250 M:      Linus Walleij <linus.walleij@linaro.org>
14251 L:      linux-pci@vger.kernel.org
14252 S:      Maintained
14253 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14254 F:      drivers/pci/controller/pci-v3-semi.c
14255
14256 PCI ENDPOINT SUBSYSTEM
14257 M:      Kishon Vijay Abraham I <kishon@ti.com>
14258 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14259 R:      Krzysztof Wilczyński <kw@linux.com>
14260 L:      linux-pci@vger.kernel.org
14261 S:      Supported
14262 F:      Documentation/PCI/endpoint/*
14263 F:      Documentation/misc-devices/pci-endpoint-test.rst
14264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
14265 F:      drivers/misc/pci_endpoint_test.c
14266 F:      drivers/pci/endpoint/
14267 F:      tools/pci/
14268
14269 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14270 M:      Russell Currey <ruscur@russell.cc>
14271 M:      Oliver O'Halloran <oohall@gmail.com>
14272 L:      linuxppc-dev@lists.ozlabs.org
14273 S:      Supported
14274 F:      Documentation/PCI/pci-error-recovery.rst
14275 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
14276 F:      arch/powerpc/include/*/eeh*.h
14277 F:      arch/powerpc/kernel/eeh*.c
14278 F:      arch/powerpc/platforms/*/eeh*.c
14279 F:      drivers/pci/pcie/aer.c
14280 F:      drivers/pci/pcie/dpc.c
14281 F:      drivers/pci/pcie/err.c
14282
14283 PCI ERROR RECOVERY
14284 M:      Linas Vepstas <linasvepstas@gmail.com>
14285 L:      linux-pci@vger.kernel.org
14286 S:      Supported
14287 F:      Documentation/PCI/pci-error-recovery.rst
14288
14289 PCI MSI DRIVER FOR ALTERA MSI IP
14290 M:      Ley Foon Tan <ley.foon.tan@intel.com>
14291 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
14292 L:      linux-pci@vger.kernel.org
14293 S:      Supported
14294 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14295 F:      drivers/pci/controller/pcie-altera-msi.c
14296
14297 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14298 M:      Toan Le <toan@os.amperecomputing.com>
14299 L:      linux-pci@vger.kernel.org
14300 L:      linux-arm-kernel@lists.infradead.org
14301 S:      Maintained
14302 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14303 F:      drivers/pci/controller/pci-xgene-msi.c
14304
14305 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14306 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14307 R:      Rob Herring <robh@kernel.org>
14308 R:      Krzysztof Wilczyński <kw@linux.com>
14309 L:      linux-pci@vger.kernel.org
14310 S:      Supported
14311 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
14313 F:      drivers/pci/controller/
14314
14315 PCI SUBSYSTEM
14316 M:      Bjorn Helgaas <bhelgaas@google.com>
14317 L:      linux-pci@vger.kernel.org
14318 S:      Supported
14319 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14321 F:      Documentation/PCI/
14322 F:      Documentation/devicetree/bindings/pci/
14323 F:      arch/x86/kernel/early-quirks.c
14324 F:      arch/x86/kernel/quirks.c
14325 F:      arch/x86/pci/
14326 F:      drivers/acpi/pci*
14327 F:      drivers/pci/
14328 F:      include/asm-generic/pci*
14329 F:      include/linux/of_pci.h
14330 F:      include/linux/pci*
14331 F:      include/uapi/linux/pci*
14332 F:      lib/pci*
14333
14334 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14335 M:      Jonathan Chocron <jonnyc@amazon.com>
14336 L:      linux-pci@vger.kernel.org
14337 S:      Maintained
14338 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
14339 F:      drivers/pci/controller/dwc/pcie-al.c
14340
14341 PCIE DRIVER FOR AMLOGIC MESON
14342 M:      Yue Wang <yue.wang@Amlogic.com>
14343 L:      linux-pci@vger.kernel.org
14344 L:      linux-amlogic@lists.infradead.org
14345 S:      Maintained
14346 F:      drivers/pci/controller/dwc/pci-meson.c
14347
14348 PCIE DRIVER FOR AXIS ARTPEC
14349 M:      Jesper Nilsson <jesper.nilsson@axis.com>
14350 L:      linux-arm-kernel@axis.com
14351 L:      linux-pci@vger.kernel.org
14352 S:      Maintained
14353 F:      Documentation/devicetree/bindings/pci/axis,artpec*
14354 F:      drivers/pci/controller/dwc/*artpec*
14355
14356 PCIE DRIVER FOR CAVIUM THUNDERX
14357 M:      Robert Richter <rric@kernel.org>
14358 L:      linux-pci@vger.kernel.org
14359 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14360 S:      Odd Fixes
14361 F:      drivers/pci/controller/pci-thunder-*
14362
14363 PCIE DRIVER FOR HISILICON
14364 M:      Zhou Wang <wangzhou1@hisilicon.com>
14365 L:      linux-pci@vger.kernel.org
14366 S:      Maintained
14367 F:      drivers/pci/controller/dwc/pcie-hisi.c
14368
14369 PCIE DRIVER FOR HISILICON KIRIN
14370 M:      Xiaowei Song <songxiaowei@hisilicon.com>
14371 M:      Binghui Wang <wangbinghui@hisilicon.com>
14372 L:      linux-pci@vger.kernel.org
14373 S:      Maintained
14374 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
14375 F:      drivers/pci/controller/dwc/pcie-kirin.c
14376
14377 PCIE DRIVER FOR HISILICON STB
14378 M:      Shawn Guo <shawn.guo@linaro.org>
14379 L:      linux-pci@vger.kernel.org
14380 S:      Maintained
14381 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
14382 F:      drivers/pci/controller/dwc/pcie-histb.c
14383
14384 PCIE DRIVER FOR MEDIATEK
14385 M:      Ryder Lee <ryder.lee@mediatek.com>
14386 M:      Jianjun Wang <jianjun.wang@mediatek.com>
14387 L:      linux-pci@vger.kernel.org
14388 L:      linux-mediatek@lists.infradead.org
14389 S:      Supported
14390 F:      Documentation/devicetree/bindings/pci/mediatek*
14391 F:      drivers/pci/controller/*mediatek*
14392
14393 PCIE DRIVER FOR MICROCHIP
14394 M:      Daire McNamara <daire.mcnamara@microchip.com>
14395 L:      linux-pci@vger.kernel.org
14396 S:      Supported
14397 F:      Documentation/devicetree/bindings/pci/microchip*
14398 F:      drivers/pci/controller/*microchip*
14399
14400 PCIE DRIVER FOR QUALCOMM MSM
14401 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
14402 L:      linux-pci@vger.kernel.org
14403 L:      linux-arm-msm@vger.kernel.org
14404 S:      Maintained
14405 F:      drivers/pci/controller/dwc/*qcom*
14406
14407 PCIE DRIVER FOR ROCKCHIP
14408 M:      Shawn Lin <shawn.lin@rock-chips.com>
14409 L:      linux-pci@vger.kernel.org
14410 L:      linux-rockchip@lists.infradead.org
14411 S:      Maintained
14412 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
14413 F:      drivers/pci/controller/pcie-rockchip*
14414
14415 PCIE DRIVER FOR SOCIONEXT UNIPHIER
14416 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
14417 L:      linux-pci@vger.kernel.org
14418 S:      Maintained
14419 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
14420 F:      drivers/pci/controller/dwc/pcie-uniphier*
14421
14422 PCIE DRIVER FOR ST SPEAR13XX
14423 M:      Pratyush Anand <pratyush.anand@gmail.com>
14424 L:      linux-pci@vger.kernel.org
14425 S:      Maintained
14426 F:      drivers/pci/controller/dwc/*spear*
14427
14428 PCMCIA SUBSYSTEM
14429 M:      Dominik Brodowski <linux@dominikbrodowski.net>
14430 S:      Odd Fixes
14431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
14432 F:      Documentation/pcmcia/
14433 F:      drivers/pcmcia/
14434 F:      include/pcmcia/
14435 F:      tools/pcmcia/
14436
14437 PCNET32 NETWORK DRIVER
14438 M:      Don Fry <pcnet32@frontier.com>
14439 L:      netdev@vger.kernel.org
14440 S:      Maintained
14441 F:      drivers/net/ethernet/amd/pcnet32.c
14442
14443 PCRYPT PARALLEL CRYPTO ENGINE
14444 M:      Steffen Klassert <steffen.klassert@secunet.com>
14445 L:      linux-crypto@vger.kernel.org
14446 S:      Maintained
14447 F:      crypto/pcrypt.c
14448 F:      include/crypto/pcrypt.h
14449
14450 PEAQ WMI HOTKEYS DRIVER
14451 M:      Hans de Goede <hdegoede@redhat.com>
14452 L:      platform-driver-x86@vger.kernel.org
14453 S:      Maintained
14454 F:      drivers/platform/x86/peaq-wmi.c
14455
14456 PENSANDO ETHERNET DRIVERS
14457 M:      Shannon Nelson <snelson@pensando.io>
14458 M:      drivers@pensando.io
14459 L:      netdev@vger.kernel.org
14460 S:      Supported
14461 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
14462 F:      drivers/net/ethernet/pensando/
14463
14464 PER-CPU MEMORY ALLOCATOR
14465 M:      Dennis Zhou <dennis@kernel.org>
14466 M:      Tejun Heo <tj@kernel.org>
14467 M:      Christoph Lameter <cl@linux.com>
14468 L:      linux-mm@kvack.org
14469 S:      Maintained
14470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
14471 F:      arch/*/include/asm/percpu.h
14472 F:      include/linux/percpu*.h
14473 F:      lib/percpu*.c
14474 F:      mm/percpu*.c
14475
14476 PER-TASK DELAY ACCOUNTING
14477 M:      Balbir Singh <bsingharora@gmail.com>
14478 S:      Maintained
14479 F:      include/linux/delayacct.h
14480 F:      kernel/delayacct.c
14481
14482 PERFORMANCE EVENTS SUBSYSTEM
14483 M:      Peter Zijlstra <peterz@infradead.org>
14484 M:      Ingo Molnar <mingo@redhat.com>
14485 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
14486 R:      Mark Rutland <mark.rutland@arm.com>
14487 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
14488 R:      Jiri Olsa <jolsa@redhat.com>
14489 R:      Namhyung Kim <namhyung@kernel.org>
14490 L:      linux-perf-users@vger.kernel.org
14491 L:      linux-kernel@vger.kernel.org
14492 S:      Supported
14493 W:      https://perf.wiki.kernel.org/
14494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14495 F:      arch/*/events/*
14496 F:      arch/*/events/*/*
14497 F:      arch/*/include/asm/perf_event.h
14498 F:      arch/*/kernel/*/*/perf_event*.c
14499 F:      arch/*/kernel/*/perf_event*.c
14500 F:      arch/*/kernel/perf_callchain.c
14501 F:      arch/*/kernel/perf_event*.c
14502 F:      include/linux/perf_event.h
14503 F:      include/uapi/linux/perf_event.h
14504 F:      kernel/events/*
14505 F:      tools/lib/perf/
14506 F:      tools/perf/
14507
14508 PERFORMANCE EVENTS TOOLING ARM64
14509 R:      John Garry <john.garry@huawei.com>
14510 R:      Will Deacon <will@kernel.org>
14511 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
14512 R:      Leo Yan <leo.yan@linaro.org>
14513 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14514 S:      Supported
14515 F:      tools/build/feature/test-libopencsd.c
14516 F:      tools/perf/arch/arm*/
14517 F:      tools/perf/pmu-events/arch/arm64/
14518 F:      tools/perf/util/arm-spe*
14519 F:      tools/perf/util/cs-etm*
14520
14521 PERSONALITY HANDLING
14522 M:      Christoph Hellwig <hch@infradead.org>
14523 L:      linux-abi-devel@lists.sourceforge.net
14524 S:      Maintained
14525 F:      include/linux/personality.h
14526 F:      include/uapi/linux/personality.h
14527
14528 PHOENIX RC FLIGHT CONTROLLER ADAPTER
14529 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
14530 L:      linux-input@vger.kernel.org
14531 S:      Maintained
14532 F:      Documentation/input/devices/pxrc.rst
14533 F:      drivers/input/joystick/pxrc.c
14534
14535 PHONET PROTOCOL
14536 M:      Remi Denis-Courmont <courmisch@gmail.com>
14537 S:      Supported
14538 F:      Documentation/networking/phonet.rst
14539 F:      include/linux/phonet.h
14540 F:      include/net/phonet/
14541 F:      include/uapi/linux/phonet.h
14542 F:      net/phonet/
14543
14544 PHRAM MTD DRIVER
14545 M:      Joern Engel <joern@lazybastard.org>
14546 L:      linux-mtd@lists.infradead.org
14547 S:      Maintained
14548 F:      drivers/mtd/devices/phram.c
14549
14550 PICOLCD HID DRIVER
14551 M:      Bruno Prémont <bonbons@linux-vserver.org>
14552 L:      linux-input@vger.kernel.org
14553 S:      Maintained
14554 F:      drivers/hid/hid-picolcd*
14555
14556 PIDFD API
14557 M:      Christian Brauner <christian@brauner.io>
14558 L:      linux-kernel@vger.kernel.org
14559 S:      Maintained
14560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14561 F:      samples/pidfd/
14562 F:      tools/testing/selftests/clone3/
14563 F:      tools/testing/selftests/pid_namespace/
14564 F:      tools/testing/selftests/pidfd/
14565 K:      (?i)pidfd
14566 K:      (?i)clone3
14567 K:      \b(clone_args|kernel_clone_args)\b
14568
14569 PIN CONTROL SUBSYSTEM
14570 M:      Linus Walleij <linus.walleij@linaro.org>
14571 L:      linux-gpio@vger.kernel.org
14572 S:      Maintained
14573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
14574 F:      Documentation/devicetree/bindings/pinctrl/
14575 F:      Documentation/driver-api/pin-control.rst
14576 F:      drivers/pinctrl/
14577 F:      include/linux/pinctrl/
14578
14579 PIN CONTROLLER - FREESCALE
14580 M:      Dong Aisheng <aisheng.dong@nxp.com>
14581 M:      Fabio Estevam <festevam@gmail.com>
14582 M:      Shawn Guo <shawnguo@kernel.org>
14583 M:      Stefan Agner <stefan@agner.ch>
14584 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
14585 L:      linux-gpio@vger.kernel.org
14586 S:      Maintained
14587 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
14588 F:      drivers/pinctrl/freescale/
14589
14590 PIN CONTROLLER - INTEL
14591 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
14592 M:      Andy Shevchenko <andy@kernel.org>
14593 S:      Maintained
14594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
14595 F:      drivers/pinctrl/intel/
14596
14597 PIN CONTROLLER - MEDIATEK
14598 M:      Sean Wang <sean.wang@kernel.org>
14599 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
14600 S:      Maintained
14601 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
14602 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
14603 F:      drivers/pinctrl/mediatek/
14604
14605 PIN CONTROLLER - MICROCHIP AT91
14606 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
14607 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14608 L:      linux-gpio@vger.kernel.org
14609 S:      Supported
14610 F:      drivers/gpio/gpio-sama5d2-piobu.c
14611 F:      drivers/pinctrl/pinctrl-at91*
14612
14613 PIN CONTROLLER - QUALCOMM
14614 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14615 L:      linux-arm-msm@vger.kernel.org
14616 S:      Maintained
14617 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14618 F:      drivers/pinctrl/qcom/
14619
14620 PIN CONTROLLER - RENESAS
14621 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14622 L:      linux-renesas-soc@vger.kernel.org
14623 S:      Supported
14624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14625 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
14626 F:      drivers/pinctrl/renesas/
14627
14628 PIN CONTROLLER - SAMSUNG
14629 M:      Tomasz Figa <tomasz.figa@gmail.com>
14630 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
14631 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14632 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14633 L:      linux-samsung-soc@vger.kernel.org
14634 S:      Maintained
14635 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
14636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14637 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14638 F:      drivers/pinctrl/samsung/
14639 F:      include/dt-bindings/pinctrl/samsung.h
14640
14641 PIN CONTROLLER - SINGLE
14642 M:      Tony Lindgren <tony@atomide.com>
14643 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
14644 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14645 L:      linux-omap@vger.kernel.org
14646 S:      Maintained
14647 F:      drivers/pinctrl/pinctrl-single.c
14648
14649 PIN CONTROLLER - ST SPEAR
14650 M:      Viresh Kumar <vireshk@kernel.org>
14651 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14652 S:      Maintained
14653 W:      http://www.st.com/spear
14654 F:      drivers/pinctrl/spear/
14655
14656 PISTACHIO SOC SUPPORT
14657 M:      James Hartley <james.hartley@sondrel.com>
14658 L:      linux-mips@vger.kernel.org
14659 S:      Odd Fixes
14660 F:      arch/mips/boot/dts/img/pistachio*
14661 F:      arch/mips/configs/pistachio*_defconfig
14662 F:      arch/mips/pistachio/
14663
14664 PKTCDVD DRIVER
14665 M:      linux-block@vger.kernel.org
14666 S:      Orphan
14667 F:      drivers/block/pktcdvd.c
14668 F:      include/linux/pktcdvd.h
14669 F:      include/uapi/linux/pktcdvd.h
14670
14671 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14672 M:      Tomasz Duszynski <tduszyns@gmail.com>
14673 S:      Maintained
14674 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14675 F:      drivers/iio/chemical/pms7003.c
14676
14677 PLDMFW LIBRARY
14678 M:      Jacob Keller <jacob.e.keller@intel.com>
14679 S:      Maintained
14680 F:      Documentation/driver-api/pldmfw/
14681 F:      include/linux/pldmfw.h
14682 F:      lib/pldmfw/
14683
14684 PLX DMA DRIVER
14685 M:      Logan Gunthorpe <logang@deltatee.com>
14686 S:      Maintained
14687 F:      drivers/dma/plx_dma.c
14688
14689 PM6764TR DRIVER
14690 M:      Charles Hsu     <hsu.yungteng@gmail.com>
14691 L:      linux-hwmon@vger.kernel.org
14692 S:      Maintained
14693 F:      Documentation/hwmon/pm6764tr.rst
14694 F:      drivers/hwmon/pmbus/pm6764tr.c
14695
14696 PM-GRAPH UTILITY
14697 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
14698 L:      linux-pm@vger.kernel.org
14699 S:      Supported
14700 W:      https://01.org/pm-graph
14701 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
14702 T:      git git://github.com/intel/pm-graph
14703 F:      tools/power/pm-graph
14704
14705 PMBUS HARDWARE MONITORING DRIVERS
14706 M:      Guenter Roeck <linux@roeck-us.net>
14707 L:      linux-hwmon@vger.kernel.org
14708 S:      Maintained
14709 W:      http://hwmon.wiki.kernel.org/
14710 W:      http://www.roeck-us.net/linux/drivers/
14711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
14712 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
14713 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
14714 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
14715 F:      Documentation/hwmon/adm1275.rst
14716 F:      Documentation/hwmon/ibm-cffps.rst
14717 F:      Documentation/hwmon/ir35221.rst
14718 F:      Documentation/hwmon/lm25066.rst
14719 F:      Documentation/hwmon/ltc2978.rst
14720 F:      Documentation/hwmon/ltc3815.rst
14721 F:      Documentation/hwmon/max16064.rst
14722 F:      Documentation/hwmon/max20751.rst
14723 F:      Documentation/hwmon/max31785.rst
14724 F:      Documentation/hwmon/max34440.rst
14725 F:      Documentation/hwmon/max8688.rst
14726 F:      Documentation/hwmon/pmbus-core.rst
14727 F:      Documentation/hwmon/pmbus.rst
14728 F:      Documentation/hwmon/tps40422.rst
14729 F:      Documentation/hwmon/ucd9000.rst
14730 F:      Documentation/hwmon/ucd9200.rst
14731 F:      Documentation/hwmon/zl6100.rst
14732 F:      drivers/hwmon/pmbus/
14733 F:      include/linux/pmbus.h
14734
14735 PMC SIERRA MaxRAID DRIVER
14736 L:      linux-scsi@vger.kernel.org
14737 S:      Orphan
14738 W:      http://www.pmc-sierra.com/
14739 F:      drivers/scsi/pmcraid.*
14740
14741 PMC SIERRA PM8001 DRIVER
14742 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14743 L:      linux-scsi@vger.kernel.org
14744 S:      Supported
14745 F:      drivers/scsi/pm8001/
14746
14747 PNI RM3100 IIO DRIVER
14748 M:      Song Qiang <songqiang1304521@gmail.com>
14749 L:      linux-iio@vger.kernel.org
14750 S:      Maintained
14751 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
14752 F:      drivers/iio/magnetometer/rm3100*
14753
14754 PNP SUPPORT
14755 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
14756 L:      linux-acpi@vger.kernel.org
14757 S:      Maintained
14758 F:      drivers/pnp/
14759 F:      include/linux/pnp.h
14760
14761 POSIX CLOCKS and TIMERS
14762 M:      Thomas Gleixner <tglx@linutronix.de>
14763 L:      linux-kernel@vger.kernel.org
14764 S:      Maintained
14765 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
14766 F:      fs/timerfd.c
14767 F:      include/linux/time_namespace.h
14768 F:      include/linux/timer*
14769 F:      kernel/time/*timer*
14770 F:      kernel/time/namespace.c
14771
14772 POWER MANAGEMENT CORE
14773 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
14774 L:      linux-pm@vger.kernel.org
14775 S:      Supported
14776 B:      https://bugzilla.kernel.org
14777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14778 F:      drivers/base/power/
14779 F:      drivers/powercap/
14780 F:      include/linux/intel_rapl.h
14781 F:      include/linux/pm.h
14782 F:      include/linux/pm_*
14783 F:      include/linux/powercap.h
14784 F:      kernel/configs/nopm.config
14785
14786 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
14787 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
14788 L:      linux-pm@vger.kernel.org
14789 S:      Supported
14790 B:      https://bugzilla.kernel.org
14791 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14792 F:      drivers/powercap/dtpm*
14793 F:      include/linux/dtpm.h
14794
14795 POWER STATE COORDINATION INTERFACE (PSCI)
14796 M:      Mark Rutland <mark.rutland@arm.com>
14797 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14798 L:      linux-arm-kernel@lists.infradead.org
14799 S:      Maintained
14800 F:      drivers/firmware/psci/
14801 F:      include/linux/psci.h
14802 F:      include/uapi/linux/psci.h
14803
14804 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
14805 M:      Sebastian Reichel <sre@kernel.org>
14806 L:      linux-pm@vger.kernel.org
14807 S:      Maintained
14808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
14809 F:      Documentation/ABI/testing/sysfs-class-power
14810 F:      Documentation/devicetree/bindings/power/supply/
14811 F:      drivers/power/supply/
14812 F:      include/linux/power_supply.h
14813
14814 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
14815 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
14816 L:      linuxppc-dev@lists.ozlabs.org
14817 S:      Maintained
14818 F:      drivers/char/powernv-op-panel.c
14819
14820 PPP OVER ATM (RFC 2364)
14821 M:      Mitchell Blank Jr <mitch@sfgoth.com>
14822 S:      Maintained
14823 F:      include/uapi/linux/atmppp.h
14824 F:      net/atm/pppoatm.c
14825
14826 PPP OVER ETHERNET
14827 M:      Michal Ostrowski <mostrows@earthlink.net>
14828 S:      Maintained
14829 F:      drivers/net/ppp/pppoe.c
14830 F:      drivers/net/ppp/pppox.c
14831
14832 PPP OVER L2TP
14833 M:      James Chapman <jchapman@katalix.com>
14834 S:      Maintained
14835 F:      include/linux/if_pppol2tp.h
14836 F:      include/uapi/linux/if_pppol2tp.h
14837 F:      net/l2tp/l2tp_ppp.c
14838
14839 PPP PROTOCOL DRIVERS AND COMPRESSORS
14840 M:      Paul Mackerras <paulus@samba.org>
14841 L:      linux-ppp@vger.kernel.org
14842 S:      Maintained
14843 F:      drivers/net/ppp/ppp_*
14844
14845 PPS SUPPORT
14846 M:      Rodolfo Giometti <giometti@enneenne.com>
14847 L:      linuxpps@ml.enneenne.com (subscribers-only)
14848 S:      Maintained
14849 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
14850 F:      Documentation/ABI/testing/sysfs-pps
14851 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
14852 F:      Documentation/driver-api/pps.rst
14853 F:      drivers/pps/
14854 F:      include/linux/pps*.h
14855 F:      include/uapi/linux/pps.h
14856
14857 PPTP DRIVER
14858 M:      Dmitry Kozlov <xeb@mail.ru>
14859 L:      netdev@vger.kernel.org
14860 S:      Maintained
14861 W:      http://sourceforge.net/projects/accel-pptp
14862 F:      drivers/net/ppp/pptp.c
14863
14864 PRESSURE STALL INFORMATION (PSI)
14865 M:      Johannes Weiner <hannes@cmpxchg.org>
14866 S:      Maintained
14867 F:      include/linux/psi*
14868 F:      kernel/sched/psi.c
14869
14870 PRINTK
14871 M:      Petr Mladek <pmladek@suse.com>
14872 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
14873 R:      Steven Rostedt <rostedt@goodmis.org>
14874 R:      John Ogness <john.ogness@linutronix.de>
14875 S:      Maintained
14876 F:      include/linux/printk.h
14877 F:      kernel/printk/
14878
14879 PRISM54 WIRELESS DRIVER
14880 M:      Luis Chamberlain <mcgrof@kernel.org>
14881 L:      linux-wireless@vger.kernel.org
14882 S:      Obsolete
14883 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14884 F:      drivers/net/wireless/intersil/prism54/
14885
14886 PROC FILESYSTEM
14887 L:      linux-kernel@vger.kernel.org
14888 L:      linux-fsdevel@vger.kernel.org
14889 S:      Maintained
14890 F:      Documentation/filesystems/proc.rst
14891 F:      fs/proc/
14892 F:      include/linux/proc_fs.h
14893 F:      tools/testing/selftests/proc/
14894
14895 PROC SYSCTL
14896 M:      Luis Chamberlain <mcgrof@kernel.org>
14897 M:      Kees Cook <keescook@chromium.org>
14898 M:      Iurii Zaikin <yzaikin@google.com>
14899 L:      linux-kernel@vger.kernel.org
14900 L:      linux-fsdevel@vger.kernel.org
14901 S:      Maintained
14902 F:      fs/proc/proc_sysctl.c
14903 F:      include/linux/sysctl.h
14904 F:      kernel/sysctl-test.c
14905 F:      kernel/sysctl.c
14906 F:      tools/testing/selftests/sysctl/
14907
14908 PS3 NETWORK SUPPORT
14909 M:      Geoff Levand <geoff@infradead.org>
14910 L:      netdev@vger.kernel.org
14911 L:      linuxppc-dev@lists.ozlabs.org
14912 S:      Maintained
14913 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
14914
14915 PS3 PLATFORM SUPPORT
14916 M:      Geoff Levand <geoff@infradead.org>
14917 L:      linuxppc-dev@lists.ozlabs.org
14918 S:      Maintained
14919 F:      arch/powerpc/boot/ps3*
14920 F:      arch/powerpc/include/asm/lv1call.h
14921 F:      arch/powerpc/include/asm/ps3*.h
14922 F:      arch/powerpc/platforms/ps3/
14923 F:      drivers/*/ps3*
14924 F:      drivers/ps3/
14925 F:      drivers/rtc/rtc-ps3.c
14926 F:      drivers/usb/host/*ps3.c
14927 F:      sound/ppc/snd_ps3*
14928
14929 PS3VRAM DRIVER
14930 M:      Jim Paris <jim@jtan.com>
14931 M:      Geoff Levand <geoff@infradead.org>
14932 L:      linuxppc-dev@lists.ozlabs.org
14933 S:      Maintained
14934 F:      drivers/block/ps3vram.c
14935
14936 PSAMPLE PACKET SAMPLING SUPPORT
14937 M:      Yotam Gigi <yotam.gi@gmail.com>
14938 S:      Maintained
14939 F:      include/net/psample.h
14940 F:      include/uapi/linux/psample.h
14941 F:      net/psample
14942
14943 PSTORE FILESYSTEM
14944 M:      Kees Cook <keescook@chromium.org>
14945 M:      Anton Vorontsov <anton@enomsg.org>
14946 M:      Colin Cross <ccross@android.com>
14947 M:      Tony Luck <tony.luck@intel.com>
14948 S:      Maintained
14949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
14950 F:      Documentation/admin-guide/ramoops.rst
14951 F:      Documentation/admin-guide/pstore-blk.rst
14952 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
14953 F:      drivers/acpi/apei/erst.c
14954 F:      drivers/firmware/efi/efi-pstore.c
14955 F:      fs/pstore/
14956 F:      include/linux/pstore*
14957 K:      \b(pstore|ramoops)
14958
14959 PTP HARDWARE CLOCK SUPPORT
14960 M:      Richard Cochran <richardcochran@gmail.com>
14961 L:      netdev@vger.kernel.org
14962 S:      Maintained
14963 W:      http://linuxptp.sourceforge.net/
14964 F:      Documentation/ABI/testing/sysfs-ptp
14965 F:      Documentation/driver-api/ptp.rst
14966 F:      drivers/net/phy/dp83640*
14967 F:      drivers/ptp/*
14968 F:      include/linux/ptp_cl*
14969
14970 PTRACE SUPPORT
14971 M:      Oleg Nesterov <oleg@redhat.com>
14972 S:      Maintained
14973 F:      arch/*/*/ptrace*.c
14974 F:      arch/*/include/asm/ptrace*.h
14975 F:      arch/*/ptrace*.c
14976 F:      include/asm-generic/syscall.h
14977 F:      include/linux/ptrace.h
14978 F:      include/linux/regset.h
14979 F:      include/linux/tracehook.h
14980 F:      include/uapi/linux/ptrace.h
14981 F:      include/uapi/linux/ptrace.h
14982 F:      kernel/ptrace.c
14983
14984 PULSE8-CEC DRIVER
14985 M:      Hans Verkuil <hverkuil@xs4all.nl>
14986 L:      linux-media@vger.kernel.org
14987 S:      Maintained
14988 T:      git git://linuxtv.org/media_tree.git
14989 F:      Documentation/admin-guide/media/pulse8-cec.rst
14990 F:      drivers/media/cec/usb/pulse8/
14991
14992 PVRUSB2 VIDEO4LINUX DRIVER
14993 M:      Mike Isely <isely@pobox.com>
14994 L:      pvrusb2@isely.net       (subscribers-only)
14995 L:      linux-media@vger.kernel.org
14996 S:      Maintained
14997 W:      http://www.isely.net/pvrusb2/
14998 T:      git git://linuxtv.org/media_tree.git
14999 F:      Documentation/driver-api/media/drivers/pvrusb2*
15000 F:      drivers/media/usb/pvrusb2/
15001
15002 PWC WEBCAM DRIVER
15003 M:      Hans Verkuil <hverkuil@xs4all.nl>
15004 L:      linux-media@vger.kernel.org
15005 S:      Odd Fixes
15006 T:      git git://linuxtv.org/media_tree.git
15007 F:      drivers/media/usb/pwc/*
15008 F:      include/trace/events/pwc.h
15009
15010 PWM FAN DRIVER
15011 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15012 L:      linux-hwmon@vger.kernel.org
15013 S:      Supported
15014 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15015 F:      Documentation/hwmon/pwm-fan.rst
15016 F:      drivers/hwmon/pwm-fan.c
15017
15018 PWM IR Transmitter
15019 M:      Sean Young <sean@mess.org>
15020 L:      linux-media@vger.kernel.org
15021 S:      Maintained
15022 F:      drivers/media/rc/pwm-ir-tx.c
15023
15024 PWM SUBSYSTEM
15025 M:      Thierry Reding <thierry.reding@gmail.com>
15026 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15027 M:      Lee Jones <lee.jones@linaro.org>
15028 L:      linux-pwm@vger.kernel.org
15029 S:      Maintained
15030 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
15031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15032 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15033 F:      Documentation/devicetree/bindings/pwm/
15034 F:      Documentation/driver-api/pwm.rst
15035 F:      drivers/gpio/gpio-mvebu.c
15036 F:      drivers/pwm/
15037 F:      drivers/video/backlight/pwm_bl.c
15038 F:      include/linux/pwm.h
15039 F:      include/linux/pwm_backlight.h
15040 K:      pwm_(config|apply_state|ops)
15041
15042 PXA GPIO DRIVER
15043 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15044 L:      linux-gpio@vger.kernel.org
15045 S:      Maintained
15046 F:      drivers/gpio/gpio-pxa.c
15047
15048 PXA MMCI DRIVER
15049 S:      Orphan
15050
15051 PXA RTC DRIVER
15052 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15053 L:      linux-rtc@vger.kernel.org
15054 S:      Maintained
15055
15056 PXA2xx/PXA3xx SUPPORT
15057 M:      Daniel Mack <daniel@zonque.org>
15058 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
15059 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15060 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15061 S:      Maintained
15062 T:      git git://github.com/hzhuang1/linux.git
15063 T:      git git://github.com/rjarzmik/linux.git
15064 F:      arch/arm/boot/dts/pxa*
15065 F:      arch/arm/mach-pxa/
15066 F:      drivers/dma/pxa*
15067 F:      drivers/pcmcia/pxa2xx*
15068 F:      drivers/pinctrl/pxa/
15069 F:      drivers/spi/spi-pxa2xx*
15070 F:      drivers/usb/gadget/udc/pxa2*
15071 F:      include/sound/pxa2xx-lib.h
15072 F:      sound/arm/pxa*
15073 F:      sound/soc/pxa/
15074
15075 QAT DRIVER
15076 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
15077 L:      qat-linux@intel.com
15078 S:      Supported
15079 F:      drivers/crypto/qat/
15080
15081 QCOM AUDIO (ASoC) DRIVERS
15082 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15083 M:      Banajit Goswami <bgoswami@codeaurora.org>
15084 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15085 S:      Supported
15086 F:      sound/soc/codecs/lpass-va-macro.c
15087 F:      sound/soc/codecs/lpass-wsa-macro.*
15088 F:      sound/soc/codecs/msm8916-wcd-analog.c
15089 F:      sound/soc/codecs/msm8916-wcd-digital.c
15090 F:      sound/soc/codecs/wcd9335.*
15091 F:      sound/soc/codecs/wcd934x.c
15092 F:      sound/soc/codecs/wcd-clsh-v2.*
15093 F:      sound/soc/codecs/wsa881x.c
15094 F:      sound/soc/qcom/
15095
15096 QCOM IPA DRIVER
15097 M:      Alex Elder <elder@kernel.org>
15098 L:      netdev@vger.kernel.org
15099 S:      Supported
15100 F:      drivers/net/ipa/
15101
15102 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
15103 M:      Gabriel Somlo <somlo@cmu.edu>
15104 M:      "Michael S. Tsirkin" <mst@redhat.com>
15105 L:      qemu-devel@nongnu.org
15106 S:      Maintained
15107 F:      drivers/firmware/qemu_fw_cfg.c
15108 F:      include/uapi/linux/qemu_fw_cfg.h
15109
15110 QIB DRIVER
15111 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15112 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15113 L:      linux-rdma@vger.kernel.org
15114 S:      Supported
15115 F:      drivers/infiniband/hw/qib/
15116
15117 QLOGIC QL41xxx FCOE DRIVER
15118 M:      Saurav Kashyap <skashyap@marvell.com>
15119 M:      Javed Hasan <jhasan@marvell.com>
15120 M:      GR-QLogic-Storage-Upstream@marvell.com
15121 L:      linux-scsi@vger.kernel.org
15122 S:      Supported
15123 F:      drivers/scsi/qedf/
15124
15125 QLOGIC QL41xxx ISCSI DRIVER
15126 M:      Nilesh Javali <njavali@marvell.com>
15127 M:      Manish Rangankar <mrangankar@marvell.com>
15128 M:      GR-QLogic-Storage-Upstream@marvell.com
15129 L:      linux-scsi@vger.kernel.org
15130 S:      Supported
15131 F:      drivers/scsi/qedi/
15132
15133 QLOGIC QL4xxx ETHERNET DRIVER
15134 M:      Ariel Elior <aelior@marvell.com>
15135 M:      GR-everest-linux-l2@marvell.com
15136 L:      netdev@vger.kernel.org
15137 S:      Supported
15138 F:      drivers/net/ethernet/qlogic/qed/
15139 F:      drivers/net/ethernet/qlogic/qede/
15140 F:      include/linux/qed/
15141
15142 QLOGIC QL4xxx RDMA DRIVER
15143 M:      Michal Kalderon <mkalderon@marvell.com>
15144 M:      Ariel Elior <aelior@marvell.com>
15145 L:      linux-rdma@vger.kernel.org
15146 S:      Supported
15147 F:      drivers/infiniband/hw/qedr/
15148 F:      include/uapi/rdma/qedr-abi.h
15149
15150 QLOGIC QLA1280 SCSI DRIVER
15151 M:      Michael Reed <mdr@sgi.com>
15152 L:      linux-scsi@vger.kernel.org
15153 S:      Maintained
15154 F:      drivers/scsi/qla1280.[ch]
15155
15156 QLOGIC QLA2XXX FC-SCSI DRIVER
15157 M:      Nilesh Javali <njavali@marvell.com>
15158 M:      GR-QLogic-Storage-Upstream@marvell.com
15159 L:      linux-scsi@vger.kernel.org
15160 S:      Supported
15161 F:      drivers/scsi/qla2xxx/
15162
15163 QLOGIC QLA3XXX NETWORK DRIVER
15164 M:      GR-Linux-NIC-Dev@marvell.com
15165 L:      netdev@vger.kernel.org
15166 S:      Supported
15167 F:      drivers/net/ethernet/qlogic/qla3xxx.*
15168
15169 QLOGIC QLA4XXX iSCSI DRIVER
15170 M:      Nilesh Javali <njavali@marvell.com>
15171 M:      Manish Rangankar <mrangankar@marvell.com>
15172 M:      GR-QLogic-Storage-Upstream@marvell.com
15173 L:      linux-scsi@vger.kernel.org
15174 S:      Supported
15175 F:      drivers/scsi/qla4xxx/
15176
15177 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
15178 M:      Shahed Shaikh <shshaikh@marvell.com>
15179 M:      Manish Chopra <manishc@marvell.com>
15180 M:      GR-Linux-NIC-Dev@marvell.com
15181 L:      netdev@vger.kernel.org
15182 S:      Supported
15183 F:      drivers/net/ethernet/qlogic/qlcnic/
15184
15185 QLOGIC QLGE 10Gb ETHERNET DRIVER
15186 M:      Manish Chopra <manishc@marvell.com>
15187 M:      GR-Linux-NIC-Dev@marvell.com
15188 M:      Coiby Xu <coiby.xu@gmail.com>
15189 L:      netdev@vger.kernel.org
15190 S:      Supported
15191 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
15192 F:      drivers/staging/qlge/
15193
15194 QM1D1B0004 MEDIA DRIVER
15195 M:      Akihiro Tsukada <tskd08@gmail.com>
15196 L:      linux-media@vger.kernel.org
15197 S:      Odd Fixes
15198 F:      drivers/media/tuners/qm1d1b0004*
15199
15200 QM1D1C0042 MEDIA DRIVER
15201 M:      Akihiro Tsukada <tskd08@gmail.com>
15202 L:      linux-media@vger.kernel.org
15203 S:      Odd Fixes
15204 F:      drivers/media/tuners/qm1d1c0042*
15205
15206 QNX4 FILESYSTEM
15207 M:      Anders Larsen <al@alarsen.net>
15208 S:      Maintained
15209 W:      http://www.alarsen.net/linux/qnx4fs/
15210 F:      fs/qnx4/
15211 F:      include/uapi/linux/qnx4_fs.h
15212 F:      include/uapi/linux/qnxtypes.h
15213
15214 QORIQ DPAA2 FSL-MC BUS DRIVER
15215 M:      Stuart Yoder <stuyoder@gmail.com>
15216 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
15217 L:      linux-kernel@vger.kernel.org
15218 S:      Maintained
15219 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
15220 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15221 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15222 F:      drivers/bus/fsl-mc/
15223 F:      include/uapi/linux/fsl_mc.h
15224
15225 QT1010 MEDIA DRIVER
15226 M:      Antti Palosaari <crope@iki.fi>
15227 L:      linux-media@vger.kernel.org
15228 S:      Maintained
15229 W:      https://linuxtv.org
15230 W:      http://palosaari.fi/linux/
15231 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15232 T:      git git://linuxtv.org/anttip/media_tree.git
15233 F:      drivers/media/tuners/qt1010*
15234
15235 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15236 M:      Kalle Valo <kvalo@codeaurora.org>
15237 L:      ath10k@lists.infradead.org
15238 S:      Supported
15239 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15241 F:      drivers/net/wireless/ath/ath10k/
15242
15243 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15244 M:      Kalle Valo <kvalo@codeaurora.org>
15245 L:      ath11k@lists.infradead.org
15246 S:      Supported
15247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15248 F:      drivers/net/wireless/ath/ath11k/
15249
15250 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15251 M:      ath9k-devel@qca.qualcomm.com
15252 L:      linux-wireless@vger.kernel.org
15253 S:      Supported
15254 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15255 F:      drivers/net/wireless/ath/ath9k/
15256
15257 QUALCOMM CAMERA SUBSYSTEM DRIVER
15258 M:      Robert Foss <robert.foss@linaro.org>
15259 M:      Todor Tomov <todor.too@gmail.com>
15260 L:      linux-media@vger.kernel.org
15261 S:      Maintained
15262 F:      Documentation/admin-guide/media/qcom_camss.rst
15263 F:      Documentation/devicetree/bindings/media/*camss*
15264 F:      drivers/media/platform/qcom/camss/
15265
15266 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15267 M:      Niklas Cassel <nks@flawful.org>
15268 L:      linux-pm@vger.kernel.org
15269 L:      linux-arm-msm@vger.kernel.org
15270 S:      Maintained
15271 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15272 F:      drivers/soc/qcom/cpr.c
15273
15274 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15275 M:      Ilia Lin <ilia.lin@kernel.org>
15276 L:      linux-pm@vger.kernel.org
15277 S:      Maintained
15278 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15279 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
15280
15281 QUALCOMM CRYPTO DRIVERS
15282 M:      Thara Gopinath <thara.gopinath@linaro.org>
15283 L:      linux-crypto@vger.kernel.org
15284 L:      linux-arm-msm@vger.kernel.org
15285 S:      Maintained
15286 F:      drivers/crypto/qce/
15287
15288 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15289 M:      Timur Tabi <timur@kernel.org>
15290 L:      netdev@vger.kernel.org
15291 S:      Maintained
15292 F:      drivers/net/ethernet/qualcomm/emac/
15293
15294 QUALCOMM ETHQOS ETHERNET DRIVER
15295 M:      Vinod Koul <vkoul@kernel.org>
15296 L:      netdev@vger.kernel.org
15297 S:      Maintained
15298 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
15299 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15300
15301 QUALCOMM GENERIC INTERFACE I2C DRIVER
15302 M:      Akash Asthana <akashast@codeaurora.org>
15303 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
15304 L:      linux-i2c@vger.kernel.org
15305 L:      linux-arm-msm@vger.kernel.org
15306 S:      Supported
15307 F:      drivers/i2c/busses/i2c-qcom-geni.c
15308
15309 QUALCOMM HEXAGON ARCHITECTURE
15310 M:      Brian Cain <bcain@codeaurora.org>
15311 L:      linux-hexagon@vger.kernel.org
15312 S:      Supported
15313 F:      arch/hexagon/
15314
15315 QUALCOMM HIDMA DRIVER
15316 M:      Sinan Kaya <okaya@kernel.org>
15317 L:      linux-arm-kernel@lists.infradead.org
15318 L:      linux-arm-msm@vger.kernel.org
15319 L:      dmaengine@vger.kernel.org
15320 S:      Supported
15321 F:      drivers/dma/qcom/hidma*
15322
15323 QUALCOMM I2C CCI DRIVER
15324 M:      Loic Poulain <loic.poulain@linaro.org>
15325 M:      Robert Foss <robert.foss@linaro.org>
15326 L:      linux-i2c@vger.kernel.org
15327 L:      linux-arm-msm@vger.kernel.org
15328 S:      Maintained
15329 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
15330 F:      drivers/i2c/busses/i2c-qcom-cci.c
15331
15332 QUALCOMM IOMMU
15333 M:      Rob Clark <robdclark@gmail.com>
15334 L:      iommu@lists.linux-foundation.org
15335 L:      linux-arm-msm@vger.kernel.org
15336 S:      Maintained
15337 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
15338
15339 QUALCOMM IPC ROUTER (QRTR) DRIVER
15340 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15341 L:      linux-arm-msm@vger.kernel.org
15342 S:      Maintained
15343 F:      include/trace/events/qrtr.h
15344 F:      include/uapi/linux/qrtr.h
15345 F:      net/qrtr/
15346
15347 QUALCOMM IPCC MAILBOX DRIVER
15348 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15349 L:      linux-arm-msm@vger.kernel.org
15350 S:      Supported
15351 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
15352 F:      drivers/mailbox/qcom-ipcc.c
15353 F:      include/dt-bindings/mailbox/qcom-ipcc.h
15354
15355 QUALCOMM IPQ4019 USB PHY DRIVER
15356 M:      Robert Marko <robert.marko@sartura.hr>
15357 M:      Luka Perkov <luka.perkov@sartura.hr>
15358 L:      linux-arm-msm@vger.kernel.org
15359 S:      Maintained
15360 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
15361 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
15362
15363 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
15364 M:      Robert Marko <robert.marko@sartura.hr>
15365 M:      Luka Perkov <luka.perkov@sartura.hr>
15366 L:      linux-arm-msm@vger.kernel.org
15367 S:      Maintained
15368 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
15369 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
15370
15371 QUALCOMM RMNET DRIVER
15372 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
15373 M:      Sean Tranchetti <stranche@codeaurora.org>
15374 L:      netdev@vger.kernel.org
15375 S:      Maintained
15376 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
15377 F:      drivers/net/ethernet/qualcomm/rmnet/
15378 F:      include/linux/if_rmnet.h
15379
15380 QUALCOMM TSENS THERMAL DRIVER
15381 M:      Amit Kucheria <amitk@kernel.org>
15382 M:      Thara Gopinath <thara.gopinath@linaro.org>
15383 L:      linux-pm@vger.kernel.org
15384 L:      linux-arm-msm@vger.kernel.org
15385 S:      Maintained
15386 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
15387 F:      drivers/thermal/qcom/
15388
15389 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
15390 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
15391 L:      linux-media@vger.kernel.org
15392 L:      linux-arm-msm@vger.kernel.org
15393 S:      Maintained
15394 T:      git git://linuxtv.org/media_tree.git
15395 F:      Documentation/devicetree/bindings/media/*venus*
15396 F:      drivers/media/platform/qcom/venus/
15397
15398 QUALCOMM WCN36XX WIRELESS DRIVER
15399 M:      Kalle Valo <kvalo@codeaurora.org>
15400 L:      wcn36xx@lists.infradead.org
15401 S:      Supported
15402 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
15403 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
15404 F:      drivers/net/wireless/ath/wcn36xx/
15405
15406 QUANTENNA QTNFMAC WIRELESS DRIVER
15407 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
15408 R:      Sergey Matyukevich <geomatsi@gmail.com>
15409 L:      linux-wireless@vger.kernel.org
15410 S:      Maintained
15411 F:      drivers/net/wireless/quantenna
15412
15413 RADEON and AMDGPU DRM DRIVERS
15414 M:      Alex Deucher <alexander.deucher@amd.com>
15415 M:      Christian König <christian.koenig@amd.com>
15416 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
15417 L:      amd-gfx@lists.freedesktop.org
15418 S:      Supported
15419 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
15420 F:      drivers/gpu/drm/amd/
15421 F:      drivers/gpu/drm/radeon/
15422 F:      include/uapi/drm/amdgpu_drm.h
15423 F:      include/uapi/drm/radeon_drm.h
15424
15425 RADEON FRAMEBUFFER DISPLAY DRIVER
15426 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
15427 L:      linux-fbdev@vger.kernel.org
15428 S:      Maintained
15429 F:      drivers/video/fbdev/aty/radeon*
15430 F:      include/uapi/linux/radeonfb.h
15431
15432 RADIOSHARK RADIO DRIVER
15433 M:      Hans Verkuil <hverkuil@xs4all.nl>
15434 L:      linux-media@vger.kernel.org
15435 S:      Maintained
15436 T:      git git://linuxtv.org/media_tree.git
15437 F:      drivers/media/radio/radio-shark.c
15438
15439 RADIOSHARK2 RADIO DRIVER
15440 M:      Hans Verkuil <hverkuil@xs4all.nl>
15441 L:      linux-media@vger.kernel.org
15442 S:      Maintained
15443 T:      git git://linuxtv.org/media_tree.git
15444 F:      drivers/media/radio/radio-shark2.c
15445 F:      drivers/media/radio/radio-tea5777.c
15446
15447 RADOS BLOCK DEVICE (RBD)
15448 M:      Ilya Dryomov <idryomov@gmail.com>
15449 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
15450 L:      ceph-devel@vger.kernel.org
15451 S:      Supported
15452 W:      http://ceph.com/
15453 T:      git git://github.com/ceph/ceph-client.git
15454 F:      Documentation/ABI/testing/sysfs-bus-rbd
15455 F:      drivers/block/rbd.c
15456 F:      drivers/block/rbd_types.h
15457
15458 RAGE128 FRAMEBUFFER DISPLAY DRIVER
15459 M:      Paul Mackerras <paulus@samba.org>
15460 L:      linux-fbdev@vger.kernel.org
15461 S:      Maintained
15462 F:      drivers/video/fbdev/aty/aty128fb.c
15463
15464 RAINSHADOW-CEC DRIVER
15465 M:      Hans Verkuil <hverkuil@xs4all.nl>
15466 L:      linux-media@vger.kernel.org
15467 S:      Maintained
15468 T:      git git://linuxtv.org/media_tree.git
15469 F:      drivers/media/cec/usb/rainshadow/
15470
15471 RALINK MIPS ARCHITECTURE
15472 M:      John Crispin <john@phrozen.org>
15473 L:      linux-mips@vger.kernel.org
15474 S:      Maintained
15475 F:      arch/mips/ralink
15476
15477 RALINK RT2X00 WIRELESS LAN DRIVER
15478 M:      Stanislaw Gruszka <stf_xl@wp.pl>
15479 M:      Helmut Schaa <helmut.schaa@googlemail.com>
15480 L:      linux-wireless@vger.kernel.org
15481 S:      Maintained
15482 F:      drivers/net/wireless/ralink/rt2x00/
15483
15484 RAMDISK RAM BLOCK DEVICE DRIVER
15485 M:      Jens Axboe <axboe@kernel.dk>
15486 S:      Maintained
15487 F:      Documentation/admin-guide/blockdev/ramdisk.rst
15488 F:      drivers/block/brd.c
15489
15490 RANCHU VIRTUAL BOARD FOR MIPS
15491 M:      Miodrag Dinic <miodrag.dinic@mips.com>
15492 L:      linux-mips@vger.kernel.org
15493 S:      Supported
15494 F:      arch/mips/configs/generic/board-ranchu.config
15495 F:      arch/mips/generic/board-ranchu.c
15496
15497 RANDOM NUMBER DRIVER
15498 M:      "Theodore Ts'o" <tytso@mit.edu>
15499 S:      Maintained
15500 F:      drivers/char/random.c
15501
15502 RAPIDIO SUBSYSTEM
15503 M:      Matt Porter <mporter@kernel.crashing.org>
15504 M:      Alexandre Bounine <alex.bou9@gmail.com>
15505 S:      Maintained
15506 F:      drivers/rapidio/
15507
15508 RAS INFRASTRUCTURE
15509 M:      Tony Luck <tony.luck@intel.com>
15510 M:      Borislav Petkov <bp@alien8.de>
15511 L:      linux-edac@vger.kernel.org
15512 S:      Maintained
15513 F:      Documentation/admin-guide/ras.rst
15514 F:      drivers/ras/
15515 F:      include/linux/ras.h
15516 F:      include/ras/ras_event.h
15517
15518 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
15519 L:      linux-wireless@vger.kernel.org
15520 S:      Orphan
15521 F:      drivers/net/wireless/ray*
15522
15523 RC-CORE / LIRC FRAMEWORK
15524 M:      Sean Young <sean@mess.org>
15525 L:      linux-media@vger.kernel.org
15526 S:      Maintained
15527 W:      http://linuxtv.org
15528 T:      git git://linuxtv.org/media_tree.git
15529 F:      Documentation/driver-api/media/rc-core.rst
15530 F:      Documentation/userspace-api/media/rc/
15531 F:      drivers/media/rc/
15532 F:      include/media/rc-map.h
15533 F:      include/media/rc-core.h
15534 F:      include/uapi/linux/lirc.h
15535
15536 RCMM REMOTE CONTROLS DECODER
15537 M:      Patrick Lerda <patrick9876@free.fr>
15538 S:      Maintained
15539 F:      drivers/media/rc/ir-rcmm-decoder.c
15540
15541 RCUTORTURE TEST FRAMEWORK
15542 M:      "Paul E. McKenney" <paulmck@kernel.org>
15543 M:      Josh Triplett <josh@joshtriplett.org>
15544 R:      Steven Rostedt <rostedt@goodmis.org>
15545 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15546 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15547 L:      rcu@vger.kernel.org
15548 S:      Supported
15549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15550 F:      tools/testing/selftests/rcutorture
15551
15552 RDACM20 Camera Sensor
15553 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15554 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15555 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15556 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15557 L:      linux-media@vger.kernel.org
15558 S:      Maintained
15559 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15560 F:      drivers/media/i2c/max9271.c
15561 F:      drivers/media/i2c/max9271.h
15562 F:      drivers/media/i2c/rdacm20.c
15563
15564 RDACM21 Camera Sensor
15565 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15566 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15567 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15568 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15569 L:      linux-media@vger.kernel.org
15570 S:      Maintained
15571 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15572 F:      drivers/media/i2c/max9271.c
15573 F:      drivers/media/i2c/max9271.h
15574 F:      drivers/media/i2c/rdacm21.c
15575
15576 RDC R-321X SoC
15577 M:      Florian Fainelli <florian@openwrt.org>
15578 S:      Maintained
15579
15580 RDC R6040 FAST ETHERNET DRIVER
15581 M:      Florian Fainelli <f.fainelli@gmail.com>
15582 L:      netdev@vger.kernel.org
15583 S:      Maintained
15584 F:      drivers/net/ethernet/rdc/r6040.c
15585
15586 RDMAVT - RDMA verbs software
15587 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15588 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15589 L:      linux-rdma@vger.kernel.org
15590 S:      Supported
15591 F:      drivers/infiniband/sw/rdmavt
15592
15593 RDS - RELIABLE DATAGRAM SOCKETS
15594 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
15595 L:      netdev@vger.kernel.org
15596 L:      linux-rdma@vger.kernel.org
15597 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
15598 S:      Supported
15599 W:      https://oss.oracle.com/projects/rds/
15600 F:      Documentation/networking/rds.rst
15601 F:      net/rds/
15602
15603 RDT - RESOURCE ALLOCATION
15604 M:      Fenghua Yu <fenghua.yu@intel.com>
15605 M:      Reinette Chatre <reinette.chatre@intel.com>
15606 L:      linux-kernel@vger.kernel.org
15607 S:      Supported
15608 F:      Documentation/x86/resctrl*
15609 F:      arch/x86/include/asm/resctrl.h
15610 F:      arch/x86/kernel/cpu/resctrl/
15611 F:      tools/testing/selftests/resctrl/
15612
15613 READ-COPY UPDATE (RCU)
15614 M:      "Paul E. McKenney" <paulmck@kernel.org>
15615 M:      Josh Triplett <josh@joshtriplett.org>
15616 R:      Steven Rostedt <rostedt@goodmis.org>
15617 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15618 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15619 R:      Joel Fernandes <joel@joelfernandes.org>
15620 L:      rcu@vger.kernel.org
15621 S:      Supported
15622 W:      http://www.rdrop.com/users/paulmck/RCU/
15623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15624 F:      Documentation/RCU/
15625 F:      include/linux/rcu*
15626 F:      kernel/rcu/
15627 X:      Documentation/RCU/torture.rst
15628 X:      include/linux/srcu*.h
15629 X:      kernel/rcu/srcu*.c
15630
15631 REAL TIME CLOCK (RTC) SUBSYSTEM
15632 M:      Alessandro Zummo <a.zummo@towertech.it>
15633 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
15634 L:      linux-rtc@vger.kernel.org
15635 S:      Maintained
15636 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
15637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
15638 F:      Documentation/admin-guide/rtc.rst
15639 F:      Documentation/devicetree/bindings/rtc/
15640 F:      drivers/rtc/
15641 F:      include/linux/platform_data/rtc-*
15642 F:      include/linux/rtc.h
15643 F:      include/linux/rtc/
15644 F:      include/uapi/linux/rtc.h
15645 F:      tools/testing/selftests/rtc/
15646
15647 REALTEK AUDIO CODECS
15648 M:      Oder Chiou <oder_chiou@realtek.com>
15649 S:      Maintained
15650 F:      include/sound/rt*.h
15651 F:      sound/soc/codecs/rt*
15652
15653 REALTEK RTL83xx SMI DSA ROUTER CHIPS
15654 M:      Linus Walleij <linus.walleij@linaro.org>
15655 S:      Maintained
15656 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
15657 F:      drivers/net/dsa/realtek-smi*
15658 F:      drivers/net/dsa/rtl83*
15659
15660 REALTEK WIRELESS DRIVER (rtlwifi family)
15661 M:      Ping-Ke Shih <pkshih@realtek.com>
15662 L:      linux-wireless@vger.kernel.org
15663 S:      Maintained
15664 W:      https://wireless.wiki.kernel.org/
15665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15666 F:      drivers/net/wireless/realtek/rtlwifi/
15667
15668 REALTEK WIRELESS DRIVER (rtw88)
15669 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
15670 L:      linux-wireless@vger.kernel.org
15671 S:      Maintained
15672 F:      drivers/net/wireless/realtek/rtw88/
15673
15674 REDPINE WIRELESS DRIVER
15675 M:      Amitkumar Karwar <amitkarwar@gmail.com>
15676 M:      Siva Rebbagondla <siva8118@gmail.com>
15677 L:      linux-wireless@vger.kernel.org
15678 S:      Maintained
15679 F:      drivers/net/wireless/rsi/
15680
15681 REGISTER MAP ABSTRACTION
15682 M:      Mark Brown <broonie@kernel.org>
15683 L:      linux-kernel@vger.kernel.org
15684 S:      Supported
15685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
15686 F:      Documentation/devicetree/bindings/regmap/
15687 F:      drivers/base/regmap/
15688 F:      include/linux/regmap.h
15689
15690 REISERFS FILE SYSTEM
15691 L:      reiserfs-devel@vger.kernel.org
15692 S:      Supported
15693 F:      fs/reiserfs/
15694
15695 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
15696 M:      Ohad Ben-Cohen <ohad@wizery.com>
15697 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15698 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
15699 L:      linux-remoteproc@vger.kernel.org
15700 S:      Maintained
15701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
15702 F:      Documentation/ABI/testing/sysfs-class-remoteproc
15703 F:      Documentation/devicetree/bindings/remoteproc/
15704 F:      Documentation/staging/remoteproc.rst
15705 F:      drivers/remoteproc/
15706 F:      include/linux/remoteproc.h
15707 F:      include/linux/remoteproc/
15708
15709 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
15710 M:      Ohad Ben-Cohen <ohad@wizery.com>
15711 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15712 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
15713 L:      linux-remoteproc@vger.kernel.org
15714 S:      Maintained
15715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
15716 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
15717 F:      Documentation/staging/rpmsg.rst
15718 F:      drivers/rpmsg/
15719 F:      include/linux/rpmsg.h
15720 F:      include/linux/rpmsg/
15721 F:      include/uapi/linux/rpmsg.h
15722 F:      samples/rpmsg/
15723
15724 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
15725 M:      Stephan Gerhold <stephan@gerhold.net>
15726 L:      netdev@vger.kernel.org
15727 L:      linux-remoteproc@vger.kernel.org
15728 S:      Maintained
15729 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
15730
15731 RENESAS CLOCK DRIVERS
15732 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15733 L:      linux-renesas-soc@vger.kernel.org
15734 S:      Supported
15735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
15736 F:      Documentation/devicetree/bindings/clock/renesas,*
15737 F:      drivers/clk/renesas/
15738
15739 RENESAS EMEV2 I2C DRIVER
15740 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15741 L:      linux-renesas-soc@vger.kernel.org
15742 S:      Supported
15743 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
15744 F:      drivers/i2c/busses/i2c-emev2.c
15745
15746 RENESAS ETHERNET DRIVERS
15747 R:      Sergei Shtylyov <sergei.shtylyov@gmail.com>
15748 L:      netdev@vger.kernel.org
15749 L:      linux-renesas-soc@vger.kernel.org
15750 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
15751 F:      drivers/net/ethernet/renesas/
15752 F:      include/linux/sh_eth.h
15753
15754 RENESAS R-CAR GYROADC DRIVER
15755 M:      Marek Vasut <marek.vasut@gmail.com>
15756 L:      linux-iio@vger.kernel.org
15757 S:      Supported
15758 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
15759 F:      drivers/iio/adc/rcar-gyroadc.c
15760
15761 RENESAS R-CAR I2C DRIVERS
15762 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15763 L:      linux-renesas-soc@vger.kernel.org
15764 S:      Supported
15765 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
15766 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
15767 F:      drivers/i2c/busses/i2c-rcar.c
15768 F:      drivers/i2c/busses/i2c-sh_mobile.c
15769
15770 RENESAS R-CAR THERMAL DRIVERS
15771 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
15772 L:      linux-renesas-soc@vger.kernel.org
15773 S:      Supported
15774 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
15775 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
15776 F:      drivers/thermal/rcar_gen3_thermal.c
15777 F:      drivers/thermal/rcar_thermal.c
15778
15779 RENESAS RIIC DRIVER
15780 M:      Chris Brandt <chris.brandt@renesas.com>
15781 L:      linux-renesas-soc@vger.kernel.org
15782 S:      Supported
15783 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
15784 F:      drivers/i2c/busses/i2c-riic.c
15785
15786 RENESAS USB PHY DRIVER
15787 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15788 L:      linux-renesas-soc@vger.kernel.org
15789 S:      Maintained
15790 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
15791
15792 RESET CONTROLLER FRAMEWORK
15793 M:      Philipp Zabel <p.zabel@pengutronix.de>
15794 S:      Maintained
15795 T:      git git://git.pengutronix.de/git/pza/linux
15796 F:      Documentation/devicetree/bindings/reset/
15797 F:      Documentation/driver-api/reset.rst
15798 F:      drivers/reset/
15799 F:      include/dt-bindings/reset/
15800 F:      include/linux/reset-controller.h
15801 F:      include/linux/reset.h
15802 F:      include/linux/reset/
15803 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
15804
15805 RESTARTABLE SEQUENCES SUPPORT
15806 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15807 M:      Peter Zijlstra <peterz@infradead.org>
15808 M:      "Paul E. McKenney" <paulmck@kernel.org>
15809 M:      Boqun Feng <boqun.feng@gmail.com>
15810 L:      linux-kernel@vger.kernel.org
15811 S:      Supported
15812 F:      include/trace/events/rseq.h
15813 F:      include/uapi/linux/rseq.h
15814 F:      kernel/rseq.c
15815 F:      tools/testing/selftests/rseq/
15816
15817 RFKILL
15818 M:      Johannes Berg <johannes@sipsolutions.net>
15819 L:      linux-wireless@vger.kernel.org
15820 S:      Maintained
15821 W:      https://wireless.wiki.kernel.org/
15822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
15823 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
15824 F:      Documentation/ABI/stable/sysfs-class-rfkill
15825 F:      Documentation/driver-api/rfkill.rst
15826 F:      include/linux/rfkill.h
15827 F:      include/uapi/linux/rfkill.h
15828 F:      net/rfkill/
15829
15830 RHASHTABLE
15831 M:      Thomas Graf <tgraf@suug.ch>
15832 M:      Herbert Xu <herbert@gondor.apana.org.au>
15833 L:      netdev@vger.kernel.org
15834 S:      Maintained
15835 F:      include/linux/rhashtable-types.h
15836 F:      include/linux/rhashtable.h
15837 F:      lib/rhashtable.c
15838 F:      lib/test_rhashtable.c
15839
15840 RICOH R5C592 MEMORYSTICK DRIVER
15841 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15842 S:      Maintained
15843 F:      drivers/memstick/host/r592.*
15844
15845 RICOH SMARTMEDIA/XD DRIVER
15846 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15847 S:      Maintained
15848 F:      drivers/mtd/nand/raw/r852.c
15849 F:      drivers/mtd/nand/raw/r852.h
15850
15851 RISC-V ARCHITECTURE
15852 M:      Paul Walmsley <paul.walmsley@sifive.com>
15853 M:      Palmer Dabbelt <palmer@dabbelt.com>
15854 M:      Albert Ou <aou@eecs.berkeley.edu>
15855 L:      linux-riscv@lists.infradead.org
15856 S:      Supported
15857 P:      Documentation/riscv/patch-acceptance.rst
15858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
15859 F:      arch/riscv/
15860 N:      riscv
15861 K:      riscv
15862
15863 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
15864 M:      Lewis Hanly <lewis.hanly@microchip.com>
15865 L:      linux-riscv@lists.infradead.org
15866 S:      Supported
15867 F:      drivers/mailbox/mailbox-mpfs.c
15868 F:      drivers/soc/microchip/
15869 F:      include/soc/microchip/mpfs.h
15870
15871 RNBD BLOCK DRIVERS
15872 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
15873 M:      Jack Wang <jinpu.wang@ionos.com>
15874 L:      linux-block@vger.kernel.org
15875 S:      Maintained
15876 F:      drivers/block/rnbd/
15877
15878 ROCCAT DRIVERS
15879 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
15880 S:      Maintained
15881 W:      http://sourceforge.net/projects/roccat/
15882 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
15883 F:      drivers/hid/hid-roccat*
15884 F:      include/linux/hid-roccat*
15885
15886 ROCKCHIP ISP V1 DRIVER
15887 M:      Helen Koike <helen.koike@collabora.com>
15888 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
15889 L:      linux-media@vger.kernel.org
15890 L:      linux-rockchip@lists.infradead.org
15891 S:      Maintained
15892 F:      Documentation/admin-guide/media/rkisp1.rst
15893 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
15894 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
15895 F:      drivers/media/platform/rockchip/rkisp1
15896 F:      include/uapi/linux/rkisp1-config.h
15897
15898 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
15899 M:      Jacob Chen <jacob-chen@iotwrt.com>
15900 M:      Ezequiel Garcia <ezequiel@collabora.com>
15901 L:      linux-media@vger.kernel.org
15902 L:      linux-rockchip@lists.infradead.org
15903 S:      Maintained
15904 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
15905 F:      drivers/media/platform/rockchip/rga/
15906
15907 ROCKCHIP VIDEO DECODER DRIVER
15908 M:      Ezequiel Garcia <ezequiel@collabora.com>
15909 L:      linux-media@vger.kernel.org
15910 L:      linux-rockchip@lists.infradead.org
15911 S:      Maintained
15912 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
15913 F:      drivers/staging/media/rkvdec/
15914
15915 ROCKER DRIVER
15916 M:      Jiri Pirko <jiri@resnulli.us>
15917 L:      netdev@vger.kernel.org
15918 S:      Supported
15919 F:      drivers/net/ethernet/rocker/
15920
15921 ROCKETPORT EXPRESS/INFINITY DRIVER
15922 M:      Kevin Cernekee <cernekee@gmail.com>
15923 L:      linux-serial@vger.kernel.org
15924 S:      Odd Fixes
15925 F:      drivers/tty/serial/rp2.*
15926
15927 ROHM BD99954 CHARGER IC
15928 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15929 L:      linux-power@fi.rohmeurope.com
15930 S:      Supported
15931 F:      drivers/power/supply/bd99954-charger.c
15932 F:      drivers/power/supply/bd99954-charger.h
15933
15934 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
15935 M:      Tomasz Duszynski <tduszyns@gmail.com>
15936 S:      Maintained
15937 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
15938 F:      drivers/iio/light/bh1750.c
15939
15940 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
15941 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15942 L:      linux-kernel@vger.kernel.org
15943 L:      linux-renesas-soc@vger.kernel.org
15944 S:      Supported
15945 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
15946 F:      drivers/gpio/gpio-bd9571mwv.c
15947 F:      drivers/mfd/bd9571mwv.c
15948 F:      drivers/regulator/bd9571mwv-regulator.c
15949 F:      include/linux/mfd/bd9571mwv.h
15950
15951 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
15952 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15953 L:      linux-power@fi.rohmeurope.com
15954 S:      Supported
15955 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
15956 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
15957 F:      drivers/clk/clk-bd718x7.c
15958 F:      drivers/gpio/gpio-bd70528.c
15959 F:      drivers/gpio/gpio-bd71815.c
15960 F:      drivers/gpio/gpio-bd71828.c
15961 F:      drivers/mfd/rohm-bd70528.c
15962 F:      drivers/mfd/rohm-bd71828.c
15963 F:      drivers/mfd/rohm-bd718x7.c
15964 F:      drivers/mfd/rohm-bd9576.c
15965 F:      drivers/power/supply/bd70528-charger.c
15966 F:      drivers/regulator/bd70528-regulator.c
15967 F:      drivers/regulator/bd71815-regulator.c
15968 F:      drivers/regulator/bd71828-regulator.c
15969 F:      drivers/regulator/bd718x7-regulator.c
15970 F:      drivers/regulator/bd9576-regulator.c
15971 F:      drivers/regulator/rohm-regulator.c
15972 F:      drivers/rtc/rtc-bd70528.c
15973 F:      drivers/watchdog/bd70528_wdt.c
15974 F:      drivers/watchdog/bd9576_wdt.c
15975 F:      include/linux/mfd/rohm-bd70528.h
15976 F:      include/linux/mfd/rohm-bd71815.h
15977 F:      include/linux/mfd/rohm-bd71828.h
15978 F:      include/linux/mfd/rohm-bd718x7.h
15979 F:      include/linux/mfd/rohm-bd957x.h
15980 F:      include/linux/mfd/rohm-generic.h
15981 F:      include/linux/mfd/rohm-shared.h
15982
15983 ROSE NETWORK LAYER
15984 M:      Ralf Baechle <ralf@linux-mips.org>
15985 L:      linux-hams@vger.kernel.org
15986 S:      Maintained
15987 W:      http://www.linux-ax25.org/
15988 F:      include/net/rose.h
15989 F:      include/uapi/linux/rose.h
15990 F:      net/rose/
15991
15992 ROTATION DRIVER FOR ALLWINNER A83T
15993 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
15994 L:      linux-media@vger.kernel.org
15995 S:      Maintained
15996 T:      git git://linuxtv.org/media_tree.git
15997 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
15998 F:      drivers/media/platform/sunxi/sun8i-rotate/
15999
16000 RTL2830 MEDIA DRIVER
16001 M:      Antti Palosaari <crope@iki.fi>
16002 L:      linux-media@vger.kernel.org
16003 S:      Maintained
16004 W:      https://linuxtv.org
16005 W:      http://palosaari.fi/linux/
16006 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16007 T:      git git://linuxtv.org/anttip/media_tree.git
16008 F:      drivers/media/dvb-frontends/rtl2830*
16009
16010 RTL2832 MEDIA DRIVER
16011 M:      Antti Palosaari <crope@iki.fi>
16012 L:      linux-media@vger.kernel.org
16013 S:      Maintained
16014 W:      https://linuxtv.org
16015 W:      http://palosaari.fi/linux/
16016 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16017 T:      git git://linuxtv.org/anttip/media_tree.git
16018 F:      drivers/media/dvb-frontends/rtl2832*
16019
16020 RTL2832_SDR MEDIA DRIVER
16021 M:      Antti Palosaari <crope@iki.fi>
16022 L:      linux-media@vger.kernel.org
16023 S:      Maintained
16024 W:      https://linuxtv.org
16025 W:      http://palosaari.fi/linux/
16026 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16027 T:      git git://linuxtv.org/anttip/media_tree.git
16028 F:      drivers/media/dvb-frontends/rtl2832_sdr*
16029
16030 RTL8180 WIRELESS DRIVER
16031 L:      linux-wireless@vger.kernel.org
16032 S:      Orphan
16033 W:      https://wireless.wiki.kernel.org/
16034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16035 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
16036
16037 RTL8187 WIRELESS DRIVER
16038 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
16039 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
16040 M:      Larry Finger <Larry.Finger@lwfinger.net>
16041 L:      linux-wireless@vger.kernel.org
16042 S:      Maintained
16043 W:      https://wireless.wiki.kernel.org/
16044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16045 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
16046
16047 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
16048 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
16049 L:      linux-wireless@vger.kernel.org
16050 S:      Maintained
16051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
16052 F:      drivers/net/wireless/realtek/rtl8xxxu/
16053
16054 RTRS TRANSPORT DRIVERS
16055 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16056 M:      Jack Wang <jinpu.wang@ionos.com>
16057 L:      linux-rdma@vger.kernel.org
16058 S:      Maintained
16059 F:      drivers/infiniband/ulp/rtrs/
16060
16061 RXRPC SOCKETS (AF_RXRPC)
16062 M:      David Howells <dhowells@redhat.com>
16063 M:      Marc Dionne <marc.dionne@auristor.com>
16064 L:      linux-afs@lists.infradead.org
16065 S:      Supported
16066 W:      https://www.infradead.org/~dhowells/kafs/
16067 F:      Documentation/networking/rxrpc.rst
16068 F:      include/keys/rxrpc-type.h
16069 F:      include/net/af_rxrpc.h
16070 F:      include/trace/events/rxrpc.h
16071 F:      include/uapi/linux/rxrpc.h
16072 F:      net/rxrpc/
16073
16074 S3 SAVAGE FRAMEBUFFER DRIVER
16075 M:      Antonino Daplas <adaplas@gmail.com>
16076 L:      linux-fbdev@vger.kernel.org
16077 S:      Maintained
16078 F:      drivers/video/fbdev/savage/
16079
16080 S390
16081 M:      Heiko Carstens <hca@linux.ibm.com>
16082 M:      Vasily Gorbik <gor@linux.ibm.com>
16083 M:      Christian Borntraeger <borntraeger@de.ibm.com>
16084 L:      linux-s390@vger.kernel.org
16085 S:      Supported
16086 W:      http://www.ibm.com/developerworks/linux/linux390/
16087 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
16088 F:      Documentation/driver-api/s390-drivers.rst
16089 F:      Documentation/s390/
16090 F:      arch/s390/
16091 F:      drivers/s390/
16092
16093 S390 COMMON I/O LAYER
16094 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
16095 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
16096 L:      linux-s390@vger.kernel.org
16097 S:      Supported
16098 W:      http://www.ibm.com/developerworks/linux/linux390/
16099 F:      drivers/s390/cio/
16100
16101 S390 DASD DRIVER
16102 M:      Stefan Haberland <sth@linux.ibm.com>
16103 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
16104 L:      linux-s390@vger.kernel.org
16105 S:      Supported
16106 W:      http://www.ibm.com/developerworks/linux/linux390/
16107 F:      block/partitions/ibm.c
16108 F:      drivers/s390/block/dasd*
16109 F:      include/linux/dasd_mod.h
16110
16111 S390 IOMMU (PCI)
16112 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16113 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16114 L:      linux-s390@vger.kernel.org
16115 S:      Supported
16116 W:      http://www.ibm.com/developerworks/linux/linux390/
16117 F:      drivers/iommu/s390-iommu.c
16118
16119 S390 IUCV NETWORK LAYER
16120 M:      Julian Wiedmann <jwi@linux.ibm.com>
16121 M:      Karsten Graul <kgraul@linux.ibm.com>
16122 L:      linux-s390@vger.kernel.org
16123 L:      netdev@vger.kernel.org
16124 S:      Supported
16125 W:      http://www.ibm.com/developerworks/linux/linux390/
16126 F:      drivers/s390/net/*iucv*
16127 F:      include/net/iucv/
16128 F:      net/iucv/
16129
16130 S390 NETWORK DRIVERS
16131 M:      Julian Wiedmann <jwi@linux.ibm.com>
16132 M:      Karsten Graul <kgraul@linux.ibm.com>
16133 L:      linux-s390@vger.kernel.org
16134 L:      netdev@vger.kernel.org
16135 S:      Supported
16136 W:      http://www.ibm.com/developerworks/linux/linux390/
16137 F:      drivers/s390/net/
16138
16139 S390 PCI SUBSYSTEM
16140 M:      Niklas Schnelle <schnelle@linux.ibm.com>
16141 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16142 L:      linux-s390@vger.kernel.org
16143 S:      Supported
16144 W:      http://www.ibm.com/developerworks/linux/linux390/
16145 F:      arch/s390/pci/
16146 F:      drivers/pci/hotplug/s390_pci_hpc.c
16147 F:      Documentation/s390/pci.rst
16148
16149 S390 VFIO AP DRIVER
16150 M:      Tony Krowiak <akrowiak@linux.ibm.com>
16151 M:      Halil Pasic <pasic@linux.ibm.com>
16152 M:      Jason Herne <jjherne@linux.ibm.com>
16153 L:      linux-s390@vger.kernel.org
16154 S:      Supported
16155 W:      http://www.ibm.com/developerworks/linux/linux390/
16156 F:      Documentation/s390/vfio-ap.rst
16157 F:      drivers/s390/crypto/vfio_ap_drv.c
16158 F:      drivers/s390/crypto/vfio_ap_ops.c
16159 F:      drivers/s390/crypto/vfio_ap_private.h
16160
16161 S390 VFIO-CCW DRIVER
16162 M:      Cornelia Huck <cohuck@redhat.com>
16163 M:      Eric Farman <farman@linux.ibm.com>
16164 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16165 R:      Halil Pasic <pasic@linux.ibm.com>
16166 L:      linux-s390@vger.kernel.org
16167 L:      kvm@vger.kernel.org
16168 S:      Supported
16169 F:      Documentation/s390/vfio-ccw.rst
16170 F:      drivers/s390/cio/vfio_ccw*
16171 F:      include/uapi/linux/vfio_ccw.h
16172
16173 S390 VFIO-PCI DRIVER
16174 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16175 M:      Eric Farman <farman@linux.ibm.com>
16176 L:      linux-s390@vger.kernel.org
16177 L:      kvm@vger.kernel.org
16178 S:      Supported
16179 F:      drivers/vfio/pci/vfio_pci_zdev.c
16180 F:      include/uapi/linux/vfio_zdev.h
16181
16182 S390 ZCRYPT DRIVER
16183 M:      Harald Freudenberger <freude@linux.ibm.com>
16184 L:      linux-s390@vger.kernel.org
16185 S:      Supported
16186 W:      http://www.ibm.com/developerworks/linux/linux390/
16187 F:      drivers/s390/crypto/
16188
16189 S390 ZFCP DRIVER
16190 M:      Steffen Maier <maier@linux.ibm.com>
16191 M:      Benjamin Block <bblock@linux.ibm.com>
16192 L:      linux-s390@vger.kernel.org
16193 S:      Supported
16194 W:      http://www.ibm.com/developerworks/linux/linux390/
16195 F:      drivers/s390/scsi/zfcp_*
16196
16197 S3C ADC BATTERY DRIVER
16198 M:      Krzysztof Kozlowski <krzk@kernel.org>
16199 L:      linux-samsung-soc@vger.kernel.org
16200 S:      Odd Fixes
16201 F:      drivers/power/supply/s3c_adc_battery.c
16202 F:      include/linux/s3c_adc_battery.h
16203
16204 S3C24XX SD/MMC Driver
16205 M:      Ben Dooks <ben-linux@fluff.org>
16206 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16207 S:      Supported
16208 F:      drivers/mmc/host/s3cmci.*
16209
16210 SAA6588 RDS RECEIVER DRIVER
16211 M:      Hans Verkuil <hverkuil@xs4all.nl>
16212 L:      linux-media@vger.kernel.org
16213 S:      Odd Fixes
16214 W:      https://linuxtv.org
16215 T:      git git://linuxtv.org/media_tree.git
16216 F:      drivers/media/i2c/saa6588*
16217
16218 SAA7134 VIDEO4LINUX DRIVER
16219 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16220 L:      linux-media@vger.kernel.org
16221 S:      Odd fixes
16222 W:      https://linuxtv.org
16223 T:      git git://linuxtv.org/media_tree.git
16224 F:      Documentation/driver-api/media/drivers/saa7134*
16225 F:      drivers/media/pci/saa7134/
16226
16227 SAA7146 VIDEO4LINUX-2 DRIVER
16228 M:      Hans Verkuil <hverkuil@xs4all.nl>
16229 L:      linux-media@vger.kernel.org
16230 S:      Maintained
16231 T:      git git://linuxtv.org/media_tree.git
16232 F:      drivers/media/common/saa7146/
16233 F:      drivers/media/pci/saa7146/
16234 F:      include/media/drv-intf/saa7146*
16235
16236 SAFESETID SECURITY MODULE
16237 M:      Micah Morton <mortonm@chromium.org>
16238 S:      Supported
16239 F:      Documentation/admin-guide/LSM/SafeSetID.rst
16240 F:      security/safesetid/
16241
16242 SAMSUNG AUDIO (ASoC) DRIVERS
16243 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16244 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16245 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16246 S:      Supported
16247 F:      Documentation/devicetree/bindings/sound/samsung*
16248 F:      sound/soc/samsung/
16249
16250 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
16251 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16252 L:      linux-crypto@vger.kernel.org
16253 L:      linux-samsung-soc@vger.kernel.org
16254 S:      Maintained
16255 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
16256 F:      drivers/crypto/exynos-rng.c
16257
16258 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
16259 M:      Łukasz Stelmach <l.stelmach@samsung.com>
16260 L:      linux-samsung-soc@vger.kernel.org
16261 S:      Maintained
16262 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
16263 F:      drivers/char/hw_random/exynos-trng.c
16264
16265 SAMSUNG FRAMEBUFFER DRIVER
16266 M:      Jingoo Han <jingoohan1@gmail.com>
16267 L:      linux-fbdev@vger.kernel.org
16268 S:      Maintained
16269 F:      drivers/video/fbdev/s3c-fb.c
16270
16271 SAMSUNG INTERCONNECT DRIVERS
16272 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16273 M:      Artur Świgoń <a.swigon@samsung.com>
16274 L:      linux-pm@vger.kernel.org
16275 L:      linux-samsung-soc@vger.kernel.org
16276 S:      Supported
16277 F:      drivers/interconnect/samsung/
16278
16279 SAMSUNG LAPTOP DRIVER
16280 M:      Corentin Chary <corentin.chary@gmail.com>
16281 L:      platform-driver-x86@vger.kernel.org
16282 S:      Maintained
16283 F:      drivers/platform/x86/samsung-laptop.c
16284
16285 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
16286 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16287 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16288 L:      linux-kernel@vger.kernel.org
16289 L:      linux-samsung-soc@vger.kernel.org
16290 S:      Supported
16291 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
16292 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
16293 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
16294 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
16295 F:      drivers/clk/clk-s2mps11.c
16296 F:      drivers/mfd/sec*.c
16297 F:      drivers/regulator/s2m*.c
16298 F:      drivers/regulator/s5m*.c
16299 F:      drivers/rtc/rtc-s5m.c
16300 F:      include/linux/mfd/samsung/
16301
16302 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
16303 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
16304 L:      linux-media@vger.kernel.org
16305 L:      linux-samsung-soc@vger.kernel.org
16306 S:      Maintained
16307 F:      drivers/media/platform/s3c-camif/
16308 F:      include/media/drv-intf/s3c_camif.h
16309
16310 SAMSUNG S3FWRN5 NFC DRIVER
16311 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16312 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
16313 L:      linux-nfc@lists.01.org (subscribers-only)
16314 S:      Maintained
16315 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
16316 F:      drivers/nfc/s3fwrn5
16317
16318 SAMSUNG S5C73M3 CAMERA DRIVER
16319 M:      Andrzej Hajda <a.hajda@samsung.com>
16320 L:      linux-media@vger.kernel.org
16321 S:      Supported
16322 F:      drivers/media/i2c/s5c73m3/*
16323
16324 SAMSUNG S5K5BAF CAMERA DRIVER
16325 M:      Andrzej Hajda <a.hajda@samsung.com>
16326 L:      linux-media@vger.kernel.org
16327 S:      Supported
16328 F:      drivers/media/i2c/s5k5baf.c
16329
16330 SAMSUNG S5P Security SubSystem (SSS) DRIVER
16331 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16332 M:      Vladimir Zapolskiy <vz@mleia.com>
16333 L:      linux-crypto@vger.kernel.org
16334 L:      linux-samsung-soc@vger.kernel.org
16335 S:      Maintained
16336 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
16337 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
16338 F:      drivers/crypto/s5p-sss.c
16339
16340 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
16341 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16342 L:      linux-media@vger.kernel.org
16343 S:      Supported
16344 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
16345 F:      drivers/media/platform/exynos4-is/
16346
16347 SAMSUNG SOC CLOCK DRIVERS
16348 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16349 M:      Tomasz Figa <tomasz.figa@gmail.com>
16350 M:      Chanwoo Choi <cw00.choi@samsung.com>
16351 L:      linux-samsung-soc@vger.kernel.org
16352 S:      Supported
16353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
16354 F:      Documentation/devicetree/bindings/clock/exynos*.txt
16355 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
16356 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
16357 F:      drivers/clk/samsung/
16358 F:      include/dt-bindings/clock/exynos*.h
16359 F:      include/linux/clk/samsung.h
16360 F:      include/linux/platform_data/clk-s3c2410.h
16361
16362 SAMSUNG SPI DRIVERS
16363 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16364 M:      Andi Shyti <andi@etezian.org>
16365 L:      linux-spi@vger.kernel.org
16366 L:      linux-samsung-soc@vger.kernel.org
16367 S:      Maintained
16368 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
16369 F:      drivers/spi/spi-s3c*
16370 F:      include/linux/platform_data/spi-s3c64xx.h
16371 F:      include/linux/spi/s3c24xx-fiq.h
16372
16373 SAMSUNG SXGBE DRIVERS
16374 M:      Byungho An <bh74.an@samsung.com>
16375 L:      netdev@vger.kernel.org
16376 S:      Supported
16377 F:      drivers/net/ethernet/samsung/sxgbe/
16378
16379 SAMSUNG THERMAL DRIVER
16380 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16381 L:      linux-pm@vger.kernel.org
16382 L:      linux-samsung-soc@vger.kernel.org
16383 S:      Supported
16384 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
16385 F:      drivers/thermal/samsung/
16386
16387 SAMSUNG USB2 PHY DRIVER
16388 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16389 L:      linux-kernel@vger.kernel.org
16390 S:      Supported
16391 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
16392 F:      Documentation/driver-api/phy/samsung-usb2.rst
16393 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
16394 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
16395 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
16396 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
16397 F:      drivers/phy/samsung/phy-samsung-usb2.c
16398 F:      drivers/phy/samsung/phy-samsung-usb2.h
16399
16400 SC1200 WDT DRIVER
16401 M:      Zwane Mwaikambo <zwanem@gmail.com>
16402 S:      Maintained
16403 F:      drivers/watchdog/sc1200wdt.c
16404
16405 SCHEDULER
16406 M:      Ingo Molnar <mingo@redhat.com>
16407 M:      Peter Zijlstra <peterz@infradead.org>
16408 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
16409 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
16410 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
16411 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
16412 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
16413 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
16414 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
16415 L:      linux-kernel@vger.kernel.org
16416 S:      Maintained
16417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
16418 F:      include/linux/preempt.h
16419 F:      include/linux/sched.h
16420 F:      include/linux/wait.h
16421 F:      include/uapi/linux/sched.h
16422 F:      kernel/sched/
16423
16424 SCR24X CHIP CARD INTERFACE DRIVER
16425 M:      Lubomir Rintel <lkundrak@v3.sk>
16426 S:      Supported
16427 F:      drivers/char/pcmcia/scr24x_cs.c
16428
16429 SCSI CDROM DRIVER
16430 M:      Jens Axboe <axboe@kernel.dk>
16431 L:      linux-scsi@vger.kernel.org
16432 S:      Maintained
16433 W:      http://www.kernel.dk
16434 F:      drivers/scsi/sr*
16435
16436 SCSI RDMA PROTOCOL (SRP) INITIATOR
16437 M:      Bart Van Assche <bvanassche@acm.org>
16438 L:      linux-rdma@vger.kernel.org
16439 S:      Supported
16440 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16441 F:      drivers/infiniband/ulp/srp/
16442 F:      include/scsi/srp.h
16443
16444 SCSI RDMA PROTOCOL (SRP) TARGET
16445 M:      Bart Van Assche <bvanassche@acm.org>
16446 L:      linux-rdma@vger.kernel.org
16447 L:      target-devel@vger.kernel.org
16448 S:      Supported
16449 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16450 F:      drivers/infiniband/ulp/srpt/
16451
16452 SCSI SG DRIVER
16453 M:      Doug Gilbert <dgilbert@interlog.com>
16454 L:      linux-scsi@vger.kernel.org
16455 S:      Maintained
16456 W:      http://sg.danny.cz/sg
16457 F:      Documentation/scsi/scsi-generic.rst
16458 F:      drivers/scsi/sg.c
16459 F:      include/scsi/sg.h
16460
16461 SCSI SUBSYSTEM
16462 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
16463 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16464 L:      linux-scsi@vger.kernel.org
16465 S:      Maintained
16466 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
16467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
16468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16469 F:      Documentation/devicetree/bindings/scsi/
16470 F:      drivers/scsi/
16471 F:      include/scsi/
16472
16473 SCSI TAPE DRIVER
16474 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
16475 L:      linux-scsi@vger.kernel.org
16476 S:      Maintained
16477 F:      Documentation/scsi/st.rst
16478 F:      drivers/scsi/st.*
16479 F:      drivers/scsi/st_*.h
16480
16481 SCSI TARGET CORE USER DRIVER
16482 M:      Bodo Stroesser <bostroesser@gmail.com>
16483 L:      linux-scsi@vger.kernel.org
16484 L:      target-devel@vger.kernel.org
16485 S:      Supported
16486 F:      Documentation/target/tcmu-design.rst
16487 F:      drivers/target/target_core_user.c
16488 F:      include/uapi/linux/target_core_user.h
16489
16490 SCSI TARGET SUBSYSTEM
16491 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16492 L:      linux-scsi@vger.kernel.org
16493 L:      target-devel@vger.kernel.org
16494 S:      Supported
16495 W:      http://www.linux-iscsi.org
16496 Q:      https://patchwork.kernel.org/project/target-devel/list/
16497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16498 F:      Documentation/target/
16499 F:      drivers/target/
16500 F:      include/target/
16501
16502 SCTP PROTOCOL
16503 M:      Vlad Yasevich <vyasevich@gmail.com>
16504 M:      Neil Horman <nhorman@tuxdriver.com>
16505 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
16506 L:      linux-sctp@vger.kernel.org
16507 S:      Maintained
16508 W:      http://lksctp.sourceforge.net
16509 F:      Documentation/networking/sctp.rst
16510 F:      include/linux/sctp.h
16511 F:      include/net/sctp/
16512 F:      include/uapi/linux/sctp.h
16513 F:      net/sctp/
16514
16515 SCx200 CPU SUPPORT
16516 M:      Jim Cromie <jim.cromie@gmail.com>
16517 S:      Odd Fixes
16518 F:      Documentation/i2c/busses/scx200_acb.rst
16519 F:      arch/x86/platform/scx200/
16520 F:      drivers/i2c/busses/scx200*
16521 F:      drivers/mtd/maps/scx200_docflash.c
16522 F:      drivers/watchdog/scx200_wdt.c
16523 F:      include/linux/scx200.h
16524
16525 SCx200 GPIO DRIVER
16526 M:      Jim Cromie <jim.cromie@gmail.com>
16527 S:      Maintained
16528 F:      drivers/char/scx200_gpio.c
16529 F:      include/linux/scx200_gpio.h
16530
16531 SCx200 HRT CLOCKSOURCE DRIVER
16532 M:      Jim Cromie <jim.cromie@gmail.com>
16533 S:      Maintained
16534 F:      drivers/clocksource/scx200_hrt.c
16535
16536 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
16537 M:      Sascha Sommer <saschasommer@freenet.de>
16538 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
16539 S:      Maintained
16540 F:      drivers/mmc/host/sdricoh_cs.c
16541
16542 SECO BOARDS CEC DRIVER
16543 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
16544 S:      Maintained
16545 F:      drivers/media/cec/platform/seco/seco-cec.c
16546 F:      drivers/media/cec/platform/seco/seco-cec.h
16547
16548 SECURE COMPUTING
16549 M:      Kees Cook <keescook@chromium.org>
16550 R:      Andy Lutomirski <luto@amacapital.net>
16551 R:      Will Drewry <wad@chromium.org>
16552 S:      Supported
16553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
16554 F:      Documentation/userspace-api/seccomp_filter.rst
16555 F:      include/linux/seccomp.h
16556 F:      include/uapi/linux/seccomp.h
16557 F:      kernel/seccomp.c
16558 F:      tools/testing/selftests/kselftest_harness.h
16559 F:      tools/testing/selftests/seccomp/*
16560 K:      \bsecure_computing
16561 K:      \bTIF_SECCOMP\b
16562
16563 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
16564 M:      Al Cooper <alcooperx@gmail.com>
16565 L:      linux-mmc@vger.kernel.org
16566 L:      bcm-kernel-feedback-list@broadcom.com
16567 S:      Maintained
16568 F:      drivers/mmc/host/sdhci-brcmstb*
16569
16570 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
16571 M:      Adrian Hunter <adrian.hunter@intel.com>
16572 L:      linux-mmc@vger.kernel.org
16573 S:      Maintained
16574 F:      drivers/mmc/host/sdhci*
16575 F:      include/linux/mmc/sdhci*
16576
16577 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
16578 M:      Eugen Hristev <eugen.hristev@microchip.com>
16579 L:      linux-mmc@vger.kernel.org
16580 S:      Supported
16581 F:      drivers/mmc/host/sdhci-of-at91.c
16582
16583 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
16584 M:      Ben Dooks <ben-linux@fluff.org>
16585 M:      Jaehoon Chung <jh80.chung@samsung.com>
16586 L:      linux-mmc@vger.kernel.org
16587 S:      Maintained
16588 F:      drivers/mmc/host/sdhci-s3c*
16589
16590 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
16591 M:      Viresh Kumar <vireshk@kernel.org>
16592 L:      linux-mmc@vger.kernel.org
16593 S:      Maintained
16594 F:      drivers/mmc/host/sdhci-spear.c
16595
16596 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
16597 M:      Kishon Vijay Abraham I <kishon@ti.com>
16598 L:      linux-mmc@vger.kernel.org
16599 S:      Maintained
16600 F:      drivers/mmc/host/sdhci-omap.c
16601
16602 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
16603 M:      Jonathan Derrick <jonathan.derrick@intel.com>
16604 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
16605 L:      linux-block@vger.kernel.org
16606 S:      Supported
16607 F:      block/opal_proto.h
16608 F:      block/sed*
16609 F:      include/linux/sed*
16610 F:      include/uapi/linux/sed*
16611
16612 SECURITY CONTACT
16613 M:      Security Officers <security@kernel.org>
16614 S:      Supported
16615 F:      Documentation/admin-guide/security-bugs.rst
16616
16617 SECURITY SUBSYSTEM
16618 M:      James Morris <jmorris@namei.org>
16619 M:      "Serge E. Hallyn" <serge@hallyn.com>
16620 L:      linux-security-module@vger.kernel.org (suggested Cc:)
16621 S:      Supported
16622 W:      http://kernsec.org/
16623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
16624 F:      security/
16625 X:      security/selinux/
16626
16627 SELINUX SECURITY MODULE
16628 M:      Paul Moore <paul@paul-moore.com>
16629 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
16630 M:      Eric Paris <eparis@parisplace.org>
16631 L:      selinux@vger.kernel.org
16632 S:      Supported
16633 W:      https://selinuxproject.org
16634 W:      https://github.com/SELinuxProject
16635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
16636 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
16637 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
16638 F:      Documentation/admin-guide/LSM/SELinux.rst
16639 F:      include/trace/events/avc.h
16640 F:      include/uapi/linux/selinux_netlink.h
16641 F:      scripts/selinux/
16642 F:      security/selinux/
16643
16644 SENSABLE PHANTOM
16645 M:      Jiri Slaby <jirislaby@kernel.org>
16646 S:      Maintained
16647 F:      drivers/misc/phantom.c
16648 F:      include/uapi/linux/phantom.h
16649
16650 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
16651 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
16652 S:      Maintained
16653 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
16654 F:      drivers/iio/chemical/scd30.h
16655 F:      drivers/iio/chemical/scd30_core.c
16656 F:      drivers/iio/chemical/scd30_i2c.c
16657 F:      drivers/iio/chemical/scd30_serial.c
16658
16659 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
16660 M:      Tomasz Duszynski <tduszyns@gmail.com>
16661 S:      Maintained
16662 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
16663 F:      drivers/iio/chemical/sps30.c
16664
16665 SERIAL DEVICE BUS
16666 M:      Rob Herring <robh@kernel.org>
16667 L:      linux-serial@vger.kernel.org
16668 S:      Maintained
16669 F:      Documentation/devicetree/bindings/serial/serial.yaml
16670 F:      drivers/tty/serdev/
16671 F:      include/linux/serdev.h
16672
16673 SERIAL DRIVERS
16674 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16675 L:      linux-serial@vger.kernel.org
16676 S:      Maintained
16677 F:      Documentation/devicetree/bindings/serial/
16678 F:      drivers/tty/serial/
16679
16680 SERIAL IR RECEIVER
16681 M:      Sean Young <sean@mess.org>
16682 L:      linux-media@vger.kernel.org
16683 S:      Maintained
16684 F:      drivers/media/rc/serial_ir.c
16685
16686 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
16687 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16688 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16689 S:      Maintained
16690 F:      Documentation/devicetree/bindings/slimbus/
16691 F:      drivers/slimbus/
16692 F:      include/linux/slimbus.h
16693
16694 SFC NETWORK DRIVER
16695 M:      Edward Cree <ecree.xilinx@gmail.com>
16696 M:      Martin Habets <habetsm.xilinx@gmail.com>
16697 L:      netdev@vger.kernel.org
16698 S:      Supported
16699 F:      drivers/net/ethernet/sfc/
16700
16701 SFF/SFP/SFP+ MODULE SUPPORT
16702 M:      Russell King <linux@armlinux.org.uk>
16703 L:      netdev@vger.kernel.org
16704 S:      Maintained
16705 F:      drivers/net/phy/phylink.c
16706 F:      drivers/net/phy/sfp*
16707 F:      include/linux/mdio/mdio-i2c.h
16708 F:      include/linux/phylink.h
16709 F:      include/linux/sfp.h
16710 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)
16711
16712 SGI GRU DRIVER
16713 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
16714 S:      Maintained
16715 F:      drivers/misc/sgi-gru/
16716
16717 SGI XP/XPC/XPNET DRIVER
16718 M:      Robin Holt <robinmholt@gmail.com>
16719 M:      Steve Wahl <steve.wahl@hpe.com>
16720 R:      Mike Travis <mike.travis@hpe.com>
16721 S:      Maintained
16722 F:      drivers/misc/sgi-xp/
16723
16724 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
16725 M:      Karsten Graul <kgraul@linux.ibm.com>
16726 M:      Guvenc Gulce <guvenc@linux.ibm.com>
16727 L:      linux-s390@vger.kernel.org
16728 S:      Supported
16729 W:      http://www.ibm.com/developerworks/linux/linux390/
16730 F:      net/smc/
16731
16732 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
16733 M:      Linus Walleij <linus.walleij@linaro.org>
16734 L:      linux-iio@vger.kernel.org
16735 S:      Maintained
16736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
16737 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
16738 F:      drivers/iio/light/gp2ap002.c
16739
16740 SHARP RJ54N1CB0C SENSOR DRIVER
16741 M:      Jacopo Mondi <jacopo@jmondi.org>
16742 L:      linux-media@vger.kernel.org
16743 S:      Odd fixes
16744 T:      git git://linuxtv.org/media_tree.git
16745 F:      drivers/media/i2c/rj54n1cb0c.c
16746 F:      include/media/i2c/rj54n1cb0c.h
16747
16748 SH_VOU V4L2 OUTPUT DRIVER
16749 L:      linux-media@vger.kernel.org
16750 S:      Orphan
16751 F:      drivers/media/platform/sh_vou.c
16752 F:      include/media/drv-intf/sh_vou.h
16753
16754 SI2157 MEDIA DRIVER
16755 M:      Antti Palosaari <crope@iki.fi>
16756 L:      linux-media@vger.kernel.org
16757 S:      Maintained
16758 W:      https://linuxtv.org
16759 W:      http://palosaari.fi/linux/
16760 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16761 T:      git git://linuxtv.org/anttip/media_tree.git
16762 F:      drivers/media/tuners/si2157*
16763
16764 SI2165 MEDIA DRIVER
16765 M:      Matthias Schwarzott <zzam@gentoo.org>
16766 L:      linux-media@vger.kernel.org
16767 S:      Maintained
16768 W:      https://linuxtv.org
16769 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16770 F:      drivers/media/dvb-frontends/si2165*
16771
16772 SI2168 MEDIA DRIVER
16773 M:      Antti Palosaari <crope@iki.fi>
16774 L:      linux-media@vger.kernel.org
16775 S:      Maintained
16776 W:      https://linuxtv.org
16777 W:      http://palosaari.fi/linux/
16778 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16779 T:      git git://linuxtv.org/anttip/media_tree.git
16780 F:      drivers/media/dvb-frontends/si2168*
16781
16782 SI470X FM RADIO RECEIVER I2C DRIVER
16783 M:      Hans Verkuil <hverkuil@xs4all.nl>
16784 L:      linux-media@vger.kernel.org
16785 S:      Odd Fixes
16786 W:      https://linuxtv.org
16787 T:      git git://linuxtv.org/media_tree.git
16788 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
16789
16790 SI470X FM RADIO RECEIVER USB DRIVER
16791 M:      Hans Verkuil <hverkuil@xs4all.nl>
16792 L:      linux-media@vger.kernel.org
16793 S:      Maintained
16794 W:      https://linuxtv.org
16795 T:      git git://linuxtv.org/media_tree.git
16796 F:      drivers/media/radio/si470x/radio-si470x-common.c
16797 F:      drivers/media/radio/si470x/radio-si470x-usb.c
16798 F:      drivers/media/radio/si470x/radio-si470x.h
16799
16800 SI4713 FM RADIO TRANSMITTER I2C DRIVER
16801 M:      Eduardo Valentin <edubezval@gmail.com>
16802 L:      linux-media@vger.kernel.org
16803 S:      Odd Fixes
16804 W:      https://linuxtv.org
16805 T:      git git://linuxtv.org/media_tree.git
16806 F:      drivers/media/radio/si4713/si4713.?
16807
16808 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
16809 M:      Eduardo Valentin <edubezval@gmail.com>
16810 L:      linux-media@vger.kernel.org
16811 S:      Odd Fixes
16812 W:      https://linuxtv.org
16813 T:      git git://linuxtv.org/media_tree.git
16814 F:      drivers/media/radio/si4713/radio-platform-si4713.c
16815
16816 SI4713 FM RADIO TRANSMITTER USB DRIVER
16817 M:      Hans Verkuil <hverkuil@xs4all.nl>
16818 L:      linux-media@vger.kernel.org
16819 S:      Maintained
16820 W:      https://linuxtv.org
16821 T:      git git://linuxtv.org/media_tree.git
16822 F:      drivers/media/radio/si4713/radio-usb-si4713.c
16823
16824 SIANO DVB DRIVER
16825 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16826 L:      linux-media@vger.kernel.org
16827 S:      Odd fixes
16828 W:      https://linuxtv.org
16829 T:      git git://linuxtv.org/media_tree.git
16830 F:      drivers/media/common/siano/
16831 F:      drivers/media/mmc/siano/
16832 F:      drivers/media/usb/siano/
16833 F:      drivers/media/usb/siano/
16834
16835 SIFIVE DRIVERS
16836 M:      Palmer Dabbelt <palmer@dabbelt.com>
16837 M:      Paul Walmsley <paul.walmsley@sifive.com>
16838 L:      linux-riscv@lists.infradead.org
16839 S:      Supported
16840 T:      git git://github.com/sifive/riscv-linux.git
16841 N:      sifive
16842 K:      [^@]sifive
16843
16844 SIFIVE FU540 SYSTEM-ON-CHIP
16845 M:      Paul Walmsley <paul.walmsley@sifive.com>
16846 M:      Palmer Dabbelt <palmer@dabbelt.com>
16847 L:      linux-riscv@lists.infradead.org
16848 S:      Supported
16849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
16850 N:      fu540
16851 K:      fu540
16852
16853 SIFIVE PDMA DRIVER
16854 M:      Green Wan <green.wan@sifive.com>
16855 S:      Maintained
16856 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
16857 F:      drivers/dma/sf-pdma/
16858
16859 SILEAD TOUCHSCREEN DRIVER
16860 M:      Hans de Goede <hdegoede@redhat.com>
16861 L:      linux-input@vger.kernel.org
16862 L:      platform-driver-x86@vger.kernel.org
16863 S:      Maintained
16864 F:      drivers/input/touchscreen/silead.c
16865 F:      drivers/platform/x86/touchscreen_dmi.c
16866
16867 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
16868 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
16869 S:      Supported
16870 F:      drivers/staging/wfx/
16871
16872 SILICON MOTION SM712 FRAME BUFFER DRIVER
16873 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16874 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16875 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16876 L:      linux-fbdev@vger.kernel.org
16877 S:      Maintained
16878 F:      Documentation/fb/sm712fb.rst
16879 F:      drivers/video/fbdev/sm712*
16880
16881 SILVACO I3C DUAL-ROLE MASTER
16882 M:      Miquel Raynal <miquel.raynal@bootlin.com>
16883 M:      Conor Culhane <conor.culhane@silvaco.com>
16884 L:      linux-i3c@lists.infradead.org
16885 S:      Maintained
16886 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
16887 F:      drivers/i3c/master/svc-i3c-master.c
16888
16889 SIMPLEFB FB DRIVER
16890 M:      Hans de Goede <hdegoede@redhat.com>
16891 L:      linux-fbdev@vger.kernel.org
16892 S:      Maintained
16893 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
16894 F:      drivers/video/fbdev/simplefb.c
16895 F:      include/linux/platform_data/simplefb.h
16896
16897 SIMTEC EB110ATX (Chalice CATS)
16898 M:      Simtec Linux Team <linux@simtec.co.uk>
16899 S:      Supported
16900 W:      http://www.simtec.co.uk/products/EB110ATX/
16901
16902 SIMTEC EB2410ITX (BAST)
16903 M:      Simtec Linux Team <linux@simtec.co.uk>
16904 S:      Supported
16905 W:      http://www.simtec.co.uk/products/EB2410ITX/
16906 F:      arch/arm/mach-s3c/bast-ide.c
16907 F:      arch/arm/mach-s3c/bast-irq.c
16908 F:      arch/arm/mach-s3c/mach-bast.c
16909
16910 SIOX
16911 M:      Thorsten Scherer <t.scherer@eckelmann.de>
16912 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16913 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
16914 S:      Supported
16915 F:      drivers/gpio/gpio-siox.c
16916 F:      drivers/siox/*
16917 F:      include/trace/events/siox.h
16918
16919 SIPHASH PRF ROUTINES
16920 M:      Jason A. Donenfeld <Jason@zx2c4.com>
16921 S:      Maintained
16922 F:      include/linux/siphash.h
16923 F:      lib/siphash.c
16924 F:      lib/test_siphash.c
16925
16926 SIS 190 ETHERNET DRIVER
16927 M:      Francois Romieu <romieu@fr.zoreil.com>
16928 L:      netdev@vger.kernel.org
16929 S:      Maintained
16930 F:      drivers/net/ethernet/sis/sis190.c
16931
16932 SIS 900/7016 FAST ETHERNET DRIVER
16933 M:      Daniele Venzano <venza@brownhat.org>
16934 L:      netdev@vger.kernel.org
16935 S:      Maintained
16936 W:      http://www.brownhat.org/sis900.html
16937 F:      drivers/net/ethernet/sis/sis900.*
16938
16939 SIS FRAMEBUFFER DRIVER
16940 M:      Thomas Winischhofer <thomas@winischhofer.net>
16941 S:      Maintained
16942 W:      http://www.winischhofer.net/linuxsisvga.shtml
16943 F:      Documentation/fb/sisfb.rst
16944 F:      drivers/video/fbdev/sis/
16945 F:      include/video/sisfb.h
16946
16947 SIS I2C TOUCHSCREEN DRIVER
16948 M:      Mika Penttilä <mika.penttila@nextfour.com>
16949 L:      linux-input@vger.kernel.org
16950 S:      Maintained
16951 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
16952 F:      drivers/input/touchscreen/sis_i2c.c
16953
16954 SIS USB2VGA DRIVER
16955 M:      Thomas Winischhofer <thomas@winischhofer.net>
16956 S:      Maintained
16957 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
16958 F:      drivers/usb/misc/sisusbvga/
16959
16960 SLAB ALLOCATOR
16961 M:      Christoph Lameter <cl@linux.com>
16962 M:      Pekka Enberg <penberg@kernel.org>
16963 M:      David Rientjes <rientjes@google.com>
16964 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
16965 M:      Andrew Morton <akpm@linux-foundation.org>
16966 M:      Vlastimil Babka <vbabka@suse.cz>
16967 L:      linux-mm@kvack.org
16968 S:      Maintained
16969 F:      include/linux/sl?b*.h
16970 F:      mm/sl?b*
16971
16972 SLEEPABLE READ-COPY UPDATE (SRCU)
16973 M:      Lai Jiangshan <jiangshanlai@gmail.com>
16974 M:      "Paul E. McKenney" <paulmck@kernel.org>
16975 M:      Josh Triplett <josh@joshtriplett.org>
16976 R:      Steven Rostedt <rostedt@goodmis.org>
16977 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16978 L:      rcu@vger.kernel.org
16979 S:      Supported
16980 W:      http://www.rdrop.com/users/paulmck/RCU/
16981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16982 F:      include/linux/srcu*.h
16983 F:      kernel/rcu/srcu*.c
16984
16985 SMACK SECURITY MODULE
16986 M:      Casey Schaufler <casey@schaufler-ca.com>
16987 L:      linux-security-module@vger.kernel.org
16988 S:      Maintained
16989 W:      http://schaufler-ca.com
16990 T:      git git://github.com/cschaufler/smack-next
16991 F:      Documentation/admin-guide/LSM/Smack.rst
16992 F:      security/smack/
16993
16994 SMC91x ETHERNET DRIVER
16995 M:      Nicolas Pitre <nico@fluxnic.net>
16996 S:      Odd Fixes
16997 F:      drivers/net/ethernet/smsc/smc91x.*
16998
16999 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
17000 M:      Mark Rutland <mark.rutland@arm.com>
17001 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
17002 M:      Sudeep Holla <sudeep.holla@arm.com>
17003 L:      linux-arm-kernel@lists.infradead.org
17004 S:      Maintained
17005 F:      drivers/firmware/smccc/
17006 F:      include/linux/arm-smccc.h
17007
17008 SMM665 HARDWARE MONITOR DRIVER
17009 M:      Guenter Roeck <linux@roeck-us.net>
17010 L:      linux-hwmon@vger.kernel.org
17011 S:      Maintained
17012 F:      Documentation/hwmon/smm665.rst
17013 F:      drivers/hwmon/smm665.c
17014
17015 SMSC EMC2103 HARDWARE MONITOR DRIVER
17016 M:      Steve Glendinning <steve.glendinning@shawell.net>
17017 L:      linux-hwmon@vger.kernel.org
17018 S:      Maintained
17019 F:      Documentation/hwmon/emc2103.rst
17020 F:      drivers/hwmon/emc2103.c
17021
17022 SMSC SCH5627 HARDWARE MONITOR DRIVER
17023 M:      Hans de Goede <hdegoede@redhat.com>
17024 L:      linux-hwmon@vger.kernel.org
17025 S:      Supported
17026 F:      Documentation/hwmon/sch5627.rst
17027 F:      drivers/hwmon/sch5627.c
17028
17029 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
17030 M:      Steve Glendinning <steve.glendinning@shawell.net>
17031 L:      linux-fbdev@vger.kernel.org
17032 S:      Maintained
17033 F:      drivers/video/fbdev/smscufx.c
17034
17035 SMSC47B397 HARDWARE MONITOR DRIVER
17036 M:      Jean Delvare <jdelvare@suse.com>
17037 L:      linux-hwmon@vger.kernel.org
17038 S:      Maintained
17039 F:      Documentation/hwmon/smsc47b397.rst
17040 F:      drivers/hwmon/smsc47b397.c
17041
17042 SMSC911x ETHERNET DRIVER
17043 M:      Steve Glendinning <steve.glendinning@shawell.net>
17044 L:      netdev@vger.kernel.org
17045 S:      Maintained
17046 F:      drivers/net/ethernet/smsc/smsc911x.*
17047 F:      include/linux/smsc911x.h
17048
17049 SMSC9420 PCI ETHERNET DRIVER
17050 M:      Steve Glendinning <steve.glendinning@shawell.net>
17051 L:      netdev@vger.kernel.org
17052 S:      Maintained
17053 F:      drivers/net/ethernet/smsc/smsc9420.*
17054
17055 SOCIONEXT (SNI) AVE NETWORK DRIVER
17056 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
17057 L:      netdev@vger.kernel.org
17058 S:      Maintained
17059 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
17060 F:      drivers/net/ethernet/socionext/sni_ave.c
17061
17062 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
17063 M:      Jassi Brar <jaswinder.singh@linaro.org>
17064 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
17065 L:      netdev@vger.kernel.org
17066 S:      Maintained
17067 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
17068 F:      drivers/net/ethernet/socionext/netsec.c
17069
17070 SOCIONEXT (SNI) Synquacer SPI DRIVER
17071 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
17072 M:      Jassi Brar <jaswinder.singh@linaro.org>
17073 L:      linux-spi@vger.kernel.org
17074 S:      Maintained
17075 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
17076 F:      drivers/spi/spi-synquacer.c
17077
17078 SOCIONEXT SYNQUACER I2C DRIVER
17079 M:      Ard Biesheuvel <ardb@kernel.org>
17080 L:      linux-i2c@vger.kernel.org
17081 S:      Maintained
17082 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
17083 F:      drivers/i2c/busses/i2c-synquacer.c
17084
17085 SOCIONEXT UNIPHIER SOUND DRIVER
17086 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17087 S:      Orphan
17088 F:      sound/soc/uniphier/
17089
17090 SOEKRIS NET48XX LED SUPPORT
17091 M:      Chris Boot <bootc@bootc.net>
17092 S:      Maintained
17093 F:      drivers/leds/leds-net48xx.c
17094
17095 SOFT-IWARP DRIVER (siw)
17096 M:      Bernard Metzler <bmt@zurich.ibm.com>
17097 L:      linux-rdma@vger.kernel.org
17098 S:      Supported
17099 F:      drivers/infiniband/sw/siw/
17100 F:      include/uapi/rdma/siw-abi.h
17101
17102 SOFT-ROCE DRIVER (rxe)
17103 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
17104 L:      linux-rdma@vger.kernel.org
17105 S:      Supported
17106 F:      drivers/infiniband/sw/rxe/
17107 F:      include/uapi/rdma/rdma_user_rxe.h
17108
17109 SOFTLOGIC 6x10 MPEG CODEC
17110 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17111 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17112 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17113 M:      Ismael Luceno <ismael@iodev.co.uk>
17114 L:      linux-media@vger.kernel.org
17115 S:      Supported
17116 F:      drivers/media/pci/solo6x10/
17117
17118 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
17119 M:      James Morse <james.morse@arm.com>
17120 L:      linux-arm-kernel@lists.infradead.org
17121 S:      Maintained
17122 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
17123 F:      drivers/firmware/arm_sdei.c
17124 F:      include/linux/arm_sdei.h
17125 F:      include/uapi/linux/arm_sdei.h
17126
17127 SOFTWARE NODES
17128 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17129 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17130 L:      linux-acpi@vger.kernel.org
17131 S:      Maintained
17132 F:      drivers/base/swnode.c
17133
17134 SOFTWARE RAID (Multiple Disks) SUPPORT
17135 M:      Song Liu <song@kernel.org>
17136 L:      linux-raid@vger.kernel.org
17137 S:      Supported
17138 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
17139 F:      drivers/md/Kconfig
17140 F:      drivers/md/Makefile
17141 F:      drivers/md/md*
17142 F:      drivers/md/raid*
17143 F:      include/linux/raid/
17144 F:      include/uapi/linux/raid/
17145
17146 SOLIDRUN CLEARFOG SUPPORT
17147 M:      Russell King <linux@armlinux.org.uk>
17148 S:      Maintained
17149 F:      arch/arm/boot/dts/armada-388-clearfog*
17150 F:      arch/arm/boot/dts/armada-38x-solidrun-*
17151
17152 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
17153 M:      Russell King <linux@armlinux.org.uk>
17154 S:      Maintained
17155 F:      arch/arm/boot/dts/imx6*-cubox-i*
17156 F:      arch/arm/boot/dts/imx6*-hummingboard*
17157 F:      arch/arm/boot/dts/imx6*-sr-*
17158
17159 SONIC NETWORK DRIVER
17160 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
17161 L:      netdev@vger.kernel.org
17162 S:      Maintained
17163 F:      drivers/net/ethernet/natsemi/sonic.*
17164
17165 SONICS SILICON BACKPLANE DRIVER (SSB)
17166 M:      Michael Buesch <m@bues.ch>
17167 L:      linux-wireless@vger.kernel.org
17168 S:      Maintained
17169 F:      drivers/ssb/
17170 F:      include/linux/ssb/
17171
17172 SONY IMX208 SENSOR DRIVER
17173 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17174 L:      linux-media@vger.kernel.org
17175 S:      Maintained
17176 T:      git git://linuxtv.org/media_tree.git
17177 F:      drivers/media/i2c/imx208.c
17178
17179 SONY IMX214 SENSOR DRIVER
17180 M:      Ricardo Ribalda <ribalda@kernel.org>
17181 L:      linux-media@vger.kernel.org
17182 S:      Maintained
17183 T:      git git://linuxtv.org/media_tree.git
17184 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
17185 F:      drivers/media/i2c/imx214.c
17186
17187 SONY IMX219 SENSOR DRIVER
17188 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
17189 L:      linux-media@vger.kernel.org
17190 S:      Maintained
17191 T:      git git://linuxtv.org/media_tree.git
17192 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
17193 F:      drivers/media/i2c/imx219.c
17194
17195 SONY IMX258 SENSOR DRIVER
17196 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17197 L:      linux-media@vger.kernel.org
17198 S:      Maintained
17199 T:      git git://linuxtv.org/media_tree.git
17200 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
17201 F:      drivers/media/i2c/imx258.c
17202
17203 SONY IMX274 SENSOR DRIVER
17204 M:      Leon Luo <leonl@leopardimaging.com>
17205 L:      linux-media@vger.kernel.org
17206 S:      Maintained
17207 T:      git git://linuxtv.org/media_tree.git
17208 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
17209 F:      drivers/media/i2c/imx274.c
17210
17211 SONY IMX290 SENSOR DRIVER
17212 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17213 L:      linux-media@vger.kernel.org
17214 S:      Maintained
17215 T:      git git://linuxtv.org/media_tree.git
17216 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
17217 F:      drivers/media/i2c/imx290.c
17218
17219 SONY IMX319 SENSOR DRIVER
17220 M:      Bingbu Cao <bingbu.cao@intel.com>
17221 L:      linux-media@vger.kernel.org
17222 S:      Maintained
17223 T:      git git://linuxtv.org/media_tree.git
17224 F:      drivers/media/i2c/imx319.c
17225
17226 SONY IMX334 SENSOR DRIVER
17227 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17228 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17229 L:      linux-media@vger.kernel.org
17230 S:      Maintained
17231 T:      git git://linuxtv.org/media_tree.git
17232 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
17233 F:      drivers/media/i2c/imx334.c
17234
17235 SONY IMX355 SENSOR DRIVER
17236 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
17237 L:      linux-media@vger.kernel.org
17238 S:      Maintained
17239 T:      git git://linuxtv.org/media_tree.git
17240 F:      drivers/media/i2c/imx355.c
17241
17242 SONY MEMORYSTICK SUBSYSTEM
17243 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17244 M:      Alex Dubov <oakad@yahoo.com>
17245 M:      Ulf Hansson <ulf.hansson@linaro.org>
17246 L:      linux-mmc@vger.kernel.org
17247 S:      Maintained
17248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
17249 F:      drivers/memstick/
17250 F:      include/linux/memstick.h
17251
17252 SONY VAIO CONTROL DEVICE DRIVER
17253 M:      Mattia Dongili <malattia@linux.it>
17254 L:      platform-driver-x86@vger.kernel.org
17255 S:      Maintained
17256 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
17257 F:      Documentation/admin-guide/laptops/sony-laptop.rst
17258 F:      drivers/char/sonypi.c
17259 F:      drivers/platform/x86/sony-laptop.c
17260 F:      include/linux/sony-laptop.h
17261
17262 SOUND
17263 M:      Jaroslav Kysela <perex@perex.cz>
17264 M:      Takashi Iwai <tiwai@suse.com>
17265 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17266 S:      Maintained
17267 W:      http://www.alsa-project.org/
17268 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
17269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17270 F:      Documentation/sound/
17271 F:      include/sound/
17272 F:      include/uapi/sound/
17273 F:      sound/
17274
17275 SOUND - COMPRESSED AUDIO
17276 M:      Vinod Koul <vkoul@kernel.org>
17277 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17278 S:      Supported
17279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17280 F:      Documentation/sound/designs/compress-offload.rst
17281 F:      include/sound/compress_driver.h
17282 F:      include/uapi/sound/compress_*
17283 F:      sound/core/compress_offload.c
17284 F:      sound/soc/soc-compress.c
17285
17286 SOUND - DMAENGINE HELPERS
17287 M:      Lars-Peter Clausen <lars@metafoo.de>
17288 S:      Supported
17289 F:      include/sound/dmaengine_pcm.h
17290 F:      sound/core/pcm_dmaengine.c
17291 F:      sound/soc/soc-generic-dmaengine-pcm.c
17292
17293 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
17294 M:      Liam Girdwood <lgirdwood@gmail.com>
17295 M:      Mark Brown <broonie@kernel.org>
17296 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17297 S:      Supported
17298 W:      http://alsa-project.org/main/index.php/ASoC
17299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
17300 F:      Documentation/devicetree/bindings/sound/
17301 F:      Documentation/sound/soc/
17302 F:      include/dt-bindings/sound/
17303 F:      include/sound/soc*
17304 F:      sound/soc/
17305
17306 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
17307 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17308 M:      Liam Girdwood <lgirdwood@gmail.com>
17309 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
17310 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
17311 M:      Daniel Baluta <daniel.baluta@nxp.com>
17312 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
17313 S:      Supported
17314 W:      https://github.com/thesofproject/linux/
17315 F:      sound/soc/sof/
17316
17317 SOUNDWIRE SUBSYSTEM
17318 M:      Vinod Koul <vkoul@kernel.org>
17319 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
17320 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17321 R:      Sanyog Kale <sanyog.r.kale@intel.com>
17322 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17323 S:      Supported
17324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
17325 F:      Documentation/driver-api/soundwire/
17326 F:      drivers/soundwire/
17327 F:      include/linux/soundwire/
17328
17329 SP2 MEDIA DRIVER
17330 M:      Olli Salonen <olli.salonen@iki.fi>
17331 L:      linux-media@vger.kernel.org
17332 S:      Maintained
17333 W:      https://linuxtv.org
17334 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17335 F:      drivers/media/dvb-frontends/sp2*
17336
17337 SPARC + UltraSPARC (sparc/sparc64)
17338 M:      "David S. Miller" <davem@davemloft.net>
17339 L:      sparclinux@vger.kernel.org
17340 S:      Maintained
17341 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
17342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17344 F:      arch/sparc/
17345 F:      drivers/sbus/
17346
17347 SPARC SERIAL DRIVERS
17348 M:      "David S. Miller" <davem@davemloft.net>
17349 L:      sparclinux@vger.kernel.org
17350 S:      Maintained
17351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17353 F:      drivers/tty/serial/suncore.c
17354 F:      drivers/tty/serial/sunhv.c
17355 F:      drivers/tty/serial/sunsab.c
17356 F:      drivers/tty/serial/sunsab.h
17357 F:      drivers/tty/serial/sunsu.c
17358 F:      drivers/tty/serial/sunzilog.c
17359 F:      drivers/tty/serial/sunzilog.h
17360 F:      drivers/tty/vcc.c
17361 F:      include/linux/sunserialcore.h
17362
17363 SPARSE CHECKER
17364 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
17365 L:      linux-sparse@vger.kernel.org
17366 S:      Maintained
17367 W:      https://sparse.docs.kernel.org/
17368 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
17369 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
17370 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
17371 F:      include/linux/compiler.h
17372
17373 SPEAKUP CONSOLE SPEECH DRIVER
17374 M:      William Hubbs <w.d.hubbs@gmail.com>
17375 M:      Chris Brannon <chris@the-brannons.com>
17376 M:      Kirk Reiser <kirk@reisers.ca>
17377 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
17378 L:      speakup@linux-speakup.org
17379 S:      Odd Fixes
17380 W:      http://www.linux-speakup.org/
17381 W:      https://github.com/linux-speakup/speakup
17382 B:      https://github.com/linux-speakup/speakup/issues
17383 F:      drivers/accessibility/speakup/
17384
17385 SPEAR CLOCK FRAMEWORK SUPPORT
17386 M:      Viresh Kumar <vireshk@kernel.org>
17387 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17388 S:      Maintained
17389 W:      http://www.st.com/spear
17390 F:      drivers/clk/spear/
17391
17392 SPEAR PLATFORM SUPPORT
17393 M:      Viresh Kumar <vireshk@kernel.org>
17394 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
17395 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17396 S:      Maintained
17397 W:      http://www.st.com/spear
17398 F:      arch/arm/boot/dts/spear*
17399 F:      arch/arm/mach-spear/
17400
17401 SPI NOR SUBSYSTEM
17402 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
17403 R:      Michael Walle <michael@walle.cc>
17404 R:      Pratyush Yadav <p.yadav@ti.com>
17405 L:      linux-mtd@lists.infradead.org
17406 S:      Maintained
17407 W:      http://www.linux-mtd.infradead.org/
17408 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
17409 C:      irc://irc.oftc.net/mtd
17410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
17411 F:      drivers/mtd/spi-nor/
17412 F:      include/linux/mtd/spi-nor.h
17413
17414 SPI SUBSYSTEM
17415 M:      Mark Brown <broonie@kernel.org>
17416 L:      linux-spi@vger.kernel.org
17417 S:      Maintained
17418 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
17419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
17420 F:      Documentation/devicetree/bindings/spi/
17421 F:      Documentation/spi/
17422 F:      drivers/spi/
17423 F:      include/linux/spi/
17424 F:      include/uapi/linux/spi/
17425 F:      tools/spi/
17426
17427 SPIDERNET NETWORK DRIVER for CELL
17428 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
17429 M:      Geoff Levand <geoff@infradead.org>
17430 L:      netdev@vger.kernel.org
17431 L:      linuxppc-dev@lists.ozlabs.org
17432 S:      Maintained
17433 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
17434 F:      drivers/net/ethernet/toshiba/spider_net*
17435
17436 SPMI SUBSYSTEM
17437 M:      Stephen Boyd <sboyd@kernel.org>
17438 L:      linux-kernel@vger.kernel.org
17439 S:      Maintained
17440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
17441 F:      Documentation/devicetree/bindings/spmi/
17442 F:      drivers/spmi/
17443 F:      include/dt-bindings/spmi/spmi.h
17444 F:      include/linux/spmi.h
17445 F:      include/trace/events/spmi.h
17446
17447 SPU FILE SYSTEM
17448 M:      Jeremy Kerr <jk@ozlabs.org>
17449 L:      linuxppc-dev@lists.ozlabs.org
17450 S:      Supported
17451 W:      http://www.ibm.com/developerworks/power/cell/
17452 F:      Documentation/filesystems/spufs/spufs.rst
17453 F:      arch/powerpc/platforms/cell/spufs/
17454
17455 SQUASHFS FILE SYSTEM
17456 M:      Phillip Lougher <phillip@squashfs.org.uk>
17457 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
17458 S:      Maintained
17459 W:      http://squashfs.org.uk
17460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
17461 F:      Documentation/filesystems/squashfs.rst
17462 F:      fs/squashfs/
17463
17464 SRM (Alpha) environment access
17465 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
17466 S:      Maintained
17467 F:      arch/alpha/kernel/srm_env.c
17468
17469 ST LSM6DSx IMU IIO DRIVER
17470 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
17471 L:      linux-iio@vger.kernel.org
17472 S:      Maintained
17473 W:      http://www.st.com/
17474 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
17475 F:      drivers/iio/imu/st_lsm6dsx/
17476
17477 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
17478 M:      Mickael Guene <mickael.guene@st.com>
17479 L:      linux-media@vger.kernel.org
17480 S:      Maintained
17481 T:      git git://linuxtv.org/media_tree.git
17482 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
17483 F:      drivers/media/i2c/st-mipid02.c
17484
17485 ST STM32 I2C/SMBUS DRIVER
17486 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
17487 M:      Alain Volmat <alain.volmat@foss.st.com>
17488 L:      linux-i2c@vger.kernel.org
17489 S:      Maintained
17490 F:      drivers/i2c/busses/i2c-stm32*
17491
17492 ST STM32 SPI DRIVER
17493 M:      Alain Volmat <alain.volmat@foss.st.com>
17494 L:      linux-spi@vger.kernel.org
17495 S:      Maintained
17496 F:      drivers/spi/spi-stm32.c
17497
17498 ST STPDDC60 DRIVER
17499 M:      Daniel Nilsson <daniel.nilsson@flex.com>
17500 L:      linux-hwmon@vger.kernel.org
17501 S:      Maintained
17502 F:      Documentation/hwmon/stpddc60.rst
17503 F:      drivers/hwmon/pmbus/stpddc60.c
17504
17505 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
17506 M:      Song Qiang <songqiang1304521@gmail.com>
17507 L:      linux-iio@vger.kernel.org
17508 S:      Maintained
17509 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
17510 F:      drivers/iio/proximity/vl53l0x-i2c.c
17511
17512 STABLE BRANCH
17513 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17514 M:      Sasha Levin <sashal@kernel.org>
17515 L:      stable@vger.kernel.org
17516 S:      Supported
17517 F:      Documentation/process/stable-kernel-rules.rst
17518
17519 STAGING - ATOMISP DRIVER
17520 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17521 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
17522 L:      linux-media@vger.kernel.org
17523 S:      Maintained
17524 F:      drivers/staging/media/atomisp/
17525
17526 STAGING - FIELDBUS SUBSYSTEM
17527 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17528 S:      Maintained
17529 F:      drivers/staging/fieldbus/*
17530 F:      drivers/staging/fieldbus/Documentation/
17531
17532 STAGING - HMS ANYBUS-S BUS
17533 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17534 S:      Maintained
17535 F:      drivers/staging/fieldbus/anybuss/
17536
17537 STAGING - INDUSTRIAL IO
17538 M:      Jonathan Cameron <jic23@kernel.org>
17539 L:      linux-iio@vger.kernel.org
17540 S:      Odd Fixes
17541 F:      Documentation/devicetree/bindings/staging/iio/
17542 F:      drivers/staging/iio/
17543
17544 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
17545 M:      Marc Dietrich <marvin24@gmx.de>
17546 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
17547 L:      linux-tegra@vger.kernel.org
17548 S:      Maintained
17549 F:      drivers/staging/nvec/
17550
17551 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
17552 M:      Jens Frederich <jfrederich@gmail.com>
17553 M:      Daniel Drake <dsd@laptop.org>
17554 M:      Jon Nettleton <jon.nettleton@gmail.com>
17555 S:      Maintained
17556 W:      http://wiki.laptop.org/go/DCON
17557 F:      drivers/staging/olpc_dcon/
17558
17559 STAGING - REALTEK RTL8188EU DRIVERS
17560 M:      Larry Finger <Larry.Finger@lwfinger.net>
17561 S:      Odd Fixes
17562 F:      drivers/staging/rtl8188eu/
17563
17564 STAGING - REALTEK RTL8712U DRIVERS
17565 M:      Larry Finger <Larry.Finger@lwfinger.net>
17566 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
17567 S:      Odd Fixes
17568 F:      drivers/staging/rtl8712/
17569
17570 STAGING - SEPS525 LCD CONTROLLER DRIVERS
17571 M:      Michael Hennerich <michael.hennerich@analog.com>
17572 L:      linux-fbdev@vger.kernel.org
17573 S:      Supported
17574 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
17575 F:      drivers/staging/fbtft/fb_seps525.c
17576
17577 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
17578 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17579 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17580 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17581 L:      linux-fbdev@vger.kernel.org
17582 S:      Maintained
17583 F:      drivers/staging/sm750fb/
17584
17585 STAGING - VIA VT665X DRIVERS
17586 M:      Forest Bond <forest@alittletooquiet.net>
17587 S:      Odd Fixes
17588 F:      drivers/staging/vt665?/
17589
17590 STAGING SUBSYSTEM
17591 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17592 L:      linux-staging@lists.linux.dev
17593 S:      Supported
17594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
17595 F:      drivers/staging/
17596
17597 STARFIRE/DURALAN NETWORK DRIVER
17598 M:      Ion Badulescu <ionut@badula.org>
17599 S:      Odd Fixes
17600 F:      drivers/net/ethernet/adaptec/starfire*
17601
17602 STATIC BRANCH/CALL
17603 M:      Peter Zijlstra <peterz@infradead.org>
17604 M:      Josh Poimboeuf <jpoimboe@redhat.com>
17605 M:      Jason Baron <jbaron@akamai.com>
17606 R:      Steven Rostedt <rostedt@goodmis.org>
17607 R:      Ard Biesheuvel <ardb@kernel.org>
17608 S:      Supported
17609 F:      arch/*/include/asm/jump_label*.h
17610 F:      arch/*/include/asm/static_call*.h
17611 F:      arch/*/kernel/jump_label.c
17612 F:      arch/*/kernel/static_call.c
17613 F:      include/linux/jump_label*.h
17614 F:      include/linux/static_call*.h
17615 F:      kernel/jump_label.c
17616 F:      kernel/static_call.c
17617
17618 STI AUDIO (ASoC) DRIVERS
17619 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17620 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17621 S:      Maintained
17622 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
17623 F:      sound/soc/sti/
17624
17625 STI CEC DRIVER
17626 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
17627 S:      Maintained
17628 F:      Documentation/devicetree/bindings/media/stih-cec.txt
17629 F:      drivers/media/cec/platform/sti/
17630
17631 STK1160 USB VIDEO CAPTURE DRIVER
17632 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17633 L:      linux-media@vger.kernel.org
17634 S:      Maintained
17635 T:      git git://linuxtv.org/media_tree.git
17636 F:      drivers/media/usb/stk1160/
17637
17638 STM32 AUDIO (ASoC) DRIVERS
17639 M:      Olivier Moysan <olivier.moysan@foss.st.com>
17640 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17641 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17642 S:      Maintained
17643 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-*.yaml
17644 F:      sound/soc/stm/
17645
17646 STM32 TIMER/LPTIMER DRIVERS
17647 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
17648 S:      Maintained
17649 F:      Documentation/ABI/testing/*timer-stm32
17650 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
17651 F:      drivers/*/stm32-*timer*
17652 F:      drivers/pwm/pwm-stm32*
17653 F:      include/linux/*/stm32-*tim*
17654
17655 STMMAC ETHERNET DRIVER
17656 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
17657 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
17658 M:      Jose Abreu <joabreu@synopsys.com>
17659 L:      netdev@vger.kernel.org
17660 S:      Supported
17661 W:      http://www.stlinux.com
17662 F:      Documentation/networking/device_drivers/ethernet/stmicro/
17663 F:      drivers/net/ethernet/stmicro/stmmac/
17664
17665 SUN3/3X
17666 M:      Sam Creasey <sammy@sammy.net>
17667 S:      Maintained
17668 W:      http://sammy.net/sun3/
17669 F:      arch/m68k/include/asm/sun3*
17670 F:      arch/m68k/kernel/*sun3*
17671 F:      arch/m68k/sun3*/
17672 F:      drivers/net/ethernet/i825xx/sun3*
17673
17674 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
17675 M:      Hans de Goede <hdegoede@redhat.com>
17676 L:      linux-input@vger.kernel.org
17677 S:      Maintained
17678 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
17679 F:      drivers/input/keyboard/sun4i-lradc-keys.c
17680
17681 SUNDANCE NETWORK DRIVER
17682 M:      Denis Kirjanov <kda@linux-powerpc.org>
17683 L:      netdev@vger.kernel.org
17684 S:      Maintained
17685 F:      drivers/net/ethernet/dlink/sundance.c
17686
17687 SUPERH
17688 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
17689 M:      Rich Felker <dalias@libc.org>
17690 L:      linux-sh@vger.kernel.org
17691 S:      Maintained
17692 Q:      http://patchwork.kernel.org/project/linux-sh/list/
17693 F:      Documentation/sh/
17694 F:      arch/sh/
17695 F:      drivers/sh/
17696
17697 SUSPEND TO RAM
17698 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
17699 M:      Len Brown <len.brown@intel.com>
17700 M:      Pavel Machek <pavel@ucw.cz>
17701 L:      linux-pm@vger.kernel.org
17702 S:      Supported
17703 B:      https://bugzilla.kernel.org
17704 F:      Documentation/power/
17705 F:      arch/x86/kernel/acpi/
17706 F:      drivers/base/power/
17707 F:      include/linux/freezer.h
17708 F:      include/linux/pm.h
17709 F:      include/linux/suspend.h
17710 F:      kernel/power/
17711
17712 SVGA HANDLING
17713 M:      Martin Mares <mj@ucw.cz>
17714 L:      linux-video@atrey.karlin.mff.cuni.cz
17715 S:      Maintained
17716 F:      Documentation/admin-guide/svga.rst
17717 F:      arch/x86/boot/video*
17718
17719 SWIOTLB SUBSYSTEM
17720 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17721 L:      iommu@lists.linux-foundation.org
17722 S:      Supported
17723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
17724 F:      arch/*/kernel/pci-swiotlb.c
17725 F:      include/linux/swiotlb.h
17726 F:      kernel/dma/swiotlb.c
17727
17728 SWITCHDEV
17729 M:      Jiri Pirko <jiri@resnulli.us>
17730 M:      Ivan Vecera <ivecera@redhat.com>
17731 L:      netdev@vger.kernel.org
17732 S:      Supported
17733 F:      include/net/switchdev.h
17734 F:      net/switchdev/
17735
17736 SY8106A REGULATOR DRIVER
17737 M:      Icenowy Zheng <icenowy@aosc.io>
17738 S:      Maintained
17739 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
17740 F:      drivers/regulator/sy8106a-regulator.c
17741
17742 SYNC FILE FRAMEWORK
17743 M:      Sumit Semwal <sumit.semwal@linaro.org>
17744 R:      Gustavo Padovan <gustavo@padovan.org>
17745 L:      linux-media@vger.kernel.org
17746 L:      dri-devel@lists.freedesktop.org
17747 S:      Maintained
17748 T:      git git://anongit.freedesktop.org/drm/drm-misc
17749 F:      Documentation/driver-api/sync_file.rst
17750 F:      drivers/dma-buf/dma-fence*
17751 F:      drivers/dma-buf/sw_sync.c
17752 F:      drivers/dma-buf/sync_*
17753 F:      include/linux/sync_file.h
17754 F:      include/uapi/linux/sync_file.h
17755
17756 SYNOPSYS ARC ARCHITECTURE
17757 M:      Vineet Gupta <vgupta@synopsys.com>
17758 L:      linux-snps-arc@lists.infradead.org
17759 S:      Supported
17760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
17761 F:      Documentation/devicetree/bindings/arc/*
17762 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
17763 F:      arch/arc/
17764 F:      drivers/clocksource/arc_timer.c
17765 F:      drivers/tty/serial/arc_uart.c
17766
17767 SYNOPSYS ARC HSDK SDP pll clock driver
17768 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17769 S:      Supported
17770 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
17771 F:      drivers/clk/clk-hsdk-pll.c
17772
17773 SYNOPSYS ARC SDP clock driver
17774 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17775 S:      Supported
17776 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
17777 F:      drivers/clk/axs10x/*
17778
17779 SYNOPSYS ARC SDP platform support
17780 M:      Alexey Brodkin <abrodkin@synopsys.com>
17781 S:      Supported
17782 F:      Documentation/devicetree/bindings/arc/axs10*
17783 F:      arch/arc/boot/dts/ax*
17784 F:      arch/arc/plat-axs10x
17785
17786 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
17787 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17788 S:      Supported
17789 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
17790 F:      drivers/reset/reset-axs10x.c
17791
17792 SYNOPSYS CREG GPIO DRIVER
17793 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17794 S:      Maintained
17795 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
17796 F:      drivers/gpio/gpio-creg-snps.c
17797
17798 SYNOPSYS DESIGNWARE 8250 UART DRIVER
17799 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17800 S:      Maintained
17801 F:      drivers/tty/serial/8250/8250_dw.c
17802 F:      drivers/tty/serial/8250/8250_dwlib.*
17803 F:      drivers/tty/serial/8250/8250_lpss.c
17804
17805 SYNOPSYS DESIGNWARE APB GPIO DRIVER
17806 M:      Hoan Tran <hoan@os.amperecomputing.com>
17807 M:      Serge Semin <fancer.lancer@gmail.com>
17808 L:      linux-gpio@vger.kernel.org
17809 S:      Maintained
17810 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
17811 F:      drivers/gpio/gpio-dwapb.c
17812
17813 SYNOPSYS DESIGNWARE APB SSI DRIVER
17814 M:      Serge Semin <fancer.lancer@gmail.com>
17815 L:      linux-spi@vger.kernel.org
17816 S:      Supported
17817 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
17818 F:      drivers/spi/spi-dw*
17819
17820 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
17821 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17822 S:      Maintained
17823 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
17824 F:      drivers/dma/dw-axi-dmac/
17825
17826 SYNOPSYS DESIGNWARE DMAC DRIVER
17827 M:      Viresh Kumar <vireshk@kernel.org>
17828 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17829 S:      Maintained
17830 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
17831 F:      drivers/dma/dw/
17832 F:      include/dt-bindings/dma/dw-dmac.h
17833 F:      include/linux/dma/dw.h
17834 F:      include/linux/platform_data/dma-dw.h
17835
17836 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
17837 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17838 L:      netdev@vger.kernel.org
17839 S:      Supported
17840 F:      drivers/net/ethernet/synopsys/
17841
17842 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
17843 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17844 L:      netdev@vger.kernel.org
17845 S:      Supported
17846 F:      drivers/net/pcs/pcs-xpcs.c
17847 F:      drivers/net/pcs/pcs-xpcs.h
17848 F:      include/linux/pcs/pcs-xpcs.h
17849
17850 SYNOPSYS DESIGNWARE I2C DRIVER
17851 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
17852 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17853 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
17854 L:      linux-i2c@vger.kernel.org
17855 S:      Maintained
17856 F:      drivers/i2c/busses/i2c-designware-*
17857
17858 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
17859 M:      Jaehoon Chung <jh80.chung@samsung.com>
17860 L:      linux-mmc@vger.kernel.org
17861 S:      Maintained
17862 F:      drivers/mmc/host/dw_mmc*
17863
17864 SYNOPSYS HSDK RESET CONTROLLER DRIVER
17865 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17866 S:      Supported
17867 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
17868 F:      drivers/reset/reset-hsdk.c
17869 F:      include/dt-bindings/reset/snps,hsdk-reset.h
17870
17871 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
17872 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
17873 M:      Manjunath M B <manjumb@synopsys.com>
17874 L:      linux-mmc@vger.kernel.org
17875 S:      Maintained
17876 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
17877
17878 SYSTEM CONFIGURATION (SYSCON)
17879 M:      Lee Jones <lee.jones@linaro.org>
17880 M:      Arnd Bergmann <arnd@arndb.de>
17881 S:      Supported
17882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
17883 F:      drivers/mfd/syscon.c
17884
17885 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
17886 M:      Sudeep Holla <sudeep.holla@arm.com>
17887 R:      Cristian Marussi <cristian.marussi@arm.com>
17888 L:      linux-arm-kernel@lists.infradead.org
17889 S:      Maintained
17890 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
17891 F:      drivers/clk/clk-sc[mp]i.c
17892 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
17893 F:      drivers/firmware/arm_scmi/
17894 F:      drivers/firmware/arm_scpi.c
17895 F:      drivers/regulator/scmi-regulator.c
17896 F:      drivers/reset/reset-scmi.c
17897 F:      include/linux/sc[mp]i_protocol.h
17898 F:      include/trace/events/scmi.h
17899
17900 SYSTEM RESET/SHUTDOWN DRIVERS
17901 M:      Sebastian Reichel <sre@kernel.org>
17902 L:      linux-pm@vger.kernel.org
17903 S:      Maintained
17904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
17905 F:      Documentation/devicetree/bindings/power/reset/
17906 F:      drivers/power/reset/
17907
17908 SYSTEM TRACE MODULE CLASS
17909 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
17910 S:      Maintained
17911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
17912 F:      Documentation/trace/stm.rst
17913 F:      drivers/hwtracing/stm/
17914 F:      include/linux/stm.h
17915 F:      include/uapi/linux/stm.h
17916
17917 SYSTEM76 ACPI DRIVER
17918 M:      Jeremy Soller <jeremy@system76.com>
17919 M:      System76 Product Development <productdev@system76.com>
17920 L:      platform-driver-x86@vger.kernel.org
17921 S:      Maintained
17922 F:      drivers/platform/x86/system76_acpi.c
17923
17924 SYSV FILESYSTEM
17925 M:      Christoph Hellwig <hch@infradead.org>
17926 S:      Maintained
17927 F:      Documentation/filesystems/sysv-fs.rst
17928 F:      fs/sysv/
17929 F:      include/linux/sysv_fs.h
17930
17931 TASKSTATS STATISTICS INTERFACE
17932 M:      Balbir Singh <bsingharora@gmail.com>
17933 S:      Maintained
17934 F:      Documentation/accounting/taskstats*
17935 F:      include/linux/taskstats*
17936 F:      kernel/taskstats.c
17937
17938 TC subsystem
17939 M:      Jamal Hadi Salim <jhs@mojatatu.com>
17940 M:      Cong Wang <xiyou.wangcong@gmail.com>
17941 M:      Jiri Pirko <jiri@resnulli.us>
17942 L:      netdev@vger.kernel.org
17943 S:      Maintained
17944 F:      include/net/pkt_cls.h
17945 F:      include/net/pkt_sched.h
17946 F:      include/net/tc_act/
17947 F:      include/uapi/linux/pkt_cls.h
17948 F:      include/uapi/linux/pkt_sched.h
17949 F:      include/uapi/linux/tc_act/
17950 F:      include/uapi/linux/tc_ematch/
17951 F:      net/sched/
17952
17953 TC90522 MEDIA DRIVER
17954 M:      Akihiro Tsukada <tskd08@gmail.com>
17955 L:      linux-media@vger.kernel.org
17956 S:      Odd Fixes
17957 F:      drivers/media/dvb-frontends/tc90522*
17958
17959 TCP LOW PRIORITY MODULE
17960 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
17961 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
17962 S:      Maintained
17963 W:      http://tcp-lp-mod.sourceforge.net/
17964 F:      net/ipv4/tcp_lp.c
17965
17966 TDA10071 MEDIA DRIVER
17967 M:      Antti Palosaari <crope@iki.fi>
17968 L:      linux-media@vger.kernel.org
17969 S:      Maintained
17970 W:      https://linuxtv.org
17971 W:      http://palosaari.fi/linux/
17972 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17973 T:      git git://linuxtv.org/anttip/media_tree.git
17974 F:      drivers/media/dvb-frontends/tda10071*
17975
17976 TDA18212 MEDIA DRIVER
17977 M:      Antti Palosaari <crope@iki.fi>
17978 L:      linux-media@vger.kernel.org
17979 S:      Maintained
17980 W:      https://linuxtv.org
17981 W:      http://palosaari.fi/linux/
17982 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17983 T:      git git://linuxtv.org/anttip/media_tree.git
17984 F:      drivers/media/tuners/tda18212*
17985
17986 TDA18218 MEDIA DRIVER
17987 M:      Antti Palosaari <crope@iki.fi>
17988 L:      linux-media@vger.kernel.org
17989 S:      Maintained
17990 W:      https://linuxtv.org
17991 W:      http://palosaari.fi/linux/
17992 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17993 T:      git git://linuxtv.org/anttip/media_tree.git
17994 F:      drivers/media/tuners/tda18218*
17995
17996 TDA18250 MEDIA DRIVER
17997 M:      Olli Salonen <olli.salonen@iki.fi>
17998 L:      linux-media@vger.kernel.org
17999 S:      Maintained
18000 W:      https://linuxtv.org
18001 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18002 T:      git git://linuxtv.org/media_tree.git
18003 F:      drivers/media/tuners/tda18250*
18004
18005 TDA18271 MEDIA DRIVER
18006 M:      Michael Krufky <mkrufky@linuxtv.org>
18007 L:      linux-media@vger.kernel.org
18008 S:      Maintained
18009 W:      https://linuxtv.org
18010 W:      http://github.com/mkrufky
18011 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18012 T:      git git://linuxtv.org/mkrufky/tuners.git
18013 F:      drivers/media/tuners/tda18271*
18014
18015 TDA1997x MEDIA DRIVER
18016 M:      Tim Harvey <tharvey@gateworks.com>
18017 L:      linux-media@vger.kernel.org
18018 S:      Maintained
18019 W:      https://linuxtv.org
18020 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18021 F:      drivers/media/i2c/tda1997x.*
18022
18023 TDA827x MEDIA DRIVER
18024 M:      Michael Krufky <mkrufky@linuxtv.org>
18025 L:      linux-media@vger.kernel.org
18026 S:      Maintained
18027 W:      https://linuxtv.org
18028 W:      http://github.com/mkrufky
18029 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18030 T:      git git://linuxtv.org/mkrufky/tuners.git
18031 F:      drivers/media/tuners/tda8290.*
18032
18033 TDA8290 MEDIA DRIVER
18034 M:      Michael Krufky <mkrufky@linuxtv.org>
18035 L:      linux-media@vger.kernel.org
18036 S:      Maintained
18037 W:      https://linuxtv.org
18038 W:      http://github.com/mkrufky
18039 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18040 T:      git git://linuxtv.org/mkrufky/tuners.git
18041 F:      drivers/media/tuners/tda8290.*
18042
18043 TDA9840 MEDIA DRIVER
18044 M:      Hans Verkuil <hverkuil@xs4all.nl>
18045 L:      linux-media@vger.kernel.org
18046 S:      Maintained
18047 W:      https://linuxtv.org
18048 T:      git git://linuxtv.org/media_tree.git
18049 F:      drivers/media/i2c/tda9840*
18050
18051 TEA5761 TUNER DRIVER
18052 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18053 L:      linux-media@vger.kernel.org
18054 S:      Odd fixes
18055 W:      https://linuxtv.org
18056 T:      git git://linuxtv.org/media_tree.git
18057 F:      drivers/media/tuners/tea5761.*
18058
18059 TEA5767 TUNER DRIVER
18060 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18061 L:      linux-media@vger.kernel.org
18062 S:      Maintained
18063 W:      https://linuxtv.org
18064 T:      git git://linuxtv.org/media_tree.git
18065 F:      drivers/media/tuners/tea5767.*
18066
18067 TEA6415C MEDIA DRIVER
18068 M:      Hans Verkuil <hverkuil@xs4all.nl>
18069 L:      linux-media@vger.kernel.org
18070 S:      Maintained
18071 W:      https://linuxtv.org
18072 T:      git git://linuxtv.org/media_tree.git
18073 F:      drivers/media/i2c/tea6415c*
18074
18075 TEA6420 MEDIA DRIVER
18076 M:      Hans Verkuil <hverkuil@xs4all.nl>
18077 L:      linux-media@vger.kernel.org
18078 S:      Maintained
18079 W:      https://linuxtv.org
18080 T:      git git://linuxtv.org/media_tree.git
18081 F:      drivers/media/i2c/tea6420*
18082
18083 TEAM DRIVER
18084 M:      Jiri Pirko <jiri@resnulli.us>
18085 L:      netdev@vger.kernel.org
18086 S:      Supported
18087 F:      drivers/net/team/
18088 F:      include/linux/if_team.h
18089 F:      include/uapi/linux/if_team.h
18090
18091 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
18092 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
18093 S:      Maintained
18094 F:      arch/x86/platform/ts5500/
18095
18096 TECHNOTREND USB IR RECEIVER
18097 M:      Sean Young <sean@mess.org>
18098 L:      linux-media@vger.kernel.org
18099 S:      Maintained
18100 F:      drivers/media/rc/ttusbir.c
18101
18102 TECHWELL TW9910 VIDEO DECODER
18103 L:      linux-media@vger.kernel.org
18104 S:      Orphan
18105 F:      drivers/media/i2c/tw9910.c
18106 F:      include/media/i2c/tw9910.h
18107
18108 TEE SUBSYSTEM
18109 M:      Jens Wiklander <jens.wiklander@linaro.org>
18110 L:      op-tee@lists.trustedfirmware.org
18111 S:      Maintained
18112 F:      Documentation/staging/tee.rst
18113 F:      drivers/tee/
18114 F:      include/linux/tee_drv.h
18115 F:      include/uapi/linux/tee.h
18116
18117 TEGRA ARCHITECTURE SUPPORT
18118 M:      Thierry Reding <thierry.reding@gmail.com>
18119 M:      Jonathan Hunter <jonathanh@nvidia.com>
18120 L:      linux-tegra@vger.kernel.org
18121 S:      Supported
18122 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
18123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
18124 N:      [^a-z]tegra
18125
18126 TEGRA CLOCK DRIVER
18127 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
18128 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
18129 S:      Supported
18130 F:      drivers/clk/tegra/
18131
18132 TEGRA DMA DRIVERS
18133 M:      Laxman Dewangan <ldewangan@nvidia.com>
18134 M:      Jon Hunter <jonathanh@nvidia.com>
18135 S:      Supported
18136 F:      drivers/dma/tegra*
18137
18138 TEGRA I2C DRIVER
18139 M:      Laxman Dewangan <ldewangan@nvidia.com>
18140 R:      Dmitry Osipenko <digetx@gmail.com>
18141 S:      Supported
18142 F:      drivers/i2c/busses/i2c-tegra.c
18143
18144 TEGRA IOMMU DRIVERS
18145 M:      Thierry Reding <thierry.reding@gmail.com>
18146 R:      Krishna Reddy <vdumpa@nvidia.com>
18147 L:      linux-tegra@vger.kernel.org
18148 S:      Supported
18149 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
18150 F:      drivers/iommu/tegra*
18151
18152 TEGRA KBC DRIVER
18153 M:      Laxman Dewangan <ldewangan@nvidia.com>
18154 S:      Supported
18155 F:      drivers/input/keyboard/tegra-kbc.c
18156
18157 TEGRA NAND DRIVER
18158 M:      Stefan Agner <stefan@agner.ch>
18159 M:      Lucas Stach <dev@lynxeye.de>
18160 S:      Maintained
18161 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
18162 F:      drivers/mtd/nand/raw/tegra_nand.c
18163
18164 TEGRA PWM DRIVER
18165 M:      Thierry Reding <thierry.reding@gmail.com>
18166 S:      Supported
18167 F:      drivers/pwm/pwm-tegra.c
18168
18169 TEGRA SERIAL DRIVER
18170 M:      Laxman Dewangan <ldewangan@nvidia.com>
18171 S:      Supported
18172 F:      drivers/tty/serial/serial-tegra.c
18173
18174 TEGRA SPI DRIVER
18175 M:      Laxman Dewangan <ldewangan@nvidia.com>
18176 S:      Supported
18177 F:      drivers/spi/spi-tegra*
18178
18179 TEGRA QUAD SPI DRIVER
18180 M:      Thierry Reding <thierry.reding@gmail.com>
18181 M:      Jonathan Hunter <jonathanh@nvidia.com>
18182 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18183 L:      linux-tegra@vger.kernel.org
18184 S:      Maintained
18185 F:      drivers/spi/spi-tegra210-quad.c
18186
18187 TEGRA VIDEO DRIVER
18188 M:      Thierry Reding <thierry.reding@gmail.com>
18189 M:      Jonathan Hunter <jonathanh@nvidia.com>
18190 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18191 L:      linux-media@vger.kernel.org
18192 L:      linux-tegra@vger.kernel.org
18193 S:      Maintained
18194 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
18195 F:      drivers/staging/media/tegra-video/
18196
18197 TEGRA XUSB PADCTL DRIVER
18198 M:      JC Kuo <jckuo@nvidia.com>
18199 S:      Supported
18200 F:      drivers/phy/tegra/xusb*
18201
18202 TEHUTI ETHERNET DRIVER
18203 M:      Andy Gospodarek <andy@greyhouse.net>
18204 L:      netdev@vger.kernel.org
18205 S:      Supported
18206 F:      drivers/net/ethernet/tehuti/*
18207
18208 TELECOM CLOCK DRIVER FOR MCPL0010
18209 M:      Mark Gross <mark.gross@intel.com>
18210 S:      Supported
18211 F:      drivers/char/tlclk.c
18212
18213 TEMPO SEMICONDUCTOR DRIVERS
18214 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
18215 S:      Maintained
18216 F:      Documentation/devicetree/bindings/sound/tscs*.txt
18217 F:      sound/soc/codecs/tscs*.c
18218 F:      sound/soc/codecs/tscs*.h
18219
18220 TENSILICA XTENSA PORT (xtensa)
18221 M:      Chris Zankel <chris@zankel.net>
18222 M:      Max Filippov <jcmvbkbc@gmail.com>
18223 L:      linux-xtensa@linux-xtensa.org
18224 S:      Maintained
18225 T:      git git://github.com/czankel/xtensa-linux.git
18226 F:      arch/xtensa/
18227 F:      drivers/irqchip/irq-xtensa-*
18228
18229 TEXAS INSTRUMENTS ASoC DRIVERS
18230 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18231 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18232 S:      Maintained
18233 F:      sound/soc/ti/
18234
18235 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
18236 M:      Ricardo Ribalda <ribalda@kernel.org>
18237 L:      linux-iio@vger.kernel.org
18238 S:      Supported
18239 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
18240 F:      drivers/iio/dac/ti-dac7612.c
18241
18242 TEXAS INSTRUMENTS DMA DRIVERS
18243 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18244 L:      dmaengine@vger.kernel.org
18245 S:      Maintained
18246 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
18247 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
18248 F:      Documentation/devicetree/bindings/dma/ti/
18249 F:      drivers/dma/ti/
18250 X:      drivers/dma/ti/cppi41.c
18251 F:      include/linux/dma/k3-udma-glue.h
18252 F:      include/linux/dma/ti-cppi5.h
18253 F:      include/linux/dma/k3-psil.h
18254
18255 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
18256 M:      Nishanth Menon <nm@ti.com>
18257 M:      Tero Kristo <kristo@kernel.org>
18258 M:      Santosh Shilimkar <ssantosh@kernel.org>
18259 L:      linux-arm-kernel@lists.infradead.org
18260 S:      Maintained
18261 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
18262 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
18263 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
18264 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
18265 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
18266 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
18267 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
18268 F:      drivers/clk/keystone/sci-clk.c
18269 F:      drivers/firmware/ti_sci*
18270 F:      drivers/irqchip/irq-ti-sci-inta.c
18271 F:      drivers/irqchip/irq-ti-sci-intr.c
18272 F:      drivers/reset/reset-ti-sci.c
18273 F:      drivers/soc/ti/ti_sci_inta_msi.c
18274 F:      drivers/soc/ti/ti_sci_pm_domains.c
18275 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
18276 F:      include/linux/soc/ti/ti_sci_inta_msi.h
18277 F:      include/linux/soc/ti/ti_sci_protocol.h
18278
18279 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
18280 M:      Robert Marko <robert.marko@sartura.hr>
18281 M:      Luka Perkov <luka.perkov@sartura.hr>
18282 L:      linux-hwmon@vger.kernel.org
18283 S:      Maintained
18284 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
18285 F:      Documentation/hwmon/tps23861.rst
18286 F:      drivers/hwmon/tps23861.c
18287
18288 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
18289 M:      Hans Verkuil <hverkuil@xs4all.nl>
18290 L:      linux-media@vger.kernel.org
18291 S:      Maintained
18292 W:      https://linuxtv.org
18293 T:      git git://linuxtv.org/media_tree.git
18294 F:      drivers/media/radio/radio-raremono.c
18295
18296 THERMAL
18297 M:      Zhang Rui <rui.zhang@intel.com>
18298 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18299 R:      Amit Kucheria <amitk@kernel.org>
18300 L:      linux-pm@vger.kernel.org
18301 S:      Supported
18302 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
18304 F:      Documentation/devicetree/bindings/thermal/
18305 F:      drivers/thermal/
18306 F:      include/linux/cpu_cooling.h
18307 F:      include/linux/thermal.h
18308 F:      include/uapi/linux/thermal.h
18309
18310 THERMAL DRIVER FOR AMLOGIC SOCS
18311 M:      Guillaume La Roque <glaroque@baylibre.com>
18312 L:      linux-pm@vger.kernel.org
18313 L:      linux-amlogic@lists.infradead.org
18314 S:      Supported
18315 W:      http://linux-meson.com/
18316 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
18317 F:      drivers/thermal/amlogic_thermal.c
18318
18319 THERMAL/CPU_COOLING
18320 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
18321 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18322 M:      Viresh Kumar <viresh.kumar@linaro.org>
18323 R:      Lukasz Luba <lukasz.luba@arm.com>
18324 L:      linux-pm@vger.kernel.org
18325 S:      Supported
18326 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
18327 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
18328 F:      drivers/thermal/cpufreq_cooling.c
18329 F:      drivers/thermal/cpuidle_cooling.c
18330 F:      include/linux/cpu_cooling.h
18331
18332 THERMAL/POWER_ALLOCATOR
18333 M:      Lukasz Luba <lukasz.luba@arm.com>
18334 L:      linux-pm@vger.kernel.org
18335 S:      Maintained
18336 F:      Documentation/driver-api/thermal/power_allocator.rst
18337 F:      drivers/thermal/gov_power_allocator.c
18338 F:      include/trace/events/thermal_power_allocator.h
18339
18340 THINKPAD ACPI EXTRAS DRIVER
18341 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
18342 L:      ibm-acpi-devel@lists.sourceforge.net
18343 L:      platform-driver-x86@vger.kernel.org
18344 S:      Maintained
18345 W:      http://ibm-acpi.sourceforge.net
18346 W:      http://thinkwiki.org/wiki/Ibm-acpi
18347 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
18348 F:      drivers/platform/x86/thinkpad_acpi.c
18349
18350 THINKPAD LMI DRIVER
18351 M:      Mark Pearson <markpearson@lenovo.com>
18352 L:      platform-driver-x86@vger.kernel.org
18353 S:      Maintained
18354 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
18355 F:      drivers/platform/x86/think-lmi.?
18356
18357 THUNDERBOLT DMA TRAFFIC TEST DRIVER
18358 M:      Isaac Hazan <isaac.hazan@intel.com>
18359 L:      linux-usb@vger.kernel.org
18360 S:      Maintained
18361 F:      drivers/thunderbolt/dma_test.c
18362
18363 THUNDERBOLT DRIVER
18364 M:      Andreas Noever <andreas.noever@gmail.com>
18365 M:      Michael Jamet <michael.jamet@intel.com>
18366 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18367 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18368 L:      linux-usb@vger.kernel.org
18369 S:      Maintained
18370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
18371 F:      Documentation/admin-guide/thunderbolt.rst
18372 F:      drivers/thunderbolt/
18373 F:      include/linux/thunderbolt.h
18374
18375 THUNDERBOLT NETWORK DRIVER
18376 M:      Michael Jamet <michael.jamet@intel.com>
18377 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18378 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18379 L:      netdev@vger.kernel.org
18380 S:      Maintained
18381 F:      drivers/net/thunderbolt.c
18382
18383 THUNDERX GPIO DRIVER
18384 M:      Robert Richter <rric@kernel.org>
18385 S:      Odd Fixes
18386 F:      drivers/gpio/gpio-thunderx.c
18387
18388 TI ADS131E0X ADC SERIES DRIVER
18389 M:      Tomislav Denis <tomislav.denis@avl.com>
18390 L:      linux-iio@vger.kernel.org
18391 S:      Maintained
18392 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
18393 F:      drivers/iio/adc/ti-ads131e08.c
18394
18395 TI AM437X VPFE DRIVER
18396 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18397 L:      linux-media@vger.kernel.org
18398 S:      Maintained
18399 W:      https://linuxtv.org
18400 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18401 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18402 F:      drivers/media/platform/am437x/
18403
18404 TI BANDGAP AND THERMAL DRIVER
18405 M:      Eduardo Valentin <edubezval@gmail.com>
18406 M:      Keerthy <j-keerthy@ti.com>
18407 L:      linux-pm@vger.kernel.org
18408 L:      linux-omap@vger.kernel.org
18409 S:      Maintained
18410 F:      drivers/thermal/ti-soc-thermal/
18411
18412 TI BQ27XXX POWER SUPPLY DRIVER
18413 F:      drivers/power/supply/bq27xxx_battery.c
18414 F:      drivers/power/supply/bq27xxx_battery_i2c.c
18415 F:      include/linux/power/bq27xxx_battery.h
18416
18417 TI CDCE706 CLOCK DRIVER
18418 M:      Max Filippov <jcmvbkbc@gmail.com>
18419 S:      Maintained
18420 F:      drivers/clk/clk-cdce706.c
18421
18422 TI CLOCK DRIVER
18423 M:      Tero Kristo <kristo@kernel.org>
18424 L:      linux-omap@vger.kernel.org
18425 S:      Odd Fixes
18426 F:      drivers/clk/ti/
18427 F:      include/linux/clk/ti.h
18428
18429 TI DAVINCI MACHINE SUPPORT
18430 M:      Sekhar Nori <nsekhar@ti.com>
18431 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
18432 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18433 S:      Supported
18434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
18435 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
18436 F:      arch/arm/boot/dts/da850*
18437 F:      arch/arm/mach-davinci/
18438 F:      drivers/i2c/busses/i2c-davinci.c
18439
18440 TI DAVINCI SERIES CLOCK DRIVER
18441 M:      David Lechner <david@lechnology.com>
18442 R:      Sekhar Nori <nsekhar@ti.com>
18443 S:      Maintained
18444 F:      Documentation/devicetree/bindings/clock/ti/davinci/
18445 F:      drivers/clk/davinci/
18446
18447 TI DAVINCI SERIES GPIO DRIVER
18448 M:      Keerthy <j-keerthy@ti.com>
18449 L:      linux-gpio@vger.kernel.org
18450 S:      Maintained
18451 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
18452 F:      drivers/gpio/gpio-davinci.c
18453
18454 TI DAVINCI SERIES MEDIA DRIVER
18455 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18456 L:      linux-media@vger.kernel.org
18457 S:      Maintained
18458 W:      https://linuxtv.org
18459 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18460 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18461 F:      drivers/media/platform/davinci/
18462 F:      include/media/davinci/
18463
18464 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
18465 R:      David Lechner <david@lechnology.com>
18466 L:      linux-iio@vger.kernel.org
18467 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
18468 F:      drivers/counter/ti-eqep.c
18469
18470 TI ETHERNET SWITCH DRIVER (CPSW)
18471 R:      Grygorii Strashko <grygorii.strashko@ti.com>
18472 L:      linux-omap@vger.kernel.org
18473 L:      netdev@vger.kernel.org
18474 S:      Maintained
18475 F:      drivers/net/ethernet/ti/cpsw*
18476 F:      drivers/net/ethernet/ti/davinci*
18477
18478 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
18479 M:      Alex Dubov <oakad@yahoo.com>
18480 S:      Maintained
18481 W:      http://tifmxx.berlios.de/
18482 F:      drivers/memstick/host/tifm_ms.c
18483 F:      drivers/misc/tifm*
18484 F:      drivers/mmc/host/tifm_sd.c
18485 F:      include/linux/tifm.h
18486
18487 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
18488 M:      Santosh Shilimkar <ssantosh@kernel.org>
18489 L:      linux-kernel@vger.kernel.org
18490 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18491 S:      Maintained
18492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
18493 F:      drivers/soc/ti/*
18494
18495 TI LM49xxx FAMILY ASoC CODEC DRIVERS
18496 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
18497 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
18498 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18499 S:      Maintained
18500 F:      sound/soc/codecs/isabelle*
18501 F:      sound/soc/codecs/lm49453*
18502
18503 TI PCM3060 ASoC CODEC DRIVER
18504 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
18505 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18506 S:      Maintained
18507 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
18508 F:      sound/soc/codecs/pcm3060*
18509
18510 TI TAS571X FAMILY ASoC CODEC DRIVER
18511 M:      Kevin Cernekee <cernekee@chromium.org>
18512 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18513 S:      Odd Fixes
18514 F:      sound/soc/codecs/tas571x*
18515
18516 TI TRF7970A NFC DRIVER
18517 M:      Mark Greer <mgreer@animalcreek.com>
18518 L:      linux-wireless@vger.kernel.org
18519 L:      linux-nfc@lists.01.org (subscribers-only)
18520 S:      Supported
18521 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
18522 F:      drivers/nfc/trf7970a.c
18523
18524 TI TWL4030 SERIES SOC CODEC DRIVER
18525 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18526 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18527 S:      Maintained
18528 F:      sound/soc/codecs/twl4030*
18529
18530 TI VPE/CAL DRIVERS
18531 M:      Benoit Parrot <bparrot@ti.com>
18532 L:      linux-media@vger.kernel.org
18533 S:      Maintained
18534 W:      http://linuxtv.org/
18535 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18536 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
18537 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
18538 F:      drivers/media/platform/ti-vpe/
18539
18540 TI WILINK WIRELESS DRIVERS
18541 L:      linux-wireless@vger.kernel.org
18542 S:      Orphan
18543 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
18544 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
18545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
18546 F:      drivers/net/wireless/ti/
18547 F:      include/linux/wl12xx.h
18548
18549 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
18550 M:      John Stultz <john.stultz@linaro.org>
18551 M:      Thomas Gleixner <tglx@linutronix.de>
18552 R:      Stephen Boyd <sboyd@kernel.org>
18553 L:      linux-kernel@vger.kernel.org
18554 S:      Supported
18555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
18556 F:      include/linux/clocksource.h
18557 F:      include/linux/time.h
18558 F:      include/linux/timex.h
18559 F:      include/uapi/linux/time.h
18560 F:      include/uapi/linux/timex.h
18561 F:      kernel/time/alarmtimer.c
18562 F:      kernel/time/clocksource.c
18563 F:      kernel/time/ntp.c
18564 F:      kernel/time/time*.c
18565 F:      tools/testing/selftests/timers/
18566
18567 TIPC NETWORK LAYER
18568 M:      Jon Maloy <jmaloy@redhat.com>
18569 M:      Ying Xue <ying.xue@windriver.com>
18570 L:      netdev@vger.kernel.org (core kernel code)
18571 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
18572 S:      Maintained
18573 W:      http://tipc.sourceforge.net/
18574 F:      include/uapi/linux/tipc*.h
18575 F:      net/tipc/
18576
18577 TLAN NETWORK DRIVER
18578 M:      Samuel Chessman <chessman@tux.org>
18579 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
18580 S:      Maintained
18581 W:      http://sourceforge.net/projects/tlan/
18582 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
18583 F:      drivers/net/ethernet/ti/tlan.*
18584
18585 TM6000 VIDEO4LINUX DRIVER
18586 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18587 L:      linux-media@vger.kernel.org
18588 S:      Odd fixes
18589 W:      https://linuxtv.org
18590 T:      git git://linuxtv.org/media_tree.git
18591 F:      Documentation/admin-guide/media/tm6000*
18592 F:      drivers/media/usb/tm6000/
18593
18594 TMIO/SDHI MMC DRIVER
18595 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
18596 L:      linux-mmc@vger.kernel.org
18597 S:      Supported
18598 F:      drivers/mmc/host/renesas_sdhi*
18599 F:      drivers/mmc/host/tmio_mmc*
18600 F:      include/linux/mfd/tmio.h
18601
18602 TMP401 HARDWARE MONITOR DRIVER
18603 M:      Guenter Roeck <linux@roeck-us.net>
18604 L:      linux-hwmon@vger.kernel.org
18605 S:      Maintained
18606 F:      Documentation/hwmon/tmp401.rst
18607 F:      drivers/hwmon/tmp401.c
18608
18609 TMP513 HARDWARE MONITOR DRIVER
18610 M:      Eric Tremblay <etremblay@distech-controls.com>
18611 L:      linux-hwmon@vger.kernel.org
18612 S:      Maintained
18613 F:      Documentation/hwmon/tmp513.rst
18614 F:      drivers/hwmon/tmp513.c
18615
18616 TMPFS (SHMEM FILESYSTEM)
18617 M:      Hugh Dickins <hughd@google.com>
18618 L:      linux-mm@kvack.org
18619 S:      Maintained
18620 F:      include/linux/shmem_fs.h
18621 F:      mm/shmem.c
18622
18623 TOMOYO SECURITY MODULE
18624 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
18625 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
18626 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
18627 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
18628 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
18629 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
18630 S:      Maintained
18631 W:      https://tomoyo.osdn.jp/
18632 F:      security/tomoyo/
18633
18634 TOPSTAR LAPTOP EXTRAS DRIVER
18635 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
18636 L:      platform-driver-x86@vger.kernel.org
18637 S:      Maintained
18638 F:      drivers/platform/x86/topstar-laptop.c
18639
18640 TORTURE-TEST MODULES
18641 M:      Davidlohr Bueso <dave@stgolabs.net>
18642 M:      "Paul E. McKenney" <paulmck@kernel.org>
18643 M:      Josh Triplett <josh@joshtriplett.org>
18644 L:      linux-kernel@vger.kernel.org
18645 S:      Supported
18646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18647 F:      Documentation/RCU/torture.rst
18648 F:      kernel/locking/locktorture.c
18649 F:      kernel/rcu/rcuscale.c
18650 F:      kernel/rcu/rcutorture.c
18651 F:      kernel/rcu/refscale.c
18652 F:      kernel/torture.c
18653
18654 TOSHIBA ACPI EXTRAS DRIVER
18655 M:      Azael Avalos <coproscefalo@gmail.com>
18656 L:      platform-driver-x86@vger.kernel.org
18657 S:      Maintained
18658 F:      drivers/platform/x86/toshiba_acpi.c
18659
18660 TOSHIBA BLUETOOTH DRIVER
18661 M:      Azael Avalos <coproscefalo@gmail.com>
18662 L:      platform-driver-x86@vger.kernel.org
18663 S:      Maintained
18664 F:      drivers/platform/x86/toshiba_bluetooth.c
18665
18666 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
18667 M:      Azael Avalos <coproscefalo@gmail.com>
18668 L:      platform-driver-x86@vger.kernel.org
18669 S:      Maintained
18670 F:      drivers/platform/x86/toshiba_haps.c
18671
18672 TOSHIBA SMM DRIVER
18673 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
18674 S:      Maintained
18675 W:      http://www.buzzard.org.uk/toshiba/
18676 F:      drivers/char/toshiba.c
18677 F:      include/linux/toshiba.h
18678 F:      include/uapi/linux/toshiba.h
18679
18680 TOSHIBA TC358743 DRIVER
18681 M:      Mats Randgaard <matrandg@cisco.com>
18682 L:      linux-media@vger.kernel.org
18683 S:      Maintained
18684 F:      drivers/media/i2c/tc358743*
18685 F:      include/media/i2c/tc358743.h
18686
18687 TOSHIBA WMI HOTKEYS DRIVER
18688 M:      Azael Avalos <coproscefalo@gmail.com>
18689 L:      platform-driver-x86@vger.kernel.org
18690 S:      Maintained
18691 F:      drivers/platform/x86/toshiba-wmi.c
18692
18693 TPM DEVICE DRIVER
18694 M:      Peter Huewe <peterhuewe@gmx.de>
18695 M:      Jarkko Sakkinen <jarkko@kernel.org>
18696 R:      Jason Gunthorpe <jgg@ziepe.ca>
18697 L:      linux-integrity@vger.kernel.org
18698 S:      Maintained
18699 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
18700 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
18701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
18702 F:      drivers/char/tpm/
18703
18704 TRACING
18705 M:      Steven Rostedt <rostedt@goodmis.org>
18706 M:      Ingo Molnar <mingo@redhat.com>
18707 S:      Maintained
18708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
18709 F:      Documentation/trace/ftrace.rst
18710 F:      arch/*/*/*/ftrace.h
18711 F:      arch/*/kernel/ftrace.c
18712 F:      fs/tracefs/
18713 F:      include/*/ftrace.h
18714 F:      include/linux/trace*.h
18715 F:      include/trace/
18716 F:      kernel/trace/
18717 F:      tools/testing/selftests/ftrace/
18718
18719 TRACING MMIO ACCESSES (MMIOTRACE)
18720 M:      Steven Rostedt <rostedt@goodmis.org>
18721 M:      Ingo Molnar <mingo@kernel.org>
18722 R:      Karol Herbst <karolherbst@gmail.com>
18723 R:      Pekka Paalanen <ppaalanen@gmail.com>
18724 L:      linux-kernel@vger.kernel.org
18725 L:      nouveau@lists.freedesktop.org
18726 S:      Maintained
18727 F:      arch/x86/mm/kmmio.c
18728 F:      arch/x86/mm/mmio-mod.c
18729 F:      arch/x86/mm/testmmiotrace.c
18730 F:      include/linux/mmiotrace.h
18731 F:      kernel/trace/trace_mmiotrace.c
18732
18733 TRIVIAL PATCHES
18734 M:      Jiri Kosina <trivial@kernel.org>
18735 S:      Maintained
18736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
18737 K:      ^Subject:.*(?i)trivial
18738
18739 TTY LAYER
18740 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18741 M:      Jiri Slaby <jirislaby@kernel.org>
18742 S:      Supported
18743 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
18744 F:      Documentation/driver-api/serial/
18745 F:      drivers/tty/
18746 F:      drivers/tty/serial/serial_core.c
18747 F:      include/linux/serial.h
18748 F:      include/linux/serial_core.h
18749 F:      include/linux/tty.h
18750 F:      include/uapi/linux/serial.h
18751 F:      include/uapi/linux/serial_core.h
18752 F:      include/uapi/linux/tty.h
18753
18754 TUA9001 MEDIA DRIVER
18755 M:      Antti Palosaari <crope@iki.fi>
18756 L:      linux-media@vger.kernel.org
18757 S:      Maintained
18758 W:      https://linuxtv.org
18759 W:      http://palosaari.fi/linux/
18760 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18761 T:      git git://linuxtv.org/anttip/media_tree.git
18762 F:      drivers/media/tuners/tua9001*
18763
18764 TULIP NETWORK DRIVERS
18765 L:      netdev@vger.kernel.org
18766 L:      linux-parisc@vger.kernel.org
18767 S:      Orphan
18768 F:      drivers/net/ethernet/dec/tulip/
18769
18770 TUN/TAP driver
18771 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
18772 S:      Maintained
18773 W:      http://vtun.sourceforge.net/tun
18774 F:      Documentation/networking/tuntap.rst
18775 F:      arch/um/os-Linux/drivers/
18776
18777 TURBOCHANNEL SUBSYSTEM
18778 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
18779 M:      Ralf Baechle <ralf@linux-mips.org>
18780 L:      linux-mips@vger.kernel.org
18781 S:      Maintained
18782 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
18783 F:      drivers/tc/
18784 F:      include/linux/tc.h
18785
18786 TURBOSTAT UTILITY
18787 M:      "Len Brown" <lenb@kernel.org>
18788 L:      linux-pm@vger.kernel.org
18789 S:      Supported
18790 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18791 B:      https://bugzilla.kernel.org
18792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
18793 F:      tools/power/x86/turbostat/
18794
18795 TW5864 VIDEO4LINUX DRIVER
18796 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18797 M:      Anton Sviridenko <anton@corp.bluecherry.net>
18798 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
18799 M:      Andrey Utkin <andrey_utkin@fastmail.com>
18800 L:      linux-media@vger.kernel.org
18801 S:      Supported
18802 F:      drivers/media/pci/tw5864/
18803
18804 TW68 VIDEO4LINUX DRIVER
18805 M:      Hans Verkuil <hverkuil@xs4all.nl>
18806 L:      linux-media@vger.kernel.org
18807 S:      Odd Fixes
18808 W:      https://linuxtv.org
18809 T:      git git://linuxtv.org/media_tree.git
18810 F:      drivers/media/pci/tw68/
18811
18812 TW686X VIDEO4LINUX DRIVER
18813 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18814 L:      linux-media@vger.kernel.org
18815 S:      Maintained
18816 W:      http://linuxtv.org
18817 T:      git git://linuxtv.org/media_tree.git
18818 F:      drivers/media/pci/tw686x/
18819
18820 UACCE ACCELERATOR FRAMEWORK
18821 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
18822 M:      Zhou Wang <wangzhou1@hisilicon.com>
18823 L:      linux-accelerators@lists.ozlabs.org
18824 L:      linux-kernel@vger.kernel.org
18825 S:      Maintained
18826 F:      Documentation/ABI/testing/sysfs-driver-uacce
18827 F:      Documentation/misc-devices/uacce.rst
18828 F:      drivers/misc/uacce/
18829 F:      include/linux/uacce.h
18830 F:      include/uapi/misc/uacce/
18831
18832 UBI FILE SYSTEM (UBIFS)
18833 M:      Richard Weinberger <richard@nod.at>
18834 L:      linux-mtd@lists.infradead.org
18835 S:      Supported
18836 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
18837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18839 F:      Documentation/filesystems/ubifs-authentication.rst
18840 F:      Documentation/filesystems/ubifs.rst
18841 F:      fs/ubifs/
18842
18843 UCLINUX (M68KNOMMU AND COLDFIRE)
18844 M:      Greg Ungerer <gerg@linux-m68k.org>
18845 L:      linux-m68k@lists.linux-m68k.org
18846 L:      uclinux-dev@uclinux.org  (subscribers-only)
18847 S:      Maintained
18848 W:      http://www.linux-m68k.org/
18849 W:      http://www.uclinux.org/
18850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
18851 F:      arch/m68k/*/*_no.*
18852 F:      arch/m68k/68*/
18853 F:      arch/m68k/coldfire/
18854 F:      arch/m68k/include/asm/*_no.*
18855
18856 UDF FILESYSTEM
18857 M:      Jan Kara <jack@suse.com>
18858 S:      Maintained
18859 F:      Documentation/filesystems/udf.rst
18860 F:      fs/udf/
18861
18862 UDRAW TABLET
18863 M:      Bastien Nocera <hadess@hadess.net>
18864 L:      linux-input@vger.kernel.org
18865 S:      Maintained
18866 F:      drivers/hid/hid-udraw-ps3.c
18867
18868 UFS FILESYSTEM
18869 M:      Evgeniy Dushistov <dushistov@mail.ru>
18870 S:      Maintained
18871 F:      Documentation/admin-guide/ufs.rst
18872 F:      fs/ufs/
18873
18874 UHID USERSPACE HID IO DRIVER
18875 M:      David Rheinsberg <david.rheinsberg@gmail.com>
18876 L:      linux-input@vger.kernel.org
18877 S:      Maintained
18878 F:      drivers/hid/uhid.c
18879 F:      include/uapi/linux/uhid.h
18880
18881 ULPI BUS
18882 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18883 L:      linux-usb@vger.kernel.org
18884 S:      Maintained
18885 F:      drivers/usb/common/ulpi.c
18886 F:      include/linux/ulpi/
18887
18888 UNICODE SUBSYSTEM
18889 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
18890 L:      linux-fsdevel@vger.kernel.org
18891 S:      Supported
18892 F:      fs/unicode/
18893
18894 UNIFDEF
18895 M:      Tony Finch <dot@dotat.at>
18896 S:      Maintained
18897 W:      http://dotat.at/prog/unifdef
18898 F:      scripts/unifdef.c
18899
18900 UNIFORM CDROM DRIVER
18901 M:      Jens Axboe <axboe@kernel.dk>
18902 S:      Maintained
18903 W:      http://www.kernel.dk
18904 F:      Documentation/cdrom/
18905 F:      drivers/cdrom/cdrom.c
18906 F:      include/linux/cdrom.h
18907 F:      include/uapi/linux/cdrom.h
18908
18909 UNISYS S-PAR DRIVERS
18910 M:      David Kershner <david.kershner@unisys.com>
18911 L:      sparmaintainer@unisys.com (Unisys internal)
18912 S:      Supported
18913 F:      drivers/staging/unisys/
18914 F:      drivers/visorbus/
18915 F:      include/linux/visorbus.h
18916
18917 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
18918 R:      Alim Akhtar <alim.akhtar@samsung.com>
18919 R:      Avri Altman <avri.altman@wdc.com>
18920 L:      linux-scsi@vger.kernel.org
18921 S:      Supported
18922 F:      Documentation/scsi/ufs.rst
18923 F:      drivers/scsi/ufs/
18924
18925 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
18926 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
18927 L:      linux-scsi@vger.kernel.org
18928 S:      Supported
18929 F:      drivers/scsi/ufs/*dwc*
18930
18931 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
18932 M:      Stanley Chu <stanley.chu@mediatek.com>
18933 L:      linux-scsi@vger.kernel.org
18934 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
18935 S:      Maintained
18936 F:      drivers/scsi/ufs/ufs-mediatek*
18937
18938 UNSORTED BLOCK IMAGES (UBI)
18939 M:      Richard Weinberger <richard@nod.at>
18940 L:      linux-mtd@lists.infradead.org
18941 S:      Supported
18942 W:      http://www.linux-mtd.infradead.org/
18943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18945 F:      drivers/mtd/ubi/
18946 F:      include/linux/mtd/ubi.h
18947 F:      include/uapi/mtd/ubi-user.h
18948
18949 USB "USBNET" DRIVER FRAMEWORK
18950 M:      Oliver Neukum <oneukum@suse.com>
18951 L:      netdev@vger.kernel.org
18952 S:      Maintained
18953 W:      http://www.linux-usb.org/usbnet
18954 F:      drivers/net/usb/usbnet.c
18955 F:      include/linux/usb/usbnet.h
18956
18957 USB ACM DRIVER
18958 M:      Oliver Neukum <oneukum@suse.com>
18959 L:      linux-usb@vger.kernel.org
18960 S:      Maintained
18961 F:      Documentation/usb/acm.rst
18962 F:      drivers/usb/class/cdc-acm.*
18963
18964 USB APPLE MFI FASTCHARGE DRIVER
18965 M:      Bastien Nocera <hadess@hadess.net>
18966 L:      linux-usb@vger.kernel.org
18967 S:      Maintained
18968 F:      drivers/usb/misc/apple-mfi-fastcharge.c
18969
18970 USB AR5523 WIRELESS DRIVER
18971 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
18972 L:      linux-wireless@vger.kernel.org
18973 S:      Maintained
18974 F:      drivers/net/wireless/ath/ar5523/
18975
18976 USB ATTACHED SCSI
18977 M:      Oliver Neukum <oneukum@suse.com>
18978 L:      linux-usb@vger.kernel.org
18979 L:      linux-scsi@vger.kernel.org
18980 S:      Maintained
18981 F:      drivers/usb/storage/uas.c
18982
18983 USB CDC ETHERNET DRIVER
18984 M:      Oliver Neukum <oliver@neukum.org>
18985 L:      linux-usb@vger.kernel.org
18986 S:      Maintained
18987 F:      drivers/net/usb/cdc_*.c
18988 F:      include/uapi/linux/usb/cdc.h
18989
18990 USB CHAOSKEY DRIVER
18991 M:      Keith Packard <keithp@keithp.com>
18992 L:      linux-usb@vger.kernel.org
18993 S:      Maintained
18994 F:      drivers/usb/misc/chaoskey.c
18995
18996 USB CYPRESS C67X00 DRIVER
18997 M:      Peter Korsgaard <jacmet@sunsite.dk>
18998 L:      linux-usb@vger.kernel.org
18999 S:      Maintained
19000 F:      drivers/usb/c67x00/
19001
19002 USB DAVICOM DM9601 DRIVER
19003 M:      Peter Korsgaard <jacmet@sunsite.dk>
19004 L:      netdev@vger.kernel.org
19005 S:      Maintained
19006 W:      http://www.linux-usb.org/usbnet
19007 F:      drivers/net/usb/dm9601.c
19008
19009 USB EHCI DRIVER
19010 M:      Alan Stern <stern@rowland.harvard.edu>
19011 L:      linux-usb@vger.kernel.org
19012 S:      Maintained
19013 F:      Documentation/usb/ehci.rst
19014 F:      drivers/usb/host/ehci*
19015
19016 USB GADGET/PERIPHERAL SUBSYSTEM
19017 M:      Felipe Balbi <balbi@kernel.org>
19018 L:      linux-usb@vger.kernel.org
19019 S:      Maintained
19020 W:      http://www.linux-usb.org/gadget
19021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19022 F:      drivers/usb/gadget/
19023 F:      include/linux/usb/gadget*
19024
19025 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
19026 M:      Jiri Kosina <jikos@kernel.org>
19027 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
19028 L:      linux-usb@vger.kernel.org
19029 S:      Maintained
19030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
19031 F:      Documentation/hid/hiddev.rst
19032 F:      drivers/hid/usbhid/
19033
19034 USB INTEL XHCI ROLE MUX DRIVER
19035 M:      Hans de Goede <hdegoede@redhat.com>
19036 L:      linux-usb@vger.kernel.org
19037 S:      Maintained
19038 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
19039
19040 USB IP DRIVER FOR HISILICON KIRIN
19041 M:      Yu Chen <chenyu56@huawei.com>
19042 M:      Binghui Wang <wangbinghui@hisilicon.com>
19043 L:      linux-usb@vger.kernel.org
19044 S:      Maintained
19045 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
19046 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
19047
19048 USB ISP116X DRIVER
19049 M:      Olav Kongas <ok@artecdesign.ee>
19050 L:      linux-usb@vger.kernel.org
19051 S:      Maintained
19052 F:      drivers/usb/host/isp116x*
19053 F:      include/linux/usb/isp116x.h
19054
19055 USB ISP1760 DRIVER
19056 M:      Rui Miguel Silva <rui.silva@linaro.org>
19057 L:      linux-usb@vger.kernel.org
19058 S:      Maintained
19059 F:      drivers/usb/isp1760/*
19060 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
19061
19062 USB LAN78XX ETHERNET DRIVER
19063 M:      Woojung Huh <woojung.huh@microchip.com>
19064 M:      UNGLinuxDriver@microchip.com
19065 L:      netdev@vger.kernel.org
19066 S:      Maintained
19067 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
19068 F:      drivers/net/usb/lan78xx.*
19069 F:      include/dt-bindings/net/microchip-lan78xx.h
19070
19071 USB MASS STORAGE DRIVER
19072 M:      Alan Stern <stern@rowland.harvard.edu>
19073 L:      linux-usb@vger.kernel.org
19074 L:      usb-storage@lists.one-eyed-alien.net
19075 S:      Maintained
19076 F:      drivers/usb/storage/
19077
19078 USB MIDI DRIVER
19079 M:      Clemens Ladisch <clemens@ladisch.de>
19080 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19081 S:      Maintained
19082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19083 F:      sound/usb/midi.*
19084
19085 USB NETWORKING DRIVERS
19086 L:      linux-usb@vger.kernel.org
19087 S:      Odd Fixes
19088 F:      drivers/net/usb/
19089
19090 USB OHCI DRIVER
19091 M:      Alan Stern <stern@rowland.harvard.edu>
19092 L:      linux-usb@vger.kernel.org
19093 S:      Maintained
19094 F:      Documentation/usb/ohci.rst
19095 F:      drivers/usb/host/ohci*
19096
19097 USB OTG FSM (Finite State Machine)
19098 M:      Peter Chen <peter.chen@kernel.org>
19099 L:      linux-usb@vger.kernel.org
19100 S:      Maintained
19101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
19102 F:      drivers/usb/common/usb-otg-fsm.c
19103
19104 USB OVER IP DRIVER
19105 M:      Valentina Manea <valentina.manea.m@gmail.com>
19106 M:      Shuah Khan <shuah@kernel.org>
19107 M:      Shuah Khan <skhan@linuxfoundation.org>
19108 L:      linux-usb@vger.kernel.org
19109 S:      Maintained
19110 F:      Documentation/usb/usbip_protocol.rst
19111 F:      drivers/usb/usbip/
19112 F:      tools/testing/selftests/drivers/usb/usbip/
19113 F:      tools/usb/usbip/
19114
19115 USB PEGASUS DRIVER
19116 M:      Petko Manolov <petkan@nucleusys.com>
19117 L:      linux-usb@vger.kernel.org
19118 L:      netdev@vger.kernel.org
19119 S:      Maintained
19120 W:      https://github.com/petkan/pegasus
19121 T:      git git://github.com/petkan/pegasus.git
19122 F:      drivers/net/usb/pegasus.*
19123
19124 USB PHY LAYER
19125 M:      Felipe Balbi <balbi@kernel.org>
19126 L:      linux-usb@vger.kernel.org
19127 S:      Maintained
19128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19129 F:      drivers/usb/phy/
19130
19131 USB PRINTER DRIVER (usblp)
19132 M:      Pete Zaitcev <zaitcev@redhat.com>
19133 L:      linux-usb@vger.kernel.org
19134 S:      Supported
19135 F:      drivers/usb/class/usblp.c
19136
19137 USB RAW GADGET DRIVER
19138 R:      Andrey Konovalov <andreyknvl@gmail.com>
19139 L:      linux-usb@vger.kernel.org
19140 S:      Maintained
19141 F:      Documentation/usb/raw-gadget.rst
19142 F:      drivers/usb/gadget/legacy/raw_gadget.c
19143 F:      include/uapi/linux/usb/raw_gadget.h
19144
19145 USB QMI WWAN NETWORK DRIVER
19146 M:      Bjørn Mork <bjorn@mork.no>
19147 L:      netdev@vger.kernel.org
19148 S:      Maintained
19149 F:      Documentation/ABI/testing/sysfs-class-net-qmi
19150 F:      drivers/net/usb/qmi_wwan.c
19151
19152 USB RTL8150 DRIVER
19153 M:      Petko Manolov <petkan@nucleusys.com>
19154 L:      linux-usb@vger.kernel.org
19155 L:      netdev@vger.kernel.org
19156 S:      Maintained
19157 W:      https://github.com/petkan/rtl8150
19158 T:      git git://github.com/petkan/rtl8150.git
19159 F:      drivers/net/usb/rtl8150.c
19160
19161 USB SERIAL SUBSYSTEM
19162 M:      Johan Hovold <johan@kernel.org>
19163 L:      linux-usb@vger.kernel.org
19164 S:      Maintained
19165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
19166 F:      Documentation/usb/usb-serial.rst
19167 F:      drivers/usb/serial/
19168 F:      include/linux/usb/serial.h
19169
19170 USB SMSC75XX ETHERNET DRIVER
19171 M:      Steve Glendinning <steve.glendinning@shawell.net>
19172 L:      netdev@vger.kernel.org
19173 S:      Maintained
19174 F:      drivers/net/usb/smsc75xx.*
19175
19176 USB SMSC95XX ETHERNET DRIVER
19177 M:      Steve Glendinning <steve.glendinning@shawell.net>
19178 M:      UNGLinuxDriver@microchip.com
19179 L:      netdev@vger.kernel.org
19180 S:      Maintained
19181 F:      drivers/net/usb/smsc95xx.*
19182
19183 USB SUBSYSTEM
19184 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19185 L:      linux-usb@vger.kernel.org
19186 S:      Supported
19187 W:      http://www.linux-usb.org
19188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
19189 F:      Documentation/devicetree/bindings/usb/
19190 F:      Documentation/usb/
19191 F:      drivers/usb/
19192 F:      include/linux/usb.h
19193 F:      include/linux/usb/
19194
19195 USB TYPEC BUS FOR ALTERNATE MODES
19196 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19197 L:      linux-usb@vger.kernel.org
19198 S:      Maintained
19199 F:      Documentation/ABI/testing/sysfs-bus-typec
19200 F:      Documentation/driver-api/usb/typec_bus.rst
19201 F:      drivers/usb/typec/altmodes/
19202 F:      include/linux/usb/typec_altmode.h
19203
19204 USB TYPEC CLASS
19205 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19206 L:      linux-usb@vger.kernel.org
19207 S:      Maintained
19208 F:      Documentation/ABI/testing/sysfs-class-typec
19209 F:      Documentation/driver-api/usb/typec.rst
19210 F:      drivers/usb/typec/
19211 F:      include/linux/usb/typec.h
19212
19213 USB TYPEC INTEL PMC MUX DRIVER
19214 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19215 L:      linux-usb@vger.kernel.org
19216 S:      Maintained
19217 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
19218 F:      drivers/usb/typec/mux/intel_pmc_mux.c
19219
19220 USB TYPEC PI3USB30532 MUX DRIVER
19221 M:      Hans de Goede <hdegoede@redhat.com>
19222 L:      linux-usb@vger.kernel.org
19223 S:      Maintained
19224 F:      drivers/usb/typec/mux/pi3usb30532.c
19225
19226 USB TYPEC PORT CONTROLLER DRIVERS
19227 M:      Guenter Roeck <linux@roeck-us.net>
19228 L:      linux-usb@vger.kernel.org
19229 S:      Maintained
19230 F:      drivers/usb/typec/tcpm/
19231
19232 USB UHCI DRIVER
19233 M:      Alan Stern <stern@rowland.harvard.edu>
19234 L:      linux-usb@vger.kernel.org
19235 S:      Maintained
19236 F:      drivers/usb/host/uhci*
19237
19238 USB VIDEO CLASS
19239 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19240 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
19241 L:      linux-media@vger.kernel.org
19242 S:      Maintained
19243 W:      http://www.ideasonboard.org/uvc/
19244 T:      git git://linuxtv.org/media_tree.git
19245 F:      drivers/media/usb/uvc/
19246 F:      include/uapi/linux/uvcvideo.h
19247
19248 USB WEBCAM GADGET
19249 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19250 L:      linux-usb@vger.kernel.org
19251 S:      Maintained
19252 F:      drivers/usb/gadget/function/*uvc*
19253 F:      drivers/usb/gadget/legacy/webcam.c
19254 F:      include/uapi/linux/usb/g_uvc.h
19255
19256 USB WIRELESS RNDIS DRIVER (rndis_wlan)
19257 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
19258 L:      linux-wireless@vger.kernel.org
19259 S:      Maintained
19260 F:      drivers/net/wireless/rndis_wlan.c
19261
19262 USB XHCI DRIVER
19263 M:      Mathias Nyman <mathias.nyman@intel.com>
19264 L:      linux-usb@vger.kernel.org
19265 S:      Supported
19266 F:      drivers/usb/host/pci-quirks*
19267 F:      drivers/usb/host/xhci*
19268
19269 USB ZD1201 DRIVER
19270 L:      linux-wireless@vger.kernel.org
19271 S:      Orphan
19272 W:      http://linux-lc100020.sourceforge.net
19273 F:      drivers/net/wireless/zydas/zd1201.*
19274
19275 USB ZR364XX DRIVER
19276 M:      Antoine Jacquet <royale@zerezo.com>
19277 L:      linux-usb@vger.kernel.org
19278 L:      linux-media@vger.kernel.org
19279 S:      Maintained
19280 W:      http://royale.zerezo.com/zr364xx/
19281 T:      git git://linuxtv.org/media_tree.git
19282 F:      Documentation/admin-guide/media/zr364xx*
19283 F:      drivers/media/usb/zr364xx/
19284
19285 USER-MODE LINUX (UML)
19286 M:      Jeff Dike <jdike@addtoit.com>
19287 M:      Richard Weinberger <richard@nod.at>
19288 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
19289 L:      linux-um@lists.infradead.org
19290 S:      Maintained
19291 W:      http://user-mode-linux.sourceforge.net
19292 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
19293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
19294 F:      Documentation/virt/uml/
19295 F:      arch/um/
19296 F:      arch/x86/um/
19297 F:      fs/hostfs/
19298
19299 USERSPACE COPYIN/COPYOUT (UIOVEC)
19300 M:      Alexander Viro <viro@zeniv.linux.org.uk>
19301 S:      Maintained
19302 F:      include/linux/uio.h
19303 F:      lib/iov_iter.c
19304
19305 USERSPACE DMA BUFFER DRIVER
19306 M:      Gerd Hoffmann <kraxel@redhat.com>
19307 L:      dri-devel@lists.freedesktop.org
19308 S:      Maintained
19309 T:      git git://anongit.freedesktop.org/drm/drm-misc
19310 F:      drivers/dma-buf/udmabuf.c
19311 F:      include/uapi/linux/udmabuf.h
19312
19313 USERSPACE I/O (UIO)
19314 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19315 S:      Maintained
19316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19317 F:      Documentation/driver-api/uio-howto.rst
19318 F:      drivers/uio/
19319 F:      include/linux/uio_driver.h
19320
19321 UTIL-LINUX PACKAGE
19322 M:      Karel Zak <kzak@redhat.com>
19323 L:      util-linux@vger.kernel.org
19324 S:      Maintained
19325 W:      http://en.wikipedia.org/wiki/Util-linux
19326 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
19327
19328 UUID HELPERS
19329 M:      Christoph Hellwig <hch@lst.de>
19330 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19331 L:      linux-kernel@vger.kernel.org
19332 S:      Maintained
19333 T:      git git://git.infradead.org/users/hch/uuid.git
19334 F:      include/linux/uuid.h
19335 F:      include/uapi/linux/uuid.h
19336 F:      lib/test_uuid.c
19337 F:      lib/uuid.c
19338
19339 UV SYSFS DRIVER
19340 M:      Justin Ernst <justin.ernst@hpe.com>
19341 L:      platform-driver-x86@vger.kernel.org
19342 S:      Maintained
19343 F:      drivers/platform/x86/uv_sysfs.c
19344
19345 UVESAFB DRIVER
19346 M:      Michal Januszewski <spock@gentoo.org>
19347 L:      linux-fbdev@vger.kernel.org
19348 S:      Maintained
19349 W:      https://github.com/mjanusz/v86d
19350 F:      Documentation/fb/uvesafb.rst
19351 F:      drivers/video/fbdev/uvesafb.*
19352
19353 Ux500 CLOCK DRIVERS
19354 M:      Ulf Hansson <ulf.hansson@linaro.org>
19355 L:      linux-clk@vger.kernel.org
19356 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19357 S:      Maintained
19358 F:      drivers/clk/ux500/
19359
19360 VF610 NAND DRIVER
19361 M:      Stefan Agner <stefan@agner.ch>
19362 L:      linux-mtd@lists.infradead.org
19363 S:      Supported
19364 F:      drivers/mtd/nand/raw/vf610_nfc.c
19365
19366 VFAT/FAT/MSDOS FILESYSTEM
19367 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
19368 S:      Maintained
19369 F:      Documentation/filesystems/vfat.rst
19370 F:      fs/fat/
19371
19372 VFIO DRIVER
19373 M:      Alex Williamson <alex.williamson@redhat.com>
19374 R:      Cornelia Huck <cohuck@redhat.com>
19375 L:      kvm@vger.kernel.org
19376 S:      Maintained
19377 T:      git git://github.com/awilliam/linux-vfio.git
19378 F:      Documentation/driver-api/vfio.rst
19379 F:      drivers/vfio/
19380 F:      include/linux/vfio.h
19381 F:      include/uapi/linux/vfio.h
19382
19383 VFIO FSL-MC DRIVER
19384 M:      Diana Craciun <diana.craciun@oss.nxp.com>
19385 L:      kvm@vger.kernel.org
19386 S:      Maintained
19387 F:      drivers/vfio/fsl-mc/
19388
19389 VFIO MEDIATED DEVICE DRIVERS
19390 M:      Kirti Wankhede <kwankhede@nvidia.com>
19391 L:      kvm@vger.kernel.org
19392 S:      Maintained
19393 F:      Documentation/driver-api/vfio-mediated-device.rst
19394 F:      drivers/vfio/mdev/
19395 F:      include/linux/mdev.h
19396 F:      samples/vfio-mdev/
19397
19398 VFIO PLATFORM DRIVER
19399 M:      Eric Auger <eric.auger@redhat.com>
19400 L:      kvm@vger.kernel.org
19401 S:      Maintained
19402 F:      drivers/vfio/platform/
19403
19404 VGA_SWITCHEROO
19405 R:      Lukas Wunner <lukas@wunner.de>
19406 S:      Maintained
19407 T:      git git://anongit.freedesktop.org/drm/drm-misc
19408 F:      Documentation/gpu/vga-switcheroo.rst
19409 F:      drivers/gpu/vga/vga_switcheroo.c
19410 F:      include/linux/vga_switcheroo.h
19411
19412 VIA RHINE NETWORK DRIVER
19413 S:      Maintained
19414 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
19415 F:      drivers/net/ethernet/via/via-rhine.c
19416
19417 VIA SD/MMC CARD CONTROLLER DRIVER
19418 M:      Bruce Chang <brucechang@via.com.tw>
19419 M:      Harald Welte <HaraldWelte@viatech.com>
19420 S:      Maintained
19421 F:      drivers/mmc/host/via-sdmmc.c
19422
19423 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
19424 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
19425 L:      linux-fbdev@vger.kernel.org
19426 S:      Maintained
19427 F:      drivers/video/fbdev/via/
19428 F:      include/linux/via-core.h
19429 F:      include/linux/via-gpio.h
19430 F:      include/linux/via_i2c.h
19431
19432 VIA VELOCITY NETWORK DRIVER
19433 M:      Francois Romieu <romieu@fr.zoreil.com>
19434 L:      netdev@vger.kernel.org
19435 S:      Maintained
19436 F:      drivers/net/ethernet/via/via-velocity.*
19437
19438 VICODEC VIRTUAL CODEC DRIVER
19439 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
19440 L:      linux-media@vger.kernel.org
19441 S:      Maintained
19442 W:      https://linuxtv.org
19443 T:      git git://linuxtv.org/media_tree.git
19444 F:      drivers/media/test-drivers/vicodec/*
19445
19446 VIDEO I2C POLLING DRIVER
19447 M:      Matt Ranostay <matt.ranostay@konsulko.com>
19448 L:      linux-media@vger.kernel.org
19449 S:      Maintained
19450 F:      drivers/media/i2c/video-i2c.c
19451
19452 VIDEO MULTIPLEXER DRIVER
19453 M:      Philipp Zabel <p.zabel@pengutronix.de>
19454 L:      linux-media@vger.kernel.org
19455 S:      Maintained
19456 F:      drivers/media/platform/video-mux.c
19457
19458 VIDEOBUF2 FRAMEWORK
19459 M:      Tomasz Figa <tfiga@chromium.org>
19460 M:      Marek Szyprowski <m.szyprowski@samsung.com>
19461 L:      linux-media@vger.kernel.org
19462 S:      Maintained
19463 F:      drivers/media/common/videobuf2/*
19464 F:      include/media/videobuf2-*
19465
19466 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
19467 M:      Helen Koike <helen.koike@collabora.com>
19468 R:      Shuah Khan <skhan@linuxfoundation.org>
19469 L:      linux-media@vger.kernel.org
19470 S:      Maintained
19471 W:      https://linuxtv.org
19472 T:      git git://linuxtv.org/media_tree.git
19473 F:      drivers/media/test-drivers/vimc/*
19474
19475 VIRT LIB
19476 M:      Alex Williamson <alex.williamson@redhat.com>
19477 M:      Paolo Bonzini <pbonzini@redhat.com>
19478 L:      kvm@vger.kernel.org
19479 S:      Supported
19480 F:      virt/lib/
19481
19482 VIRTIO AND VHOST VSOCK DRIVER
19483 M:      Stefan Hajnoczi <stefanha@redhat.com>
19484 M:      Stefano Garzarella <sgarzare@redhat.com>
19485 L:      kvm@vger.kernel.org
19486 L:      virtualization@lists.linux-foundation.org
19487 L:      netdev@vger.kernel.org
19488 S:      Maintained
19489 F:      drivers/net/vsockmon.c
19490 F:      drivers/vhost/vsock.c
19491 F:      include/linux/virtio_vsock.h
19492 F:      include/uapi/linux/virtio_vsock.h
19493 F:      include/uapi/linux/vm_sockets_diag.h
19494 F:      include/uapi/linux/vsockmon.h
19495 F:      net/vmw_vsock/af_vsock_tap.c
19496 F:      net/vmw_vsock/diag.c
19497 F:      net/vmw_vsock/virtio_transport.c
19498 F:      net/vmw_vsock/virtio_transport_common.c
19499 F:      net/vmw_vsock/vsock_loopback.c
19500 F:      tools/testing/vsock/
19501
19502 VIRTIO BLOCK AND SCSI DRIVERS
19503 M:      "Michael S. Tsirkin" <mst@redhat.com>
19504 M:      Jason Wang <jasowang@redhat.com>
19505 R:      Paolo Bonzini <pbonzini@redhat.com>
19506 R:      Stefan Hajnoczi <stefanha@redhat.com>
19507 L:      virtualization@lists.linux-foundation.org
19508 S:      Maintained
19509 F:      drivers/block/virtio_blk.c
19510 F:      drivers/scsi/virtio_scsi.c
19511 F:      drivers/vhost/scsi.c
19512 F:      include/uapi/linux/virtio_blk.h
19513 F:      include/uapi/linux/virtio_scsi.h
19514
19515 VIRTIO CONSOLE DRIVER
19516 M:      Amit Shah <amit@kernel.org>
19517 L:      virtualization@lists.linux-foundation.org
19518 S:      Maintained
19519 F:      drivers/char/virtio_console.c
19520 F:      include/linux/virtio_console.h
19521 F:      include/uapi/linux/virtio_console.h
19522
19523 VIRTIO CORE AND NET DRIVERS
19524 M:      "Michael S. Tsirkin" <mst@redhat.com>
19525 M:      Jason Wang <jasowang@redhat.com>
19526 L:      virtualization@lists.linux-foundation.org
19527 S:      Maintained
19528 F:      Documentation/devicetree/bindings/virtio/
19529 F:      drivers/block/virtio_blk.c
19530 F:      drivers/crypto/virtio/
19531 F:      drivers/net/virtio_net.c
19532 F:      drivers/vdpa/
19533 F:      drivers/virtio/
19534 F:      include/linux/vdpa.h
19535 F:      include/linux/virtio*.h
19536 F:      include/uapi/linux/virtio_*.h
19537 F:      tools/virtio/
19538
19539 VIRTIO BALLOON
19540 M:      "Michael S. Tsirkin" <mst@redhat.com>
19541 M:      David Hildenbrand <david@redhat.com>
19542 L:      virtualization@lists.linux-foundation.org
19543 S:      Maintained
19544 F:      drivers/virtio/virtio_balloon.c
19545 F:      include/uapi/linux/virtio_balloon.h
19546 F:      include/linux/balloon_compaction.h
19547 F:      mm/balloon_compaction.c
19548
19549 VIRTIO CRYPTO DRIVER
19550 M:      Gonglei <arei.gonglei@huawei.com>
19551 L:      virtualization@lists.linux-foundation.org
19552 L:      linux-crypto@vger.kernel.org
19553 S:      Maintained
19554 F:      drivers/crypto/virtio/
19555 F:      include/uapi/linux/virtio_crypto.h
19556
19557 VIRTIO DRIVERS FOR S390
19558 M:      Cornelia Huck <cohuck@redhat.com>
19559 M:      Halil Pasic <pasic@linux.ibm.com>
19560 L:      linux-s390@vger.kernel.org
19561 L:      virtualization@lists.linux-foundation.org
19562 L:      kvm@vger.kernel.org
19563 S:      Supported
19564 F:      arch/s390/include/uapi/asm/virtio-ccw.h
19565 F:      drivers/s390/virtio/
19566
19567 VIRTIO FILE SYSTEM
19568 M:      Vivek Goyal <vgoyal@redhat.com>
19569 M:      Stefan Hajnoczi <stefanha@redhat.com>
19570 M:      Miklos Szeredi <miklos@szeredi.hu>
19571 L:      virtualization@lists.linux-foundation.org
19572 L:      linux-fsdevel@vger.kernel.org
19573 S:      Supported
19574 W:      https://virtio-fs.gitlab.io/
19575 F:      Documentation/filesystems/virtiofs.rst
19576 F:      fs/fuse/virtio_fs.c
19577 F:      include/uapi/linux/virtio_fs.h
19578
19579 VIRTIO GPU DRIVER
19580 M:      David Airlie <airlied@linux.ie>
19581 M:      Gerd Hoffmann <kraxel@redhat.com>
19582 L:      dri-devel@lists.freedesktop.org
19583 L:      virtualization@lists.linux-foundation.org
19584 S:      Maintained
19585 T:      git git://anongit.freedesktop.org/drm/drm-misc
19586 F:      drivers/gpu/drm/virtio/
19587 F:      include/uapi/linux/virtio_gpu.h
19588
19589 VIRTIO HOST (VHOST)
19590 M:      "Michael S. Tsirkin" <mst@redhat.com>
19591 M:      Jason Wang <jasowang@redhat.com>
19592 L:      kvm@vger.kernel.org
19593 L:      virtualization@lists.linux-foundation.org
19594 L:      netdev@vger.kernel.org
19595 S:      Maintained
19596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
19597 F:      drivers/vhost/
19598 F:      include/linux/vhost_iotlb.h
19599 F:      include/uapi/linux/vhost.h
19600
19601 VIRTIO INPUT DRIVER
19602 M:      Gerd Hoffmann <kraxel@redhat.com>
19603 S:      Maintained
19604 F:      drivers/virtio/virtio_input.c
19605 F:      include/uapi/linux/virtio_input.h
19606
19607 VIRTIO IOMMU DRIVER
19608 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
19609 L:      virtualization@lists.linux-foundation.org
19610 S:      Maintained
19611 F:      drivers/iommu/virtio-iommu.c
19612 F:      include/uapi/linux/virtio_iommu.h
19613
19614 VIRTIO MEM DRIVER
19615 M:      David Hildenbrand <david@redhat.com>
19616 L:      virtualization@lists.linux-foundation.org
19617 S:      Maintained
19618 W:      https://virtio-mem.gitlab.io/
19619 F:      drivers/virtio/virtio_mem.c
19620 F:      include/uapi/linux/virtio_mem.h
19621
19622 VIRTIO SOUND DRIVER
19623 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
19624 M:      "Michael S. Tsirkin" <mst@redhat.com>
19625 L:      virtualization@lists.linux-foundation.org
19626 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19627 S:      Maintained
19628 F:      include/uapi/linux/virtio_snd.h
19629 F:      sound/virtio/*
19630
19631 VIRTUAL BOX GUEST DEVICE DRIVER
19632 M:      Hans de Goede <hdegoede@redhat.com>
19633 M:      Arnd Bergmann <arnd@arndb.de>
19634 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19635 S:      Maintained
19636 F:      drivers/virt/vboxguest/
19637 F:      include/linux/vbox_utils.h
19638 F:      include/uapi/linux/vbox*.h
19639
19640 VIRTUAL BOX SHARED FOLDER VFS DRIVER
19641 M:      Hans de Goede <hdegoede@redhat.com>
19642 L:      linux-fsdevel@vger.kernel.org
19643 S:      Maintained
19644 F:      fs/vboxsf/*
19645
19646 VIRTUAL SERIO DEVICE DRIVER
19647 M:      Stephen Chandler Paul <thatslyude@gmail.com>
19648 S:      Maintained
19649 F:      drivers/input/serio/userio.c
19650 F:      include/uapi/linux/userio.h
19651
19652 VIVID VIRTUAL VIDEO DRIVER
19653 M:      Hans Verkuil <hverkuil@xs4all.nl>
19654 L:      linux-media@vger.kernel.org
19655 S:      Maintained
19656 W:      https://linuxtv.org
19657 T:      git git://linuxtv.org/media_tree.git
19658 F:      drivers/media/test-drivers/vivid/*
19659
19660 VIDTV VIRTUAL DIGITAL TV DRIVER
19661 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
19662 L:      linux-media@vger.kernel.org
19663 S:      Maintained
19664 W:      https://linuxtv.org
19665 T:      git git://linuxtv.org/media_tree.git
19666 F:      drivers/media/test-drivers/vidtv/*
19667
19668 VLYNQ BUS
19669 M:      Florian Fainelli <f.fainelli@gmail.com>
19670 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
19671 S:      Maintained
19672 F:      drivers/vlynq/vlynq.c
19673 F:      include/linux/vlynq.h
19674
19675 VME SUBSYSTEM
19676 M:      Martyn Welch <martyn@welchs.me.uk>
19677 M:      Manohar Vanga <manohar.vanga@gmail.com>
19678 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19679 L:      linux-kernel@vger.kernel.org
19680 S:      Maintained
19681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19682 F:      Documentation/driver-api/vme.rst
19683 F:      drivers/staging/vme/
19684 F:      drivers/vme/
19685 F:      include/linux/vme*
19686
19687 VMWARE BALLOON DRIVER
19688 M:      Nadav Amit <namit@vmware.com>
19689 M:      "VMware, Inc." <pv-drivers@vmware.com>
19690 L:      linux-kernel@vger.kernel.org
19691 S:      Maintained
19692 F:      drivers/misc/vmw_balloon.c
19693
19694 VMWARE HYPERVISOR INTERFACE
19695 M:      Deep Shah <sdeep@vmware.com>
19696 M:      "VMware, Inc." <pv-drivers@vmware.com>
19697 L:      virtualization@lists.linux-foundation.org
19698 S:      Supported
19699 F:      arch/x86/include/asm/vmware.h
19700 F:      arch/x86/kernel/cpu/vmware.c
19701
19702 VMWARE PVRDMA DRIVER
19703 M:      Adit Ranadive <aditr@vmware.com>
19704 M:      VMware PV-Drivers <pv-drivers@vmware.com>
19705 L:      linux-rdma@vger.kernel.org
19706 S:      Maintained
19707 F:      drivers/infiniband/hw/vmw_pvrdma/
19708
19709 VMware PVSCSI driver
19710 M:      Vishal Bhakta <vbhakta@vmware.com>
19711 M:      VMware PV-Drivers <pv-drivers@vmware.com>
19712 L:      linux-scsi@vger.kernel.org
19713 S:      Maintained
19714 F:      drivers/scsi/vmw_pvscsi.c
19715 F:      drivers/scsi/vmw_pvscsi.h
19716
19717 VMWARE VIRTUAL PTP CLOCK DRIVER
19718 M:      Vivek Thampi <vithampi@vmware.com>
19719 M:      "VMware, Inc." <pv-drivers@vmware.com>
19720 L:      netdev@vger.kernel.org
19721 S:      Supported
19722 F:      drivers/ptp/ptp_vmw.c
19723
19724 VMWARE VMMOUSE SUBDRIVER
19725 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
19726 M:      "VMware, Inc." <pv-drivers@vmware.com>
19727 L:      linux-input@vger.kernel.org
19728 S:      Maintained
19729 F:      drivers/input/mouse/vmmouse.c
19730 F:      drivers/input/mouse/vmmouse.h
19731
19732 VMWARE VMXNET3 ETHERNET DRIVER
19733 M:      Ronak Doshi <doshir@vmware.com>
19734 M:      pv-drivers@vmware.com
19735 L:      netdev@vger.kernel.org
19736 S:      Maintained
19737 F:      drivers/net/vmxnet3/
19738
19739 VOCORE VOCORE2 BOARD
19740 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
19741 L:      linux-mips@vger.kernel.org
19742 S:      Maintained
19743 F:      arch/mips/boot/dts/ralink/vocore2.dts
19744
19745 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
19746 M:      Liam Girdwood <lgirdwood@gmail.com>
19747 M:      Mark Brown <broonie@kernel.org>
19748 L:      linux-kernel@vger.kernel.org
19749 S:      Supported
19750 W:      http://www.slimlogic.co.uk/?p=48
19751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
19752 F:      Documentation/devicetree/bindings/regulator/
19753 F:      Documentation/power/regulator/
19754 F:      drivers/regulator/
19755 F:      include/dt-bindings/regulator/
19756 F:      include/linux/regulator/
19757 K:      regulator_get_optional
19758
19759 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
19760 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
19761 F:      drivers/regulator/irq_helpers.c
19762
19763 VRF
19764 M:      David Ahern <dsahern@kernel.org>
19765 L:      netdev@vger.kernel.org
19766 S:      Maintained
19767 F:      Documentation/networking/vrf.rst
19768 F:      drivers/net/vrf.c
19769
19770 VSPRINTF
19771 M:      Petr Mladek <pmladek@suse.com>
19772 M:      Steven Rostedt <rostedt@goodmis.org>
19773 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
19774 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19775 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
19776 S:      Maintained
19777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
19778 F:      Documentation/core-api/printk-formats.rst
19779 F:      lib/test_printf.c
19780 F:      lib/test_scanf.c
19781 F:      lib/vsprintf.c
19782
19783 VT1211 HARDWARE MONITOR DRIVER
19784 M:      Juerg Haefliger <juergh@gmail.com>
19785 L:      linux-hwmon@vger.kernel.org
19786 S:      Maintained
19787 F:      Documentation/hwmon/vt1211.rst
19788 F:      drivers/hwmon/vt1211.c
19789
19790 VT8231 HARDWARE MONITOR DRIVER
19791 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
19792 L:      linux-hwmon@vger.kernel.org
19793 S:      Maintained
19794 F:      drivers/hwmon/vt8231.c
19795
19796 VUB300 USB to SDIO/SD/MMC bridge chip
19797 L:      linux-mmc@vger.kernel.org
19798 S:      Orphan
19799 F:      drivers/mmc/host/vub300.c
19800
19801 W1 DALLAS'S 1-WIRE BUS
19802 M:      Evgeniy Polyakov <zbr@ioremap.net>
19803 S:      Maintained
19804 F:      Documentation/devicetree/bindings/w1/
19805 F:      Documentation/w1/
19806 F:      drivers/w1/
19807 F:      include/linux/w1.h
19808
19809 W83791D HARDWARE MONITORING DRIVER
19810 M:      Marc Hulsman <m.hulsman@tudelft.nl>
19811 L:      linux-hwmon@vger.kernel.org
19812 S:      Maintained
19813 F:      Documentation/hwmon/w83791d.rst
19814 F:      drivers/hwmon/w83791d.c
19815
19816 W83793 HARDWARE MONITORING DRIVER
19817 M:      Rudolf Marek <r.marek@assembler.cz>
19818 L:      linux-hwmon@vger.kernel.org
19819 S:      Maintained
19820 F:      Documentation/hwmon/w83793.rst
19821 F:      drivers/hwmon/w83793.c
19822
19823 W83795 HARDWARE MONITORING DRIVER
19824 M:      Jean Delvare <jdelvare@suse.com>
19825 L:      linux-hwmon@vger.kernel.org
19826 S:      Maintained
19827 F:      drivers/hwmon/w83795.c
19828
19829 W83L51xD SD/MMC CARD INTERFACE DRIVER
19830 M:      Pierre Ossman <pierre@ossman.eu>
19831 S:      Maintained
19832 F:      drivers/mmc/host/wbsd.*
19833
19834 WACOM PROTOCOL 4 SERIAL TABLETS
19835 M:      Julian Squires <julian@cipht.net>
19836 M:      Hans de Goede <hdegoede@redhat.com>
19837 L:      linux-input@vger.kernel.org
19838 S:      Maintained
19839 F:      drivers/input/tablet/wacom_serial4.c
19840
19841 WATCHDOG DEVICE DRIVERS
19842 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
19843 M:      Guenter Roeck <linux@roeck-us.net>
19844 L:      linux-watchdog@vger.kernel.org
19845 S:      Maintained
19846 W:      http://www.linux-watchdog.org/
19847 T:      git git://www.linux-watchdog.org/linux-watchdog.git
19848 F:      Documentation/devicetree/bindings/watchdog/
19849 F:      Documentation/watchdog/
19850 F:      drivers/watchdog/
19851 F:      include/linux/watchdog.h
19852 F:      include/uapi/linux/watchdog.h
19853
19854 WHISKEYCOVE PMIC GPIO DRIVER
19855 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
19856 L:      linux-gpio@vger.kernel.org
19857 S:      Maintained
19858 F:      drivers/gpio/gpio-wcove.c
19859
19860 WHWAVE RTC DRIVER
19861 M:      Dianlong Li <long17.cool@163.com>
19862 L:      linux-rtc@vger.kernel.org
19863 S:      Maintained
19864 F:      drivers/rtc/rtc-sd3078.c
19865
19866 WIIMOTE HID DRIVER
19867 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19868 L:      linux-input@vger.kernel.org
19869 S:      Maintained
19870 F:      drivers/hid/hid-wiimote*
19871
19872 WILOCITY WIL6210 WIRELESS DRIVER
19873 M:      Maya Erez <merez@codeaurora.org>
19874 L:      linux-wireless@vger.kernel.org
19875 L:      wil6210@qti.qualcomm.com
19876 S:      Supported
19877 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
19878 F:      drivers/net/wireless/ath/wil6210/
19879
19880 WINBOND CIR DRIVER
19881 M:      David Härdeman <david@hardeman.nu>
19882 S:      Maintained
19883 F:      drivers/media/rc/winbond-cir.c
19884
19885 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
19886 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
19887 L:      linux-watchdog@vger.kernel.org
19888 S:      Maintained
19889 F:      drivers/watchdog/ebc-c384_wdt.c
19890
19891 WINSYSTEMS WS16C48 GPIO DRIVER
19892 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
19893 L:      linux-gpio@vger.kernel.org
19894 S:      Maintained
19895 F:      drivers/gpio/gpio-ws16c48.c
19896
19897 WIREGUARD SECURE NETWORK TUNNEL
19898 M:      Jason A. Donenfeld <Jason@zx2c4.com>
19899 L:      wireguard@lists.zx2c4.com
19900 L:      netdev@vger.kernel.org
19901 S:      Maintained
19902 F:      drivers/net/wireguard/
19903 F:      tools/testing/selftests/wireguard/
19904
19905 WISTRON LAPTOP BUTTON DRIVER
19906 M:      Miloslav Trmac <mitr@volny.cz>
19907 S:      Maintained
19908 F:      drivers/input/misc/wistron_btns.c
19909
19910 WL3501 WIRELESS PCMCIA CARD DRIVER
19911 L:      linux-wireless@vger.kernel.org
19912 S:      Odd fixes
19913 F:      drivers/net/wireless/wl3501*
19914
19915 WOLFSON MICROELECTRONICS DRIVERS
19916 L:      patches@opensource.cirrus.com
19917 S:      Supported
19918 W:      https://github.com/CirrusLogic/linux-drivers/wiki
19919 T:      git https://github.com/CirrusLogic/linux-drivers.git
19920 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
19921 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
19922 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
19923 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
19924 F:      Documentation/devicetree/bindings/sound/wlf,arizona.yaml
19925 F:      Documentation/hwmon/wm83??.rst
19926 F:      arch/arm/mach-s3c/mach-crag6410*
19927 F:      drivers/clk/clk-wm83*.c
19928 F:      drivers/gpio/gpio-*wm*.c
19929 F:      drivers/gpio/gpio-arizona.c
19930 F:      drivers/hwmon/wm83??-hwmon.c
19931 F:      drivers/input/misc/wm831x-on.c
19932 F:      drivers/input/touchscreen/wm831x-ts.c
19933 F:      drivers/input/touchscreen/wm97*.c
19934 F:      drivers/leds/leds-wm83*.c
19935 F:      drivers/mfd/arizona*
19936 F:      drivers/mfd/cs47l24*
19937 F:      drivers/mfd/wm*.c
19938 F:      drivers/power/supply/wm83*.c
19939 F:      drivers/regulator/arizona*
19940 F:      drivers/regulator/wm8*.c
19941 F:      drivers/rtc/rtc-wm83*.c
19942 F:      drivers/video/backlight/wm83*_bl.c
19943 F:      drivers/watchdog/wm83*_wdt.c
19944 F:      include/linux/mfd/arizona/
19945 F:      include/linux/mfd/wm831x/
19946 F:      include/linux/mfd/wm8350/
19947 F:      include/linux/mfd/wm8400*
19948 F:      include/linux/regulator/arizona*
19949 F:      include/linux/wm97xx.h
19950 F:      include/sound/wm????.h
19951 F:      sound/soc/codecs/arizona*
19952 F:      sound/soc/codecs/cs47l24*
19953 F:      sound/soc/codecs/wm*
19954
19955 WORKQUEUE
19956 M:      Tejun Heo <tj@kernel.org>
19957 R:      Lai Jiangshan <jiangshanlai@gmail.com>
19958 S:      Maintained
19959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
19960 F:      Documentation/core-api/workqueue.rst
19961 F:      include/linux/workqueue.h
19962 F:      kernel/workqueue.c
19963
19964 WWAN DRIVERS
19965 M:      Loic Poulain <loic.poulain@linaro.org>
19966 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
19967 R:      Johannes Berg <johannes@sipsolutions.net>
19968 L:      netdev@vger.kernel.org
19969 S:      Maintained
19970 F:      drivers/net/wwan/
19971 F:      include/linux/wwan.h
19972 F:      include/uapi/linux/wwan.h
19973
19974 X-POWERS AXP288 PMIC DRIVERS
19975 M:      Hans de Goede <hdegoede@redhat.com>
19976 S:      Maintained
19977 F:      drivers/acpi/pmic/intel_pmic_xpower.c
19978 N:      axp288
19979
19980 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
19981 M:      Chen-Yu Tsai <wens@csie.org>
19982 L:      linux-kernel@vger.kernel.org
19983 S:      Maintained
19984 N:      axp[128]
19985
19986 X.25 STACK
19987 M:      Martin Schiller <ms@dev.tdt.de>
19988 L:      linux-x25@vger.kernel.org
19989 S:      Maintained
19990 F:      Documentation/networking/lapb-module.rst
19991 F:      Documentation/networking/x25*
19992 F:      drivers/net/wan/hdlc_x25.c
19993 F:      drivers/net/wan/lapbether.c
19994 F:      include/*/lapb.h
19995 F:      include/net/x25*
19996 F:      include/uapi/linux/x25.h
19997 F:      net/lapb/
19998 F:      net/x25/
19999
20000 X86 ARCHITECTURE (32-BIT AND 64-BIT)
20001 M:      Thomas Gleixner <tglx@linutronix.de>
20002 M:      Ingo Molnar <mingo@redhat.com>
20003 M:      Borislav Petkov <bp@alien8.de>
20004 M:      x86@kernel.org
20005 R:      "H. Peter Anvin" <hpa@zytor.com>
20006 L:      linux-kernel@vger.kernel.org
20007 S:      Maintained
20008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20009 F:      Documentation/devicetree/bindings/x86/
20010 F:      Documentation/x86/
20011 F:      arch/x86/
20012
20013 X86 ENTRY CODE
20014 M:      Andy Lutomirski <luto@kernel.org>
20015 L:      linux-kernel@vger.kernel.org
20016 S:      Maintained
20017 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
20018 F:      arch/x86/entry/
20019
20020 X86 MCE INFRASTRUCTURE
20021 M:      Tony Luck <tony.luck@intel.com>
20022 M:      Borislav Petkov <bp@alien8.de>
20023 L:      linux-edac@vger.kernel.org
20024 S:      Maintained
20025 F:      arch/x86/kernel/cpu/mce/*
20026
20027 X86 MICROCODE UPDATE SUPPORT
20028 M:      Borislav Petkov <bp@alien8.de>
20029 S:      Maintained
20030 F:      arch/x86/kernel/cpu/microcode/*
20031
20032 X86 MM
20033 M:      Dave Hansen <dave.hansen@linux.intel.com>
20034 M:      Andy Lutomirski <luto@kernel.org>
20035 M:      Peter Zijlstra <peterz@infradead.org>
20036 L:      linux-kernel@vger.kernel.org
20037 S:      Maintained
20038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
20039 F:      arch/x86/mm/
20040
20041 X86 PLATFORM DRIVERS
20042 M:      Hans de Goede <hdegoede@redhat.com>
20043 M:      Mark Gross <mgross@linux.intel.com>
20044 L:      platform-driver-x86@vger.kernel.org
20045 S:      Maintained
20046 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
20047 F:      drivers/platform/olpc/
20048 F:      drivers/platform/x86/
20049
20050 X86 PLATFORM DRIVERS - ARCH
20051 R:      Darren Hart <dvhart@infradead.org>
20052 R:      Andy Shevchenko <andy@infradead.org>
20053 L:      platform-driver-x86@vger.kernel.org
20054 L:      x86@kernel.org
20055 S:      Maintained
20056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20057 F:      arch/x86/platform
20058
20059 X86 PLATFORM UV HPE SUPERDOME FLEX
20060 M:      Steve Wahl <steve.wahl@hpe.com>
20061 R:      Mike Travis <mike.travis@hpe.com>
20062 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
20063 R:      Russ Anderson <russ.anderson@hpe.com>
20064 S:      Supported
20065 F:      arch/x86/include/asm/uv/
20066 F:      arch/x86/kernel/apic/x2apic_uv_x.c
20067 F:      arch/x86/platform/uv/
20068
20069 X86 VDSO
20070 M:      Andy Lutomirski <luto@kernel.org>
20071 L:      linux-kernel@vger.kernel.org
20072 S:      Maintained
20073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
20074 F:      arch/x86/entry/vdso/
20075
20076 XARRAY
20077 M:      Matthew Wilcox <willy@infradead.org>
20078 L:      linux-fsdevel@vger.kernel.org
20079 S:      Supported
20080 F:      Documentation/core-api/xarray.rst
20081 F:      include/linux/idr.h
20082 F:      include/linux/xarray.h
20083 F:      lib/idr.c
20084 F:      lib/xarray.c
20085 F:      tools/testing/radix-tree
20086
20087 XBOX DVD IR REMOTE
20088 M:      Benjamin Valentin <benpicco@googlemail.com>
20089 S:      Maintained
20090 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
20091 F:      drivers/media/rc/xbox_remote.c
20092
20093 XC2028/3028 TUNER DRIVER
20094 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20095 L:      linux-media@vger.kernel.org
20096 S:      Maintained
20097 W:      https://linuxtv.org
20098 T:      git git://linuxtv.org/media_tree.git
20099 F:      drivers/media/tuners/tuner-xc2028.*
20100
20101 XDP (eXpress Data Path)
20102 M:      Alexei Starovoitov <ast@kernel.org>
20103 M:      Daniel Borkmann <daniel@iogearbox.net>
20104 M:      David S. Miller <davem@davemloft.net>
20105 M:      Jakub Kicinski <kuba@kernel.org>
20106 M:      Jesper Dangaard Brouer <hawk@kernel.org>
20107 M:      John Fastabend <john.fastabend@gmail.com>
20108 L:      netdev@vger.kernel.org
20109 L:      bpf@vger.kernel.org
20110 S:      Supported
20111 F:      include/net/xdp.h
20112 F:      include/net/xdp_priv.h
20113 F:      include/trace/events/xdp.h
20114 F:      kernel/bpf/cpumap.c
20115 F:      kernel/bpf/devmap.c
20116 F:      net/core/xdp.c
20117 F:      samples/bpf/xdp*
20118 F:      tools/testing/selftests/bpf/*xdp*
20119 F:      tools/testing/selftests/bpf/*/*xdp*
20120 F:      drivers/net/ethernet/*/*/*/*/*xdp*
20121 F:      drivers/net/ethernet/*/*/*xdp*
20122 K:      (?:\b|_)xdp(?:\b|_)
20123
20124 XDP SOCKETS (AF_XDP)
20125 M:      Björn Töpel <bjorn@kernel.org>
20126 M:      Magnus Karlsson <magnus.karlsson@intel.com>
20127 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
20128 L:      netdev@vger.kernel.org
20129 L:      bpf@vger.kernel.org
20130 S:      Maintained
20131 F:      Documentation/networking/af_xdp.rst
20132 F:      include/net/xdp_sock*
20133 F:      include/net/xsk_buff_pool.h
20134 F:      include/uapi/linux/if_xdp.h
20135 F:      include/uapi/linux/xdp_diag.h
20136 F:      include/net/netns/xdp.h
20137 F:      net/xdp/
20138 F:      samples/bpf/xdpsock*
20139 F:      tools/lib/bpf/xsk*
20140
20141 XEN BLOCK SUBSYSTEM
20142 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
20143 M:      Roger Pau Monné <roger.pau@citrix.com>
20144 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20145 S:      Supported
20146 F:      drivers/block/xen*
20147 F:      drivers/block/xen-blkback/*
20148
20149 XEN HYPERVISOR ARM
20150 M:      Stefano Stabellini <sstabellini@kernel.org>
20151 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20152 S:      Maintained
20153 F:      arch/arm/include/asm/xen/
20154 F:      arch/arm/xen/
20155
20156 XEN HYPERVISOR ARM64
20157 M:      Stefano Stabellini <sstabellini@kernel.org>
20158 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20159 S:      Maintained
20160 F:      arch/arm64/include/asm/xen/
20161 F:      arch/arm64/xen/
20162
20163 XEN HYPERVISOR INTERFACE
20164 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
20165 M:      Juergen Gross <jgross@suse.com>
20166 R:      Stefano Stabellini <sstabellini@kernel.org>
20167 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20168 S:      Supported
20169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
20170 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
20171 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
20172 F:      arch/x86/include/asm/pvclock-abi.h
20173 F:      arch/x86/include/asm/xen/
20174 F:      arch/x86/platform/pvh/
20175 F:      arch/x86/xen/
20176 F:      drivers/*/xen-*front.c
20177 F:      drivers/xen/
20178 F:      include/uapi/xen/
20179 F:      include/xen/
20180
20181 XEN NETWORK BACKEND DRIVER
20182 M:      Wei Liu <wei.liu@kernel.org>
20183 M:      Paul Durrant <paul@xen.org>
20184 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20185 L:      netdev@vger.kernel.org
20186 S:      Supported
20187 F:      drivers/net/xen-netback/*
20188
20189 XEN PCI SUBSYSTEM
20190 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
20191 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20192 S:      Supported
20193 F:      arch/x86/pci/*xen*
20194 F:      drivers/pci/*xen*
20195
20196 XEN PVSCSI DRIVERS
20197 M:      Juergen Gross <jgross@suse.com>
20198 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20199 L:      linux-scsi@vger.kernel.org
20200 S:      Supported
20201 F:      drivers/scsi/xen-scsifront.c
20202 F:      drivers/xen/xen-scsiback.c
20203 F:      include/xen/interface/io/vscsiif.h
20204
20205 XEN SOUND FRONTEND DRIVER
20206 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
20207 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20208 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20209 S:      Supported
20210 F:      sound/xen/*
20211
20212 XEN SWIOTLB SUBSYSTEM
20213 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
20214 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20215 L:      iommu@lists.linux-foundation.org
20216 S:      Supported
20217 F:      arch/x86/xen/*swiotlb*
20218 F:      drivers/xen/*swiotlb*
20219
20220 XFS FILESYSTEM
20221 C:      irc://irc.oftc.net/xfs
20222 M:      Darrick J. Wong <djwong@kernel.org>
20223 M:      linux-xfs@vger.kernel.org
20224 L:      linux-xfs@vger.kernel.org
20225 S:      Supported
20226 W:      http://xfs.org/
20227 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
20228 F:      Documentation/ABI/testing/sysfs-fs-xfs
20229 F:      Documentation/admin-guide/xfs.rst
20230 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
20231 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
20232 F:      fs/xfs/
20233 F:      include/uapi/linux/dqblk_xfs.h
20234 F:      include/uapi/linux/fsmap.h
20235
20236 XILINX AXI ETHERNET DRIVER
20237 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
20238 S:      Maintained
20239 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
20240
20241 XILINX CAN DRIVER
20242 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
20243 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
20244 L:      linux-can@vger.kernel.org
20245 S:      Maintained
20246 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
20247 F:      drivers/net/can/xilinx_can.c
20248
20249 XILINX GPIO DRIVER
20250 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
20251 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
20252 R:      Michal Simek <michal.simek@xilinx.com>
20253 S:      Maintained
20254 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
20255 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.txt
20256 F:      drivers/gpio/gpio-xilinx.c
20257 F:      drivers/gpio/gpio-zynq.c
20258
20259 XILINX SD-FEC IP CORES
20260 M:      Derek Kiernan <derek.kiernan@xilinx.com>
20261 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
20262 S:      Maintained
20263 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
20264 F:      Documentation/misc-devices/xilinx_sdfec.rst
20265 F:      drivers/misc/Kconfig
20266 F:      drivers/misc/Makefile
20267 F:      drivers/misc/xilinx_sdfec.c
20268 F:      include/uapi/misc/xilinx_sdfec.h
20269
20270 XILINX UARTLITE SERIAL DRIVER
20271 M:      Peter Korsgaard <jacmet@sunsite.dk>
20272 L:      linux-serial@vger.kernel.org
20273 S:      Maintained
20274 F:      drivers/tty/serial/uartlite.c
20275
20276 XILINX VIDEO IP CORES
20277 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20278 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20279 L:      linux-media@vger.kernel.org
20280 S:      Supported
20281 T:      git git://linuxtv.org/media_tree.git
20282 F:      Documentation/devicetree/bindings/media/xilinx/
20283 F:      drivers/media/platform/xilinx/
20284 F:      include/uapi/linux/xilinx-v4l2-controls.h
20285
20286 XILINX ZYNQMP DPDMA DRIVER
20287 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20288 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20289 L:      dmaengine@vger.kernel.org
20290 S:      Supported
20291 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
20292 F:      drivers/dma/xilinx/xilinx_dpdma.c
20293 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
20294
20295 XILINX ZYNQMP PSGTR PHY DRIVER
20296 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
20297 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20298 L:      linux-kernel@vger.kernel.org
20299 S:      Supported
20300 T:      git https://github.com/Xilinx/linux-xlnx.git
20301 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
20302 F:      drivers/phy/xilinx/phy-zynqmp.c
20303
20304 XILLYBUS DRIVER
20305 M:      Eli Billauer <eli.billauer@gmail.com>
20306 L:      linux-kernel@vger.kernel.org
20307 S:      Supported
20308 F:      drivers/char/xillybus/
20309
20310 XLP9XX I2C DRIVER
20311 M:      George Cherian <gcherian@marvell.com>
20312 L:      linux-i2c@vger.kernel.org
20313 S:      Supported
20314 W:      http://www.marvell.com
20315 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
20316 F:      drivers/i2c/busses/i2c-xlp9xx.c
20317
20318 XRA1403 GPIO EXPANDER
20319 M:      Nandor Han <nandor.han@ge.com>
20320 M:      Semi Malinen <semi.malinen@ge.com>
20321 L:      linux-gpio@vger.kernel.org
20322 S:      Maintained
20323 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
20324 F:      drivers/gpio/gpio-xra1403.c
20325
20326 XTENSA XTFPGA PLATFORM SUPPORT
20327 M:      Max Filippov <jcmvbkbc@gmail.com>
20328 L:      linux-xtensa@linux-xtensa.org
20329 S:      Maintained
20330 F:      drivers/spi/spi-xtensa-xtfpga.c
20331 F:      sound/soc/xtensa/xtfpga-i2s.c
20332
20333 YAM DRIVER FOR AX.25
20334 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
20335 L:      linux-hams@vger.kernel.org
20336 S:      Maintained
20337 F:      drivers/net/hamradio/yam*
20338 F:      include/linux/yam.h
20339
20340 YAMA SECURITY MODULE
20341 M:      Kees Cook <keescook@chromium.org>
20342 S:      Supported
20343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
20344 F:      Documentation/admin-guide/LSM/Yama.rst
20345 F:      security/yama/
20346
20347 YEALINK PHONE DRIVER
20348 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
20349 L:      usbb2k-api-dev@nongnu.org
20350 S:      Maintained
20351 F:      Documentation/input/devices/yealink.rst
20352 F:      drivers/input/misc/yealink.*
20353
20354 Z8530 DRIVER FOR AX.25
20355 M:      Joerg Reuter <jreuter@yaina.de>
20356 L:      linux-hams@vger.kernel.org
20357 S:      Maintained
20358 W:      http://yaina.de/jreuter/
20359 W:      http://www.qsl.net/dl1bke/
20360 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
20361 F:      drivers/net/hamradio/*scc.c
20362 F:      drivers/net/hamradio/z8530.h
20363
20364 ZBUD COMPRESSED PAGE ALLOCATOR
20365 M:      Seth Jennings <sjenning@redhat.com>
20366 M:      Dan Streetman <ddstreet@ieee.org>
20367 L:      linux-mm@kvack.org
20368 S:      Maintained
20369 F:      mm/zbud.c
20370
20371 ZD1211RW WIRELESS DRIVER
20372 M:      Daniel Drake <dsd@gentoo.org>
20373 M:      Ulrich Kunitz <kune@deine-taler.de>
20374 L:      linux-wireless@vger.kernel.org
20375 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
20376 S:      Maintained
20377 W:      http://zd1211.ath.cx/wiki/DriverRewrite
20378 F:      drivers/net/wireless/zydas/zd1211rw/
20379
20380 ZD1301 MEDIA DRIVER
20381 M:      Antti Palosaari <crope@iki.fi>
20382 L:      linux-media@vger.kernel.org
20383 S:      Maintained
20384 W:      https://linuxtv.org/
20385 W:      http://palosaari.fi/linux/
20386 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20387 F:      drivers/media/usb/dvb-usb-v2/zd1301*
20388
20389 ZD1301_DEMOD MEDIA DRIVER
20390 M:      Antti Palosaari <crope@iki.fi>
20391 L:      linux-media@vger.kernel.org
20392 S:      Maintained
20393 W:      https://linuxtv.org/
20394 W:      http://palosaari.fi/linux/
20395 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20396 F:      drivers/media/dvb-frontends/zd1301_demod*
20397
20398 ZHAOXIN PROCESSOR SUPPORT
20399 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
20400 L:      linux-kernel@vger.kernel.org
20401 S:      Maintained
20402 F:      arch/x86/kernel/cpu/zhaoxin.c
20403
20404 ZONEFS FILESYSTEM
20405 M:      Damien Le Moal <damien.lemoal@wdc.com>
20406 M:      Naohiro Aota <naohiro.aota@wdc.com>
20407 R:      Johannes Thumshirn <jth@kernel.org>
20408 L:      linux-fsdevel@vger.kernel.org
20409 S:      Maintained
20410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
20411 F:      Documentation/filesystems/zonefs.rst
20412 F:      fs/zonefs/
20413
20414 ZPOOL COMPRESSED PAGE STORAGE API
20415 M:      Dan Streetman <ddstreet@ieee.org>
20416 L:      linux-mm@kvack.org
20417 S:      Maintained
20418 F:      include/linux/zpool.h
20419 F:      mm/zpool.c
20420
20421 ZR36067 VIDEO FOR LINUX DRIVER
20422 M:      Corentin Labbe <clabbe@baylibre.com>
20423 L:      mjpeg-users@lists.sourceforge.net
20424 L:      linux-media@vger.kernel.org
20425 S:      Maintained
20426 W:      http://mjpeg.sourceforge.net/driver-zoran/
20427 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20428 F:      Documentation/driver-api/media/drivers/zoran.rst
20429 F:      drivers/staging/media/zoran/
20430
20431 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
20432 M:      Minchan Kim <minchan@kernel.org>
20433 M:      Nitin Gupta <ngupta@vflare.org>
20434 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20435 L:      linux-kernel@vger.kernel.org
20436 S:      Maintained
20437 F:      Documentation/admin-guide/blockdev/zram.rst
20438 F:      drivers/block/zram/
20439
20440 ZS DECSTATION Z85C30 SERIAL DRIVER
20441 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
20442 S:      Maintained
20443 F:      drivers/tty/serial/zs.*
20444
20445 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
20446 M:      Minchan Kim <minchan@kernel.org>
20447 M:      Nitin Gupta <ngupta@vflare.org>
20448 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20449 L:      linux-mm@kvack.org
20450 S:      Maintained
20451 F:      Documentation/vm/zsmalloc.rst
20452 F:      include/linux/zsmalloc.h
20453 F:      mm/zsmalloc.c
20454
20455 ZSWAP COMPRESSED SWAP CACHING
20456 M:      Seth Jennings <sjenning@redhat.com>
20457 M:      Dan Streetman <ddstreet@ieee.org>
20458 M:      Vitaly Wool <vitaly.wool@konsulko.com>
20459 L:      linux-mm@kvack.org
20460 S:      Maintained
20461 F:      mm/zswap.c
20462
20463 THE REST
20464 M:      Linus Torvalds <torvalds@linux-foundation.org>
20465 L:      linux-kernel@vger.kernel.org
20466 S:      Buried alive in reporters
20467 Q:      http://patchwork.kernel.org/project/LKML/list/
20468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
20469 F:      *
20470 F:      */