Merge tag 'mmc-v5.14-2' of git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc
[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 PIO DRIVER
795 M:      Joyce Ooi <joyce.ooi@intel.com>
796 L:      linux-gpio@vger.kernel.org
797 S:      Maintained
798 F:      drivers/gpio/gpio-altera.c
799
800 ALTERA SYSTEM MANAGER DRIVER
801 M:      Thor Thayer <thor.thayer@linux.intel.com>
802 S:      Maintained
803 F:      drivers/mfd/altera-sysmgr.c
804 F:      include/linux/mfd/altera-sysmgr.h
805
806 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
807 M:      Thor Thayer <thor.thayer@linux.intel.com>
808 S:      Maintained
809 F:      drivers/gpio/gpio-altera-a10sr.c
810 F:      drivers/mfd/altera-a10sr.c
811 F:      drivers/reset/reset-a10sr.c
812 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
813 F:      include/linux/mfd/altera-a10sr.h
814
815 ALTERA TRIPLE SPEED ETHERNET DRIVER
816 M:      Joyce Ooi <joyce.ooi@intel.com>
817 L:      netdev@vger.kernel.org
818 S:      Maintained
819 F:      drivers/net/ethernet/altera/
820
821 ALTERA UART/JTAG UART SERIAL DRIVERS
822 M:      Tobias Klauser <tklauser@distanz.ch>
823 L:      linux-serial@vger.kernel.org
824 S:      Maintained
825 F:      drivers/tty/serial/altera_jtaguart.c
826 F:      drivers/tty/serial/altera_uart.c
827 F:      include/linux/altera_jtaguart.h
828 F:      include/linux/altera_uart.h
829
830 AMAZON ANNAPURNA LABS FIC DRIVER
831 M:      Talel Shenhar <talel@amazon.com>
832 S:      Maintained
833 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
834 F:      drivers/irqchip/irq-al-fic.c
835
836 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
837 M:      Talel Shenhar <talel@amazon.com>
838 M:      Talel Shenhar <talelshenhar@gmail.com>
839 S:      Maintained
840 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
841 F:      drivers/edac/al_mc_edac.c
842
843 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
844 M:      Talel Shenhar <talel@amazon.com>
845 S:      Maintained
846 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
847 F:      drivers/thermal/thermal_mmio.c
848
849 AMAZON ETHERNET DRIVERS
850 M:      Netanel Belgazal <netanel@amazon.com>
851 M:      Arthur Kiyanovski <akiyano@amazon.com>
852 R:      Guy Tzalik <gtzalik@amazon.com>
853 R:      Saeed Bishara <saeedb@amazon.com>
854 L:      netdev@vger.kernel.org
855 S:      Supported
856 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
857 F:      drivers/net/ethernet/amazon/
858
859 AMAZON RDMA EFA DRIVER
860 M:      Gal Pressman <galpress@amazon.com>
861 R:      Yossi Leybovich <sleybo@amazon.com>
862 L:      linux-rdma@vger.kernel.org
863 S:      Supported
864 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
865 F:      drivers/infiniband/hw/efa/
866 F:      include/uapi/rdma/efa-abi.h
867
868 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
869 M:      Tom Lendacky <thomas.lendacky@amd.com>
870 M:      John Allen <john.allen@amd.com>
871 L:      linux-crypto@vger.kernel.org
872 S:      Supported
873 F:      drivers/crypto/ccp/
874 F:      include/linux/ccp.h
875
876 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
877 M:      Brijesh Singh <brijesh.singh@amd.com>
878 M:      Tom Lendacky <thomas.lendacky@amd.com>
879 L:      linux-crypto@vger.kernel.org
880 S:      Supported
881 F:      drivers/crypto/ccp/sev*
882 F:      include/uapi/linux/psp-sev.h
883
884 AMD DISPLAY CORE
885 M:      Harry Wentland <harry.wentland@amd.com>
886 M:      Leo Li <sunpeng.li@amd.com>
887 L:      amd-gfx@lists.freedesktop.org
888 S:      Supported
889 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
890 F:      drivers/gpu/drm/amd/display/
891
892 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
893 M:      Huang Rui <ray.huang@amd.com>
894 L:      linux-hwmon@vger.kernel.org
895 S:      Supported
896 F:      Documentation/hwmon/fam15h_power.rst
897 F:      drivers/hwmon/fam15h_power.c
898
899 AMD FCH GPIO DRIVER
900 M:      Enrico Weigelt, metux IT consult <info@metux.net>
901 L:      linux-gpio@vger.kernel.org
902 S:      Maintained
903 F:      drivers/gpio/gpio-amd-fch.c
904 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
905
906 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
907 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
908 S:      Orphan
909 F:      drivers/usb/gadget/udc/amd5536udc.*
910
911 AMD GEODE PROCESSOR/CHIPSET SUPPORT
912 M:      Andres Salomon <dilinger@queued.net>
913 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
914 S:      Supported
915 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
916 F:      arch/x86/include/asm/geode.h
917 F:      drivers/char/hw_random/geode-rng.c
918 F:      drivers/crypto/geode*
919 F:      drivers/video/fbdev/geode/
920
921 AMD IOMMU (AMD-VI)
922 M:      Joerg Roedel <joro@8bytes.org>
923 L:      iommu@lists.linux-foundation.org
924 S:      Maintained
925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
926 F:      drivers/iommu/amd/
927 F:      include/linux/amd-iommu.h
928
929 AMD KFD
930 M:      Felix Kuehling <Felix.Kuehling@amd.com>
931 L:      amd-gfx@lists.freedesktop.org
932 S:      Supported
933 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
934 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
935 F:      drivers/gpu/drm/amd/amdkfd/
936 F:      drivers/gpu/drm/amd/include/cik_structs.h
937 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
938 F:      drivers/gpu/drm/amd/include/v9_structs.h
939 F:      drivers/gpu/drm/amd/include/vi_structs.h
940 F:      include/uapi/linux/kfd_ioctl.h
941
942 AMD SPI DRIVER
943 M:      Sanjay R Mehta <sanju.mehta@amd.com>
944 S:      Maintained
945 F:      drivers/spi/spi-amd.c
946
947 AMD MP2 I2C DRIVER
948 M:      Elie Morisse <syniurge@gmail.com>
949 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
950 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
951 L:      linux-i2c@vger.kernel.org
952 S:      Maintained
953 F:      drivers/i2c/busses/i2c-amd-mp2*
954
955 AMD PMC DRIVER
956 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
957 L:      platform-driver-x86@vger.kernel.org
958 S:      Maintained
959 F:      drivers/platform/x86/amd-pmc.*
960
961 AMD POWERPLAY
962 M:      Evan Quan <evan.quan@amd.com>
963 L:      amd-gfx@lists.freedesktop.org
964 S:      Supported
965 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
966 F:      drivers/gpu/drm/amd/pm/powerplay/
967
968 AMD SEATTLE DEVICE TREE SUPPORT
969 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
970 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
971 M:      Tom Lendacky <thomas.lendacky@amd.com>
972 S:      Supported
973 F:      arch/arm64/boot/dts/amd/
974
975 AMD XGBE DRIVER
976 M:      Tom Lendacky <thomas.lendacky@amd.com>
977 L:      netdev@vger.kernel.org
978 S:      Supported
979 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
980 F:      drivers/net/ethernet/amd/xgbe/
981
982 AMD SENSOR FUSION HUB DRIVER
983 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
984 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
985 L:      linux-input@vger.kernel.org
986 S:      Maintained
987 F:      Documentation/hid/amd-sfh*
988 F:      drivers/hid/amd-sfh-hid/
989
990 AMS AS73211 DRIVER
991 M:      Christian Eggers <ceggers@arri.de>
992 L:      linux-iio@vger.kernel.org
993 S:      Maintained
994 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
995 F:      drivers/iio/light/as73211.c
996
997 ANALOG DEVICES INC AD7192 DRIVER
998 M:      Alexandru Tachici <alexandru.tachici@analog.com>
999 L:      linux-iio@vger.kernel.org
1000 S:      Supported
1001 W:      http://ez.analog.com/community/linux-device-drivers
1002 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1003 F:      drivers/iio/adc/ad7192.c
1004
1005 ANALOG DEVICES INC AD7292 DRIVER
1006 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.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,ad7292.yaml
1011 F:      drivers/iio/adc/ad7292.c
1012
1013 ANALOG DEVICES INC AD7768-1 DRIVER
1014 M:      Michael Hennerich <Michael.Hennerich@analog.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,ad7768-1.yaml
1019 F:      drivers/iio/adc/ad7768-1.c
1020
1021 ANALOG DEVICES INC AD7780 DRIVER
1022 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1023 M:      Renato Lui Geh <renatogeh@gmail.com>
1024 L:      linux-iio@vger.kernel.org
1025 S:      Supported
1026 W:      http://ez.analog.com/community/linux-device-drivers
1027 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1028 F:      drivers/iio/adc/ad7780.c
1029
1030 ANALOG DEVICES INC AD9389B DRIVER
1031 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1032 L:      linux-media@vger.kernel.org
1033 S:      Maintained
1034 F:      drivers/media/i2c/ad9389b*
1035
1036 ANALOG DEVICES INC ADGS1408 DRIVER
1037 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1038 S:      Supported
1039 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1040 F:      drivers/mux/adgs1408.c
1041
1042 ANALOG DEVICES INC ADIN DRIVER
1043 M:      Michael Hennerich <michael.hennerich@analog.com>
1044 L:      netdev@vger.kernel.org
1045 S:      Supported
1046 W:      http://ez.analog.com/community/linux-device-drivers
1047 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1048 F:      drivers/net/phy/adin.c
1049
1050 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1051 M:      Nuno Sa <nuno.sa@analog.com>
1052 L:      linux-iio@vger.kernel.org
1053 S:      Supported
1054 F:      drivers/iio/imu/adis.c
1055 F:      include/linux/iio/imu/adis.h
1056
1057 ANALOG DEVICES INC ADIS16460 DRIVER
1058 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1059 L:      linux-iio@vger.kernel.org
1060 S:      Supported
1061 W:      http://ez.analog.com/community/linux-device-drivers
1062 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1063 F:      drivers/iio/imu/adis16460.c
1064
1065 ANALOG DEVICES INC ADIS16475 DRIVER
1066 M:      Nuno Sa <nuno.sa@analog.com>
1067 L:      linux-iio@vger.kernel.org
1068 W:      http://ez.analog.com/community/linux-device-drivers
1069 S:      Supported
1070 F:      drivers/iio/imu/adis16475.c
1071 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1072
1073 ANALOG DEVICES INC ADM1177 DRIVER
1074 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1075 L:      linux-hwmon@vger.kernel.org
1076 S:      Supported
1077 W:      http://ez.analog.com/community/linux-device-drivers
1078 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1079 F:      drivers/hwmon/adm1177.c
1080
1081 ANALOG DEVICES INC ADP5061 DRIVER
1082 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1083 L:      linux-pm@vger.kernel.org
1084 S:      Supported
1085 W:      http://ez.analog.com/community/linux-device-drivers
1086 F:      drivers/power/supply/adp5061.c
1087
1088 ANALOG DEVICES INC ADV7180 DRIVER
1089 M:      Lars-Peter Clausen <lars@metafoo.de>
1090 L:      linux-media@vger.kernel.org
1091 S:      Supported
1092 W:      http://ez.analog.com/community/linux-device-drivers
1093 F:      drivers/media/i2c/adv7180.c
1094 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1095
1096 ANALOG DEVICES INC ADV748X DRIVER
1097 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1098 L:      linux-media@vger.kernel.org
1099 S:      Maintained
1100 F:      drivers/media/i2c/adv748x/*
1101
1102 ANALOG DEVICES INC ADV7511 DRIVER
1103 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1104 L:      linux-media@vger.kernel.org
1105 S:      Maintained
1106 F:      drivers/media/i2c/adv7511*
1107
1108 ANALOG DEVICES INC ADV7604 DRIVER
1109 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1110 L:      linux-media@vger.kernel.org
1111 S:      Maintained
1112 F:      drivers/media/i2c/adv7604*
1113 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1114
1115 ANALOG DEVICES INC ADV7842 DRIVER
1116 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1117 L:      linux-media@vger.kernel.org
1118 S:      Maintained
1119 F:      drivers/media/i2c/adv7842*
1120
1121 ANALOG DEVICES INC ADXRS290 DRIVER
1122 M:      Nishant Malpani <nish.malpani25@gmail.com>
1123 L:      linux-iio@vger.kernel.org
1124 S:      Supported
1125 F:      drivers/iio/gyro/adxrs290.c
1126 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1127
1128 ANALOG DEVICES INC ASOC CODEC DRIVERS
1129 M:      Lars-Peter Clausen <lars@metafoo.de>
1130 M:      Nuno Sá <nuno.sa@analog.com>
1131 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1132 S:      Supported
1133 W:      http://wiki.analog.com/
1134 W:      http://ez.analog.com/community/linux-device-drivers
1135 F:      sound/soc/codecs/ad1*
1136 F:      sound/soc/codecs/ad7*
1137 F:      sound/soc/codecs/adau*
1138 F:      sound/soc/codecs/adav*
1139 F:      sound/soc/codecs/sigmadsp.*
1140 F:      sound/soc/codecs/ssm*
1141
1142 ANALOG DEVICES INC DMA DRIVERS
1143 M:      Lars-Peter Clausen <lars@metafoo.de>
1144 S:      Supported
1145 W:      http://ez.analog.com/community/linux-device-drivers
1146 F:      drivers/dma/dma-axi-dmac.c
1147
1148 ANALOG DEVICES INC IIO DRIVERS
1149 M:      Lars-Peter Clausen <lars@metafoo.de>
1150 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1151 S:      Supported
1152 W:      http://wiki.analog.com/
1153 W:      http://ez.analog.com/community/linux-device-drivers
1154 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1155 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1156 F:      Documentation/devicetree/bindings/iio/*/adi,*
1157 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1158 F:      drivers/iio/*/ad*
1159 F:      drivers/iio/adc/ltc249*
1160 F:      drivers/iio/amplifiers/hmc425a.c
1161 F:      drivers/staging/iio/*/ad*
1162 X:      drivers/iio/*/adjd*
1163
1164 ANALOGBITS PLL LIBRARIES
1165 M:      Paul Walmsley <paul.walmsley@sifive.com>
1166 S:      Supported
1167 F:      drivers/clk/analogbits/*
1168 F:      include/linux/clk/analogbits*
1169
1170 ANDES ARCHITECTURE
1171 M:      Nick Hu <nickhu@andestech.com>
1172 M:      Greentime Hu <green.hu@gmail.com>
1173 M:      Vincent Chen <deanbo422@gmail.com>
1174 S:      Supported
1175 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1176 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1177 F:      Documentation/devicetree/bindings/nds32/
1178 F:      arch/nds32/
1179 N:      nds32
1180 K:      nds32
1181
1182 ANDROID CONFIG FRAGMENTS
1183 M:      Rob Herring <robh@kernel.org>
1184 S:      Supported
1185 F:      kernel/configs/android*
1186
1187 ANDROID DRIVERS
1188 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1189 M:      Arve Hjønnevåg <arve@android.com>
1190 M:      Todd Kjos <tkjos@android.com>
1191 M:      Martijn Coenen <maco@android.com>
1192 M:      Joel Fernandes <joel@joelfernandes.org>
1193 M:      Christian Brauner <christian@brauner.io>
1194 M:      Hridya Valsaraju <hridya@google.com>
1195 M:      Suren Baghdasaryan <surenb@google.com>
1196 L:      linux-kernel@vger.kernel.org
1197 S:      Supported
1198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1199 F:      drivers/android/
1200 F:      drivers/staging/android/
1201
1202 ANDROID GOLDFISH PIC DRIVER
1203 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1204 S:      Supported
1205 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1206 F:      drivers/irqchip/irq-goldfish-pic.c
1207
1208 ANDROID GOLDFISH RTC DRIVER
1209 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1210 S:      Supported
1211 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1212 F:      drivers/rtc/rtc-goldfish.c
1213
1214 AOA (Apple Onboard Audio) ALSA DRIVER
1215 M:      Johannes Berg <johannes@sipsolutions.net>
1216 L:      linuxppc-dev@lists.ozlabs.org
1217 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1218 S:      Maintained
1219 F:      sound/aoa/
1220
1221 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1222 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1223 L:      linux-iio@vger.kernel.org
1224 S:      Maintained
1225 F:      drivers/iio/adc/stx104.c
1226
1227 APM DRIVER
1228 M:      Jiri Kosina <jikos@kernel.org>
1229 S:      Odd fixes
1230 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1231 F:      arch/x86/kernel/apm_32.c
1232 F:      drivers/char/apm-emulation.c
1233 F:      include/linux/apm_bios.h
1234 F:      include/uapi/linux/apm_bios.h
1235
1236 APPARMOR SECURITY MODULE
1237 M:      John Johansen <john.johansen@canonical.com>
1238 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1239 S:      Supported
1240 W:      wiki.apparmor.net
1241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1242 F:      Documentation/admin-guide/LSM/apparmor.rst
1243 F:      security/apparmor/
1244
1245 APPLE BCM5974 MULTITOUCH DRIVER
1246 M:      Henrik Rydberg <rydberg@bitmath.org>
1247 L:      linux-input@vger.kernel.org
1248 S:      Odd fixes
1249 F:      drivers/input/mouse/bcm5974.c
1250
1251 APPLE SMC DRIVER
1252 M:      Henrik Rydberg <rydberg@bitmath.org>
1253 L:      linux-hwmon@vger.kernel.org
1254 S:      Odd fixes
1255 F:      drivers/hwmon/applesmc.c
1256
1257 APPLETALK NETWORK LAYER
1258 L:      netdev@vger.kernel.org
1259 S:      Odd fixes
1260 F:      drivers/net/appletalk/
1261 F:      include/linux/atalk.h
1262 F:      include/uapi/linux/atalk.h
1263 F:      net/appletalk/
1264
1265 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1266 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1267 S:      Supported
1268 F:      arch/arm64/boot/dts/apm/
1269
1270 APPLIED MICRO (APM) X-GENE SOC EDAC
1271 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1272 S:      Supported
1273 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1274 F:      drivers/edac/xgene_edac.c
1275
1276 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1277 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1278 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1279 S:      Supported
1280 F:      drivers/net/ethernet/apm/xgene-v2/
1281
1282 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1283 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1284 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1285 M:      Quan Nguyen <quan@os.amperecomputing.com>
1286 S:      Supported
1287 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1288 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1289 F:      drivers/net/ethernet/apm/xgene/
1290 F:      drivers/net/mdio/mdio-xgene.c
1291
1292 APPLIED MICRO (APM) X-GENE SOC PMU
1293 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1294 S:      Supported
1295 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1296 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1297 F:      drivers/perf/xgene_pmu.c
1298
1299 APTINA CAMERA SENSOR PLL
1300 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1301 L:      linux-media@vger.kernel.org
1302 S:      Maintained
1303 F:      drivers/media/i2c/aptina-pll.*
1304
1305 AQUANTIA ETHERNET DRIVER (atlantic)
1306 M:      Igor Russkikh <irusskikh@marvell.com>
1307 L:      netdev@vger.kernel.org
1308 S:      Supported
1309 W:      https://www.marvell.com/
1310 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1311 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1312 F:      drivers/net/ethernet/aquantia/atlantic/
1313
1314 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1315 M:      Egor Pomozov <epomozov@marvell.com>
1316 L:      netdev@vger.kernel.org
1317 S:      Supported
1318 W:      http://www.aquantia.com
1319 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1320
1321 ARASAN NAND CONTROLLER DRIVER
1322 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1323 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1324 L:      linux-mtd@lists.infradead.org
1325 S:      Maintained
1326 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1327 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1328
1329 ARC FRAMEBUFFER DRIVER
1330 M:      Jaya Kumar <jayalk@intworks.biz>
1331 S:      Maintained
1332 F:      drivers/video/fbdev/arcfb.c
1333 F:      drivers/video/fbdev/core/fb_defio.c
1334
1335 ARC PGU DRM DRIVER
1336 M:      Alexey Brodkin <abrodkin@synopsys.com>
1337 S:      Supported
1338 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1339 F:      drivers/gpu/drm/tiny/arcpgu.c
1340
1341 ARCNET NETWORK LAYER
1342 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1343 L:      netdev@vger.kernel.org
1344 S:      Maintained
1345 F:      drivers/net/arcnet/
1346 F:      include/uapi/linux/if_arcnet.h
1347
1348 ARM ARCHITECTED TIMER DRIVER
1349 M:      Mark Rutland <mark.rutland@arm.com>
1350 M:      Marc Zyngier <maz@kernel.org>
1351 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1352 S:      Maintained
1353 F:      arch/arm/include/asm/arch_timer.h
1354 F:      arch/arm64/include/asm/arch_timer.h
1355 F:      drivers/clocksource/arm_arch_timer.c
1356
1357 ARM HDLCD DRM DRIVER
1358 M:      Liviu Dudau <liviu.dudau@arm.com>
1359 S:      Supported
1360 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1361 F:      drivers/gpu/drm/arm/hdlcd_*
1362
1363 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1364 M:      Linus Walleij <linus.walleij@linaro.org>
1365 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1366 S:      Maintained
1367 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1368 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1369 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1370 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1371 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1372 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1373 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1374 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1375 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1376 F:      arch/arm/boot/dts/arm-realview-*
1377 F:      arch/arm/boot/dts/integrator*
1378 F:      arch/arm/boot/dts/versatile*
1379 F:      arch/arm/mach-integrator/
1380 F:      arch/arm/mach-realview/
1381 F:      arch/arm/mach-versatile/
1382 F:      arch/arm/plat-versatile/
1383 F:      drivers/bus/arm-integrator-lm.c
1384 F:      drivers/clk/versatile/
1385 F:      drivers/i2c/busses/i2c-versatile.c
1386 F:      drivers/irqchip/irq-versatile-fpga.c
1387 F:      drivers/mtd/maps/physmap-versatile.*
1388 F:      drivers/power/reset/arm-versatile-reboot.c
1389 F:      drivers/soc/versatile/
1390
1391 ARM KOMEDA DRM-KMS DRIVER
1392 M:      James (Qian) Wang <james.qian.wang@arm.com>
1393 M:      Liviu Dudau <liviu.dudau@arm.com>
1394 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1395 L:      Mali DP Maintainers <malidp@foss.arm.com>
1396 S:      Supported
1397 T:      git git://anongit.freedesktop.org/drm/drm-misc
1398 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1399 F:      Documentation/gpu/komeda-kms.rst
1400 F:      drivers/gpu/drm/arm/display/include/
1401 F:      drivers/gpu/drm/arm/display/komeda/
1402
1403 ARM MALI PANFROST DRM DRIVER
1404 M:      Rob Herring <robh@kernel.org>
1405 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1406 R:      Steven Price <steven.price@arm.com>
1407 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1408 L:      dri-devel@lists.freedesktop.org
1409 S:      Supported
1410 T:      git git://anongit.freedesktop.org/drm/drm-misc
1411 F:      drivers/gpu/drm/panfrost/
1412 F:      include/uapi/drm/panfrost_drm.h
1413
1414 ARM MALI-DP DRM DRIVER
1415 M:      Liviu Dudau <liviu.dudau@arm.com>
1416 M:      Brian Starkey <brian.starkey@arm.com>
1417 L:      Mali DP Maintainers <malidp@foss.arm.com>
1418 S:      Supported
1419 T:      git git://anongit.freedesktop.org/drm/drm-misc
1420 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1421 F:      Documentation/gpu/afbc.rst
1422 F:      drivers/gpu/drm/arm/
1423
1424 ARM MFM AND FLOPPY DRIVERS
1425 M:      Ian Molton <spyro@f2s.com>
1426 S:      Maintained
1427 F:      arch/arm/include/asm/floppy.h
1428 F:      arch/arm/mach-rpc/floppydma.S
1429
1430 ARM PMU PROFILING AND DEBUGGING
1431 M:      Will Deacon <will@kernel.org>
1432 M:      Mark Rutland <mark.rutland@arm.com>
1433 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1434 S:      Maintained
1435 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1436 F:      Documentation/devicetree/bindings/perf/
1437 F:      arch/arm*/include/asm/hw_breakpoint.h
1438 F:      arch/arm*/include/asm/perf_event.h
1439 F:      arch/arm*/kernel/hw_breakpoint.c
1440 F:      arch/arm*/kernel/perf_*
1441 F:      drivers/perf/
1442 F:      include/linux/perf/arm_pmu.h
1443
1444 ARM PORT
1445 M:      Russell King <linux@armlinux.org.uk>
1446 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1447 S:      Odd Fixes
1448 W:      http://www.armlinux.org.uk/
1449 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1450 F:      arch/arm/
1451 X:      arch/arm/boot/dts/
1452
1453 ARM PRIMECELL AACI PL041 DRIVER
1454 M:      Russell King <linux@armlinux.org.uk>
1455 S:      Odd Fixes
1456 F:      sound/arm/aaci.*
1457
1458 ARM PRIMECELL BUS SUPPORT
1459 M:      Russell King <linux@armlinux.org.uk>
1460 S:      Odd Fixes
1461 F:      drivers/amba/
1462 F:      include/linux/amba/bus.h
1463
1464 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1465 M:      Miquel Raynal <miquel.raynal@bootlin.com@bootlin.com>
1466 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1467 L:      linux-mtd@lists.infradead.org
1468 S:      Maintained
1469 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1470 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1471
1472 ARM PRIMECELL PL35X SMC DRIVER
1473 M:      Miquel Raynal <miquel.raynal@bootlin.com@bootlin.com>
1474 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1475 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1476 S:      Maintained
1477 F:      Documentation/devicetree/bindings/mtd/arm,pl353-smc.yaml
1478 F:      drivers/memory/pl353-smc.c
1479
1480 ARM PRIMECELL CLCD PL110 DRIVER
1481 M:      Russell King <linux@armlinux.org.uk>
1482 S:      Odd Fixes
1483 F:      drivers/video/fbdev/amba-clcd.*
1484
1485 ARM PRIMECELL KMI PL050 DRIVER
1486 M:      Russell King <linux@armlinux.org.uk>
1487 S:      Odd Fixes
1488 F:      drivers/input/serio/ambakmi.*
1489 F:      include/linux/amba/kmi.h
1490
1491 ARM PRIMECELL MMCI PL180/1 DRIVER
1492 M:      Russell King <linux@armlinux.org.uk>
1493 S:      Odd Fixes
1494 F:      drivers/mmc/host/mmci.*
1495 F:      include/linux/amba/mmci.h
1496
1497 ARM PRIMECELL SSP PL022 SPI DRIVER
1498 M:      Linus Walleij <linus.walleij@linaro.org>
1499 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1500 S:      Maintained
1501 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1502 F:      drivers/spi/spi-pl022.c
1503
1504 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1505 M:      Russell King <linux@armlinux.org.uk>
1506 S:      Odd Fixes
1507 F:      drivers/tty/serial/amba-pl01*.c
1508 F:      include/linux/amba/serial.h
1509
1510 ARM PRIMECELL VIC PL190/PL192 DRIVER
1511 M:      Linus Walleij <linus.walleij@linaro.org>
1512 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1513 S:      Maintained
1514 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1515 F:      drivers/irqchip/irq-vic.c
1516
1517 ARM SMC WATCHDOG DRIVER
1518 M:      Julius Werner <jwerner@chromium.org>
1519 R:      Evan Benn <evanbenn@chromium.org>
1520 S:      Maintained
1521 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1522 F:      drivers/watchdog/arm_smc_wdt.c
1523
1524 ARM SMMU DRIVERS
1525 M:      Will Deacon <will@kernel.org>
1526 R:      Robin Murphy <robin.murphy@arm.com>
1527 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1528 S:      Maintained
1529 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1530 F:      drivers/iommu/arm/
1531 F:      drivers/iommu/io-pgtable-arm*
1532
1533 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1534 M:      Arnd Bergmann <arnd@arndb.de>
1535 M:      Olof Johansson <olof@lixom.net>
1536 M:      soc@kernel.org
1537 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1538 S:      Maintained
1539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1540 F:      arch/arm/boot/dts/Makefile
1541 F:      arch/arm64/boot/dts/Makefile
1542
1543 ARM SUB-ARCHITECTURES
1544 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1545 S:      Maintained
1546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1547 F:      arch/arm/mach-*/
1548 F:      arch/arm/plat-*/
1549
1550 ARM/ACTIONS SEMI ARCHITECTURE
1551 M:      Andreas Färber <afaerber@suse.de>
1552 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1553 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1554 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1555 S:      Maintained
1556 F:      Documentation/devicetree/bindings/arm/actions.yaml
1557 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1558 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1559 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1560 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1561 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1562 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1563 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1564 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1565 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1566 F:      arch/arm/boot/dts/owl-*
1567 F:      arch/arm/mach-actions/
1568 F:      arch/arm64/boot/dts/actions/
1569 F:      drivers/clk/actions/
1570 F:      drivers/clocksource/timer-owl*
1571 F:      drivers/dma/owl-dma.c
1572 F:      drivers/i2c/busses/i2c-owl.c
1573 F:      drivers/irqchip/irq-owl-sirq.c
1574 F:      drivers/mmc/host/owl-mmc.c
1575 F:      drivers/net/ethernet/actions/
1576 F:      drivers/pinctrl/actions/*
1577 F:      drivers/soc/actions/
1578 F:      include/dt-bindings/power/owl-*
1579 F:      include/dt-bindings/reset/actions,*
1580 F:      include/linux/soc/actions/
1581 N:      owl
1582
1583 ARM/ADS SPHERE MACHINE SUPPORT
1584 M:      Lennert Buytenhek <kernel@wantstofly.org>
1585 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1586 S:      Maintained
1587
1588 ARM/AFEB9260 MACHINE SUPPORT
1589 M:      Sergey Lapin <slapin@ossfans.org>
1590 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1591 S:      Maintained
1592
1593 ARM/AJECO 1ARM MACHINE SUPPORT
1594 M:      Lennert Buytenhek <kernel@wantstofly.org>
1595 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1596 S:      Maintained
1597
1598 ARM/Allwinner SoC Clock Support
1599 M:      Emilio López <emilio@elopez.com.ar>
1600 S:      Maintained
1601 F:      drivers/clk/sunxi/
1602
1603 ARM/Allwinner sunXi SoC support
1604 M:      Maxime Ripard <mripard@kernel.org>
1605 M:      Chen-Yu Tsai <wens@csie.org>
1606 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
1607 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1608 S:      Maintained
1609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1610 L:      linux-sunxi@lists.linux.dev
1611 F:      arch/arm/mach-sunxi/
1612 F:      arch/arm64/boot/dts/allwinner/
1613 F:      drivers/clk/sunxi-ng/
1614 F:      drivers/pinctrl/sunxi/
1615 F:      drivers/soc/sunxi/
1616 N:      allwinner
1617 N:      sun[x456789]i
1618 N:      sun50i
1619
1620 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1621 M:      Neil Armstrong <narmstrong@baylibre.com>
1622 M:      Jerome Brunet <jbrunet@baylibre.com>
1623 L:      linux-amlogic@lists.infradead.org
1624 S:      Maintained
1625 F:      Documentation/devicetree/bindings/clock/amlogic*
1626 F:      drivers/clk/meson/
1627 F:      include/dt-bindings/clock/gxbb*
1628 F:      include/dt-bindings/clock/meson*
1629
1630 ARM/Amlogic Meson SoC Crypto Drivers
1631 M:      Corentin Labbe <clabbe@baylibre.com>
1632 L:      linux-crypto@vger.kernel.org
1633 L:      linux-amlogic@lists.infradead.org
1634 S:      Maintained
1635 F:      Documentation/devicetree/bindings/crypto/amlogic*
1636 F:      drivers/crypto/amlogic/
1637
1638 ARM/Amlogic Meson SoC Sound Drivers
1639 M:      Jerome Brunet <jbrunet@baylibre.com>
1640 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1641 S:      Maintained
1642 F:      Documentation/devicetree/bindings/sound/amlogic*
1643 F:      sound/soc/meson/
1644
1645 ARM/Amlogic Meson SoC support
1646 M:      Neil Armstrong <narmstrong@baylibre.com>
1647 M:      Kevin Hilman <khilman@baylibre.com>
1648 R:      Jerome Brunet <jbrunet@baylibre.com>
1649 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1650 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1651 L:      linux-amlogic@lists.infradead.org
1652 S:      Maintained
1653 W:      http://linux-meson.com/
1654 F:      arch/arm/boot/dts/meson*
1655 F:      arch/arm/mach-meson/
1656 F:      arch/arm64/boot/dts/amlogic/
1657 F:      drivers/mmc/host/meson*
1658 F:      drivers/pinctrl/meson/
1659 F:      drivers/rtc/rtc-meson*
1660 F:      drivers/soc/amlogic/
1661 N:      meson
1662
1663 ARM/Annapurna Labs ALPINE ARCHITECTURE
1664 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1665 M:      Antoine Tenart <atenart@kernel.org>
1666 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1667 S:      Maintained
1668 F:      arch/arm/boot/dts/alpine*
1669 F:      arch/arm/mach-alpine/
1670 F:      arch/arm64/boot/dts/amazon/
1671 F:      drivers/*/*alpine*
1672
1673 ARM/APPLE MACHINE SUPPORT
1674 M:      Hector Martin <marcan@marcan.st>
1675 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1676 S:      Maintained
1677 W:      https://asahilinux.org
1678 B:      https://github.com/AsahiLinux/linux/issues
1679 C:      irc://chat.freenode.net/asahi-dev
1680 T:      git https://github.com/AsahiLinux/linux.git
1681 F:      Documentation/devicetree/bindings/arm/apple.yaml
1682 F:      Documentation/devicetree/bindings/interrupt-controller/apple,aic.yaml
1683 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1684 F:      arch/arm64/boot/dts/apple/
1685 F:      drivers/irqchip/irq-apple-aic.c
1686 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1687 F:      include/dt-bindings/pinctrl/apple.h
1688
1689 ARM/ARTPEC MACHINE SUPPORT
1690 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1691 M:      Lars Persson <lars.persson@axis.com>
1692 L:      linux-arm-kernel@axis.com
1693 S:      Maintained
1694 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1695 F:      arch/arm/boot/dts/artpec6*
1696 F:      arch/arm/mach-artpec
1697 F:      drivers/clk/axis
1698 F:      drivers/crypto/axis
1699 F:      drivers/mmc/host/usdhi6rol0.c
1700 F:      drivers/pinctrl/pinctrl-artpec*
1701
1702 ARM/ASPEED I2C DRIVER
1703 M:      Brendan Higgins <brendanhiggins@google.com>
1704 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1705 R:      Joel Stanley <joel@jms.id.au>
1706 L:      linux-i2c@vger.kernel.org
1707 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1708 S:      Maintained
1709 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1710 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1711 F:      drivers/i2c/busses/i2c-aspeed.c
1712 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1713
1714 ARM/ASPEED MACHINE SUPPORT
1715 M:      Joel Stanley <joel@jms.id.au>
1716 R:      Andrew Jeffery <andrew@aj.id.au>
1717 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1718 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1719 S:      Supported
1720 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1722 F:      arch/arm/boot/dts/aspeed-*
1723 F:      arch/arm/mach-aspeed/
1724 N:      aspeed
1725
1726 ARM/BITMAIN ARCHITECTURE
1727 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1728 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1729 S:      Maintained
1730 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1731 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1732 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1733 F:      arch/arm64/boot/dts/bitmain/
1734 F:      drivers/clk/clk-bm1880.c
1735 F:      drivers/pinctrl/pinctrl-bm1880.c
1736
1737 ARM/CALXEDA HIGHBANK ARCHITECTURE
1738 M:      Andre Przywara <andre.przywara@arm.com>
1739 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1740 S:      Maintained
1741 F:      arch/arm/boot/dts/ecx-*.dts*
1742 F:      arch/arm/boot/dts/highbank.dts
1743 F:      arch/arm/mach-highbank/
1744
1745 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1746 M:      Krzysztof Halasa <khalasa@piap.pl>
1747 S:      Maintained
1748 F:      arch/arm/mach-cns3xxx/
1749
1750 ARM/CAVIUM THUNDER NETWORK DRIVER
1751 M:      Sunil Goutham <sgoutham@marvell.com>
1752 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1753 S:      Supported
1754 F:      drivers/net/ethernet/cavium/thunder/
1755
1756 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1757 M:      Lukasz Majewski <lukma@denx.de>
1758 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1759 S:      Maintained
1760 F:      arch/arm/mach-ep93xx/ts72xx.c
1761
1762 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1763 M:      Alexander Shiyan <shc_work@mail.ru>
1764 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1765 S:      Odd Fixes
1766 N:      clps711x
1767
1768 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1769 M:      Lennert Buytenhek <kernel@wantstofly.org>
1770 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1771 S:      Maintained
1772
1773 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1774 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1775 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1776 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1777 S:      Maintained
1778 F:      arch/arm/mach-ep93xx/
1779 F:      arch/arm/mach-ep93xx/include/mach/
1780
1781 ARM/CLKDEV SUPPORT
1782 M:      Russell King <linux@armlinux.org.uk>
1783 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1784 S:      Maintained
1785 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1786 F:      drivers/clk/clkdev.c
1787
1788 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1789 M:      Baruch Siach <baruch@tkos.co.il>
1790 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1791 S:      Maintained
1792 F:      arch/arm/boot/dts/cx92755*
1793 N:      digicolor
1794
1795 ARM/CONTEC MICRO9 MACHINE SUPPORT
1796 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1797 S:      Maintained
1798 F:      arch/arm/mach-ep93xx/micro9.c
1799
1800 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1801 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1802 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1803 R:      Mike Leach <mike.leach@linaro.org>
1804 R:      Leo Yan <leo.yan@linaro.org>
1805 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1806 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1807 S:      Maintained
1808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1809 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1810 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1811 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1812 F:      Documentation/devicetree/bindings/arm/coresight.txt
1813 F:      Documentation/devicetree/bindings/arm/ete.yaml
1814 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1815 F:      Documentation/trace/coresight/*
1816 F:      drivers/hwtracing/coresight/*
1817 F:      include/dt-bindings/arm/coresight-cti-dt.h
1818 F:      include/linux/coresight*
1819 F:      tools/perf/arch/arm/util/auxtrace.c
1820 F:      tools/perf/arch/arm/util/cs-etm.c
1821 F:      tools/perf/arch/arm/util/cs-etm.h
1822 F:      tools/perf/arch/arm/util/pmu.c
1823 F:      tools/perf/util/cs-etm-decoder/*
1824 F:      tools/perf/util/cs-etm.*
1825
1826 ARM/CORGI MACHINE SUPPORT
1827 M:      Richard Purdie <rpurdie@rpsys.net>
1828 S:      Maintained
1829
1830 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1831 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1832 M:      Linus Walleij <linus.walleij@linaro.org>
1833 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1834 S:      Maintained
1835 T:      git git://github.com/ulli-kroll/linux.git
1836 F:      Documentation/devicetree/bindings/arm/gemini.txt
1837 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1838 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1839 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1840 F:      arch/arm/mach-gemini/
1841 F:      drivers/crypto/gemini/
1842 F:      drivers/net/ethernet/cortina/
1843 F:      drivers/pinctrl/pinctrl-gemini.c
1844 F:      drivers/rtc/rtc-ftrtc010.c
1845
1846 ARM/CZ.NIC TURRIS SUPPORT
1847 M:      Marek Behún <kabel@kernel.org>
1848 S:      Maintained
1849 W:      https://www.turris.cz/
1850 F:      Documentation/ABI/testing/debugfs-moxtet
1851 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1852 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1853 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1854 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1855 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1856 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1857 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1858 F:      drivers/bus/moxtet.c
1859 F:      drivers/firmware/turris-mox-rwtm.c
1860 F:      drivers/leds/leds-turris-omnia.c
1861 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
1862 F:      drivers/gpio/gpio-moxtet.c
1863 F:      drivers/watchdog/armada_37xx_wdt.c
1864 F:      include/dt-bindings/bus/moxtet.h
1865 F:      include/linux/armada-37xx-rwtm-mailbox.h
1866 F:      include/linux/moxtet.h
1867
1868 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1869 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1870 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1871 S:      Maintained
1872 F:      arch/arm/mach-pxa/ezx.c
1873
1874 ARM/FARADAY FA526 PORT
1875 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1876 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1877 S:      Maintained
1878 T:      git git://git.berlios.de/gemini-board
1879 F:      arch/arm/mm/*-fa*
1880
1881 ARM/FOOTBRIDGE ARCHITECTURE
1882 M:      Russell King <linux@armlinux.org.uk>
1883 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1884 S:      Maintained
1885 W:      http://www.armlinux.org.uk/
1886 F:      arch/arm/include/asm/hardware/dec21285.h
1887 F:      arch/arm/mach-footbridge/
1888
1889 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1890 M:      Shawn Guo <shawnguo@kernel.org>
1891 M:      Sascha Hauer <s.hauer@pengutronix.de>
1892 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1893 R:      Fabio Estevam <festevam@gmail.com>
1894 R:      NXP Linux Team <linux-imx@nxp.com>
1895 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1896 S:      Maintained
1897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1898 X:      drivers/media/i2c/
1899 N:      imx
1900 N:      mxs
1901
1902 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1903 M:      Shawn Guo <shawnguo@kernel.org>
1904 M:      Li Yang <leoyang.li@nxp.com>
1905 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1906 S:      Maintained
1907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1908 F:      arch/arm/boot/dts/ls1021a*
1909 F:      arch/arm64/boot/dts/freescale/fsl-*
1910 F:      arch/arm64/boot/dts/freescale/qoriq-*
1911
1912 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1913 M:      Shawn Guo <shawnguo@kernel.org>
1914 M:      Sascha Hauer <s.hauer@pengutronix.de>
1915 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1916 R:      Stefan Agner <stefan@agner.ch>
1917 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1918 S:      Maintained
1919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1920 F:      arch/arm/boot/dts/vf*
1921 F:      arch/arm/mach-imx/*vf610*
1922
1923 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1924 M:      Lennert Buytenhek <kernel@wantstofly.org>
1925 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1926 S:      Maintained
1927
1928 ARM/GUMSTIX MACHINE SUPPORT
1929 M:      Steve Sakoman <sakoman@gmail.com>
1930 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1931 S:      Maintained
1932
1933 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1934 M:      Philipp Zabel <philipp.zabel@gmail.com>
1935 M:      Paul Parsons <lost.distance@yahoo.com>
1936 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1937 S:      Maintained
1938 F:      arch/arm/mach-pxa/hx4700.c
1939 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1940 F:      sound/soc/pxa/hx4700.c
1941
1942 ARM/HISILICON SOC SUPPORT
1943 M:      Wei Xu <xuwei5@hisilicon.com>
1944 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1945 S:      Supported
1946 W:      http://www.hisilicon.com
1947 T:      git git://github.com/hisilicon/linux-hisi.git
1948 F:      arch/arm/boot/dts/hi3*
1949 F:      arch/arm/boot/dts/hip*
1950 F:      arch/arm/boot/dts/hisi*
1951 F:      arch/arm/mach-hisi/
1952 F:      arch/arm64/boot/dts/hisilicon/
1953
1954 ARM/HP JORNADA 7XX MACHINE SUPPORT
1955 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1956 S:      Maintained
1957 W:      www.jlime.com
1958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1959 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1960 F:      arch/arm/mach-sa1100/jornada720.c
1961
1962 ARM/IGEP MACHINE SUPPORT
1963 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1964 M:      Javier Martinez Canillas <javier@dowhile0.org>
1965 L:      linux-omap@vger.kernel.org
1966 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1967 S:      Maintained
1968 F:      arch/arm/boot/dts/omap3-igep*
1969
1970 ARM/INCOME PXA270 SUPPORT
1971 M:      Marek Vasut <marek.vasut@gmail.com>
1972 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1973 S:      Maintained
1974 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1975
1976 ARM/INTEL IOP32X ARM ARCHITECTURE
1977 M:      Lennert Buytenhek <kernel@wantstofly.org>
1978 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1979 S:      Maintained
1980
1981 ARM/INTEL IQ81342EX MACHINE SUPPORT
1982 M:      Lennert Buytenhek <kernel@wantstofly.org>
1983 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1984 S:      Maintained
1985
1986 ARM/INTEL IXDP2850 MACHINE SUPPORT
1987 M:      Lennert Buytenhek <kernel@wantstofly.org>
1988 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1989 S:      Maintained
1990
1991 ARM/INTEL IXP4XX ARM ARCHITECTURE
1992 M:      Linus Walleij <linusw@kernel.org>
1993 M:      Imre Kaloz <kaloz@openwrt.org>
1994 M:      Krzysztof Halasa <khalasa@piap.pl>
1995 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1996 S:      Maintained
1997 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1998 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1999 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2000 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2001 F:      arch/arm/mach-ixp4xx/
2002 F:      drivers/clocksource/timer-ixp4xx.c
2003 F:      drivers/crypto/ixp4xx_crypto.c
2004 F:      drivers/gpio/gpio-ixp4xx.c
2005 F:      drivers/irqchip/irq-ixp4xx.c
2006 F:      include/linux/irqchip/irq-ixp4xx.h
2007 F:      include/linux/platform_data/timer-ixp4xx.h
2008
2009 ARM/INTEL KEEMBAY ARCHITECTURE
2010 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2011 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2012 S:      Maintained
2013 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2014 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2015 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2016
2017 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
2018 M:      Jonathan Cameron <jic23@cam.ac.uk>
2019 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2020 S:      Maintained
2021 F:      arch/arm/mach-pxa/stargate2.c
2022 F:      drivers/pcmcia/pxa2xx_stargate2.c
2023
2024 ARM/INTEL XSC3 (MANZANO) ARM CORE
2025 M:      Lennert Buytenhek <kernel@wantstofly.org>
2026 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2027 S:      Maintained
2028
2029 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2030 M:      Lennert Buytenhek <kernel@wantstofly.org>
2031 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2032 S:      Maintained
2033
2034 ARM/LG1K ARCHITECTURE
2035 M:      Chanho Min <chanho.min@lge.com>
2036 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2037 S:      Maintained
2038 F:      arch/arm64/boot/dts/lg/
2039
2040 ARM/LOGICPD PXA270 MACHINE SUPPORT
2041 M:      Lennert Buytenhek <kernel@wantstofly.org>
2042 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2043 S:      Maintained
2044
2045 ARM/LPC18XX ARCHITECTURE
2046 M:      Vladimir Zapolskiy <vz@mleia.com>
2047 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2048 S:      Maintained
2049 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2050 F:      arch/arm/boot/dts/lpc43*
2051 F:      drivers/i2c/busses/i2c-lpc2k.c
2052 F:      drivers/memory/pl172.c
2053 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2054 F:      drivers/rtc/rtc-lpc24xx.c
2055 N:      lpc18xx
2056
2057 ARM/LPC32XX SOC SUPPORT
2058 M:      Vladimir Zapolskiy <vz@mleia.com>
2059 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2060 S:      Maintained
2061 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2062 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2063 F:      arch/arm/boot/dts/lpc32*
2064 F:      arch/arm/mach-lpc32xx/
2065 F:      drivers/i2c/busses/i2c-pnx.c
2066 F:      drivers/net/ethernet/nxp/lpc_eth.c
2067 F:      drivers/usb/host/ohci-nxp.c
2068 F:      drivers/watchdog/pnx4008_wdt.c
2069 N:      lpc32xx
2070
2071 ARM/MAGICIAN MACHINE SUPPORT
2072 M:      Philipp Zabel <philipp.zabel@gmail.com>
2073 S:      Maintained
2074
2075 ARM/Marvell Dove/MV78xx0/Orion SOC support
2076 M:      Andrew Lunn <andrew@lunn.ch>
2077 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2078 M:      Gregory Clement <gregory.clement@bootlin.com>
2079 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2080 S:      Maintained
2081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2082 F:      Documentation/devicetree/bindings/soc/dove/
2083 F:      arch/arm/boot/dts/dove*
2084 F:      arch/arm/boot/dts/orion5x*
2085 F:      arch/arm/mach-dove/
2086 F:      arch/arm/mach-mv78xx0/
2087 F:      arch/arm/mach-orion5x/
2088 F:      arch/arm/plat-orion/
2089 F:      drivers/soc/dove/
2090
2091 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2092 M:      Andrew Lunn <andrew@lunn.ch>
2093 M:      Gregory Clement <gregory.clement@bootlin.com>
2094 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2095 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2096 S:      Maintained
2097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2098 F:      arch/arm/boot/dts/armada*
2099 F:      arch/arm/boot/dts/kirkwood*
2100 F:      arch/arm/configs/mvebu_*_defconfig
2101 F:      arch/arm/mach-mvebu/
2102 F:      arch/arm64/boot/dts/marvell/armada*
2103 F:      arch/arm64/boot/dts/marvell/cn913*
2104 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2105 F:      drivers/cpufreq/armada-8k-cpufreq.c
2106 F:      drivers/cpufreq/mvebu-cpufreq.c
2107 F:      drivers/irqchip/irq-armada-370-xp.c
2108 F:      drivers/irqchip/irq-mvebu-*
2109 F:      drivers/pinctrl/mvebu/
2110 F:      drivers/rtc/rtc-armada38x.c
2111
2112 ARM/Mediatek RTC DRIVER
2113 M:      Eddie Huang <eddie.huang@mediatek.com>
2114 M:      Sean Wang <sean.wang@mediatek.com>
2115 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2116 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2117 S:      Maintained
2118 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2119 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2120 F:      drivers/rtc/rtc-mt2712.c
2121 F:      drivers/rtc/rtc-mt6397.c
2122 F:      drivers/rtc/rtc-mt7622.c
2123
2124 ARM/Mediatek SoC support
2125 M:      Matthias Brugger <matthias.bgg@gmail.com>
2126 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2127 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2128 S:      Maintained
2129 W:      https://mtk.wiki.kernel.org/
2130 C:      irc://chat.freenode.net/linux-mediatek
2131 F:      arch/arm/boot/dts/mt6*
2132 F:      arch/arm/boot/dts/mt7*
2133 F:      arch/arm/boot/dts/mt8*
2134 F:      arch/arm/mach-mediatek/
2135 F:      arch/arm64/boot/dts/mediatek/
2136 F:      drivers/soc/mediatek/
2137 N:      mtk
2138 N:      mt[678]
2139 K:      mediatek
2140
2141 ARM/Mediatek USB3 PHY DRIVER
2142 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2143 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2144 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2145 S:      Maintained
2146 F:      Documentation/devicetree/bindings/phy/mediatek,*
2147 F:      drivers/phy/mediatek/
2148
2149 ARM/Microchip (AT91) SoC support
2150 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2151 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2152 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2153 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2154 S:      Supported
2155 W:      http://www.linux4sam.org
2156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2157 F:      arch/arm/boot/dts/at91*.dts
2158 F:      arch/arm/boot/dts/at91*.dtsi
2159 F:      arch/arm/boot/dts/sama*.dts
2160 F:      arch/arm/boot/dts/sama*.dtsi
2161 F:      arch/arm/include/debug/at91.S
2162 F:      arch/arm/mach-at91/
2163 F:      drivers/memory/atmel*
2164 F:      drivers/watchdog/sama5d4_wdt.c
2165 F:      include/soc/at91/
2166 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2167 X:      drivers/net/wireless/atmel/
2168 N:      at91
2169 N:      atmel
2170
2171 ARM/Microchip Sparx5 SoC support
2172 M:      Lars Povlsen <lars.povlsen@microchip.com>
2173 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2174 M:      UNGLinuxDriver@microchip.com
2175 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2176 S:      Supported
2177 T:      git git://github.com/microchip-ung/linux-upstream.git
2178 F:      arch/arm64/boot/dts/microchip/
2179 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2180 N:      sparx5
2181
2182 Microchip Timer Counter Block (TCB) Capture Driver
2183 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2184 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2185 L:      linux-iio@vger.kernel.org
2186 S:      Maintained
2187 F:      drivers/counter/microchip-tcb-capture.c
2188
2189 ARM/MIOA701 MACHINE SUPPORT
2190 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2191 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2192 S:      Maintained
2193 F:      arch/arm/mach-pxa/mioa701.c
2194
2195 ARM/MStar/Sigmastar Armv7 SoC support
2196 M:      Daniel Palmer <daniel@thingy.jp>
2197 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2198 S:      Maintained
2199 W:      http://linux-chenxing.org/
2200 F:      Documentation/devicetree/bindings/arm/mstar/*
2201 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2202 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2203 F:      arch/arm/boot/dts/mstar-*
2204 F:      arch/arm/mach-mstar/
2205 F:      drivers/clk/mstar/
2206 F:      drivers/gpio/gpio-msc313.c
2207 F:      include/dt-bindings/clock/mstar-*
2208 F:      include/dt-bindings/gpio/msc313-gpio.h
2209
2210 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2211 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2212 S:      Maintained
2213
2214 ARM/NOMADIK/Ux500 ARCHITECTURES
2215 M:      Linus Walleij <linus.walleij@linaro.org>
2216 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2217 S:      Maintained
2218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2219 F:      Documentation/devicetree/bindings/arm/ste-*
2220 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2221 F:      Documentation/devicetree/bindings/arm/ux500/
2222 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2223 F:      arch/arm/boot/dts/ste-*
2224 F:      arch/arm/mach-nomadik/
2225 F:      arch/arm/mach-ux500/
2226 F:      drivers/clk/clk-nomadik.c
2227 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2228 F:      drivers/dma/ste_dma40*
2229 F:      drivers/hwspinlock/u8500_hsem.c
2230 F:      drivers/i2c/busses/i2c-nomadik.c
2231 F:      drivers/iio/adc/ab8500-gpadc.c
2232 F:      drivers/mfd/ab8500*
2233 F:      drivers/mfd/abx500*
2234 F:      drivers/mfd/db8500*
2235 F:      drivers/mfd/dbx500*
2236 F:      drivers/pinctrl/nomadik/
2237 F:      drivers/rtc/rtc-ab8500.c
2238 F:      drivers/rtc/rtc-pl031.c
2239 F:      drivers/soc/ux500/
2240
2241 ARM/NUVOTON NPCM ARCHITECTURE
2242 M:      Avi Fishman <avifishman70@gmail.com>
2243 M:      Tomer Maimon <tmaimon77@gmail.com>
2244 M:      Tali Perry <tali.perry1@gmail.com>
2245 R:      Patrick Venture <venture@google.com>
2246 R:      Nancy Yuen <yuenn@google.com>
2247 R:      Benjamin Fair <benjaminfair@google.com>
2248 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2249 S:      Supported
2250 F:      Documentation/devicetree/bindings/*/*/*npcm*
2251 F:      Documentation/devicetree/bindings/*/*npcm*
2252 F:      arch/arm/boot/dts/nuvoton-npcm*
2253 F:      arch/arm/mach-npcm/
2254 F:      drivers/*/*npcm*
2255 F:      drivers/*/*/*npcm*
2256 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2257
2258 ARM/NUVOTON WPCM450 ARCHITECTURE
2259 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2260 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2261 S:      Maintained
2262 F:      Documentation/devicetree/bindings/*/*wpcm*
2263 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2264 F:      arch/arm/mach-npcm/wpcm450.c
2265 F:      drivers/*/*wpcm*
2266
2267 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2268 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2269 S:      Orphan
2270 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2271 F:      arch/arm/mach-s3c/gta02.h
2272 F:      arch/arm/mach-s3c/mach-gta02.c
2273
2274 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2275 M:      Alexander Clouter <alex@digriz.org.uk>
2276 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2277 S:      Maintained
2278 W:      http://www.digriz.org.uk/ts78xx/kernel
2279 F:      arch/arm/mach-orion5x/ts78xx-*
2280
2281 ARM/OXNAS platform support
2282 M:      Neil Armstrong <narmstrong@baylibre.com>
2283 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2284 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2285 S:      Maintained
2286 F:      arch/arm/boot/dts/ox8*.dts*
2287 F:      arch/arm/mach-oxnas/
2288 F:      drivers/power/reset/oxnas-restart.c
2289 N:      oxnas
2290
2291 ARM/PALM TREO SUPPORT
2292 M:      Tomas Cech <sleep_walker@suse.com>
2293 L:      linux-arm-kernel@lists.infradead.org
2294 S:      Maintained
2295 W:      http://hackndev.com
2296 F:      arch/arm/mach-pxa/palmtreo.*
2297
2298 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2299 M:      Marek Vasut <marek.vasut@gmail.com>
2300 L:      linux-arm-kernel@lists.infradead.org
2301 S:      Maintained
2302 W:      http://hackndev.com
2303 F:      arch/arm/mach-pxa/include/mach/palmld.h
2304 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2305 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2306 F:      arch/arm/mach-pxa/palmld.c
2307 F:      arch/arm/mach-pxa/palmt5.*
2308 F:      arch/arm/mach-pxa/palmtc.c
2309 F:      arch/arm/mach-pxa/palmte2.*
2310 F:      arch/arm/mach-pxa/palmtx.c
2311
2312 ARM/PALMZ72 SUPPORT
2313 M:      Sergey Lapin <slapin@ossfans.org>
2314 L:      linux-arm-kernel@lists.infradead.org
2315 S:      Maintained
2316 W:      http://hackndev.com
2317 F:      arch/arm/mach-pxa/palmz72.*
2318
2319 ARM/PLEB SUPPORT
2320 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2321 S:      Maintained
2322 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2323
2324 ARM/PT DIGITAL BOARD PORT
2325 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2326 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2327 S:      Maintained
2328 W:      http://www.armlinux.org.uk/
2329
2330 ARM/QUALCOMM SUPPORT
2331 M:      Andy Gross <agross@kernel.org>
2332 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2333 L:      linux-arm-msm@vger.kernel.org
2334 S:      Maintained
2335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2336 F:      Documentation/devicetree/bindings/*/qcom*
2337 F:      Documentation/devicetree/bindings/soc/qcom/
2338 F:      arch/arm/boot/dts/qcom-*.dts
2339 F:      arch/arm/boot/dts/qcom-*.dtsi
2340 F:      arch/arm/mach-qcom/
2341 F:      arch/arm64/boot/dts/qcom/
2342 F:      drivers/*/*/qcom*
2343 F:      drivers/*/*/qcom/
2344 F:      drivers/*/pm8???-*
2345 F:      drivers/*/qcom*
2346 F:      drivers/*/qcom/
2347 F:      drivers/bluetooth/btqcomsmd.c
2348 F:      drivers/clocksource/timer-qcom.c
2349 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2350 F:      drivers/extcon/extcon-qcom*
2351 F:      drivers/i2c/busses/i2c-qcom-geni.c
2352 F:      drivers/i2c/busses/i2c-qup.c
2353 F:      drivers/iommu/msm*
2354 F:      drivers/mfd/ssbi.c
2355 F:      drivers/mmc/host/mmci_qcom*
2356 F:      drivers/mmc/host/sdhci-msm.c
2357 F:      drivers/pci/controller/dwc/pcie-qcom.c
2358 F:      drivers/phy/qualcomm/
2359 F:      drivers/power/*/msm*
2360 F:      drivers/reset/reset-qcom-*
2361 F:      drivers/scsi/ufs/ufs-qcom*
2362 F:      drivers/spi/spi-geni-qcom.c
2363 F:      drivers/spi/spi-qcom-qspi.c
2364 F:      drivers/spi/spi-qup.c
2365 F:      drivers/tty/serial/msm_serial.c
2366 F:      drivers/usb/dwc3/dwc3-qcom.c
2367 F:      include/dt-bindings/*/qcom*
2368 F:      include/linux/*/qcom*
2369 F:      include/linux/soc/qcom/
2370
2371 ARM/RADISYS ENP2611 MACHINE SUPPORT
2372 M:      Lennert Buytenhek <kernel@wantstofly.org>
2373 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2374 S:      Maintained
2375
2376 ARM/RDA MICRO ARCHITECTURE
2377 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2378 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2379 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2380 S:      Maintained
2381 F:      Documentation/devicetree/bindings/arm/rda.yaml
2382 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2383 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2384 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2385 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2386 F:      arch/arm/boot/dts/rda8810pl-*
2387 F:      drivers/clocksource/timer-rda.c
2388 F:      drivers/gpio/gpio-rda.c
2389 F:      drivers/irqchip/irq-rda-intc.c
2390 F:      drivers/tty/serial/rda-uart.c
2391
2392 ARM/REALTEK ARCHITECTURE
2393 M:      Andreas Färber <afaerber@suse.de>
2394 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2395 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2396 S:      Maintained
2397 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2398 F:      arch/arm/boot/dts/rtd*
2399 F:      arch/arm/mach-realtek/
2400 F:      arch/arm64/boot/dts/realtek/
2401
2402 ARM/RENESAS ARM64 ARCHITECTURE
2403 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2404 M:      Magnus Damm <magnus.damm@gmail.com>
2405 L:      linux-renesas-soc@vger.kernel.org
2406 S:      Supported
2407 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2409 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2410 F:      arch/arm64/boot/dts/renesas/
2411 F:      drivers/soc/renesas/
2412 F:      include/linux/soc/renesas/
2413
2414 ARM/RISCPC ARCHITECTURE
2415 M:      Russell King <linux@armlinux.org.uk>
2416 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2417 S:      Maintained
2418 W:      http://www.armlinux.org.uk/
2419 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2420 F:      arch/arm/include/asm/hardware/ioc.h
2421 F:      arch/arm/include/asm/hardware/iomd.h
2422 F:      arch/arm/include/asm/hardware/memc.h
2423 F:      arch/arm/mach-rpc/
2424 F:      drivers/net/ethernet/8390/etherh.c
2425 F:      drivers/net/ethernet/i825xx/ether1*
2426 F:      drivers/net/ethernet/seeq/ether3*
2427 F:      drivers/scsi/arm/
2428
2429 ARM/Rockchip SoC support
2430 M:      Heiko Stuebner <heiko@sntech.de>
2431 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2432 L:      linux-rockchip@lists.infradead.org
2433 S:      Maintained
2434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2435 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2436 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2437 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2438 F:      arch/arm/boot/dts/rk3*
2439 F:      arch/arm/boot/dts/rv1108*
2440 F:      arch/arm/mach-rockchip/
2441 F:      drivers/*/*/*rockchip*
2442 F:      drivers/*/*rockchip*
2443 F:      drivers/clk/rockchip/
2444 F:      drivers/i2c/busses/i2c-rk3x.c
2445 F:      sound/soc/rockchip/
2446 N:      rockchip
2447
2448 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2449 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
2450 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2451 L:      linux-samsung-soc@vger.kernel.org
2452 S:      Maintained
2453 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2454 F:      Documentation/arm/samsung/
2455 F:      Documentation/devicetree/bindings/arm/samsung/
2456 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2457 F:      arch/arm/boot/dts/exynos*
2458 F:      arch/arm/boot/dts/s3c*
2459 F:      arch/arm/boot/dts/s5p*
2460 F:      arch/arm/mach-exynos*/
2461 F:      arch/arm/mach-s3c/
2462 F:      arch/arm/mach-s5p*/
2463 F:      arch/arm64/boot/dts/exynos/
2464 F:      drivers/*/*/*s3c24*
2465 F:      drivers/*/*s3c24*
2466 F:      drivers/*/*s3c64xx*
2467 F:      drivers/*/*s5pv210*
2468 F:      drivers/memory/samsung/
2469 F:      drivers/soc/samsung/
2470 F:      drivers/tty/serial/samsung*
2471 F:      include/linux/platform_data/*s3c*
2472 F:      include/linux/serial_s3c.h
2473 F:      include/linux/soc/samsung/
2474 N:      exynos
2475 N:      s3c2410
2476 N:      s3c64xx
2477 N:      s5pv210
2478
2479 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2480 M:      Andrzej Hajda <a.hajda@samsung.com>
2481 L:      linux-arm-kernel@lists.infradead.org
2482 L:      linux-media@vger.kernel.org
2483 S:      Maintained
2484 F:      drivers/media/platform/s5p-g2d/
2485
2486 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2487 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2488 L:      linux-samsung-soc@vger.kernel.org
2489 L:      linux-media@vger.kernel.org
2490 S:      Maintained
2491 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2492 F:      drivers/media/cec/platform/s5p/
2493
2494 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2495 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2496 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2497 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2498 L:      linux-arm-kernel@lists.infradead.org
2499 L:      linux-media@vger.kernel.org
2500 S:      Maintained
2501 F:      drivers/media/platform/s5p-jpeg/
2502
2503 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2504 M:      Andrzej Hajda <a.hajda@samsung.com>
2505 L:      linux-arm-kernel@lists.infradead.org
2506 L:      linux-media@vger.kernel.org
2507 S:      Maintained
2508 F:      drivers/media/platform/s5p-mfc/
2509
2510 ARM/SHMOBILE ARM ARCHITECTURE
2511 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2512 M:      Magnus Damm <magnus.damm@gmail.com>
2513 L:      linux-renesas-soc@vger.kernel.org
2514 S:      Supported
2515 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2517 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2518 F:      arch/arm/boot/dts/emev2*
2519 F:      arch/arm/boot/dts/gr-peach*
2520 F:      arch/arm/boot/dts/iwg20d-q7*
2521 F:      arch/arm/boot/dts/r7s*
2522 F:      arch/arm/boot/dts/r8a*
2523 F:      arch/arm/boot/dts/r9a*
2524 F:      arch/arm/boot/dts/sh*
2525 F:      arch/arm/configs/shmobile_defconfig
2526 F:      arch/arm/include/debug/renesas-scif.S
2527 F:      arch/arm/mach-shmobile/
2528 F:      drivers/soc/renesas/
2529 F:      include/linux/soc/renesas/
2530
2531 ARM/SOCFPGA ARCHITECTURE
2532 M:      Dinh Nguyen <dinguyen@kernel.org>
2533 S:      Maintained
2534 W:      http://www.rocketboards.org
2535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2536 F:      arch/arm/boot/dts/socfpga*
2537 F:      arch/arm/configs/socfpga_defconfig
2538 F:      arch/arm/mach-socfpga/
2539 F:      arch/arm64/boot/dts/altera/
2540 F:      arch/arm64/boot/dts/intel/
2541
2542 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2543 M:      Dinh Nguyen <dinguyen@kernel.org>
2544 S:      Maintained
2545 F:      drivers/clk/socfpga/
2546
2547 ARM/SOCFPGA EDAC SUPPORT
2548 M:      Dinh Nguyen <dinguyen@kernel.org>
2549 S:      Maintained
2550 F:      drivers/edac/altera_edac.[ch]
2551
2552 ARM/SPREADTRUM SoC SUPPORT
2553 M:      Orson Zhai <orsonzhai@gmail.com>
2554 M:      Baolin Wang <baolin.wang7@gmail.com>
2555 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2556 S:      Maintained
2557 F:      arch/arm64/boot/dts/sprd
2558 N:      sprd
2559 N:      sc27xx
2560 N:      sc2731
2561
2562 ARM/STI ARCHITECTURE
2563 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2564 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2565 S:      Maintained
2566 W:      http://www.stlinux.com
2567 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2568 F:      arch/arm/boot/dts/sti*
2569 F:      arch/arm/mach-sti/
2570 F:      drivers/ata/ahci_st.c
2571 F:      drivers/char/hw_random/st-rng.c
2572 F:      drivers/clocksource/arm_global_timer.c
2573 F:      drivers/clocksource/clksrc_st_lpc.c
2574 F:      drivers/cpufreq/sti-cpufreq.c
2575 F:      drivers/dma/st_fdma*
2576 F:      drivers/i2c/busses/i2c-st.c
2577 F:      drivers/media/platform/sti/c8sectpfe/
2578 F:      drivers/media/rc/st_rc.c
2579 F:      drivers/mmc/host/sdhci-st.c
2580 F:      drivers/phy/st/phy-miphy28lp.c
2581 F:      drivers/phy/st/phy-stih407-usb.c
2582 F:      drivers/pinctrl/pinctrl-st.c
2583 F:      drivers/remoteproc/st_remoteproc.c
2584 F:      drivers/remoteproc/st_slim_rproc.c
2585 F:      drivers/reset/sti/
2586 F:      drivers/rtc/rtc-st-lpc.c
2587 F:      drivers/tty/serial/st-asc.c
2588 F:      drivers/usb/dwc3/dwc3-st.c
2589 F:      drivers/usb/host/ehci-st.c
2590 F:      drivers/usb/host/ohci-st.c
2591 F:      drivers/watchdog/st_lpc_wdt.c
2592 F:      include/linux/remoteproc/st_slim_rproc.h
2593
2594 ARM/STM32 ARCHITECTURE
2595 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2596 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2597 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2598 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2599 S:      Maintained
2600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2601 F:      arch/arm/boot/dts/stm32*
2602 F:      arch/arm/mach-stm32/
2603 F:      drivers/clocksource/armv7m_systick.c
2604 N:      stm32
2605 N:      stm
2606
2607 ARM/Synaptics SoC support
2608 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2609 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2610 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2611 S:      Maintained
2612 F:      arch/arm/boot/dts/berlin*
2613 F:      arch/arm/mach-berlin/
2614 F:      arch/arm64/boot/dts/synaptics/
2615
2616 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2617 M:      Lennert Buytenhek <kernel@wantstofly.org>
2618 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2619 S:      Maintained
2620
2621 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2622 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2623 L:      linux-tegra@vger.kernel.org
2624 L:      linux-media@vger.kernel.org
2625 S:      Maintained
2626 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2627 F:      drivers/media/cec/platform/tegra/
2628
2629 ARM/TETON BGA MACHINE SUPPORT
2630 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2631 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2632 S:      Maintained
2633
2634 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2635 M:      Santosh Shilimkar <ssantosh@kernel.org>
2636 L:      linux-kernel@vger.kernel.org
2637 S:      Maintained
2638 F:      drivers/memory/*emif*
2639
2640 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2641 M:      Santosh Shilimkar <ssantosh@kernel.org>
2642 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2643 S:      Maintained
2644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2645 F:      arch/arm/boot/dts/keystone-*
2646 F:      arch/arm/mach-keystone/
2647
2648 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2649 M:      Santosh Shilimkar <ssantosh@kernel.org>
2650 L:      linux-kernel@vger.kernel.org
2651 S:      Maintained
2652 F:      drivers/clk/keystone/
2653
2654 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2655 M:      Santosh Shilimkar <ssantosh@kernel.org>
2656 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2657 L:      linux-kernel@vger.kernel.org
2658 S:      Maintained
2659 F:      drivers/clocksource/timer-keystone.c
2660
2661 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2662 M:      Santosh Shilimkar <ssantosh@kernel.org>
2663 L:      linux-kernel@vger.kernel.org
2664 S:      Maintained
2665 F:      drivers/power/reset/keystone-reset.c
2666
2667 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2668 M:      Nishanth Menon <nm@ti.com>
2669 M:      Tero Kristo <kristo@kernel.org>
2670 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2671 S:      Supported
2672 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2673 F:      arch/arm64/boot/dts/ti/Makefile
2674 F:      arch/arm64/boot/dts/ti/k3-*
2675 F:      include/dt-bindings/pinctrl/k3.h
2676
2677 ARM/THECUS N2100 MACHINE SUPPORT
2678 M:      Lennert Buytenhek <kernel@wantstofly.org>
2679 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2680 S:      Maintained
2681
2682 ARM/TOSA MACHINE SUPPORT
2683 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2684 M:      Dirk Opfer <dirk@opfer-online.de>
2685 S:      Maintained
2686
2687 ARM/TOSHIBA VISCONTI ARCHITECTURE
2688 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2689 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2690 S:      Supported
2691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2692 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2693 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2694 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2695 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2696 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2697 F:      arch/arm64/boot/dts/toshiba/
2698 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2699 F:      drivers/gpio/gpio-visconti.c
2700 F:      drivers/pinctrl/visconti/
2701 F:      drivers/watchdog/visconti_wdt.c
2702 N:      visconti
2703
2704 ARM/UNIPHIER ARCHITECTURE
2705 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2706 M:      Masami Hiramatsu <mhiramat@kernel.org>
2707 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2708 S:      Maintained
2709 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2710 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2711 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2712 F:      arch/arm/boot/dts/uniphier*
2713 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2714 F:      arch/arm/mach-uniphier/
2715 F:      arch/arm/mm/cache-uniphier.c
2716 F:      arch/arm64/boot/dts/socionext/uniphier*
2717 F:      drivers/bus/uniphier-system-bus.c
2718 F:      drivers/clk/uniphier/
2719 F:      drivers/dma/uniphier-mdmac.c
2720 F:      drivers/gpio/gpio-uniphier.c
2721 F:      drivers/i2c/busses/i2c-uniphier*
2722 F:      drivers/irqchip/irq-uniphier-aidet.c
2723 F:      drivers/mmc/host/uniphier-sd.c
2724 F:      drivers/pinctrl/uniphier/
2725 F:      drivers/reset/reset-uniphier.c
2726 F:      drivers/tty/serial/8250/8250_uniphier.c
2727 N:      uniphier
2728
2729 ARM/VERSATILE EXPRESS PLATFORM
2730 M:      Liviu Dudau <liviu.dudau@arm.com>
2731 M:      Sudeep Holla <sudeep.holla@arm.com>
2732 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2733 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2734 S:      Maintained
2735 F:      */*/*/vexpress*
2736 F:      */*/vexpress*
2737 F:      arch/arm/boot/dts/vexpress*
2738 F:      arch/arm/mach-vexpress/
2739 F:      arch/arm64/boot/dts/arm/
2740 F:      drivers/clk/versatile/clk-vexpress-osc.c
2741 F:      drivers/clocksource/timer-versatile.c
2742 N:      mps2
2743
2744 ARM/VFP SUPPORT
2745 M:      Russell King <linux@armlinux.org.uk>
2746 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2747 S:      Maintained
2748 W:      http://www.armlinux.org.uk/
2749 F:      arch/arm/vfp/
2750
2751 ARM/VOIPAC PXA270 SUPPORT
2752 M:      Marek Vasut <marek.vasut@gmail.com>
2753 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2754 S:      Maintained
2755 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2756 F:      arch/arm/mach-pxa/vpac270.c
2757
2758 ARM/VT8500 ARM ARCHITECTURE
2759 M:      Tony Prisk <linux@prisktech.co.nz>
2760 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2761 S:      Maintained
2762 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2763 F:      arch/arm/mach-vt8500/
2764 F:      drivers/clocksource/timer-vt8500.c
2765 F:      drivers/i2c/busses/i2c-wmt.c
2766 F:      drivers/mmc/host/wmt-sdmmc.c
2767 F:      drivers/pwm/pwm-vt8500.c
2768 F:      drivers/rtc/rtc-vt8500.c
2769 F:      drivers/tty/serial/vt8500_serial.c
2770 F:      drivers/usb/host/ehci-platform.c
2771 F:      drivers/usb/host/uhci-platform.c
2772 F:      drivers/video/fbdev/vt8500lcdfb.*
2773 F:      drivers/video/fbdev/wm8505fb*
2774 F:      drivers/video/fbdev/wmt_ge_rops.*
2775
2776 ARM/ZIPIT Z2 SUPPORT
2777 M:      Marek Vasut <marek.vasut@gmail.com>
2778 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2779 S:      Maintained
2780 F:      arch/arm/mach-pxa/include/mach/z2.h
2781 F:      arch/arm/mach-pxa/z2.c
2782
2783 ARM/ZYNQ ARCHITECTURE
2784 M:      Michal Simek <michal.simek@xilinx.com>
2785 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2786 S:      Supported
2787 W:      http://wiki.xilinx.com
2788 T:      git https://github.com/Xilinx/linux-xlnx.git
2789 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2790 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2791 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2792 F:      arch/arm/mach-zynq/
2793 F:      drivers/clocksource/timer-cadence-ttc.c
2794 F:      drivers/cpuidle/cpuidle-zynq.c
2795 F:      drivers/edac/synopsys_edac.c
2796 F:      drivers/i2c/busses/i2c-cadence.c
2797 F:      drivers/i2c/busses/i2c-xiic.c
2798 F:      drivers/mmc/host/sdhci-of-arasan.c
2799 N:      zynq
2800 N:      xilinx
2801
2802 ARM64 PORT (AARCH64 ARCHITECTURE)
2803 M:      Catalin Marinas <catalin.marinas@arm.com>
2804 M:      Will Deacon <will@kernel.org>
2805 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2806 S:      Maintained
2807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2808 F:      Documentation/arm64/
2809 F:      arch/arm64/
2810 F:      tools/testing/selftests/arm64/
2811 X:      arch/arm64/boot/dts/
2812
2813 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2814 M:      George McCollister <george.mccollister@gmail.com>
2815 L:      netdev@vger.kernel.org
2816 S:      Maintained
2817 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2818 F:      drivers/net/dsa/xrs700x/*
2819 F:      net/dsa/tag_xrs700x.c
2820
2821 AS3645A LED FLASH CONTROLLER DRIVER
2822 M:      Sakari Ailus <sakari.ailus@iki.fi>
2823 L:      linux-leds@vger.kernel.org
2824 S:      Maintained
2825 F:      drivers/leds/leds-as3645a.c
2826
2827 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2828 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2829 L:      linux-media@vger.kernel.org
2830 S:      Maintained
2831 T:      git git://linuxtv.org/media_tree.git
2832 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2833 F:      drivers/media/i2c/ak7375.c
2834
2835 ASAHI KASEI AK8974 DRIVER
2836 M:      Linus Walleij <linus.walleij@linaro.org>
2837 L:      linux-iio@vger.kernel.org
2838 S:      Supported
2839 W:      http://www.akm.com/
2840 F:      drivers/iio/magnetometer/ak8974.c
2841
2842 ASC7621 HARDWARE MONITOR DRIVER
2843 M:      George Joseph <george.joseph@fairview5.com>
2844 L:      linux-hwmon@vger.kernel.org
2845 S:      Maintained
2846 F:      Documentation/hwmon/asc7621.rst
2847 F:      drivers/hwmon/asc7621.c
2848
2849 ASPEED PINCTRL DRIVERS
2850 M:      Andrew Jeffery <andrew@aj.id.au>
2851 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2852 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2853 L:      linux-gpio@vger.kernel.org
2854 S:      Maintained
2855 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2856 F:      drivers/pinctrl/aspeed/
2857
2858 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2859 M:      Eddie James <eajames@linux.ibm.com>
2860 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2861 S:      Maintained
2862 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2863 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2864 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2865
2866 ASPEED SD/MMC DRIVER
2867 M:      Andrew Jeffery <andrew@aj.id.au>
2868 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2869 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2870 L:      linux-mmc@vger.kernel.org
2871 S:      Maintained
2872 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
2873 F:      drivers/mmc/host/sdhci-of-aspeed*
2874
2875 ASPEED VIDEO ENGINE DRIVER
2876 M:      Eddie James <eajames@linux.ibm.com>
2877 L:      linux-media@vger.kernel.org
2878 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2879 S:      Maintained
2880 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2881 F:      drivers/media/platform/aspeed-video.c
2882
2883 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2884 M:      Corentin Chary <corentin.chary@gmail.com>
2885 L:      acpi4asus-user@lists.sourceforge.net
2886 L:      platform-driver-x86@vger.kernel.org
2887 S:      Maintained
2888 W:      http://acpi4asus.sf.net
2889 F:      drivers/platform/x86/asus*.c
2890 F:      drivers/platform/x86/eeepc*.c
2891
2892 ASUS WIRELESS RADIO CONTROL DRIVER
2893 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2894 L:      platform-driver-x86@vger.kernel.org
2895 S:      Maintained
2896 F:      drivers/platform/x86/asus-wireless.c
2897
2898 ASYMMETRIC KEYS
2899 M:      David Howells <dhowells@redhat.com>
2900 L:      keyrings@vger.kernel.org
2901 S:      Maintained
2902 F:      Documentation/crypto/asymmetric-keys.rst
2903 F:      crypto/asymmetric_keys/
2904 F:      include/crypto/pkcs7.h
2905 F:      include/crypto/public_key.h
2906 F:      include/linux/verification.h
2907
2908 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2909 R:      Dan Williams <dan.j.williams@intel.com>
2910 S:      Odd fixes
2911 W:      http://sourceforge.net/projects/xscaleiop
2912 F:      Documentation/crypto/async-tx-api.rst
2913 F:      crypto/async_tx/
2914 F:      include/linux/async_tx.h
2915
2916 AT24 EEPROM DRIVER
2917 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2918 L:      linux-i2c@vger.kernel.org
2919 S:      Maintained
2920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2921 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2922 F:      drivers/misc/eeprom/at24.c
2923
2924 ATA OVER ETHERNET (AOE) DRIVER
2925 M:      "Justin Sanders" <justin@coraid.com>
2926 S:      Supported
2927 W:      http://www.openaoe.org/
2928 F:      Documentation/admin-guide/aoe/
2929 F:      drivers/block/aoe/
2930
2931 ATC260X PMIC MFD DRIVER
2932 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2933 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
2934 L:      linux-actions@lists.infradead.org
2935 S:      Maintained
2936 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
2937 F:      drivers/input/misc/atc260x-onkey.c
2938 F:      drivers/mfd/atc260*
2939 F:      drivers/power/reset/atc260x-poweroff.c
2940 F:      drivers/regulator/atc260x-regulator.c
2941 F:      include/linux/mfd/atc260x/*
2942
2943 ATHEROS 71XX/9XXX GPIO DRIVER
2944 M:      Alban Bedel <albeu@free.fr>
2945 S:      Maintained
2946 W:      https://github.com/AlbanBedel/linux
2947 T:      git git://github.com/AlbanBedel/linux
2948 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2949 F:      drivers/gpio/gpio-ath79.c
2950
2951 ATHEROS 71XX/9XXX USB PHY 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/phy/phy-ath79-usb.txt
2957 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2958
2959 ATHEROS ATH GENERIC UTILITIES
2960 M:      Kalle Valo <kvalo@codeaurora.org>
2961 L:      linux-wireless@vger.kernel.org
2962 S:      Supported
2963 F:      drivers/net/wireless/ath/*
2964
2965 ATHEROS ATH5K WIRELESS DRIVER
2966 M:      Jiri Slaby <jirislaby@kernel.org>
2967 M:      Nick Kossifidis <mickflemm@gmail.com>
2968 M:      Luis Chamberlain <mcgrof@kernel.org>
2969 L:      linux-wireless@vger.kernel.org
2970 S:      Maintained
2971 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2972 F:      drivers/net/wireless/ath/ath5k/
2973
2974 ATHEROS ATH6KL WIRELESS DRIVER
2975 M:      Kalle Valo <kvalo@codeaurora.org>
2976 L:      linux-wireless@vger.kernel.org
2977 S:      Supported
2978 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2980 F:      drivers/net/wireless/ath/ath6kl/
2981
2982 ATI_REMOTE2 DRIVER
2983 M:      Ville Syrjala <syrjala@sci.fi>
2984 S:      Maintained
2985 F:      drivers/input/misc/ati_remote2.c
2986
2987 ATK0110 HWMON DRIVER
2988 M:      Luca Tettamanti <kronos.it@gmail.com>
2989 L:      linux-hwmon@vger.kernel.org
2990 S:      Maintained
2991 F:      drivers/hwmon/asus_atk0110.c
2992
2993 ATLX ETHERNET DRIVERS
2994 M:      Chris Snook <chris.snook@gmail.com>
2995 L:      netdev@vger.kernel.org
2996 S:      Maintained
2997 W:      http://sourceforge.net/projects/atl1
2998 W:      http://atl1.sourceforge.net
2999 F:      drivers/net/ethernet/atheros/
3000
3001 ATM
3002 M:      Chas Williams <3chas3@gmail.com>
3003 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3004 L:      netdev@vger.kernel.org
3005 S:      Maintained
3006 W:      http://linux-atm.sourceforge.net
3007 F:      drivers/atm/
3008 F:      include/linux/atm*
3009 F:      include/uapi/linux/atm*
3010
3011 ATMEL MACB ETHERNET DRIVER
3012 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3013 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3014 S:      Supported
3015 F:      drivers/net/ethernet/cadence/
3016
3017 ATMEL MAXTOUCH DRIVER
3018 M:      Nick Dyer <nick@shmanahar.org>
3019 S:      Maintained
3020 T:      git git://github.com/ndyer/linux.git
3021 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3022 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3023
3024 ATMEL WIRELESS DRIVER
3025 M:      Simon Kelley <simon@thekelleys.org.uk>
3026 L:      linux-wireless@vger.kernel.org
3027 S:      Maintained
3028 W:      http://www.thekelleys.org.uk/atmel
3029 W:      http://atmelwlandriver.sourceforge.net/
3030 F:      drivers/net/wireless/atmel/atmel*
3031
3032 ATOMIC INFRASTRUCTURE
3033 M:      Will Deacon <will@kernel.org>
3034 M:      Peter Zijlstra <peterz@infradead.org>
3035 R:      Boqun Feng <boqun.feng@gmail.com>
3036 L:      linux-kernel@vger.kernel.org
3037 S:      Maintained
3038 F:      arch/*/include/asm/atomic*.h
3039 F:      include/*/atomic*.h
3040 F:      include/linux/refcount.h
3041 F:      Documentation/atomic_*.txt
3042 F:      scripts/atomic/
3043
3044 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3045 M:      Bradley Grove <linuxdrivers@attotech.com>
3046 L:      linux-scsi@vger.kernel.org
3047 S:      Supported
3048 W:      http://www.attotech.com
3049 F:      drivers/scsi/esas2r
3050
3051 ATUSB IEEE 802.15.4 RADIO DRIVER
3052 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3053 L:      linux-wpan@vger.kernel.org
3054 S:      Maintained
3055 F:      drivers/net/ieee802154/at86rf230.h
3056 F:      drivers/net/ieee802154/atusb.c
3057 F:      drivers/net/ieee802154/atusb.h
3058
3059 AUDIT SUBSYSTEM
3060 M:      Paul Moore <paul@paul-moore.com>
3061 M:      Eric Paris <eparis@redhat.com>
3062 L:      linux-audit@redhat.com (moderated for non-subscribers)
3063 S:      Supported
3064 W:      https://github.com/linux-audit
3065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3066 F:      include/asm-generic/audit_*.h
3067 F:      include/linux/audit.h
3068 F:      include/uapi/linux/audit.h
3069 F:      kernel/audit*
3070 F:      lib/*audit.c
3071
3072 AUXILIARY DISPLAY DRIVERS
3073 M:      Miguel Ojeda <ojeda@kernel.org>
3074 S:      Maintained
3075 F:      drivers/auxdisplay/
3076 F:      include/linux/cfag12864b.h
3077
3078 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3079 M:      Andreas Klinger <ak@it-klinger.de>
3080 L:      linux-iio@vger.kernel.org
3081 S:      Maintained
3082 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3083 F:      drivers/iio/adc/hx711.c
3084
3085 AX.25 NETWORK LAYER
3086 M:      Ralf Baechle <ralf@linux-mips.org>
3087 L:      linux-hams@vger.kernel.org
3088 S:      Maintained
3089 W:      http://www.linux-ax25.org/
3090 F:      include/net/ax25.h
3091 F:      include/uapi/linux/ax25.h
3092 F:      net/ax25/
3093
3094 AXENTIA ARM DEVICES
3095 M:      Peter Rosin <peda@axentia.se>
3096 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3097 S:      Maintained
3098 F:      arch/arm/boot/dts/at91-linea.dtsi
3099 F:      arch/arm/boot/dts/at91-natte.dtsi
3100 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3101 F:      arch/arm/boot/dts/at91-tse850-3.dts
3102
3103 AXENTIA ASOC DRIVERS
3104 M:      Peter Rosin <peda@axentia.se>
3105 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3106 S:      Maintained
3107 F:      Documentation/devicetree/bindings/sound/axentia,*
3108 F:      sound/soc/atmel/tse850-pcm5142.c
3109
3110 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3111 M:      Nuno Sá <nuno.sa@analog.com>
3112 L:      linux-hwmon@vger.kernel.org
3113 S:      Supported
3114 W:      http://ez.analog.com/community/linux-device-drivers
3115 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3116 F:      drivers/hwmon/axi-fan-control.c
3117
3118 AXXIA I2C CONTROLLER
3119 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3120 L:      linux-i2c@vger.kernel.org
3121 S:      Maintained
3122 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3123 F:      drivers/i2c/busses/i2c-axxia.c
3124
3125 AZ6007 DVB DRIVER
3126 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3127 L:      linux-media@vger.kernel.org
3128 S:      Maintained
3129 W:      https://linuxtv.org
3130 T:      git git://linuxtv.org/media_tree.git
3131 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3132
3133 AZTECH FM RADIO RECEIVER DRIVER
3134 M:      Hans Verkuil <hverkuil@xs4all.nl>
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/radio/radio-aztech*
3140
3141 B43 WIRELESS DRIVER
3142 L:      linux-wireless@vger.kernel.org
3143 L:      b43-dev@lists.infradead.org
3144 S:      Odd Fixes
3145 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3146 F:      drivers/net/wireless/broadcom/b43/
3147
3148 B43LEGACY WIRELESS DRIVER
3149 M:      Larry Finger <Larry.Finger@lwfinger.net>
3150 L:      linux-wireless@vger.kernel.org
3151 L:      b43-dev@lists.infradead.org
3152 S:      Maintained
3153 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3154 F:      drivers/net/wireless/broadcom/b43legacy/
3155
3156 BACKLIGHT CLASS/SUBSYSTEM
3157 M:      Lee Jones <lee.jones@linaro.org>
3158 M:      Daniel Thompson <daniel.thompson@linaro.org>
3159 M:      Jingoo Han <jingoohan1@gmail.com>
3160 L:      dri-devel@lists.freedesktop.org
3161 S:      Maintained
3162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3163 F:      Documentation/ABI/stable/sysfs-class-backlight
3164 F:      Documentation/ABI/testing/sysfs-class-backlight
3165 F:      Documentation/devicetree/bindings/leds/backlight
3166 F:      drivers/video/backlight/
3167 F:      include/linux/backlight.h
3168 F:      include/linux/pwm_backlight.h
3169
3170 BATMAN ADVANCED
3171 M:      Marek Lindner <mareklindner@neomailbox.ch>
3172 M:      Simon Wunderlich <sw@simonwunderlich.de>
3173 M:      Antonio Quartulli <a@unstable.cc>
3174 M:      Sven Eckelmann <sven@narfation.org>
3175 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3176 S:      Maintained
3177 W:      https://www.open-mesh.org/
3178 Q:      https://patchwork.open-mesh.org/project/batman/list/
3179 B:      https://www.open-mesh.org/projects/batman-adv/issues
3180 C:      irc://chat.freenode.net/batman
3181 T:      git https://git.open-mesh.org/linux-merge.git
3182 F:      Documentation/networking/batman-adv.rst
3183 F:      include/uapi/linux/batadv_packet.h
3184 F:      include/uapi/linux/batman_adv.h
3185 F:      net/batman-adv/
3186
3187 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3188 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3189 L:      linux-hams@vger.kernel.org
3190 S:      Maintained
3191 W:      http://www.baycom.org/~tom/ham/ham.html
3192 F:      drivers/net/hamradio/baycom*
3193
3194 BCACHE (BLOCK LAYER CACHE)
3195 M:      Coly Li <colyli@suse.de>
3196 M:      Kent Overstreet <kent.overstreet@gmail.com>
3197 L:      linux-bcache@vger.kernel.org
3198 S:      Maintained
3199 W:      http://bcache.evilpiepirate.org
3200 C:      irc://irc.oftc.net/bcache
3201 F:      drivers/md/bcache/
3202
3203 BDISP ST MEDIA DRIVER
3204 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3205 L:      linux-media@vger.kernel.org
3206 S:      Supported
3207 W:      https://linuxtv.org
3208 T:      git git://linuxtv.org/media_tree.git
3209 F:      drivers/media/platform/sti/bdisp
3210
3211 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3212 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3213 L:      netdev@vger.kernel.org
3214 S:      Maintained
3215 F:      drivers/net/ethernet/ec_bhf.c
3216
3217 BEFS FILE SYSTEM
3218 M:      Luis de Bethencourt <luisbg@kernel.org>
3219 M:      Salah Triki <salah.triki@gmail.com>
3220 S:      Maintained
3221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3222 F:      Documentation/filesystems/befs.rst
3223 F:      fs/befs/
3224
3225 BFQ I/O SCHEDULER
3226 M:      Paolo Valente <paolo.valente@linaro.org>
3227 M:      Jens Axboe <axboe@kernel.dk>
3228 L:      linux-block@vger.kernel.org
3229 S:      Maintained
3230 F:      Documentation/block/bfq-iosched.rst
3231 F:      block/bfq-*
3232
3233 BFS FILE SYSTEM
3234 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3235 S:      Maintained
3236 F:      Documentation/filesystems/bfs.rst
3237 F:      fs/bfs/
3238 F:      include/uapi/linux/bfs_fs.h
3239
3240 BITMAP API
3241 M:      Yury Norov <yury.norov@gmail.com>
3242 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3243 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3244 S:      Maintained
3245 F:      include/asm-generic/bitops/find.h
3246 F:      include/linux/bitmap.h
3247 F:      lib/bitmap.c
3248 F:      lib/find_bit.c
3249 F:      lib/find_bit_benchmark.c
3250 F:      lib/test_bitmap.c
3251 F:      tools/include/asm-generic/bitops/find.h
3252 F:      tools/include/linux/bitmap.h
3253 F:      tools/lib/bitmap.c
3254 F:      tools/lib/find_bit.c
3255
3256 BLINKM RGB LED DRIVER
3257 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3258 S:      Maintained
3259 F:      drivers/leds/leds-blinkm.c
3260
3261 BLOCK LAYER
3262 M:      Jens Axboe <axboe@kernel.dk>
3263 L:      linux-block@vger.kernel.org
3264 S:      Maintained
3265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3266 F:      block/
3267 F:      drivers/block/
3268 F:      fs/block_dev.c
3269 F:      include/linux/blk*
3270 F:      kernel/trace/blktrace.c
3271 F:      lib/sbitmap.c
3272
3273 BLOCK2MTD DRIVER
3274 M:      Joern Engel <joern@lazybastard.org>
3275 L:      linux-mtd@lists.infradead.org
3276 S:      Maintained
3277 F:      drivers/mtd/devices/block2mtd.c
3278
3279 BLUETOOTH DRIVERS
3280 M:      Marcel Holtmann <marcel@holtmann.org>
3281 M:      Johan Hedberg <johan.hedberg@gmail.com>
3282 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3283 L:      linux-bluetooth@vger.kernel.org
3284 S:      Supported
3285 W:      http://www.bluez.org/
3286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3288 F:      drivers/bluetooth/
3289
3290 BLUETOOTH SUBSYSTEM
3291 M:      Marcel Holtmann <marcel@holtmann.org>
3292 M:      Johan Hedberg <johan.hedberg@gmail.com>
3293 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3294 L:      linux-bluetooth@vger.kernel.org
3295 S:      Supported
3296 W:      http://www.bluez.org/
3297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3299 F:      include/net/bluetooth/
3300 F:      net/bluetooth/
3301
3302 BONDING DRIVER
3303 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3304 M:      Veaceslav Falico <vfalico@gmail.com>
3305 M:      Andy Gospodarek <andy@greyhouse.net>
3306 L:      netdev@vger.kernel.org
3307 S:      Supported
3308 W:      http://sourceforge.net/projects/bonding/
3309 F:      drivers/net/bonding/
3310 F:      include/net/bonding.h
3311 F:      include/uapi/linux/if_bonding.h
3312
3313 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3314 M:      Dan Robertson <dan@dlrobertson.com>
3315 L:      linux-iio@vger.kernel.org
3316 S:      Maintained
3317 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3318 F:      drivers/iio/accel/bma400*
3319
3320 BPF (Safe dynamic programs and tools)
3321 M:      Alexei Starovoitov <ast@kernel.org>
3322 M:      Daniel Borkmann <daniel@iogearbox.net>
3323 M:      Andrii Nakryiko <andrii@kernel.org>
3324 R:      Martin KaFai Lau <kafai@fb.com>
3325 R:      Song Liu <songliubraving@fb.com>
3326 R:      Yonghong Song <yhs@fb.com>
3327 R:      John Fastabend <john.fastabend@gmail.com>
3328 R:      KP Singh <kpsingh@kernel.org>
3329 L:      netdev@vger.kernel.org
3330 L:      bpf@vger.kernel.org
3331 S:      Supported
3332 W:      https://bpf.io/
3333 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3336 F:      Documentation/bpf/
3337 F:      Documentation/networking/filter.rst
3338 F:      Documentation/userspace-api/ebpf/
3339 F:      arch/*/net/*
3340 F:      include/linux/bpf*
3341 F:      include/linux/filter.h
3342 F:      include/trace/events/xdp.h
3343 F:      include/uapi/linux/bpf*
3344 F:      include/uapi/linux/filter.h
3345 F:      kernel/bpf/
3346 F:      kernel/trace/bpf_trace.c
3347 F:      lib/test_bpf.c
3348 F:      net/bpf/
3349 F:      net/core/filter.c
3350 F:      net/sched/act_bpf.c
3351 F:      net/sched/cls_bpf.c
3352 F:      samples/bpf/
3353 F:      scripts/bpf_doc.py
3354 F:      tools/bpf/
3355 F:      tools/lib/bpf/
3356 F:      tools/testing/selftests/bpf/
3357 N:      bpf
3358 K:      bpf
3359
3360 BPF JIT for ARM
3361 M:      Shubham Bansal <illusionist.neo@gmail.com>
3362 L:      netdev@vger.kernel.org
3363 L:      bpf@vger.kernel.org
3364 S:      Maintained
3365 F:      arch/arm/net/
3366
3367 BPF JIT for ARM64
3368 M:      Daniel Borkmann <daniel@iogearbox.net>
3369 M:      Alexei Starovoitov <ast@kernel.org>
3370 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3371 L:      netdev@vger.kernel.org
3372 L:      bpf@vger.kernel.org
3373 S:      Supported
3374 F:      arch/arm64/net/
3375
3376 BPF JIT for MIPS (32-BIT AND 64-BIT)
3377 M:      Paul Burton <paulburton@kernel.org>
3378 L:      netdev@vger.kernel.org
3379 L:      bpf@vger.kernel.org
3380 S:      Maintained
3381 F:      arch/mips/net/
3382
3383 BPF JIT for NFP NICs
3384 M:      Jakub Kicinski <kuba@kernel.org>
3385 L:      netdev@vger.kernel.org
3386 L:      bpf@vger.kernel.org
3387 S:      Supported
3388 F:      drivers/net/ethernet/netronome/nfp/bpf/
3389
3390 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3391 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3392 M:      Sandipan Das <sandipan@linux.ibm.com>
3393 L:      netdev@vger.kernel.org
3394 L:      bpf@vger.kernel.org
3395 S:      Maintained
3396 F:      arch/powerpc/net/
3397
3398 BPF JIT for RISC-V (32-bit)
3399 M:      Luke Nelson <luke.r.nels@gmail.com>
3400 M:      Xi Wang <xi.wang@gmail.com>
3401 L:      netdev@vger.kernel.org
3402 L:      bpf@vger.kernel.org
3403 S:      Maintained
3404 F:      arch/riscv/net/
3405 X:      arch/riscv/net/bpf_jit_comp64.c
3406
3407 BPF JIT for RISC-V (64-bit)
3408 M:      Björn Töpel <bjorn@kernel.org>
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_comp32.c
3414
3415 BPF JIT for S390
3416 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3417 M:      Heiko Carstens <hca@linux.ibm.com>
3418 M:      Vasily Gorbik <gor@linux.ibm.com>
3419 L:      netdev@vger.kernel.org
3420 L:      bpf@vger.kernel.org
3421 S:      Maintained
3422 F:      arch/s390/net/
3423 X:      arch/s390/net/pnet.c
3424
3425 BPF JIT for SPARC (32-BIT AND 64-BIT)
3426 M:      David S. Miller <davem@davemloft.net>
3427 L:      netdev@vger.kernel.org
3428 L:      bpf@vger.kernel.org
3429 S:      Maintained
3430 F:      arch/sparc/net/
3431
3432 BPF JIT for X86 32-BIT
3433 M:      Wang YanQing <udknight@gmail.com>
3434 L:      netdev@vger.kernel.org
3435 L:      bpf@vger.kernel.org
3436 S:      Maintained
3437 F:      arch/x86/net/bpf_jit_comp32.c
3438
3439 BPF JIT for X86 64-BIT
3440 M:      Alexei Starovoitov <ast@kernel.org>
3441 M:      Daniel Borkmann <daniel@iogearbox.net>
3442 L:      netdev@vger.kernel.org
3443 L:      bpf@vger.kernel.org
3444 S:      Supported
3445 F:      arch/x86/net/
3446 X:      arch/x86/net/bpf_jit_comp32.c
3447
3448 BPF LSM (Security Audit and Enforcement using BPF)
3449 M:      KP Singh <kpsingh@kernel.org>
3450 R:      Florent Revest <revest@chromium.org>
3451 R:      Brendan Jackman <jackmanb@chromium.org>
3452 L:      bpf@vger.kernel.org
3453 S:      Maintained
3454 F:      Documentation/bpf/bpf_lsm.rst
3455 F:      include/linux/bpf_lsm.h
3456 F:      kernel/bpf/bpf_lsm.c
3457 F:      security/bpf/
3458
3459 BROADCOM B44 10/100 ETHERNET DRIVER
3460 M:      Michael Chan <michael.chan@broadcom.com>
3461 L:      netdev@vger.kernel.org
3462 S:      Supported
3463 F:      drivers/net/ethernet/broadcom/b44.*
3464
3465 BROADCOM B53 ETHERNET SWITCH DRIVER
3466 M:      Florian Fainelli <f.fainelli@gmail.com>
3467 L:      netdev@vger.kernel.org
3468 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3469 S:      Supported
3470 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3471 F:      drivers/net/dsa/b53/*
3472 F:      include/linux/dsa/brcm.h
3473 F:      include/linux/platform_data/b53.h
3474
3475 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3476 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3477 L:      bcm-kernel-feedback-list@broadcom.com
3478 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3479 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3480 S:      Maintained
3481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3482 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3483 F:      drivers/pci/controller/pcie-brcmstb.c
3484 F:      drivers/staging/vc04_services
3485 N:      bcm2711
3486 N:      bcm283*
3487
3488 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3489 M:      Florian Fainelli <f.fainelli@gmail.com>
3490 M:      Ray Jui <rjui@broadcom.com>
3491 M:      Scott Branden <sbranden@broadcom.com>
3492 M:      bcm-kernel-feedback-list@broadcom.com
3493 S:      Maintained
3494 T:      git git://github.com/broadcom/mach-bcm
3495 F:      arch/arm/mach-bcm/
3496 N:      bcm281*
3497 N:      bcm113*
3498 N:      bcm216*
3499 N:      kona
3500
3501 BROADCOM BCM47XX MIPS ARCHITECTURE
3502 M:      Hauke Mehrtens <hauke@hauke-m.de>
3503 M:      Rafał Miłecki <zajec5@gmail.com>
3504 L:      linux-mips@vger.kernel.org
3505 S:      Maintained
3506 F:      Documentation/devicetree/bindings/mips/brcm/
3507 F:      arch/mips/bcm47xx/*
3508 F:      arch/mips/include/asm/mach-bcm47xx/*
3509
3510 BROADCOM BCM4908 ETHERNET DRIVER
3511 M:      Rafał Miłecki <rafal@milecki.pl>
3512 M:      bcm-kernel-feedback-list@broadcom.com
3513 L:      netdev@vger.kernel.org
3514 S:      Maintained
3515 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3516 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3517 F:      drivers/net/ethernet/broadcom/unimac.h
3518
3519 BROADCOM BCM5301X ARM ARCHITECTURE
3520 M:      Hauke Mehrtens <hauke@hauke-m.de>
3521 M:      Rafał Miłecki <zajec5@gmail.com>
3522 M:      bcm-kernel-feedback-list@broadcom.com
3523 L:      linux-arm-kernel@lists.infradead.org
3524 S:      Maintained
3525 F:      arch/arm/boot/dts/bcm470*
3526 F:      arch/arm/boot/dts/bcm5301*
3527 F:      arch/arm/boot/dts/bcm953012*
3528 F:      arch/arm/mach-bcm/bcm_5301x.c
3529
3530 BROADCOM BCM53573 ARM ARCHITECTURE
3531 M:      Rafał Miłecki <rafal@milecki.pl>
3532 L:      bcm-kernel-feedback-list@broadcom.com
3533 L:      linux-arm-kernel@lists.infradead.org
3534 S:      Maintained
3535 F:      arch/arm/boot/dts/bcm47189*
3536 F:      arch/arm/boot/dts/bcm53573*
3537
3538 BROADCOM BCM63XX ARM ARCHITECTURE
3539 M:      Florian Fainelli <f.fainelli@gmail.com>
3540 M:      bcm-kernel-feedback-list@broadcom.com
3541 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3542 S:      Maintained
3543 T:      git git://github.com/broadcom/stblinux.git
3544 N:      bcm63xx
3545
3546 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3547 M:      Kevin Cernekee <cernekee@gmail.com>
3548 L:      linux-usb@vger.kernel.org
3549 S:      Maintained
3550 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3551
3552 BROADCOM BCM7XXX ARM ARCHITECTURE
3553 M:      Florian Fainelli <f.fainelli@gmail.com>
3554 M:      bcm-kernel-feedback-list@broadcom.com
3555 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3556 S:      Maintained
3557 T:      git git://github.com/broadcom/stblinux.git
3558 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3559 F:      arch/arm/boot/dts/bcm7*.dts*
3560 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3561 F:      arch/arm/mach-bcm/*brcmstb*
3562 F:      arch/arm/mm/cache-b15-rac.c
3563 F:      drivers/bus/brcmstb_gisb.c
3564 F:      drivers/pci/controller/pcie-brcmstb.c
3565 N:      brcmstb
3566
3567 BROADCOM BDC DRIVER
3568 M:      Al Cooper <alcooperx@gmail.com>
3569 L:      linux-usb@vger.kernel.org
3570 L:      bcm-kernel-feedback-list@broadcom.com
3571 S:      Maintained
3572 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3573 F:      drivers/usb/gadget/udc/bdc/
3574
3575 BROADCOM BMIPS CPUFREQ DRIVER
3576 M:      Markus Mayer <mmayer@broadcom.com>
3577 M:      bcm-kernel-feedback-list@broadcom.com
3578 L:      linux-pm@vger.kernel.org
3579 S:      Maintained
3580 F:      drivers/cpufreq/bmips-cpufreq.c
3581
3582 BROADCOM BMIPS MIPS ARCHITECTURE
3583 M:      Florian Fainelli <f.fainelli@gmail.com>
3584 L:      bcm-kernel-feedback-list@broadcom.com
3585 L:      linux-mips@vger.kernel.org
3586 S:      Maintained
3587 T:      git git://github.com/broadcom/stblinux.git
3588 F:      arch/mips/bmips/*
3589 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3590 F:      arch/mips/include/asm/mach-bmips/*
3591 F:      arch/mips/kernel/*bmips*
3592 F:      drivers/soc/bcm/bcm63xx
3593 F:      drivers/irqchip/irq-bcm63*
3594 F:      drivers/irqchip/irq-bcm7*
3595 F:      drivers/irqchip/irq-brcmstb*
3596 F:      include/linux/bcm963xx_nvram.h
3597 F:      include/linux/bcm963xx_tag.h
3598
3599 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3600 M:      Rasesh Mody <rmody@marvell.com>
3601 M:      GR-Linux-NIC-Dev@marvell.com
3602 L:      netdev@vger.kernel.org
3603 S:      Supported
3604 F:      drivers/net/ethernet/broadcom/bnx2.*
3605 F:      drivers/net/ethernet/broadcom/bnx2_*
3606
3607 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3608 M:      Saurav Kashyap <skashyap@marvell.com>
3609 M:      Javed Hasan <jhasan@marvell.com>
3610 M:      GR-QLogic-Storage-Upstream@marvell.com
3611 L:      linux-scsi@vger.kernel.org
3612 S:      Supported
3613 F:      drivers/scsi/bnx2fc/
3614
3615 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3616 M:      Nilesh Javali <njavali@marvell.com>
3617 M:      Manish Rangankar <mrangankar@marvell.com>
3618 M:      GR-QLogic-Storage-Upstream@marvell.com
3619 L:      linux-scsi@vger.kernel.org
3620 S:      Supported
3621 F:      drivers/scsi/bnx2i/
3622
3623 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3624 M:      Ariel Elior <aelior@marvell.com>
3625 M:      Sudarsana Kalluru <skalluru@marvell.com>
3626 M:      GR-everest-linux-l2@marvell.com
3627 L:      netdev@vger.kernel.org
3628 S:      Supported
3629 F:      drivers/net/ethernet/broadcom/bnx2x/
3630
3631 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3632 M:      Michael Chan <michael.chan@broadcom.com>
3633 L:      netdev@vger.kernel.org
3634 S:      Supported
3635 F:      drivers/net/ethernet/broadcom/bnxt/
3636
3637 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3638 M:      Arend van Spriel <aspriel@gmail.com>
3639 M:      Franky Lin <franky.lin@broadcom.com>
3640 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3641 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3642 M:      Wright Feng <wright.feng@infineon.com>
3643 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3644 L:      linux-wireless@vger.kernel.org
3645 L:      brcm80211-dev-list.pdl@broadcom.com
3646 L:      SHA-cyfmac-dev-list@infineon.com
3647 S:      Supported
3648 F:      drivers/net/wireless/broadcom/brcm80211/
3649
3650 BROADCOM BRCMSTB GPIO DRIVER
3651 M:      Gregory Fong <gregory.0xf0@gmail.com>
3652 L:      bcm-kernel-feedback-list@broadcom.com
3653 S:      Supported
3654 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3655 F:      drivers/gpio/gpio-brcmstb.c
3656
3657 BROADCOM BRCMSTB I2C DRIVER
3658 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3659 L:      linux-i2c@vger.kernel.org
3660 L:      bcm-kernel-feedback-list@broadcom.com
3661 S:      Supported
3662 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3663 F:      drivers/i2c/busses/i2c-brcmstb.c
3664
3665 BROADCOM BRCMSTB UART DRIVER
3666 M:      Al Cooper <alcooperx@gmail.com>
3667 L:      linux-serial@vger.kernel.org
3668 L:      bcm-kernel-feedback-list@broadcom.com
3669 S:      Maintained
3670 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3671 F:      drivers/tty/serial/8250/8250_bcm7271.c
3672
3673 BROADCOM BRCMSTB USB EHCI DRIVER
3674 M:      Al Cooper <alcooperx@gmail.com>
3675 L:      linux-usb@vger.kernel.org
3676 L:      bcm-kernel-feedback-list@broadcom.com
3677 S:      Maintained
3678 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3679 F:      drivers/usb/host/ehci-brcm.*
3680
3681 BROADCOM BRCMSTB USB PIN MAP 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,usb-pinmap.yaml
3687 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3688
3689 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3690 M:      Al Cooper <alcooperx@gmail.com>
3691 L:      linux-kernel@vger.kernel.org
3692 L:      bcm-kernel-feedback-list@broadcom.com
3693 S:      Maintained
3694 F:      drivers/phy/broadcom/phy-brcm-usb*
3695
3696 BROADCOM ETHERNET PHY DRIVERS
3697 M:      Florian Fainelli <f.fainelli@gmail.com>
3698 L:      bcm-kernel-feedback-list@broadcom.com
3699 L:      netdev@vger.kernel.org
3700 S:      Supported
3701 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3702 F:      drivers/net/phy/bcm*.[ch]
3703 F:      drivers/net/phy/broadcom.c
3704 F:      include/linux/brcmphy.h
3705
3706 BROADCOM GENET ETHERNET DRIVER
3707 M:      Doug Berger <opendmb@gmail.com>
3708 M:      Florian Fainelli <f.fainelli@gmail.com>
3709 L:      bcm-kernel-feedback-list@broadcom.com
3710 L:      netdev@vger.kernel.org
3711 S:      Supported
3712 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3713 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3714 F:      drivers/net/ethernet/broadcom/genet/
3715 F:      drivers/net/ethernet/broadcom/unimac.h
3716 F:      drivers/net/mdio/mdio-bcm-unimac.c
3717 F:      include/linux/platform_data/bcmgenet.h
3718 F:      include/linux/platform_data/mdio-bcm-unimac.h
3719
3720 BROADCOM IPROC ARM ARCHITECTURE
3721 M:      Ray Jui <rjui@broadcom.com>
3722 M:      Scott Branden <sbranden@broadcom.com>
3723 M:      bcm-kernel-feedback-list@broadcom.com
3724 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3725 S:      Maintained
3726 T:      git git://github.com/broadcom/cygnus-linux.git
3727 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3728 F:      arch/arm64/boot/dts/broadcom/stingray/*
3729 F:      drivers/clk/bcm/clk-ns*
3730 F:      drivers/clk/bcm/clk-sr*
3731 F:      drivers/pinctrl/bcm/pinctrl-ns*
3732 F:      include/dt-bindings/clock/bcm-sr*
3733 N:      iproc
3734 N:      cygnus
3735 N:      bcm[-_]nsp
3736 N:      bcm9113*
3737 N:      bcm9583*
3738 N:      bcm9585*
3739 N:      bcm9586*
3740 N:      bcm988312
3741 N:      bcm113*
3742 N:      bcm583*
3743 N:      bcm585*
3744 N:      bcm586*
3745 N:      bcm88312
3746 N:      hr2
3747 N:      stingray
3748
3749 BROADCOM IPROC GBIT ETHERNET DRIVER
3750 M:      Rafał Miłecki <rafal@milecki.pl>
3751 M:      bcm-kernel-feedback-list@broadcom.com
3752 L:      netdev@vger.kernel.org
3753 S:      Maintained
3754 F:      Documentation/devicetree/bindings/net/brcm,amac.txt
3755 F:      drivers/net/ethernet/broadcom/bgmac*
3756 F:      drivers/net/ethernet/broadcom/unimac.h
3757
3758 BROADCOM KONA GPIO DRIVER
3759 M:      Ray Jui <rjui@broadcom.com>
3760 L:      bcm-kernel-feedback-list@broadcom.com
3761 S:      Supported
3762 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3763 F:      drivers/gpio/gpio-bcm-kona.c
3764
3765 BROADCOM NETXTREME-E ROCE DRIVER
3766 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3767 M:      Naresh Kumar PBS <nareshkumar.pbs@broadcom.com>
3768 L:      linux-rdma@vger.kernel.org
3769 S:      Supported
3770 W:      http://www.broadcom.com
3771 F:      drivers/infiniband/hw/bnxt_re/
3772 F:      include/uapi/rdma/bnxt_re-abi.h
3773
3774 BROADCOM NVRAM DRIVER
3775 M:      Rafał Miłecki <zajec5@gmail.com>
3776 L:      linux-mips@vger.kernel.org
3777 S:      Maintained
3778 F:      drivers/firmware/broadcom/*
3779
3780 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3781 M:      Rafał Miłecki <rafal@milecki.pl>
3782 M:      Florian Fainelli <f.fainelli@gmail.com>
3783 M:      bcm-kernel-feedback-list@broadcom.com
3784 L:      linux-pm@vger.kernel.org
3785 S:      Maintained
3786 T:      git git://github.com/broadcom/stblinux.git
3787 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
3788 F:      include/dt-bindings/soc/bcm-pmb.h
3789
3790 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3791 M:      Rafał Miłecki <zajec5@gmail.com>
3792 L:      linux-wireless@vger.kernel.org
3793 S:      Maintained
3794 F:      drivers/bcma/
3795 F:      include/linux/bcma/
3796
3797 BROADCOM SPI DRIVER
3798 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3799 M:      bcm-kernel-feedback-list@broadcom.com
3800 S:      Maintained
3801 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
3802 F:      drivers/spi/spi-bcm-qspi.*
3803 F:      drivers/spi/spi-brcmstb-qspi.c
3804 F:      drivers/spi/spi-iproc-qspi.c
3805
3806 BROADCOM STB AVS CPUFREQ DRIVER
3807 M:      Markus Mayer <mmayer@broadcom.com>
3808 M:      bcm-kernel-feedback-list@broadcom.com
3809 L:      linux-pm@vger.kernel.org
3810 S:      Maintained
3811 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3812 F:      drivers/cpufreq/brcmstb*
3813
3814 BROADCOM STB AVS TMON 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/thermal/brcm,avs-tmon.txt
3820 F:      drivers/thermal/broadcom/brcmstb*
3821
3822 BROADCOM STB DPFE DRIVER
3823 M:      Markus Mayer <mmayer@broadcom.com>
3824 M:      bcm-kernel-feedback-list@broadcom.com
3825 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3826 S:      Maintained
3827 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3828 F:      drivers/memory/brcmstb_dpfe.c
3829
3830 BROADCOM STB NAND FLASH DRIVER
3831 M:      Brian Norris <computersforpeace@gmail.com>
3832 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3833 L:      linux-mtd@lists.infradead.org
3834 L:      bcm-kernel-feedback-list@broadcom.com
3835 S:      Maintained
3836 F:      drivers/mtd/nand/raw/brcmnand/
3837
3838 BROADCOM SYSTEMPORT ETHERNET DRIVER
3839 M:      Florian Fainelli <f.fainelli@gmail.com>
3840 L:      bcm-kernel-feedback-list@broadcom.com
3841 L:      netdev@vger.kernel.org
3842 S:      Supported
3843 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3844 F:      drivers/net/ethernet/broadcom/unimac.h
3845
3846 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3847 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3848 M:      Prashant Sreedharan <prashant@broadcom.com>
3849 M:      Michael Chan <mchan@broadcom.com>
3850 L:      netdev@vger.kernel.org
3851 S:      Supported
3852 F:      drivers/net/ethernet/broadcom/tg3.*
3853
3854 BROADCOM VK DRIVER
3855 M:      Scott Branden <scott.branden@broadcom.com>
3856 L:      bcm-kernel-feedback-list@broadcom.com
3857 S:      Supported
3858 F:      drivers/misc/bcm-vk/
3859 F:      include/uapi/linux/misc/bcm_vk.h
3860
3861 BROCADE BFA FC SCSI DRIVER
3862 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3863 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3864 L:      linux-scsi@vger.kernel.org
3865 S:      Supported
3866 F:      drivers/scsi/bfa/
3867
3868 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3869 M:      Rasesh Mody <rmody@marvell.com>
3870 M:      Sudarsana Kalluru <skalluru@marvell.com>
3871 M:      GR-Linux-NIC-Dev@marvell.com
3872 L:      netdev@vger.kernel.org
3873 S:      Supported
3874 F:      drivers/net/ethernet/brocade/bna/
3875
3876 BSG (block layer generic sg v4 driver)
3877 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3878 L:      linux-scsi@vger.kernel.org
3879 S:      Supported
3880 F:      block/bsg.c
3881 F:      include/linux/bsg.h
3882 F:      include/uapi/linux/bsg.h
3883
3884 BT87X AUDIO DRIVER
3885 M:      Clemens Ladisch <clemens@ladisch.de>
3886 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3887 S:      Maintained
3888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3889 F:      Documentation/sound/cards/bt87x.rst
3890 F:      sound/pci/bt87x.c
3891
3892 BT8XXGPIO DRIVER
3893 M:      Michael Buesch <m@bues.ch>
3894 S:      Maintained
3895 W:      http://bu3sch.de/btgpio.php
3896 F:      drivers/gpio/gpio-bt8xx.c
3897
3898 BTRFS FILE SYSTEM
3899 M:      Chris Mason <clm@fb.com>
3900 M:      Josef Bacik <josef@toxicpanda.com>
3901 M:      David Sterba <dsterba@suse.com>
3902 L:      linux-btrfs@vger.kernel.org
3903 S:      Maintained
3904 W:      http://btrfs.wiki.kernel.org/
3905 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3906 C:      irc://irc.libera.chat/btrfs
3907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3908 F:      Documentation/filesystems/btrfs.rst
3909 F:      fs/btrfs/
3910 F:      include/linux/btrfs*
3911 F:      include/uapi/linux/btrfs*
3912
3913 BTTV VIDEO4LINUX DRIVER
3914 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3915 L:      linux-media@vger.kernel.org
3916 S:      Odd fixes
3917 W:      https://linuxtv.org
3918 T:      git git://linuxtv.org/media_tree.git
3919 F:      Documentation/driver-api/media/drivers/bttv*
3920 F:      drivers/media/pci/bt8xx/bttv*
3921
3922 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3923 M:      Chanwoo Choi <cw00.choi@samsung.com>
3924 L:      linux-pm@vger.kernel.org
3925 L:      linux-samsung-soc@vger.kernel.org
3926 S:      Maintained
3927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3928 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3929 F:      drivers/devfreq/exynos-bus.c
3930
3931 BUSLOGIC SCSI DRIVER
3932 M:      Khalid Aziz <khalid@gonehiking.org>
3933 L:      linux-scsi@vger.kernel.org
3934 S:      Maintained
3935 F:      drivers/scsi/BusLogic.*
3936 F:      drivers/scsi/FlashPoint.*
3937
3938 C-MEDIA CMI8788 DRIVER
3939 M:      Clemens Ladisch <clemens@ladisch.de>
3940 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3941 S:      Maintained
3942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3943 F:      sound/pci/oxygen/
3944
3945 C-SKY ARCHITECTURE
3946 M:      Guo Ren <guoren@kernel.org>
3947 L:      linux-csky@vger.kernel.org
3948 S:      Supported
3949 T:      git https://github.com/c-sky/csky-linux.git
3950 F:      Documentation/devicetree/bindings/csky/
3951 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3952 F:      Documentation/devicetree/bindings/timer/csky,*
3953 F:      arch/csky/
3954 F:      drivers/clocksource/timer-gx6605s.c
3955 F:      drivers/clocksource/timer-mp-csky.c
3956 F:      drivers/irqchip/irq-csky-*
3957 N:      csky
3958 K:      csky
3959
3960 CA8210 IEEE-802.15.4 RADIO DRIVER
3961 M:      Harry Morris <h.morris@cascoda.com>
3962 L:      linux-wpan@vger.kernel.org
3963 S:      Maintained
3964 W:      https://github.com/Cascoda/ca8210-linux.git
3965 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3966 F:      drivers/net/ieee802154/ca8210.c
3967
3968 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
3969 M:      Damien Le Moal <damien.lemoal@wdc.com>
3970 L:      linux-riscv@lists.infradead.org
3971 L:      linux-gpio@vger.kernel.org (pinctrl driver)
3972 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
3973 F:      drivers/pinctrl/pinctrl-k210.c
3974
3975 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
3976 M:      Damien Le Moal <damien.lemoal@wdc.com>
3977 L:      linux-kernel@vger.kernel.org
3978 L:      linux-riscv@lists.infradead.org
3979 S:      Maintained
3980 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
3981 F:      drivers/reset/reset-k210.c
3982
3983 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
3984 M:      Damien Le Moal <damien.lemoal@wdc.com>
3985 L:      linux-riscv@lists.infradead.org
3986 S:      Maintained
3987 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
3988 F:      drivers/soc/canaan/
3989 F:      include/soc/canaan/
3990
3991 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3992 M:      David Howells <dhowells@redhat.com>
3993 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3994 S:      Supported
3995 F:      Documentation/filesystems/caching/cachefiles.rst
3996 F:      fs/cachefiles/
3997
3998 CADENCE MIPI-CSI2 BRIDGES
3999 M:      Maxime Ripard <mripard@kernel.org>
4000 L:      linux-media@vger.kernel.org
4001 S:      Maintained
4002 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4003 F:      drivers/media/platform/cadence/cdns-csi2*
4004
4005 CADENCE NAND DRIVER
4006 L:      linux-mtd@lists.infradead.org
4007 S:      Orphan
4008 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4009 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4010
4011 CADENCE USB3 DRD IP DRIVER
4012 M:      Peter Chen <peter.chen@kernel.org>
4013 M:      Pawel Laszczak <pawell@cadence.com>
4014 R:      Roger Quadros <rogerq@kernel.org>
4015 R:      Aswath Govindraju <a-govindraju@ti.com>
4016 L:      linux-usb@vger.kernel.org
4017 S:      Maintained
4018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4019 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4020 F:      drivers/usb/cdns3/
4021 X:      drivers/usb/cdns3/cdnsp*
4022
4023 CADENCE USBSSP DRD IP DRIVER
4024 M:      Pawel Laszczak <pawell@cadence.com>
4025 L:      linux-usb@vger.kernel.org
4026 S:      Maintained
4027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4028 F:      drivers/usb/cdns3/
4029 X:      drivers/usb/cdns3/cdns3*
4030
4031 CADET FM/AM RADIO RECEIVER DRIVER
4032 M:      Hans Verkuil <hverkuil@xs4all.nl>
4033 L:      linux-media@vger.kernel.org
4034 S:      Maintained
4035 W:      https://linuxtv.org
4036 T:      git git://linuxtv.org/media_tree.git
4037 F:      drivers/media/radio/radio-cadet*
4038
4039 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4040 L:      linux-media@vger.kernel.org
4041 S:      Orphan
4042 T:      git git://linuxtv.org/media_tree.git
4043 F:      Documentation/admin-guide/media/cafe_ccic*
4044 F:      drivers/media/platform/marvell-ccic/
4045
4046 CAIF NETWORK LAYER
4047 L:      netdev@vger.kernel.org
4048 S:      Orphan
4049 F:      Documentation/networking/caif/
4050 F:      drivers/net/caif/
4051 F:      include/net/caif/
4052 F:      include/uapi/linux/caif/
4053 F:      net/caif/
4054
4055 CAKE QDISC
4056 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4057 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4058 S:      Maintained
4059 F:      net/sched/sch_cake.c
4060
4061 CAN NETWORK DRIVERS
4062 M:      Wolfgang Grandegger <wg@grandegger.com>
4063 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4064 L:      linux-can@vger.kernel.org
4065 S:      Maintained
4066 W:      https://github.com/linux-can
4067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4069 F:      Documentation/devicetree/bindings/net/can/
4070 F:      drivers/net/can/
4071 F:      include/linux/can/bittiming.h
4072 F:      include/linux/can/dev.h
4073 F:      include/linux/can/led.h
4074 F:      include/linux/can/length.h
4075 F:      include/linux/can/platform/
4076 F:      include/linux/can/rx-offload.h
4077 F:      include/uapi/linux/can/error.h
4078 F:      include/uapi/linux/can/netlink.h
4079 F:      include/uapi/linux/can/vxcan.h
4080
4081 CAN NETWORK LAYER
4082 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4083 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4084 L:      linux-can@vger.kernel.org
4085 S:      Maintained
4086 W:      https://github.com/linux-can
4087 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4088 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4089 F:      Documentation/networking/can.rst
4090 F:      include/linux/can/can-ml.h
4091 F:      include/linux/can/core.h
4092 F:      include/linux/can/skb.h
4093 F:      include/net/netns/can.h
4094 F:      include/uapi/linux/can.h
4095 F:      include/uapi/linux/can/bcm.h
4096 F:      include/uapi/linux/can/gw.h
4097 F:      include/uapi/linux/can/isotp.h
4098 F:      include/uapi/linux/can/raw.h
4099 F:      net/can/
4100
4101 CAN-J1939 NETWORK LAYER
4102 M:      Robin van der Gracht <robin@protonic.nl>
4103 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4104 R:      kernel@pengutronix.de
4105 L:      linux-can@vger.kernel.org
4106 S:      Maintained
4107 F:      Documentation/networking/j1939.rst
4108 F:      include/uapi/linux/can/j1939.h
4109 F:      net/can/j1939/
4110
4111 CAPABILITIES
4112 M:      Serge Hallyn <serge@hallyn.com>
4113 L:      linux-security-module@vger.kernel.org
4114 S:      Supported
4115 F:      include/linux/capability.h
4116 F:      include/uapi/linux/capability.h
4117 F:      kernel/capability.c
4118 F:      security/commoncap.c
4119
4120 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4121 M:      Kevin Tsai <ktsai@capellamicro.com>
4122 S:      Maintained
4123 F:      drivers/iio/light/cm*
4124
4125 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4126 M:      Christian Lamparter <chunkeey@googlemail.com>
4127 L:      linux-wireless@vger.kernel.org
4128 S:      Maintained
4129 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4130 F:      drivers/net/wireless/ath/carl9170/
4131
4132 CAVIUM I2C DRIVER
4133 M:      Robert Richter <rric@kernel.org>
4134 S:      Odd Fixes
4135 W:      http://www.marvell.com
4136 F:      drivers/i2c/busses/i2c-octeon*
4137 F:      drivers/i2c/busses/i2c-thunderx*
4138
4139 CAVIUM LIQUIDIO NETWORK DRIVER
4140 M:      Derek Chickles <dchickles@marvell.com>
4141 M:      Satanand Burla <sburla@marvell.com>
4142 M:      Felix Manlunas <fmanlunas@marvell.com>
4143 L:      netdev@vger.kernel.org
4144 S:      Supported
4145 W:      http://www.marvell.com
4146 F:      drivers/net/ethernet/cavium/liquidio/
4147
4148 CAVIUM MMC DRIVER
4149 M:      Robert Richter <rric@kernel.org>
4150 S:      Odd Fixes
4151 W:      http://www.marvell.com
4152 F:      drivers/mmc/host/cavium*
4153
4154 CAVIUM OCTEON-TX CRYPTO DRIVER
4155 M:      George Cherian <gcherian@marvell.com>
4156 L:      linux-crypto@vger.kernel.org
4157 S:      Supported
4158 W:      http://www.marvell.com
4159 F:      drivers/crypto/cavium/cpt/
4160
4161 CAVIUM THUNDERX2 ARM64 SOC
4162 M:      Robert Richter <rric@kernel.org>
4163 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4164 S:      Odd Fixes
4165 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4166 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4167
4168 CBS/ETF/TAPRIO QDISCS
4169 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4170 S:      Maintained
4171 L:      netdev@vger.kernel.org
4172 F:      net/sched/sch_cbs.c
4173 F:      net/sched/sch_etf.c
4174 F:      net/sched/sch_taprio.c
4175
4176 CC2520 IEEE-802.15.4 RADIO DRIVER
4177 M:      Varka Bhadram <varkabhadram@gmail.com>
4178 L:      linux-wpan@vger.kernel.org
4179 S:      Maintained
4180 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4181 F:      drivers/net/ieee802154/cc2520.c
4182 F:      include/linux/spi/cc2520.h
4183
4184 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4185 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4186 L:      linux-crypto@vger.kernel.org
4187 S:      Supported
4188 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4189 F:      drivers/crypto/ccree/
4190
4191 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4192 M:      Hadar Gat <hadar.gat@arm.com>
4193 L:      linux-crypto@vger.kernel.org
4194 S:      Supported
4195 F:      drivers/char/hw_random/cctrng.c
4196 F:      drivers/char/hw_random/cctrng.h
4197 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4198 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4199
4200 CEC FRAMEWORK
4201 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4202 L:      linux-media@vger.kernel.org
4203 S:      Supported
4204 W:      http://linuxtv.org
4205 T:      git git://linuxtv.org/media_tree.git
4206 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4207 F:      Documentation/devicetree/bindings/media/cec.txt
4208 F:      Documentation/driver-api/media/cec-core.rst
4209 F:      Documentation/userspace-api/media/cec
4210 F:      drivers/media/cec/
4211 F:      drivers/media/rc/keymaps/rc-cec.c
4212 F:      include/media/cec-notifier.h
4213 F:      include/media/cec.h
4214 F:      include/uapi/linux/cec-funcs.h
4215 F:      include/uapi/linux/cec.h
4216
4217 CEC GPIO DRIVER
4218 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4219 L:      linux-media@vger.kernel.org
4220 S:      Supported
4221 W:      http://linuxtv.org
4222 T:      git git://linuxtv.org/media_tree.git
4223 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4224 F:      drivers/media/cec/platform/cec-gpio/
4225
4226 CELL BROADBAND ENGINE ARCHITECTURE
4227 M:      Arnd Bergmann <arnd@arndb.de>
4228 L:      linuxppc-dev@lists.ozlabs.org
4229 S:      Supported
4230 W:      http://www.ibm.com/developerworks/power/cell/
4231 F:      arch/powerpc/include/asm/cell*.h
4232 F:      arch/powerpc/include/asm/spu*.h
4233 F:      arch/powerpc/include/uapi/asm/spu*.h
4234 F:      arch/powerpc/platforms/cell/
4235
4236 CELLWISE CW2015 BATTERY DRIVER
4237 M:      Tobias Schrammm <t.schramm@manjaro.org>
4238 S:      Maintained
4239 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4240 F:      drivers/power/supply/cw2015_battery.c
4241
4242 CEPH COMMON CODE (LIBCEPH)
4243 M:      Ilya Dryomov <idryomov@gmail.com>
4244 M:      Jeff Layton <jlayton@kernel.org>
4245 L:      ceph-devel@vger.kernel.org
4246 S:      Supported
4247 W:      http://ceph.com/
4248 T:      git git://github.com/ceph/ceph-client.git
4249 F:      include/linux/ceph/
4250 F:      include/linux/crush/
4251 F:      net/ceph/
4252
4253 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4254 M:      Jeff Layton <jlayton@kernel.org>
4255 M:      Ilya Dryomov <idryomov@gmail.com>
4256 L:      ceph-devel@vger.kernel.org
4257 S:      Supported
4258 W:      http://ceph.com/
4259 T:      git git://github.com/ceph/ceph-client.git
4260 F:      Documentation/filesystems/ceph.rst
4261 F:      fs/ceph/
4262
4263 CERTIFICATE HANDLING
4264 M:      David Howells <dhowells@redhat.com>
4265 M:      David Woodhouse <dwmw2@infradead.org>
4266 L:      keyrings@vger.kernel.org
4267 S:      Maintained
4268 F:      Documentation/admin-guide/module-signing.rst
4269 F:      certs/
4270 F:      scripts/extract-cert.c
4271 F:      scripts/sign-file.c
4272
4273 CFAG12864B LCD DRIVER
4274 M:      Miguel Ojeda <ojeda@kernel.org>
4275 S:      Maintained
4276 F:      drivers/auxdisplay/cfag12864b.c
4277 F:      include/linux/cfag12864b.h
4278
4279 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4280 M:      Miguel Ojeda <ojeda@kernel.org>
4281 S:      Maintained
4282 F:      drivers/auxdisplay/cfag12864bfb.c
4283 F:      include/linux/cfag12864b.h
4284
4285 CHAR and MISC DRIVERS
4286 M:      Arnd Bergmann <arnd@arndb.de>
4287 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4288 S:      Supported
4289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4290 F:      drivers/char/
4291 F:      drivers/misc/
4292 F:      include/linux/miscdevice.h
4293 X:      drivers/char/agp/
4294 X:      drivers/char/hw_random/
4295 X:      drivers/char/ipmi/
4296 X:      drivers/char/random.c
4297 X:      drivers/char/tpm/
4298
4299 CHECKPATCH
4300 M:      Andy Whitcroft <apw@canonical.com>
4301 M:      Joe Perches <joe@perches.com>
4302 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4303 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4304 S:      Maintained
4305 F:      scripts/checkpatch.pl
4306
4307 CHECKPATCH DOCUMENTATION
4308 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4309 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4310 R:      Joe Perches <joe@perches.com>
4311 S:      Maintained
4312 F:      Documentation/dev-tools/checkpatch.rst
4313
4314 CHINESE DOCUMENTATION
4315 M:      Alex Shi <alexs@kernel.org>
4316 S:      Maintained
4317 F:      Documentation/translations/zh_CN/
4318
4319 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4320 M:      Peter Chen <peter.chen@kernel.org>
4321 L:      linux-usb@vger.kernel.org
4322 S:      Maintained
4323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4324 F:      drivers/usb/chipidea/
4325
4326 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4327 M:      Hans de Goede <hdegoede@redhat.com>
4328 L:      linux-input@vger.kernel.org
4329 S:      Maintained
4330 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4331 F:      drivers/input/touchscreen/chipone_icn8318.c
4332
4333 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4334 M:      Hans de Goede <hdegoede@redhat.com>
4335 L:      linux-input@vger.kernel.org
4336 S:      Maintained
4337 F:      drivers/input/touchscreen/chipone_icn8505.c
4338
4339 CHROME HARDWARE PLATFORM SUPPORT
4340 M:      Benson Leung <bleung@chromium.org>
4341 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4342 S:      Maintained
4343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4344 F:      drivers/platform/chrome/
4345
4346 CHROMEOS EC CODEC DRIVER
4347 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4348 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4349 R:      Guenter Roeck <groeck@chromium.org>
4350 S:      Maintained
4351 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4352 F:      sound/soc/codecs/cros_ec_codec.*
4353
4354 CHROMEOS EC SUBDRIVERS
4355 M:      Benson Leung <bleung@chromium.org>
4356 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4357 R:      Guenter Roeck <groeck@chromium.org>
4358 S:      Maintained
4359 F:      drivers/power/supply/cros_usbpd-charger.c
4360 N:      cros_ec
4361 N:      cros-ec
4362
4363 CHRONTEL CH7322 CEC DRIVER
4364 M:      Jeff Chase <jnchase@google.com>
4365 L:      linux-media@vger.kernel.org
4366 S:      Maintained
4367 T:      git git://linuxtv.org/media_tree.git
4368 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4369 F:      drivers/media/cec/i2c/ch7322.c
4370
4371 CIRRUS LOGIC AUDIO CODEC DRIVERS
4372 M:      James Schulman <james.schulman@cirrus.com>
4373 M:      David Rhodes <david.rhodes@cirrus.com>
4374 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4375 L:      patches@opensource.cirrus.com
4376 S:      Maintained
4377 F:      sound/soc/codecs/cs*
4378
4379 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4380 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4381 L:      netdev@vger.kernel.org
4382 S:      Maintained
4383 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4384
4385 CIRRUS LOGIC LOCHNAGAR DRIVER
4386 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4387 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4388 L:      patches@opensource.cirrus.com
4389 S:      Supported
4390 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4391 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4392 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4393 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4394 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4395 F:      Documentation/hwmon/lochnagar.rst
4396 F:      drivers/clk/clk-lochnagar.c
4397 F:      drivers/hwmon/lochnagar-hwmon.c
4398 F:      drivers/mfd/lochnagar-i2c.c
4399 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4400 F:      drivers/regulator/lochnagar-regulator.c
4401 F:      include/dt-bindings/clk/lochnagar.h
4402 F:      include/dt-bindings/pinctrl/lochnagar.h
4403 F:      include/linux/mfd/lochnagar*
4404 F:      sound/soc/codecs/lochnagar-sc.c
4405
4406 CIRRUS LOGIC MADERA CODEC DRIVERS
4407 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4408 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4409 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4410 L:      patches@opensource.cirrus.com
4411 S:      Supported
4412 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4413 T:      git https://github.com/CirrusLogic/linux-drivers.git
4414 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4415 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4416 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4417 F:      drivers/gpio/gpio-madera*
4418 F:      drivers/irqchip/irq-madera*
4419 F:      drivers/mfd/cs47l*
4420 F:      drivers/mfd/madera*
4421 F:      drivers/pinctrl/cirrus/*
4422 F:      include/dt-bindings/sound/madera*
4423 F:      include/linux/irqchip/irq-madera*
4424 F:      include/linux/mfd/madera/*
4425 F:      include/sound/madera*
4426 F:      sound/soc/codecs/cs47l*
4427 F:      sound/soc/codecs/madera*
4428
4429 CISCO FCOE HBA DRIVER
4430 M:      Satish Kharat <satishkh@cisco.com>
4431 M:      Sesidhar Baddela <sebaddel@cisco.com>
4432 M:      Karan Tilak Kumar <kartilak@cisco.com>
4433 L:      linux-scsi@vger.kernel.org
4434 S:      Supported
4435 F:      drivers/scsi/fnic/
4436
4437 CISCO SCSI HBA DRIVER
4438 M:      Karan Tilak Kumar <kartilak@cisco.com>
4439 M:      Sesidhar Baddela <sebaddel@cisco.com>
4440 L:      linux-scsi@vger.kernel.org
4441 S:      Supported
4442 F:      drivers/scsi/snic/
4443
4444 CISCO VIC ETHERNET NIC DRIVER
4445 M:      Christian Benvenuti <benve@cisco.com>
4446 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4447 S:      Supported
4448 F:      drivers/net/ethernet/cisco/enic/
4449
4450 CISCO VIC LOW LATENCY NIC DRIVER
4451 M:      Christian Benvenuti <benve@cisco.com>
4452 M:      Nelson Escobar <neescoba@cisco.com>
4453 S:      Supported
4454 F:      drivers/infiniband/hw/usnic/
4455
4456 CLANG-FORMAT FILE
4457 M:      Miguel Ojeda <ojeda@kernel.org>
4458 S:      Maintained
4459 F:      .clang-format
4460
4461 CLANG/LLVM BUILD SUPPORT
4462 M:      Nathan Chancellor <nathan@kernel.org>
4463 M:      Nick Desaulniers <ndesaulniers@google.com>
4464 L:      clang-built-linux@googlegroups.com
4465 S:      Supported
4466 W:      https://clangbuiltlinux.github.io/
4467 B:      https://github.com/ClangBuiltLinux/linux/issues
4468 C:      irc://chat.freenode.net/clangbuiltlinux
4469 F:      Documentation/kbuild/llvm.rst
4470 F:      include/linux/compiler-clang.h
4471 F:      scripts/clang-tools/
4472 K:      \b(?i:clang|llvm)\b
4473
4474 CLANG CONTROL FLOW INTEGRITY SUPPORT
4475 M:      Sami Tolvanen <samitolvanen@google.com>
4476 M:      Kees Cook <keescook@chromium.org>
4477 R:      Nathan Chancellor <nathan@kernel.org>
4478 R:      Nick Desaulniers <ndesaulniers@google.com>
4479 L:      clang-built-linux@googlegroups.com
4480 S:      Supported
4481 B:      https://github.com/ClangBuiltLinux/linux/issues
4482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4483 F:      include/linux/cfi.h
4484 F:      kernel/cfi.c
4485
4486 CLEANCACHE API
4487 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4488 L:      linux-kernel@vger.kernel.org
4489 S:      Maintained
4490 F:      include/linux/cleancache.h
4491 F:      mm/cleancache.c
4492
4493 CLK API
4494 M:      Russell King <linux@armlinux.org.uk>
4495 L:      linux-clk@vger.kernel.org
4496 S:      Maintained
4497 F:      include/linux/clk.h
4498
4499 CLOCKSOURCE, CLOCKEVENT DRIVERS
4500 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4501 M:      Thomas Gleixner <tglx@linutronix.de>
4502 L:      linux-kernel@vger.kernel.org
4503 S:      Supported
4504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4505 F:      Documentation/devicetree/bindings/timer/
4506 F:      drivers/clocksource/
4507
4508 CMPC ACPI DRIVER
4509 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4510 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4511 L:      platform-driver-x86@vger.kernel.org
4512 S:      Supported
4513 F:      drivers/platform/x86/classmate-laptop.c
4514
4515 COBALT MEDIA DRIVER
4516 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4517 L:      linux-media@vger.kernel.org
4518 S:      Supported
4519 W:      https://linuxtv.org
4520 T:      git git://linuxtv.org/media_tree.git
4521 F:      drivers/media/pci/cobalt/
4522
4523 COCCINELLE/Semantic Patches (SmPL)
4524 M:      Julia Lawall <Julia.Lawall@inria.fr>
4525 M:      Gilles Muller <Gilles.Muller@inria.fr>
4526 M:      Nicolas Palix <nicolas.palix@imag.fr>
4527 M:      Michal Marek <michal.lkml@markovi.net>
4528 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4529 S:      Supported
4530 W:      http://coccinelle.lip6.fr/
4531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4532 F:      Documentation/dev-tools/coccinelle.rst
4533 F:      scripts/coccicheck
4534 F:      scripts/coccinelle/
4535
4536 CODA FILE SYSTEM
4537 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4538 M:      coda@cs.cmu.edu
4539 L:      codalist@coda.cs.cmu.edu
4540 S:      Maintained
4541 W:      http://www.coda.cs.cmu.edu/
4542 F:      Documentation/filesystems/coda.rst
4543 F:      fs/coda/
4544 F:      include/linux/coda*.h
4545 F:      include/uapi/linux/coda*.h
4546
4547 CODA V4L2 MEM2MEM DRIVER
4548 M:      Philipp Zabel <p.zabel@pengutronix.de>
4549 L:      linux-media@vger.kernel.org
4550 S:      Maintained
4551 F:      Documentation/devicetree/bindings/media/coda.yaml
4552 F:      drivers/media/platform/coda/
4553
4554 CODE OF CONDUCT
4555 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4556 S:      Supported
4557 F:      Documentation/process/code-of-conduct-interpretation.rst
4558 F:      Documentation/process/code-of-conduct.rst
4559
4560 COMEDI DRIVERS
4561 M:      Ian Abbott <abbotti@mev.co.uk>
4562 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4563 S:      Odd Fixes
4564 F:      drivers/comedi/
4565
4566 COMMON CLK FRAMEWORK
4567 M:      Michael Turquette <mturquette@baylibre.com>
4568 M:      Stephen Boyd <sboyd@kernel.org>
4569 L:      linux-clk@vger.kernel.org
4570 S:      Maintained
4571 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4573 F:      Documentation/devicetree/bindings/clock/
4574 F:      drivers/clk/
4575 F:      include/linux/clk-pr*
4576 F:      include/linux/clk/
4577 F:      include/linux/of_clk.h
4578 X:      drivers/clk/clkdev.c
4579
4580 COMMON INTERNET FILE SYSTEM (CIFS)
4581 M:      Steve French <sfrench@samba.org>
4582 L:      linux-cifs@vger.kernel.org
4583 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4584 S:      Supported
4585 W:      http://linux-cifs.samba.org/
4586 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4587 F:      Documentation/admin-guide/cifs/
4588 F:      fs/cifs/
4589
4590 COMPACTPCI HOTPLUG CORE
4591 M:      Scott Murray <scott@spiteful.org>
4592 L:      linux-pci@vger.kernel.org
4593 S:      Maintained
4594 F:      drivers/pci/hotplug/cpci_hotplug*
4595
4596 COMPACTPCI HOTPLUG GENERIC DRIVER
4597 M:      Scott Murray <scott@spiteful.org>
4598 L:      linux-pci@vger.kernel.org
4599 S:      Maintained
4600 F:      drivers/pci/hotplug/cpcihp_generic.c
4601
4602 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4603 M:      Scott Murray <scott@spiteful.org>
4604 L:      linux-pci@vger.kernel.org
4605 S:      Maintained
4606 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4607
4608 COMPAL LAPTOP SUPPORT
4609 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4610 L:      platform-driver-x86@vger.kernel.org
4611 S:      Maintained
4612 F:      drivers/platform/x86/compal-laptop.c
4613
4614 COMPILER ATTRIBUTES
4615 M:      Miguel Ojeda <ojeda@kernel.org>
4616 S:      Maintained
4617 F:      include/linux/compiler_attributes.h
4618
4619 COMPUTE EXPRESS LINK (CXL)
4620 M:      Alison Schofield <alison.schofield@intel.com>
4621 M:      Vishal Verma <vishal.l.verma@intel.com>
4622 M:      Ira Weiny <ira.weiny@intel.com>
4623 M:      Ben Widawsky <ben.widawsky@intel.com>
4624 M:      Dan Williams <dan.j.williams@intel.com>
4625 L:      linux-cxl@vger.kernel.org
4626 S:      Maintained
4627 F:      drivers/cxl/
4628 F:      include/uapi/linux/cxl_mem.h
4629
4630 CONEXANT ACCESSRUNNER USB DRIVER
4631 L:      accessrunner-general@lists.sourceforge.net
4632 S:      Orphan
4633 W:      http://accessrunner.sourceforge.net/
4634 F:      drivers/usb/atm/cxacru.c
4635
4636 CONFIGFS
4637 M:      Joel Becker <jlbec@evilplan.org>
4638 M:      Christoph Hellwig <hch@lst.de>
4639 S:      Supported
4640 T:      git git://git.infradead.org/users/hch/configfs.git
4641 F:      fs/configfs/
4642 F:      include/linux/configfs.h
4643 F:      samples/configfs/
4644
4645 CONSOLE SUBSYSTEM
4646 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4647 S:      Supported
4648 F:      drivers/video/console/
4649 F:      include/linux/console*
4650
4651 CONTEXT TRACKING
4652 M:      Frederic Weisbecker <frederic@kernel.org>
4653 S:      Maintained
4654 F:      kernel/context_tracking.c
4655 F:      include/linux/context_tracking*
4656
4657 CONTROL GROUP (CGROUP)
4658 M:      Tejun Heo <tj@kernel.org>
4659 M:      Zefan Li <lizefan.x@bytedance.com>
4660 M:      Johannes Weiner <hannes@cmpxchg.org>
4661 L:      cgroups@vger.kernel.org
4662 S:      Maintained
4663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4664 F:      Documentation/admin-guide/cgroup-v1/
4665 F:      Documentation/admin-guide/cgroup-v2.rst
4666 F:      include/linux/cgroup*
4667 F:      kernel/cgroup/
4668
4669 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4670 M:      Tejun Heo <tj@kernel.org>
4671 M:      Jens Axboe <axboe@kernel.dk>
4672 L:      cgroups@vger.kernel.org
4673 L:      linux-block@vger.kernel.org
4674 T:      git git://git.kernel.dk/linux-block
4675 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4676 F:      block/bfq-cgroup.c
4677 F:      block/blk-cgroup.c
4678 F:      block/blk-iolatency.c
4679 F:      block/blk-throttle.c
4680 F:      include/linux/blk-cgroup.h
4681
4682 CONTROL GROUP - CPUSET
4683 M:      Zefan Li <lizefan.x@bytedance.com>
4684 L:      cgroups@vger.kernel.org
4685 S:      Maintained
4686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4687 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4688 F:      include/linux/cpuset.h
4689 F:      kernel/cgroup/cpuset.c
4690
4691 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4692 M:      Johannes Weiner <hannes@cmpxchg.org>
4693 M:      Michal Hocko <mhocko@kernel.org>
4694 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4695 L:      cgroups@vger.kernel.org
4696 L:      linux-mm@kvack.org
4697 S:      Maintained
4698 F:      mm/memcontrol.c
4699 F:      mm/swap_cgroup.c
4700
4701 CORETEMP HARDWARE MONITORING DRIVER
4702 M:      Fenghua Yu <fenghua.yu@intel.com>
4703 L:      linux-hwmon@vger.kernel.org
4704 S:      Maintained
4705 F:      Documentation/hwmon/coretemp.rst
4706 F:      drivers/hwmon/coretemp.c
4707
4708 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4709 M:      Marius Zachmann <mail@mariuszachmann.de>
4710 L:      linux-hwmon@vger.kernel.org
4711 S:      Maintained
4712 F:      drivers/hwmon/corsair-cpro.c
4713
4714 CORSAIR-PSU HARDWARE MONITOR DRIVER
4715 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4716 L:      linux-hwmon@vger.kernel.org
4717 S:      Maintained
4718 F:      Documentation/hwmon/corsair-psu.rst
4719 F:      drivers/hwmon/corsair-psu.c
4720
4721 COSA/SRP SYNC SERIAL DRIVER
4722 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4723 S:      Maintained
4724 W:      http://www.fi.muni.cz/~kas/cosa/
4725 F:      drivers/net/wan/cosa*
4726
4727 COUNTER SUBSYSTEM
4728 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4729 L:      linux-iio@vger.kernel.org
4730 S:      Maintained
4731 F:      Documentation/ABI/testing/sysfs-bus-counter*
4732 F:      Documentation/driver-api/generic-counter.rst
4733 F:      drivers/counter/
4734 F:      include/linux/counter.h
4735 F:      include/linux/counter_enum.h
4736
4737 CP2615 I2C DRIVER
4738 M:      Bence Csókás <bence98@sch.bme.hu>
4739 S:      Maintained
4740 F:      drivers/i2c/busses/i2c-cp2615.c
4741
4742 CPMAC ETHERNET DRIVER
4743 M:      Florian Fainelli <f.fainelli@gmail.com>
4744 L:      netdev@vger.kernel.org
4745 S:      Maintained
4746 F:      drivers/net/ethernet/ti/cpmac.c
4747
4748 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4749 M:      Viresh Kumar <viresh.kumar@linaro.org>
4750 M:      Sudeep Holla <sudeep.holla@arm.com>
4751 L:      linux-pm@vger.kernel.org
4752 S:      Maintained
4753 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4754 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4755
4756 CPU FREQUENCY SCALING FRAMEWORK
4757 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4758 M:      Viresh Kumar <viresh.kumar@linaro.org>
4759 L:      linux-pm@vger.kernel.org
4760 S:      Maintained
4761 B:      https://bugzilla.kernel.org
4762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4764 F:      Documentation/admin-guide/pm/cpufreq.rst
4765 F:      Documentation/admin-guide/pm/intel_pstate.rst
4766 F:      Documentation/cpu-freq/
4767 F:      Documentation/devicetree/bindings/cpufreq/
4768 F:      drivers/cpufreq/
4769 F:      include/linux/cpufreq.h
4770 F:      include/linux/sched/cpufreq.h
4771 F:      kernel/sched/cpufreq*.c
4772 F:      tools/testing/selftests/cpufreq/
4773
4774 CPU IDLE TIME MANAGEMENT FRAMEWORK
4775 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4776 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4777 L:      linux-pm@vger.kernel.org
4778 S:      Maintained
4779 B:      https://bugzilla.kernel.org
4780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4781 F:      Documentation/admin-guide/pm/cpuidle.rst
4782 F:      Documentation/driver-api/pm/cpuidle.rst
4783 F:      drivers/cpuidle/
4784 F:      include/linux/cpuidle.h
4785
4786 CPU POWER MONITORING SUBSYSTEM
4787 M:      Thomas Renninger <trenn@suse.com>
4788 M:      Shuah Khan <shuah@kernel.org>
4789 M:      Shuah Khan <skhan@linuxfoundation.org>
4790 L:      linux-pm@vger.kernel.org
4791 S:      Maintained
4792 F:      tools/power/cpupower/
4793
4794 CPUID/MSR DRIVER
4795 M:      "H. Peter Anvin" <hpa@zytor.com>
4796 S:      Maintained
4797 F:      arch/x86/kernel/cpuid.c
4798 F:      arch/x86/kernel/msr.c
4799
4800 CPUIDLE DRIVER - ARM BIG LITTLE
4801 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4802 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4803 L:      linux-pm@vger.kernel.org
4804 L:      linux-arm-kernel@lists.infradead.org
4805 S:      Maintained
4806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4807 F:      drivers/cpuidle/cpuidle-big_little.c
4808
4809 CPUIDLE DRIVER - ARM EXYNOS
4810 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4811 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4812 M:      Kukjin Kim <kgene@kernel.org>
4813 L:      linux-pm@vger.kernel.org
4814 L:      linux-samsung-soc@vger.kernel.org
4815 S:      Supported
4816 F:      arch/arm/mach-exynos/pm.c
4817 F:      drivers/cpuidle/cpuidle-exynos.c
4818 F:      include/linux/platform_data/cpuidle-exynos.h
4819
4820 CPUIDLE DRIVER - ARM PSCI
4821 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4822 M:      Sudeep Holla <sudeep.holla@arm.com>
4823 L:      linux-pm@vger.kernel.org
4824 L:      linux-arm-kernel@lists.infradead.org
4825 S:      Supported
4826 F:      drivers/cpuidle/cpuidle-psci.c
4827
4828 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4829 M:      Ulf Hansson <ulf.hansson@linaro.org>
4830 L:      linux-pm@vger.kernel.org
4831 L:      linux-arm-kernel@lists.infradead.org
4832 S:      Supported
4833 F:      drivers/cpuidle/cpuidle-psci.h
4834 F:      drivers/cpuidle/cpuidle-psci-domain.c
4835
4836 CRAMFS FILESYSTEM
4837 M:      Nicolas Pitre <nico@fluxnic.net>
4838 S:      Maintained
4839 F:      Documentation/filesystems/cramfs.rst
4840 F:      fs/cramfs/
4841
4842 CREATIVE SB0540
4843 M:      Bastien Nocera <hadess@hadess.net>
4844 L:      linux-input@vger.kernel.org
4845 S:      Maintained
4846 F:      drivers/hid/hid-creative-sb0540.c
4847
4848 CRYPTO API
4849 M:      Herbert Xu <herbert@gondor.apana.org.au>
4850 M:      "David S. Miller" <davem@davemloft.net>
4851 L:      linux-crypto@vger.kernel.org
4852 S:      Maintained
4853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4855 F:      Documentation/crypto/
4856 F:      Documentation/devicetree/bindings/crypto/
4857 F:      arch/*/crypto/
4858 F:      crypto/
4859 F:      drivers/crypto/
4860 F:      include/crypto/
4861 F:      include/linux/crypto*
4862 F:      lib/crypto/
4863
4864 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4865 M:      Neil Horman <nhorman@tuxdriver.com>
4866 L:      linux-crypto@vger.kernel.org
4867 S:      Maintained
4868 F:      crypto/ansi_cprng.c
4869 F:      crypto/rng.c
4870
4871 CS3308 MEDIA DRIVER
4872 M:      Hans Verkuil <hverkuil@xs4all.nl>
4873 L:      linux-media@vger.kernel.org
4874 S:      Odd Fixes
4875 W:      http://linuxtv.org
4876 T:      git git://linuxtv.org/media_tree.git
4877 F:      drivers/media/i2c/cs3308.c
4878
4879 CS5535 Audio ALSA driver
4880 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4881 S:      Maintained
4882 F:      sound/pci/cs5535audio/
4883
4884 CSI DRIVERS FOR ALLWINNER V3s
4885 M:      Yong Deng <yong.deng@magewell.com>
4886 L:      linux-media@vger.kernel.org
4887 S:      Maintained
4888 T:      git git://linuxtv.org/media_tree.git
4889 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4890 F:      drivers/media/platform/sunxi/sun6i-csi/
4891
4892 CW1200 WLAN driver
4893 M:      Solomon Peachy <pizza@shaftnet.org>
4894 S:      Maintained
4895 F:      drivers/net/wireless/st/cw1200/
4896
4897 CX18 VIDEO4LINUX DRIVER
4898 M:      Andy Walls <awalls@md.metrocast.net>
4899 L:      linux-media@vger.kernel.org
4900 S:      Maintained
4901 W:      https://linuxtv.org
4902 T:      git git://linuxtv.org/media_tree.git
4903 F:      drivers/media/pci/cx18/
4904 F:      include/uapi/linux/ivtv*
4905
4906 CX2341X MPEG ENCODER HELPER MODULE
4907 M:      Hans Verkuil <hverkuil@xs4all.nl>
4908 L:      linux-media@vger.kernel.org
4909 S:      Maintained
4910 W:      https://linuxtv.org
4911 T:      git git://linuxtv.org/media_tree.git
4912 F:      drivers/media/common/cx2341x*
4913 F:      include/media/drv-intf/cx2341x.h
4914
4915 CX24120 MEDIA DRIVER
4916 M:      Jemma Denson <jdenson@gmail.com>
4917 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4918 L:      linux-media@vger.kernel.org
4919 S:      Maintained
4920 W:      https://linuxtv.org
4921 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4922 F:      drivers/media/dvb-frontends/cx24120*
4923
4924 CX88 VIDEO4LINUX DRIVER
4925 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4926 L:      linux-media@vger.kernel.org
4927 S:      Odd fixes
4928 W:      https://linuxtv.org
4929 T:      git git://linuxtv.org/media_tree.git
4930 F:      Documentation/driver-api/media/drivers/cx88*
4931 F:      drivers/media/pci/cx88/
4932
4933 CXD2820R MEDIA DRIVER
4934 M:      Antti Palosaari <crope@iki.fi>
4935 L:      linux-media@vger.kernel.org
4936 S:      Maintained
4937 W:      https://linuxtv.org
4938 W:      http://palosaari.fi/linux/
4939 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4940 T:      git git://linuxtv.org/anttip/media_tree.git
4941 F:      drivers/media/dvb-frontends/cxd2820r*
4942
4943 CXGB3 ETHERNET DRIVER (CXGB3)
4944 M:      Raju Rangoju <rajur@chelsio.com>
4945 L:      netdev@vger.kernel.org
4946 S:      Supported
4947 W:      http://www.chelsio.com
4948 F:      drivers/net/ethernet/chelsio/cxgb3/
4949
4950 CXGB3 ISCSI DRIVER (CXGB3I)
4951 M:      Karen Xie <kxie@chelsio.com>
4952 L:      linux-scsi@vger.kernel.org
4953 S:      Supported
4954 W:      http://www.chelsio.com
4955 F:      drivers/scsi/cxgbi/cxgb3i
4956
4957 CXGB4 CRYPTO DRIVER (chcr)
4958 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4959 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4960 M:      Rohit Maheshwari <rohitm@chelsio.com>
4961 L:      linux-crypto@vger.kernel.org
4962 S:      Supported
4963 W:      http://www.chelsio.com
4964 F:      drivers/crypto/chelsio
4965
4966 CXGB4 INLINE CRYPTO DRIVER
4967 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4968 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4969 M:      Rohit Maheshwari <rohitm@chelsio.com>
4970 L:      netdev@vger.kernel.org
4971 S:      Supported
4972 W:      http://www.chelsio.com
4973 F:      drivers/net/ethernet/chelsio/inline_crypto/
4974
4975 CXGB4 ETHERNET DRIVER (CXGB4)
4976 M:      Raju Rangoju <rajur@chelsio.com>
4977 L:      netdev@vger.kernel.org
4978 S:      Supported
4979 W:      http://www.chelsio.com
4980 F:      drivers/net/ethernet/chelsio/cxgb4/
4981
4982 CXGB4 ISCSI DRIVER (CXGB4I)
4983 M:      Karen Xie <kxie@chelsio.com>
4984 L:      linux-scsi@vger.kernel.org
4985 S:      Supported
4986 W:      http://www.chelsio.com
4987 F:      drivers/scsi/cxgbi/cxgb4i
4988
4989 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4990 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4991 L:      linux-rdma@vger.kernel.org
4992 S:      Supported
4993 W:      http://www.openfabrics.org
4994 F:      drivers/infiniband/hw/cxgb4/
4995 F:      include/uapi/rdma/cxgb4-abi.h
4996
4997 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4998 M:      Raju Rangoju <rajur@chelsio.com>
4999 L:      netdev@vger.kernel.org
5000 S:      Supported
5001 W:      http://www.chelsio.com
5002 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5003
5004 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5005 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5006 M:      Andrew Donnellan <ajd@linux.ibm.com>
5007 L:      linuxppc-dev@lists.ozlabs.org
5008 S:      Supported
5009 F:      Documentation/ABI/testing/sysfs-class-cxl
5010 F:      Documentation/powerpc/cxl.rst
5011 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5012 F:      drivers/misc/cxl/
5013 F:      include/misc/cxl*
5014 F:      include/uapi/misc/cxl.h
5015
5016 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5017 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5018 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5019 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5020 L:      linux-scsi@vger.kernel.org
5021 S:      Supported
5022 F:      Documentation/powerpc/cxlflash.rst
5023 F:      drivers/scsi/cxlflash/
5024 F:      include/uapi/scsi/cxlflash_ioctl.h
5025
5026 CYBERPRO FB DRIVER
5027 M:      Russell King <linux@armlinux.org.uk>
5028 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5029 S:      Maintained
5030 W:      http://www.armlinux.org.uk/
5031 F:      drivers/video/fbdev/cyber2000fb.*
5032
5033 CYCLADES PC300 DRIVER
5034 S:      Orphan
5035 F:      drivers/net/wan/pc300*
5036
5037 CYPRESS_FIRMWARE MEDIA DRIVER
5038 M:      Antti Palosaari <crope@iki.fi>
5039 L:      linux-media@vger.kernel.org
5040 S:      Maintained
5041 W:      https://linuxtv.org
5042 W:      http://palosaari.fi/linux/
5043 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5044 T:      git git://linuxtv.org/anttip/media_tree.git
5045 F:      drivers/media/common/cypress_firmware*
5046
5047 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5048 M:      Linus Walleij <linus.walleij@linaro.org>
5049 L:      linux-input@vger.kernel.org
5050 S:      Maintained
5051 F:      drivers/input/touchscreen/cy8ctma140.c
5052
5053 CYTTSP TOUCHSCREEN DRIVER
5054 M:      Linus Walleij <linus.walleij@linaro.org>
5055 L:      linux-input@vger.kernel.org
5056 S:      Maintained
5057 F:      drivers/input/touchscreen/cyttsp*
5058
5059 D-LINK DIR-685 TOUCHKEYS DRIVER
5060 M:      Linus Walleij <linus.walleij@linaro.org>
5061 L:      linux-input@vger.kernel.org
5062 S:      Supported
5063 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5064
5065 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5066 M:      Joshua Kinard <kumba@gentoo.org>
5067 S:      Maintained
5068 F:      drivers/rtc/rtc-ds1685.c
5069 F:      include/linux/rtc/ds1685.h
5070
5071 DAMA SLAVE for AX.25
5072 M:      Joerg Reuter <jreuter@yaina.de>
5073 L:      linux-hams@vger.kernel.org
5074 S:      Maintained
5075 W:      http://yaina.de/jreuter/
5076 W:      http://www.qsl.net/dl1bke/
5077 F:      net/ax25/af_ax25.c
5078 F:      net/ax25/ax25_dev.c
5079 F:      net/ax25/ax25_ds_*
5080 F:      net/ax25/ax25_in.c
5081 F:      net/ax25/ax25_out.c
5082 F:      net/ax25/ax25_timer.c
5083 F:      net/ax25/sysctl_net_ax25.c
5084
5085 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5086 L:      netdev@vger.kernel.org
5087 S:      Orphan
5088 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5089 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5090
5091 DC390/AM53C974 SCSI driver
5092 M:      Hannes Reinecke <hare@suse.com>
5093 L:      linux-scsi@vger.kernel.org
5094 S:      Maintained
5095 F:      drivers/scsi/am53c974.c
5096
5097 DC395x SCSI driver
5098 M:      Oliver Neukum <oliver@neukum.org>
5099 M:      Ali Akcaagac <aliakc@web.de>
5100 M:      Jamie Lenehan <lenehan@twibble.org>
5101 L:      dc395x@twibble.org
5102 S:      Maintained
5103 W:      http://twibble.org/dist/dc395x/
5104 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5105 F:      Documentation/scsi/dc395x.rst
5106 F:      drivers/scsi/dc395x.*
5107
5108 DCCP PROTOCOL
5109 L:      dccp@vger.kernel.org
5110 S:      Orphan
5111 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5112 F:      include/linux/dccp.h
5113 F:      include/linux/tfrc.h
5114 F:      include/uapi/linux/dccp.h
5115 F:      net/dccp/
5116
5117 DECnet NETWORK LAYER
5118 L:      linux-decnet-user@lists.sourceforge.net
5119 S:      Orphan
5120 W:      http://linux-decnet.sourceforge.net
5121 F:      Documentation/networking/decnet.rst
5122 F:      net/decnet/
5123
5124 DECSTATION PLATFORM SUPPORT
5125 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5126 L:      linux-mips@vger.kernel.org
5127 S:      Maintained
5128 W:      http://www.linux-mips.org/wiki/DECstation
5129 F:      arch/mips/dec/
5130 F:      arch/mips/include/asm/dec/
5131 F:      arch/mips/include/asm/mach-dec/
5132
5133 DEFXX FDDI NETWORK DRIVER
5134 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5135 S:      Maintained
5136 F:      drivers/net/fddi/defxx.*
5137
5138 DEFZA FDDI NETWORK DRIVER
5139 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5140 S:      Maintained
5141 F:      drivers/net/fddi/defza.*
5142
5143 DEINTERLACE DRIVERS FOR ALLWINNER H3
5144 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5145 L:      linux-media@vger.kernel.org
5146 S:      Maintained
5147 T:      git git://linuxtv.org/media_tree.git
5148 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5149 F:      drivers/media/platform/sunxi/sun8i-di/
5150
5151 DELL LAPTOP DRIVER
5152 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5153 M:      Pali Rohár <pali@kernel.org>
5154 L:      platform-driver-x86@vger.kernel.org
5155 S:      Maintained
5156 F:      drivers/platform/x86/dell/dell-laptop.c
5157
5158 DELL LAPTOP FREEFALL DRIVER
5159 M:      Pali Rohár <pali@kernel.org>
5160 S:      Maintained
5161 F:      drivers/platform/x86/dell/dell-smo8800.c
5162
5163 DELL LAPTOP RBTN DRIVER
5164 M:      Pali Rohár <pali@kernel.org>
5165 S:      Maintained
5166 F:      drivers/platform/x86/dell/dell-rbtn.*
5167
5168 DELL LAPTOP SMM DRIVER
5169 M:      Pali Rohár <pali@kernel.org>
5170 S:      Maintained
5171 F:      drivers/hwmon/dell-smm-hwmon.c
5172 F:      include/uapi/linux/i8k.h
5173
5174 DELL REMOTE BIOS UPDATE DRIVER
5175 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5176 L:      platform-driver-x86@vger.kernel.org
5177 S:      Maintained
5178 F:      drivers/platform/x86/dell/dell_rbu.c
5179
5180 DELL SMBIOS DRIVER
5181 M:      Pali Rohár <pali@kernel.org>
5182 L:      Dell.Client.Kernel@dell.com
5183 L:      platform-driver-x86@vger.kernel.org
5184 S:      Maintained
5185 F:      drivers/platform/x86/dell/dell-smbios.*
5186
5187 DELL SMBIOS SMM DRIVER
5188 L:      Dell.Client.Kernel@dell.com
5189 L:      platform-driver-x86@vger.kernel.org
5190 S:      Maintained
5191 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5192
5193 DELL SMBIOS WMI DRIVER
5194 L:      Dell.Client.Kernel@dell.com
5195 L:      platform-driver-x86@vger.kernel.org
5196 S:      Maintained
5197 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5198 F:      tools/wmi/dell-smbios-example.c
5199
5200 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5201 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5202 L:      platform-driver-x86@vger.kernel.org
5203 S:      Maintained
5204 F:      Documentation/driver-api/dcdbas.rst
5205 F:      drivers/platform/x86/dell/dcdbas.*
5206
5207 DELL WMI DESCRIPTOR DRIVER
5208 L:      Dell.Client.Kernel@dell.com
5209 S:      Maintained
5210 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5211
5212 DELL WMI SYSMAN DRIVER
5213 M:      Divya Bharathi <divya.bharathi@dell.com>
5214 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5215 L:      Dell.Client.Kernel@dell.com
5216 L:      platform-driver-x86@vger.kernel.org
5217 S:      Maintained
5218 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5219 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5220
5221 DELL WMI NOTIFICATIONS DRIVER
5222 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5223 M:      Pali Rohár <pali@kernel.org>
5224 S:      Maintained
5225 F:      drivers/platform/x86/dell/dell-wmi-base.c
5226
5227 DELL WMI HARDWARE PRIVACY SUPPORT
5228 M:      Perry Yuan <Perry.Yuan@dell.com>
5229 L:      Dell.Client.Kernel@dell.com
5230 L:      platform-driver-x86@vger.kernel.org
5231 S:      Maintained
5232 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5233
5234 DELTA ST MEDIA DRIVER
5235 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5236 L:      linux-media@vger.kernel.org
5237 S:      Supported
5238 W:      https://linuxtv.org
5239 T:      git git://linuxtv.org/media_tree.git
5240 F:      drivers/media/platform/sti/delta
5241
5242 DELTA DPS920AB PSU DRIVER
5243 M:      Robert Marko <robert.marko@sartura.hr>
5244 L:      linux-hwmon@vger.kernel.org
5245 S:      Maintained
5246 F:      Documentation/hwmon/dps920ab.rst
5247 F:      drivers/hwmon/pmbus/dps920ab.c
5248
5249 DENALI NAND DRIVER
5250 L:      linux-mtd@lists.infradead.org
5251 S:      Orphan
5252 F:      drivers/mtd/nand/raw/denali*
5253
5254 DESIGNWARE EDMA CORE IP DRIVER
5255 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5256 L:      dmaengine@vger.kernel.org
5257 S:      Maintained
5258 F:      drivers/dma/dw-edma/
5259 F:      include/linux/dma/edma.h
5260
5261 DESIGNWARE XDATA IP DRIVER
5262 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5263 L:      linux-pci@vger.kernel.org
5264 S:      Maintained
5265 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5266 F:      drivers/misc/dw-xdata-pcie.c
5267
5268 DESIGNWARE USB2 DRD IP DRIVER
5269 M:      Minas Harutyunyan <hminas@synopsys.com>
5270 L:      linux-usb@vger.kernel.org
5271 S:      Maintained
5272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5273 F:      drivers/usb/dwc2/
5274
5275 DESIGNWARE USB3 DRD IP DRIVER
5276 M:      Felipe Balbi <balbi@kernel.org>
5277 L:      linux-usb@vger.kernel.org
5278 S:      Maintained
5279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5280 F:      drivers/usb/dwc3/
5281
5282 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5283 M:      Andreas Klinger <ak@it-klinger.de>
5284 L:      linux-iio@vger.kernel.org
5285 S:      Maintained
5286 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5287 F:      drivers/iio/proximity/srf*.c
5288
5289 DEVICE COREDUMP (DEV_COREDUMP)
5290 M:      Johannes Berg <johannes@sipsolutions.net>
5291 L:      linux-kernel@vger.kernel.org
5292 S:      Maintained
5293 F:      drivers/base/devcoredump.c
5294 F:      include/linux/devcoredump.h
5295
5296 DEVICE DEPENDENCY HELPER SCRIPT
5297 M:      Saravana Kannan <saravanak@google.com>
5298 L:      linux-kernel@vger.kernel.org
5299 S:      Maintained
5300 F:      scripts/dev-needs.sh
5301
5302 DEVICE DIRECT ACCESS (DAX)
5303 M:      Dan Williams <dan.j.williams@intel.com>
5304 M:      Vishal Verma <vishal.l.verma@intel.com>
5305 M:      Dave Jiang <dave.jiang@intel.com>
5306 L:      nvdimm@lists.linux.dev
5307 S:      Supported
5308 F:      drivers/dax/
5309
5310 DEVICE FREQUENCY (DEVFREQ)
5311 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5312 M:      Kyungmin Park <kyungmin.park@samsung.com>
5313 M:      Chanwoo Choi <cw00.choi@samsung.com>
5314 L:      linux-pm@vger.kernel.org
5315 S:      Maintained
5316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5317 F:      Documentation/devicetree/bindings/devfreq/
5318 F:      drivers/devfreq/
5319 F:      include/linux/devfreq.h
5320 F:      include/trace/events/devfreq.h
5321
5322 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5323 M:      Chanwoo Choi <cw00.choi@samsung.com>
5324 L:      linux-pm@vger.kernel.org
5325 S:      Supported
5326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5327 F:      Documentation/devicetree/bindings/devfreq/event/
5328 F:      drivers/devfreq/devfreq-event.c
5329 F:      drivers/devfreq/event/
5330 F:      include/dt-bindings/pmu/exynos_ppmu.h
5331 F:      include/linux/devfreq-event.h
5332
5333 DEVICE NUMBER REGISTRY
5334 M:      Torben Mathiasen <device@lanana.org>
5335 S:      Maintained
5336 W:      http://lanana.org/docs/device-list/index.html
5337
5338 DEVICE RESOURCE MANAGEMENT HELPERS
5339 M:      Hans de Goede <hdegoede@redhat.com>
5340 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5341 S:      Maintained
5342 F:      include/linux/devm-helpers.h
5343
5344 DEVICE-MAPPER  (LVM)
5345 M:      Alasdair Kergon <agk@redhat.com>
5346 M:      Mike Snitzer <snitzer@redhat.com>
5347 M:      dm-devel@redhat.com
5348 L:      dm-devel@redhat.com
5349 S:      Maintained
5350 W:      http://sources.redhat.com/dm
5351 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5353 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5354 F:      Documentation/admin-guide/device-mapper/
5355 F:      drivers/md/Kconfig
5356 F:      drivers/md/Makefile
5357 F:      drivers/md/dm*
5358 F:      drivers/md/persistent-data/
5359 F:      include/linux/device-mapper.h
5360 F:      include/linux/dm-*.h
5361 F:      include/uapi/linux/dm-*.h
5362
5363 DEVLINK
5364 M:      Jiri Pirko <jiri@nvidia.com>
5365 L:      netdev@vger.kernel.org
5366 S:      Supported
5367 F:      Documentation/networking/devlink
5368 F:      include/net/devlink.h
5369 F:      include/uapi/linux/devlink.h
5370 F:      net/core/devlink.c
5371
5372 DIALOG SEMICONDUCTOR DRIVERS
5373 M:      Support Opensource <support.opensource@diasemi.com>
5374 S:      Supported
5375 W:      http://www.dialog-semiconductor.com/products
5376 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5377 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5378 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5379 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5380 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5381 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5382 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5383 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5384 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5385 F:      Documentation/hwmon/da90??.rst
5386 F:      drivers/gpio/gpio-da90??.c
5387 F:      drivers/hwmon/da90??-hwmon.c
5388 F:      drivers/iio/adc/da91??-*.c
5389 F:      drivers/input/misc/da72??.[ch]
5390 F:      drivers/input/misc/da90??_onkey.c
5391 F:      drivers/input/touchscreen/da9052_tsi.c
5392 F:      drivers/leds/leds-da90??.c
5393 F:      drivers/mfd/da903x.c
5394 F:      drivers/mfd/da90??-*.c
5395 F:      drivers/mfd/da91??-*.c
5396 F:      drivers/pinctrl/pinctrl-da90??.c
5397 F:      drivers/power/supply/da9052-battery.c
5398 F:      drivers/power/supply/da91??-*.c
5399 F:      drivers/regulator/da9???-regulator.[ch]
5400 F:      drivers/regulator/slg51000-regulator.[ch]
5401 F:      drivers/rtc/rtc-da90??.c
5402 F:      drivers/thermal/da90??-thermal.c
5403 F:      drivers/video/backlight/da90??_bl.c
5404 F:      drivers/watchdog/da90??_wdt.c
5405 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5406 F:      include/linux/mfd/da903x.h
5407 F:      include/linux/mfd/da9052/
5408 F:      include/linux/mfd/da9055/
5409 F:      include/linux/mfd/da9062/
5410 F:      include/linux/mfd/da9063/
5411 F:      include/linux/mfd/da9150/
5412 F:      include/linux/regulator/da9211.h
5413 F:      include/sound/da[79]*.h
5414 F:      sound/soc/codecs/da[79]*.[ch]
5415
5416 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5417 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5418 L:      linux-gpio@vger.kernel.org
5419 S:      Maintained
5420 F:      drivers/gpio/gpio-gpio-mm.c
5421
5422 DIOLAN U2C-12 I2C DRIVER
5423 M:      Guenter Roeck <linux@roeck-us.net>
5424 L:      linux-i2c@vger.kernel.org
5425 S:      Maintained
5426 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5427
5428 DIRECTORY NOTIFICATION (DNOTIFY)
5429 M:      Jan Kara <jack@suse.cz>
5430 R:      Amir Goldstein <amir73il@gmail.com>
5431 L:      linux-fsdevel@vger.kernel.org
5432 S:      Maintained
5433 F:      Documentation/filesystems/dnotify.rst
5434 F:      fs/notify/dnotify/
5435 F:      include/linux/dnotify.h
5436
5437 DISK GEOMETRY AND PARTITION HANDLING
5438 M:      Andries Brouwer <aeb@cwi.nl>
5439 S:      Maintained
5440 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5441 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5442 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5443
5444 DISKQUOTA
5445 M:      Jan Kara <jack@suse.com>
5446 S:      Maintained
5447 F:      Documentation/filesystems/quota.rst
5448 F:      fs/quota/
5449 F:      include/linux/quota*.h
5450 F:      include/uapi/linux/quota*.h
5451
5452 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5453 M:      Bernie Thompson <bernie@plugable.com>
5454 L:      linux-fbdev@vger.kernel.org
5455 S:      Maintained
5456 W:      http://plugable.com/category/projects/udlfb/
5457 F:      Documentation/fb/udlfb.rst
5458 F:      drivers/video/fbdev/udlfb.c
5459 F:      include/video/udlfb.h
5460
5461 DISTRIBUTED LOCK MANAGER (DLM)
5462 M:      Christine Caulfield <ccaulfie@redhat.com>
5463 M:      David Teigland <teigland@redhat.com>
5464 L:      cluster-devel@redhat.com
5465 S:      Supported
5466 W:      http://sources.redhat.com/cluster/
5467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5468 F:      fs/dlm/
5469
5470 DMA BUFFER SHARING FRAMEWORK
5471 M:      Sumit Semwal <sumit.semwal@linaro.org>
5472 M:      Christian König <christian.koenig@amd.com>
5473 L:      linux-media@vger.kernel.org
5474 L:      dri-devel@lists.freedesktop.org
5475 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5476 S:      Maintained
5477 T:      git git://anongit.freedesktop.org/drm/drm-misc
5478 F:      Documentation/driver-api/dma-buf.rst
5479 F:      drivers/dma-buf/
5480 F:      include/linux/*fence.h
5481 F:      include/linux/dma-buf*
5482 F:      include/linux/dma-resv.h
5483 K:      \bdma_(?:buf|fence|resv)\b
5484
5485 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5486 M:      Vinod Koul <vkoul@kernel.org>
5487 L:      dmaengine@vger.kernel.org
5488 S:      Maintained
5489 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5490 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5491 F:      Documentation/devicetree/bindings/dma/
5492 F:      Documentation/driver-api/dmaengine/
5493 F:      drivers/dma/
5494 F:      include/linux/dma/
5495 F:      include/linux/dmaengine.h
5496 F:      include/linux/of_dma.h
5497
5498 DMA MAPPING HELPERS
5499 M:      Christoph Hellwig <hch@lst.de>
5500 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5501 R:      Robin Murphy <robin.murphy@arm.com>
5502 L:      iommu@lists.linux-foundation.org
5503 S:      Supported
5504 W:      http://git.infradead.org/users/hch/dma-mapping.git
5505 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5506 F:      include/asm-generic/dma-mapping.h
5507 F:      include/linux/dma-direct.h
5508 F:      include/linux/dma-mapping.h
5509 F:      include/linux/dma-map-ops.h
5510 F:      kernel/dma/
5511
5512 DMA MAPPING BENCHMARK
5513 M:      Barry Song <song.bao.hua@hisilicon.com>
5514 L:      iommu@lists.linux-foundation.org
5515 F:      kernel/dma/map_benchmark.c
5516 F:      tools/testing/selftests/dma/
5517
5518 DMA-BUF HEAPS FRAMEWORK
5519 M:      Sumit Semwal <sumit.semwal@linaro.org>
5520 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5521 R:      Liam Mark <lmark@codeaurora.org>
5522 R:      Laura Abbott <labbott@redhat.com>
5523 R:      Brian Starkey <Brian.Starkey@arm.com>
5524 R:      John Stultz <john.stultz@linaro.org>
5525 L:      linux-media@vger.kernel.org
5526 L:      dri-devel@lists.freedesktop.org
5527 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5528 S:      Maintained
5529 T:      git git://anongit.freedesktop.org/drm/drm-misc
5530 F:      drivers/dma-buf/dma-heap.c
5531 F:      drivers/dma-buf/heaps/*
5532 F:      include/linux/dma-heap.h
5533 F:      include/uapi/linux/dma-heap.h
5534
5535 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5536 M:      Lukasz Luba <lukasz.luba@arm.com>
5537 L:      linux-pm@vger.kernel.org
5538 L:      linux-samsung-soc@vger.kernel.org
5539 S:      Maintained
5540 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5541 F:      drivers/memory/samsung/exynos5422-dmc.c
5542
5543 DME1737 HARDWARE MONITOR DRIVER
5544 M:      Juerg Haefliger <juergh@gmail.com>
5545 L:      linux-hwmon@vger.kernel.org
5546 S:      Maintained
5547 F:      Documentation/hwmon/dme1737.rst
5548 F:      drivers/hwmon/dme1737.c
5549
5550 DMI/SMBIOS SUPPORT
5551 M:      Jean Delvare <jdelvare@suse.com>
5552 S:      Maintained
5553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5554 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5555 F:      drivers/firmware/dmi-id.c
5556 F:      drivers/firmware/dmi_scan.c
5557 F:      include/linux/dmi.h
5558
5559 DOCUMENTATION
5560 M:      Jonathan Corbet <corbet@lwn.net>
5561 L:      linux-doc@vger.kernel.org
5562 S:      Maintained
5563 P:      Documentation/doc-guide/maintainer-profile.rst
5564 T:      git git://git.lwn.net/linux.git docs-next
5565 F:      Documentation/
5566 F:      scripts/documentation-file-ref-check
5567 F:      scripts/kernel-doc
5568 F:      scripts/sphinx-pre-install
5569 X:      Documentation/ABI/
5570 X:      Documentation/admin-guide/media/
5571 X:      Documentation/devicetree/
5572 X:      Documentation/driver-api/media/
5573 X:      Documentation/firmware-guide/acpi/
5574 X:      Documentation/i2c/
5575 X:      Documentation/power/
5576 X:      Documentation/spi/
5577 X:      Documentation/userspace-api/media/
5578
5579 DOCUMENTATION REPORTING ISSUES
5580 M:      Thorsten Leemhuis <linux@leemhuis.info>
5581 L:      linux-doc@vger.kernel.org
5582 S:      Maintained
5583 F:      Documentation/admin-guide/reporting-issues.rst
5584
5585 DOCUMENTATION SCRIPTS
5586 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5587 L:      linux-doc@vger.kernel.org
5588 S:      Maintained
5589 F:      Documentation/sphinx/parse-headers.pl
5590 F:      scripts/documentation-file-ref-check
5591 F:      scripts/sphinx-pre-install
5592
5593 DOCUMENTATION/ITALIAN
5594 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5595 L:      linux-doc@vger.kernel.org
5596 S:      Maintained
5597 F:      Documentation/translations/it_IT
5598
5599 DONGWOON DW9714 LENS VOICE COIL DRIVER
5600 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5601 L:      linux-media@vger.kernel.org
5602 S:      Maintained
5603 T:      git git://linuxtv.org/media_tree.git
5604 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5605 F:      drivers/media/i2c/dw9714.c
5606
5607 DONGWOON DW9768 LENS VOICE COIL DRIVER
5608 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5609 L:      linux-media@vger.kernel.org
5610 S:      Maintained
5611 T:      git git://linuxtv.org/media_tree.git
5612 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5613 F:      drivers/media/i2c/dw9768.c
5614
5615 DONGWOON DW9807 LENS VOICE COIL DRIVER
5616 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5617 L:      linux-media@vger.kernel.org
5618 S:      Maintained
5619 T:      git git://linuxtv.org/media_tree.git
5620 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5621 F:      drivers/media/i2c/dw9807-vcm.c
5622
5623 DOUBLETALK DRIVER
5624 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5625 L:      blinux-list@redhat.com
5626 S:      Maintained
5627 F:      drivers/char/dtlk.c
5628 F:      include/linux/dtlk.h
5629
5630 DPAA2 DATAPATH I/O (DPIO) DRIVER
5631 M:      Roy Pledge <Roy.Pledge@nxp.com>
5632 L:      linux-kernel@vger.kernel.org
5633 S:      Maintained
5634 F:      drivers/soc/fsl/dpio
5635
5636 DPAA2 ETHERNET DRIVER
5637 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5638 L:      netdev@vger.kernel.org
5639 S:      Maintained
5640 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5641 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5642 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5643 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5644 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5645 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5646 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5647 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5648 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5649
5650 DPAA2 ETHERNET SWITCH DRIVER
5651 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5652 L:      netdev@vger.kernel.org
5653 S:      Maintained
5654 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5655 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
5656
5657 DPT_I2O SCSI RAID DRIVER
5658 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5659 L:      linux-scsi@vger.kernel.org
5660 S:      Maintained
5661 W:      http://www.adaptec.com/
5662 F:      drivers/scsi/dpt*
5663 F:      drivers/scsi/dpt/
5664
5665 DRBD DRIVER
5666 M:      Philipp Reisner <philipp.reisner@linbit.com>
5667 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5668 L:      drbd-dev@lists.linbit.com
5669 S:      Supported
5670 W:      http://www.drbd.org
5671 T:      git git://git.linbit.com/linux-drbd.git
5672 T:      git git://git.linbit.com/drbd-8.4.git
5673 F:      Documentation/admin-guide/blockdev/
5674 F:      drivers/block/drbd/
5675 F:      lib/lru_cache.c
5676
5677 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5678 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5679 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5680 S:      Supported
5681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5682 F:      Documentation/core-api/kobject.rst
5683 F:      drivers/base/
5684 F:      fs/debugfs/
5685 F:      fs/sysfs/
5686 F:      include/linux/debugfs.h
5687 F:      include/linux/kobj*
5688 F:      lib/kobj*
5689
5690 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5691 M:      Nishanth Menon <nm@ti.com>
5692 L:      linux-pm@vger.kernel.org
5693 S:      Maintained
5694 F:      drivers/soc/ti/smartreflex.c
5695 F:      include/linux/power/smartreflex.h
5696
5697 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5698 M:      Maxime Ripard <mripard@kernel.org>
5699 M:      Chen-Yu Tsai <wens@csie.org>
5700 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
5701 L:      dri-devel@lists.freedesktop.org
5702 S:      Supported
5703 T:      git git://anongit.freedesktop.org/drm/drm-misc
5704 F:      drivers/gpu/drm/sun4i/sun8i*
5705
5706 DRM DRIVER FOR ARM PL111 CLCD
5707 M:      Emma Anholt <emma@anholt.net>
5708 S:      Supported
5709 T:      git git://anongit.freedesktop.org/drm/drm-misc
5710 F:      drivers/gpu/drm/pl111/
5711
5712 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5713 M:      Linus Walleij <linus.walleij@linaro.org>
5714 S:      Maintained
5715 T:      git git://anongit.freedesktop.org/drm/drm-misc
5716 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5717 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5718
5719 DRM DRIVER FOR ASPEED BMC GFX
5720 M:      Joel Stanley <joel@jms.id.au>
5721 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5722 S:      Supported
5723 T:      git git://anongit.freedesktop.org/drm/drm-misc
5724 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5725 F:      drivers/gpu/drm/aspeed/
5726
5727 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5728 M:      Dave Airlie <airlied@redhat.com>
5729 R:      Thomas Zimmermann <tzimmermann@suse.de>
5730 L:      dri-devel@lists.freedesktop.org
5731 S:      Supported
5732 T:      git git://anongit.freedesktop.org/drm/drm-misc
5733 F:      drivers/gpu/drm/ast/
5734
5735 DRM DRIVER FOR BOCHS VIRTUAL GPU
5736 M:      Gerd Hoffmann <kraxel@redhat.com>
5737 L:      virtualization@lists.linux-foundation.org
5738 S:      Maintained
5739 T:      git git://anongit.freedesktop.org/drm/drm-misc
5740 F:      drivers/gpu/drm/bochs/
5741
5742 DRM DRIVER FOR BOE HIMAX8279D PANELS
5743 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5744 S:      Maintained
5745 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5746 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5747
5748 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
5749 M:      Jagan Teki <jagan@amarulasolutions.com>
5750 S:      Maintained
5751 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
5752 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
5753
5754 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5755 M:      Linus Walleij <linus.walleij@linaro.org>
5756 S:      Maintained
5757 T:      git git://anongit.freedesktop.org/drm/drm-misc
5758 F:      drivers/gpu/drm/tve200/
5759
5760 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5761 M:      Icenowy Zheng <icenowy@aosc.io>
5762 S:      Maintained
5763 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5764 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5765
5766 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5767 M:      Jagan Teki <jagan@amarulasolutions.com>
5768 S:      Maintained
5769 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5770 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5771
5772 DRM DRIVER FOR GENERIC USB DISPLAY
5773 M:      Noralf Trønnes <noralf@tronnes.org>
5774 S:      Maintained
5775 W:      https://github.com/notro/gud/wiki
5776 T:      git git://anongit.freedesktop.org/drm/drm-misc
5777 F:      drivers/gpu/drm/gud/
5778 F:      include/drm/gud.h
5779
5780 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5781 M:      Hans de Goede <hdegoede@redhat.com>
5782 S:      Maintained
5783 T:      git git://anongit.freedesktop.org/drm/drm-misc
5784 F:      drivers/gpu/drm/tiny/gm12u320.c
5785
5786 DRM DRIVER FOR HX8357D PANELS
5787 M:      Emma Anholt <emma@anholt.net>
5788 S:      Maintained
5789 T:      git git://anongit.freedesktop.org/drm/drm-misc
5790 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5791 F:      drivers/gpu/drm/tiny/hx8357d.c
5792
5793 DRM DRIVER FOR ILITEK ILI9225 PANELS
5794 M:      David Lechner <david@lechnology.com>
5795 S:      Maintained
5796 T:      git git://anongit.freedesktop.org/drm/drm-misc
5797 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5798 F:      drivers/gpu/drm/tiny/ili9225.c
5799
5800 DRM DRIVER FOR ILITEK ILI9486 PANELS
5801 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5802 S:      Maintained
5803 T:      git git://anongit.freedesktop.org/drm/drm-misc
5804 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5805 F:      drivers/gpu/drm/tiny/ili9486.c
5806
5807 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5808 S:      Orphan / Obsolete
5809 F:      drivers/gpu/drm/i810/
5810 F:      include/uapi/drm/i810_drm.h
5811
5812 DRM DRIVER FOR LVDS PANELS
5813 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5814 L:      dri-devel@lists.freedesktop.org
5815 T:      git git://anongit.freedesktop.org/drm/drm-misc
5816 S:      Maintained
5817 F:      drivers/gpu/drm/panel/panel-lvds.c
5818 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5819
5820 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5821 M:      Guido Günther <agx@sigxcpu.org>
5822 R:      Purism Kernel Team <kernel@puri.sm>
5823 S:      Maintained
5824 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5825 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5826
5827 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5828 S:      Orphan / Obsolete
5829 F:      drivers/gpu/drm/mga/
5830 F:      include/uapi/drm/mga_drm.h
5831
5832 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5833 M:      Dave Airlie <airlied@redhat.com>
5834 R:      Thomas Zimmermann <tzimmermann@suse.de>
5835 L:      dri-devel@lists.freedesktop.org
5836 S:      Supported
5837 T:      git git://anongit.freedesktop.org/drm/drm-misc
5838 F:      drivers/gpu/drm/mgag200/
5839
5840 DRM DRIVER FOR MI0283QT
5841 M:      Noralf Trønnes <noralf@tronnes.org>
5842 S:      Maintained
5843 T:      git git://anongit.freedesktop.org/drm/drm-misc
5844 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5845 F:      drivers/gpu/drm/tiny/mi0283qt.c
5846
5847 DRM DRIVER FOR MSM ADRENO GPU
5848 M:      Rob Clark <robdclark@gmail.com>
5849 M:      Sean Paul <sean@poorly.run>
5850 L:      linux-arm-msm@vger.kernel.org
5851 L:      dri-devel@lists.freedesktop.org
5852 L:      freedreno@lists.freedesktop.org
5853 S:      Maintained
5854 T:      git https://gitlab.freedesktop.org/drm/msm.git
5855 F:      Documentation/devicetree/bindings/display/msm/
5856 F:      drivers/gpu/drm/msm/
5857 F:      include/uapi/drm/msm_drm.h
5858
5859 DRM DRIVER FOR NOVATEK NT35510 PANELS
5860 M:      Linus Walleij <linus.walleij@linaro.org>
5861 S:      Maintained
5862 T:      git git://anongit.freedesktop.org/drm/drm-misc
5863 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5864 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5865
5866 DRM DRIVER FOR NOVATEK NT36672A PANELS
5867 M:      Sumit Semwal <sumit.semwal@linaro.org>
5868 S:      Maintained
5869 T:      git git://anongit.freedesktop.org/drm/drm-misc
5870 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
5871 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
5872
5873 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5874 M:      Ben Skeggs <bskeggs@redhat.com>
5875 L:      dri-devel@lists.freedesktop.org
5876 L:      nouveau@lists.freedesktop.org
5877 S:      Supported
5878 T:      git git://github.com/skeggsb/linux
5879 F:      drivers/gpu/drm/nouveau/
5880 F:      include/uapi/drm/nouveau_drm.h
5881
5882 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5883 M:      Stefan Mavrodiev <stefan@olimex.com>
5884 S:      Maintained
5885 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5886 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5887
5888 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5889 M:      Noralf Trønnes <noralf@tronnes.org>
5890 S:      Maintained
5891 T:      git git://anongit.freedesktop.org/drm/drm-misc
5892 F:      Documentation/devicetree/bindings/display/repaper.txt
5893 F:      drivers/gpu/drm/tiny/repaper.c
5894
5895 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5896 M:      Dave Airlie <airlied@redhat.com>
5897 M:      Gerd Hoffmann <kraxel@redhat.com>
5898 L:      virtualization@lists.linux-foundation.org
5899 S:      Obsolete
5900 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5901 T:      git git://anongit.freedesktop.org/drm/drm-misc
5902 F:      drivers/gpu/drm/tiny/cirrus.c
5903
5904 DRM DRIVER FOR QXL VIRTUAL GPU
5905 M:      Dave Airlie <airlied@redhat.com>
5906 M:      Gerd Hoffmann <kraxel@redhat.com>
5907 L:      virtualization@lists.linux-foundation.org
5908 L:      spice-devel@lists.freedesktop.org
5909 S:      Maintained
5910 T:      git git://anongit.freedesktop.org/drm/drm-misc
5911 F:      drivers/gpu/drm/qxl/
5912 F:      include/uapi/drm/qxl_drm.h
5913
5914 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5915 S:      Orphan / Obsolete
5916 F:      drivers/gpu/drm/r128/
5917 F:      include/uapi/drm/r128_drm.h
5918
5919 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5920 M:      Robert Chiras <robert.chiras@nxp.com>
5921 S:      Maintained
5922 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
5923 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5924
5925 DRM DRIVER FOR SITRONIX ST7703 PANELS
5926 M:      Guido Günther <agx@sigxcpu.org>
5927 R:      Purism Kernel Team <kernel@puri.sm>
5928 R:      Ondrej Jirman <megous@megous.com>
5929 S:      Maintained
5930 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
5931 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
5932
5933 DRM DRIVER FOR SAVAGE VIDEO CARDS
5934 S:      Orphan / Obsolete
5935 F:      drivers/gpu/drm/savage/
5936 F:      include/uapi/drm/savage_drm.h
5937
5938 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
5939 M:      Thomas Zimmermann <tzimmermann@suse.de>
5940 L:      dri-devel@lists.freedesktop.org
5941 S:      Maintained
5942 T:      git git://anongit.freedesktop.org/drm/drm-misc
5943 F:      drivers/gpu/drm/tiny/simpledrm.c
5944
5945 DRM DRIVER FOR SIS VIDEO CARDS
5946 S:      Orphan / Obsolete
5947 F:      drivers/gpu/drm/sis/
5948 F:      include/uapi/drm/sis_drm.h
5949
5950 DRM DRIVER FOR SITRONIX ST7586 PANELS
5951 M:      David Lechner <david@lechnology.com>
5952 S:      Maintained
5953 T:      git git://anongit.freedesktop.org/drm/drm-misc
5954 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5955 F:      drivers/gpu/drm/tiny/st7586.c
5956
5957 DRM DRIVER FOR SITRONIX ST7701 PANELS
5958 M:      Jagan Teki <jagan@amarulasolutions.com>
5959 S:      Maintained
5960 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5961 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5962
5963 DRM DRIVER FOR SITRONIX ST7735R PANELS
5964 M:      David Lechner <david@lechnology.com>
5965 S:      Maintained
5966 T:      git git://anongit.freedesktop.org/drm/drm-misc
5967 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5968 F:      drivers/gpu/drm/tiny/st7735r.c
5969
5970 DRM DRIVER FOR SONY ACX424AKP PANELS
5971 M:      Linus Walleij <linus.walleij@linaro.org>
5972 S:      Maintained
5973 T:      git git://anongit.freedesktop.org/drm/drm-misc
5974 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5975
5976 DRM DRIVER FOR ST-ERICSSON MCDE
5977 M:      Linus Walleij <linus.walleij@linaro.org>
5978 S:      Maintained
5979 T:      git git://anongit.freedesktop.org/drm/drm-misc
5980 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
5981 F:      drivers/gpu/drm/mcde/
5982
5983 DRM DRIVER FOR TDFX VIDEO CARDS
5984 S:      Orphan / Obsolete
5985 F:      drivers/gpu/drm/tdfx/
5986
5987 DRM DRIVER FOR TPO TPG110 PANELS
5988 M:      Linus Walleij <linus.walleij@linaro.org>
5989 S:      Maintained
5990 T:      git git://anongit.freedesktop.org/drm/drm-misc
5991 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5992 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5993
5994 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5995 M:      Dave Airlie <airlied@redhat.com>
5996 R:      Sean Paul <sean@poorly.run>
5997 R:      Thomas Zimmermann <tzimmermann@suse.de>
5998 L:      dri-devel@lists.freedesktop.org
5999 S:      Supported
6000 T:      git git://anongit.freedesktop.org/drm/drm-misc
6001 F:      drivers/gpu/drm/udl/
6002
6003 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6004 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6005 M:      Melissa Wen <melissa.srw@gmail.com>
6006 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6007 R:      Daniel Vetter <daniel@ffwll.ch>
6008 L:      dri-devel@lists.freedesktop.org
6009 S:      Maintained
6010 T:      git git://anongit.freedesktop.org/drm/drm-misc
6011 F:      Documentation/gpu/vkms.rst
6012 F:      drivers/gpu/drm/vkms/
6013
6014 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6015 M:      Hans de Goede <hdegoede@redhat.com>
6016 L:      dri-devel@lists.freedesktop.org
6017 S:      Maintained
6018 T:      git git://anongit.freedesktop.org/drm/drm-misc
6019 F:      drivers/gpu/drm/vboxvideo/
6020
6021 DRM DRIVER FOR VMWARE VIRTUAL GPU
6022 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
6023 M:      Roland Scheidegger <sroland@vmware.com>
6024 M:      Zack Rusin <zackr@vmware.com>
6025 L:      dri-devel@lists.freedesktop.org
6026 S:      Supported
6027 T:      git git://people.freedesktop.org/~sroland/linux
6028 F:      drivers/gpu/drm/vmwgfx/
6029 F:      include/uapi/drm/vmwgfx_drm.h
6030
6031 DRM DRIVERS
6032 M:      David Airlie <airlied@linux.ie>
6033 M:      Daniel Vetter <daniel@ffwll.ch>
6034 L:      dri-devel@lists.freedesktop.org
6035 S:      Maintained
6036 B:      https://gitlab.freedesktop.org/drm
6037 C:      irc://chat.freenode.net/dri-devel
6038 T:      git git://anongit.freedesktop.org/drm/drm
6039 F:      Documentation/devicetree/bindings/display/
6040 F:      Documentation/devicetree/bindings/gpu/
6041 F:      Documentation/gpu/
6042 F:      drivers/gpu/drm/
6043 F:      drivers/gpu/vga/
6044 F:      include/drm/
6045 F:      include/linux/vga*
6046 F:      include/uapi/drm/
6047
6048 DRM DRIVERS AND MISC GPU PATCHES
6049 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6050 M:      Maxime Ripard <mripard@kernel.org>
6051 M:      Thomas Zimmermann <tzimmermann@suse.de>
6052 S:      Maintained
6053 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6054 T:      git git://anongit.freedesktop.org/drm/drm-misc
6055 F:      Documentation/gpu/
6056 F:      drivers/gpu/drm/*
6057 F:      drivers/gpu/vga/
6058 F:      include/drm/drm*
6059 F:      include/linux/vga*
6060 F:      include/uapi/drm/drm*
6061
6062 DRM DRIVERS FOR ALLWINNER A10
6063 M:      Maxime Ripard <mripard@kernel.org>
6064 M:      Chen-Yu Tsai <wens@csie.org>
6065 L:      dri-devel@lists.freedesktop.org
6066 S:      Supported
6067 T:      git git://anongit.freedesktop.org/drm/drm-misc
6068 F:      Documentation/devicetree/bindings/display/allwinner*
6069 F:      drivers/gpu/drm/sun4i/
6070
6071 DRM DRIVERS FOR AMLOGIC SOCS
6072 M:      Neil Armstrong <narmstrong@baylibre.com>
6073 L:      dri-devel@lists.freedesktop.org
6074 L:      linux-amlogic@lists.infradead.org
6075 S:      Supported
6076 W:      http://linux-meson.com/
6077 T:      git git://anongit.freedesktop.org/drm/drm-misc
6078 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6079 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6080 F:      Documentation/gpu/meson.rst
6081 F:      drivers/gpu/drm/meson/
6082
6083 DRM DRIVERS FOR ATMEL HLCDC
6084 M:      Sam Ravnborg <sam@ravnborg.org>
6085 M:      Boris Brezillon <bbrezillon@kernel.org>
6086 L:      dri-devel@lists.freedesktop.org
6087 S:      Supported
6088 T:      git git://anongit.freedesktop.org/drm/drm-misc
6089 F:      Documentation/devicetree/bindings/display/atmel/
6090 F:      drivers/gpu/drm/atmel-hlcdc/
6091
6092 DRM DRIVERS FOR BRIDGE CHIPS
6093 M:      Andrzej Hajda <a.hajda@samsung.com>
6094 M:      Neil Armstrong <narmstrong@baylibre.com>
6095 M:      Robert Foss <robert.foss@linaro.org>
6096 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6097 R:      Jonas Karlman <jonas@kwiboo.se>
6098 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6099 S:      Maintained
6100 T:      git git://anongit.freedesktop.org/drm/drm-misc
6101 F:      drivers/gpu/drm/bridge/
6102
6103 DRM DRIVERS FOR EXYNOS
6104 M:      Inki Dae <inki.dae@samsung.com>
6105 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6106 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6107 M:      Kyungmin Park <kyungmin.park@samsung.com>
6108 L:      dri-devel@lists.freedesktop.org
6109 S:      Supported
6110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6111 F:      Documentation/devicetree/bindings/display/exynos/
6112 F:      drivers/gpu/drm/exynos/
6113 F:      include/uapi/drm/exynos_drm.h
6114
6115 DRM DRIVERS FOR FREESCALE DCU
6116 M:      Stefan Agner <stefan@agner.ch>
6117 M:      Alison Wang <alison.wang@nxp.com>
6118 L:      dri-devel@lists.freedesktop.org
6119 S:      Supported
6120 T:      git git://anongit.freedesktop.org/drm/drm-misc
6121 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6122 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6123 F:      drivers/gpu/drm/fsl-dcu/
6124
6125 DRM DRIVERS FOR FREESCALE IMX
6126 M:      Philipp Zabel <p.zabel@pengutronix.de>
6127 L:      dri-devel@lists.freedesktop.org
6128 S:      Maintained
6129 F:      Documentation/devicetree/bindings/display/imx/
6130 F:      drivers/gpu/drm/imx/
6131 F:      drivers/gpu/ipu-v3/
6132
6133 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6134 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6135 L:      dri-devel@lists.freedesktop.org
6136 S:      Maintained
6137 T:      git git://github.com/patjak/drm-gma500
6138 F:      drivers/gpu/drm/gma500/
6139
6140 DRM DRIVERS FOR HISILICON
6141 M:      Xinliang Liu <xinliang.liu@linaro.org>
6142 M:      Tian Tao  <tiantao6@hisilicon.com>
6143 R:      John Stultz <john.stultz@linaro.org>
6144 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6145 R:      Chen Feng <puck.chen@hisilicon.com>
6146 L:      dri-devel@lists.freedesktop.org
6147 S:      Maintained
6148 T:      git git://anongit.freedesktop.org/drm/drm-misc
6149 F:      Documentation/devicetree/bindings/display/hisilicon/
6150 F:      drivers/gpu/drm/hisilicon/
6151
6152 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6153 M:      Deepak Rawat <drawat.floss@gmail.com>
6154 L:      linux-hyperv@vger.kernel.org
6155 L:      dri-devel@lists.freedesktop.org
6156 S:      Maintained
6157 T:      git git://anongit.freedesktop.org/drm/drm-misc
6158 F:      drivers/gpu/drm/hyperv
6159
6160 DRM DRIVERS FOR LIMA
6161 M:      Qiang Yu <yuq825@gmail.com>
6162 L:      dri-devel@lists.freedesktop.org
6163 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6164 S:      Maintained
6165 T:      git git://anongit.freedesktop.org/drm/drm-misc
6166 F:      drivers/gpu/drm/lima/
6167 F:      include/uapi/drm/lima_drm.h
6168
6169 DRM DRIVERS FOR MEDIATEK
6170 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6171 M:      Philipp Zabel <p.zabel@pengutronix.de>
6172 L:      dri-devel@lists.freedesktop.org
6173 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6174 S:      Supported
6175 F:      Documentation/devicetree/bindings/display/mediatek/
6176 F:      drivers/gpu/drm/mediatek/
6177 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6178 F:      drivers/phy/mediatek/phy-mtk-mipi*
6179
6180 DRM DRIVERS FOR NVIDIA TEGRA
6181 M:      Thierry Reding <thierry.reding@gmail.com>
6182 L:      dri-devel@lists.freedesktop.org
6183 L:      linux-tegra@vger.kernel.org
6184 S:      Supported
6185 T:      git git://anongit.freedesktop.org/tegra/linux.git
6186 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6187 F:      drivers/gpu/drm/tegra/
6188 F:      drivers/gpu/host1x/
6189 F:      include/linux/host1x.h
6190 F:      include/uapi/drm/tegra_drm.h
6191
6192 DRM DRIVERS FOR RENESAS
6193 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6194 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6195 L:      dri-devel@lists.freedesktop.org
6196 L:      linux-renesas-soc@vger.kernel.org
6197 S:      Supported
6198 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6199 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6200 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6201 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6202 F:      drivers/gpu/drm/rcar-du/
6203 F:      drivers/gpu/drm/shmobile/
6204 F:      include/linux/platform_data/shmob_drm.h
6205
6206 DRM DRIVERS FOR ROCKCHIP
6207 M:      Sandy Huang <hjc@rock-chips.com>
6208 M:      Heiko Stübner <heiko@sntech.de>
6209 L:      dri-devel@lists.freedesktop.org
6210 S:      Maintained
6211 T:      git git://anongit.freedesktop.org/drm/drm-misc
6212 F:      Documentation/devicetree/bindings/display/rockchip/
6213 F:      drivers/gpu/drm/rockchip/
6214
6215 DRM DRIVERS FOR STI
6216 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6217 L:      dri-devel@lists.freedesktop.org
6218 S:      Maintained
6219 T:      git git://anongit.freedesktop.org/drm/drm-misc
6220 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6221 F:      drivers/gpu/drm/sti
6222
6223 DRM DRIVERS FOR STM
6224 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6225 M:      Philippe Cornu <philippe.cornu@foss.st.com>
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,stm32-ltdc.yaml
6231 F:      drivers/gpu/drm/stm
6232
6233 DRM DRIVERS FOR TI KEYSTONE
6234 M:      Jyri Sarha <jyri.sarha@iki.fi>
6235 M:      Tomi Valkeinen <tomba@kernel.org>
6236 L:      dri-devel@lists.freedesktop.org
6237 S:      Maintained
6238 T:      git git://anongit.freedesktop.org/drm/drm-misc
6239 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6240 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6241 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6242 F:      drivers/gpu/drm/tidss/
6243
6244 DRM DRIVERS FOR TI LCDC
6245 M:      Jyri Sarha <jyri.sarha@iki.fi>
6246 R:      Tomi Valkeinen <tomba@kernel.org>
6247 L:      dri-devel@lists.freedesktop.org
6248 S:      Maintained
6249 F:      Documentation/devicetree/bindings/display/tilcdc/
6250 F:      drivers/gpu/drm/tilcdc/
6251
6252 DRM DRIVERS FOR TI OMAP
6253 M:      Tomi Valkeinen <tomba@kernel.org>
6254 L:      dri-devel@lists.freedesktop.org
6255 S:      Maintained
6256 F:      Documentation/devicetree/bindings/display/ti/
6257 F:      drivers/gpu/drm/omapdrm/
6258
6259 DRM DRIVERS FOR V3D
6260 M:      Emma Anholt <emma@anholt.net>
6261 S:      Supported
6262 T:      git git://anongit.freedesktop.org/drm/drm-misc
6263 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6264 F:      drivers/gpu/drm/v3d/
6265 F:      include/uapi/drm/v3d_drm.h
6266
6267 DRM DRIVERS FOR VC4
6268 M:      Emma Anholt <emma@anholt.net>
6269 M:      Maxime Ripard <mripard@kernel.org>
6270 S:      Supported
6271 T:      git git://github.com/anholt/linux
6272 T:      git git://anongit.freedesktop.org/drm/drm-misc
6273 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6274 F:      drivers/gpu/drm/vc4/
6275 F:      include/uapi/drm/vc4_drm.h
6276
6277 DRM DRIVERS FOR VIVANTE GPU IP
6278 M:      Lucas Stach <l.stach@pengutronix.de>
6279 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6280 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6281 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6282 L:      dri-devel@lists.freedesktop.org
6283 S:      Maintained
6284 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6285 F:      drivers/gpu/drm/etnaviv/
6286 F:      include/uapi/drm/etnaviv_drm.h
6287
6288 DRM DRIVERS FOR XEN
6289 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6290 L:      dri-devel@lists.freedesktop.org
6291 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6292 S:      Supported
6293 T:      git git://anongit.freedesktop.org/drm/drm-misc
6294 F:      Documentation/gpu/xen-front.rst
6295 F:      drivers/gpu/drm/xen/
6296
6297 DRM DRIVERS FOR XILINX
6298 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6299 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6300 L:      dri-devel@lists.freedesktop.org
6301 S:      Maintained
6302 T:      git git://anongit.freedesktop.org/drm/drm-misc
6303 F:      Documentation/devicetree/bindings/display/xlnx/
6304 F:      drivers/gpu/drm/xlnx/
6305
6306 DRM PANEL DRIVERS
6307 M:      Thierry Reding <thierry.reding@gmail.com>
6308 R:      Sam Ravnborg <sam@ravnborg.org>
6309 L:      dri-devel@lists.freedesktop.org
6310 S:      Maintained
6311 T:      git git://anongit.freedesktop.org/drm/drm-misc
6312 F:      Documentation/devicetree/bindings/display/panel/
6313 F:      drivers/gpu/drm/drm_panel.c
6314 F:      drivers/gpu/drm/panel/
6315 F:      include/drm/drm_panel.h
6316
6317 DRM TTM SUBSYSTEM
6318 M:      Christian Koenig <christian.koenig@amd.com>
6319 M:      Huang Rui <ray.huang@amd.com>
6320 L:      dri-devel@lists.freedesktop.org
6321 S:      Maintained
6322 T:      git git://anongit.freedesktop.org/drm/drm-misc
6323 F:      drivers/gpu/drm/ttm/
6324 F:      include/drm/ttm/
6325
6326 DSBR100 USB FM RADIO DRIVER
6327 M:      Alexey Klimov <klimov.linux@gmail.com>
6328 L:      linux-media@vger.kernel.org
6329 S:      Maintained
6330 T:      git git://linuxtv.org/media_tree.git
6331 F:      drivers/media/radio/dsbr100.c
6332
6333 DT3155 MEDIA DRIVER
6334 M:      Hans Verkuil <hverkuil@xs4all.nl>
6335 L:      linux-media@vger.kernel.org
6336 S:      Odd Fixes
6337 W:      https://linuxtv.org
6338 T:      git git://linuxtv.org/media_tree.git
6339 F:      drivers/media/pci/dt3155/
6340
6341 DVB_USB_AF9015 MEDIA DRIVER
6342 M:      Antti Palosaari <crope@iki.fi>
6343 L:      linux-media@vger.kernel.org
6344 S:      Maintained
6345 W:      https://linuxtv.org
6346 W:      http://palosaari.fi/linux/
6347 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6348 T:      git git://linuxtv.org/anttip/media_tree.git
6349 F:      drivers/media/usb/dvb-usb-v2/af9015*
6350
6351 DVB_USB_AF9035 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/af9035*
6360
6361 DVB_USB_ANYSEE 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/anysee*
6370
6371 DVB_USB_AU6610 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/au6610*
6380
6381 DVB_USB_CE6230 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/ce6230*
6390
6391 DVB_USB_CXUSB MEDIA DRIVER
6392 M:      Michael Krufky <mkrufky@linuxtv.org>
6393 L:      linux-media@vger.kernel.org
6394 S:      Maintained
6395 W:      https://linuxtv.org
6396 W:      http://github.com/mkrufky
6397 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6398 T:      git git://linuxtv.org/media_tree.git
6399 F:      drivers/media/usb/dvb-usb/cxusb*
6400
6401 DVB_USB_EC168 MEDIA DRIVER
6402 M:      Antti Palosaari <crope@iki.fi>
6403 L:      linux-media@vger.kernel.org
6404 S:      Maintained
6405 W:      https://linuxtv.org
6406 W:      http://palosaari.fi/linux/
6407 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6408 T:      git git://linuxtv.org/anttip/media_tree.git
6409 F:      drivers/media/usb/dvb-usb-v2/ec168*
6410
6411 DVB_USB_GL861 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 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6417 T:      git git://linuxtv.org/anttip/media_tree.git
6418 F:      drivers/media/usb/dvb-usb-v2/gl861*
6419
6420 DVB_USB_MXL111SF MEDIA DRIVER
6421 M:      Michael Krufky <mkrufky@linuxtv.org>
6422 L:      linux-media@vger.kernel.org
6423 S:      Maintained
6424 W:      https://linuxtv.org
6425 W:      http://github.com/mkrufky
6426 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6427 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6428 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6429
6430 DVB_USB_RTL28XXU MEDIA DRIVER
6431 M:      Antti Palosaari <crope@iki.fi>
6432 L:      linux-media@vger.kernel.org
6433 S:      Maintained
6434 W:      https://linuxtv.org
6435 W:      http://palosaari.fi/linux/
6436 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6437 T:      git git://linuxtv.org/anttip/media_tree.git
6438 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6439
6440 DVB_USB_V2 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/dvb_usb*
6449 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6450
6451 DYNAMIC DEBUG
6452 M:      Jason Baron <jbaron@akamai.com>
6453 S:      Maintained
6454 F:      include/linux/dynamic_debug.h
6455 F:      lib/dynamic_debug.c
6456
6457 DYNAMIC INTERRUPT MODERATION
6458 M:      Tal Gilboa <talgi@nvidia.com>
6459 S:      Maintained
6460 F:      Documentation/networking/net_dim.rst
6461 F:      include/linux/dim.h
6462 F:      lib/dim/
6463
6464 DZ DECSTATION DZ11 SERIAL DRIVER
6465 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6466 S:      Maintained
6467 F:      drivers/tty/serial/dz.*
6468
6469 E3X0 POWER BUTTON DRIVER
6470 M:      Moritz Fischer <moritz.fischer@ettus.com>
6471 L:      usrp-users@lists.ettus.com
6472 S:      Supported
6473 W:      http://www.ettus.com
6474 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6475 F:      drivers/input/misc/e3x0-button.c
6476
6477 E4000 MEDIA DRIVER
6478 M:      Antti Palosaari <crope@iki.fi>
6479 L:      linux-media@vger.kernel.org
6480 S:      Maintained
6481 W:      https://linuxtv.org
6482 W:      http://palosaari.fi/linux/
6483 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6484 T:      git git://linuxtv.org/anttip/media_tree.git
6485 F:      drivers/media/tuners/e4000*
6486
6487 EARTH_PT1 MEDIA DRIVER
6488 M:      Akihiro Tsukada <tskd08@gmail.com>
6489 L:      linux-media@vger.kernel.org
6490 S:      Odd Fixes
6491 F:      drivers/media/pci/pt1/
6492
6493 EARTH_PT3 MEDIA DRIVER
6494 M:      Akihiro Tsukada <tskd08@gmail.com>
6495 L:      linux-media@vger.kernel.org
6496 S:      Odd Fixes
6497 F:      drivers/media/pci/pt3/
6498
6499 EC100 MEDIA DRIVER
6500 M:      Antti Palosaari <crope@iki.fi>
6501 L:      linux-media@vger.kernel.org
6502 S:      Maintained
6503 W:      https://linuxtv.org
6504 W:      http://palosaari.fi/linux/
6505 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6506 T:      git git://linuxtv.org/anttip/media_tree.git
6507 F:      drivers/media/dvb-frontends/ec100*
6508
6509 ECRYPT FILE SYSTEM
6510 M:      Tyler Hicks <code@tyhicks.com>
6511 L:      ecryptfs@vger.kernel.org
6512 S:      Odd Fixes
6513 W:      http://ecryptfs.org
6514 W:      https://launchpad.net/ecryptfs
6515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6516 F:      Documentation/filesystems/ecryptfs.rst
6517 F:      fs/ecryptfs/
6518
6519 EDAC-AMD64
6520 M:      Yazen Ghannam <yazen.ghannam@amd.com>
6521 L:      linux-edac@vger.kernel.org
6522 S:      Supported
6523 F:      drivers/edac/amd64_edac*
6524 F:      drivers/edac/mce_amd*
6525
6526 EDAC-ARMADA
6527 M:      Jan Luebbe <jlu@pengutronix.de>
6528 L:      linux-edac@vger.kernel.org
6529 S:      Maintained
6530 F:      drivers/edac/armada_xp_*
6531
6532 EDAC-AST2500
6533 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6534 S:      Supported
6535 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6536 F:      drivers/edac/aspeed_edac.c
6537
6538 EDAC-BLUEFIELD
6539 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6540 S:      Supported
6541 F:      drivers/edac/bluefield_edac.c
6542
6543 EDAC-CALXEDA
6544 M:      Andre Przywara <andre.przywara@arm.com>
6545 L:      linux-edac@vger.kernel.org
6546 S:      Maintained
6547 F:      drivers/edac/highbank*
6548
6549 EDAC-CAVIUM OCTEON
6550 M:      Ralf Baechle <ralf@linux-mips.org>
6551 L:      linux-edac@vger.kernel.org
6552 L:      linux-mips@vger.kernel.org
6553 S:      Supported
6554 F:      drivers/edac/octeon_edac*
6555
6556 EDAC-CAVIUM THUNDERX
6557 M:      Robert Richter <rric@kernel.org>
6558 L:      linux-edac@vger.kernel.org
6559 S:      Odd Fixes
6560 F:      drivers/edac/thunderx_edac*
6561
6562 EDAC-CORE
6563 M:      Borislav Petkov <bp@alien8.de>
6564 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6565 M:      Tony Luck <tony.luck@intel.com>
6566 R:      James Morse <james.morse@arm.com>
6567 R:      Robert Richter <rric@kernel.org>
6568 L:      linux-edac@vger.kernel.org
6569 S:      Supported
6570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6571 F:      Documentation/admin-guide/ras.rst
6572 F:      Documentation/driver-api/edac.rst
6573 F:      drivers/edac/
6574 F:      include/linux/edac.h
6575
6576 EDAC-DMC520
6577 M:      Lei Wang <lewan@microsoft.com>
6578 L:      linux-edac@vger.kernel.org
6579 S:      Supported
6580 F:      drivers/edac/dmc520_edac.c
6581
6582 EDAC-E752X
6583 M:      Mark Gross <mark.gross@intel.com>
6584 L:      linux-edac@vger.kernel.org
6585 S:      Maintained
6586 F:      drivers/edac/e752x_edac.c
6587
6588 EDAC-E7XXX
6589 L:      linux-edac@vger.kernel.org
6590 S:      Maintained
6591 F:      drivers/edac/e7xxx_edac.c
6592
6593 EDAC-FSL_DDR
6594 M:      York Sun <york.sun@nxp.com>
6595 L:      linux-edac@vger.kernel.org
6596 S:      Maintained
6597 F:      drivers/edac/fsl_ddr_edac.*
6598
6599 EDAC-GHES
6600 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6601 L:      linux-edac@vger.kernel.org
6602 S:      Maintained
6603 F:      drivers/edac/ghes_edac.c
6604
6605 EDAC-I10NM
6606 M:      Tony Luck <tony.luck@intel.com>
6607 L:      linux-edac@vger.kernel.org
6608 S:      Maintained
6609 F:      drivers/edac/i10nm_base.c
6610
6611 EDAC-I3000
6612 L:      linux-edac@vger.kernel.org
6613 S:      Orphan
6614 F:      drivers/edac/i3000_edac.c
6615
6616 EDAC-I5000
6617 L:      linux-edac@vger.kernel.org
6618 S:      Maintained
6619 F:      drivers/edac/i5000_edac.c
6620
6621 EDAC-I5400
6622 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6623 L:      linux-edac@vger.kernel.org
6624 S:      Maintained
6625 F:      drivers/edac/i5400_edac.c
6626
6627 EDAC-I7300
6628 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6629 L:      linux-edac@vger.kernel.org
6630 S:      Maintained
6631 F:      drivers/edac/i7300_edac.c
6632
6633 EDAC-I7CORE
6634 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6635 L:      linux-edac@vger.kernel.org
6636 S:      Maintained
6637 F:      drivers/edac/i7core_edac.c
6638
6639 EDAC-I82443BXGX
6640 M:      Tim Small <tim@buttersideup.com>
6641 L:      linux-edac@vger.kernel.org
6642 S:      Maintained
6643 F:      drivers/edac/i82443bxgx_edac.c
6644
6645 EDAC-I82975X
6646 M:      "Arvind R." <arvino55@gmail.com>
6647 L:      linux-edac@vger.kernel.org
6648 S:      Maintained
6649 F:      drivers/edac/i82975x_edac.c
6650
6651 EDAC-IE31200
6652 M:      Jason Baron <jbaron@akamai.com>
6653 L:      linux-edac@vger.kernel.org
6654 S:      Maintained
6655 F:      drivers/edac/ie31200_edac.c
6656
6657 EDAC-IGEN6
6658 M:      Tony Luck <tony.luck@intel.com>
6659 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6660 L:      linux-edac@vger.kernel.org
6661 S:      Maintained
6662 F:      drivers/edac/igen6_edac.c
6663
6664 EDAC-MPC85XX
6665 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6666 L:      linux-edac@vger.kernel.org
6667 S:      Maintained
6668 F:      drivers/edac/mpc85xx_edac.[ch]
6669
6670 EDAC-PASEMI
6671 M:      Egor Martovetsky <egor@pasemi.com>
6672 L:      linux-edac@vger.kernel.org
6673 S:      Maintained
6674 F:      drivers/edac/pasemi_edac.c
6675
6676 EDAC-PND2
6677 M:      Tony Luck <tony.luck@intel.com>
6678 L:      linux-edac@vger.kernel.org
6679 S:      Maintained
6680 F:      drivers/edac/pnd2_edac.[ch]
6681
6682 EDAC-QCOM
6683 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6684 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6685 L:      linux-arm-msm@vger.kernel.org
6686 L:      linux-edac@vger.kernel.org
6687 S:      Maintained
6688 F:      drivers/edac/qcom_edac.c
6689
6690 EDAC-R82600
6691 M:      Tim Small <tim@buttersideup.com>
6692 L:      linux-edac@vger.kernel.org
6693 S:      Maintained
6694 F:      drivers/edac/r82600_edac.c
6695
6696 EDAC-SBRIDGE
6697 M:      Tony Luck <tony.luck@intel.com>
6698 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6699 L:      linux-edac@vger.kernel.org
6700 S:      Maintained
6701 F:      drivers/edac/sb_edac.c
6702
6703 EDAC-SIFIVE
6704 M:      Yash Shah <yash.shah@sifive.com>
6705 L:      linux-edac@vger.kernel.org
6706 S:      Supported
6707 F:      drivers/edac/sifive_edac.c
6708
6709 EDAC-SKYLAKE
6710 M:      Tony Luck <tony.luck@intel.com>
6711 L:      linux-edac@vger.kernel.org
6712 S:      Maintained
6713 F:      drivers/edac/skx_*.[ch]
6714
6715 EDAC-TI
6716 M:      Tero Kristo <kristo@kernel.org>
6717 L:      linux-edac@vger.kernel.org
6718 S:      Odd Fixes
6719 F:      drivers/edac/ti_edac.c
6720
6721 EDIROL UA-101/UA-1000 DRIVER
6722 M:      Clemens Ladisch <clemens@ladisch.de>
6723 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6724 S:      Maintained
6725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6726 F:      sound/usb/misc/ua101.c
6727
6728 EFI TEST DRIVER
6729 M:      Ivan Hu <ivan.hu@canonical.com>
6730 M:      Ard Biesheuvel <ardb@kernel.org>
6731 L:      linux-efi@vger.kernel.org
6732 S:      Maintained
6733 F:      drivers/firmware/efi/test/
6734
6735 EFI VARIABLE FILESYSTEM
6736 M:      Matthew Garrett <matthew.garrett@nebula.com>
6737 M:      Jeremy Kerr <jk@ozlabs.org>
6738 M:      Ard Biesheuvel <ardb@kernel.org>
6739 L:      linux-efi@vger.kernel.org
6740 S:      Maintained
6741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6742 F:      fs/efivarfs/
6743
6744 EFIFB FRAMEBUFFER DRIVER
6745 M:      Peter Jones <pjones@redhat.com>
6746 L:      linux-fbdev@vger.kernel.org
6747 S:      Maintained
6748 F:      drivers/video/fbdev/efifb.c
6749
6750 EFS FILESYSTEM
6751 S:      Orphan
6752 W:      http://aeschi.ch.eu.org/efs/
6753 F:      fs/efs/
6754
6755 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6756 M:      Douglas Miller <dougmill@linux.ibm.com>
6757 L:      netdev@vger.kernel.org
6758 S:      Maintained
6759 F:      drivers/net/ethernet/ibm/ehea/
6760
6761 EM28XX VIDEO4LINUX DRIVER
6762 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6763 L:      linux-media@vger.kernel.org
6764 S:      Maintained
6765 W:      https://linuxtv.org
6766 T:      git git://linuxtv.org/media_tree.git
6767 F:      Documentation/admin-guide/media/em28xx*
6768 F:      drivers/media/usb/em28xx/
6769
6770 EMBEDDED LINUX
6771 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6772 M:      Matt Mackall <mpm@selenic.com>
6773 M:      David Woodhouse <dwmw2@infradead.org>
6774 L:      linux-embedded@vger.kernel.org
6775 S:      Maintained
6776
6777 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6778 M:      Adrian Hunter <adrian.hunter@intel.com>
6779 M:      Ritesh Harjani <riteshh@codeaurora.org>
6780 M:      Asutosh Das <asutoshd@codeaurora.org>
6781 L:      linux-mmc@vger.kernel.org
6782 S:      Maintained
6783 F:      drivers/mmc/host/cqhci*
6784
6785 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6786 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6787 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6788 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6789 L:      linux-scsi@vger.kernel.org
6790 S:      Supported
6791 W:      http://www.broadcom.com
6792 F:      drivers/scsi/be2iscsi/
6793
6794 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6795 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6796 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6797 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6798 L:      netdev@vger.kernel.org
6799 S:      Supported
6800 W:      http://www.emulex.com
6801 F:      drivers/net/ethernet/emulex/benet/
6802
6803 EMULEX ONECONNECT ROCE DRIVER
6804 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6805 L:      linux-rdma@vger.kernel.org
6806 S:      Odd Fixes
6807 W:      http://www.broadcom.com
6808 F:      drivers/infiniband/hw/ocrdma/
6809 F:      include/uapi/rdma/ocrdma-abi.h
6810
6811 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6812 M:      James Smart <james.smart@broadcom.com>
6813 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6814 L:      linux-scsi@vger.kernel.org
6815 S:      Supported
6816 W:      http://www.broadcom.com
6817 F:      drivers/scsi/lpfc/
6818
6819 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
6820 M:      James Smart <james.smart@broadcom.com>
6821 M:      Ram Vegesna <ram.vegesna@broadcom.com>
6822 L:      linux-scsi@vger.kernel.org
6823 L:      target-devel@vger.kernel.org
6824 S:      Supported
6825 W:      http://www.broadcom.com
6826 F:      drivers/scsi/elx/
6827
6828 ENE CB710 FLASH CARD READER DRIVER
6829 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6830 S:      Maintained
6831 F:      drivers/misc/cb710/
6832 F:      drivers/mmc/host/cb710-mmc.*
6833 F:      include/linux/cb710.h
6834
6835 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6836 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6837 S:      Maintained
6838 F:      drivers/media/rc/ene_ir.*
6839
6840 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6841 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6842 L:      linuxppc-dev@lists.ozlabs.org
6843 S:      Maintained
6844 F:      drivers/tty/ehv_bytechan.c
6845
6846 EPSON S1D13XXX FRAMEBUFFER DRIVER
6847 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6848 S:      Maintained
6849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6850 F:      drivers/video/fbdev/s1d13xxxfb.c
6851 F:      include/video/s1d13xxxfb.h
6852
6853 EROFS FILE SYSTEM
6854 M:      Gao Xiang <xiang@kernel.org>
6855 M:      Chao Yu <chao@kernel.org>
6856 L:      linux-erofs@lists.ozlabs.org
6857 S:      Maintained
6858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6859 F:      Documentation/filesystems/erofs.rst
6860 F:      fs/erofs/
6861 F:      include/trace/events/erofs.h
6862
6863 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6864 M:      Jeff Layton <jlayton@kernel.org>
6865 S:      Maintained
6866 F:      include/linux/errseq.h
6867 F:      lib/errseq.c
6868
6869 ET131X NETWORK DRIVER
6870 M:      Mark Einon <mark.einon@gmail.com>
6871 S:      Odd Fixes
6872 F:      drivers/net/ethernet/agere/
6873
6874 ETHERNET BRIDGE
6875 M:      Roopa Prabhu <roopa@nvidia.com>
6876 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
6877 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6878 L:      netdev@vger.kernel.org
6879 S:      Maintained
6880 W:      http://www.linuxfoundation.org/en/Net:Bridge
6881 F:      include/linux/netfilter_bridge/
6882 F:      net/bridge/
6883
6884 ETHERNET PHY LIBRARY
6885 M:      Andrew Lunn <andrew@lunn.ch>
6886 M:      Heiner Kallweit <hkallweit1@gmail.com>
6887 R:      Russell King <linux@armlinux.org.uk>
6888 L:      netdev@vger.kernel.org
6889 S:      Maintained
6890 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6891 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6892 F:      Documentation/devicetree/bindings/net/mdio*
6893 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6894 F:      Documentation/networking/phy.rst
6895 F:      drivers/net/mdio/
6896 F:      drivers/net/mdio/acpi_mdio.c
6897 F:      drivers/net/mdio/fwnode_mdio.c
6898 F:      drivers/net/mdio/of_mdio.c
6899 F:      drivers/net/pcs/
6900 F:      drivers/net/phy/
6901 F:      drivers/of/of_net.c
6902 F:      include/dt-bindings/net/qca-ar803x.h
6903 F:      include/linux/*mdio*.h
6904 F:      include/linux/mdio/*.h
6905 F:      include/linux/of_net.h
6906 F:      include/linux/phy.h
6907 F:      include/linux/phy_fixed.h
6908 F:      include/linux/platform_data/mdio-bcm-unimac.h
6909 F:      include/linux/platform_data/mdio-gpio.h
6910 F:      include/trace/events/mdio.h
6911 F:      include/uapi/linux/mdio.h
6912 F:      include/uapi/linux/mii.h
6913
6914 EXFAT FILE SYSTEM
6915 M:      Namjae Jeon <namjae.jeon@samsung.com>
6916 M:      Sungjong Seo <sj1557.seo@samsung.com>
6917 L:      linux-fsdevel@vger.kernel.org
6918 S:      Maintained
6919 F:      fs/exfat/
6920
6921 EXT2 FILE SYSTEM
6922 M:      Jan Kara <jack@suse.com>
6923 L:      linux-ext4@vger.kernel.org
6924 S:      Maintained
6925 F:      Documentation/filesystems/ext2.rst
6926 F:      fs/ext2/
6927 F:      include/linux/ext2*
6928
6929 EXT4 FILE SYSTEM
6930 M:      "Theodore Ts'o" <tytso@mit.edu>
6931 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6932 L:      linux-ext4@vger.kernel.org
6933 S:      Maintained
6934 W:      http://ext4.wiki.kernel.org
6935 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6937 F:      Documentation/filesystems/ext4/
6938 F:      fs/ext4/
6939 F:      include/trace/events/ext4.h
6940
6941 Extended Verification Module (EVM)
6942 M:      Mimi Zohar <zohar@linux.ibm.com>
6943 L:      linux-integrity@vger.kernel.org
6944 S:      Supported
6945 F:      security/integrity/evm/
6946
6947 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6948 M:      Ard Biesheuvel <ardb@kernel.org>
6949 L:      linux-efi@vger.kernel.org
6950 S:      Maintained
6951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6952 F:      Documentation/admin-guide/efi-stub.rst
6953 F:      arch/*/include/asm/efi.h
6954 F:      arch/*/kernel/efi.c
6955 F:      arch/arm/boot/compressed/efi-header.S
6956 F:      arch/arm64/kernel/efi-entry.S
6957 F:      arch/x86/platform/efi/
6958 F:      drivers/firmware/efi/
6959 F:      include/linux/efi*.h
6960
6961 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6962 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6963 M:      Chanwoo Choi <cw00.choi@samsung.com>
6964 L:      linux-kernel@vger.kernel.org
6965 S:      Maintained
6966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6967 F:      Documentation/devicetree/bindings/extcon/
6968 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6969 F:      drivers/extcon/
6970 F:      include/linux/extcon.h
6971 F:      include/linux/extcon/
6972
6973 EXTRA BOOT CONFIG
6974 M:      Masami Hiramatsu <mhiramat@kernel.org>
6975 S:      Maintained
6976 F:      Documentation/admin-guide/bootconfig.rst
6977 F:      fs/proc/bootconfig.c
6978 F:      include/linux/bootconfig.h
6979 F:      lib/bootconfig.c
6980 F:      tools/bootconfig/*
6981 F:      tools/bootconfig/scripts/*
6982
6983 EXYNOS DP DRIVER
6984 M:      Jingoo Han <jingoohan1@gmail.com>
6985 L:      dri-devel@lists.freedesktop.org
6986 S:      Maintained
6987 F:      drivers/gpu/drm/exynos/exynos_dp*
6988
6989 EXYNOS SYSMMU (IOMMU) driver
6990 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6991 L:      iommu@lists.linux-foundation.org
6992 S:      Maintained
6993 F:      drivers/iommu/exynos-iommu.c
6994
6995 F2FS FILE SYSTEM
6996 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6997 M:      Chao Yu <yuchao0@huawei.com>
6998 L:      linux-f2fs-devel@lists.sourceforge.net
6999 S:      Maintained
7000 W:      https://f2fs.wiki.kernel.org/
7001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7002 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7003 F:      Documentation/filesystems/f2fs.rst
7004 F:      fs/f2fs/
7005 F:      include/linux/f2fs_fs.h
7006 F:      include/trace/events/f2fs.h
7007 F:      include/uapi/linux/f2fs.h
7008
7009 F71805F HARDWARE MONITORING DRIVER
7010 M:      Jean Delvare <jdelvare@suse.com>
7011 L:      linux-hwmon@vger.kernel.org
7012 S:      Maintained
7013 F:      Documentation/hwmon/f71805f.rst
7014 F:      drivers/hwmon/f71805f.c
7015
7016 FADDR2LINE
7017 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7018 S:      Maintained
7019 F:      scripts/faddr2line
7020
7021 FAILOVER MODULE
7022 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7023 L:      netdev@vger.kernel.org
7024 S:      Supported
7025 F:      Documentation/networking/failover.rst
7026 F:      include/net/failover.h
7027 F:      net/core/failover.c
7028
7029 FANOTIFY
7030 M:      Jan Kara <jack@suse.cz>
7031 R:      Amir Goldstein <amir73il@gmail.com>
7032 R:      Matthew Bobrowski <repnop@google.com>
7033 L:      linux-fsdevel@vger.kernel.org
7034 S:      Maintained
7035 F:      fs/notify/fanotify/
7036 F:      include/linux/fanotify.h
7037 F:      include/uapi/linux/fanotify.h
7038
7039 FARSYNC SYNCHRONOUS DRIVER
7040 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7041 S:      Supported
7042 W:      http://www.farsite.co.uk/
7043 F:      drivers/net/wan/farsync.*
7044
7045 FAULT INJECTION SUPPORT
7046 M:      Akinobu Mita <akinobu.mita@gmail.com>
7047 S:      Supported
7048 F:      Documentation/fault-injection/
7049 F:      lib/fault-inject.c
7050
7051 FBTFT Framebuffer drivers
7052 L:      dri-devel@lists.freedesktop.org
7053 L:      linux-fbdev@vger.kernel.org
7054 S:      Orphan
7055 F:      drivers/staging/fbtft/
7056
7057 FC0011 TUNER DRIVER
7058 M:      Michael Buesch <m@bues.ch>
7059 L:      linux-media@vger.kernel.org
7060 S:      Maintained
7061 F:      drivers/media/tuners/fc0011.c
7062 F:      drivers/media/tuners/fc0011.h
7063
7064 FC2580 MEDIA DRIVER
7065 M:      Antti Palosaari <crope@iki.fi>
7066 L:      linux-media@vger.kernel.org
7067 S:      Maintained
7068 W:      https://linuxtv.org
7069 W:      http://palosaari.fi/linux/
7070 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7071 T:      git git://linuxtv.org/anttip/media_tree.git
7072 F:      drivers/media/tuners/fc2580*
7073
7074 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7075 M:      Hannes Reinecke <hare@suse.de>
7076 L:      linux-scsi@vger.kernel.org
7077 S:      Supported
7078 W:      www.Open-FCoE.org
7079 F:      drivers/scsi/fcoe/
7080 F:      drivers/scsi/libfc/
7081 F:      include/scsi/fc/
7082 F:      include/scsi/libfc.h
7083 F:      include/scsi/libfcoe.h
7084 F:      include/uapi/scsi/fc/
7085
7086 FILE LOCKING (flock() and fcntl()/lockf())
7087 M:      Jeff Layton <jlayton@kernel.org>
7088 M:      "J. Bruce Fields" <bfields@fieldses.org>
7089 L:      linux-fsdevel@vger.kernel.org
7090 S:      Maintained
7091 F:      fs/fcntl.c
7092 F:      fs/locks.c
7093 F:      include/linux/fcntl.h
7094 F:      include/uapi/linux/fcntl.h
7095
7096 FILESYSTEM DIRECT ACCESS (DAX)
7097 M:      Dan Williams <dan.j.williams@intel.com>
7098 R:      Matthew Wilcox <willy@infradead.org>
7099 R:      Jan Kara <jack@suse.cz>
7100 L:      linux-fsdevel@vger.kernel.org
7101 L:      nvdimm@lists.linux.dev
7102 S:      Supported
7103 F:      fs/dax.c
7104 F:      include/linux/dax.h
7105 F:      include/trace/events/fs_dax.h
7106
7107 FILESYSTEMS (VFS and infrastructure)
7108 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7109 L:      linux-fsdevel@vger.kernel.org
7110 S:      Maintained
7111 F:      fs/*
7112 F:      include/linux/fs.h
7113 F:      include/linux/fs_types.h
7114 F:      include/uapi/linux/fs.h
7115 F:      include/uapi/linux/openat2.h
7116 X:      fs/io-wq.c
7117 X:      fs/io-wq.h
7118 X:      fs/io_uring.c
7119
7120 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7121 M:      Riku Voipio <riku.voipio@iki.fi>
7122 L:      linux-hwmon@vger.kernel.org
7123 S:      Maintained
7124 F:      drivers/hwmon/f75375s.c
7125 F:      include/linux/f75375s.h
7126
7127 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7128 M:      Clemens Ladisch <clemens@ladisch.de>
7129 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7130 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7131 S:      Maintained
7132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7133 F:      include/uapi/sound/firewire.h
7134 F:      sound/firewire/
7135
7136 FIREWIRE MEDIA DRIVERS (firedtv)
7137 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7138 L:      linux-media@vger.kernel.org
7139 L:      linux1394-devel@lists.sourceforge.net
7140 S:      Maintained
7141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7142 F:      drivers/media/firewire/
7143
7144 FIREWIRE SBP-2 TARGET
7145 M:      Chris Boot <bootc@bootc.net>
7146 L:      linux-scsi@vger.kernel.org
7147 L:      target-devel@vger.kernel.org
7148 L:      linux1394-devel@lists.sourceforge.net
7149 S:      Maintained
7150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7151 F:      drivers/target/sbp/
7152
7153 FIREWIRE SUBSYSTEM
7154 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7155 L:      linux1394-devel@lists.sourceforge.net
7156 S:      Maintained
7157 W:      http://ieee1394.wiki.kernel.org/
7158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7159 F:      drivers/firewire/
7160 F:      include/linux/firewire.h
7161 F:      include/uapi/linux/firewire*.h
7162 F:      tools/firewire/
7163
7164 FIRMWARE LOADER (request_firmware)
7165 M:      Luis Chamberlain <mcgrof@kernel.org>
7166 L:      linux-kernel@vger.kernel.org
7167 S:      Maintained
7168 F:      Documentation/firmware_class/
7169 F:      drivers/base/firmware_loader/
7170 F:      include/linux/firmware.h
7171
7172 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
7173 M:      Joshua Morris <josh.h.morris@us.ibm.com>
7174 M:      Philip Kelleher <pjk1939@linux.ibm.com>
7175 S:      Maintained
7176 F:      drivers/block/rsxx/
7177
7178 FLEXTIMER FTM-QUADDEC DRIVER
7179 M:      Patrick Havelange <patrick.havelange@essensium.com>
7180 L:      linux-iio@vger.kernel.org
7181 S:      Maintained
7182 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
7183 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7184 F:      drivers/counter/ftm-quaddec.c
7185
7186 FLOPPY DRIVER
7187 M:      Denis Efremov <efremov@linux.com>
7188 L:      linux-block@vger.kernel.org
7189 S:      Odd Fixes
7190 F:      drivers/block/floppy.c
7191
7192 FLYSKY FSIA6B RC RECEIVER
7193 M:      Markus Koch <markus@notsyncing.net>
7194 L:      linux-input@vger.kernel.org
7195 S:      Maintained
7196 F:      drivers/input/joystick/fsia6b.c
7197
7198 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7199 M:      Geoffrey D. Bennett <g@b4.vu>
7200 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7201 S:      Maintained
7202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7203 F:      sound/usb/mixer_scarlett_gen2.c
7204
7205 FORCEDETH GIGABIT ETHERNET DRIVER
7206 M:      Rain River <rain.1986.08.12@gmail.com>
7207 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7208 L:      netdev@vger.kernel.org
7209 S:      Maintained
7210 F:      drivers/net/ethernet/nvidia/*
7211
7212 FPGA DFL DRIVERS
7213 M:      Wu Hao <hao.wu@intel.com>
7214 R:      Tom Rix <trix@redhat.com>
7215 L:      linux-fpga@vger.kernel.org
7216 S:      Maintained
7217 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7218 F:      Documentation/fpga/dfl.rst
7219 F:      drivers/fpga/dfl*
7220 F:      drivers/uio/uio_dfl.c
7221 F:      include/linux/dfl.h
7222 F:      include/uapi/linux/fpga-dfl.h
7223
7224 FPGA MANAGER FRAMEWORK
7225 M:      Moritz Fischer <mdf@kernel.org>
7226 R:      Tom Rix <trix@redhat.com>
7227 L:      linux-fpga@vger.kernel.org
7228 S:      Maintained
7229 W:      http://www.rocketboards.org
7230 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7232 F:      Documentation/devicetree/bindings/fpga/
7233 F:      Documentation/driver-api/fpga/
7234 F:      Documentation/fpga/
7235 F:      drivers/fpga/
7236 F:      include/linux/fpga/
7237
7238 FPU EMULATOR
7239 M:      Bill Metzenthen <billm@melbpc.org.au>
7240 S:      Maintained
7241 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7242 F:      arch/x86/math-emu/
7243
7244 FRAMEBUFFER LAYER
7245 L:      dri-devel@lists.freedesktop.org
7246 L:      linux-fbdev@vger.kernel.org
7247 S:      Orphan
7248 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7249 T:      git git://anongit.freedesktop.org/drm/drm-misc
7250 F:      Documentation/fb/
7251 F:      drivers/video/
7252 F:      include/linux/fb.h
7253 F:      include/uapi/linux/fb.h
7254 F:      include/uapi/video/
7255 F:      include/video/
7256
7257 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7258 M:      Horia Geantă <horia.geanta@nxp.com>
7259 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7260 L:      linux-crypto@vger.kernel.org
7261 S:      Maintained
7262 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7263 F:      drivers/crypto/caam/
7264
7265 FREESCALE COLDFIRE M5441X MMC DRIVER
7266 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7267 L:      linux-mmc@vger.kernel.org
7268 S:      Maintained
7269 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7270 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7271
7272 FREESCALE DIU FRAMEBUFFER DRIVER
7273 M:      Timur Tabi <timur@kernel.org>
7274 L:      linux-fbdev@vger.kernel.org
7275 S:      Maintained
7276 F:      drivers/video/fbdev/fsl-diu-fb.*
7277
7278 FREESCALE DMA DRIVER
7279 M:      Li Yang <leoyang.li@nxp.com>
7280 M:      Zhang Wei <zw@zh-kernel.org>
7281 L:      linuxppc-dev@lists.ozlabs.org
7282 S:      Maintained
7283 F:      drivers/dma/fsldma.*
7284
7285 FREESCALE DSPI DRIVER
7286 M:      Vladimir Oltean <olteanv@gmail.com>
7287 L:      linux-spi@vger.kernel.org
7288 S:      Maintained
7289 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7290 F:      drivers/spi/spi-fsl-dspi.c
7291 F:      include/linux/spi/spi-fsl-dspi.h
7292
7293 FREESCALE ENETC ETHERNET DRIVERS
7294 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7295 L:      netdev@vger.kernel.org
7296 S:      Maintained
7297 F:      drivers/net/ethernet/freescale/enetc/
7298
7299 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7300 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7301 L:      netdev@vger.kernel.org
7302 S:      Maintained
7303 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7304 F:      drivers/net/ethernet/freescale/gianfar*
7305
7306 FREESCALE GPMI NAND DRIVER
7307 M:      Han Xu <han.xu@nxp.com>
7308 L:      linux-mtd@lists.infradead.org
7309 S:      Maintained
7310 F:      drivers/mtd/nand/raw/gpmi-nand/*
7311
7312 FREESCALE I2C CPM DRIVER
7313 M:      Jochen Friedrich <jochen@scram.de>
7314 L:      linuxppc-dev@lists.ozlabs.org
7315 L:      linux-i2c@vger.kernel.org
7316 S:      Maintained
7317 F:      drivers/i2c/busses/i2c-cpm.c
7318
7319 FREESCALE IMX / MXC FEC DRIVER
7320 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7321 L:      netdev@vger.kernel.org
7322 S:      Maintained
7323 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
7324 F:      drivers/net/ethernet/freescale/fec.h
7325 F:      drivers/net/ethernet/freescale/fec_main.c
7326 F:      drivers/net/ethernet/freescale/fec_ptp.c
7327
7328 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7329 M:      Sascha Hauer <s.hauer@pengutronix.de>
7330 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7331 L:      linux-fbdev@vger.kernel.org
7332 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7333 S:      Maintained
7334 F:      drivers/video/fbdev/imxfb.c
7335 F:      include/linux/platform_data/video-imxfb.h
7336
7337 FREESCALE IMX DDR PMU DRIVER
7338 M:      Frank Li <Frank.li@nxp.com>
7339 L:      linux-arm-kernel@lists.infradead.org
7340 S:      Maintained
7341 F:      Documentation/admin-guide/perf/imx-ddr.rst
7342 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7343 F:      drivers/perf/fsl_imx8_ddr_perf.c
7344
7345 FREESCALE IMX I2C DRIVER
7346 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7347 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7348 L:      linux-i2c@vger.kernel.org
7349 S:      Maintained
7350 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7351 F:      drivers/i2c/busses/i2c-imx.c
7352
7353 FREESCALE IMX LPI2C DRIVER
7354 M:      Dong Aisheng <aisheng.dong@nxp.com>
7355 L:      linux-i2c@vger.kernel.org
7356 L:      linux-imx@nxp.com
7357 S:      Maintained
7358 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7359 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7360
7361 FREESCALE MPC I2C DRIVER
7362 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7363 L:      linux-i2c@vger.kernel.org
7364 S:      Maintained
7365 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7366 F:      drivers/i2c/busses/i2c-mpc.c
7367
7368 FREESCALE QORIQ DPAA ETHERNET DRIVER
7369 M:      Madalin Bucur <madalin.bucur@nxp.com>
7370 L:      netdev@vger.kernel.org
7371 S:      Maintained
7372 F:      drivers/net/ethernet/freescale/dpaa
7373
7374 FREESCALE QORIQ DPAA FMAN DRIVER
7375 M:      Madalin Bucur <madalin.bucur@nxp.com>
7376 L:      netdev@vger.kernel.org
7377 S:      Maintained
7378 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7379 F:      drivers/net/ethernet/freescale/fman
7380
7381 FREESCALE QORIQ PTP CLOCK DRIVER
7382 M:      Yangbo Lu <yangbo.lu@nxp.com>
7383 L:      netdev@vger.kernel.org
7384 S:      Maintained
7385 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7386 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7387 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7388 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7389 F:      drivers/ptp/ptp_qoriq.c
7390 F:      drivers/ptp/ptp_qoriq_debugfs.c
7391 F:      include/linux/fsl/ptp_qoriq.h
7392
7393 FREESCALE QUAD SPI DRIVER
7394 M:      Han Xu <han.xu@nxp.com>
7395 L:      linux-spi@vger.kernel.org
7396 S:      Maintained
7397 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7398 F:      drivers/spi/spi-fsl-qspi.c
7399
7400 FREESCALE QUICC ENGINE LIBRARY
7401 M:      Qiang Zhao <qiang.zhao@nxp.com>
7402 L:      linuxppc-dev@lists.ozlabs.org
7403 S:      Maintained
7404 F:      drivers/soc/fsl/qe/
7405 F:      include/soc/fsl/*qe*.h
7406 F:      include/soc/fsl/*ucc*.h
7407
7408 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7409 M:      Li Yang <leoyang.li@nxp.com>
7410 L:      netdev@vger.kernel.org
7411 L:      linuxppc-dev@lists.ozlabs.org
7412 S:      Maintained
7413 F:      drivers/net/ethernet/freescale/ucc_geth*
7414
7415 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7416 M:      Zhao Qiang <qiang.zhao@nxp.com>
7417 L:      netdev@vger.kernel.org
7418 L:      linuxppc-dev@lists.ozlabs.org
7419 S:      Maintained
7420 F:      drivers/net/wan/fsl_ucc_hdlc*
7421
7422 FREESCALE QUICC ENGINE UCC UART DRIVER
7423 M:      Timur Tabi <timur@kernel.org>
7424 L:      linuxppc-dev@lists.ozlabs.org
7425 S:      Maintained
7426 F:      drivers/tty/serial/ucc_uart.c
7427
7428 FREESCALE SOC DRIVERS
7429 M:      Li Yang <leoyang.li@nxp.com>
7430 L:      linuxppc-dev@lists.ozlabs.org
7431 L:      linux-arm-kernel@lists.infradead.org
7432 S:      Maintained
7433 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7434 F:      Documentation/devicetree/bindings/soc/fsl/
7435 F:      drivers/soc/fsl/
7436 F:      include/linux/fsl/
7437
7438 FREESCALE SOC FS_ENET DRIVER
7439 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7440 L:      linuxppc-dev@lists.ozlabs.org
7441 L:      netdev@vger.kernel.org
7442 S:      Maintained
7443 F:      drivers/net/ethernet/freescale/fs_enet/
7444 F:      include/linux/fs_enet_pd.h
7445
7446 FREESCALE SOC SOUND DRIVERS
7447 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7448 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7449 R:      Fabio Estevam <festevam@gmail.com>
7450 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7451 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7452 L:      linuxppc-dev@lists.ozlabs.org
7453 S:      Maintained
7454 F:      sound/soc/fsl/fsl*
7455 F:      sound/soc/fsl/imx*
7456 F:      sound/soc/fsl/mpc8610_hpcd.c
7457
7458 FREESCALE USB PERIPHERAL DRIVERS
7459 M:      Li Yang <leoyang.li@nxp.com>
7460 L:      linux-usb@vger.kernel.org
7461 L:      linuxppc-dev@lists.ozlabs.org
7462 S:      Maintained
7463 F:      drivers/usb/gadget/udc/fsl*
7464
7465 FREESCALE USB PHY DRIVER
7466 M:      Ran Wang <ran.wang_1@nxp.com>
7467 L:      linux-usb@vger.kernel.org
7468 L:      linuxppc-dev@lists.ozlabs.org
7469 S:      Maintained
7470 F:      drivers/usb/phy/phy-fsl-usb*
7471
7472 FREEVXFS FILESYSTEM
7473 M:      Christoph Hellwig <hch@infradead.org>
7474 S:      Maintained
7475 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7476 F:      fs/freevxfs/
7477
7478 FREEZER
7479 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7480 M:      Pavel Machek <pavel@ucw.cz>
7481 L:      linux-pm@vger.kernel.org
7482 S:      Supported
7483 F:      Documentation/power/freezing-of-tasks.rst
7484 F:      include/linux/freezer.h
7485 F:      kernel/freezer.c
7486
7487 FRONTSWAP API
7488 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7489 L:      linux-kernel@vger.kernel.org
7490 S:      Maintained
7491 F:      include/linux/frontswap.h
7492 F:      mm/frontswap.c
7493
7494 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7495 M:      David Howells <dhowells@redhat.com>
7496 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7497 S:      Supported
7498 F:      Documentation/filesystems/caching/
7499 F:      fs/fscache/
7500 F:      include/linux/fscache*.h
7501
7502 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7503 M:      Theodore Y. Ts'o <tytso@mit.edu>
7504 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7505 M:      Eric Biggers <ebiggers@kernel.org>
7506 L:      linux-fscrypt@vger.kernel.org
7507 S:      Supported
7508 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7509 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7510 F:      Documentation/filesystems/fscrypt.rst
7511 F:      fs/crypto/
7512 F:      include/linux/fscrypt*.h
7513 F:      include/uapi/linux/fscrypt.h
7514
7515 FSI SUBSYSTEM
7516 M:      Jeremy Kerr <jk@ozlabs.org>
7517 M:      Joel Stanley <joel@jms.id.au>
7518 R:      Alistar Popple <alistair@popple.id.au>
7519 R:      Eddie James <eajames@linux.ibm.com>
7520 L:      linux-fsi@lists.ozlabs.org
7521 S:      Supported
7522 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7524 F:      drivers/fsi/
7525 F:      include/linux/fsi*.h
7526 F:      include/trace/events/fsi*.h
7527
7528 FSI-ATTACHED I2C DRIVER
7529 M:      Eddie James <eajames@linux.ibm.com>
7530 L:      linux-i2c@vger.kernel.org
7531 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7532 S:      Maintained
7533 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7534 F:      drivers/i2c/busses/i2c-fsi.c
7535
7536 FSI-ATTACHED SPI DRIVER
7537 M:      Eddie James <eajames@linux.ibm.com>
7538 L:      linux-spi@vger.kernel.org
7539 S:      Maintained
7540 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7541 F:      drivers/spi/spi-fsi.c
7542
7543 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7544 M:      Jan Kara <jack@suse.cz>
7545 R:      Amir Goldstein <amir73il@gmail.com>
7546 L:      linux-fsdevel@vger.kernel.org
7547 S:      Maintained
7548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7549 F:      fs/notify/
7550 F:      include/linux/fsnotify*.h
7551
7552 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7553 M:      Eric Biggers <ebiggers@kernel.org>
7554 M:      Theodore Y. Ts'o <tytso@mit.edu>
7555 L:      linux-fscrypt@vger.kernel.org
7556 S:      Supported
7557 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7558 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7559 F:      Documentation/filesystems/fsverity.rst
7560 F:      fs/verity/
7561 F:      include/linux/fsverity.h
7562 F:      include/uapi/linux/fsverity.h
7563
7564 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7565 M:      Michael Zaidman <michael.zaidman@gmail.com>
7566 L:      linux-i2c@vger.kernel.org
7567 L:      linux-input@vger.kernel.org
7568 S:      Maintained
7569 F:      drivers/hid/hid-ft260.c
7570
7571 FUJITSU LAPTOP EXTRAS
7572 M:      Jonathan Woithe <jwoithe@just42.net>
7573 L:      platform-driver-x86@vger.kernel.org
7574 S:      Maintained
7575 F:      drivers/platform/x86/fujitsu-laptop.c
7576
7577 FUJITSU M-5MO LS CAMERA ISP DRIVER
7578 M:      Kyungmin Park <kyungmin.park@samsung.com>
7579 M:      Heungjun Kim <riverful.kim@samsung.com>
7580 L:      linux-media@vger.kernel.org
7581 S:      Maintained
7582 F:      drivers/media/i2c/m5mols/
7583 F:      include/media/i2c/m5mols.h
7584
7585 FUJITSU TABLET EXTRAS
7586 M:      Robert Gerlach <khnz@gmx.de>
7587 L:      platform-driver-x86@vger.kernel.org
7588 S:      Maintained
7589 F:      drivers/platform/x86/fujitsu-tablet.c
7590
7591 FUSE: FILESYSTEM IN USERSPACE
7592 M:      Miklos Szeredi <miklos@szeredi.hu>
7593 L:      linux-fsdevel@vger.kernel.org
7594 S:      Maintained
7595 W:      https://github.com/libfuse/
7596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7597 F:      Documentation/filesystems/fuse.rst
7598 F:      fs/fuse/
7599 F:      include/uapi/linux/fuse.h
7600
7601 FUTEX SUBSYSTEM
7602 M:      Thomas Gleixner <tglx@linutronix.de>
7603 M:      Ingo Molnar <mingo@redhat.com>
7604 R:      Peter Zijlstra <peterz@infradead.org>
7605 R:      Darren Hart <dvhart@infradead.org>
7606 R:      Davidlohr Bueso <dave@stgolabs.net>
7607 L:      linux-kernel@vger.kernel.org
7608 S:      Maintained
7609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7610 F:      Documentation/locking/*futex*
7611 F:      include/asm-generic/futex.h
7612 F:      include/linux/futex.h
7613 F:      include/uapi/linux/futex.h
7614 F:      kernel/futex.c
7615 F:      tools/perf/bench/futex*
7616 F:      tools/testing/selftests/futex/
7617
7618 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7619 M:      Tim Harvey <tharvey@gateworks.com>
7620 M:      Robert Jones <rjones@gateworks.com>
7621 S:      Maintained
7622 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7623 F:      drivers/mfd/gateworks-gsc.c
7624 F:      include/linux/mfd/gsc.h
7625 F:      Documentation/hwmon/gsc-hwmon.rst
7626 F:      drivers/hwmon/gsc-hwmon.c
7627 F:      include/linux/platform_data/gsc_hwmon.h
7628
7629 GCC PLUGINS
7630 M:      Kees Cook <keescook@chromium.org>
7631 L:      linux-hardening@vger.kernel.org
7632 S:      Maintained
7633 F:      Documentation/kbuild/gcc-plugins.rst
7634 F:      scripts/Makefile.gcc-plugins
7635 F:      scripts/gcc-plugins/
7636
7637 GCOV BASED KERNEL PROFILING
7638 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7639 S:      Maintained
7640 F:      Documentation/dev-tools/gcov.rst
7641 F:      kernel/gcov/
7642
7643 GDB KERNEL DEBUGGING HELPER SCRIPTS
7644 M:      Jan Kiszka <jan.kiszka@siemens.com>
7645 M:      Kieran Bingham <kbingham@kernel.org>
7646 S:      Supported
7647 F:      scripts/gdb/
7648
7649 GEMINI CRYPTO DRIVER
7650 M:      Corentin Labbe <clabbe@baylibre.com>
7651 L:      linux-crypto@vger.kernel.org
7652 S:      Maintained
7653 F:      drivers/crypto/gemini/
7654
7655 GEMTEK FM RADIO RECEIVER DRIVER
7656 M:      Hans Verkuil <hverkuil@xs4all.nl>
7657 L:      linux-media@vger.kernel.org
7658 S:      Maintained
7659 W:      https://linuxtv.org
7660 T:      git git://linuxtv.org/media_tree.git
7661 F:      drivers/media/radio/radio-gemtek*
7662
7663 GENERIC ARCHITECTURE TOPOLOGY
7664 M:      Sudeep Holla <sudeep.holla@arm.com>
7665 L:      linux-kernel@vger.kernel.org
7666 S:      Maintained
7667 F:      drivers/base/arch_topology.c
7668 F:      include/linux/arch_topology.h
7669
7670 GENERIC ENTRY CODE
7671 M:      Thomas Gleixner <tglx@linutronix.de>
7672 M:      Peter Zijlstra <peterz@infradead.org>
7673 M:      Andy Lutomirski <luto@kernel.org>
7674 L:      linux-kernel@vger.kernel.org
7675 S:      Maintained
7676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7677 F:      include/linux/entry-common.h
7678 F:      include/linux/entry-kvm.h
7679 F:      kernel/entry/
7680
7681 GENERIC GPIO I2C DRIVER
7682 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7683 S:      Supported
7684 F:      drivers/i2c/busses/i2c-gpio.c
7685 F:      include/linux/platform_data/i2c-gpio.h
7686
7687 GENERIC GPIO I2C MULTIPLEXER DRIVER
7688 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7689 L:      linux-i2c@vger.kernel.org
7690 S:      Supported
7691 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7692 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7693 F:      include/linux/platform_data/i2c-mux-gpio.h
7694
7695 GENERIC HDLC (WAN) DRIVERS
7696 M:      Krzysztof Halasa <khc@pm.waw.pl>
7697 S:      Maintained
7698 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7699 F:      drivers/net/wan/c101.c
7700 F:      drivers/net/wan/hd6457*
7701 F:      drivers/net/wan/hdlc*
7702 F:      drivers/net/wan/n2.c
7703 F:      drivers/net/wan/pc300too.c
7704 F:      drivers/net/wan/pci200syn.c
7705 F:      drivers/net/wan/wanxl*
7706
7707 GENERIC INCLUDE/ASM HEADER FILES
7708 M:      Arnd Bergmann <arnd@arndb.de>
7709 L:      linux-arch@vger.kernel.org
7710 S:      Maintained
7711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7712 F:      include/asm-generic/
7713 F:      include/uapi/asm-generic/
7714
7715 GENERIC PHY FRAMEWORK
7716 M:      Kishon Vijay Abraham I <kishon@ti.com>
7717 M:      Vinod Koul <vkoul@kernel.org>
7718 L:      linux-phy@lists.infradead.org
7719 S:      Supported
7720 Q:      https://patchwork.kernel.org/project/linux-phy/list/
7721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7722 F:      Documentation/devicetree/bindings/phy/
7723 F:      drivers/phy/
7724 F:      include/linux/phy/
7725
7726 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7727 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7728 S:      Supported
7729 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7730
7731 GENERIC PM DOMAINS
7732 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7733 M:      Kevin Hilman <khilman@kernel.org>
7734 M:      Ulf Hansson <ulf.hansson@linaro.org>
7735 L:      linux-pm@vger.kernel.org
7736 S:      Supported
7737 F:      Documentation/devicetree/bindings/power/power?domain*
7738 F:      drivers/base/power/domain*.c
7739 F:      include/linux/pm_domain.h
7740
7741 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7742 M:      Eugen Hristev <eugen.hristev@microchip.com>
7743 L:      linux-input@vger.kernel.org
7744 S:      Maintained
7745 F:      drivers/input/touchscreen/resistive-adc-touch.c
7746
7747 GENERIC STRING LIBRARY
7748 R:      Andy Shevchenko <andy@kernel.org>
7749 S:      Maintained
7750 F:      lib/string.c
7751 F:      lib/string_helpers.c
7752 F:      lib/test_string.c
7753 F:      lib/test-string_helpers.c
7754
7755 GENERIC UIO DRIVER FOR PCI DEVICES
7756 M:      "Michael S. Tsirkin" <mst@redhat.com>
7757 L:      kvm@vger.kernel.org
7758 S:      Supported
7759 F:      drivers/uio/uio_pci_generic.c
7760
7761 GENERIC VDSO LIBRARY
7762 M:      Andy Lutomirski <luto@kernel.org>
7763 M:      Thomas Gleixner <tglx@linutronix.de>
7764 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7765 L:      linux-kernel@vger.kernel.org
7766 S:      Maintained
7767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7768 F:      include/asm-generic/vdso/vsyscall.h
7769 F:      include/vdso/
7770 F:      kernel/time/vsyscall.c
7771 F:      lib/vdso/
7772
7773 GENWQE (IBM Generic Workqueue Card)
7774 M:      Frank Haverkamp <haver@linux.ibm.com>
7775 S:      Supported
7776 F:      drivers/misc/genwqe/
7777
7778 GET_MAINTAINER SCRIPT
7779 M:      Joe Perches <joe@perches.com>
7780 S:      Maintained
7781 F:      scripts/get_maintainer.pl
7782
7783 GFS2 FILE SYSTEM
7784 M:      Bob Peterson <rpeterso@redhat.com>
7785 M:      Andreas Gruenbacher <agruenba@redhat.com>
7786 L:      cluster-devel@redhat.com
7787 S:      Supported
7788 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
7789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7790 F:      Documentation/filesystems/gfs2*
7791 F:      fs/gfs2/
7792 F:      include/uapi/linux/gfs2_ondisk.h
7793
7794 GIGABYTE WMI DRIVER
7795 M:      Thomas Weißschuh <thomas@weissschuh.net>
7796 L:      platform-driver-x86@vger.kernel.org
7797 S:      Maintained
7798 F:      drivers/platform/x86/gigabyte-wmi.c
7799
7800 GNSS SUBSYSTEM
7801 M:      Johan Hovold <johan@kernel.org>
7802 S:      Maintained
7803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7804 F:      Documentation/ABI/testing/sysfs-class-gnss
7805 F:      Documentation/devicetree/bindings/gnss/
7806 F:      drivers/gnss/
7807 F:      include/linux/gnss.h
7808
7809 GO7007 MPEG CODEC
7810 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7811 L:      linux-media@vger.kernel.org
7812 S:      Maintained
7813 F:      drivers/media/usb/go7007/
7814
7815 GOODIX TOUCHSCREEN
7816 M:      Bastien Nocera <hadess@hadess.net>
7817 L:      linux-input@vger.kernel.org
7818 S:      Maintained
7819 F:      drivers/input/touchscreen/goodix.c
7820
7821 GOOGLE ETHERNET DRIVERS
7822 M:      Catherine Sullivan <csully@google.com>
7823 R:      Sagi Shahar <sagis@google.com>
7824 R:      Jon Olson <jonolson@google.com>
7825 L:      netdev@vger.kernel.org
7826 S:      Supported
7827 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
7828 F:      drivers/net/ethernet/google
7829
7830 GPD POCKET FAN DRIVER
7831 M:      Hans de Goede <hdegoede@redhat.com>
7832 L:      platform-driver-x86@vger.kernel.org
7833 S:      Maintained
7834 F:      drivers/platform/x86/gpd-pocket-fan.c
7835
7836 GPIO ACPI SUPPORT
7837 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7838 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7839 L:      linux-gpio@vger.kernel.org
7840 L:      linux-acpi@vger.kernel.org
7841 S:      Maintained
7842 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
7843 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7844 F:      drivers/gpio/gpiolib-acpi.c
7845 F:      drivers/gpio/gpiolib-acpi.h
7846
7847 GPIO AGGREGATOR
7848 M:      Geert Uytterhoeven <geert+renesas@glider.be>
7849 L:      linux-gpio@vger.kernel.org
7850 S:      Supported
7851 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7852 F:      drivers/gpio/gpio-aggregator.c
7853
7854 GPIO IR Transmitter
7855 M:      Sean Young <sean@mess.org>
7856 L:      linux-media@vger.kernel.org
7857 S:      Maintained
7858 F:      drivers/media/rc/gpio-ir-tx.c
7859
7860 GPIO MOCKUP DRIVER
7861 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7862 L:      linux-gpio@vger.kernel.org
7863 S:      Maintained
7864 F:      drivers/gpio/gpio-mockup.c
7865 F:      tools/testing/selftests/gpio/
7866
7867 GPIO REGMAP
7868 R:      Michael Walle <michael@walle.cc>
7869 S:      Maintained
7870 F:      drivers/gpio/gpio-regmap.c
7871 F:      include/linux/gpio/regmap.h
7872
7873 GPIO SUBSYSTEM
7874 M:      Linus Walleij <linus.walleij@linaro.org>
7875 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7876 L:      linux-gpio@vger.kernel.org
7877 S:      Maintained
7878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7879 F:      Documentation/ABI/obsolete/sysfs-gpio
7880 F:      Documentation/ABI/testing/gpio-cdev
7881 F:      Documentation/admin-guide/gpio/
7882 F:      Documentation/devicetree/bindings/gpio/
7883 F:      Documentation/driver-api/gpio/
7884 F:      drivers/gpio/
7885 F:      include/asm-generic/gpio.h
7886 F:      include/linux/gpio.h
7887 F:      include/linux/gpio/
7888 F:      include/linux/of_gpio.h
7889 F:      include/uapi/linux/gpio.h
7890 F:      tools/gpio/
7891
7892 GRE DEMULTIPLEXER DRIVER
7893 M:      Dmitry Kozlov <xeb@mail.ru>
7894 L:      netdev@vger.kernel.org
7895 S:      Maintained
7896 F:      include/net/gre.h
7897 F:      net/ipv4/gre_demux.c
7898 F:      net/ipv4/gre_offload.c
7899
7900 GRETH 10/100/1G Ethernet MAC device driver
7901 M:      Andreas Larsson <andreas@gaisler.com>
7902 L:      netdev@vger.kernel.org
7903 S:      Maintained
7904 F:      drivers/net/ethernet/aeroflex/
7905
7906 GREYBUS AUDIO PROTOCOLS DRIVERS
7907 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7908 M:      Mark Greer <mgreer@animalcreek.com>
7909 S:      Maintained
7910 F:      drivers/staging/greybus/audio_apbridgea.c
7911 F:      drivers/staging/greybus/audio_apbridgea.h
7912 F:      drivers/staging/greybus/audio_codec.c
7913 F:      drivers/staging/greybus/audio_codec.h
7914 F:      drivers/staging/greybus/audio_gb.c
7915 F:      drivers/staging/greybus/audio_manager.c
7916 F:      drivers/staging/greybus/audio_manager.h
7917 F:      drivers/staging/greybus/audio_manager_module.c
7918 F:      drivers/staging/greybus/audio_manager_private.h
7919 F:      drivers/staging/greybus/audio_manager_sysfs.c
7920 F:      drivers/staging/greybus/audio_module.c
7921 F:      drivers/staging/greybus/audio_topology.c
7922
7923 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7924 M:      Viresh Kumar <vireshk@kernel.org>
7925 S:      Maintained
7926 F:      drivers/staging/greybus/authentication.c
7927 F:      drivers/staging/greybus/bootrom.c
7928 F:      drivers/staging/greybus/firmware.h
7929 F:      drivers/staging/greybus/fw-core.c
7930 F:      drivers/staging/greybus/fw-download.c
7931 F:      drivers/staging/greybus/fw-management.c
7932 F:      drivers/staging/greybus/greybus_authentication.h
7933 F:      drivers/staging/greybus/greybus_firmware.h
7934 F:      drivers/staging/greybus/hid.c
7935 F:      drivers/staging/greybus/i2c.c
7936 F:      drivers/staging/greybus/spi.c
7937 F:      drivers/staging/greybus/spilib.c
7938 F:      drivers/staging/greybus/spilib.h
7939
7940 GREYBUS LOOPBACK DRIVER
7941 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7942 S:      Maintained
7943 F:      drivers/staging/greybus/loopback.c
7944
7945 GREYBUS PLATFORM DRIVERS
7946 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7947 S:      Maintained
7948 F:      drivers/staging/greybus/arche-apb-ctrl.c
7949 F:      drivers/staging/greybus/arche-platform.c
7950 F:      drivers/staging/greybus/arche_platform.h
7951
7952 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7953 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7954 S:      Maintained
7955 F:      drivers/staging/greybus/gpio.c
7956 F:      drivers/staging/greybus/light.c
7957 F:      drivers/staging/greybus/power_supply.c
7958 F:      drivers/staging/greybus/sdio.c
7959 F:      drivers/staging/greybus/spi.c
7960 F:      drivers/staging/greybus/spilib.c
7961
7962 GREYBUS SUBSYSTEM
7963 M:      Johan Hovold <johan@kernel.org>
7964 M:      Alex Elder <elder@kernel.org>
7965 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7966 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7967 S:      Maintained
7968 F:      drivers/greybus/
7969 F:      drivers/staging/greybus/
7970 F:      include/linux/greybus.h
7971 F:      include/linux/greybus/
7972
7973 GREYBUS UART PROTOCOLS DRIVERS
7974 M:      David Lin <dtwlin@gmail.com>
7975 S:      Maintained
7976 F:      drivers/staging/greybus/log.c
7977 F:      drivers/staging/greybus/uart.c
7978
7979 GS1662 VIDEO SERIALIZER
7980 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7981 L:      linux-media@vger.kernel.org
7982 S:      Maintained
7983 T:      git git://linuxtv.org/media_tree.git
7984 F:      drivers/media/spi/gs1662.c
7985
7986 GSPCA FINEPIX SUBDRIVER
7987 M:      Frank Zago <frank@zago.net>
7988 L:      linux-media@vger.kernel.org
7989 S:      Maintained
7990 T:      git git://linuxtv.org/media_tree.git
7991 F:      drivers/media/usb/gspca/finepix.c
7992
7993 GSPCA GL860 SUBDRIVER
7994 M:      Olivier Lorin <o.lorin@laposte.net>
7995 L:      linux-media@vger.kernel.org
7996 S:      Maintained
7997 T:      git git://linuxtv.org/media_tree.git
7998 F:      drivers/media/usb/gspca/gl860/
7999
8000 GSPCA M5602 SUBDRIVER
8001 M:      Erik Andren <erik.andren@gmail.com>
8002 L:      linux-media@vger.kernel.org
8003 S:      Maintained
8004 T:      git git://linuxtv.org/media_tree.git
8005 F:      drivers/media/usb/gspca/m5602/
8006
8007 GSPCA PAC207 SONIXB SUBDRIVER
8008 M:      Hans Verkuil <hverkuil@xs4all.nl>
8009 L:      linux-media@vger.kernel.org
8010 S:      Odd Fixes
8011 T:      git git://linuxtv.org/media_tree.git
8012 F:      drivers/media/usb/gspca/pac207.c
8013
8014 GSPCA SN9C20X SUBDRIVER
8015 M:      Brian Johnson <brijohn@gmail.com>
8016 L:      linux-media@vger.kernel.org
8017 S:      Maintained
8018 T:      git git://linuxtv.org/media_tree.git
8019 F:      drivers/media/usb/gspca/sn9c20x.c
8020
8021 GSPCA T613 SUBDRIVER
8022 M:      Leandro Costantino <lcostantino@gmail.com>
8023 L:      linux-media@vger.kernel.org
8024 S:      Maintained
8025 T:      git git://linuxtv.org/media_tree.git
8026 F:      drivers/media/usb/gspca/t613.c
8027
8028 GSPCA USB WEBCAM DRIVER
8029 M:      Hans Verkuil <hverkuil@xs4all.nl>
8030 L:      linux-media@vger.kernel.org
8031 S:      Odd Fixes
8032 T:      git git://linuxtv.org/media_tree.git
8033 F:      drivers/media/usb/gspca/
8034
8035 GTP (GPRS Tunneling Protocol)
8036 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8037 M:      Harald Welte <laforge@gnumonks.org>
8038 L:      osmocom-net-gprs@lists.osmocom.org
8039 S:      Maintained
8040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8041 F:      drivers/net/gtp.c
8042
8043 GUID PARTITION TABLE (GPT)
8044 M:      Davidlohr Bueso <dave@stgolabs.net>
8045 L:      linux-efi@vger.kernel.org
8046 S:      Maintained
8047 F:      block/partitions/efi.*
8048
8049 H8/300 ARCHITECTURE
8050 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
8051 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8052 S:      Maintained
8053 W:      http://uclinux-h8.sourceforge.jp
8054 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8055 F:      arch/h8300/
8056 F:      drivers/clk/h8300/
8057 F:      drivers/clocksource/h8300_*.c
8058 F:      drivers/irqchip/irq-renesas-h8*.c
8059
8060 HABANALABS PCI DRIVER
8061 M:      Oded Gabbay <ogabbay@kernel.org>
8062 S:      Supported
8063 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8064 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8065 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8066 F:      drivers/misc/habanalabs/
8067 F:      include/uapi/misc/habanalabs.h
8068
8069 HACKRF MEDIA DRIVER
8070 M:      Antti Palosaari <crope@iki.fi>
8071 L:      linux-media@vger.kernel.org
8072 S:      Maintained
8073 W:      https://linuxtv.org
8074 W:      http://palosaari.fi/linux/
8075 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8076 T:      git git://linuxtv.org/anttip/media_tree.git
8077 F:      drivers/media/usb/hackrf/
8078
8079 HANTRO VPU CODEC DRIVER
8080 M:      Ezequiel Garcia <ezequiel@collabora.com>
8081 M:      Philipp Zabel <p.zabel@pengutronix.de>
8082 L:      linux-media@vger.kernel.org
8083 L:      linux-rockchip@lists.infradead.org
8084 S:      Maintained
8085 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8086 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8087 F:      drivers/staging/media/hantro/
8088
8089 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8090 M:      Frank Seidel <frank@f-seidel.de>
8091 L:      platform-driver-x86@vger.kernel.org
8092 S:      Maintained
8093 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8094 F:      drivers/platform/x86/hdaps.c
8095
8096 HARDWARE MONITORING
8097 M:      Jean Delvare <jdelvare@suse.com>
8098 M:      Guenter Roeck <linux@roeck-us.net>
8099 L:      linux-hwmon@vger.kernel.org
8100 S:      Maintained
8101 W:      http://hwmon.wiki.kernel.org/
8102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8103 F:      Documentation/devicetree/bindings/hwmon/
8104 F:      Documentation/hwmon/
8105 F:      drivers/hwmon/
8106 F:      include/linux/hwmon*.h
8107 F:      include/trace/events/hwmon*.h
8108 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8109
8110 HARDWARE RANDOM NUMBER GENERATOR CORE
8111 M:      Matt Mackall <mpm@selenic.com>
8112 M:      Herbert Xu <herbert@gondor.apana.org.au>
8113 L:      linux-crypto@vger.kernel.org
8114 S:      Odd fixes
8115 F:      Documentation/admin-guide/hw_random.rst
8116 F:      Documentation/devicetree/bindings/rng/
8117 F:      drivers/char/hw_random/
8118 F:      include/linux/hw_random.h
8119
8120 HARDWARE SPINLOCK CORE
8121 M:      Ohad Ben-Cohen <ohad@wizery.com>
8122 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8123 R:      Baolin Wang <baolin.wang7@gmail.com>
8124 L:      linux-remoteproc@vger.kernel.org
8125 S:      Maintained
8126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8127 F:      Documentation/devicetree/bindings/hwlock/
8128 F:      Documentation/locking/hwspinlock.rst
8129 F:      drivers/hwspinlock/
8130 F:      include/linux/hwspinlock.h
8131
8132 HARDWARE TRACING FACILITIES
8133 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8134 S:      Maintained
8135 F:      drivers/hwtracing/
8136
8137 HARMONY SOUND DRIVER
8138 L:      linux-parisc@vger.kernel.org
8139 S:      Maintained
8140 F:      sound/parisc/harmony.*
8141
8142 HDPVR USB VIDEO ENCODER DRIVER
8143 M:      Hans Verkuil <hverkuil@xs4all.nl>
8144 L:      linux-media@vger.kernel.org
8145 S:      Odd Fixes
8146 W:      https://linuxtv.org
8147 T:      git git://linuxtv.org/media_tree.git
8148 F:      drivers/media/usb/hdpvr/
8149
8150 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8151 M:      Matt Hsiao <matt.hsiao@hpe.com>
8152 S:      Supported
8153 F:      drivers/misc/hpilo.[ch]
8154
8155 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8156 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8157 S:      Supported
8158 F:      Documentation/watchdog/hpwdt.rst
8159 F:      drivers/watchdog/hpwdt.c
8160
8161 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8162 M:      Don Brace <don.brace@microchip.com>
8163 L:      storagedev@microchip.com
8164 L:      linux-scsi@vger.kernel.org
8165 S:      Supported
8166 F:      Documentation/scsi/hpsa.rst
8167 F:      drivers/scsi/hpsa*.[ch]
8168 F:      include/linux/cciss*.h
8169 F:      include/uapi/linux/cciss*.h
8170
8171 HFI1 DRIVER
8172 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8173 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8174 L:      linux-rdma@vger.kernel.org
8175 S:      Supported
8176 F:      drivers/infiniband/hw/hfi1
8177
8178 HFS FILESYSTEM
8179 L:      linux-fsdevel@vger.kernel.org
8180 S:      Orphan
8181 F:      Documentation/filesystems/hfs.rst
8182 F:      fs/hfs/
8183
8184 HFSPLUS FILESYSTEM
8185 L:      linux-fsdevel@vger.kernel.org
8186 S:      Orphan
8187 F:      Documentation/filesystems/hfsplus.rst
8188 F:      fs/hfsplus/
8189
8190 HGA FRAMEBUFFER DRIVER
8191 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8192 L:      linux-nvidia@lists.surfsouth.com
8193 S:      Maintained
8194 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8195 F:      drivers/video/fbdev/hgafb.c
8196
8197 HIBERNATION (aka Software Suspend, aka swsusp)
8198 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
8199 M:      Pavel Machek <pavel@ucw.cz>
8200 L:      linux-pm@vger.kernel.org
8201 S:      Supported
8202 B:      https://bugzilla.kernel.org
8203 F:      arch/*/include/asm/suspend*.h
8204 F:      arch/x86/power/
8205 F:      drivers/base/power/
8206 F:      include/linux/freezer.h
8207 F:      include/linux/pm.h
8208 F:      include/linux/suspend.h
8209 F:      kernel/power/
8210
8211 HID CORE LAYER
8212 M:      Jiri Kosina <jikos@kernel.org>
8213 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8214 L:      linux-input@vger.kernel.org
8215 S:      Maintained
8216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8217 F:      drivers/hid/
8218 F:      include/linux/hid*
8219 F:      include/uapi/linux/hid*
8220
8221 HID PLAYSTATION DRIVER
8222 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8223 L:      linux-input@vger.kernel.org
8224 S:      Supported
8225 F:      drivers/hid/hid-playstation.c
8226
8227 HID SENSOR HUB DRIVERS
8228 M:      Jiri Kosina <jikos@kernel.org>
8229 M:      Jonathan Cameron <jic23@kernel.org>
8230 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8231 L:      linux-input@vger.kernel.org
8232 L:      linux-iio@vger.kernel.org
8233 S:      Maintained
8234 F:      Documentation/hid/hid-sensor*
8235 F:      drivers/hid/hid-sensor-*
8236 F:      drivers/iio/*/hid-*
8237 F:      include/linux/hid-sensor-*
8238
8239 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8240 M:      Thomas Gleixner <tglx@linutronix.de>
8241 L:      linux-kernel@vger.kernel.org
8242 S:      Maintained
8243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8244 F:      Documentation/timers/
8245 F:      include/linux/clockchips.h
8246 F:      include/linux/hrtimer.h
8247 F:      kernel/time/clockevents.c
8248 F:      kernel/time/hrtimer.c
8249 F:      kernel/time/timer_*.c
8250
8251 HIGH-SPEED SCC DRIVER FOR AX.25
8252 L:      linux-hams@vger.kernel.org
8253 S:      Orphan
8254 F:      drivers/net/hamradio/dmascc.c
8255 F:      drivers/net/hamradio/scc.c
8256
8257 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8258 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8259 S:      Supported
8260 W:      http://www.highpoint-tech.com
8261 F:      Documentation/scsi/hptiop.rst
8262 F:      drivers/scsi/hptiop.c
8263
8264 HIPPI
8265 M:      Jes Sorensen <jes@trained-monkey.org>
8266 L:      linux-hippi@sunsite.dk
8267 S:      Maintained
8268 F:      drivers/net/hippi/
8269 F:      include/linux/hippidevice.h
8270 F:      include/uapi/linux/if_hippi.h
8271 F:      net/802/hippi.c
8272
8273 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8274 M:      Kurt Kanzenbach <kurt@linutronix.de>
8275 L:      netdev@vger.kernel.org
8276 S:      Maintained
8277 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8278 F:      drivers/net/dsa/hirschmann/*
8279 F:      include/linux/platform_data/hirschmann-hellcreek.h
8280 F:      net/dsa/tag_hellcreek.c
8281
8282 HISILICON DMA DRIVER
8283 M:      Zhou Wang <wangzhou1@hisilicon.com>
8284 L:      dmaengine@vger.kernel.org
8285 S:      Maintained
8286 F:      drivers/dma/hisi_dma.c
8287
8288 HISILICON GPIO DRIVER
8289 M:      Luo Jiaxing <luojiaxing@huawei.com>
8290 L:      linux-gpio@vger.kernel.org
8291 S:      Maintained
8292 F:      drivers/gpio/gpio-hisi.c
8293
8294 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8295 M:      Zaibo Xu <xuzaibo@huawei.com>
8296 L:      linux-crypto@vger.kernel.org
8297 S:      Maintained
8298 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8299 F:      drivers/crypto/hisilicon/hpre/hpre.h
8300 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8301 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8302
8303 HISILICON I2C CONTROLLER DRIVER
8304 M:      Yicong Yang <yangyicong@hisilicon.com>
8305 L:      linux-i2c@vger.kernel.org
8306 S:      Maintained
8307 W:      https://www.hisilicon.com
8308 F:      drivers/i2c/busses/i2c-hisi.c
8309
8310 HISILICON LPC BUS DRIVER
8311 M:      john.garry@huawei.com
8312 S:      Maintained
8313 W:      http://www.hisilicon.com
8314 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8315 F:      drivers/bus/hisi_lpc.c
8316
8317 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8318 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8319 M:      Salil Mehta <salil.mehta@huawei.com>
8320 L:      netdev@vger.kernel.org
8321 S:      Maintained
8322 W:      http://www.hisilicon.com
8323 F:      drivers/net/ethernet/hisilicon/hns3/
8324
8325 HISILICON NETWORK SUBSYSTEM DRIVER
8326 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8327 M:      Salil Mehta <salil.mehta@huawei.com>
8328 L:      netdev@vger.kernel.org
8329 S:      Maintained
8330 W:      http://www.hisilicon.com
8331 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8332 F:      drivers/net/ethernet/hisilicon/
8333
8334 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8335 M:      John Stultz <john.stultz@linaro.org>
8336 L:      linux-kernel@vger.kernel.org
8337 S:      Maintained
8338 F:      drivers/misc/hisi_hikey_usb.c
8339 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8340
8341 HISILICON PMU DRIVER
8342 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8343 S:      Supported
8344 W:      http://www.hisilicon.com
8345 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8346 F:      drivers/perf/hisilicon
8347
8348 HISILICON QM AND ZIP Controller DRIVER
8349 M:      Zhou Wang <wangzhou1@hisilicon.com>
8350 L:      linux-crypto@vger.kernel.org
8351 S:      Maintained
8352 F:      Documentation/ABI/testing/debugfs-hisi-zip
8353 F:      drivers/crypto/hisilicon/qm.c
8354 F:      drivers/crypto/hisilicon/qm.h
8355 F:      drivers/crypto/hisilicon/sgl.c
8356 F:      drivers/crypto/hisilicon/zip/
8357
8358 HISILICON ROCE DRIVER
8359 M:      Lijun Ou <oulijun@huawei.com>
8360 M:      Weihang Li <liweihang@huawei.com>
8361 L:      linux-rdma@vger.kernel.org
8362 S:      Maintained
8363 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8364 F:      drivers/infiniband/hw/hns/
8365
8366 HISILICON SAS Controller
8367 M:      John Garry <john.garry@huawei.com>
8368 S:      Supported
8369 W:      http://www.hisilicon.com
8370 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8371 F:      drivers/scsi/hisi_sas/
8372
8373 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8374 M:      Zaibo Xu <xuzaibo@huawei.com>
8375 L:      linux-crypto@vger.kernel.org
8376 S:      Maintained
8377 F:      Documentation/ABI/testing/debugfs-hisi-sec
8378 F:      drivers/crypto/hisilicon/sec2/sec.h
8379 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8380 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8381 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8382
8383 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8384 M:      Jay Fang <f.fangjian@huawei.com>
8385 L:      linux-spi@vger.kernel.org
8386 S:      Maintained
8387 W:      http://www.hisilicon.com
8388 F:      drivers/spi/spi-hisi-kunpeng.c
8389
8390 HISILICON STAGING DRIVERS FOR HIKEY 960/970
8391 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8392 S:      Maintained
8393 F:      drivers/staging/hikey9xx/
8394
8395 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8396 M:      Zaibo Xu <xuzaibo@huawei.com>
8397 S:      Maintained
8398 F:      drivers/crypto/hisilicon/trng/trng.c
8399
8400 HISILICON V3XX SPI NOR FLASH Controller Driver
8401 M:      John Garry <john.garry@huawei.com>
8402 S:      Maintained
8403 W:      http://www.hisilicon.com
8404 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8405
8406 HMM - Heterogeneous Memory Management
8407 M:      Jérôme Glisse <jglisse@redhat.com>
8408 L:      linux-mm@kvack.org
8409 S:      Maintained
8410 F:      Documentation/vm/hmm.rst
8411 F:      include/linux/hmm*
8412 F:      lib/test_hmm*
8413 F:      mm/hmm*
8414 F:      tools/testing/selftests/vm/*hmm*
8415
8416 HOST AP DRIVER
8417 M:      Jouni Malinen <j@w1.fi>
8418 L:      linux-wireless@vger.kernel.org
8419 S:      Obsolete
8420 W:      http://w1.fi/hostap-driver.html
8421 F:      drivers/net/wireless/intersil/hostap/
8422
8423 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8424 L:      platform-driver-x86@vger.kernel.org
8425 S:      Orphan
8426 F:      drivers/platform/x86/tc1100-wmi.c
8427
8428 HPET:   High Precision Event Timers driver
8429 M:      Clemens Ladisch <clemens@ladisch.de>
8430 S:      Maintained
8431 F:      Documentation/timers/hpet.rst
8432 F:      drivers/char/hpet.c
8433 F:      include/linux/hpet.h
8434 F:      include/uapi/linux/hpet.h
8435
8436 HPET:   x86
8437 S:      Orphan
8438 F:      arch/x86/include/asm/hpet.h
8439 F:      arch/x86/kernel/hpet.c
8440
8441 HPFS FILESYSTEM
8442 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8443 S:      Maintained
8444 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8445 F:      fs/hpfs/
8446
8447 HSI SUBSYSTEM
8448 M:      Sebastian Reichel <sre@kernel.org>
8449 S:      Maintained
8450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8451 F:      Documentation/ABI/testing/sysfs-bus-hsi
8452 F:      Documentation/driver-api/hsi.rst
8453 F:      drivers/hsi/
8454 F:      include/linux/hsi/
8455 F:      include/uapi/linux/hsi/
8456
8457 HSO 3G MODEM DRIVER
8458 L:      linux-usb@vger.kernel.org
8459 S:      Orphan
8460 F:      drivers/net/usb/hso.c
8461
8462 HSR NETWORK PROTOCOL
8463 L:      netdev@vger.kernel.org
8464 S:      Orphan
8465 F:      net/hsr/
8466
8467 HT16K33 LED CONTROLLER DRIVER
8468 M:      Robin van der Gracht <robin@protonic.nl>
8469 S:      Maintained
8470 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8471 F:      drivers/auxdisplay/ht16k33.c
8472
8473 HTCPEN TOUCHSCREEN DRIVER
8474 M:      Pau Oliva Fora <pof@eslack.org>
8475 L:      linux-input@vger.kernel.org
8476 S:      Maintained
8477 F:      drivers/input/touchscreen/htcpen.c
8478
8479 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8480 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8481 L:      linux-iio@vger.kernel.org
8482 S:      Maintained
8483 W:      http://www.st.com/
8484 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8485 F:      drivers/iio/humidity/hts221*
8486
8487 HUAWEI ETHERNET DRIVER
8488 M:      Bin Luo <luobin9@huawei.com>
8489 L:      netdev@vger.kernel.org
8490 S:      Supported
8491 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8492 F:      drivers/net/ethernet/huawei/hinic/
8493
8494 HUGETLB FILESYSTEM
8495 M:      Mike Kravetz <mike.kravetz@oracle.com>
8496 L:      linux-mm@kvack.org
8497 S:      Maintained
8498 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8499 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8500 F:      Documentation/vm/hugetlbfs_reserv.rst
8501 F:      fs/hugetlbfs/
8502 F:      include/linux/hugetlb.h
8503 F:      mm/hugetlb.c
8504
8505 HVA ST MEDIA DRIVER
8506 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8507 L:      linux-media@vger.kernel.org
8508 S:      Supported
8509 W:      https://linuxtv.org
8510 T:      git git://linuxtv.org/media_tree.git
8511 F:      drivers/media/platform/sti/hva
8512
8513 HWPOISON MEMORY FAILURE HANDLING
8514 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8515 L:      linux-mm@kvack.org
8516 S:      Maintained
8517 F:      mm/hwpoison-inject.c
8518 F:      mm/memory-failure.c
8519
8520 HYCON HY46XX TOUCHSCREEN SUPPORT
8521 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
8522 L:      linux-input@vger.kernel.org
8523 S:      Maintained
8524 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
8525 F:      drivers/input/touchscreen/hycon-hy46xx.c
8526
8527 HYGON PROCESSOR SUPPORT
8528 M:      Pu Wen <puwen@hygon.cn>
8529 L:      linux-kernel@vger.kernel.org
8530 S:      Maintained
8531 F:      arch/x86/kernel/cpu/hygon.c
8532
8533 HYNIX HI556 SENSOR DRIVER
8534 M:      Shawn Tu <shawnx.tu@intel.com>
8535 L:      linux-media@vger.kernel.org
8536 S:      Maintained
8537 T:      git git://linuxtv.org/media_tree.git
8538 F:      drivers/media/i2c/hi556.c
8539
8540 Hyper-V/Azure CORE AND DRIVERS
8541 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8542 M:      Haiyang Zhang <haiyangz@microsoft.com>
8543 M:      Stephen Hemminger <sthemmin@microsoft.com>
8544 M:      Wei Liu <wei.liu@kernel.org>
8545 M:      Dexuan Cui <decui@microsoft.com>
8546 L:      linux-hyperv@vger.kernel.org
8547 S:      Supported
8548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8549 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8550 F:      Documentation/ABI/testing/debugfs-hyperv
8551 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8552 F:      arch/x86/hyperv
8553 F:      arch/x86/include/asm/hyperv-tlfs.h
8554 F:      arch/x86/include/asm/mshyperv.h
8555 F:      arch/x86/include/asm/trace/hyperv.h
8556 F:      arch/x86/kernel/cpu/mshyperv.c
8557 F:      drivers/clocksource/hyperv_timer.c
8558 F:      drivers/hid/hid-hyperv.c
8559 F:      drivers/hv/
8560 F:      drivers/input/serio/hyperv-keyboard.c
8561 F:      drivers/iommu/hyperv-iommu.c
8562 F:      drivers/net/ethernet/microsoft/
8563 F:      drivers/net/hyperv/
8564 F:      drivers/pci/controller/pci-hyperv-intf.c
8565 F:      drivers/pci/controller/pci-hyperv.c
8566 F:      drivers/scsi/storvsc_drv.c
8567 F:      drivers/uio/uio_hv_generic.c
8568 F:      drivers/video/fbdev/hyperv_fb.c
8569 F:      include/asm-generic/hyperv-tlfs.h
8570 F:      include/asm-generic/mshyperv.h
8571 F:      include/clocksource/hyperv_timer.h
8572 F:      include/linux/hyperv.h
8573 F:      include/uapi/linux/hyperv.h
8574 F:      net/vmw_vsock/hyperv_transport.c
8575 F:      tools/hv/
8576
8577 HYPERBUS SUPPORT
8578 M:      Vignesh Raghavendra <vigneshr@ti.com>
8579 L:      linux-mtd@lists.infradead.org
8580 S:      Supported
8581 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8582 C:      irc://irc.oftc.net/mtd
8583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8584 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8585 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8586 F:      drivers/mtd/hyperbus/
8587 F:      include/linux/mtd/hyperbus.h
8588
8589 HYPERVISOR VIRTUAL CONSOLE DRIVER
8590 L:      linuxppc-dev@lists.ozlabs.org
8591 S:      Odd Fixes
8592 F:      drivers/tty/hvc/
8593
8594 I2C ACPI SUPPORT
8595 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8596 L:      linux-i2c@vger.kernel.org
8597 L:      linux-acpi@vger.kernel.org
8598 S:      Maintained
8599 F:      drivers/i2c/i2c-core-acpi.c
8600
8601 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8602 M:      Ajay Gupta <ajayg@nvidia.com>
8603 L:      linux-i2c@vger.kernel.org
8604 S:      Maintained
8605 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8606 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8607
8608 I2C MUXES
8609 M:      Peter Rosin <peda@axentia.se>
8610 L:      linux-i2c@vger.kernel.org
8611 S:      Maintained
8612 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8613 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8614 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8615 F:      Documentation/i2c/i2c-topology.rst
8616 F:      Documentation/i2c/muxes/
8617 F:      drivers/i2c/i2c-mux.c
8618 F:      drivers/i2c/muxes/
8619 F:      include/linux/i2c-mux.h
8620
8621 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8622 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8623 L:      linux-i2c@vger.kernel.org
8624 S:      Maintained
8625 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8626 F:      drivers/i2c/busses/i2c-mv64xxx.c
8627
8628 I2C OVER PARALLEL PORT
8629 M:      Jean Delvare <jdelvare@suse.com>
8630 L:      linux-i2c@vger.kernel.org
8631 S:      Maintained
8632 F:      Documentation/i2c/busses/i2c-parport.rst
8633 F:      drivers/i2c/busses/i2c-parport.c
8634
8635 I2C SUBSYSTEM
8636 M:      Wolfram Sang <wsa@kernel.org>
8637 L:      linux-i2c@vger.kernel.org
8638 S:      Maintained
8639 W:      https://i2c.wiki.kernel.org/
8640 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8642 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8643 F:      Documentation/i2c/
8644 F:      drivers/i2c/*
8645 F:      include/linux/i2c-dev.h
8646 F:      include/linux/i2c-smbus.h
8647 F:      include/linux/i2c.h
8648 F:      include/uapi/linux/i2c-*.h
8649 F:      include/uapi/linux/i2c.h
8650
8651 I2C SUBSYSTEM HOST DRIVERS
8652 L:      linux-i2c@vger.kernel.org
8653 S:      Odd Fixes
8654 W:      https://i2c.wiki.kernel.org/
8655 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8657 F:      Documentation/devicetree/bindings/i2c/
8658 F:      drivers/i2c/algos/
8659 F:      drivers/i2c/busses/
8660
8661 I2C-TAOS-EVM DRIVER
8662 M:      Jean Delvare <jdelvare@suse.com>
8663 L:      linux-i2c@vger.kernel.org
8664 S:      Maintained
8665 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8666 F:      drivers/i2c/busses/i2c-taos-evm.c
8667
8668 I2C-TINY-USB DRIVER
8669 M:      Till Harbaum <till@harbaum.org>
8670 L:      linux-i2c@vger.kernel.org
8671 S:      Maintained
8672 W:      http://www.harbaum.org/till/i2c_tiny_usb
8673 F:      drivers/i2c/busses/i2c-tiny-usb.c
8674
8675 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8676 M:      Jean Delvare <jdelvare@suse.com>
8677 L:      linux-i2c@vger.kernel.org
8678 S:      Maintained
8679 F:      Documentation/i2c/busses/i2c-ali1535.rst
8680 F:      Documentation/i2c/busses/i2c-ali1563.rst
8681 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8682 F:      Documentation/i2c/busses/i2c-amd756.rst
8683 F:      Documentation/i2c/busses/i2c-amd8111.rst
8684 F:      Documentation/i2c/busses/i2c-i801.rst
8685 F:      Documentation/i2c/busses/i2c-nforce2.rst
8686 F:      Documentation/i2c/busses/i2c-piix4.rst
8687 F:      Documentation/i2c/busses/i2c-sis5595.rst
8688 F:      Documentation/i2c/busses/i2c-sis630.rst
8689 F:      Documentation/i2c/busses/i2c-sis96x.rst
8690 F:      Documentation/i2c/busses/i2c-via.rst
8691 F:      Documentation/i2c/busses/i2c-viapro.rst
8692 F:      drivers/i2c/busses/i2c-ali1535.c
8693 F:      drivers/i2c/busses/i2c-ali1563.c
8694 F:      drivers/i2c/busses/i2c-ali15x3.c
8695 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8696 F:      drivers/i2c/busses/i2c-amd756.c
8697 F:      drivers/i2c/busses/i2c-amd8111.c
8698 F:      drivers/i2c/busses/i2c-i801.c
8699 F:      drivers/i2c/busses/i2c-isch.c
8700 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8701 F:      drivers/i2c/busses/i2c-nforce2.c
8702 F:      drivers/i2c/busses/i2c-piix4.c
8703 F:      drivers/i2c/busses/i2c-sis5595.c
8704 F:      drivers/i2c/busses/i2c-sis630.c
8705 F:      drivers/i2c/busses/i2c-sis96x.c
8706 F:      drivers/i2c/busses/i2c-via.c
8707 F:      drivers/i2c/busses/i2c-viapro.c
8708
8709 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8710 M:      Hans de Goede <hdegoede@redhat.com>
8711 L:      linux-i2c@vger.kernel.org
8712 S:      Maintained
8713 F:      drivers/i2c/busses/i2c-cht-wc.c
8714
8715 I2C/SMBUS ISMT DRIVER
8716 M:      Seth Heasley <seth.heasley@intel.com>
8717 M:      Neil Horman <nhorman@tuxdriver.com>
8718 L:      linux-i2c@vger.kernel.org
8719 F:      Documentation/i2c/busses/i2c-ismt.rst
8720 F:      drivers/i2c/busses/i2c-ismt.c
8721
8722 I2C/SMBUS STUB DRIVER
8723 M:      Jean Delvare <jdelvare@suse.com>
8724 L:      linux-i2c@vger.kernel.org
8725 S:      Maintained
8726 F:      drivers/i2c/i2c-stub.c
8727
8728 I3C DRIVER FOR CADENCE I3C MASTER IP
8729 M:      Przemysław Gaj <pgaj@cadence.com>
8730 S:      Maintained
8731 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8732 F:      drivers/i3c/master/i3c-master-cdns.c
8733
8734 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8735 M:      Vitor Soares <vitor.soares@synopsys.com>
8736 S:      Maintained
8737 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8738 F:      drivers/i3c/master/dw*
8739
8740 I3C SUBSYSTEM
8741 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
8742 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8743 S:      Maintained
8744 C:      irc://chat.freenode.net/linux-i3c
8745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8746 F:      Documentation/ABI/testing/sysfs-bus-i3c
8747 F:      Documentation/devicetree/bindings/i3c/
8748 F:      Documentation/driver-api/i3c
8749 F:      drivers/i3c/
8750 F:      include/linux/i3c/
8751
8752 IA64 (Itanium) PLATFORM
8753 L:      linux-ia64@vger.kernel.org
8754 S:      Orphan
8755 F:      Documentation/ia64/
8756 F:      arch/ia64/
8757
8758 IBM Power 842 compression accelerator
8759 M:      Haren Myneni <haren@us.ibm.com>
8760 S:      Supported
8761 F:      crypto/842.c
8762 F:      drivers/crypto/nx/Kconfig
8763 F:      drivers/crypto/nx/Makefile
8764 F:      drivers/crypto/nx/nx-842*
8765 F:      include/linux/sw842.h
8766 F:      lib/842/
8767
8768 IBM Power in-Nest Crypto Acceleration
8769 M:      Breno Leitão <leitao@debian.org>
8770 M:      Nayna Jain <nayna@linux.ibm.com>
8771 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8772 L:      linux-crypto@vger.kernel.org
8773 S:      Supported
8774 F:      drivers/crypto/nx/Kconfig
8775 F:      drivers/crypto/nx/Makefile
8776 F:      drivers/crypto/nx/nx-aes*
8777 F:      drivers/crypto/nx/nx-sha*
8778 F:      drivers/crypto/nx/nx.*
8779 F:      drivers/crypto/nx/nx_csbcpb.h
8780 F:      drivers/crypto/nx/nx_debugfs.c
8781
8782 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8783 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8784 L:      linux-pci@vger.kernel.org
8785 L:      linuxppc-dev@lists.ozlabs.org
8786 S:      Supported
8787 F:      drivers/pci/hotplug/rpadlpar*
8788
8789 IBM Power Linux RAID adapter
8790 M:      Brian King <brking@us.ibm.com>
8791 S:      Supported
8792 F:      drivers/scsi/ipr.*
8793
8794 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8795 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8796 L:      linux-pci@vger.kernel.org
8797 L:      linuxppc-dev@lists.ozlabs.org
8798 S:      Supported
8799 F:      drivers/pci/hotplug/rpaphp*
8800
8801 IBM Power SRIOV Virtual NIC Device Driver
8802 M:      Dany Madden <drt@linux.ibm.com>
8803 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8804 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
8805 L:      netdev@vger.kernel.org
8806 S:      Supported
8807 F:      drivers/net/ethernet/ibm/ibmvnic.*
8808
8809 IBM Power Virtual Accelerator Switchboard
8810 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8811 L:      linuxppc-dev@lists.ozlabs.org
8812 S:      Supported
8813 F:      arch/powerpc/include/asm/vas.h
8814 F:      arch/powerpc/platforms/powernv/copy-paste.h
8815 F:      arch/powerpc/platforms/powernv/vas*
8816
8817 IBM Power Virtual Ethernet Device Driver
8818 M:      Cristobal Forno <cforno12@linux.ibm.com>
8819 L:      netdev@vger.kernel.org
8820 S:      Supported
8821 F:      drivers/net/ethernet/ibm/ibmveth.*
8822
8823 IBM Power Virtual FC Device Drivers
8824 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8825 L:      linux-scsi@vger.kernel.org
8826 S:      Supported
8827 F:      drivers/scsi/ibmvscsi/ibmvfc*
8828
8829 IBM Power Virtual Management Channel Driver
8830 M:      Brad Warrum <bwarrum@linux.ibm.com>
8831 M:      Ritu Agarwal <rituagar@linux.ibm.com>
8832 S:      Supported
8833 F:      drivers/misc/ibmvmc.*
8834
8835 IBM Power Virtual SCSI Device Drivers
8836 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8837 L:      linux-scsi@vger.kernel.org
8838 S:      Supported
8839 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8840 F:      include/scsi/viosrp.h
8841
8842 IBM Power Virtual SCSI Device Target Driver
8843 M:      Michael Cyr <mikecyr@linux.ibm.com>
8844 L:      linux-scsi@vger.kernel.org
8845 L:      target-devel@vger.kernel.org
8846 S:      Supported
8847 F:      drivers/scsi/ibmvscsi_tgt/
8848
8849 IBM Power VMX Cryptographic instructions
8850 M:      Breno Leitão <leitao@debian.org>
8851 M:      Nayna Jain <nayna@linux.ibm.com>
8852 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8853 L:      linux-crypto@vger.kernel.org
8854 S:      Supported
8855 F:      drivers/crypto/vmx/Kconfig
8856 F:      drivers/crypto/vmx/Makefile
8857 F:      drivers/crypto/vmx/aes*
8858 F:      drivers/crypto/vmx/ghash*
8859 F:      drivers/crypto/vmx/ppc-xlate.pl
8860 F:      drivers/crypto/vmx/vmx.c
8861
8862 IBM ServeRAID RAID DRIVER
8863 S:      Orphan
8864 F:      drivers/scsi/ips.*
8865
8866 ICH LPC AND GPIO DRIVER
8867 M:      Peter Tyser <ptyser@xes-inc.com>
8868 S:      Maintained
8869 F:      drivers/gpio/gpio-ich.c
8870 F:      drivers/mfd/lpc_ich.c
8871
8872 ICY I2C DRIVER
8873 M:      Max Staudt <max@enpas.org>
8874 L:      linux-i2c@vger.kernel.org
8875 S:      Maintained
8876 F:      drivers/i2c/busses/i2c-icy.c
8877
8878 IDEAPAD LAPTOP EXTRAS DRIVER
8879 M:      Ike Panhc <ike.pan@canonical.com>
8880 L:      platform-driver-x86@vger.kernel.org
8881 S:      Maintained
8882 W:      http://launchpad.net/ideapad-laptop
8883 F:      drivers/platform/x86/ideapad-laptop.c
8884
8885 IDEAPAD LAPTOP SLIDEBAR DRIVER
8886 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
8887 L:      linux-input@vger.kernel.org
8888 S:      Maintained
8889 W:      https://github.com/o2genum/ideapad-slidebar
8890 F:      drivers/input/misc/ideapad_slidebar.c
8891
8892 IDT VersaClock 5 CLOCK DRIVER
8893 M:      Luca Ceresoli <luca@lucaceresoli.net>
8894 S:      Maintained
8895 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
8896 F:      drivers/clk/clk-versaclock5.c
8897
8898 IEEE 802.15.4 SUBSYSTEM
8899 M:      Alexander Aring <alex.aring@gmail.com>
8900 M:      Stefan Schmidt <stefan@datenfreihafen.org>
8901 L:      linux-wpan@vger.kernel.org
8902 S:      Maintained
8903 W:      https://linux-wpan.org/
8904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8906 F:      Documentation/networking/ieee802154.rst
8907 F:      drivers/net/ieee802154/
8908 F:      include/linux/ieee802154.h
8909 F:      include/linux/nl802154.h
8910 F:      include/net/af_ieee802154.h
8911 F:      include/net/cfg802154.h
8912 F:      include/net/ieee802154_netdev.h
8913 F:      include/net/mac802154.h
8914 F:      include/net/nl802154.h
8915 F:      net/ieee802154/
8916 F:      net/mac802154/
8917
8918 IFE PROTOCOL
8919 M:      Yotam Gigi <yotam.gi@gmail.com>
8920 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8921 F:      include/net/ife.h
8922 F:      include/uapi/linux/ife.h
8923 F:      net/ife
8924
8925 IGORPLUG-USB IR RECEIVER
8926 M:      Sean Young <sean@mess.org>
8927 L:      linux-media@vger.kernel.org
8928 S:      Maintained
8929 F:      drivers/media/rc/igorplugusb.c
8930
8931 IGUANAWORKS USB IR TRANSCEIVER
8932 M:      Sean Young <sean@mess.org>
8933 L:      linux-media@vger.kernel.org
8934 S:      Maintained
8935 F:      drivers/media/rc/iguanair.c
8936
8937 IIO DIGITAL POTENTIOMETER DAC
8938 M:      Peter Rosin <peda@axentia.se>
8939 L:      linux-iio@vger.kernel.org
8940 S:      Maintained
8941 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8942 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
8943 F:      drivers/iio/dac/dpot-dac.c
8944
8945 IIO ENVELOPE DETECTOR
8946 M:      Peter Rosin <peda@axentia.se>
8947 L:      linux-iio@vger.kernel.org
8948 S:      Maintained
8949 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8950 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
8951 F:      drivers/iio/adc/envelope-detector.c
8952
8953 IIO MULTIPLEXER
8954 M:      Peter Rosin <peda@axentia.se>
8955 L:      linux-iio@vger.kernel.org
8956 S:      Maintained
8957 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
8958 F:      drivers/iio/multiplexer/iio-mux.c
8959
8960 IIO SCMI BASED DRIVER
8961 M:      Jyoti Bhayana <jbhayana@google.com>
8962 L:      linux-iio@vger.kernel.org
8963 S:      Maintained
8964 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
8965
8966 IIO SUBSYSTEM AND DRIVERS
8967 M:      Jonathan Cameron <jic23@kernel.org>
8968 R:      Lars-Peter Clausen <lars@metafoo.de>
8969 L:      linux-iio@vger.kernel.org
8970 S:      Maintained
8971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8972 F:      Documentation/ABI/testing/configfs-iio*
8973 F:      Documentation/ABI/testing/sysfs-bus-iio*
8974 F:      Documentation/devicetree/bindings/iio/
8975 F:      drivers/iio/
8976 F:      drivers/staging/iio/
8977 F:      include/linux/iio/
8978 F:      tools/iio/
8979
8980 IIO UNIT CONVERTER
8981 M:      Peter Rosin <peda@axentia.se>
8982 L:      linux-iio@vger.kernel.org
8983 S:      Maintained
8984 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
8985 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
8986 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
8987 F:      drivers/iio/afe/iio-rescale.c
8988
8989 IKANOS/ADI EAGLE ADSL USB DRIVER
8990 M:      Matthieu Castet <castet.matthieu@free.fr>
8991 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8992 S:      Maintained
8993 F:      drivers/usb/atm/ueagle-atm.c
8994
8995 IMGTEC ASCII LCD DRIVER
8996 M:      Paul Burton <paulburton@kernel.org>
8997 S:      Maintained
8998 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8999 F:      drivers/auxdisplay/img-ascii-lcd.c
9000
9001 IMGTEC IR DECODER DRIVER
9002 S:      Orphan
9003 F:      drivers/media/rc/img-ir/
9004
9005 IMON SOUNDGRAPH USB IR RECEIVER
9006 M:      Sean Young <sean@mess.org>
9007 L:      linux-media@vger.kernel.org
9008 S:      Maintained
9009 F:      drivers/media/rc/imon.c
9010 F:      drivers/media/rc/imon_raw.c
9011
9012 IMS TWINTURBO FRAMEBUFFER DRIVER
9013 L:      linux-fbdev@vger.kernel.org
9014 S:      Orphan
9015 F:      drivers/video/fbdev/imsttfb.c
9016
9017 INA209 HARDWARE MONITOR DRIVER
9018 M:      Guenter Roeck <linux@roeck-us.net>
9019 L:      linux-hwmon@vger.kernel.org
9020 S:      Maintained
9021 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9022 F:      Documentation/hwmon/ina209.rst
9023 F:      drivers/hwmon/ina209.c
9024
9025 INA2XX HARDWARE MONITOR DRIVER
9026 M:      Guenter Roeck <linux@roeck-us.net>
9027 L:      linux-hwmon@vger.kernel.org
9028 S:      Maintained
9029 F:      Documentation/hwmon/ina2xx.rst
9030 F:      drivers/hwmon/ina2xx.c
9031 F:      include/linux/platform_data/ina2xx.h
9032
9033 INDUSTRY PACK SUBSYSTEM (IPACK)
9034 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9035 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9036 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9037 L:      industrypack-devel@lists.sourceforge.net
9038 S:      Maintained
9039 W:      http://industrypack.sourceforge.net
9040 F:      drivers/ipack/
9041
9042 INFINEON DPS310 Driver
9043 M:      Eddie James <eajames@linux.ibm.com>
9044 L:      linux-iio@vger.kernel.org
9045 S:      Maintained
9046 F:      drivers/iio/pressure/dps310.c
9047
9048 INFINIBAND SUBSYSTEM
9049 M:      Doug Ledford <dledford@redhat.com>
9050 M:      Jason Gunthorpe <jgg@nvidia.com>
9051 L:      linux-rdma@vger.kernel.org
9052 S:      Supported
9053 W:      https://github.com/linux-rdma/rdma-core
9054 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9056 F:      Documentation/devicetree/bindings/infiniband/
9057 F:      Documentation/infiniband/
9058 F:      drivers/infiniband/
9059 F:      include/rdma/
9060 F:      include/trace/events/ib_mad.h
9061 F:      include/trace/events/ib_umad.h
9062 F:      include/uapi/linux/if_infiniband.h
9063 F:      include/uapi/rdma/
9064 F:      samples/bpf/ibumad_kern.c
9065 F:      samples/bpf/ibumad_user.c
9066
9067 INGENIC JZ4780 NAND DRIVER
9068 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9069 L:      linux-mtd@lists.infradead.org
9070 L:      linux-mips@vger.kernel.org
9071 S:      Maintained
9072 F:      drivers/mtd/nand/raw/ingenic/
9073
9074 INGENIC JZ47xx SoCs
9075 M:      Paul Cercueil <paul@crapouillou.net>
9076 L:      linux-mips@vger.kernel.org
9077 S:      Maintained
9078 F:      arch/mips/boot/dts/ingenic/
9079 F:      arch/mips/generic/board-ingenic.c
9080 F:      arch/mips/include/asm/mach-ingenic/
9081 F:      arch/mips/ingenic/Kconfig
9082 F:      drivers/clk/ingenic/
9083 F:      drivers/dma/dma-jz4780.c
9084 F:      drivers/gpu/drm/ingenic/
9085 F:      drivers/i2c/busses/i2c-jz4780.c
9086 F:      drivers/iio/adc/ingenic-adc.c
9087 F:      drivers/irqchip/irq-ingenic.c
9088 F:      drivers/memory/jz4780-nemc.c
9089 F:      drivers/mmc/host/jz4740_mmc.c
9090 F:      drivers/mtd/nand/raw/ingenic/
9091 F:      drivers/pinctrl/pinctrl-ingenic.c
9092 F:      drivers/power/supply/ingenic-battery.c
9093 F:      drivers/pwm/pwm-jz4740.c
9094 F:      drivers/remoteproc/ingenic_rproc.c
9095 F:      drivers/rtc/rtc-jz4740.c
9096 F:      drivers/tty/serial/8250/8250_ingenic.c
9097 F:      drivers/usb/musb/jz4740.c
9098 F:      drivers/watchdog/jz4740_wdt.c
9099 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9100 F:      include/linux/mfd/ingenic-tcu.h
9101 F:      sound/soc/codecs/jz47*
9102 F:      sound/soc/jz4740/
9103
9104 INOTIFY
9105 M:      Jan Kara <jack@suse.cz>
9106 R:      Amir Goldstein <amir73il@gmail.com>
9107 L:      linux-fsdevel@vger.kernel.org
9108 S:      Maintained
9109 F:      Documentation/filesystems/inotify.rst
9110 F:      fs/notify/inotify/
9111 F:      include/linux/inotify.h
9112 F:      include/uapi/linux/inotify.h
9113
9114 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9115 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9116 L:      linux-input@vger.kernel.org
9117 S:      Maintained
9118 Q:      http://patchwork.kernel.org/project/linux-input/list/
9119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9120 F:      Documentation/devicetree/bindings/input/
9121 F:      Documentation/devicetree/bindings/serio/
9122 F:      Documentation/input/
9123 F:      drivers/input/
9124 F:      include/linux/input.h
9125 F:      include/linux/input/
9126 F:      include/uapi/linux/input-event-codes.h
9127 F:      include/uapi/linux/input.h
9128
9129 INPUT MULTITOUCH (MT) PROTOCOL
9130 M:      Henrik Rydberg <rydberg@bitmath.org>
9131 L:      linux-input@vger.kernel.org
9132 S:      Odd fixes
9133 F:      Documentation/input/multi-touch-protocol.rst
9134 F:      drivers/input/input-mt.c
9135 K:      \b(ABS|SYN)_MT_
9136
9137 INSIDE SECURE CRYPTO DRIVER
9138 M:      Antoine Tenart <atenart@kernel.org>
9139 L:      linux-crypto@vger.kernel.org
9140 S:      Maintained
9141 F:      drivers/crypto/inside-secure/
9142
9143 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9144 M:      Mimi Zohar <zohar@linux.ibm.com>
9145 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9146 L:      linux-integrity@vger.kernel.org
9147 S:      Supported
9148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9149 F:      security/integrity/ima/
9150
9151 INTEL 810/815 FRAMEBUFFER DRIVER
9152 M:      Antonino Daplas <adaplas@gmail.com>
9153 L:      linux-fbdev@vger.kernel.org
9154 S:      Maintained
9155 F:      drivers/video/fbdev/i810/
9156
9157 INTEL ASoC DRIVERS
9158 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9159 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9160 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9161 M:      Jie Yang <yang.jie@linux.intel.com>
9162 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9163 S:      Supported
9164 F:      sound/soc/intel/
9165
9166 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9167 M:      Hans de Goede <hdegoede@redhat.com>
9168 L:      platform-driver-x86@vger.kernel.org
9169 S:      Maintained
9170 F:      drivers/platform/x86/intel_atomisp2_pm.c
9171
9172 INTEL ATOMISP2 LED DRIVER
9173 M:      Hans de Goede <hdegoede@redhat.com>
9174 L:      platform-driver-x86@vger.kernel.org
9175 S:      Maintained
9176 F:      drivers/platform/x86/intel_atomisp2_led.c
9177
9178 INTEL BROXTON PMC DRIVER
9179 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9180 M:      Zha Qipeng <qipeng.zha@intel.com>
9181 S:      Maintained
9182 F:      drivers/mfd/intel_pmc_bxt.c
9183 F:      include/linux/mfd/intel_pmc_bxt.h
9184
9185 INTEL C600 SERIES SAS CONTROLLER DRIVER
9186 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9187 L:      linux-scsi@vger.kernel.org
9188 S:      Supported
9189 T:      git git://git.code.sf.net/p/intel-sas/isci
9190 F:      drivers/scsi/isci/
9191
9192 INTEL CPU family model numbers
9193 M:      Tony Luck <tony.luck@intel.com>
9194 M:      x86@kernel.org
9195 L:      linux-kernel@vger.kernel.org
9196 S:      Supported
9197 F:      arch/x86/include/asm/intel-family.h
9198
9199 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9200 M:      Jani Nikula <jani.nikula@linux.intel.com>
9201 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9202 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9203 L:      intel-gfx@lists.freedesktop.org
9204 S:      Supported
9205 W:      https://01.org/linuxgraphics/
9206 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9207 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9208 C:      irc://chat.freenode.net/intel-gfx
9209 T:      git git://anongit.freedesktop.org/drm-intel
9210 F:      Documentation/gpu/i915.rst
9211 F:      drivers/gpu/drm/i915/
9212 F:      include/drm/i915*
9213 F:      include/uapi/drm/i915_drm.h
9214
9215 INTEL ETHERNET DRIVERS
9216 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9217 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9218 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9219 S:      Supported
9220 W:      http://www.intel.com/support/feedback.htm
9221 W:      http://e1000.sourceforge.net/
9222 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9225 F:      Documentation/networking/device_drivers/ethernet/intel/
9226 F:      drivers/net/ethernet/intel/
9227 F:      drivers/net/ethernet/intel/*/
9228 F:      include/linux/avf/virtchnl.h
9229 F:      include/linux/net/intel/iidc.h
9230
9231 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9232 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9233 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9234 L:      linux-rdma@vger.kernel.org
9235 S:      Supported
9236 F:      drivers/infiniband/hw/irdma/
9237 F:      include/uapi/rdma/irdma-abi.h
9238
9239 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9240 M:      Maik Broemme <mbroemme@libmpq.org>
9241 L:      linux-fbdev@vger.kernel.org
9242 S:      Maintained
9243 F:      Documentation/fb/intelfb.rst
9244 F:      drivers/video/fbdev/intelfb/
9245
9246 INTEL GPIO DRIVERS
9247 M:      Andy Shevchenko <andy@kernel.org>
9248 L:      linux-gpio@vger.kernel.org
9249 S:      Maintained
9250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9251 F:      drivers/gpio/gpio-ich.c
9252 F:      drivers/gpio/gpio-merrifield.c
9253 F:      drivers/gpio/gpio-ml-ioh.c
9254 F:      drivers/gpio/gpio-pch.c
9255 F:      drivers/gpio/gpio-sch.c
9256 F:      drivers/gpio/gpio-sodaville.c
9257
9258 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9259 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9260 M:      Zhi Wang <zhi.a.wang@intel.com>
9261 L:      intel-gvt-dev@lists.freedesktop.org
9262 L:      intel-gfx@lists.freedesktop.org
9263 S:      Supported
9264 W:      https://01.org/igvt-g
9265 T:      git https://github.com/intel/gvt-linux.git
9266 F:      drivers/gpu/drm/i915/gvt/
9267
9268 INTEL HID EVENT DRIVER
9269 M:      Alex Hung <alex.hung@canonical.com>
9270 L:      platform-driver-x86@vger.kernel.org
9271 S:      Maintained
9272 F:      drivers/platform/x86/intel-hid.c
9273
9274 INTEL I/OAT DMA DRIVER
9275 M:      Dave Jiang <dave.jiang@intel.com>
9276 R:      Dan Williams <dan.j.williams@intel.com>
9277 L:      dmaengine@vger.kernel.org
9278 S:      Supported
9279 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9280 F:      drivers/dma/ioat*
9281
9282 INTEL IADX DRIVER
9283 M:      Dave Jiang <dave.jiang@intel.com>
9284 L:      dmaengine@vger.kernel.org
9285 S:      Supported
9286 F:      drivers/dma/idxd/*
9287 F:      include/uapi/linux/idxd.h
9288
9289 INTEL IDLE DRIVER
9290 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9291 M:      Len Brown <lenb@kernel.org>
9292 L:      linux-pm@vger.kernel.org
9293 S:      Supported
9294 B:      https://bugzilla.kernel.org
9295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9296 F:      drivers/idle/intel_idle.c
9297
9298 INTEL INTEGRATED SENSOR HUB DRIVER
9299 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9300 M:      Jiri Kosina <jikos@kernel.org>
9301 L:      linux-input@vger.kernel.org
9302 S:      Maintained
9303 F:      drivers/hid/intel-ish-hid/
9304
9305 INTEL IOMMU (VT-d)
9306 M:      David Woodhouse <dwmw2@infradead.org>
9307 M:      Lu Baolu <baolu.lu@linux.intel.com>
9308 L:      iommu@lists.linux-foundation.org
9309 S:      Supported
9310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9311 F:      drivers/iommu/intel/
9312 F:      include/linux/intel-iommu.h
9313 F:      include/linux/intel-svm.h
9314
9315 INTEL IOP-ADMA DMA DRIVER
9316 R:      Dan Williams <dan.j.williams@intel.com>
9317 S:      Odd fixes
9318 F:      drivers/dma/iop-adma.c
9319
9320 INTEL IPU3 CSI-2 CIO2 DRIVER
9321 M:      Yong Zhi <yong.zhi@intel.com>
9322 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9323 M:      Bingbu Cao <bingbu.cao@intel.com>
9324 M:      Dan Scally <djrscally@gmail.com>
9325 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9326 L:      linux-media@vger.kernel.org
9327 S:      Maintained
9328 T:      git git://linuxtv.org/media_tree.git
9329 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9330 F:      drivers/media/pci/intel/ipu3/
9331
9332 INTEL IPU3 CSI-2 IMGU DRIVER
9333 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9334 R:      Bingbu Cao <bingbu.cao@intel.com>
9335 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9336 L:      linux-media@vger.kernel.org
9337 S:      Maintained
9338 F:      Documentation/admin-guide/media/ipu3.rst
9339 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9340 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9341 F:      drivers/staging/media/ipu3/
9342
9343 INTEL IXP4XX CRYPTO SUPPORT
9344 M:      Corentin Labbe <clabbe@baylibre.com>
9345 L:      linux-crypto@vger.kernel.org
9346 S:      Maintained
9347 F:      drivers/crypto/ixp4xx_crypto.c
9348
9349 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9350 M:      Krzysztof Halasa <khalasa@piap.pl>
9351 S:      Maintained
9352 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9353 F:      drivers/net/wan/ixp4xx_hss.c
9354 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9355 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9356 F:      include/linux/soc/ixp4xx/npe.h
9357 F:      include/linux/soc/ixp4xx/qmgr.h
9358
9359 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9360 M:      Deepak Saxena <dsaxena@plexity.net>
9361 S:      Maintained
9362 F:      drivers/char/hw_random/ixp4xx-rng.c
9363
9364 INTEL KEEM BAY DRM DRIVER
9365 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9366 M:      Edmund Dea <edmund.j.dea@intel.com>
9367 S:      Maintained
9368 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9369 F:      drivers/gpu/drm/kmb/
9370
9371 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9372 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9373 S:      Maintained
9374 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9375 F:      drivers/crypto/keembay/Kconfig
9376 F:      drivers/crypto/keembay/Makefile
9377 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9378 F:      drivers/crypto/keembay/ocs-aes.c
9379 F:      drivers/crypto/keembay/ocs-aes.h
9380
9381 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9382 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9383 M:      Declan Murphy <declan.murphy@intel.com>
9384 S:      Maintained
9385 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9386 F:      drivers/crypto/keembay/Kconfig
9387 F:      drivers/crypto/keembay/Makefile
9388 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9389 F:      drivers/crypto/keembay/ocs-hcu.c
9390 F:      drivers/crypto/keembay/ocs-hcu.h
9391
9392 INTEL MANAGEMENT ENGINE (mei)
9393 M:      Tomas Winkler <tomas.winkler@intel.com>
9394 L:      linux-kernel@vger.kernel.org
9395 S:      Supported
9396 F:      Documentation/driver-api/mei/*
9397 F:      drivers/misc/mei/
9398 F:      drivers/watchdog/mei_wdt.c
9399 F:      include/linux/mei_cl_bus.h
9400 F:      include/uapi/linux/mei.h
9401 F:      samples/mei/*
9402
9403 INTEL MAX 10 BMC MFD DRIVER
9404 M:      Xu Yilun <yilun.xu@intel.com>
9405 R:      Tom Rix <trix@redhat.com>
9406 S:      Maintained
9407 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9408 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9409 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9410 F:      drivers/mfd/intel-m10-bmc.c
9411 F:      include/linux/mfd/intel-m10-bmc.h
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/phy-mvebu-utmi.txt
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:      */