Merge tag 'for-linus' of git://git.armlinux.org.uk/~rmk/linux-arm
[linux-2.6-microblaze.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <klassert@kernel.org>
148 L:      netdev@vger.kernel.org
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <dave@thedillows.org>
155 L:      netdev@vger.kernel.org
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <aradford@gmail.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L:      linux-scsi@vger.kernel.org
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <alex.aring@gmail.com>
174 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L:      linux-bluetooth@vger.kernel.org
176 L:      linux-wpan@vger.kernel.org
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L:      linux-hams@vger.kernel.org
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <johannes@sipsolutions.net>
190 L:      linux-wireless@vger.kernel.org
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      net/wireless/
204
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M:      Heiner Kallweit <hkallweit1@gmail.com>
207 M:      nic_swsd@realtek.com
208 L:      netdev@vger.kernel.org
209 S:      Maintained
210 F:      drivers/net/ethernet/realtek/r8169*
211
212 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
213 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
214 L:      linux-serial@vger.kernel.org
215 S:      Maintained
216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
217 F:      drivers/tty/serial/8250*
218 F:      include/linux/serial_8250.h
219
220 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
221 L:      netdev@vger.kernel.org
222 S:      Orphan / Obsolete
223 F:      drivers/net/ethernet/8390/
224
225 9P FILE SYSTEM
226 M:      Eric Van Hensbergen <ericvh@gmail.com>
227 M:      Latchesar Ionkov <lucho@ionkov.net>
228 M:      Dominique Martinet <asmadeus@codewreck.org>
229 L:      v9fs-developer@lists.sourceforge.net
230 S:      Maintained
231 W:      http://swik.net/v9fs
232 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
234 T:      git git://github.com/martinetd/linux.git
235 F:      Documentation/filesystems/9p.rst
236 F:      fs/9p/
237 F:      include/net/9p/
238 F:      include/trace/events/9p.h
239 F:      include/uapi/linux/virtio_9p.h
240 F:      net/9p/
241
242 A8293 MEDIA DRIVER
243 M:      Antti Palosaari <crope@iki.fi>
244 L:      linux-media@vger.kernel.org
245 S:      Maintained
246 W:      https://linuxtv.org
247 W:      http://palosaari.fi/linux/
248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
249 T:      git git://linuxtv.org/anttip/media_tree.git
250 F:      drivers/media/dvb-frontends/a8293*
251
252 AACRAID SCSI RAID DRIVER
253 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
254 L:      linux-scsi@vger.kernel.org
255 S:      Supported
256 W:      http://www.adaptec.com/
257 F:      Documentation/scsi/aacraid.rst
258 F:      drivers/scsi/aacraid/
259
260 ABI/API
261 L:      linux-api@vger.kernel.org
262 F:      include/linux/syscalls.h
263 F:      kernel/sys_ni.c
264 X:      include/uapi/
265 X:      arch/*/include/uapi/
266
267 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
268 M:      Hans de Goede <hdegoede@redhat.com>
269 L:      linux-hwmon@vger.kernel.org
270 S:      Maintained
271 F:      drivers/hwmon/abituguru.c
272
273 ABIT UGURU 3 HARDWARE MONITOR DRIVER
274 M:      Alistair John Strachan <alistair@devzero.co.uk>
275 L:      linux-hwmon@vger.kernel.org
276 S:      Maintained
277 F:      drivers/hwmon/abituguru3.c
278
279 ACCES 104-DIO-48E GPIO DRIVER
280 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
281 L:      linux-gpio@vger.kernel.org
282 S:      Maintained
283 F:      drivers/gpio/gpio-104-dio-48e.c
284
285 ACCES 104-IDI-48 GPIO DRIVER
286 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
287 L:      linux-gpio@vger.kernel.org
288 S:      Maintained
289 F:      drivers/gpio/gpio-104-idi-48.c
290
291 ACCES 104-IDIO-16 GPIO DRIVER
292 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
293 L:      linux-gpio@vger.kernel.org
294 S:      Maintained
295 F:      drivers/gpio/gpio-104-idio-16.c
296
297 ACCES 104-QUAD-8 DRIVER
298 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
299 M:      Syed Nayyar Waris <syednwaris@gmail.com>
300 L:      linux-iio@vger.kernel.org
301 S:      Maintained
302 F:      Documentation/ABI/testing/sysfs-bus-counter-104-quad-8
303 F:      drivers/counter/104-quad-8.c
304
305 ACCES PCI-IDIO-16 GPIO DRIVER
306 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
307 L:      linux-gpio@vger.kernel.org
308 S:      Maintained
309 F:      drivers/gpio/gpio-pci-idio-16.c
310
311 ACCES PCIe-IDIO-24 GPIO DRIVER
312 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
313 L:      linux-gpio@vger.kernel.org
314 S:      Maintained
315 F:      drivers/gpio/gpio-pcie-idio-24.c
316
317 ACENIC DRIVER
318 M:      Jes Sorensen <jes@trained-monkey.org>
319 L:      linux-acenic@sunsite.dk
320 S:      Maintained
321 F:      drivers/net/ethernet/alteon/acenic*
322
323 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
324 M:      Peter Kaestle <peter@piie.net>
325 L:      platform-driver-x86@vger.kernel.org
326 S:      Maintained
327 W:      http://piie.net/?section=acerhdf
328 F:      drivers/platform/x86/acerhdf.c
329
330 ACER WMI LAPTOP EXTRAS
331 M:      "Lee, Chun-Yi" <jlee@suse.com>
332 L:      platform-driver-x86@vger.kernel.org
333 S:      Maintained
334 F:      drivers/platform/x86/acer-wmi.c
335
336 ACPI
337 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
338 M:      Len Brown <lenb@kernel.org>
339 L:      linux-acpi@vger.kernel.org
340 S:      Supported
341 W:      https://01.org/linux-acpi
342 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
343 B:      https://bugzilla.kernel.org
344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
345 F:      Documentation/ABI/testing/configfs-acpi
346 F:      Documentation/ABI/testing/sysfs-bus-acpi
347 F:      Documentation/firmware-guide/acpi/
348 F:      drivers/acpi/
349 F:      drivers/pci/*/*acpi*
350 F:      drivers/pci/*acpi*
351 F:      drivers/pnp/pnpacpi/
352 F:      include/acpi/
353 F:      include/linux/acpi.h
354 F:      include/linux/fwnode.h
355 F:      tools/power/acpi/
356
357 ACPI APEI
358 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
359 M:      Len Brown <lenb@kernel.org>
360 R:      James Morse <james.morse@arm.com>
361 R:      Tony Luck <tony.luck@intel.com>
362 R:      Borislav Petkov <bp@alien8.de>
363 L:      linux-acpi@vger.kernel.org
364 F:      drivers/acpi/apei/
365
366 ACPI COMPONENT ARCHITECTURE (ACPICA)
367 M:      Robert Moore <robert.moore@intel.com>
368 M:      Erik Kaneda <erik.kaneda@intel.com>
369 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
370 L:      linux-acpi@vger.kernel.org
371 L:      devel@acpica.org
372 S:      Supported
373 W:      https://acpica.org/
374 W:      https://github.com/acpica/acpica/
375 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
376 B:      https://bugzilla.kernel.org
377 B:      https://bugs.acpica.org
378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
379 F:      drivers/acpi/acpica/
380 F:      include/acpi/
381 F:      tools/power/acpi/
382
383 ACPI FAN DRIVER
384 M:      Zhang Rui <rui.zhang@intel.com>
385 L:      linux-acpi@vger.kernel.org
386 S:      Supported
387 W:      https://01.org/linux-acpi
388 B:      https://bugzilla.kernel.org
389 F:      drivers/acpi/fan.c
390
391 ACPI FOR ARM64 (ACPI/arm64)
392 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
393 M:      Hanjun Guo <guohanjun@huawei.com>
394 M:      Sudeep Holla <sudeep.holla@arm.com>
395 L:      linux-acpi@vger.kernel.org
396 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
397 S:      Maintained
398 F:      drivers/acpi/arm64
399
400 ACPI I2C MULTI INSTANTIATE DRIVER
401 M:      Hans de Goede <hdegoede@redhat.com>
402 L:      platform-driver-x86@vger.kernel.org
403 S:      Maintained
404 F:      drivers/platform/x86/i2c-multi-instantiate.c
405
406 ACPI PMIC DRIVERS
407 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
408 M:      Len Brown <lenb@kernel.org>
409 R:      Andy Shevchenko <andy@kernel.org>
410 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
411 L:      linux-acpi@vger.kernel.org
412 S:      Supported
413 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
414 B:      https://bugzilla.kernel.org
415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
416 F:      drivers/acpi/pmic/
417
418 ACPI THERMAL DRIVER
419 M:      Zhang Rui <rui.zhang@intel.com>
420 L:      linux-acpi@vger.kernel.org
421 S:      Supported
422 W:      https://01.org/linux-acpi
423 B:      https://bugzilla.kernel.org
424 F:      drivers/acpi/*thermal*
425
426 ACPI VIDEO DRIVER
427 M:      Zhang Rui <rui.zhang@intel.com>
428 L:      linux-acpi@vger.kernel.org
429 S:      Supported
430 W:      https://01.org/linux-acpi
431 B:      https://bugzilla.kernel.org
432 F:      drivers/acpi/acpi_video.c
433
434 ACPI WMI DRIVER
435 L:      platform-driver-x86@vger.kernel.org
436 S:      Orphan
437 F:      drivers/platform/x86/wmi.c
438 F:      include/uapi/linux/wmi.h
439
440 ACRN HYPERVISOR SERVICE MODULE
441 M:      Shuo Liu <shuo.a.liu@intel.com>
442 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
443 S:      Supported
444 W:      https://projectacrn.org
445 F:      Documentation/virt/acrn/
446 F:      drivers/virt/acrn/
447 F:      include/uapi/linux/acrn.h
448
449 AD1889 ALSA SOUND DRIVER
450 L:      linux-parisc@vger.kernel.org
451 S:      Maintained
452 W:      https://parisc.wiki.kernel.org/index.php/AD1889
453 F:      sound/pci/ad1889.*
454
455 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
456 M:      Michael Hennerich <michael.hennerich@analog.com>
457 S:      Supported
458 W:      http://wiki.analog.com/AD5254
459 W:      http://ez.analog.com/community/linux-device-drivers
460 F:      drivers/misc/ad525x_dpot.c
461
462 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
463 M:      Michael Hennerich <michael.hennerich@analog.com>
464 S:      Supported
465 W:      http://wiki.analog.com/AD5398
466 W:      http://ez.analog.com/community/linux-device-drivers
467 F:      drivers/regulator/ad5398.c
468
469 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
470 M:      Michael Hennerich <michael.hennerich@analog.com>
471 S:      Supported
472 W:      http://wiki.analog.com/AD7142
473 W:      http://ez.analog.com/community/linux-device-drivers
474 F:      drivers/input/misc/ad714x.c
475
476 AD7877 TOUCHSCREEN DRIVER
477 M:      Michael Hennerich <michael.hennerich@analog.com>
478 S:      Supported
479 W:      http://wiki.analog.com/AD7877
480 W:      http://ez.analog.com/community/linux-device-drivers
481 F:      drivers/input/touchscreen/ad7877.c
482
483 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
484 M:      Michael Hennerich <michael.hennerich@analog.com>
485 S:      Supported
486 W:      http://wiki.analog.com/AD7879
487 W:      http://ez.analog.com/community/linux-device-drivers
488 F:      drivers/input/touchscreen/ad7879.c
489
490 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
491 M:      Jiri Kosina <jikos@kernel.org>
492 S:      Maintained
493
494 ADF7242 IEEE 802.15.4 RADIO DRIVER
495 M:      Michael Hennerich <michael.hennerich@analog.com>
496 L:      linux-wpan@vger.kernel.org
497 S:      Supported
498 W:      https://wiki.analog.com/ADF7242
499 W:      http://ez.analog.com/community/linux-device-drivers
500 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
501 F:      drivers/net/ieee802154/adf7242.c
502
503 ADM1025 HARDWARE MONITOR DRIVER
504 M:      Jean Delvare <jdelvare@suse.com>
505 L:      linux-hwmon@vger.kernel.org
506 S:      Maintained
507 F:      Documentation/hwmon/adm1025.rst
508 F:      drivers/hwmon/adm1025.c
509
510 ADM1029 HARDWARE MONITOR DRIVER
511 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
512 L:      linux-hwmon@vger.kernel.org
513 S:      Maintained
514 F:      drivers/hwmon/adm1029.c
515
516 ADM8211 WIRELESS DRIVER
517 L:      linux-wireless@vger.kernel.org
518 S:      Orphan
519 W:      https://wireless.wiki.kernel.org/
520 F:      drivers/net/wireless/admtek/adm8211.*
521
522 ADP1653 FLASH CONTROLLER DRIVER
523 M:      Sakari Ailus <sakari.ailus@iki.fi>
524 L:      linux-media@vger.kernel.org
525 S:      Maintained
526 F:      drivers/media/i2c/adp1653.c
527 F:      include/media/i2c/adp1653.h
528
529 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
530 M:      Michael Hennerich <michael.hennerich@analog.com>
531 S:      Supported
532 W:      http://wiki.analog.com/ADP5520
533 W:      http://ez.analog.com/community/linux-device-drivers
534 F:      drivers/gpio/gpio-adp5520.c
535 F:      drivers/input/keyboard/adp5520-keys.c
536 F:      drivers/leds/leds-adp5520.c
537 F:      drivers/mfd/adp5520.c
538 F:      drivers/video/backlight/adp5520_bl.c
539
540 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
541 M:      Michael Hennerich <michael.hennerich@analog.com>
542 S:      Supported
543 W:      http://wiki.analog.com/ADP5588
544 W:      http://ez.analog.com/community/linux-device-drivers
545 F:      drivers/gpio/gpio-adp5588.c
546 F:      drivers/input/keyboard/adp5588-keys.c
547
548 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
549 M:      Michael Hennerich <michael.hennerich@analog.com>
550 S:      Supported
551 W:      http://wiki.analog.com/ADP8860
552 W:      http://ez.analog.com/community/linux-device-drivers
553 F:      drivers/video/backlight/adp8860_bl.c
554
555 ADT746X FAN DRIVER
556 M:      Colin Leroy <colin@colino.net>
557 S:      Maintained
558 F:      drivers/macintosh/therm_adt746x.c
559
560 ADT7475 HARDWARE MONITOR DRIVER
561 M:      Jean Delvare <jdelvare@suse.com>
562 L:      linux-hwmon@vger.kernel.org
563 S:      Maintained
564 F:      Documentation/hwmon/adt7475.rst
565 F:      drivers/hwmon/adt7475.c
566
567 ADVANSYS SCSI DRIVER
568 M:      Matthew Wilcox <willy@infradead.org>
569 M:      Hannes Reinecke <hare@suse.com>
570 L:      linux-scsi@vger.kernel.org
571 S:      Maintained
572 F:      Documentation/scsi/advansys.rst
573 F:      drivers/scsi/advansys.c
574
575 ADVANTECH SWBTN DRIVER
576 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
577 L:      platform-driver-x86@vger.kernel.org
578 S:      Maintained
579 F:      drivers/platform/x86/adv_swbutton.c
580
581 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
582 M:      Michael Hennerich <michael.hennerich@analog.com>
583 S:      Supported
584 W:      http://wiki.analog.com/ADXL345
585 W:      http://ez.analog.com/community/linux-device-drivers
586 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
587 F:      drivers/input/misc/adxl34x.c
588
589 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
590 M:      Michael Hennerich <michael.hennerich@analog.com>
591 S:      Supported
592 W:      http://ez.analog.com/community/linux-device-drivers
593 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
594 F:      drivers/iio/accel/adxl372.c
595 F:      drivers/iio/accel/adxl372_i2c.c
596 F:      drivers/iio/accel/adxl372_spi.c
597
598 AF9013 MEDIA DRIVER
599 M:      Antti Palosaari <crope@iki.fi>
600 L:      linux-media@vger.kernel.org
601 S:      Maintained
602 W:      https://linuxtv.org
603 W:      http://palosaari.fi/linux/
604 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
605 T:      git git://linuxtv.org/anttip/media_tree.git
606 F:      drivers/media/dvb-frontends/af9013*
607
608 AF9033 MEDIA DRIVER
609 M:      Antti Palosaari <crope@iki.fi>
610 L:      linux-media@vger.kernel.org
611 S:      Maintained
612 W:      https://linuxtv.org
613 W:      http://palosaari.fi/linux/
614 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
615 T:      git git://linuxtv.org/anttip/media_tree.git
616 F:      drivers/media/dvb-frontends/af9033*
617
618 AFFS FILE SYSTEM
619 M:      David Sterba <dsterba@suse.com>
620 L:      linux-fsdevel@vger.kernel.org
621 S:      Odd Fixes
622 F:      Documentation/filesystems/affs.rst
623 F:      fs/affs/
624
625 AFS FILESYSTEM
626 M:      David Howells <dhowells@redhat.com>
627 L:      linux-afs@lists.infradead.org
628 S:      Supported
629 W:      https://www.infradead.org/~dhowells/kafs/
630 F:      Documentation/filesystems/afs.rst
631 F:      fs/afs/
632 F:      include/trace/events/afs.h
633
634 AGPGART DRIVER
635 M:      David Airlie <airlied@linux.ie>
636 S:      Maintained
637 T:      git git://anongit.freedesktop.org/drm/drm
638 F:      drivers/char/agp/
639 F:      include/linux/agp*
640 F:      include/uapi/linux/agp*
641
642 AHA152X SCSI DRIVER
643 M:      "Juergen E. Fischer" <fischer@norbit.de>
644 L:      linux-scsi@vger.kernel.org
645 S:      Maintained
646 F:      drivers/scsi/aha152x*
647 F:      drivers/scsi/pcmcia/aha152x*
648
649 AIC7XXX / AIC79XX SCSI DRIVER
650 M:      Hannes Reinecke <hare@suse.com>
651 L:      linux-scsi@vger.kernel.org
652 S:      Maintained
653 F:      drivers/scsi/aic7xxx/
654
655 AIMSLAB FM RADIO RECEIVER DRIVER
656 M:      Hans Verkuil <hverkuil@xs4all.nl>
657 L:      linux-media@vger.kernel.org
658 S:      Maintained
659 W:      https://linuxtv.org
660 T:      git git://linuxtv.org/media_tree.git
661 F:      drivers/media/radio/radio-aimslab*
662
663 AIO
664 M:      Benjamin LaHaise <bcrl@kvack.org>
665 L:      linux-aio@kvack.org
666 S:      Supported
667 F:      fs/aio.c
668 F:      include/linux/*aio*.h
669
670 AIRSPY MEDIA DRIVER
671 M:      Antti Palosaari <crope@iki.fi>
672 L:      linux-media@vger.kernel.org
673 S:      Maintained
674 W:      https://linuxtv.org
675 W:      http://palosaari.fi/linux/
676 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
677 T:      git git://linuxtv.org/anttip/media_tree.git
678 F:      drivers/media/usb/airspy/
679
680 ALACRITECH GIGABIT ETHERNET DRIVER
681 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
682 S:      Maintained
683 F:      drivers/net/ethernet/alacritech/*
684
685 ALCATEL SPEEDTOUCH USB DRIVER
686 M:      Duncan Sands <duncan.sands@free.fr>
687 L:      linux-usb@vger.kernel.org
688 S:      Maintained
689 W:      http://www.linux-usb.org/SpeedTouch/
690 F:      drivers/usb/atm/speedtch.c
691 F:      drivers/usb/atm/usbatm.c
692
693 ALCHEMY AU1XX0 MMC DRIVER
694 M:      Manuel Lauss <manuel.lauss@gmail.com>
695 S:      Maintained
696 F:      drivers/mmc/host/au1xmmc.c
697
698 ALI1563 I2C DRIVER
699 M:      Rudolf Marek <r.marek@assembler.cz>
700 L:      linux-i2c@vger.kernel.org
701 S:      Maintained
702 F:      Documentation/i2c/busses/i2c-ali1563.rst
703 F:      drivers/i2c/busses/i2c-ali1563.c
704
705 ALIENWARE WMI DRIVER
706 L:      Dell.Client.Kernel@dell.com
707 S:      Maintained
708 F:      drivers/platform/x86/dell/alienware-wmi.c
709
710 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
711 M:      Tomislav Denis <tomislav.denis@avl.com>
712 L:      linux-iio@vger.kernel.org
713 S:      Maintained
714 W:      http://www.allsensors.com/
715 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
716 F:      drivers/iio/pressure/dlhl60d.c
717
718 ALLEGRO DVT VIDEO IP CORE DRIVER
719 M:      Michael Tretter <m.tretter@pengutronix.de>
720 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
721 L:      linux-media@vger.kernel.org
722 S:      Maintained
723 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
724 F:      drivers/media/platform/allegro-dvt/
725
726 ALLWINNER A10 CSI DRIVER
727 M:      Maxime Ripard <mripard@kernel.org>
728 L:      linux-media@vger.kernel.org
729 S:      Maintained
730 T:      git git://linuxtv.org/media_tree.git
731 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
732 F:      drivers/media/platform/sunxi/sun4i-csi/
733
734 ALLWINNER CPUFREQ DRIVER
735 M:      Yangtao Li <tiny.windzz@gmail.com>
736 L:      linux-pm@vger.kernel.org
737 S:      Maintained
738 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
739 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
740
741 ALLWINNER CRYPTO DRIVERS
742 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
743 L:      linux-crypto@vger.kernel.org
744 S:      Maintained
745 F:      drivers/crypto/allwinner/
746
747 ALLWINNER THERMAL DRIVER
748 M:      Vasily Khoruzhick <anarsoul@gmail.com>
749 M:      Yangtao Li <tiny.windzz@gmail.com>
750 L:      linux-pm@vger.kernel.org
751 S:      Maintained
752 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
753 F:      drivers/thermal/sun8i_thermal.c
754
755 ALLWINNER VPU DRIVER
756 M:      Maxime Ripard <mripard@kernel.org>
757 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
758 L:      linux-media@vger.kernel.org
759 S:      Maintained
760 F:      drivers/staging/media/sunxi/cedrus/
761
762 ALPHA PORT
763 M:      Richard Henderson <rth@twiddle.net>
764 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
765 M:      Matt Turner <mattst88@gmail.com>
766 L:      linux-alpha@vger.kernel.org
767 S:      Odd Fixes
768 F:      arch/alpha/
769
770 ALPS PS/2 TOUCHPAD DRIVER
771 R:      Pali Rohár <pali@kernel.org>
772 F:      drivers/input/mouse/alps.*
773
774 ALTERA I2C CONTROLLER DRIVER
775 M:      Thor Thayer <thor.thayer@linux.intel.com>
776 S:      Maintained
777 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
778 F:      drivers/i2c/busses/i2c-altera.c
779
780 ALTERA MAILBOX DRIVER
781 M:      Ley Foon Tan <ley.foon.tan@intel.com>
782 S:      Maintained
783 F:      drivers/mailbox/mailbox-altera.c
784
785 ALTERA PIO DRIVER
786 M:      Joyce Ooi <joyce.ooi@intel.com>
787 L:      linux-gpio@vger.kernel.org
788 S:      Maintained
789 F:      drivers/gpio/gpio-altera.c
790
791 ALTERA SYSTEM MANAGER DRIVER
792 M:      Thor Thayer <thor.thayer@linux.intel.com>
793 S:      Maintained
794 F:      drivers/mfd/altera-sysmgr.c
795 F:      include/linux/mfd/altera-sysmgr.h
796
797 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
798 M:      Thor Thayer <thor.thayer@linux.intel.com>
799 S:      Maintained
800 F:      drivers/gpio/gpio-altera-a10sr.c
801 F:      drivers/mfd/altera-a10sr.c
802 F:      drivers/reset/reset-a10sr.c
803 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
804 F:      include/linux/mfd/altera-a10sr.h
805
806 ALTERA TRIPLE SPEED ETHERNET DRIVER
807 M:      Joyce Ooi <joyce.ooi@intel.com>
808 L:      netdev@vger.kernel.org
809 S:      Maintained
810 F:      drivers/net/ethernet/altera/
811
812 ALTERA UART/JTAG UART SERIAL DRIVERS
813 M:      Tobias Klauser <tklauser@distanz.ch>
814 L:      linux-serial@vger.kernel.org
815 S:      Maintained
816 F:      drivers/tty/serial/altera_jtaguart.c
817 F:      drivers/tty/serial/altera_uart.c
818 F:      include/linux/altera_jtaguart.h
819 F:      include/linux/altera_uart.h
820
821 AMAZON ANNAPURNA LABS FIC DRIVER
822 M:      Talel Shenhar <talel@amazon.com>
823 S:      Maintained
824 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
825 F:      drivers/irqchip/irq-al-fic.c
826
827 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
828 M:      Talel Shenhar <talel@amazon.com>
829 M:      Talel Shenhar <talelshenhar@gmail.com>
830 S:      Maintained
831 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
832 F:      drivers/edac/al_mc_edac.c
833
834 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
835 M:      Talel Shenhar <talel@amazon.com>
836 S:      Maintained
837 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
838 F:      drivers/thermal/thermal_mmio.c
839
840 AMAZON ETHERNET DRIVERS
841 M:      Netanel Belgazal <netanel@amazon.com>
842 M:      Arthur Kiyanovski <akiyano@amazon.com>
843 R:      Guy Tzalik <gtzalik@amazon.com>
844 R:      Saeed Bishara <saeedb@amazon.com>
845 L:      netdev@vger.kernel.org
846 S:      Supported
847 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
848 F:      drivers/net/ethernet/amazon/
849
850 AMAZON RDMA EFA DRIVER
851 M:      Gal Pressman <galpress@amazon.com>
852 R:      Yossi Leybovich <sleybo@amazon.com>
853 L:      linux-rdma@vger.kernel.org
854 S:      Supported
855 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
856 F:      drivers/infiniband/hw/efa/
857 F:      include/uapi/rdma/efa-abi.h
858
859 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
860 M:      Tom Lendacky <thomas.lendacky@amd.com>
861 M:      John Allen <john.allen@amd.com>
862 L:      linux-crypto@vger.kernel.org
863 S:      Supported
864 F:      drivers/crypto/ccp/
865 F:      include/linux/ccp.h
866
867 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
868 M:      Brijesh Singh <brijesh.singh@amd.com>
869 M:      Tom Lendacky <thomas.lendacky@amd.com>
870 L:      linux-crypto@vger.kernel.org
871 S:      Supported
872 F:      drivers/crypto/ccp/sev*
873 F:      include/uapi/linux/psp-sev.h
874
875 AMD DISPLAY CORE
876 M:      Harry Wentland <harry.wentland@amd.com>
877 M:      Leo Li <sunpeng.li@amd.com>
878 L:      amd-gfx@lists.freedesktop.org
879 S:      Supported
880 T:      git git://people.freedesktop.org/~agd5f/linux
881 F:      drivers/gpu/drm/amd/display/
882
883 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
884 M:      Huang Rui <ray.huang@amd.com>
885 L:      linux-hwmon@vger.kernel.org
886 S:      Supported
887 F:      Documentation/hwmon/fam15h_power.rst
888 F:      drivers/hwmon/fam15h_power.c
889
890 AMD FCH GPIO DRIVER
891 M:      Enrico Weigelt, metux IT consult <info@metux.net>
892 L:      linux-gpio@vger.kernel.org
893 S:      Maintained
894 F:      drivers/gpio/gpio-amd-fch.c
895 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
896
897 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
898 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
899 S:      Orphan
900 F:      drivers/usb/gadget/udc/amd5536udc.*
901
902 AMD GEODE PROCESSOR/CHIPSET SUPPORT
903 M:      Andres Salomon <dilinger@queued.net>
904 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
905 S:      Supported
906 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
907 F:      arch/x86/include/asm/geode.h
908 F:      drivers/char/hw_random/geode-rng.c
909 F:      drivers/crypto/geode*
910 F:      drivers/video/fbdev/geode/
911
912 AMD IOMMU (AMD-VI)
913 M:      Joerg Roedel <joro@8bytes.org>
914 L:      iommu@lists.linux-foundation.org
915 S:      Maintained
916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
917 F:      drivers/iommu/amd/
918 F:      include/linux/amd-iommu.h
919
920 AMD KFD
921 M:      Felix Kuehling <Felix.Kuehling@amd.com>
922 L:      amd-gfx@lists.freedesktop.org
923 S:      Supported
924 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
925 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
926 F:      drivers/gpu/drm/amd/amdkfd/
927 F:      drivers/gpu/drm/amd/include/cik_structs.h
928 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
929 F:      drivers/gpu/drm/amd/include/v9_structs.h
930 F:      drivers/gpu/drm/amd/include/vi_structs.h
931 F:      include/uapi/linux/kfd_ioctl.h
932
933 AMD SPI DRIVER
934 M:      Sanjay R Mehta <sanju.mehta@amd.com>
935 S:      Maintained
936 F:      drivers/spi/spi-amd.c
937
938 AMD MP2 I2C DRIVER
939 M:      Elie Morisse <syniurge@gmail.com>
940 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
941 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
942 L:      linux-i2c@vger.kernel.org
943 S:      Maintained
944 F:      drivers/i2c/busses/i2c-amd-mp2*
945
946 AMD PMC DRIVER
947 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
948 L:      platform-driver-x86@vger.kernel.org
949 S:      Maintained
950 F:      drivers/platform/x86/amd-pmc.*
951
952 AMD POWERPLAY
953 M:      Evan Quan <evan.quan@amd.com>
954 L:      amd-gfx@lists.freedesktop.org
955 S:      Supported
956 T:      git git://people.freedesktop.org/~agd5f/linux
957 F:      drivers/gpu/drm/amd/pm/powerplay/
958
959 AMD SEATTLE DEVICE TREE SUPPORT
960 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
961 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
962 M:      Tom Lendacky <thomas.lendacky@amd.com>
963 S:      Supported
964 F:      arch/arm64/boot/dts/amd/
965
966 AMD XGBE DRIVER
967 M:      Tom Lendacky <thomas.lendacky@amd.com>
968 L:      netdev@vger.kernel.org
969 S:      Supported
970 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
971 F:      drivers/net/ethernet/amd/xgbe/
972
973 AMD SENSOR FUSION HUB DRIVER
974 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
975 M:      Sandeep Singh <sandeep.singh@amd.com>
976 L:      linux-input@vger.kernel.org
977 S:      Maintained
978 F:      Documentation/hid/amd-sfh*
979 F:      drivers/hid/amd-sfh-hid/
980
981 AMS AS73211 DRIVER
982 M:      Christian Eggers <ceggers@arri.de>
983 L:      linux-iio@vger.kernel.org
984 S:      Maintained
985 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
986 F:      drivers/iio/light/as73211.c
987
988 ANALOG DEVICES INC AD7192 DRIVER
989 M:      Alexandru Tachici <alexandru.tachici@analog.com>
990 L:      linux-iio@vger.kernel.org
991 S:      Supported
992 W:      http://ez.analog.com/community/linux-device-drivers
993 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
994 F:      drivers/iio/adc/ad7192.c
995
996 ANALOG DEVICES INC AD7292 DRIVER
997 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
998 L:      linux-iio@vger.kernel.org
999 S:      Supported
1000 W:      http://ez.analog.com/community/linux-device-drivers
1001 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1002 F:      drivers/iio/adc/ad7292.c
1003
1004 ANALOG DEVICES INC AD7768-1 DRIVER
1005 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1006 L:      linux-iio@vger.kernel.org
1007 S:      Supported
1008 W:      http://ez.analog.com/community/linux-device-drivers
1009 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1010 F:      drivers/iio/adc/ad7768-1.c
1011
1012 ANALOG DEVICES INC AD7780 DRIVER
1013 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1014 M:      Renato Lui Geh <renatogeh@gmail.com>
1015 L:      linux-iio@vger.kernel.org
1016 S:      Supported
1017 W:      http://ez.analog.com/community/linux-device-drivers
1018 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1019 F:      drivers/iio/adc/ad7780.c
1020
1021 ANALOG DEVICES INC AD9389B DRIVER
1022 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1023 L:      linux-media@vger.kernel.org
1024 S:      Maintained
1025 F:      drivers/media/i2c/ad9389b*
1026
1027 ANALOG DEVICES INC ADGS1408 DRIVER
1028 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1029 S:      Supported
1030 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1031 F:      drivers/mux/adgs1408.c
1032
1033 ANALOG DEVICES INC ADIN DRIVER
1034 M:      Michael Hennerich <michael.hennerich@analog.com>
1035 L:      netdev@vger.kernel.org
1036 S:      Supported
1037 W:      http://ez.analog.com/community/linux-device-drivers
1038 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1039 F:      drivers/net/phy/adin.c
1040
1041 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1042 M:      Nuno Sa <nuno.sa@analog.com>
1043 L:      linux-iio@vger.kernel.org
1044 S:      Supported
1045 F:      drivers/iio/imu/adis.c
1046 F:      include/linux/iio/imu/adis.h
1047
1048 ANALOG DEVICES INC ADIS16460 DRIVER
1049 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1050 L:      linux-iio@vger.kernel.org
1051 S:      Supported
1052 W:      http://ez.analog.com/community/linux-device-drivers
1053 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1054 F:      drivers/iio/imu/adis16460.c
1055
1056 ANALOG DEVICES INC ADIS16475 DRIVER
1057 M:      Nuno Sa <nuno.sa@analog.com>
1058 L:      linux-iio@vger.kernel.org
1059 W:      http://ez.analog.com/community/linux-device-drivers
1060 S:      Supported
1061 F:      drivers/iio/imu/adis16475.c
1062 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1063
1064 ANALOG DEVICES INC ADM1177 DRIVER
1065 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1066 L:      linux-hwmon@vger.kernel.org
1067 S:      Supported
1068 W:      http://ez.analog.com/community/linux-device-drivers
1069 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1070 F:      drivers/hwmon/adm1177.c
1071
1072 ANALOG DEVICES INC ADP5061 DRIVER
1073 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1074 L:      linux-pm@vger.kernel.org
1075 S:      Supported
1076 W:      http://ez.analog.com/community/linux-device-drivers
1077 F:      drivers/power/supply/adp5061.c
1078
1079 ANALOG DEVICES INC ADV7180 DRIVER
1080 M:      Lars-Peter Clausen <lars@metafoo.de>
1081 L:      linux-media@vger.kernel.org
1082 S:      Supported
1083 W:      http://ez.analog.com/community/linux-device-drivers
1084 F:      drivers/media/i2c/adv7180.c
1085 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1086
1087 ANALOG DEVICES INC ADV748X DRIVER
1088 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1089 L:      linux-media@vger.kernel.org
1090 S:      Maintained
1091 F:      drivers/media/i2c/adv748x/*
1092
1093 ANALOG DEVICES INC ADV7511 DRIVER
1094 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1095 L:      linux-media@vger.kernel.org
1096 S:      Maintained
1097 F:      drivers/media/i2c/adv7511*
1098
1099 ANALOG DEVICES INC ADV7604 DRIVER
1100 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1101 L:      linux-media@vger.kernel.org
1102 S:      Maintained
1103 F:      drivers/media/i2c/adv7604*
1104 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1105
1106 ANALOG DEVICES INC ADV7842 DRIVER
1107 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1108 L:      linux-media@vger.kernel.org
1109 S:      Maintained
1110 F:      drivers/media/i2c/adv7842*
1111
1112 ANALOG DEVICES INC ADXRS290 DRIVER
1113 M:      Nishant Malpani <nish.malpani25@gmail.com>
1114 L:      linux-iio@vger.kernel.org
1115 S:      Supported
1116 F:      drivers/iio/gyro/adxrs290.c
1117 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1118
1119 ANALOG DEVICES INC ASOC CODEC DRIVERS
1120 M:      Lars-Peter Clausen <lars@metafoo.de>
1121 M:      Nuno Sá <nuno.sa@analog.com>
1122 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1123 S:      Supported
1124 W:      http://wiki.analog.com/
1125 W:      http://ez.analog.com/community/linux-device-drivers
1126 F:      sound/soc/codecs/ad1*
1127 F:      sound/soc/codecs/ad7*
1128 F:      sound/soc/codecs/adau*
1129 F:      sound/soc/codecs/adav*
1130 F:      sound/soc/codecs/sigmadsp.*
1131 F:      sound/soc/codecs/ssm*
1132
1133 ANALOG DEVICES INC DMA DRIVERS
1134 M:      Lars-Peter Clausen <lars@metafoo.de>
1135 S:      Supported
1136 W:      http://ez.analog.com/community/linux-device-drivers
1137 F:      drivers/dma/dma-axi-dmac.c
1138
1139 ANALOG DEVICES INC IIO DRIVERS
1140 M:      Lars-Peter Clausen <lars@metafoo.de>
1141 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1142 S:      Supported
1143 W:      http://wiki.analog.com/
1144 W:      http://ez.analog.com/community/linux-device-drivers
1145 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1146 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1147 F:      Documentation/devicetree/bindings/iio/*/adi,*
1148 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1149 F:      drivers/iio/*/ad*
1150 F:      drivers/iio/adc/ltc249*
1151 F:      drivers/iio/amplifiers/hmc425a.c
1152 F:      drivers/staging/iio/*/ad*
1153 X:      drivers/iio/*/adjd*
1154
1155 ANALOGBITS PLL LIBRARIES
1156 M:      Paul Walmsley <paul.walmsley@sifive.com>
1157 S:      Supported
1158 F:      drivers/clk/analogbits/*
1159 F:      include/linux/clk/analogbits*
1160
1161 ANDES ARCHITECTURE
1162 M:      Nick Hu <nickhu@andestech.com>
1163 M:      Greentime Hu <green.hu@gmail.com>
1164 M:      Vincent Chen <deanbo422@gmail.com>
1165 S:      Supported
1166 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1167 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1168 F:      Documentation/devicetree/bindings/nds32/
1169 F:      arch/nds32/
1170 N:      nds32
1171 K:      nds32
1172
1173 ANDROID CONFIG FRAGMENTS
1174 M:      Rob Herring <robh@kernel.org>
1175 S:      Supported
1176 F:      kernel/configs/android*
1177
1178 ANDROID DRIVERS
1179 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1180 M:      Arve Hjønnevåg <arve@android.com>
1181 M:      Todd Kjos <tkjos@android.com>
1182 M:      Martijn Coenen <maco@android.com>
1183 M:      Joel Fernandes <joel@joelfernandes.org>
1184 M:      Christian Brauner <christian@brauner.io>
1185 M:      Hridya Valsaraju <hridya@google.com>
1186 M:      Suren Baghdasaryan <surenb@google.com>
1187 L:      linux-kernel@vger.kernel.org
1188 S:      Supported
1189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1190 F:      drivers/android/
1191 F:      drivers/staging/android/
1192
1193 ANDROID GOLDFISH PIC DRIVER
1194 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1195 S:      Supported
1196 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1197 F:      drivers/irqchip/irq-goldfish-pic.c
1198
1199 ANDROID GOLDFISH RTC DRIVER
1200 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1201 S:      Supported
1202 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1203 F:      drivers/rtc/rtc-goldfish.c
1204
1205 AOA (Apple Onboard Audio) ALSA DRIVER
1206 M:      Johannes Berg <johannes@sipsolutions.net>
1207 L:      linuxppc-dev@lists.ozlabs.org
1208 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1209 S:      Maintained
1210 F:      sound/aoa/
1211
1212 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1213 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1214 L:      linux-iio@vger.kernel.org
1215 S:      Maintained
1216 F:      drivers/iio/adc/stx104.c
1217
1218 APM DRIVER
1219 M:      Jiri Kosina <jikos@kernel.org>
1220 S:      Odd fixes
1221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1222 F:      arch/x86/kernel/apm_32.c
1223 F:      drivers/char/apm-emulation.c
1224 F:      include/linux/apm_bios.h
1225 F:      include/uapi/linux/apm_bios.h
1226
1227 APPARMOR SECURITY MODULE
1228 M:      John Johansen <john.johansen@canonical.com>
1229 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1230 S:      Supported
1231 W:      wiki.apparmor.net
1232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1233 F:      Documentation/admin-guide/LSM/apparmor.rst
1234 F:      security/apparmor/
1235
1236 APPLE BCM5974 MULTITOUCH DRIVER
1237 M:      Henrik Rydberg <rydberg@bitmath.org>
1238 L:      linux-input@vger.kernel.org
1239 S:      Odd fixes
1240 F:      drivers/input/mouse/bcm5974.c
1241
1242 APPLE SMC DRIVER
1243 M:      Henrik Rydberg <rydberg@bitmath.org>
1244 L:      linux-hwmon@vger.kernel.org
1245 S:      Odd fixes
1246 F:      drivers/hwmon/applesmc.c
1247
1248 APPLETALK NETWORK LAYER
1249 L:      netdev@vger.kernel.org
1250 S:      Odd fixes
1251 F:      drivers/net/appletalk/
1252 F:      include/linux/atalk.h
1253 F:      include/uapi/linux/atalk.h
1254 F:      net/appletalk/
1255
1256 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1257 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1258 S:      Supported
1259 F:      arch/arm64/boot/dts/apm/
1260
1261 APPLIED MICRO (APM) X-GENE SOC EDAC
1262 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1263 S:      Supported
1264 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1265 F:      drivers/edac/xgene_edac.c
1266
1267 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1268 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1269 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1270 S:      Supported
1271 F:      drivers/net/ethernet/apm/xgene-v2/
1272
1273 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1274 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1275 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1276 M:      Quan Nguyen <quan@os.amperecomputing.com>
1277 S:      Supported
1278 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1279 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1280 F:      drivers/net/ethernet/apm/xgene/
1281 F:      drivers/net/mdio/mdio-xgene.c
1282
1283 APPLIED MICRO (APM) X-GENE SOC PMU
1284 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1285 S:      Supported
1286 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1287 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1288 F:      drivers/perf/xgene_pmu.c
1289
1290 APTINA CAMERA SENSOR PLL
1291 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1292 L:      linux-media@vger.kernel.org
1293 S:      Maintained
1294 F:      drivers/media/i2c/aptina-pll.*
1295
1296 AQUANTIA ETHERNET DRIVER (atlantic)
1297 M:      Igor Russkikh <irusskikh@marvell.com>
1298 L:      netdev@vger.kernel.org
1299 S:      Supported
1300 W:      https://www.marvell.com/
1301 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1302 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1303 F:      drivers/net/ethernet/aquantia/atlantic/
1304
1305 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1306 M:      Egor Pomozov <epomozov@marvell.com>
1307 L:      netdev@vger.kernel.org
1308 S:      Supported
1309 W:      http://www.aquantia.com
1310 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1311
1312 ARASAN NAND CONTROLLER DRIVER
1313 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1314 L:      linux-mtd@lists.infradead.org
1315 S:      Maintained
1316 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1317 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1318
1319 ARC FRAMEBUFFER DRIVER
1320 M:      Jaya Kumar <jayalk@intworks.biz>
1321 S:      Maintained
1322 F:      drivers/video/fbdev/arcfb.c
1323 F:      drivers/video/fbdev/core/fb_defio.c
1324
1325 ARC PGU DRM DRIVER
1326 M:      Alexey Brodkin <abrodkin@synopsys.com>
1327 S:      Supported
1328 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1329 F:      drivers/gpu/drm/tiny/arcpgu.c
1330
1331 ARCNET NETWORK LAYER
1332 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1333 L:      netdev@vger.kernel.org
1334 S:      Maintained
1335 F:      drivers/net/arcnet/
1336 F:      include/uapi/linux/if_arcnet.h
1337
1338 ARM ARCHITECTED TIMER DRIVER
1339 M:      Mark Rutland <mark.rutland@arm.com>
1340 M:      Marc Zyngier <maz@kernel.org>
1341 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1342 S:      Maintained
1343 F:      arch/arm/include/asm/arch_timer.h
1344 F:      arch/arm64/include/asm/arch_timer.h
1345 F:      drivers/clocksource/arm_arch_timer.c
1346
1347 ARM HDLCD DRM DRIVER
1348 M:      Liviu Dudau <liviu.dudau@arm.com>
1349 S:      Supported
1350 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1351 F:      drivers/gpu/drm/arm/hdlcd_*
1352
1353 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1354 M:      Linus Walleij <linus.walleij@linaro.org>
1355 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1356 S:      Maintained
1357 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1358 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1359 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1360 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1361 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1362 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1363 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1364 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1365 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1366 F:      arch/arm/boot/dts/arm-realview-*
1367 F:      arch/arm/boot/dts/integrator*
1368 F:      arch/arm/boot/dts/versatile*
1369 F:      arch/arm/mach-integrator/
1370 F:      arch/arm/mach-realview/
1371 F:      arch/arm/mach-versatile/
1372 F:      arch/arm/plat-versatile/
1373 F:      drivers/bus/arm-integrator-lm.c
1374 F:      drivers/clk/versatile/
1375 F:      drivers/i2c/busses/i2c-versatile.c
1376 F:      drivers/irqchip/irq-versatile-fpga.c
1377 F:      drivers/mtd/maps/physmap-versatile.*
1378 F:      drivers/power/reset/arm-versatile-reboot.c
1379 F:      drivers/soc/versatile/
1380
1381 ARM KOMEDA DRM-KMS DRIVER
1382 M:      James (Qian) Wang <james.qian.wang@arm.com>
1383 M:      Liviu Dudau <liviu.dudau@arm.com>
1384 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1385 L:      Mali DP Maintainers <malidp@foss.arm.com>
1386 S:      Supported
1387 T:      git git://anongit.freedesktop.org/drm/drm-misc
1388 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1389 F:      Documentation/gpu/komeda-kms.rst
1390 F:      drivers/gpu/drm/arm/display/include/
1391 F:      drivers/gpu/drm/arm/display/komeda/
1392
1393 ARM MALI PANFROST DRM DRIVER
1394 M:      Rob Herring <robh@kernel.org>
1395 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1396 R:      Steven Price <steven.price@arm.com>
1397 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1398 L:      dri-devel@lists.freedesktop.org
1399 S:      Supported
1400 T:      git git://anongit.freedesktop.org/drm/drm-misc
1401 F:      drivers/gpu/drm/panfrost/
1402 F:      include/uapi/drm/panfrost_drm.h
1403
1404 ARM MALI-DP DRM DRIVER
1405 M:      Liviu Dudau <liviu.dudau@arm.com>
1406 M:      Brian Starkey <brian.starkey@arm.com>
1407 L:      Mali DP Maintainers <malidp@foss.arm.com>
1408 S:      Supported
1409 T:      git git://anongit.freedesktop.org/drm/drm-misc
1410 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1411 F:      Documentation/gpu/afbc.rst
1412 F:      drivers/gpu/drm/arm/
1413
1414 ARM MFM AND FLOPPY DRIVERS
1415 M:      Ian Molton <spyro@f2s.com>
1416 S:      Maintained
1417 F:      arch/arm/include/asm/floppy.h
1418 F:      arch/arm/mach-rpc/floppydma.S
1419
1420 ARM PMU PROFILING AND DEBUGGING
1421 M:      Will Deacon <will@kernel.org>
1422 M:      Mark Rutland <mark.rutland@arm.com>
1423 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1424 S:      Maintained
1425 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1426 F:      Documentation/devicetree/bindings/perf/
1427 F:      arch/arm*/include/asm/hw_breakpoint.h
1428 F:      arch/arm*/include/asm/perf_event.h
1429 F:      arch/arm*/kernel/hw_breakpoint.c
1430 F:      arch/arm*/kernel/perf_*
1431 F:      drivers/perf/
1432 F:      include/linux/perf/arm_pmu.h
1433
1434 ARM PORT
1435 M:      Russell King <linux@armlinux.org.uk>
1436 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1437 S:      Odd Fixes
1438 W:      http://www.armlinux.org.uk/
1439 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1440 F:      arch/arm/
1441 X:      arch/arm/boot/dts/
1442
1443 ARM PRIMECELL AACI PL041 DRIVER
1444 M:      Russell King <linux@armlinux.org.uk>
1445 S:      Odd Fixes
1446 F:      sound/arm/aaci.*
1447
1448 ARM PRIMECELL BUS SUPPORT
1449 M:      Russell King <linux@armlinux.org.uk>
1450 S:      Odd Fixes
1451 F:      drivers/amba/
1452 F:      include/linux/amba/bus.h
1453
1454 ARM PRIMECELL CLCD PL110 DRIVER
1455 M:      Russell King <linux@armlinux.org.uk>
1456 S:      Odd Fixes
1457 F:      drivers/video/fbdev/amba-clcd.*
1458
1459 ARM PRIMECELL KMI PL050 DRIVER
1460 M:      Russell King <linux@armlinux.org.uk>
1461 S:      Odd Fixes
1462 F:      drivers/input/serio/ambakmi.*
1463 F:      include/linux/amba/kmi.h
1464
1465 ARM PRIMECELL MMCI PL180/1 DRIVER
1466 M:      Russell King <linux@armlinux.org.uk>
1467 S:      Odd Fixes
1468 F:      drivers/mmc/host/mmci.*
1469 F:      include/linux/amba/mmci.h
1470
1471 ARM PRIMECELL SSP PL022 SPI DRIVER
1472 M:      Linus Walleij <linus.walleij@linaro.org>
1473 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1474 S:      Maintained
1475 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1476 F:      drivers/spi/spi-pl022.c
1477
1478 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1479 M:      Russell King <linux@armlinux.org.uk>
1480 S:      Odd Fixes
1481 F:      drivers/tty/serial/amba-pl01*.c
1482 F:      include/linux/amba/serial.h
1483
1484 ARM PRIMECELL VIC PL190/PL192 DRIVER
1485 M:      Linus Walleij <linus.walleij@linaro.org>
1486 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1487 S:      Maintained
1488 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1489 F:      drivers/irqchip/irq-vic.c
1490
1491 ARM SMC WATCHDOG DRIVER
1492 M:      Julius Werner <jwerner@chromium.org>
1493 R:      Evan Benn <evanbenn@chromium.org>
1494 S:      Maintained
1495 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1496 F:      drivers/watchdog/arm_smc_wdt.c
1497
1498 ARM SMMU DRIVERS
1499 M:      Will Deacon <will@kernel.org>
1500 R:      Robin Murphy <robin.murphy@arm.com>
1501 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1502 S:      Maintained
1503 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1504 F:      drivers/iommu/arm/
1505 F:      drivers/iommu/io-pgtable-arm*
1506
1507 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1508 M:      Arnd Bergmann <arnd@arndb.de>
1509 M:      Olof Johansson <olof@lixom.net>
1510 M:      soc@kernel.org
1511 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1512 S:      Maintained
1513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1514 F:      arch/arm/boot/dts/Makefile
1515 F:      arch/arm64/boot/dts/Makefile
1516
1517 ARM SUB-ARCHITECTURES
1518 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1519 S:      Maintained
1520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1521 F:      arch/arm/mach-*/
1522 F:      arch/arm/plat-*/
1523
1524 ARM/ACTIONS SEMI ARCHITECTURE
1525 M:      Andreas Färber <afaerber@suse.de>
1526 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1527 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1528 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1529 S:      Maintained
1530 F:      Documentation/devicetree/bindings/arm/actions.yaml
1531 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1532 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1533 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1534 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1535 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1536 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1537 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1538 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1539 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1540 F:      arch/arm/boot/dts/owl-*
1541 F:      arch/arm/mach-actions/
1542 F:      arch/arm64/boot/dts/actions/
1543 F:      drivers/clk/actions/
1544 F:      drivers/clocksource/timer-owl*
1545 F:      drivers/dma/owl-dma.c
1546 F:      drivers/i2c/busses/i2c-owl.c
1547 F:      drivers/irqchip/irq-owl-sirq.c
1548 F:      drivers/mmc/host/owl-mmc.c
1549 F:      drivers/net/ethernet/actions/
1550 F:      drivers/pinctrl/actions/*
1551 F:      drivers/soc/actions/
1552 F:      include/dt-bindings/power/owl-*
1553 F:      include/dt-bindings/reset/actions,*
1554 F:      include/linux/soc/actions/
1555 N:      owl
1556
1557 ARM/ADS SPHERE MACHINE SUPPORT
1558 M:      Lennert Buytenhek <kernel@wantstofly.org>
1559 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1560 S:      Maintained
1561
1562 ARM/AFEB9260 MACHINE SUPPORT
1563 M:      Sergey Lapin <slapin@ossfans.org>
1564 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1565 S:      Maintained
1566
1567 ARM/AJECO 1ARM MACHINE SUPPORT
1568 M:      Lennert Buytenhek <kernel@wantstofly.org>
1569 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1570 S:      Maintained
1571
1572 ARM/Allwinner SoC Clock Support
1573 M:      Emilio López <emilio@elopez.com.ar>
1574 S:      Maintained
1575 F:      drivers/clk/sunxi/
1576
1577 ARM/Allwinner sunXi SoC support
1578 M:      Maxime Ripard <mripard@kernel.org>
1579 M:      Chen-Yu Tsai <wens@csie.org>
1580 R:      Jernej Skrabec <jernej.skrabec@siol.net>
1581 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1582 S:      Maintained
1583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1584 L:      linux-sunxi@lists.linux.dev
1585 F:      arch/arm/mach-sunxi/
1586 F:      arch/arm64/boot/dts/allwinner/
1587 F:      drivers/clk/sunxi-ng/
1588 F:      drivers/pinctrl/sunxi/
1589 F:      drivers/soc/sunxi/
1590 N:      allwinner
1591 N:      sun[x456789]i
1592 N:      sun50i
1593
1594 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1595 M:      Neil Armstrong <narmstrong@baylibre.com>
1596 M:      Jerome Brunet <jbrunet@baylibre.com>
1597 L:      linux-amlogic@lists.infradead.org
1598 S:      Maintained
1599 F:      Documentation/devicetree/bindings/clock/amlogic*
1600 F:      drivers/clk/meson/
1601 F:      include/dt-bindings/clock/gxbb*
1602 F:      include/dt-bindings/clock/meson*
1603
1604 ARM/Amlogic Meson SoC Crypto Drivers
1605 M:      Corentin Labbe <clabbe@baylibre.com>
1606 L:      linux-crypto@vger.kernel.org
1607 L:      linux-amlogic@lists.infradead.org
1608 S:      Maintained
1609 F:      Documentation/devicetree/bindings/crypto/amlogic*
1610 F:      drivers/crypto/amlogic/
1611
1612 ARM/Amlogic Meson SoC Sound Drivers
1613 M:      Jerome Brunet <jbrunet@baylibre.com>
1614 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1615 S:      Maintained
1616 F:      Documentation/devicetree/bindings/sound/amlogic*
1617 F:      sound/soc/meson/
1618
1619 ARM/Amlogic Meson SoC support
1620 M:      Kevin Hilman <khilman@baylibre.com>
1621 R:      Neil Armstrong <narmstrong@baylibre.com>
1622 R:      Jerome Brunet <jbrunet@baylibre.com>
1623 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1624 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1625 L:      linux-amlogic@lists.infradead.org
1626 S:      Maintained
1627 W:      http://linux-meson.com/
1628 F:      arch/arm/boot/dts/meson*
1629 F:      arch/arm/mach-meson/
1630 F:      arch/arm64/boot/dts/amlogic/
1631 F:      drivers/mmc/host/meson*
1632 F:      drivers/pinctrl/meson/
1633 F:      drivers/rtc/rtc-meson*
1634 F:      drivers/soc/amlogic/
1635 N:      meson
1636
1637 ARM/Annapurna Labs ALPINE ARCHITECTURE
1638 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1639 M:      Antoine Tenart <atenart@kernel.org>
1640 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1641 S:      Maintained
1642 F:      arch/arm/boot/dts/alpine*
1643 F:      arch/arm/mach-alpine/
1644 F:      arch/arm64/boot/dts/amazon/
1645 F:      drivers/*/*alpine*
1646
1647 ARM/APPLE MACHINE SUPPORT
1648 M:      Hector Martin <marcan@marcan.st>
1649 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1650 S:      Maintained
1651 W:      https://asahilinux.org
1652 B:      https://github.com/AsahiLinux/linux/issues
1653 C:      irc://chat.freenode.net/asahi-dev
1654 T:      git https://github.com/AsahiLinux/linux.git
1655 F:      Documentation/devicetree/bindings/arm/apple.yaml
1656 F:      Documentation/devicetree/bindings/interrupt-controller/apple,aic.yaml
1657 F:      arch/arm64/boot/dts/apple/
1658 F:      drivers/irqchip/irq-apple-aic.c
1659 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1660
1661 ARM/ARTPEC MACHINE SUPPORT
1662 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1663 M:      Lars Persson <lars.persson@axis.com>
1664 L:      linux-arm-kernel@axis.com
1665 S:      Maintained
1666 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1667 F:      arch/arm/boot/dts/artpec6*
1668 F:      arch/arm/mach-artpec
1669 F:      drivers/clk/axis
1670 F:      drivers/crypto/axis
1671 F:      drivers/mmc/host/usdhi6rol0.c
1672 F:      drivers/pinctrl/pinctrl-artpec*
1673
1674 ARM/ASPEED I2C DRIVER
1675 M:      Brendan Higgins <brendanhiggins@google.com>
1676 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1677 R:      Joel Stanley <joel@jms.id.au>
1678 L:      linux-i2c@vger.kernel.org
1679 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1680 S:      Maintained
1681 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1682 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1683 F:      drivers/i2c/busses/i2c-aspeed.c
1684 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1685
1686 ARM/ASPEED MACHINE SUPPORT
1687 M:      Joel Stanley <joel@jms.id.au>
1688 R:      Andrew Jeffery <andrew@aj.id.au>
1689 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1690 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1691 S:      Supported
1692 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1694 F:      arch/arm/boot/dts/aspeed-*
1695 F:      arch/arm/mach-aspeed/
1696 N:      aspeed
1697
1698 ARM/BITMAIN ARCHITECTURE
1699 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1700 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1701 S:      Maintained
1702 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1703 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1704 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1705 F:      arch/arm64/boot/dts/bitmain/
1706 F:      drivers/clk/clk-bm1880.c
1707 F:      drivers/pinctrl/pinctrl-bm1880.c
1708
1709 ARM/CALXEDA HIGHBANK ARCHITECTURE
1710 M:      Andre Przywara <andre.przywara@arm.com>
1711 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1712 S:      Maintained
1713 F:      arch/arm/boot/dts/ecx-*.dts*
1714 F:      arch/arm/boot/dts/highbank.dts
1715 F:      arch/arm/mach-highbank/
1716
1717 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1718 M:      Krzysztof Halasa <khalasa@piap.pl>
1719 S:      Maintained
1720 F:      arch/arm/mach-cns3xxx/
1721
1722 ARM/CAVIUM THUNDER NETWORK DRIVER
1723 M:      Sunil Goutham <sgoutham@marvell.com>
1724 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1725 S:      Supported
1726 F:      drivers/net/ethernet/cavium/thunder/
1727
1728 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1729 M:      Lukasz Majewski <lukma@denx.de>
1730 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1731 S:      Maintained
1732 F:      arch/arm/mach-ep93xx/ts72xx.c
1733
1734 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1735 M:      Alexander Shiyan <shc_work@mail.ru>
1736 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1737 S:      Odd Fixes
1738 N:      clps711x
1739
1740 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1741 M:      Lennert Buytenhek <kernel@wantstofly.org>
1742 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1743 S:      Maintained
1744
1745 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1746 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1747 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1748 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1749 S:      Maintained
1750 F:      arch/arm/mach-ep93xx/
1751 F:      arch/arm/mach-ep93xx/include/mach/
1752
1753 ARM/CLKDEV SUPPORT
1754 M:      Russell King <linux@armlinux.org.uk>
1755 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1756 S:      Maintained
1757 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1758 F:      drivers/clk/clkdev.c
1759
1760 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1761 M:      Baruch Siach <baruch@tkos.co.il>
1762 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1763 S:      Maintained
1764 F:      arch/arm/boot/dts/cx92755*
1765 N:      digicolor
1766
1767 ARM/CONTEC MICRO9 MACHINE SUPPORT
1768 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1769 S:      Maintained
1770 F:      arch/arm/mach-ep93xx/micro9.c
1771
1772 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1773 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1774 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1775 R:      Mike Leach <mike.leach@linaro.org>
1776 R:      Leo Yan <leo.yan@linaro.org>
1777 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1778 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1779 S:      Maintained
1780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1781 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1782 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1783 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1784 F:      Documentation/devicetree/bindings/arm/coresight.txt
1785 F:      Documentation/devicetree/bindings/arm/ete.yaml
1786 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1787 F:      Documentation/trace/coresight/*
1788 F:      drivers/hwtracing/coresight/*
1789 F:      include/dt-bindings/arm/coresight-cti-dt.h
1790 F:      include/linux/coresight*
1791 F:      tools/perf/arch/arm/util/auxtrace.c
1792 F:      tools/perf/arch/arm/util/cs-etm.c
1793 F:      tools/perf/arch/arm/util/cs-etm.h
1794 F:      tools/perf/arch/arm/util/pmu.c
1795 F:      tools/perf/util/cs-etm-decoder/*
1796 F:      tools/perf/util/cs-etm.*
1797
1798 ARM/CORGI MACHINE SUPPORT
1799 M:      Richard Purdie <rpurdie@rpsys.net>
1800 S:      Maintained
1801
1802 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1803 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1804 M:      Linus Walleij <linus.walleij@linaro.org>
1805 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1806 S:      Maintained
1807 T:      git git://github.com/ulli-kroll/linux.git
1808 F:      Documentation/devicetree/bindings/arm/gemini.txt
1809 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1810 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1811 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1812 F:      arch/arm/mach-gemini/
1813 F:      drivers/net/ethernet/cortina/
1814 F:      drivers/pinctrl/pinctrl-gemini.c
1815 F:      drivers/rtc/rtc-ftrtc010.c
1816
1817 ARM/CZ.NIC TURRIS SUPPORT
1818 M:      Marek Behun <kabel@kernel.org>
1819 S:      Maintained
1820 W:      https://www.turris.cz/
1821 F:      Documentation/ABI/testing/debugfs-moxtet
1822 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1823 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1824 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1825 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1826 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1827 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1828 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1829 F:      drivers/bus/moxtet.c
1830 F:      drivers/firmware/turris-mox-rwtm.c
1831 F:      drivers/leds/leds-turris-omnia.c
1832 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
1833 F:      drivers/gpio/gpio-moxtet.c
1834 F:      drivers/watchdog/armada_37xx_wdt.c
1835 F:      include/dt-bindings/bus/moxtet.h
1836 F:      include/linux/armada-37xx-rwtm-mailbox.h
1837 F:      include/linux/moxtet.h
1838
1839 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1840 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1841 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1842 S:      Maintained
1843 F:      arch/arm/mach-pxa/ezx.c
1844
1845 ARM/FARADAY FA526 PORT
1846 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1847 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1848 S:      Maintained
1849 T:      git git://git.berlios.de/gemini-board
1850 F:      arch/arm/mm/*-fa*
1851
1852 ARM/FOOTBRIDGE ARCHITECTURE
1853 M:      Russell King <linux@armlinux.org.uk>
1854 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1855 S:      Maintained
1856 W:      http://www.armlinux.org.uk/
1857 F:      arch/arm/include/asm/hardware/dec21285.h
1858 F:      arch/arm/mach-footbridge/
1859
1860 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1861 M:      Shawn Guo <shawnguo@kernel.org>
1862 M:      Sascha Hauer <s.hauer@pengutronix.de>
1863 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1864 R:      Fabio Estevam <festevam@gmail.com>
1865 R:      NXP Linux Team <linux-imx@nxp.com>
1866 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1867 S:      Maintained
1868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1869 X:      drivers/media/i2c/
1870 N:      imx
1871 N:      mxs
1872
1873 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1874 M:      Shawn Guo <shawnguo@kernel.org>
1875 M:      Li Yang <leoyang.li@nxp.com>
1876 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1877 S:      Maintained
1878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1879 F:      arch/arm/boot/dts/ls1021a*
1880 F:      arch/arm64/boot/dts/freescale/fsl-*
1881 F:      arch/arm64/boot/dts/freescale/qoriq-*
1882
1883 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1884 M:      Shawn Guo <shawnguo@kernel.org>
1885 M:      Sascha Hauer <s.hauer@pengutronix.de>
1886 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1887 R:      Stefan Agner <stefan@agner.ch>
1888 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1889 S:      Maintained
1890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1891 F:      arch/arm/boot/dts/vf*
1892 F:      arch/arm/mach-imx/*vf610*
1893
1894 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1895 M:      Lennert Buytenhek <kernel@wantstofly.org>
1896 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1897 S:      Maintained
1898
1899 ARM/GUMSTIX MACHINE SUPPORT
1900 M:      Steve Sakoman <sakoman@gmail.com>
1901 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1902 S:      Maintained
1903
1904 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1905 M:      Philipp Zabel <philipp.zabel@gmail.com>
1906 M:      Paul Parsons <lost.distance@yahoo.com>
1907 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1908 S:      Maintained
1909 F:      arch/arm/mach-pxa/hx4700.c
1910 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1911 F:      sound/soc/pxa/hx4700.c
1912
1913 ARM/HISILICON SOC SUPPORT
1914 M:      Wei Xu <xuwei5@hisilicon.com>
1915 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1916 S:      Supported
1917 W:      http://www.hisilicon.com
1918 T:      git git://github.com/hisilicon/linux-hisi.git
1919 F:      arch/arm/boot/dts/hi3*
1920 F:      arch/arm/boot/dts/hip*
1921 F:      arch/arm/boot/dts/hisi*
1922 F:      arch/arm/mach-hisi/
1923 F:      arch/arm64/boot/dts/hisilicon/
1924
1925 ARM/HP JORNADA 7XX MACHINE SUPPORT
1926 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1927 S:      Maintained
1928 W:      www.jlime.com
1929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1930 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1931 F:      arch/arm/mach-sa1100/jornada720.c
1932
1933 ARM/IGEP MACHINE SUPPORT
1934 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1935 M:      Javier Martinez Canillas <javier@dowhile0.org>
1936 L:      linux-omap@vger.kernel.org
1937 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1938 S:      Maintained
1939 F:      arch/arm/boot/dts/omap3-igep*
1940
1941 ARM/INCOME PXA270 SUPPORT
1942 M:      Marek Vasut <marek.vasut@gmail.com>
1943 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1944 S:      Maintained
1945 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1946
1947 ARM/INTEL IOP32X ARM ARCHITECTURE
1948 M:      Lennert Buytenhek <kernel@wantstofly.org>
1949 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1950 S:      Maintained
1951
1952 ARM/INTEL IQ81342EX MACHINE SUPPORT
1953 M:      Lennert Buytenhek <kernel@wantstofly.org>
1954 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1955 S:      Maintained
1956
1957 ARM/INTEL IXDP2850 MACHINE SUPPORT
1958 M:      Lennert Buytenhek <kernel@wantstofly.org>
1959 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1960 S:      Maintained
1961
1962 ARM/INTEL IXP4XX ARM ARCHITECTURE
1963 M:      Linus Walleij <linusw@kernel.org>
1964 M:      Imre Kaloz <kaloz@openwrt.org>
1965 M:      Krzysztof Halasa <khalasa@piap.pl>
1966 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1967 S:      Maintained
1968 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1969 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1970 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1971 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1972 F:      arch/arm/mach-ixp4xx/
1973 F:      drivers/clocksource/timer-ixp4xx.c
1974 F:      drivers/gpio/gpio-ixp4xx.c
1975 F:      drivers/irqchip/irq-ixp4xx.c
1976 F:      include/linux/irqchip/irq-ixp4xx.h
1977 F:      include/linux/platform_data/timer-ixp4xx.h
1978
1979 ARM/INTEL KEEMBAY ARCHITECTURE
1980 M:      Paul J. Murphy <paul.j.murphy@intel.com>
1981 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
1982 S:      Maintained
1983 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
1984 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
1985 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
1986
1987 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1988 M:      Jonathan Cameron <jic23@cam.ac.uk>
1989 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1990 S:      Maintained
1991 F:      arch/arm/mach-pxa/stargate2.c
1992 F:      drivers/pcmcia/pxa2xx_stargate2.c
1993
1994 ARM/INTEL XSC3 (MANZANO) ARM CORE
1995 M:      Lennert Buytenhek <kernel@wantstofly.org>
1996 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1997 S:      Maintained
1998
1999 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2000 M:      Lennert Buytenhek <kernel@wantstofly.org>
2001 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2002 S:      Maintained
2003
2004 ARM/LG1K ARCHITECTURE
2005 M:      Chanho Min <chanho.min@lge.com>
2006 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2007 S:      Maintained
2008 F:      arch/arm64/boot/dts/lg/
2009
2010 ARM/LOGICPD PXA270 MACHINE SUPPORT
2011 M:      Lennert Buytenhek <kernel@wantstofly.org>
2012 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2013 S:      Maintained
2014
2015 ARM/LPC18XX ARCHITECTURE
2016 M:      Vladimir Zapolskiy <vz@mleia.com>
2017 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2018 S:      Maintained
2019 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2020 F:      arch/arm/boot/dts/lpc43*
2021 F:      drivers/i2c/busses/i2c-lpc2k.c
2022 F:      drivers/memory/pl172.c
2023 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2024 F:      drivers/rtc/rtc-lpc24xx.c
2025 N:      lpc18xx
2026
2027 ARM/LPC32XX SOC SUPPORT
2028 M:      Vladimir Zapolskiy <vz@mleia.com>
2029 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2030 S:      Maintained
2031 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2032 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2033 F:      arch/arm/boot/dts/lpc32*
2034 F:      arch/arm/mach-lpc32xx/
2035 F:      drivers/i2c/busses/i2c-pnx.c
2036 F:      drivers/net/ethernet/nxp/lpc_eth.c
2037 F:      drivers/usb/host/ohci-nxp.c
2038 F:      drivers/watchdog/pnx4008_wdt.c
2039 N:      lpc32xx
2040
2041 ARM/MAGICIAN MACHINE SUPPORT
2042 M:      Philipp Zabel <philipp.zabel@gmail.com>
2043 S:      Maintained
2044
2045 ARM/Marvell Dove/MV78xx0/Orion SOC support
2046 M:      Andrew Lunn <andrew@lunn.ch>
2047 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2048 M:      Gregory Clement <gregory.clement@bootlin.com>
2049 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2050 S:      Maintained
2051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2052 F:      Documentation/devicetree/bindings/soc/dove/
2053 F:      arch/arm/boot/dts/dove*
2054 F:      arch/arm/boot/dts/orion5x*
2055 F:      arch/arm/mach-dove/
2056 F:      arch/arm/mach-mv78xx0/
2057 F:      arch/arm/mach-orion5x/
2058 F:      arch/arm/plat-orion/
2059 F:      drivers/soc/dove/
2060
2061 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2062 M:      Andrew Lunn <andrew@lunn.ch>
2063 M:      Gregory Clement <gregory.clement@bootlin.com>
2064 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2065 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2066 S:      Maintained
2067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2068 F:      arch/arm/boot/dts/armada*
2069 F:      arch/arm/boot/dts/kirkwood*
2070 F:      arch/arm/configs/mvebu_*_defconfig
2071 F:      arch/arm/mach-mvebu/
2072 F:      arch/arm64/boot/dts/marvell/armada*
2073 F:      arch/arm64/boot/dts/marvell/cn913*
2074 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2075 F:      drivers/cpufreq/armada-8k-cpufreq.c
2076 F:      drivers/cpufreq/mvebu-cpufreq.c
2077 F:      drivers/irqchip/irq-armada-370-xp.c
2078 F:      drivers/irqchip/irq-mvebu-*
2079 F:      drivers/pinctrl/mvebu/
2080 F:      drivers/rtc/rtc-armada38x.c
2081
2082 ARM/Mediatek RTC DRIVER
2083 M:      Eddie Huang <eddie.huang@mediatek.com>
2084 M:      Sean Wang <sean.wang@mediatek.com>
2085 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2086 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2087 S:      Maintained
2088 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2089 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2090 F:      drivers/rtc/rtc-mt2712.c
2091 F:      drivers/rtc/rtc-mt6397.c
2092 F:      drivers/rtc/rtc-mt7622.c
2093
2094 ARM/Mediatek SoC support
2095 M:      Matthias Brugger <matthias.bgg@gmail.com>
2096 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2097 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2098 S:      Maintained
2099 W:      https://mtk.wiki.kernel.org/
2100 C:      irc://chat.freenode.net/linux-mediatek
2101 F:      arch/arm/boot/dts/mt6*
2102 F:      arch/arm/boot/dts/mt7*
2103 F:      arch/arm/boot/dts/mt8*
2104 F:      arch/arm/mach-mediatek/
2105 F:      arch/arm64/boot/dts/mediatek/
2106 F:      drivers/soc/mediatek/
2107 N:      mtk
2108 N:      mt[678]
2109 K:      mediatek
2110
2111 ARM/Mediatek USB3 PHY DRIVER
2112 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2113 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2114 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2115 S:      Maintained
2116 F:      Documentation/devicetree/bindings/phy/mediatek,*
2117 F:      drivers/phy/mediatek/
2118
2119 ARM/Microchip (AT91) SoC support
2120 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2121 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2122 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2123 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2124 S:      Supported
2125 W:      http://www.linux4sam.org
2126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2127 F:      arch/arm/boot/dts/at91*.dts
2128 F:      arch/arm/boot/dts/at91*.dtsi
2129 F:      arch/arm/boot/dts/sama*.dts
2130 F:      arch/arm/boot/dts/sama*.dtsi
2131 F:      arch/arm/include/debug/at91.S
2132 F:      arch/arm/mach-at91/
2133 F:      drivers/memory/atmel*
2134 F:      drivers/watchdog/sama5d4_wdt.c
2135 F:      include/soc/at91/
2136 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2137 X:      drivers/net/wireless/atmel/
2138 N:      at91
2139 N:      atmel
2140
2141 ARM/Microchip Sparx5 SoC support
2142 M:      Lars Povlsen <lars.povlsen@microchip.com>
2143 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2144 M:      UNGLinuxDriver@microchip.com
2145 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2146 S:      Supported
2147 T:      git git://github.com/microchip-ung/linux-upstream.git
2148 F:      arch/arm64/boot/dts/microchip/
2149 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2150 N:      sparx5
2151
2152 Microchip Timer Counter Block (TCB) Capture Driver
2153 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2154 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2155 L:      linux-iio@vger.kernel.org
2156 S:      Maintained
2157 F:      drivers/counter/microchip-tcb-capture.c
2158
2159 ARM/MIOA701 MACHINE SUPPORT
2160 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2161 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2162 S:      Maintained
2163 F:      arch/arm/mach-pxa/mioa701.c
2164
2165 ARM/MStar/Sigmastar Armv7 SoC support
2166 M:      Daniel Palmer <daniel@thingy.jp>
2167 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2168 S:      Maintained
2169 W:      http://linux-chenxing.org/
2170 F:      Documentation/devicetree/bindings/arm/mstar/*
2171 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2172 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2173 F:      arch/arm/boot/dts/mstar-*
2174 F:      arch/arm/mach-mstar/
2175 F:      drivers/clk/mstar/
2176 F:      drivers/gpio/gpio-msc313.c
2177 F:      include/dt-bindings/clock/mstar-*
2178 F:      include/dt-bindings/gpio/msc313-gpio.h
2179
2180 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2181 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2182 S:      Maintained
2183
2184 ARM/NOMADIK/Ux500 ARCHITECTURES
2185 M:      Linus Walleij <linus.walleij@linaro.org>
2186 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2187 S:      Maintained
2188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2189 F:      Documentation/devicetree/bindings/arm/ste-*
2190 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2191 F:      Documentation/devicetree/bindings/arm/ux500/
2192 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2193 F:      arch/arm/boot/dts/ste-*
2194 F:      arch/arm/mach-nomadik/
2195 F:      arch/arm/mach-ux500/
2196 F:      drivers/clk/clk-nomadik.c
2197 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2198 F:      drivers/dma/ste_dma40*
2199 F:      drivers/hwspinlock/u8500_hsem.c
2200 F:      drivers/i2c/busses/i2c-nomadik.c
2201 F:      drivers/iio/adc/ab8500-gpadc.c
2202 F:      drivers/mfd/ab8500*
2203 F:      drivers/mfd/abx500*
2204 F:      drivers/mfd/db8500*
2205 F:      drivers/mfd/dbx500*
2206 F:      drivers/pinctrl/nomadik/
2207 F:      drivers/rtc/rtc-ab8500.c
2208 F:      drivers/rtc/rtc-pl031.c
2209 F:      drivers/soc/ux500/
2210
2211 ARM/NUVOTON NPCM ARCHITECTURE
2212 M:      Avi Fishman <avifishman70@gmail.com>
2213 M:      Tomer Maimon <tmaimon77@gmail.com>
2214 M:      Tali Perry <tali.perry1@gmail.com>
2215 R:      Patrick Venture <venture@google.com>
2216 R:      Nancy Yuen <yuenn@google.com>
2217 R:      Benjamin Fair <benjaminfair@google.com>
2218 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2219 S:      Supported
2220 F:      Documentation/devicetree/bindings/*/*/*npcm*
2221 F:      Documentation/devicetree/bindings/*/*npcm*
2222 F:      arch/arm/boot/dts/nuvoton-npcm*
2223 F:      arch/arm/mach-npcm/
2224 F:      drivers/*/*npcm*
2225 F:      drivers/*/*/*npcm*
2226 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2227
2228 ARM/NUVOTON WPCM450 ARCHITECTURE
2229 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2230 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2231 S:      Maintained
2232 F:      Documentation/devicetree/bindings/*/*wpcm*
2233 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2234 F:      arch/arm/mach-npcm/wpcm450.c
2235 F:      drivers/*/*wpcm*
2236
2237 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2238 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2239 S:      Orphan
2240 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2241 F:      arch/arm/mach-s3c/gta02.h
2242 F:      arch/arm/mach-s3c/mach-gta02.c
2243
2244 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2245 M:      Alexander Clouter <alex@digriz.org.uk>
2246 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2247 S:      Maintained
2248 W:      http://www.digriz.org.uk/ts78xx/kernel
2249 F:      arch/arm/mach-orion5x/ts78xx-*
2250
2251 ARM/OXNAS platform support
2252 M:      Neil Armstrong <narmstrong@baylibre.com>
2253 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2254 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2255 S:      Maintained
2256 F:      arch/arm/boot/dts/ox8*.dts*
2257 F:      arch/arm/mach-oxnas/
2258 F:      drivers/power/reset/oxnas-restart.c
2259 N:      oxnas
2260
2261 ARM/PALM TREO SUPPORT
2262 M:      Tomas Cech <sleep_walker@suse.com>
2263 L:      linux-arm-kernel@lists.infradead.org
2264 S:      Maintained
2265 W:      http://hackndev.com
2266 F:      arch/arm/mach-pxa/palmtreo.*
2267
2268 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2269 M:      Marek Vasut <marek.vasut@gmail.com>
2270 L:      linux-arm-kernel@lists.infradead.org
2271 S:      Maintained
2272 W:      http://hackndev.com
2273 F:      arch/arm/mach-pxa/include/mach/palmld.h
2274 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2275 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2276 F:      arch/arm/mach-pxa/palmld.c
2277 F:      arch/arm/mach-pxa/palmt5.*
2278 F:      arch/arm/mach-pxa/palmtc.c
2279 F:      arch/arm/mach-pxa/palmte2.*
2280 F:      arch/arm/mach-pxa/palmtx.c
2281
2282 ARM/PALMZ72 SUPPORT
2283 M:      Sergey Lapin <slapin@ossfans.org>
2284 L:      linux-arm-kernel@lists.infradead.org
2285 S:      Maintained
2286 W:      http://hackndev.com
2287 F:      arch/arm/mach-pxa/palmz72.*
2288
2289 ARM/PLEB SUPPORT
2290 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2291 S:      Maintained
2292 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2293
2294 ARM/PT DIGITAL BOARD PORT
2295 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2296 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2297 S:      Maintained
2298 W:      http://www.armlinux.org.uk/
2299
2300 ARM/QUALCOMM SUPPORT
2301 M:      Andy Gross <agross@kernel.org>
2302 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2303 L:      linux-arm-msm@vger.kernel.org
2304 S:      Maintained
2305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2306 F:      Documentation/devicetree/bindings/*/qcom*
2307 F:      Documentation/devicetree/bindings/soc/qcom/
2308 F:      arch/arm/boot/dts/qcom-*.dts
2309 F:      arch/arm/boot/dts/qcom-*.dtsi
2310 F:      arch/arm/mach-qcom/
2311 F:      arch/arm64/boot/dts/qcom/
2312 F:      drivers/*/*/qcom*
2313 F:      drivers/*/*/qcom/
2314 F:      drivers/*/pm8???-*
2315 F:      drivers/*/qcom*
2316 F:      drivers/*/qcom/
2317 F:      drivers/bluetooth/btqcomsmd.c
2318 F:      drivers/clocksource/timer-qcom.c
2319 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2320 F:      drivers/extcon/extcon-qcom*
2321 F:      drivers/i2c/busses/i2c-qcom-geni.c
2322 F:      drivers/i2c/busses/i2c-qup.c
2323 F:      drivers/iommu/msm*
2324 F:      drivers/mfd/ssbi.c
2325 F:      drivers/mmc/host/mmci_qcom*
2326 F:      drivers/mmc/host/sdhci-msm.c
2327 F:      drivers/pci/controller/dwc/pcie-qcom.c
2328 F:      drivers/phy/qualcomm/
2329 F:      drivers/power/*/msm*
2330 F:      drivers/reset/reset-qcom-*
2331 F:      drivers/scsi/ufs/ufs-qcom*
2332 F:      drivers/spi/spi-geni-qcom.c
2333 F:      drivers/spi/spi-qcom-qspi.c
2334 F:      drivers/spi/spi-qup.c
2335 F:      drivers/tty/serial/msm_serial.c
2336 F:      drivers/usb/dwc3/dwc3-qcom.c
2337 F:      include/dt-bindings/*/qcom*
2338 F:      include/linux/*/qcom*
2339 F:      include/linux/soc/qcom/
2340
2341 ARM/RADISYS ENP2611 MACHINE SUPPORT
2342 M:      Lennert Buytenhek <kernel@wantstofly.org>
2343 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2344 S:      Maintained
2345
2346 ARM/RDA MICRO ARCHITECTURE
2347 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2348 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2349 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2350 S:      Maintained
2351 F:      Documentation/devicetree/bindings/arm/rda.yaml
2352 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2353 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2354 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2355 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2356 F:      arch/arm/boot/dts/rda8810pl-*
2357 F:      drivers/clocksource/timer-rda.c
2358 F:      drivers/gpio/gpio-rda.c
2359 F:      drivers/irqchip/irq-rda-intc.c
2360 F:      drivers/tty/serial/rda-uart.c
2361
2362 ARM/REALTEK ARCHITECTURE
2363 M:      Andreas Färber <afaerber@suse.de>
2364 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2365 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2366 S:      Maintained
2367 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2368 F:      arch/arm/boot/dts/rtd*
2369 F:      arch/arm/mach-realtek/
2370 F:      arch/arm64/boot/dts/realtek/
2371
2372 ARM/RENESAS ARM64 ARCHITECTURE
2373 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2374 M:      Magnus Damm <magnus.damm@gmail.com>
2375 L:      linux-renesas-soc@vger.kernel.org
2376 S:      Supported
2377 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2379 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2380 F:      arch/arm64/boot/dts/renesas/
2381 F:      drivers/soc/renesas/
2382 F:      include/linux/soc/renesas/
2383
2384 ARM/RISCPC ARCHITECTURE
2385 M:      Russell King <linux@armlinux.org.uk>
2386 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2387 S:      Maintained
2388 W:      http://www.armlinux.org.uk/
2389 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2390 F:      arch/arm/include/asm/hardware/ioc.h
2391 F:      arch/arm/include/asm/hardware/iomd.h
2392 F:      arch/arm/include/asm/hardware/memc.h
2393 F:      arch/arm/mach-rpc/
2394 F:      drivers/net/ethernet/8390/etherh.c
2395 F:      drivers/net/ethernet/i825xx/ether1*
2396 F:      drivers/net/ethernet/seeq/ether3*
2397 F:      drivers/scsi/arm/
2398
2399 ARM/Rockchip SoC support
2400 M:      Heiko Stuebner <heiko@sntech.de>
2401 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2402 L:      linux-rockchip@lists.infradead.org
2403 S:      Maintained
2404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2405 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2406 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2407 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2408 F:      arch/arm/boot/dts/rk3*
2409 F:      arch/arm/boot/dts/rv1108*
2410 F:      arch/arm/mach-rockchip/
2411 F:      drivers/*/*/*rockchip*
2412 F:      drivers/*/*rockchip*
2413 F:      drivers/clk/rockchip/
2414 F:      drivers/i2c/busses/i2c-rk3x.c
2415 F:      sound/soc/rockchip/
2416 N:      rockchip
2417
2418 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2419 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
2420 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2421 L:      linux-samsung-soc@vger.kernel.org
2422 S:      Maintained
2423 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2424 F:      Documentation/arm/samsung/
2425 F:      Documentation/devicetree/bindings/arm/samsung/
2426 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2427 F:      arch/arm/boot/dts/exynos*
2428 F:      arch/arm/boot/dts/s3c*
2429 F:      arch/arm/boot/dts/s5p*
2430 F:      arch/arm/mach-exynos*/
2431 F:      arch/arm/mach-s3c/
2432 F:      arch/arm/mach-s5p*/
2433 F:      arch/arm64/boot/dts/exynos/
2434 F:      drivers/*/*/*s3c24*
2435 F:      drivers/*/*s3c24*
2436 F:      drivers/*/*s3c64xx*
2437 F:      drivers/*/*s5pv210*
2438 F:      drivers/memory/samsung/
2439 F:      drivers/soc/samsung/
2440 F:      drivers/tty/serial/samsung*
2441 F:      include/linux/platform_data/*s3c*
2442 F:      include/linux/serial_s3c.h
2443 F:      include/linux/soc/samsung/
2444 N:      exynos
2445 N:      s3c2410
2446 N:      s3c64xx
2447 N:      s5pv210
2448
2449 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2450 M:      Andrzej Hajda <a.hajda@samsung.com>
2451 L:      linux-arm-kernel@lists.infradead.org
2452 L:      linux-media@vger.kernel.org
2453 S:      Maintained
2454 F:      drivers/media/platform/s5p-g2d/
2455
2456 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2457 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2458 L:      linux-samsung-soc@vger.kernel.org
2459 L:      linux-media@vger.kernel.org
2460 S:      Maintained
2461 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2462 F:      drivers/media/cec/platform/s5p/
2463
2464 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2465 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2466 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2467 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2468 L:      linux-arm-kernel@lists.infradead.org
2469 L:      linux-media@vger.kernel.org
2470 S:      Maintained
2471 F:      drivers/media/platform/s5p-jpeg/
2472
2473 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2474 M:      Andrzej Hajda <a.hajda@samsung.com>
2475 L:      linux-arm-kernel@lists.infradead.org
2476 L:      linux-media@vger.kernel.org
2477 S:      Maintained
2478 F:      drivers/media/platform/s5p-mfc/
2479
2480 ARM/SHMOBILE ARM ARCHITECTURE
2481 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2482 M:      Magnus Damm <magnus.damm@gmail.com>
2483 L:      linux-renesas-soc@vger.kernel.org
2484 S:      Supported
2485 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2487 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2488 F:      arch/arm/boot/dts/emev2*
2489 F:      arch/arm/boot/dts/gr-peach*
2490 F:      arch/arm/boot/dts/iwg20d-q7*
2491 F:      arch/arm/boot/dts/r7s*
2492 F:      arch/arm/boot/dts/r8a*
2493 F:      arch/arm/boot/dts/r9a*
2494 F:      arch/arm/boot/dts/sh*
2495 F:      arch/arm/configs/shmobile_defconfig
2496 F:      arch/arm/include/debug/renesas-scif.S
2497 F:      arch/arm/mach-shmobile/
2498 F:      drivers/soc/renesas/
2499 F:      include/linux/soc/renesas/
2500
2501 ARM/SOCFPGA ARCHITECTURE
2502 M:      Dinh Nguyen <dinguyen@kernel.org>
2503 S:      Maintained
2504 W:      http://www.rocketboards.org
2505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2506 F:      arch/arm/boot/dts/socfpga*
2507 F:      arch/arm/configs/socfpga_defconfig
2508 F:      arch/arm/mach-socfpga/
2509 F:      arch/arm64/boot/dts/altera/
2510 F:      arch/arm64/boot/dts/intel/
2511
2512 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2513 M:      Dinh Nguyen <dinguyen@kernel.org>
2514 S:      Maintained
2515 F:      drivers/clk/socfpga/
2516
2517 ARM/SOCFPGA EDAC SUPPORT
2518 M:      Dinh Nguyen <dinguyen@kernel.org>
2519 S:      Maintained
2520 F:      drivers/edac/altera_edac.[ch]
2521
2522 ARM/SPREADTRUM SoC SUPPORT
2523 M:      Orson Zhai <orsonzhai@gmail.com>
2524 M:      Baolin Wang <baolin.wang7@gmail.com>
2525 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2526 S:      Maintained
2527 F:      arch/arm64/boot/dts/sprd
2528 N:      sprd
2529 N:      sc27xx
2530 N:      sc2731
2531
2532 ARM/STI ARCHITECTURE
2533 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2534 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2535 S:      Maintained
2536 W:      http://www.stlinux.com
2537 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2538 F:      arch/arm/boot/dts/sti*
2539 F:      arch/arm/mach-sti/
2540 F:      drivers/ata/ahci_st.c
2541 F:      drivers/char/hw_random/st-rng.c
2542 F:      drivers/clocksource/arm_global_timer.c
2543 F:      drivers/clocksource/clksrc_st_lpc.c
2544 F:      drivers/cpufreq/sti-cpufreq.c
2545 F:      drivers/dma/st_fdma*
2546 F:      drivers/i2c/busses/i2c-st.c
2547 F:      drivers/media/platform/sti/c8sectpfe/
2548 F:      drivers/media/rc/st_rc.c
2549 F:      drivers/mmc/host/sdhci-st.c
2550 F:      drivers/phy/st/phy-miphy28lp.c
2551 F:      drivers/phy/st/phy-stih407-usb.c
2552 F:      drivers/pinctrl/pinctrl-st.c
2553 F:      drivers/remoteproc/st_remoteproc.c
2554 F:      drivers/remoteproc/st_slim_rproc.c
2555 F:      drivers/reset/sti/
2556 F:      drivers/rtc/rtc-st-lpc.c
2557 F:      drivers/tty/serial/st-asc.c
2558 F:      drivers/usb/dwc3/dwc3-st.c
2559 F:      drivers/usb/host/ehci-st.c
2560 F:      drivers/usb/host/ohci-st.c
2561 F:      drivers/watchdog/st_lpc_wdt.c
2562 F:      include/linux/remoteproc/st_slim_rproc.h
2563
2564 ARM/STM32 ARCHITECTURE
2565 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2566 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2567 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2568 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2569 S:      Maintained
2570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2571 F:      arch/arm/boot/dts/stm32*
2572 F:      arch/arm/mach-stm32/
2573 F:      drivers/clocksource/armv7m_systick.c
2574 N:      stm32
2575 N:      stm
2576
2577 ARM/Synaptics SoC support
2578 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2579 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2580 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2581 S:      Maintained
2582 F:      arch/arm/boot/dts/berlin*
2583 F:      arch/arm/mach-berlin/
2584 F:      arch/arm64/boot/dts/synaptics/
2585
2586 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2587 M:      Lennert Buytenhek <kernel@wantstofly.org>
2588 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2589 S:      Maintained
2590
2591 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2592 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2593 L:      linux-tegra@vger.kernel.org
2594 L:      linux-media@vger.kernel.org
2595 S:      Maintained
2596 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2597 F:      drivers/media/cec/platform/tegra/
2598
2599 ARM/TETON BGA MACHINE SUPPORT
2600 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2601 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2602 S:      Maintained
2603
2604 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2605 M:      Santosh Shilimkar <ssantosh@kernel.org>
2606 L:      linux-kernel@vger.kernel.org
2607 S:      Maintained
2608 F:      drivers/memory/*emif*
2609
2610 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2611 M:      Santosh Shilimkar <ssantosh@kernel.org>
2612 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2613 S:      Maintained
2614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2615 F:      arch/arm/boot/dts/keystone-*
2616 F:      arch/arm/mach-keystone/
2617
2618 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2619 M:      Santosh Shilimkar <ssantosh@kernel.org>
2620 L:      linux-kernel@vger.kernel.org
2621 S:      Maintained
2622 F:      drivers/clk/keystone/
2623
2624 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2625 M:      Santosh Shilimkar <ssantosh@kernel.org>
2626 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2627 L:      linux-kernel@vger.kernel.org
2628 S:      Maintained
2629 F:      drivers/clocksource/timer-keystone.c
2630
2631 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2632 M:      Santosh Shilimkar <ssantosh@kernel.org>
2633 L:      linux-kernel@vger.kernel.org
2634 S:      Maintained
2635 F:      drivers/power/reset/keystone-reset.c
2636
2637 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2638 M:      Nishanth Menon <nm@ti.com>
2639 M:      Tero Kristo <kristo@kernel.org>
2640 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2641 S:      Supported
2642 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2643 F:      arch/arm64/boot/dts/ti/Makefile
2644 F:      arch/arm64/boot/dts/ti/k3-*
2645 F:      include/dt-bindings/pinctrl/k3.h
2646
2647 ARM/THECUS N2100 MACHINE SUPPORT
2648 M:      Lennert Buytenhek <kernel@wantstofly.org>
2649 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2650 S:      Maintained
2651
2652 ARM/TOSA MACHINE SUPPORT
2653 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2654 M:      Dirk Opfer <dirk@opfer-online.de>
2655 S:      Maintained
2656
2657 ARM/TOSHIBA VISCONTI ARCHITECTURE
2658 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2659 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2660 S:      Supported
2661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2662 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2663 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2664 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2665 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2666 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2667 F:      arch/arm64/boot/dts/toshiba/
2668 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2669 F:      drivers/gpio/gpio-visconti.c
2670 F:      drivers/pinctrl/visconti/
2671 F:      drivers/watchdog/visconti_wdt.c
2672 N:      visconti
2673
2674 ARM/UNIPHIER ARCHITECTURE
2675 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2676 M:      Masami Hiramatsu <mhiramat@kernel.org>
2677 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2678 S:      Maintained
2679 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2680 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2681 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2682 F:      arch/arm/boot/dts/uniphier*
2683 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2684 F:      arch/arm/mach-uniphier/
2685 F:      arch/arm/mm/cache-uniphier.c
2686 F:      arch/arm64/boot/dts/socionext/uniphier*
2687 F:      drivers/bus/uniphier-system-bus.c
2688 F:      drivers/clk/uniphier/
2689 F:      drivers/dma/uniphier-mdmac.c
2690 F:      drivers/gpio/gpio-uniphier.c
2691 F:      drivers/i2c/busses/i2c-uniphier*
2692 F:      drivers/irqchip/irq-uniphier-aidet.c
2693 F:      drivers/mmc/host/uniphier-sd.c
2694 F:      drivers/pinctrl/uniphier/
2695 F:      drivers/reset/reset-uniphier.c
2696 F:      drivers/tty/serial/8250/8250_uniphier.c
2697 N:      uniphier
2698
2699 ARM/VERSATILE EXPRESS PLATFORM
2700 M:      Liviu Dudau <liviu.dudau@arm.com>
2701 M:      Sudeep Holla <sudeep.holla@arm.com>
2702 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2703 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2704 S:      Maintained
2705 F:      */*/*/vexpress*
2706 F:      */*/vexpress*
2707 F:      arch/arm/boot/dts/vexpress*
2708 F:      arch/arm/mach-vexpress/
2709 F:      arch/arm64/boot/dts/arm/
2710 F:      drivers/clk/versatile/clk-vexpress-osc.c
2711 F:      drivers/clocksource/timer-versatile.c
2712 N:      mps2
2713
2714 ARM/VFP SUPPORT
2715 M:      Russell King <linux@armlinux.org.uk>
2716 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2717 S:      Maintained
2718 W:      http://www.armlinux.org.uk/
2719 F:      arch/arm/vfp/
2720
2721 ARM/VOIPAC PXA270 SUPPORT
2722 M:      Marek Vasut <marek.vasut@gmail.com>
2723 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2724 S:      Maintained
2725 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2726 F:      arch/arm/mach-pxa/vpac270.c
2727
2728 ARM/VT8500 ARM ARCHITECTURE
2729 M:      Tony Prisk <linux@prisktech.co.nz>
2730 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2731 S:      Maintained
2732 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2733 F:      arch/arm/mach-vt8500/
2734 F:      drivers/clocksource/timer-vt8500.c
2735 F:      drivers/i2c/busses/i2c-wmt.c
2736 F:      drivers/mmc/host/wmt-sdmmc.c
2737 F:      drivers/pwm/pwm-vt8500.c
2738 F:      drivers/rtc/rtc-vt8500.c
2739 F:      drivers/tty/serial/vt8500_serial.c
2740 F:      drivers/usb/host/ehci-platform.c
2741 F:      drivers/usb/host/uhci-platform.c
2742 F:      drivers/video/fbdev/vt8500lcdfb.*
2743 F:      drivers/video/fbdev/wm8505fb*
2744 F:      drivers/video/fbdev/wmt_ge_rops.*
2745
2746 ARM/ZIPIT Z2 SUPPORT
2747 M:      Marek Vasut <marek.vasut@gmail.com>
2748 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2749 S:      Maintained
2750 F:      arch/arm/mach-pxa/include/mach/z2.h
2751 F:      arch/arm/mach-pxa/z2.c
2752
2753 ARM/ZYNQ ARCHITECTURE
2754 M:      Michal Simek <michal.simek@xilinx.com>
2755 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2756 S:      Supported
2757 W:      http://wiki.xilinx.com
2758 T:      git https://github.com/Xilinx/linux-xlnx.git
2759 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2760 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2761 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2762 F:      arch/arm/mach-zynq/
2763 F:      drivers/clocksource/timer-cadence-ttc.c
2764 F:      drivers/cpuidle/cpuidle-zynq.c
2765 F:      drivers/edac/synopsys_edac.c
2766 F:      drivers/i2c/busses/i2c-cadence.c
2767 F:      drivers/i2c/busses/i2c-xiic.c
2768 F:      drivers/mmc/host/sdhci-of-arasan.c
2769 N:      zynq
2770 N:      xilinx
2771
2772 ARM64 PORT (AARCH64 ARCHITECTURE)
2773 M:      Catalin Marinas <catalin.marinas@arm.com>
2774 M:      Will Deacon <will@kernel.org>
2775 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2776 S:      Maintained
2777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2778 F:      Documentation/arm64/
2779 F:      arch/arm64/
2780 F:      tools/testing/selftests/arm64/
2781 X:      arch/arm64/boot/dts/
2782
2783 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2784 M:      George McCollister <george.mccollister@gmail.com>
2785 L:      netdev@vger.kernel.org
2786 S:      Maintained
2787 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2788 F:      drivers/net/dsa/xrs700x/*
2789 F:      net/dsa/tag_xrs700x.c
2790
2791 AS3645A LED FLASH CONTROLLER DRIVER
2792 M:      Sakari Ailus <sakari.ailus@iki.fi>
2793 L:      linux-leds@vger.kernel.org
2794 S:      Maintained
2795 F:      drivers/leds/leds-as3645a.c
2796
2797 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2798 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2799 L:      linux-media@vger.kernel.org
2800 S:      Maintained
2801 T:      git git://linuxtv.org/media_tree.git
2802 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2803 F:      drivers/media/i2c/ak7375.c
2804
2805 ASAHI KASEI AK8974 DRIVER
2806 M:      Linus Walleij <linus.walleij@linaro.org>
2807 L:      linux-iio@vger.kernel.org
2808 S:      Supported
2809 W:      http://www.akm.com/
2810 F:      drivers/iio/magnetometer/ak8974.c
2811
2812 ASC7621 HARDWARE MONITOR DRIVER
2813 M:      George Joseph <george.joseph@fairview5.com>
2814 L:      linux-hwmon@vger.kernel.org
2815 S:      Maintained
2816 F:      Documentation/hwmon/asc7621.rst
2817 F:      drivers/hwmon/asc7621.c
2818
2819 ASPEED PINCTRL DRIVERS
2820 M:      Andrew Jeffery <andrew@aj.id.au>
2821 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2822 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2823 L:      linux-gpio@vger.kernel.org
2824 S:      Maintained
2825 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2826 F:      drivers/pinctrl/aspeed/
2827
2828 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2829 M:      Eddie James <eajames@linux.ibm.com>
2830 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2831 S:      Maintained
2832 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2833 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2834 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2835
2836 ASPEED SD/MMC DRIVER
2837 M:      Andrew Jeffery <andrew@aj.id.au>
2838 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2839 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2840 L:      linux-mmc@vger.kernel.org
2841 S:      Maintained
2842 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
2843 F:      drivers/mmc/host/sdhci-of-aspeed*
2844
2845 ASPEED VIDEO ENGINE DRIVER
2846 M:      Eddie James <eajames@linux.ibm.com>
2847 L:      linux-media@vger.kernel.org
2848 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2849 S:      Maintained
2850 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2851 F:      drivers/media/platform/aspeed-video.c
2852
2853 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2854 M:      Corentin Chary <corentin.chary@gmail.com>
2855 L:      acpi4asus-user@lists.sourceforge.net
2856 L:      platform-driver-x86@vger.kernel.org
2857 S:      Maintained
2858 W:      http://acpi4asus.sf.net
2859 F:      drivers/platform/x86/asus*.c
2860 F:      drivers/platform/x86/eeepc*.c
2861
2862 ASUS WIRELESS RADIO CONTROL DRIVER
2863 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2864 L:      platform-driver-x86@vger.kernel.org
2865 S:      Maintained
2866 F:      drivers/platform/x86/asus-wireless.c
2867
2868 ASYMMETRIC KEYS
2869 M:      David Howells <dhowells@redhat.com>
2870 L:      keyrings@vger.kernel.org
2871 S:      Maintained
2872 F:      Documentation/crypto/asymmetric-keys.rst
2873 F:      crypto/asymmetric_keys/
2874 F:      include/crypto/pkcs7.h
2875 F:      include/crypto/public_key.h
2876 F:      include/linux/verification.h
2877
2878 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2879 R:      Dan Williams <dan.j.williams@intel.com>
2880 S:      Odd fixes
2881 W:      http://sourceforge.net/projects/xscaleiop
2882 F:      Documentation/crypto/async-tx-api.rst
2883 F:      crypto/async_tx/
2884 F:      include/linux/async_tx.h
2885
2886 AT24 EEPROM DRIVER
2887 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2888 L:      linux-i2c@vger.kernel.org
2889 S:      Maintained
2890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2891 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2892 F:      drivers/misc/eeprom/at24.c
2893
2894 ATA OVER ETHERNET (AOE) DRIVER
2895 M:      "Justin Sanders" <justin@coraid.com>
2896 S:      Supported
2897 W:      http://www.openaoe.org/
2898 F:      Documentation/admin-guide/aoe/
2899 F:      drivers/block/aoe/
2900
2901 ATC260X PMIC MFD DRIVER
2902 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2903 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
2904 L:      linux-actions@lists.infradead.org
2905 S:      Maintained
2906 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
2907 F:      drivers/input/misc/atc260x-onkey.c
2908 F:      drivers/mfd/atc260*
2909 F:      drivers/power/reset/atc260x-poweroff.c
2910 F:      drivers/regulator/atc260x-regulator.c
2911 F:      include/linux/mfd/atc260x/*
2912
2913 ATHEROS 71XX/9XXX GPIO DRIVER
2914 M:      Alban Bedel <albeu@free.fr>
2915 S:      Maintained
2916 W:      https://github.com/AlbanBedel/linux
2917 T:      git git://github.com/AlbanBedel/linux
2918 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2919 F:      drivers/gpio/gpio-ath79.c
2920
2921 ATHEROS 71XX/9XXX USB PHY DRIVER
2922 M:      Alban Bedel <albeu@free.fr>
2923 S:      Maintained
2924 W:      https://github.com/AlbanBedel/linux
2925 T:      git git://github.com/AlbanBedel/linux
2926 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2927 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2928
2929 ATHEROS ATH GENERIC UTILITIES
2930 M:      Kalle Valo <kvalo@codeaurora.org>
2931 L:      linux-wireless@vger.kernel.org
2932 S:      Supported
2933 F:      drivers/net/wireless/ath/*
2934
2935 ATHEROS ATH5K WIRELESS DRIVER
2936 M:      Jiri Slaby <jirislaby@kernel.org>
2937 M:      Nick Kossifidis <mickflemm@gmail.com>
2938 M:      Luis Chamberlain <mcgrof@kernel.org>
2939 L:      linux-wireless@vger.kernel.org
2940 S:      Maintained
2941 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2942 F:      drivers/net/wireless/ath/ath5k/
2943
2944 ATHEROS ATH6KL WIRELESS DRIVER
2945 M:      Kalle Valo <kvalo@codeaurora.org>
2946 L:      linux-wireless@vger.kernel.org
2947 S:      Supported
2948 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2950 F:      drivers/net/wireless/ath/ath6kl/
2951
2952 ATI_REMOTE2 DRIVER
2953 M:      Ville Syrjala <syrjala@sci.fi>
2954 S:      Maintained
2955 F:      drivers/input/misc/ati_remote2.c
2956
2957 ATK0110 HWMON DRIVER
2958 M:      Luca Tettamanti <kronos.it@gmail.com>
2959 L:      linux-hwmon@vger.kernel.org
2960 S:      Maintained
2961 F:      drivers/hwmon/asus_atk0110.c
2962
2963 ATLX ETHERNET DRIVERS
2964 M:      Chris Snook <chris.snook@gmail.com>
2965 L:      netdev@vger.kernel.org
2966 S:      Maintained
2967 W:      http://sourceforge.net/projects/atl1
2968 W:      http://atl1.sourceforge.net
2969 F:      drivers/net/ethernet/atheros/
2970
2971 ATM
2972 M:      Chas Williams <3chas3@gmail.com>
2973 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2974 L:      netdev@vger.kernel.org
2975 S:      Maintained
2976 W:      http://linux-atm.sourceforge.net
2977 F:      drivers/atm/
2978 F:      include/linux/atm*
2979 F:      include/uapi/linux/atm*
2980
2981 ATMEL MACB ETHERNET DRIVER
2982 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2983 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2984 S:      Supported
2985 F:      drivers/net/ethernet/cadence/
2986
2987 ATMEL MAXTOUCH DRIVER
2988 M:      Nick Dyer <nick@shmanahar.org>
2989 S:      Maintained
2990 T:      git git://github.com/ndyer/linux.git
2991 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
2992 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2993
2994 ATMEL WIRELESS DRIVER
2995 M:      Simon Kelley <simon@thekelleys.org.uk>
2996 L:      linux-wireless@vger.kernel.org
2997 S:      Maintained
2998 W:      http://www.thekelleys.org.uk/atmel
2999 W:      http://atmelwlandriver.sourceforge.net/
3000 F:      drivers/net/wireless/atmel/atmel*
3001
3002 ATOMIC INFRASTRUCTURE
3003 M:      Will Deacon <will@kernel.org>
3004 M:      Peter Zijlstra <peterz@infradead.org>
3005 R:      Boqun Feng <boqun.feng@gmail.com>
3006 L:      linux-kernel@vger.kernel.org
3007 S:      Maintained
3008 F:      arch/*/include/asm/atomic*.h
3009 F:      include/*/atomic*.h
3010 F:      include/linux/refcount.h
3011 F:      Documentation/atomic_*.txt
3012 F:      scripts/atomic/
3013
3014 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3015 M:      Bradley Grove <linuxdrivers@attotech.com>
3016 L:      linux-scsi@vger.kernel.org
3017 S:      Supported
3018 W:      http://www.attotech.com
3019 F:      drivers/scsi/esas2r
3020
3021 ATUSB IEEE 802.15.4 RADIO DRIVER
3022 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3023 L:      linux-wpan@vger.kernel.org
3024 S:      Maintained
3025 F:      drivers/net/ieee802154/at86rf230.h
3026 F:      drivers/net/ieee802154/atusb.c
3027 F:      drivers/net/ieee802154/atusb.h
3028
3029 AUDIT SUBSYSTEM
3030 M:      Paul Moore <paul@paul-moore.com>
3031 M:      Eric Paris <eparis@redhat.com>
3032 L:      linux-audit@redhat.com (moderated for non-subscribers)
3033 S:      Supported
3034 W:      https://github.com/linux-audit
3035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3036 F:      include/asm-generic/audit_*.h
3037 F:      include/linux/audit.h
3038 F:      include/uapi/linux/audit.h
3039 F:      kernel/audit*
3040 F:      lib/*audit.c
3041
3042 AUXILIARY DISPLAY DRIVERS
3043 M:      Miguel Ojeda <ojeda@kernel.org>
3044 S:      Maintained
3045 F:      drivers/auxdisplay/
3046 F:      include/linux/cfag12864b.h
3047
3048 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3049 M:      Andreas Klinger <ak@it-klinger.de>
3050 L:      linux-iio@vger.kernel.org
3051 S:      Maintained
3052 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3053 F:      drivers/iio/adc/hx711.c
3054
3055 AX.25 NETWORK LAYER
3056 M:      Ralf Baechle <ralf@linux-mips.org>
3057 L:      linux-hams@vger.kernel.org
3058 S:      Maintained
3059 W:      http://www.linux-ax25.org/
3060 F:      include/net/ax25.h
3061 F:      include/uapi/linux/ax25.h
3062 F:      net/ax25/
3063
3064 AXENTIA ARM DEVICES
3065 M:      Peter Rosin <peda@axentia.se>
3066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3067 S:      Maintained
3068 F:      arch/arm/boot/dts/at91-linea.dtsi
3069 F:      arch/arm/boot/dts/at91-natte.dtsi
3070 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3071 F:      arch/arm/boot/dts/at91-tse850-3.dts
3072
3073 AXENTIA ASOC DRIVERS
3074 M:      Peter Rosin <peda@axentia.se>
3075 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3076 S:      Maintained
3077 F:      Documentation/devicetree/bindings/sound/axentia,*
3078 F:      sound/soc/atmel/tse850-pcm5142.c
3079
3080 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3081 M:      Nuno Sá <nuno.sa@analog.com>
3082 L:      linux-hwmon@vger.kernel.org
3083 S:      Supported
3084 W:      http://ez.analog.com/community/linux-device-drivers
3085 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3086 F:      drivers/hwmon/axi-fan-control.c
3087
3088 AXXIA I2C CONTROLLER
3089 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3090 L:      linux-i2c@vger.kernel.org
3091 S:      Maintained
3092 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3093 F:      drivers/i2c/busses/i2c-axxia.c
3094
3095 AZ6007 DVB DRIVER
3096 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3097 L:      linux-media@vger.kernel.org
3098 S:      Maintained
3099 W:      https://linuxtv.org
3100 T:      git git://linuxtv.org/media_tree.git
3101 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3102
3103 AZTECH FM RADIO RECEIVER DRIVER
3104 M:      Hans Verkuil <hverkuil@xs4all.nl>
3105 L:      linux-media@vger.kernel.org
3106 S:      Maintained
3107 W:      https://linuxtv.org
3108 T:      git git://linuxtv.org/media_tree.git
3109 F:      drivers/media/radio/radio-aztech*
3110
3111 B43 WIRELESS DRIVER
3112 L:      linux-wireless@vger.kernel.org
3113 L:      b43-dev@lists.infradead.org
3114 S:      Odd Fixes
3115 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3116 F:      drivers/net/wireless/broadcom/b43/
3117
3118 B43LEGACY WIRELESS DRIVER
3119 M:      Larry Finger <Larry.Finger@lwfinger.net>
3120 L:      linux-wireless@vger.kernel.org
3121 L:      b43-dev@lists.infradead.org
3122 S:      Maintained
3123 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3124 F:      drivers/net/wireless/broadcom/b43legacy/
3125
3126 BACKLIGHT CLASS/SUBSYSTEM
3127 M:      Lee Jones <lee.jones@linaro.org>
3128 M:      Daniel Thompson <daniel.thompson@linaro.org>
3129 M:      Jingoo Han <jingoohan1@gmail.com>
3130 L:      dri-devel@lists.freedesktop.org
3131 S:      Maintained
3132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3133 F:      Documentation/ABI/stable/sysfs-class-backlight
3134 F:      Documentation/ABI/testing/sysfs-class-backlight
3135 F:      Documentation/devicetree/bindings/leds/backlight
3136 F:      drivers/video/backlight/
3137 F:      include/linux/backlight.h
3138 F:      include/linux/pwm_backlight.h
3139
3140 BATMAN ADVANCED
3141 M:      Marek Lindner <mareklindner@neomailbox.ch>
3142 M:      Simon Wunderlich <sw@simonwunderlich.de>
3143 M:      Antonio Quartulli <a@unstable.cc>
3144 M:      Sven Eckelmann <sven@narfation.org>
3145 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3146 S:      Maintained
3147 W:      https://www.open-mesh.org/
3148 Q:      https://patchwork.open-mesh.org/project/batman/list/
3149 B:      https://www.open-mesh.org/projects/batman-adv/issues
3150 C:      irc://chat.freenode.net/batman
3151 T:      git https://git.open-mesh.org/linux-merge.git
3152 F:      Documentation/networking/batman-adv.rst
3153 F:      include/uapi/linux/batadv_packet.h
3154 F:      include/uapi/linux/batman_adv.h
3155 F:      net/batman-adv/
3156
3157 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3158 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3159 L:      linux-hams@vger.kernel.org
3160 S:      Maintained
3161 W:      http://www.baycom.org/~tom/ham/ham.html
3162 F:      drivers/net/hamradio/baycom*
3163
3164 BCACHE (BLOCK LAYER CACHE)
3165 M:      Coly Li <colyli@suse.de>
3166 M:      Kent Overstreet <kent.overstreet@gmail.com>
3167 L:      linux-bcache@vger.kernel.org
3168 S:      Maintained
3169 W:      http://bcache.evilpiepirate.org
3170 C:      irc://irc.oftc.net/bcache
3171 F:      drivers/md/bcache/
3172
3173 BDISP ST MEDIA DRIVER
3174 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3175 L:      linux-media@vger.kernel.org
3176 S:      Supported
3177 W:      https://linuxtv.org
3178 T:      git git://linuxtv.org/media_tree.git
3179 F:      drivers/media/platform/sti/bdisp
3180
3181 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3182 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3183 L:      netdev@vger.kernel.org
3184 S:      Maintained
3185 F:      drivers/net/ethernet/ec_bhf.c
3186
3187 BEFS FILE SYSTEM
3188 M:      Luis de Bethencourt <luisbg@kernel.org>
3189 M:      Salah Triki <salah.triki@gmail.com>
3190 S:      Maintained
3191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3192 F:      Documentation/filesystems/befs.rst
3193 F:      fs/befs/
3194
3195 BFQ I/O SCHEDULER
3196 M:      Paolo Valente <paolo.valente@linaro.org>
3197 M:      Jens Axboe <axboe@kernel.dk>
3198 L:      linux-block@vger.kernel.org
3199 S:      Maintained
3200 F:      Documentation/block/bfq-iosched.rst
3201 F:      block/bfq-*
3202
3203 BFS FILE SYSTEM
3204 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3205 S:      Maintained
3206 F:      Documentation/filesystems/bfs.rst
3207 F:      fs/bfs/
3208 F:      include/uapi/linux/bfs_fs.h
3209
3210 BLINKM RGB LED DRIVER
3211 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3212 S:      Maintained
3213 F:      drivers/leds/leds-blinkm.c
3214
3215 BLOCK LAYER
3216 M:      Jens Axboe <axboe@kernel.dk>
3217 L:      linux-block@vger.kernel.org
3218 S:      Maintained
3219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3220 F:      block/
3221 F:      drivers/block/
3222 F:      fs/block_dev.c
3223 F:      include/linux/blk*
3224 F:      kernel/trace/blktrace.c
3225 F:      lib/sbitmap.c
3226
3227 BLOCK2MTD DRIVER
3228 M:      Joern Engel <joern@lazybastard.org>
3229 L:      linux-mtd@lists.infradead.org
3230 S:      Maintained
3231 F:      drivers/mtd/devices/block2mtd.c
3232
3233 BLUETOOTH DRIVERS
3234 M:      Marcel Holtmann <marcel@holtmann.org>
3235 M:      Johan Hedberg <johan.hedberg@gmail.com>
3236 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3237 L:      linux-bluetooth@vger.kernel.org
3238 S:      Supported
3239 W:      http://www.bluez.org/
3240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3242 F:      drivers/bluetooth/
3243
3244 BLUETOOTH SUBSYSTEM
3245 M:      Marcel Holtmann <marcel@holtmann.org>
3246 M:      Johan Hedberg <johan.hedberg@gmail.com>
3247 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3248 L:      linux-bluetooth@vger.kernel.org
3249 S:      Supported
3250 W:      http://www.bluez.org/
3251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3253 F:      include/net/bluetooth/
3254 F:      net/bluetooth/
3255
3256 BONDING DRIVER
3257 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3258 M:      Veaceslav Falico <vfalico@gmail.com>
3259 M:      Andy Gospodarek <andy@greyhouse.net>
3260 L:      netdev@vger.kernel.org
3261 S:      Supported
3262 W:      http://sourceforge.net/projects/bonding/
3263 F:      drivers/net/bonding/
3264 F:      include/net/bonding.h
3265 F:      include/uapi/linux/if_bonding.h
3266
3267 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3268 M:      Dan Robertson <dan@dlrobertson.com>
3269 L:      linux-iio@vger.kernel.org
3270 S:      Maintained
3271 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3272 F:      drivers/iio/accel/bma400*
3273
3274 BPF (Safe dynamic programs and tools)
3275 M:      Alexei Starovoitov <ast@kernel.org>
3276 M:      Daniel Borkmann <daniel@iogearbox.net>
3277 M:      Andrii Nakryiko <andrii@kernel.org>
3278 R:      Martin KaFai Lau <kafai@fb.com>
3279 R:      Song Liu <songliubraving@fb.com>
3280 R:      Yonghong Song <yhs@fb.com>
3281 R:      John Fastabend <john.fastabend@gmail.com>
3282 R:      KP Singh <kpsingh@kernel.org>
3283 L:      netdev@vger.kernel.org
3284 L:      bpf@vger.kernel.org
3285 S:      Supported
3286 W:      https://bpf.io/
3287 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3290 F:      Documentation/bpf/
3291 F:      Documentation/networking/filter.rst
3292 F:      Documentation/userspace-api/ebpf/
3293 F:      arch/*/net/*
3294 F:      include/linux/bpf*
3295 F:      include/linux/filter.h
3296 F:      include/trace/events/xdp.h
3297 F:      include/uapi/linux/bpf*
3298 F:      include/uapi/linux/filter.h
3299 F:      kernel/bpf/
3300 F:      kernel/trace/bpf_trace.c
3301 F:      lib/test_bpf.c
3302 F:      net/bpf/
3303 F:      net/core/filter.c
3304 F:      net/sched/act_bpf.c
3305 F:      net/sched/cls_bpf.c
3306 F:      samples/bpf/
3307 F:      scripts/bpf_doc.py
3308 F:      tools/bpf/
3309 F:      tools/lib/bpf/
3310 F:      tools/testing/selftests/bpf/
3311 N:      bpf
3312 K:      bpf
3313
3314 BPF JIT for ARM
3315 M:      Shubham Bansal <illusionist.neo@gmail.com>
3316 L:      netdev@vger.kernel.org
3317 L:      bpf@vger.kernel.org
3318 S:      Maintained
3319 F:      arch/arm/net/
3320
3321 BPF JIT for ARM64
3322 M:      Daniel Borkmann <daniel@iogearbox.net>
3323 M:      Alexei Starovoitov <ast@kernel.org>
3324 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3325 L:      netdev@vger.kernel.org
3326 L:      bpf@vger.kernel.org
3327 S:      Supported
3328 F:      arch/arm64/net/
3329
3330 BPF JIT for MIPS (32-BIT AND 64-BIT)
3331 M:      Paul Burton <paulburton@kernel.org>
3332 L:      netdev@vger.kernel.org
3333 L:      bpf@vger.kernel.org
3334 S:      Maintained
3335 F:      arch/mips/net/
3336
3337 BPF JIT for NFP NICs
3338 M:      Jakub Kicinski <kuba@kernel.org>
3339 L:      netdev@vger.kernel.org
3340 L:      bpf@vger.kernel.org
3341 S:      Supported
3342 F:      drivers/net/ethernet/netronome/nfp/bpf/
3343
3344 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3345 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3346 M:      Sandipan Das <sandipan@linux.ibm.com>
3347 L:      netdev@vger.kernel.org
3348 L:      bpf@vger.kernel.org
3349 S:      Maintained
3350 F:      arch/powerpc/net/
3351
3352 BPF JIT for RISC-V (32-bit)
3353 M:      Luke Nelson <luke.r.nels@gmail.com>
3354 M:      Xi Wang <xi.wang@gmail.com>
3355 L:      netdev@vger.kernel.org
3356 L:      bpf@vger.kernel.org
3357 S:      Maintained
3358 F:      arch/riscv/net/
3359 X:      arch/riscv/net/bpf_jit_comp64.c
3360
3361 BPF JIT for RISC-V (64-bit)
3362 M:      Björn Töpel <bjorn@kernel.org>
3363 L:      netdev@vger.kernel.org
3364 L:      bpf@vger.kernel.org
3365 S:      Maintained
3366 F:      arch/riscv/net/
3367 X:      arch/riscv/net/bpf_jit_comp32.c
3368
3369 BPF JIT for S390
3370 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3371 M:      Heiko Carstens <hca@linux.ibm.com>
3372 M:      Vasily Gorbik <gor@linux.ibm.com>
3373 L:      netdev@vger.kernel.org
3374 L:      bpf@vger.kernel.org
3375 S:      Maintained
3376 F:      arch/s390/net/
3377 X:      arch/s390/net/pnet.c
3378
3379 BPF JIT for SPARC (32-BIT AND 64-BIT)
3380 M:      David S. Miller <davem@davemloft.net>
3381 L:      netdev@vger.kernel.org
3382 L:      bpf@vger.kernel.org
3383 S:      Maintained
3384 F:      arch/sparc/net/
3385
3386 BPF JIT for X86 32-BIT
3387 M:      Wang YanQing <udknight@gmail.com>
3388 L:      netdev@vger.kernel.org
3389 L:      bpf@vger.kernel.org
3390 S:      Maintained
3391 F:      arch/x86/net/bpf_jit_comp32.c
3392
3393 BPF JIT for X86 64-BIT
3394 M:      Alexei Starovoitov <ast@kernel.org>
3395 M:      Daniel Borkmann <daniel@iogearbox.net>
3396 L:      netdev@vger.kernel.org
3397 L:      bpf@vger.kernel.org
3398 S:      Supported
3399 F:      arch/x86/net/
3400 X:      arch/x86/net/bpf_jit_comp32.c
3401
3402 BPF LSM (Security Audit and Enforcement using BPF)
3403 M:      KP Singh <kpsingh@kernel.org>
3404 R:      Florent Revest <revest@chromium.org>
3405 R:      Brendan Jackman <jackmanb@chromium.org>
3406 L:      bpf@vger.kernel.org
3407 S:      Maintained
3408 F:      Documentation/bpf/bpf_lsm.rst
3409 F:      include/linux/bpf_lsm.h
3410 F:      kernel/bpf/bpf_lsm.c
3411 F:      security/bpf/
3412
3413 BROADCOM B44 10/100 ETHERNET DRIVER
3414 M:      Michael Chan <michael.chan@broadcom.com>
3415 L:      netdev@vger.kernel.org
3416 S:      Supported
3417 F:      drivers/net/ethernet/broadcom/b44.*
3418
3419 BROADCOM B53 ETHERNET SWITCH DRIVER
3420 M:      Florian Fainelli <f.fainelli@gmail.com>
3421 L:      netdev@vger.kernel.org
3422 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3423 S:      Supported
3424 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3425 F:      drivers/net/dsa/b53/*
3426 F:      include/linux/dsa/brcm.h
3427 F:      include/linux/platform_data/b53.h
3428
3429 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3430 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3431 L:      bcm-kernel-feedback-list@broadcom.com
3432 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3433 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3434 S:      Maintained
3435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3436 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3437 F:      drivers/pci/controller/pcie-brcmstb.c
3438 F:      drivers/staging/vc04_services
3439 N:      bcm2711
3440 N:      bcm283*
3441
3442 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3443 M:      Florian Fainelli <f.fainelli@gmail.com>
3444 M:      Ray Jui <rjui@broadcom.com>
3445 M:      Scott Branden <sbranden@broadcom.com>
3446 M:      bcm-kernel-feedback-list@broadcom.com
3447 S:      Maintained
3448 T:      git git://github.com/broadcom/mach-bcm
3449 F:      arch/arm/mach-bcm/
3450 N:      bcm281*
3451 N:      bcm113*
3452 N:      bcm216*
3453 N:      kona
3454
3455 BROADCOM BCM47XX MIPS ARCHITECTURE
3456 M:      Hauke Mehrtens <hauke@hauke-m.de>
3457 M:      Rafał Miłecki <zajec5@gmail.com>
3458 L:      linux-mips@vger.kernel.org
3459 S:      Maintained
3460 F:      Documentation/devicetree/bindings/mips/brcm/
3461 F:      arch/mips/bcm47xx/*
3462 F:      arch/mips/include/asm/mach-bcm47xx/*
3463
3464 BROADCOM BCM4908 ETHERNET DRIVER
3465 M:      Rafał Miłecki <rafal@milecki.pl>
3466 M:      bcm-kernel-feedback-list@broadcom.com
3467 L:      netdev@vger.kernel.org
3468 S:      Maintained
3469 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3470 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3471 F:      drivers/net/ethernet/broadcom/unimac.h
3472
3473 BROADCOM BCM5301X ARM ARCHITECTURE
3474 M:      Hauke Mehrtens <hauke@hauke-m.de>
3475 M:      Rafał Miłecki <zajec5@gmail.com>
3476 M:      bcm-kernel-feedback-list@broadcom.com
3477 L:      linux-arm-kernel@lists.infradead.org
3478 S:      Maintained
3479 F:      arch/arm/boot/dts/bcm470*
3480 F:      arch/arm/boot/dts/bcm5301*
3481 F:      arch/arm/boot/dts/bcm953012*
3482 F:      arch/arm/mach-bcm/bcm_5301x.c
3483
3484 BROADCOM BCM53573 ARM ARCHITECTURE
3485 M:      Rafał Miłecki <rafal@milecki.pl>
3486 L:      bcm-kernel-feedback-list@broadcom.com
3487 L:      linux-arm-kernel@lists.infradead.org
3488 S:      Maintained
3489 F:      arch/arm/boot/dts/bcm47189*
3490 F:      arch/arm/boot/dts/bcm53573*
3491
3492 BROADCOM BCM63XX ARM ARCHITECTURE
3493 M:      Florian Fainelli <f.fainelli@gmail.com>
3494 M:      bcm-kernel-feedback-list@broadcom.com
3495 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3496 S:      Maintained
3497 T:      git git://github.com/broadcom/stblinux.git
3498 N:      bcm63xx
3499
3500 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3501 M:      Kevin Cernekee <cernekee@gmail.com>
3502 L:      linux-usb@vger.kernel.org
3503 S:      Maintained
3504 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3505
3506 BROADCOM BCM7XXX ARM ARCHITECTURE
3507 M:      Florian Fainelli <f.fainelli@gmail.com>
3508 M:      bcm-kernel-feedback-list@broadcom.com
3509 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3510 S:      Maintained
3511 T:      git git://github.com/broadcom/stblinux.git
3512 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3513 F:      arch/arm/boot/dts/bcm7*.dts*
3514 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3515 F:      arch/arm/mach-bcm/*brcmstb*
3516 F:      arch/arm/mm/cache-b15-rac.c
3517 F:      drivers/bus/brcmstb_gisb.c
3518 F:      drivers/pci/controller/pcie-brcmstb.c
3519 N:      brcmstb
3520
3521 BROADCOM BDC DRIVER
3522 M:      Al Cooper <alcooperx@gmail.com>
3523 L:      linux-usb@vger.kernel.org
3524 L:      bcm-kernel-feedback-list@broadcom.com
3525 S:      Maintained
3526 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3527 F:      drivers/usb/gadget/udc/bdc/
3528
3529 BROADCOM BMIPS CPUFREQ DRIVER
3530 M:      Markus Mayer <mmayer@broadcom.com>
3531 M:      bcm-kernel-feedback-list@broadcom.com
3532 L:      linux-pm@vger.kernel.org
3533 S:      Maintained
3534 F:      drivers/cpufreq/bmips-cpufreq.c
3535
3536 BROADCOM BMIPS MIPS ARCHITECTURE
3537 M:      Florian Fainelli <f.fainelli@gmail.com>
3538 L:      bcm-kernel-feedback-list@broadcom.com
3539 L:      linux-mips@vger.kernel.org
3540 S:      Maintained
3541 T:      git git://github.com/broadcom/stblinux.git
3542 F:      arch/mips/bmips/*
3543 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3544 F:      arch/mips/include/asm/mach-bmips/*
3545 F:      arch/mips/kernel/*bmips*
3546 F:      drivers/soc/bcm/bcm63xx
3547 F:      drivers/irqchip/irq-bcm63*
3548 F:      drivers/irqchip/irq-bcm7*
3549 F:      drivers/irqchip/irq-brcmstb*
3550 F:      include/linux/bcm963xx_nvram.h
3551 F:      include/linux/bcm963xx_tag.h
3552
3553 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3554 M:      Rasesh Mody <rmody@marvell.com>
3555 M:      GR-Linux-NIC-Dev@marvell.com
3556 L:      netdev@vger.kernel.org
3557 S:      Supported
3558 F:      drivers/net/ethernet/broadcom/bnx2.*
3559 F:      drivers/net/ethernet/broadcom/bnx2_*
3560
3561 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3562 M:      Saurav Kashyap <skashyap@marvell.com>
3563 M:      Javed Hasan <jhasan@marvell.com>
3564 M:      GR-QLogic-Storage-Upstream@marvell.com
3565 L:      linux-scsi@vger.kernel.org
3566 S:      Supported
3567 F:      drivers/scsi/bnx2fc/
3568
3569 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3570 M:      Nilesh Javali <njavali@marvell.com>
3571 M:      Manish Rangankar <mrangankar@marvell.com>
3572 M:      GR-QLogic-Storage-Upstream@marvell.com
3573 L:      linux-scsi@vger.kernel.org
3574 S:      Supported
3575 F:      drivers/scsi/bnx2i/
3576
3577 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3578 M:      Ariel Elior <aelior@marvell.com>
3579 M:      Sudarsana Kalluru <skalluru@marvell.com>
3580 M:      GR-everest-linux-l2@marvell.com
3581 L:      netdev@vger.kernel.org
3582 S:      Supported
3583 F:      drivers/net/ethernet/broadcom/bnx2x/
3584
3585 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3586 M:      Michael Chan <michael.chan@broadcom.com>
3587 L:      netdev@vger.kernel.org
3588 S:      Supported
3589 F:      drivers/net/ethernet/broadcom/bnxt/
3590
3591 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3592 M:      Arend van Spriel <aspriel@gmail.com>
3593 M:      Franky Lin <franky.lin@broadcom.com>
3594 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3595 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3596 M:      Wright Feng <wright.feng@infineon.com>
3597 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3598 L:      linux-wireless@vger.kernel.org
3599 L:      brcm80211-dev-list.pdl@broadcom.com
3600 L:      SHA-cyfmac-dev-list@infineon.com
3601 S:      Supported
3602 F:      drivers/net/wireless/broadcom/brcm80211/
3603
3604 BROADCOM BRCMSTB GPIO DRIVER
3605 M:      Gregory Fong <gregory.0xf0@gmail.com>
3606 L:      bcm-kernel-feedback-list@broadcom.com
3607 S:      Supported
3608 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3609 F:      drivers/gpio/gpio-brcmstb.c
3610
3611 BROADCOM BRCMSTB I2C DRIVER
3612 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3613 L:      linux-i2c@vger.kernel.org
3614 L:      bcm-kernel-feedback-list@broadcom.com
3615 S:      Supported
3616 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3617 F:      drivers/i2c/busses/i2c-brcmstb.c
3618
3619 BROADCOM BRCMSTB UART DRIVER
3620 M:      Al Cooper <alcooperx@gmail.com>
3621 L:      linux-serial@vger.kernel.org
3622 L:      bcm-kernel-feedback-list@broadcom.com
3623 S:      Maintained
3624 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3625 F:      drivers/tty/serial/8250/8250_bcm7271.c
3626
3627 BROADCOM BRCMSTB USB EHCI DRIVER
3628 M:      Al Cooper <alcooperx@gmail.com>
3629 L:      linux-usb@vger.kernel.org
3630 L:      bcm-kernel-feedback-list@broadcom.com
3631 S:      Maintained
3632 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3633 F:      drivers/usb/host/ehci-brcm.*
3634
3635 BROADCOM BRCMSTB USB PIN MAP DRIVER
3636 M:      Al Cooper <alcooperx@gmail.com>
3637 L:      linux-usb@vger.kernel.org
3638 L:      bcm-kernel-feedback-list@broadcom.com
3639 S:      Maintained
3640 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3641 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3642
3643 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3644 M:      Al Cooper <alcooperx@gmail.com>
3645 L:      linux-kernel@vger.kernel.org
3646 L:      bcm-kernel-feedback-list@broadcom.com
3647 S:      Maintained
3648 F:      drivers/phy/broadcom/phy-brcm-usb*
3649
3650 BROADCOM ETHERNET PHY DRIVERS
3651 M:      Florian Fainelli <f.fainelli@gmail.com>
3652 L:      bcm-kernel-feedback-list@broadcom.com
3653 L:      netdev@vger.kernel.org
3654 S:      Supported
3655 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3656 F:      drivers/net/phy/bcm*.[ch]
3657 F:      drivers/net/phy/broadcom.c
3658 F:      include/linux/brcmphy.h
3659
3660 BROADCOM GENET ETHERNET DRIVER
3661 M:      Doug Berger <opendmb@gmail.com>
3662 M:      Florian Fainelli <f.fainelli@gmail.com>
3663 L:      bcm-kernel-feedback-list@broadcom.com
3664 L:      netdev@vger.kernel.org
3665 S:      Supported
3666 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3667 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3668 F:      drivers/net/ethernet/broadcom/genet/
3669 F:      drivers/net/ethernet/broadcom/unimac.h
3670 F:      drivers/net/mdio/mdio-bcm-unimac.c
3671 F:      include/linux/platform_data/bcmgenet.h
3672 F:      include/linux/platform_data/mdio-bcm-unimac.h
3673
3674 BROADCOM IPROC ARM ARCHITECTURE
3675 M:      Ray Jui <rjui@broadcom.com>
3676 M:      Scott Branden <sbranden@broadcom.com>
3677 M:      bcm-kernel-feedback-list@broadcom.com
3678 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3679 S:      Maintained
3680 T:      git git://github.com/broadcom/cygnus-linux.git
3681 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3682 F:      arch/arm64/boot/dts/broadcom/stingray/*
3683 F:      drivers/clk/bcm/clk-ns*
3684 F:      drivers/clk/bcm/clk-sr*
3685 F:      drivers/pinctrl/bcm/pinctrl-ns*
3686 F:      include/dt-bindings/clock/bcm-sr*
3687 N:      iproc
3688 N:      cygnus
3689 N:      bcm[-_]nsp
3690 N:      bcm9113*
3691 N:      bcm9583*
3692 N:      bcm9585*
3693 N:      bcm9586*
3694 N:      bcm988312
3695 N:      bcm113*
3696 N:      bcm583*
3697 N:      bcm585*
3698 N:      bcm586*
3699 N:      bcm88312
3700 N:      hr2
3701 N:      stingray
3702
3703 BROADCOM IPROC GBIT ETHERNET DRIVER
3704 M:      Rafał Miłecki <rafal@milecki.pl>
3705 M:      bcm-kernel-feedback-list@broadcom.com
3706 L:      netdev@vger.kernel.org
3707 S:      Maintained
3708 F:      Documentation/devicetree/bindings/net/brcm,amac.txt
3709 F:      drivers/net/ethernet/broadcom/bgmac*
3710 F:      drivers/net/ethernet/broadcom/unimac.h
3711
3712 BROADCOM KONA GPIO DRIVER
3713 M:      Ray Jui <rjui@broadcom.com>
3714 L:      bcm-kernel-feedback-list@broadcom.com
3715 S:      Supported
3716 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3717 F:      drivers/gpio/gpio-bcm-kona.c
3718
3719 BROADCOM NETXTREME-E ROCE DRIVER
3720 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3721 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3722 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3723 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3724 M:      Naresh Kumar PBS <nareshkumar.pbs@broadcom.com>
3725 L:      linux-rdma@vger.kernel.org
3726 S:      Supported
3727 W:      http://www.broadcom.com
3728 F:      drivers/infiniband/hw/bnxt_re/
3729 F:      include/uapi/rdma/bnxt_re-abi.h
3730
3731 BROADCOM NVRAM DRIVER
3732 M:      Rafał Miłecki <zajec5@gmail.com>
3733 L:      linux-mips@vger.kernel.org
3734 S:      Maintained
3735 F:      drivers/firmware/broadcom/*
3736
3737 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3738 M:      Rafał Miłecki <rafal@milecki.pl>
3739 M:      Florian Fainelli <f.fainelli@gmail.com>
3740 M:      bcm-kernel-feedback-list@broadcom.com
3741 L:      linux-pm@vger.kernel.org
3742 S:      Maintained
3743 T:      git git://github.com/broadcom/stblinux.git
3744 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
3745 F:      include/dt-bindings/soc/bcm-pmb.h
3746
3747 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3748 M:      Rafał Miłecki <zajec5@gmail.com>
3749 L:      linux-wireless@vger.kernel.org
3750 S:      Maintained
3751 F:      drivers/bcma/
3752 F:      include/linux/bcma/
3753
3754 BROADCOM SPI DRIVER
3755 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3756 M:      bcm-kernel-feedback-list@broadcom.com
3757 S:      Maintained
3758 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
3759 F:      drivers/spi/spi-bcm-qspi.*
3760 F:      drivers/spi/spi-brcmstb-qspi.c
3761 F:      drivers/spi/spi-iproc-qspi.c
3762
3763 BROADCOM STB AVS CPUFREQ DRIVER
3764 M:      Markus Mayer <mmayer@broadcom.com>
3765 M:      bcm-kernel-feedback-list@broadcom.com
3766 L:      linux-pm@vger.kernel.org
3767 S:      Maintained
3768 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3769 F:      drivers/cpufreq/brcmstb*
3770
3771 BROADCOM STB AVS TMON DRIVER
3772 M:      Markus Mayer <mmayer@broadcom.com>
3773 M:      bcm-kernel-feedback-list@broadcom.com
3774 L:      linux-pm@vger.kernel.org
3775 S:      Maintained
3776 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3777 F:      drivers/thermal/broadcom/brcmstb*
3778
3779 BROADCOM STB DPFE DRIVER
3780 M:      Markus Mayer <mmayer@broadcom.com>
3781 M:      bcm-kernel-feedback-list@broadcom.com
3782 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3783 S:      Maintained
3784 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3785 F:      drivers/memory/brcmstb_dpfe.c
3786
3787 BROADCOM STB NAND FLASH DRIVER
3788 M:      Brian Norris <computersforpeace@gmail.com>
3789 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3790 L:      linux-mtd@lists.infradead.org
3791 L:      bcm-kernel-feedback-list@broadcom.com
3792 S:      Maintained
3793 F:      drivers/mtd/nand/raw/brcmnand/
3794
3795 BROADCOM SYSTEMPORT ETHERNET DRIVER
3796 M:      Florian Fainelli <f.fainelli@gmail.com>
3797 L:      bcm-kernel-feedback-list@broadcom.com
3798 L:      netdev@vger.kernel.org
3799 S:      Supported
3800 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3801 F:      drivers/net/ethernet/broadcom/unimac.h
3802
3803 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3804 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3805 M:      Prashant Sreedharan <prashant@broadcom.com>
3806 M:      Michael Chan <mchan@broadcom.com>
3807 L:      netdev@vger.kernel.org
3808 S:      Supported
3809 F:      drivers/net/ethernet/broadcom/tg3.*
3810
3811 BROADCOM VK DRIVER
3812 M:      Scott Branden <scott.branden@broadcom.com>
3813 L:      bcm-kernel-feedback-list@broadcom.com
3814 S:      Supported
3815 F:      drivers/misc/bcm-vk/
3816 F:      include/uapi/linux/misc/bcm_vk.h
3817
3818 BROCADE BFA FC SCSI DRIVER
3819 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3820 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3821 L:      linux-scsi@vger.kernel.org
3822 S:      Supported
3823 F:      drivers/scsi/bfa/
3824
3825 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3826 M:      Rasesh Mody <rmody@marvell.com>
3827 M:      Sudarsana Kalluru <skalluru@marvell.com>
3828 M:      GR-Linux-NIC-Dev@marvell.com
3829 L:      netdev@vger.kernel.org
3830 S:      Supported
3831 F:      drivers/net/ethernet/brocade/bna/
3832
3833 BSG (block layer generic sg v4 driver)
3834 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3835 L:      linux-scsi@vger.kernel.org
3836 S:      Supported
3837 F:      block/bsg.c
3838 F:      include/linux/bsg.h
3839 F:      include/uapi/linux/bsg.h
3840
3841 BT87X AUDIO DRIVER
3842 M:      Clemens Ladisch <clemens@ladisch.de>
3843 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3844 S:      Maintained
3845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3846 F:      Documentation/sound/cards/bt87x.rst
3847 F:      sound/pci/bt87x.c
3848
3849 BT8XXGPIO DRIVER
3850 M:      Michael Buesch <m@bues.ch>
3851 S:      Maintained
3852 W:      http://bu3sch.de/btgpio.php
3853 F:      drivers/gpio/gpio-bt8xx.c
3854
3855 BTRFS FILE SYSTEM
3856 M:      Chris Mason <clm@fb.com>
3857 M:      Josef Bacik <josef@toxicpanda.com>
3858 M:      David Sterba <dsterba@suse.com>
3859 L:      linux-btrfs@vger.kernel.org
3860 S:      Maintained
3861 W:      http://btrfs.wiki.kernel.org/
3862 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3864 F:      Documentation/filesystems/btrfs.rst
3865 F:      fs/btrfs/
3866 F:      include/linux/btrfs*
3867 F:      include/uapi/linux/btrfs*
3868
3869 BTTV VIDEO4LINUX DRIVER
3870 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3871 L:      linux-media@vger.kernel.org
3872 S:      Odd fixes
3873 W:      https://linuxtv.org
3874 T:      git git://linuxtv.org/media_tree.git
3875 F:      Documentation/driver-api/media/drivers/bttv*
3876 F:      drivers/media/pci/bt8xx/bttv*
3877
3878 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3879 M:      Chanwoo Choi <cw00.choi@samsung.com>
3880 L:      linux-pm@vger.kernel.org
3881 L:      linux-samsung-soc@vger.kernel.org
3882 S:      Maintained
3883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3884 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3885 F:      drivers/devfreq/exynos-bus.c
3886
3887 BUSLOGIC SCSI DRIVER
3888 M:      Khalid Aziz <khalid@gonehiking.org>
3889 L:      linux-scsi@vger.kernel.org
3890 S:      Maintained
3891 F:      drivers/scsi/BusLogic.*
3892 F:      drivers/scsi/FlashPoint.*
3893
3894 C-MEDIA CMI8788 DRIVER
3895 M:      Clemens Ladisch <clemens@ladisch.de>
3896 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3897 S:      Maintained
3898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3899 F:      sound/pci/oxygen/
3900
3901 C-SKY ARCHITECTURE
3902 M:      Guo Ren <guoren@kernel.org>
3903 L:      linux-csky@vger.kernel.org
3904 S:      Supported
3905 T:      git https://github.com/c-sky/csky-linux.git
3906 F:      Documentation/devicetree/bindings/csky/
3907 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3908 F:      Documentation/devicetree/bindings/timer/csky,*
3909 F:      arch/csky/
3910 F:      drivers/clocksource/timer-gx6605s.c
3911 F:      drivers/clocksource/timer-mp-csky.c
3912 F:      drivers/irqchip/irq-csky-*
3913 N:      csky
3914 K:      csky
3915
3916 CA8210 IEEE-802.15.4 RADIO DRIVER
3917 M:      Harry Morris <h.morris@cascoda.com>
3918 L:      linux-wpan@vger.kernel.org
3919 S:      Maintained
3920 W:      https://github.com/Cascoda/ca8210-linux.git
3921 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3922 F:      drivers/net/ieee802154/ca8210.c
3923
3924 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
3925 M:      Damien Le Moal <damien.lemoal@wdc.com>
3926 L:      linux-riscv@lists.infradead.org
3927 L:      linux-gpio@vger.kernel.org (pinctrl driver)
3928 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
3929 F:      drivers/pinctrl/pinctrl-k210.c
3930
3931 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
3932 M:      Damien Le Moal <damien.lemoal@wdc.com>
3933 L:      linux-kernel@vger.kernel.org
3934 L:      linux-riscv@lists.infradead.org
3935 S:      Maintained
3936 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
3937 F:      drivers/reset/reset-k210.c
3938
3939 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
3940 M:      Damien Le Moal <damien.lemoal@wdc.com>
3941 L:      linux-riscv@lists.infradead.org
3942 S:      Maintained
3943 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
3944 F:      drivers/soc/canaan/
3945 F:      include/soc/canaan/
3946
3947 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3948 M:      David Howells <dhowells@redhat.com>
3949 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3950 S:      Supported
3951 F:      Documentation/filesystems/caching/cachefiles.rst
3952 F:      fs/cachefiles/
3953
3954 CADENCE MIPI-CSI2 BRIDGES
3955 M:      Maxime Ripard <mripard@kernel.org>
3956 L:      linux-media@vger.kernel.org
3957 S:      Maintained
3958 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3959 F:      drivers/media/platform/cadence/cdns-csi2*
3960
3961 CADENCE NAND DRIVER
3962 L:      linux-mtd@lists.infradead.org
3963 S:      Orphan
3964 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3965 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3966
3967 CADENCE USB3 DRD IP DRIVER
3968 M:      Peter Chen <peter.chen@kernel.org>
3969 M:      Pawel Laszczak <pawell@cadence.com>
3970 R:      Roger Quadros <rogerq@kernel.org>
3971 R:      Aswath Govindraju <a-govindraju@ti.com>
3972 L:      linux-usb@vger.kernel.org
3973 S:      Maintained
3974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3975 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
3976 F:      drivers/usb/cdns3/
3977 X:      drivers/usb/cdns3/cdnsp*
3978
3979 CADENCE USBSSP DRD IP DRIVER
3980 M:      Pawel Laszczak <pawell@cadence.com>
3981 L:      linux-usb@vger.kernel.org
3982 S:      Maintained
3983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3984 F:      drivers/usb/cdns3/
3985 X:      drivers/usb/cdns3/cdns3*
3986
3987 CADET FM/AM RADIO RECEIVER DRIVER
3988 M:      Hans Verkuil <hverkuil@xs4all.nl>
3989 L:      linux-media@vger.kernel.org
3990 S:      Maintained
3991 W:      https://linuxtv.org
3992 T:      git git://linuxtv.org/media_tree.git
3993 F:      drivers/media/radio/radio-cadet*
3994
3995 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3996 L:      linux-media@vger.kernel.org
3997 S:      Orphan
3998 T:      git git://linuxtv.org/media_tree.git
3999 F:      Documentation/admin-guide/media/cafe_ccic*
4000 F:      drivers/media/platform/marvell-ccic/
4001
4002 CAIF NETWORK LAYER
4003 L:      netdev@vger.kernel.org
4004 S:      Orphan
4005 F:      Documentation/networking/caif/
4006 F:      drivers/net/caif/
4007 F:      include/net/caif/
4008 F:      include/uapi/linux/caif/
4009 F:      net/caif/
4010
4011 CAKE QDISC
4012 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4013 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4014 S:      Maintained
4015 F:      net/sched/sch_cake.c
4016
4017 CAN NETWORK DRIVERS
4018 M:      Wolfgang Grandegger <wg@grandegger.com>
4019 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4020 L:      linux-can@vger.kernel.org
4021 S:      Maintained
4022 W:      https://github.com/linux-can
4023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4025 F:      Documentation/devicetree/bindings/net/can/
4026 F:      drivers/net/can/
4027 F:      include/linux/can/bittiming.h
4028 F:      include/linux/can/dev.h
4029 F:      include/linux/can/led.h
4030 F:      include/linux/can/length.h
4031 F:      include/linux/can/platform/
4032 F:      include/linux/can/rx-offload.h
4033 F:      include/uapi/linux/can/error.h
4034 F:      include/uapi/linux/can/netlink.h
4035 F:      include/uapi/linux/can/vxcan.h
4036
4037 CAN NETWORK LAYER
4038 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4039 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4040 L:      linux-can@vger.kernel.org
4041 S:      Maintained
4042 W:      https://github.com/linux-can
4043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4045 F:      Documentation/networking/can.rst
4046 F:      include/linux/can/can-ml.h
4047 F:      include/linux/can/core.h
4048 F:      include/linux/can/skb.h
4049 F:      include/net/netns/can.h
4050 F:      include/uapi/linux/can.h
4051 F:      include/uapi/linux/can/bcm.h
4052 F:      include/uapi/linux/can/gw.h
4053 F:      include/uapi/linux/can/isotp.h
4054 F:      include/uapi/linux/can/raw.h
4055 F:      net/can/
4056
4057 CAN-J1939 NETWORK LAYER
4058 M:      Robin van der Gracht <robin@protonic.nl>
4059 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4060 R:      kernel@pengutronix.de
4061 L:      linux-can@vger.kernel.org
4062 S:      Maintained
4063 F:      Documentation/networking/j1939.rst
4064 F:      include/uapi/linux/can/j1939.h
4065 F:      net/can/j1939/
4066
4067 CAPABILITIES
4068 M:      Serge Hallyn <serge@hallyn.com>
4069 L:      linux-security-module@vger.kernel.org
4070 S:      Supported
4071 F:      include/linux/capability.h
4072 F:      include/uapi/linux/capability.h
4073 F:      kernel/capability.c
4074 F:      security/commoncap.c
4075
4076 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4077 M:      Kevin Tsai <ktsai@capellamicro.com>
4078 S:      Maintained
4079 F:      drivers/iio/light/cm*
4080
4081 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4082 M:      Christian Lamparter <chunkeey@googlemail.com>
4083 L:      linux-wireless@vger.kernel.org
4084 S:      Maintained
4085 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4086 F:      drivers/net/wireless/ath/carl9170/
4087
4088 CAVIUM I2C DRIVER
4089 M:      Robert Richter <rric@kernel.org>
4090 S:      Odd Fixes
4091 W:      http://www.marvell.com
4092 F:      drivers/i2c/busses/i2c-octeon*
4093 F:      drivers/i2c/busses/i2c-thunderx*
4094
4095 CAVIUM LIQUIDIO NETWORK DRIVER
4096 M:      Derek Chickles <dchickles@marvell.com>
4097 M:      Satanand Burla <sburla@marvell.com>
4098 M:      Felix Manlunas <fmanlunas@marvell.com>
4099 L:      netdev@vger.kernel.org
4100 S:      Supported
4101 W:      http://www.marvell.com
4102 F:      drivers/net/ethernet/cavium/liquidio/
4103
4104 CAVIUM MMC DRIVER
4105 M:      Robert Richter <rric@kernel.org>
4106 S:      Odd Fixes
4107 W:      http://www.marvell.com
4108 F:      drivers/mmc/host/cavium*
4109
4110 CAVIUM OCTEON-TX CRYPTO DRIVER
4111 M:      George Cherian <gcherian@marvell.com>
4112 L:      linux-crypto@vger.kernel.org
4113 S:      Supported
4114 W:      http://www.marvell.com
4115 F:      drivers/crypto/cavium/cpt/
4116
4117 CAVIUM THUNDERX2 ARM64 SOC
4118 M:      Robert Richter <rric@kernel.org>
4119 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4120 S:      Odd Fixes
4121 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4122 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4123
4124 CC2520 IEEE-802.15.4 RADIO DRIVER
4125 M:      Varka Bhadram <varkabhadram@gmail.com>
4126 L:      linux-wpan@vger.kernel.org
4127 S:      Maintained
4128 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4129 F:      drivers/net/ieee802154/cc2520.c
4130 F:      include/linux/spi/cc2520.h
4131
4132 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4133 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4134 L:      linux-crypto@vger.kernel.org
4135 S:      Supported
4136 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4137 F:      drivers/crypto/ccree/
4138
4139 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4140 M:      Hadar Gat <hadar.gat@arm.com>
4141 L:      linux-crypto@vger.kernel.org
4142 S:      Supported
4143 F:      drivers/char/hw_random/cctrng.c
4144 F:      drivers/char/hw_random/cctrng.h
4145 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4146 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4147
4148 CEC FRAMEWORK
4149 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4150 L:      linux-media@vger.kernel.org
4151 S:      Supported
4152 W:      http://linuxtv.org
4153 T:      git git://linuxtv.org/media_tree.git
4154 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4155 F:      Documentation/devicetree/bindings/media/cec.txt
4156 F:      Documentation/driver-api/media/cec-core.rst
4157 F:      Documentation/userspace-api/media/cec
4158 F:      drivers/media/cec/
4159 F:      drivers/media/rc/keymaps/rc-cec.c
4160 F:      include/media/cec-notifier.h
4161 F:      include/media/cec.h
4162 F:      include/uapi/linux/cec-funcs.h
4163 F:      include/uapi/linux/cec.h
4164
4165 CEC GPIO DRIVER
4166 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4167 L:      linux-media@vger.kernel.org
4168 S:      Supported
4169 W:      http://linuxtv.org
4170 T:      git git://linuxtv.org/media_tree.git
4171 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4172 F:      drivers/media/cec/platform/cec-gpio/
4173
4174 CELL BROADBAND ENGINE ARCHITECTURE
4175 M:      Arnd Bergmann <arnd@arndb.de>
4176 L:      linuxppc-dev@lists.ozlabs.org
4177 S:      Supported
4178 W:      http://www.ibm.com/developerworks/power/cell/
4179 F:      arch/powerpc/include/asm/cell*.h
4180 F:      arch/powerpc/include/asm/spu*.h
4181 F:      arch/powerpc/include/uapi/asm/spu*.h
4182 F:      arch/powerpc/platforms/cell/
4183
4184 CELLWISE CW2015 BATTERY DRIVER
4185 M:      Tobias Schrammm <t.schramm@manjaro.org>
4186 S:      Maintained
4187 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4188 F:      drivers/power/supply/cw2015_battery.c
4189
4190 CEPH COMMON CODE (LIBCEPH)
4191 M:      Ilya Dryomov <idryomov@gmail.com>
4192 M:      Jeff Layton <jlayton@kernel.org>
4193 L:      ceph-devel@vger.kernel.org
4194 S:      Supported
4195 W:      http://ceph.com/
4196 T:      git git://github.com/ceph/ceph-client.git
4197 F:      include/linux/ceph/
4198 F:      include/linux/crush/
4199 F:      net/ceph/
4200
4201 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4202 M:      Jeff Layton <jlayton@kernel.org>
4203 M:      Ilya Dryomov <idryomov@gmail.com>
4204 L:      ceph-devel@vger.kernel.org
4205 S:      Supported
4206 W:      http://ceph.com/
4207 T:      git git://github.com/ceph/ceph-client.git
4208 F:      Documentation/filesystems/ceph.rst
4209 F:      fs/ceph/
4210
4211 CERTIFICATE HANDLING
4212 M:      David Howells <dhowells@redhat.com>
4213 M:      David Woodhouse <dwmw2@infradead.org>
4214 L:      keyrings@vger.kernel.org
4215 S:      Maintained
4216 F:      Documentation/admin-guide/module-signing.rst
4217 F:      certs/
4218 F:      scripts/extract-cert.c
4219 F:      scripts/sign-file.c
4220
4221 CFAG12864B LCD DRIVER
4222 M:      Miguel Ojeda <ojeda@kernel.org>
4223 S:      Maintained
4224 F:      drivers/auxdisplay/cfag12864b.c
4225 F:      include/linux/cfag12864b.h
4226
4227 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4228 M:      Miguel Ojeda <ojeda@kernel.org>
4229 S:      Maintained
4230 F:      drivers/auxdisplay/cfag12864bfb.c
4231 F:      include/linux/cfag12864b.h
4232
4233 CHAR and MISC DRIVERS
4234 M:      Arnd Bergmann <arnd@arndb.de>
4235 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4236 S:      Supported
4237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4238 F:      drivers/char/
4239 F:      drivers/misc/
4240 F:      include/linux/miscdevice.h
4241 X:      drivers/char/agp/
4242 X:      drivers/char/hw_random/
4243 X:      drivers/char/ipmi/
4244 X:      drivers/char/random.c
4245 X:      drivers/char/tpm/
4246
4247 CHECKPATCH
4248 M:      Andy Whitcroft <apw@canonical.com>
4249 M:      Joe Perches <joe@perches.com>
4250 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4251 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4252 S:      Maintained
4253 F:      scripts/checkpatch.pl
4254
4255 CHECKPATCH DOCUMENTATION
4256 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4257 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4258 R:      Joe Perches <joe@perches.com>
4259 S:      Maintained
4260 F:      Documentation/dev-tools/checkpatch.rst
4261
4262 CHINESE DOCUMENTATION
4263 M:      Alex Shi <alexs@kernel.org>
4264 S:      Maintained
4265 F:      Documentation/translations/zh_CN/
4266
4267 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4268 M:      Peter Chen <peter.chen@kernel.org>
4269 L:      linux-usb@vger.kernel.org
4270 S:      Maintained
4271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4272 F:      drivers/usb/chipidea/
4273
4274 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4275 M:      Hans de Goede <hdegoede@redhat.com>
4276 L:      linux-input@vger.kernel.org
4277 S:      Maintained
4278 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4279 F:      drivers/input/touchscreen/chipone_icn8318.c
4280
4281 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4282 M:      Hans de Goede <hdegoede@redhat.com>
4283 L:      linux-input@vger.kernel.org
4284 S:      Maintained
4285 F:      drivers/input/touchscreen/chipone_icn8505.c
4286
4287 CHROME HARDWARE PLATFORM SUPPORT
4288 M:      Benson Leung <bleung@chromium.org>
4289 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4290 S:      Maintained
4291 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4292 F:      drivers/platform/chrome/
4293
4294 CHROMEOS EC CODEC DRIVER
4295 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4296 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4297 R:      Guenter Roeck <groeck@chromium.org>
4298 S:      Maintained
4299 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4300 F:      sound/soc/codecs/cros_ec_codec.*
4301
4302 CHROMEOS EC SUBDRIVERS
4303 M:      Benson Leung <bleung@chromium.org>
4304 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4305 R:      Guenter Roeck <groeck@chromium.org>
4306 S:      Maintained
4307 F:      drivers/power/supply/cros_usbpd-charger.c
4308 N:      cros_ec
4309 N:      cros-ec
4310
4311 CHRONTEL CH7322 CEC DRIVER
4312 M:      Jeff Chase <jnchase@google.com>
4313 L:      linux-media@vger.kernel.org
4314 S:      Maintained
4315 T:      git git://linuxtv.org/media_tree.git
4316 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4317 F:      drivers/media/cec/i2c/ch7322.c
4318
4319 CIRRUS LOGIC AUDIO CODEC DRIVERS
4320 M:      James Schulman <james.schulman@cirrus.com>
4321 M:      David Rhodes <david.rhodes@cirrus.com>
4322 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4323 L:      patches@opensource.cirrus.com
4324 S:      Maintained
4325 F:      sound/soc/codecs/cs*
4326
4327 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4328 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4329 L:      netdev@vger.kernel.org
4330 S:      Maintained
4331 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4332
4333 CIRRUS LOGIC LOCHNAGAR DRIVER
4334 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4335 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4336 L:      patches@opensource.cirrus.com
4337 S:      Supported
4338 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4339 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4340 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4341 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4342 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4343 F:      Documentation/hwmon/lochnagar.rst
4344 F:      drivers/clk/clk-lochnagar.c
4345 F:      drivers/hwmon/lochnagar-hwmon.c
4346 F:      drivers/mfd/lochnagar-i2c.c
4347 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4348 F:      drivers/regulator/lochnagar-regulator.c
4349 F:      include/dt-bindings/clk/lochnagar.h
4350 F:      include/dt-bindings/pinctrl/lochnagar.h
4351 F:      include/linux/mfd/lochnagar*
4352 F:      sound/soc/codecs/lochnagar-sc.c
4353
4354 CIRRUS LOGIC MADERA CODEC DRIVERS
4355 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4356 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4357 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4358 L:      patches@opensource.cirrus.com
4359 S:      Supported
4360 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4361 T:      git https://github.com/CirrusLogic/linux-drivers.git
4362 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4363 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4364 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4365 F:      drivers/gpio/gpio-madera*
4366 F:      drivers/irqchip/irq-madera*
4367 F:      drivers/mfd/cs47l*
4368 F:      drivers/mfd/madera*
4369 F:      drivers/pinctrl/cirrus/*
4370 F:      include/dt-bindings/sound/madera*
4371 F:      include/linux/irqchip/irq-madera*
4372 F:      include/linux/mfd/madera/*
4373 F:      include/sound/madera*
4374 F:      sound/soc/codecs/cs47l*
4375 F:      sound/soc/codecs/madera*
4376
4377 CISCO FCOE HBA DRIVER
4378 M:      Satish Kharat <satishkh@cisco.com>
4379 M:      Sesidhar Baddela <sebaddel@cisco.com>
4380 M:      Karan Tilak Kumar <kartilak@cisco.com>
4381 L:      linux-scsi@vger.kernel.org
4382 S:      Supported
4383 F:      drivers/scsi/fnic/
4384
4385 CISCO SCSI HBA DRIVER
4386 M:      Karan Tilak Kumar <kartilak@cisco.com>
4387 M:      Sesidhar Baddela <sebaddel@cisco.com>
4388 L:      linux-scsi@vger.kernel.org
4389 S:      Supported
4390 F:      drivers/scsi/snic/
4391
4392 CISCO VIC ETHERNET NIC DRIVER
4393 M:      Christian Benvenuti <benve@cisco.com>
4394 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4395 S:      Supported
4396 F:      drivers/net/ethernet/cisco/enic/
4397
4398 CISCO VIC LOW LATENCY NIC DRIVER
4399 M:      Christian Benvenuti <benve@cisco.com>
4400 M:      Nelson Escobar <neescoba@cisco.com>
4401 S:      Supported
4402 F:      drivers/infiniband/hw/usnic/
4403
4404 CLANG-FORMAT FILE
4405 M:      Miguel Ojeda <ojeda@kernel.org>
4406 S:      Maintained
4407 F:      .clang-format
4408
4409 CLANG/LLVM BUILD SUPPORT
4410 M:      Nathan Chancellor <nathan@kernel.org>
4411 M:      Nick Desaulniers <ndesaulniers@google.com>
4412 L:      clang-built-linux@googlegroups.com
4413 S:      Supported
4414 W:      https://clangbuiltlinux.github.io/
4415 B:      https://github.com/ClangBuiltLinux/linux/issues
4416 C:      irc://chat.freenode.net/clangbuiltlinux
4417 F:      Documentation/kbuild/llvm.rst
4418 F:      include/linux/compiler-clang.h
4419 F:      scripts/clang-tools/
4420 K:      \b(?i:clang|llvm)\b
4421
4422 CLEANCACHE API
4423 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4424 L:      linux-kernel@vger.kernel.org
4425 S:      Maintained
4426 F:      include/linux/cleancache.h
4427 F:      mm/cleancache.c
4428
4429 CLK API
4430 M:      Russell King <linux@armlinux.org.uk>
4431 L:      linux-clk@vger.kernel.org
4432 S:      Maintained
4433 F:      include/linux/clk.h
4434
4435 CLOCKSOURCE, CLOCKEVENT DRIVERS
4436 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4437 M:      Thomas Gleixner <tglx@linutronix.de>
4438 L:      linux-kernel@vger.kernel.org
4439 S:      Supported
4440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4441 F:      Documentation/devicetree/bindings/timer/
4442 F:      drivers/clocksource/
4443
4444 CMPC ACPI DRIVER
4445 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4446 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4447 L:      platform-driver-x86@vger.kernel.org
4448 S:      Supported
4449 F:      drivers/platform/x86/classmate-laptop.c
4450
4451 COBALT MEDIA DRIVER
4452 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4453 L:      linux-media@vger.kernel.org
4454 S:      Supported
4455 W:      https://linuxtv.org
4456 T:      git git://linuxtv.org/media_tree.git
4457 F:      drivers/media/pci/cobalt/
4458
4459 COCCINELLE/Semantic Patches (SmPL)
4460 M:      Julia Lawall <Julia.Lawall@inria.fr>
4461 M:      Gilles Muller <Gilles.Muller@inria.fr>
4462 M:      Nicolas Palix <nicolas.palix@imag.fr>
4463 M:      Michal Marek <michal.lkml@markovi.net>
4464 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4465 S:      Supported
4466 W:      http://coccinelle.lip6.fr/
4467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4468 F:      Documentation/dev-tools/coccinelle.rst
4469 F:      scripts/coccicheck
4470 F:      scripts/coccinelle/
4471
4472 CODA FILE SYSTEM
4473 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4474 M:      coda@cs.cmu.edu
4475 L:      codalist@coda.cs.cmu.edu
4476 S:      Maintained
4477 W:      http://www.coda.cs.cmu.edu/
4478 F:      Documentation/filesystems/coda.rst
4479 F:      fs/coda/
4480 F:      include/linux/coda*.h
4481 F:      include/uapi/linux/coda*.h
4482
4483 CODA V4L2 MEM2MEM DRIVER
4484 M:      Philipp Zabel <p.zabel@pengutronix.de>
4485 L:      linux-media@vger.kernel.org
4486 S:      Maintained
4487 F:      Documentation/devicetree/bindings/media/coda.yaml
4488 F:      drivers/media/platform/coda/
4489
4490 CODE OF CONDUCT
4491 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4492 S:      Supported
4493 F:      Documentation/process/code-of-conduct-interpretation.rst
4494 F:      Documentation/process/code-of-conduct.rst
4495
4496 COMEDI DRIVERS
4497 M:      Ian Abbott <abbotti@mev.co.uk>
4498 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4499 S:      Odd Fixes
4500 F:      drivers/comedi/
4501
4502 COMMON CLK FRAMEWORK
4503 M:      Michael Turquette <mturquette@baylibre.com>
4504 M:      Stephen Boyd <sboyd@kernel.org>
4505 L:      linux-clk@vger.kernel.org
4506 S:      Maintained
4507 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4509 F:      Documentation/devicetree/bindings/clock/
4510 F:      drivers/clk/
4511 F:      include/linux/clk-pr*
4512 F:      include/linux/clk/
4513 F:      include/linux/of_clk.h
4514 X:      drivers/clk/clkdev.c
4515
4516 COMMON INTERNET FILE SYSTEM (CIFS)
4517 M:      Steve French <sfrench@samba.org>
4518 L:      linux-cifs@vger.kernel.org
4519 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4520 S:      Supported
4521 W:      http://linux-cifs.samba.org/
4522 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4523 F:      Documentation/admin-guide/cifs/
4524 F:      fs/cifs/
4525
4526 COMPACTPCI HOTPLUG CORE
4527 M:      Scott Murray <scott@spiteful.org>
4528 L:      linux-pci@vger.kernel.org
4529 S:      Maintained
4530 F:      drivers/pci/hotplug/cpci_hotplug*
4531
4532 COMPACTPCI HOTPLUG GENERIC DRIVER
4533 M:      Scott Murray <scott@spiteful.org>
4534 L:      linux-pci@vger.kernel.org
4535 S:      Maintained
4536 F:      drivers/pci/hotplug/cpcihp_generic.c
4537
4538 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4539 M:      Scott Murray <scott@spiteful.org>
4540 L:      linux-pci@vger.kernel.org
4541 S:      Maintained
4542 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4543
4544 COMPAL LAPTOP SUPPORT
4545 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4546 L:      platform-driver-x86@vger.kernel.org
4547 S:      Maintained
4548 F:      drivers/platform/x86/compal-laptop.c
4549
4550 COMPILER ATTRIBUTES
4551 M:      Miguel Ojeda <ojeda@kernel.org>
4552 S:      Maintained
4553 F:      include/linux/compiler_attributes.h
4554
4555 COMPUTE EXPRESS LINK (CXL)
4556 M:      Alison Schofield <alison.schofield@intel.com>
4557 M:      Vishal Verma <vishal.l.verma@intel.com>
4558 M:      Ira Weiny <ira.weiny@intel.com>
4559 M:      Ben Widawsky <ben.widawsky@intel.com>
4560 M:      Dan Williams <dan.j.williams@intel.com>
4561 L:      linux-cxl@vger.kernel.org
4562 S:      Maintained
4563 F:      drivers/cxl/
4564 F:      include/uapi/linux/cxl_mem.h
4565
4566 CONEXANT ACCESSRUNNER USB DRIVER
4567 L:      accessrunner-general@lists.sourceforge.net
4568 S:      Orphan
4569 W:      http://accessrunner.sourceforge.net/
4570 F:      drivers/usb/atm/cxacru.c
4571
4572 CONFIGFS
4573 M:      Joel Becker <jlbec@evilplan.org>
4574 M:      Christoph Hellwig <hch@lst.de>
4575 S:      Supported
4576 T:      git git://git.infradead.org/users/hch/configfs.git
4577 F:      fs/configfs/
4578 F:      include/linux/configfs.h
4579 F:      samples/configfs/
4580
4581 CONSOLE SUBSYSTEM
4582 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4583 S:      Supported
4584 F:      drivers/video/console/
4585 F:      include/linux/console*
4586
4587 CONTROL GROUP (CGROUP)
4588 M:      Tejun Heo <tj@kernel.org>
4589 M:      Zefan Li <lizefan.x@bytedance.com>
4590 M:      Johannes Weiner <hannes@cmpxchg.org>
4591 L:      cgroups@vger.kernel.org
4592 S:      Maintained
4593 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4594 F:      Documentation/admin-guide/cgroup-v1/
4595 F:      Documentation/admin-guide/cgroup-v2.rst
4596 F:      include/linux/cgroup*
4597 F:      kernel/cgroup/
4598
4599 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4600 M:      Tejun Heo <tj@kernel.org>
4601 M:      Jens Axboe <axboe@kernel.dk>
4602 L:      cgroups@vger.kernel.org
4603 L:      linux-block@vger.kernel.org
4604 T:      git git://git.kernel.dk/linux-block
4605 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4606 F:      block/bfq-cgroup.c
4607 F:      block/blk-cgroup.c
4608 F:      block/blk-iolatency.c
4609 F:      block/blk-throttle.c
4610 F:      include/linux/blk-cgroup.h
4611
4612 CONTROL GROUP - CPUSET
4613 M:      Zefan Li <lizefan.x@bytedance.com>
4614 L:      cgroups@vger.kernel.org
4615 S:      Maintained
4616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4617 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4618 F:      include/linux/cpuset.h
4619 F:      kernel/cgroup/cpuset.c
4620
4621 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4622 M:      Johannes Weiner <hannes@cmpxchg.org>
4623 M:      Michal Hocko <mhocko@kernel.org>
4624 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4625 L:      cgroups@vger.kernel.org
4626 L:      linux-mm@kvack.org
4627 S:      Maintained
4628 F:      mm/memcontrol.c
4629 F:      mm/swap_cgroup.c
4630
4631 CORETEMP HARDWARE MONITORING DRIVER
4632 M:      Fenghua Yu <fenghua.yu@intel.com>
4633 L:      linux-hwmon@vger.kernel.org
4634 S:      Maintained
4635 F:      Documentation/hwmon/coretemp.rst
4636 F:      drivers/hwmon/coretemp.c
4637
4638 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4639 M:      Marius Zachmann <mail@mariuszachmann.de>
4640 L:      linux-hwmon@vger.kernel.org
4641 S:      Maintained
4642 F:      drivers/hwmon/corsair-cpro.c
4643
4644 CORSAIR-PSU HARDWARE MONITOR DRIVER
4645 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4646 L:      linux-hwmon@vger.kernel.org
4647 S:      Maintained
4648 F:      Documentation/hwmon/corsair-psu.rst
4649 F:      drivers/hwmon/corsair-psu.c
4650
4651 COSA/SRP SYNC SERIAL DRIVER
4652 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4653 S:      Maintained
4654 W:      http://www.fi.muni.cz/~kas/cosa/
4655 F:      drivers/net/wan/cosa*
4656
4657 COUNTER SUBSYSTEM
4658 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4659 L:      linux-iio@vger.kernel.org
4660 S:      Maintained
4661 F:      Documentation/ABI/testing/sysfs-bus-counter*
4662 F:      Documentation/driver-api/generic-counter.rst
4663 F:      drivers/counter/
4664 F:      include/linux/counter.h
4665 F:      include/linux/counter_enum.h
4666
4667 CP2615 I2C DRIVER
4668 M:      Bence Csókás <bence98@sch.bme.hu>
4669 S:      Maintained
4670 F:      drivers/i2c/busses/i2c-cp2615.c
4671
4672 CPMAC ETHERNET DRIVER
4673 M:      Florian Fainelli <f.fainelli@gmail.com>
4674 L:      netdev@vger.kernel.org
4675 S:      Maintained
4676 F:      drivers/net/ethernet/ti/cpmac.c
4677
4678 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4679 M:      Viresh Kumar <viresh.kumar@linaro.org>
4680 M:      Sudeep Holla <sudeep.holla@arm.com>
4681 L:      linux-pm@vger.kernel.org
4682 S:      Maintained
4683 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4684 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4685
4686 CPU FREQUENCY SCALING FRAMEWORK
4687 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4688 M:      Viresh Kumar <viresh.kumar@linaro.org>
4689 L:      linux-pm@vger.kernel.org
4690 S:      Maintained
4691 B:      https://bugzilla.kernel.org
4692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4694 F:      Documentation/admin-guide/pm/cpufreq.rst
4695 F:      Documentation/admin-guide/pm/intel_pstate.rst
4696 F:      Documentation/cpu-freq/
4697 F:      Documentation/devicetree/bindings/cpufreq/
4698 F:      drivers/cpufreq/
4699 F:      include/linux/cpufreq.h
4700 F:      include/linux/sched/cpufreq.h
4701 F:      kernel/sched/cpufreq*.c
4702 F:      tools/testing/selftests/cpufreq/
4703
4704 CPU IDLE TIME MANAGEMENT FRAMEWORK
4705 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4706 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4707 L:      linux-pm@vger.kernel.org
4708 S:      Maintained
4709 B:      https://bugzilla.kernel.org
4710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4711 F:      Documentation/admin-guide/pm/cpuidle.rst
4712 F:      Documentation/driver-api/pm/cpuidle.rst
4713 F:      drivers/cpuidle/
4714 F:      include/linux/cpuidle.h
4715
4716 CPU POWER MONITORING SUBSYSTEM
4717 M:      Thomas Renninger <trenn@suse.com>
4718 M:      Shuah Khan <shuah@kernel.org>
4719 M:      Shuah Khan <skhan@linuxfoundation.org>
4720 L:      linux-pm@vger.kernel.org
4721 S:      Maintained
4722 F:      tools/power/cpupower/
4723
4724 CPUID/MSR DRIVER
4725 M:      "H. Peter Anvin" <hpa@zytor.com>
4726 S:      Maintained
4727 F:      arch/x86/kernel/cpuid.c
4728 F:      arch/x86/kernel/msr.c
4729
4730 CPUIDLE DRIVER - ARM BIG LITTLE
4731 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4732 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4733 L:      linux-pm@vger.kernel.org
4734 L:      linux-arm-kernel@lists.infradead.org
4735 S:      Maintained
4736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4737 F:      drivers/cpuidle/cpuidle-big_little.c
4738
4739 CPUIDLE DRIVER - ARM EXYNOS
4740 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4741 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4742 M:      Kukjin Kim <kgene@kernel.org>
4743 L:      linux-pm@vger.kernel.org
4744 L:      linux-samsung-soc@vger.kernel.org
4745 S:      Supported
4746 F:      arch/arm/mach-exynos/pm.c
4747 F:      drivers/cpuidle/cpuidle-exynos.c
4748 F:      include/linux/platform_data/cpuidle-exynos.h
4749
4750 CPUIDLE DRIVER - ARM PSCI
4751 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4752 M:      Sudeep Holla <sudeep.holla@arm.com>
4753 L:      linux-pm@vger.kernel.org
4754 L:      linux-arm-kernel@lists.infradead.org
4755 S:      Supported
4756 F:      drivers/cpuidle/cpuidle-psci.c
4757
4758 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4759 M:      Ulf Hansson <ulf.hansson@linaro.org>
4760 L:      linux-pm@vger.kernel.org
4761 L:      linux-arm-kernel@lists.infradead.org
4762 S:      Supported
4763 F:      drivers/cpuidle/cpuidle-psci.h
4764 F:      drivers/cpuidle/cpuidle-psci-domain.c
4765
4766 CRAMFS FILESYSTEM
4767 M:      Nicolas Pitre <nico@fluxnic.net>
4768 S:      Maintained
4769 F:      Documentation/filesystems/cramfs.rst
4770 F:      fs/cramfs/
4771
4772 CREATIVE SB0540
4773 M:      Bastien Nocera <hadess@hadess.net>
4774 L:      linux-input@vger.kernel.org
4775 S:      Maintained
4776 F:      drivers/hid/hid-creative-sb0540.c
4777
4778 CRYPTO API
4779 M:      Herbert Xu <herbert@gondor.apana.org.au>
4780 M:      "David S. Miller" <davem@davemloft.net>
4781 L:      linux-crypto@vger.kernel.org
4782 S:      Maintained
4783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4785 F:      Documentation/crypto/
4786 F:      Documentation/devicetree/bindings/crypto/
4787 F:      arch/*/crypto/
4788 F:      crypto/
4789 F:      drivers/crypto/
4790 F:      include/crypto/
4791 F:      include/linux/crypto*
4792 F:      lib/crypto/
4793
4794 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4795 M:      Neil Horman <nhorman@tuxdriver.com>
4796 L:      linux-crypto@vger.kernel.org
4797 S:      Maintained
4798 F:      crypto/ansi_cprng.c
4799 F:      crypto/rng.c
4800
4801 CS3308 MEDIA DRIVER
4802 M:      Hans Verkuil <hverkuil@xs4all.nl>
4803 L:      linux-media@vger.kernel.org
4804 S:      Odd Fixes
4805 W:      http://linuxtv.org
4806 T:      git git://linuxtv.org/media_tree.git
4807 F:      drivers/media/i2c/cs3308.c
4808
4809 CS5535 Audio ALSA driver
4810 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4811 S:      Maintained
4812 F:      sound/pci/cs5535audio/
4813
4814 CSI DRIVERS FOR ALLWINNER V3s
4815 M:      Yong Deng <yong.deng@magewell.com>
4816 L:      linux-media@vger.kernel.org
4817 S:      Maintained
4818 T:      git git://linuxtv.org/media_tree.git
4819 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4820 F:      drivers/media/platform/sunxi/sun6i-csi/
4821
4822 CW1200 WLAN driver
4823 M:      Solomon Peachy <pizza@shaftnet.org>
4824 S:      Maintained
4825 F:      drivers/net/wireless/st/cw1200/
4826
4827 CX18 VIDEO4LINUX DRIVER
4828 M:      Andy Walls <awalls@md.metrocast.net>
4829 L:      linux-media@vger.kernel.org
4830 S:      Maintained
4831 W:      https://linuxtv.org
4832 T:      git git://linuxtv.org/media_tree.git
4833 F:      drivers/media/pci/cx18/
4834 F:      include/uapi/linux/ivtv*
4835
4836 CX2341X MPEG ENCODER HELPER MODULE
4837 M:      Hans Verkuil <hverkuil@xs4all.nl>
4838 L:      linux-media@vger.kernel.org
4839 S:      Maintained
4840 W:      https://linuxtv.org
4841 T:      git git://linuxtv.org/media_tree.git
4842 F:      drivers/media/common/cx2341x*
4843 F:      include/media/drv-intf/cx2341x.h
4844
4845 CX24120 MEDIA DRIVER
4846 M:      Jemma Denson <jdenson@gmail.com>
4847 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4848 L:      linux-media@vger.kernel.org
4849 S:      Maintained
4850 W:      https://linuxtv.org
4851 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4852 F:      drivers/media/dvb-frontends/cx24120*
4853
4854 CX88 VIDEO4LINUX DRIVER
4855 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4856 L:      linux-media@vger.kernel.org
4857 S:      Odd fixes
4858 W:      https://linuxtv.org
4859 T:      git git://linuxtv.org/media_tree.git
4860 F:      Documentation/driver-api/media/drivers/cx88*
4861 F:      drivers/media/pci/cx88/
4862
4863 CXD2820R MEDIA DRIVER
4864 M:      Antti Palosaari <crope@iki.fi>
4865 L:      linux-media@vger.kernel.org
4866 S:      Maintained
4867 W:      https://linuxtv.org
4868 W:      http://palosaari.fi/linux/
4869 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4870 T:      git git://linuxtv.org/anttip/media_tree.git
4871 F:      drivers/media/dvb-frontends/cxd2820r*
4872
4873 CXGB3 ETHERNET DRIVER (CXGB3)
4874 M:      Raju Rangoju <rajur@chelsio.com>
4875 L:      netdev@vger.kernel.org
4876 S:      Supported
4877 W:      http://www.chelsio.com
4878 F:      drivers/net/ethernet/chelsio/cxgb3/
4879
4880 CXGB3 ISCSI DRIVER (CXGB3I)
4881 M:      Karen Xie <kxie@chelsio.com>
4882 L:      linux-scsi@vger.kernel.org
4883 S:      Supported
4884 W:      http://www.chelsio.com
4885 F:      drivers/scsi/cxgbi/cxgb3i
4886
4887 CXGB4 CRYPTO DRIVER (chcr)
4888 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4889 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4890 M:      Rohit Maheshwari <rohitm@chelsio.com>
4891 L:      linux-crypto@vger.kernel.org
4892 S:      Supported
4893 W:      http://www.chelsio.com
4894 F:      drivers/crypto/chelsio
4895
4896 CXGB4 INLINE CRYPTO DRIVER
4897 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4898 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4899 M:      Rohit Maheshwari <rohitm@chelsio.com>
4900 L:      netdev@vger.kernel.org
4901 S:      Supported
4902 W:      http://www.chelsio.com
4903 F:      drivers/net/ethernet/chelsio/inline_crypto/
4904
4905 CXGB4 ETHERNET DRIVER (CXGB4)
4906 M:      Raju Rangoju <rajur@chelsio.com>
4907 L:      netdev@vger.kernel.org
4908 S:      Supported
4909 W:      http://www.chelsio.com
4910 F:      drivers/net/ethernet/chelsio/cxgb4/
4911
4912 CXGB4 ISCSI DRIVER (CXGB4I)
4913 M:      Karen Xie <kxie@chelsio.com>
4914 L:      linux-scsi@vger.kernel.org
4915 S:      Supported
4916 W:      http://www.chelsio.com
4917 F:      drivers/scsi/cxgbi/cxgb4i
4918
4919 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4920 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4921 L:      linux-rdma@vger.kernel.org
4922 S:      Supported
4923 W:      http://www.openfabrics.org
4924 F:      drivers/infiniband/hw/cxgb4/
4925 F:      include/uapi/rdma/cxgb4-abi.h
4926
4927 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4928 M:      Raju Rangoju <rajur@chelsio.com>
4929 L:      netdev@vger.kernel.org
4930 S:      Supported
4931 W:      http://www.chelsio.com
4932 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4933
4934 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4935 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4936 M:      Andrew Donnellan <ajd@linux.ibm.com>
4937 L:      linuxppc-dev@lists.ozlabs.org
4938 S:      Supported
4939 F:      Documentation/ABI/testing/sysfs-class-cxl
4940 F:      Documentation/powerpc/cxl.rst
4941 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4942 F:      drivers/misc/cxl/
4943 F:      include/misc/cxl*
4944 F:      include/uapi/misc/cxl.h
4945
4946 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4947 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4948 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4949 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4950 L:      linux-scsi@vger.kernel.org
4951 S:      Supported
4952 F:      Documentation/powerpc/cxlflash.rst
4953 F:      drivers/scsi/cxlflash/
4954 F:      include/uapi/scsi/cxlflash_ioctl.h
4955
4956 CYBERPRO FB DRIVER
4957 M:      Russell King <linux@armlinux.org.uk>
4958 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4959 S:      Maintained
4960 W:      http://www.armlinux.org.uk/
4961 F:      drivers/video/fbdev/cyber2000fb.*
4962
4963 CYCLADES PC300 DRIVER
4964 S:      Orphan
4965 F:      drivers/net/wan/pc300*
4966
4967 CYPRESS_FIRMWARE MEDIA DRIVER
4968 M:      Antti Palosaari <crope@iki.fi>
4969 L:      linux-media@vger.kernel.org
4970 S:      Maintained
4971 W:      https://linuxtv.org
4972 W:      http://palosaari.fi/linux/
4973 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4974 T:      git git://linuxtv.org/anttip/media_tree.git
4975 F:      drivers/media/common/cypress_firmware*
4976
4977 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
4978 M:      Linus Walleij <linus.walleij@linaro.org>
4979 L:      linux-input@vger.kernel.org
4980 S:      Maintained
4981 F:      drivers/input/touchscreen/cy8ctma140.c
4982
4983 CYTTSP TOUCHSCREEN DRIVER
4984 M:      Ferruh Yigit <fery@cypress.com>
4985 L:      linux-input@vger.kernel.org
4986 S:      Supported
4987 F:      drivers/input/touchscreen/cyttsp*
4988 F:      include/linux/input/cyttsp.h
4989
4990 D-LINK DIR-685 TOUCHKEYS DRIVER
4991 M:      Linus Walleij <linus.walleij@linaro.org>
4992 L:      linux-input@vger.kernel.org
4993 S:      Supported
4994 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4995
4996 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4997 M:      Joshua Kinard <kumba@gentoo.org>
4998 S:      Maintained
4999 F:      drivers/rtc/rtc-ds1685.c
5000 F:      include/linux/rtc/ds1685.h
5001
5002 DAMA SLAVE for AX.25
5003 M:      Joerg Reuter <jreuter@yaina.de>
5004 L:      linux-hams@vger.kernel.org
5005 S:      Maintained
5006 W:      http://yaina.de/jreuter/
5007 W:      http://www.qsl.net/dl1bke/
5008 F:      net/ax25/af_ax25.c
5009 F:      net/ax25/ax25_dev.c
5010 F:      net/ax25/ax25_ds_*
5011 F:      net/ax25/ax25_in.c
5012 F:      net/ax25/ax25_out.c
5013 F:      net/ax25/ax25_timer.c
5014 F:      net/ax25/sysctl_net_ax25.c
5015
5016 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5017 L:      netdev@vger.kernel.org
5018 S:      Orphan
5019 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5020 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5021
5022 DC390/AM53C974 SCSI driver
5023 M:      Hannes Reinecke <hare@suse.com>
5024 L:      linux-scsi@vger.kernel.org
5025 S:      Maintained
5026 F:      drivers/scsi/am53c974.c
5027
5028 DC395x SCSI driver
5029 M:      Oliver Neukum <oliver@neukum.org>
5030 M:      Ali Akcaagac <aliakc@web.de>
5031 M:      Jamie Lenehan <lenehan@twibble.org>
5032 L:      dc395x@twibble.org
5033 S:      Maintained
5034 W:      http://twibble.org/dist/dc395x/
5035 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5036 F:      Documentation/scsi/dc395x.rst
5037 F:      drivers/scsi/dc395x.*
5038
5039 DCCP PROTOCOL
5040 L:      dccp@vger.kernel.org
5041 S:      Orphan
5042 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5043 F:      include/linux/dccp.h
5044 F:      include/linux/tfrc.h
5045 F:      include/uapi/linux/dccp.h
5046 F:      net/dccp/
5047
5048 DECnet NETWORK LAYER
5049 L:      linux-decnet-user@lists.sourceforge.net
5050 S:      Orphan
5051 W:      http://linux-decnet.sourceforge.net
5052 F:      Documentation/networking/decnet.rst
5053 F:      net/decnet/
5054
5055 DECSTATION PLATFORM SUPPORT
5056 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5057 L:      linux-mips@vger.kernel.org
5058 S:      Maintained
5059 W:      http://www.linux-mips.org/wiki/DECstation
5060 F:      arch/mips/dec/
5061 F:      arch/mips/include/asm/dec/
5062 F:      arch/mips/include/asm/mach-dec/
5063
5064 DEFXX FDDI NETWORK DRIVER
5065 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5066 S:      Maintained
5067 F:      drivers/net/fddi/defxx.*
5068
5069 DEFZA FDDI NETWORK DRIVER
5070 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5071 S:      Maintained
5072 F:      drivers/net/fddi/defza.*
5073
5074 DEINTERLACE DRIVERS FOR ALLWINNER H3
5075 M:      Jernej Skrabec <jernej.skrabec@siol.net>
5076 L:      linux-media@vger.kernel.org
5077 S:      Maintained
5078 T:      git git://linuxtv.org/media_tree.git
5079 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5080 F:      drivers/media/platform/sunxi/sun8i-di/
5081
5082 DELL LAPTOP DRIVER
5083 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5084 M:      Pali Rohár <pali@kernel.org>
5085 L:      platform-driver-x86@vger.kernel.org
5086 S:      Maintained
5087 F:      drivers/platform/x86/dell/dell-laptop.c
5088
5089 DELL LAPTOP FREEFALL DRIVER
5090 M:      Pali Rohár <pali@kernel.org>
5091 S:      Maintained
5092 F:      drivers/platform/x86/dell/dell-smo8800.c
5093
5094 DELL LAPTOP RBTN DRIVER
5095 M:      Pali Rohár <pali@kernel.org>
5096 S:      Maintained
5097 F:      drivers/platform/x86/dell/dell-rbtn.*
5098
5099 DELL LAPTOP SMM DRIVER
5100 M:      Pali Rohár <pali@kernel.org>
5101 S:      Maintained
5102 F:      drivers/hwmon/dell-smm-hwmon.c
5103 F:      include/uapi/linux/i8k.h
5104
5105 DELL REMOTE BIOS UPDATE DRIVER
5106 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5107 L:      platform-driver-x86@vger.kernel.org
5108 S:      Maintained
5109 F:      drivers/platform/x86/dell/dell_rbu.c
5110
5111 DELL SMBIOS DRIVER
5112 M:      Pali Rohár <pali@kernel.org>
5113 L:      Dell.Client.Kernel@dell.com
5114 L:      platform-driver-x86@vger.kernel.org
5115 S:      Maintained
5116 F:      drivers/platform/x86/dell/dell-smbios.*
5117
5118 DELL SMBIOS SMM DRIVER
5119 L:      Dell.Client.Kernel@dell.com
5120 L:      platform-driver-x86@vger.kernel.org
5121 S:      Maintained
5122 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5123
5124 DELL SMBIOS WMI DRIVER
5125 L:      Dell.Client.Kernel@dell.com
5126 L:      platform-driver-x86@vger.kernel.org
5127 S:      Maintained
5128 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5129 F:      tools/wmi/dell-smbios-example.c
5130
5131 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5132 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5133 L:      platform-driver-x86@vger.kernel.org
5134 S:      Maintained
5135 F:      Documentation/driver-api/dcdbas.rst
5136 F:      drivers/platform/x86/dell/dcdbas.*
5137
5138 DELL WMI DESCRIPTOR DRIVER
5139 L:      Dell.Client.Kernel@dell.com
5140 S:      Maintained
5141 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5142
5143 DELL WMI SYSMAN DRIVER
5144 M:      Divya Bharathi <divya.bharathi@dell.com>
5145 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5146 L:      Dell.Client.Kernel@dell.com
5147 L:      platform-driver-x86@vger.kernel.org
5148 S:      Maintained
5149 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5150 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5151
5152 DELL WMI NOTIFICATIONS DRIVER
5153 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5154 M:      Pali Rohár <pali@kernel.org>
5155 S:      Maintained
5156 F:      drivers/platform/x86/dell/dell-wmi.c
5157
5158 DELTA ST MEDIA DRIVER
5159 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5160 L:      linux-media@vger.kernel.org
5161 S:      Supported
5162 W:      https://linuxtv.org
5163 T:      git git://linuxtv.org/media_tree.git
5164 F:      drivers/media/platform/sti/delta
5165
5166 DENALI NAND DRIVER
5167 L:      linux-mtd@lists.infradead.org
5168 S:      Orphan
5169 F:      drivers/mtd/nand/raw/denali*
5170
5171 DESIGNWARE EDMA CORE IP DRIVER
5172 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5173 L:      dmaengine@vger.kernel.org
5174 S:      Maintained
5175 F:      drivers/dma/dw-edma/
5176 F:      include/linux/dma/edma.h
5177
5178 DESIGNWARE XDATA IP DRIVER
5179 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5180 L:      linux-pci@vger.kernel.org
5181 S:      Maintained
5182 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5183 F:      drivers/misc/dw-xdata-pcie.c
5184
5185 DESIGNWARE USB2 DRD IP DRIVER
5186 M:      Minas Harutyunyan <hminas@synopsys.com>
5187 L:      linux-usb@vger.kernel.org
5188 S:      Maintained
5189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5190 F:      drivers/usb/dwc2/
5191
5192 DESIGNWARE USB3 DRD IP DRIVER
5193 M:      Felipe Balbi <balbi@kernel.org>
5194 L:      linux-usb@vger.kernel.org
5195 S:      Maintained
5196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5197 F:      drivers/usb/dwc3/
5198
5199 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5200 M:      Andreas Klinger <ak@it-klinger.de>
5201 L:      linux-iio@vger.kernel.org
5202 S:      Maintained
5203 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5204 F:      drivers/iio/proximity/srf*.c
5205
5206 DEVICE COREDUMP (DEV_COREDUMP)
5207 M:      Johannes Berg <johannes@sipsolutions.net>
5208 L:      linux-kernel@vger.kernel.org
5209 S:      Maintained
5210 F:      drivers/base/devcoredump.c
5211 F:      include/linux/devcoredump.h
5212
5213 DEVICE DEPENDENCY HELPER SCRIPT
5214 M:      Saravana Kannan <saravanak@google.com>
5215 L:      linux-kernel@vger.kernel.org
5216 S:      Maintained
5217 F:      scripts/dev-needs.sh
5218
5219 DEVICE DIRECT ACCESS (DAX)
5220 M:      Dan Williams <dan.j.williams@intel.com>
5221 M:      Vishal Verma <vishal.l.verma@intel.com>
5222 M:      Dave Jiang <dave.jiang@intel.com>
5223 L:      linux-nvdimm@lists.01.org
5224 S:      Supported
5225 F:      drivers/dax/
5226
5227 DEVICE FREQUENCY (DEVFREQ)
5228 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5229 M:      Kyungmin Park <kyungmin.park@samsung.com>
5230 M:      Chanwoo Choi <cw00.choi@samsung.com>
5231 L:      linux-pm@vger.kernel.org
5232 S:      Maintained
5233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5234 F:      Documentation/devicetree/bindings/devfreq/
5235 F:      drivers/devfreq/
5236 F:      include/linux/devfreq.h
5237 F:      include/trace/events/devfreq.h
5238
5239 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5240 M:      Chanwoo Choi <cw00.choi@samsung.com>
5241 L:      linux-pm@vger.kernel.org
5242 S:      Supported
5243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5244 F:      Documentation/devicetree/bindings/devfreq/event/
5245 F:      drivers/devfreq/devfreq-event.c
5246 F:      drivers/devfreq/event/
5247 F:      include/dt-bindings/pmu/exynos_ppmu.h
5248 F:      include/linux/devfreq-event.h
5249
5250 DEVICE NUMBER REGISTRY
5251 M:      Torben Mathiasen <device@lanana.org>
5252 S:      Maintained
5253 W:      http://lanana.org/docs/device-list/index.html
5254
5255 DEVICE RESOURCE MANAGEMENT HELPERS
5256 M:      Hans de Goede <hdegoede@redhat.com>
5257 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5258 S:      Maintained
5259 F:      include/linux/devm-helpers.h
5260
5261 DEVICE-MAPPER  (LVM)
5262 M:      Alasdair Kergon <agk@redhat.com>
5263 M:      Mike Snitzer <snitzer@redhat.com>
5264 M:      dm-devel@redhat.com
5265 L:      dm-devel@redhat.com
5266 S:      Maintained
5267 W:      http://sources.redhat.com/dm
5268 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5270 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5271 F:      Documentation/admin-guide/device-mapper/
5272 F:      drivers/md/Kconfig
5273 F:      drivers/md/Makefile
5274 F:      drivers/md/dm*
5275 F:      drivers/md/persistent-data/
5276 F:      include/linux/device-mapper.h
5277 F:      include/linux/dm-*.h
5278 F:      include/uapi/linux/dm-*.h
5279
5280 DEVLINK
5281 M:      Jiri Pirko <jiri@nvidia.com>
5282 L:      netdev@vger.kernel.org
5283 S:      Supported
5284 F:      Documentation/networking/devlink
5285 F:      include/net/devlink.h
5286 F:      include/uapi/linux/devlink.h
5287 F:      net/core/devlink.c
5288
5289 DIALOG SEMICONDUCTOR DRIVERS
5290 M:      Support Opensource <support.opensource@diasemi.com>
5291 S:      Supported
5292 W:      http://www.dialog-semiconductor.com/products
5293 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5294 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5295 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5296 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5297 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5298 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5299 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5300 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5301 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5302 F:      Documentation/hwmon/da90??.rst
5303 F:      drivers/gpio/gpio-da90??.c
5304 F:      drivers/hwmon/da90??-hwmon.c
5305 F:      drivers/iio/adc/da91??-*.c
5306 F:      drivers/input/misc/da72??.[ch]
5307 F:      drivers/input/misc/da90??_onkey.c
5308 F:      drivers/input/touchscreen/da9052_tsi.c
5309 F:      drivers/leds/leds-da90??.c
5310 F:      drivers/mfd/da903x.c
5311 F:      drivers/mfd/da90??-*.c
5312 F:      drivers/mfd/da91??-*.c
5313 F:      drivers/pinctrl/pinctrl-da90??.c
5314 F:      drivers/power/supply/da9052-battery.c
5315 F:      drivers/power/supply/da91??-*.c
5316 F:      drivers/regulator/da9???-regulator.[ch]
5317 F:      drivers/regulator/slg51000-regulator.[ch]
5318 F:      drivers/rtc/rtc-da90??.c
5319 F:      drivers/thermal/da90??-thermal.c
5320 F:      drivers/video/backlight/da90??_bl.c
5321 F:      drivers/watchdog/da90??_wdt.c
5322 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5323 F:      include/linux/mfd/da903x.h
5324 F:      include/linux/mfd/da9052/
5325 F:      include/linux/mfd/da9055/
5326 F:      include/linux/mfd/da9062/
5327 F:      include/linux/mfd/da9063/
5328 F:      include/linux/mfd/da9150/
5329 F:      include/linux/regulator/da9211.h
5330 F:      include/sound/da[79]*.h
5331 F:      sound/soc/codecs/da[79]*.[ch]
5332
5333 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5334 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5335 L:      linux-gpio@vger.kernel.org
5336 S:      Maintained
5337 F:      drivers/gpio/gpio-gpio-mm.c
5338
5339 DIOLAN U2C-12 I2C DRIVER
5340 M:      Guenter Roeck <linux@roeck-us.net>
5341 L:      linux-i2c@vger.kernel.org
5342 S:      Maintained
5343 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5344
5345 DIRECTORY NOTIFICATION (DNOTIFY)
5346 M:      Jan Kara <jack@suse.cz>
5347 R:      Amir Goldstein <amir73il@gmail.com>
5348 L:      linux-fsdevel@vger.kernel.org
5349 S:      Maintained
5350 F:      Documentation/filesystems/dnotify.rst
5351 F:      fs/notify/dnotify/
5352 F:      include/linux/dnotify.h
5353
5354 DISK GEOMETRY AND PARTITION HANDLING
5355 M:      Andries Brouwer <aeb@cwi.nl>
5356 S:      Maintained
5357 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5358 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5359 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5360
5361 DISKQUOTA
5362 M:      Jan Kara <jack@suse.com>
5363 S:      Maintained
5364 F:      Documentation/filesystems/quota.rst
5365 F:      fs/quota/
5366 F:      include/linux/quota*.h
5367 F:      include/uapi/linux/quota*.h
5368
5369 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5370 M:      Bernie Thompson <bernie@plugable.com>
5371 L:      linux-fbdev@vger.kernel.org
5372 S:      Maintained
5373 W:      http://plugable.com/category/projects/udlfb/
5374 F:      Documentation/fb/udlfb.rst
5375 F:      drivers/video/fbdev/udlfb.c
5376 F:      include/video/udlfb.h
5377
5378 DISTRIBUTED LOCK MANAGER (DLM)
5379 M:      Christine Caulfield <ccaulfie@redhat.com>
5380 M:      David Teigland <teigland@redhat.com>
5381 L:      cluster-devel@redhat.com
5382 S:      Supported
5383 W:      http://sources.redhat.com/cluster/
5384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5385 F:      fs/dlm/
5386
5387 DMA BUFFER SHARING FRAMEWORK
5388 M:      Sumit Semwal <sumit.semwal@linaro.org>
5389 M:      Christian König <christian.koenig@amd.com>
5390 L:      linux-media@vger.kernel.org
5391 L:      dri-devel@lists.freedesktop.org
5392 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5393 S:      Maintained
5394 T:      git git://anongit.freedesktop.org/drm/drm-misc
5395 F:      Documentation/driver-api/dma-buf.rst
5396 F:      drivers/dma-buf/
5397 F:      include/linux/*fence.h
5398 F:      include/linux/dma-buf*
5399 F:      include/linux/dma-resv.h
5400 K:      \bdma_(?:buf|fence|resv)\b
5401
5402 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5403 M:      Vinod Koul <vkoul@kernel.org>
5404 L:      dmaengine@vger.kernel.org
5405 S:      Maintained
5406 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5408 F:      Documentation/devicetree/bindings/dma/
5409 F:      Documentation/driver-api/dmaengine/
5410 F:      drivers/dma/
5411 F:      include/linux/dma/
5412 F:      include/linux/dmaengine.h
5413 F:      include/linux/of_dma.h
5414
5415 DMA MAPPING HELPERS
5416 M:      Christoph Hellwig <hch@lst.de>
5417 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5418 R:      Robin Murphy <robin.murphy@arm.com>
5419 L:      iommu@lists.linux-foundation.org
5420 S:      Supported
5421 W:      http://git.infradead.org/users/hch/dma-mapping.git
5422 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5423 F:      include/asm-generic/dma-mapping.h
5424 F:      include/linux/dma-direct.h
5425 F:      include/linux/dma-mapping.h
5426 F:      include/linux/dma-map-ops.h
5427 F:      kernel/dma/
5428
5429 DMA MAPPING BENCHMARK
5430 M:      Barry Song <song.bao.hua@hisilicon.com>
5431 L:      iommu@lists.linux-foundation.org
5432 F:      kernel/dma/map_benchmark.c
5433 F:      tools/testing/selftests/dma/
5434
5435 DMA-BUF HEAPS FRAMEWORK
5436 M:      Sumit Semwal <sumit.semwal@linaro.org>
5437 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5438 R:      Liam Mark <lmark@codeaurora.org>
5439 R:      Laura Abbott <labbott@redhat.com>
5440 R:      Brian Starkey <Brian.Starkey@arm.com>
5441 R:      John Stultz <john.stultz@linaro.org>
5442 L:      linux-media@vger.kernel.org
5443 L:      dri-devel@lists.freedesktop.org
5444 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5445 S:      Maintained
5446 T:      git git://anongit.freedesktop.org/drm/drm-misc
5447 F:      drivers/dma-buf/dma-heap.c
5448 F:      drivers/dma-buf/heaps/*
5449 F:      include/linux/dma-heap.h
5450 F:      include/uapi/linux/dma-heap.h
5451
5452 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5453 M:      Lukasz Luba <lukasz.luba@arm.com>
5454 L:      linux-pm@vger.kernel.org
5455 L:      linux-samsung-soc@vger.kernel.org
5456 S:      Maintained
5457 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5458 F:      drivers/memory/samsung/exynos5422-dmc.c
5459
5460 DME1737 HARDWARE MONITOR DRIVER
5461 M:      Juerg Haefliger <juergh@gmail.com>
5462 L:      linux-hwmon@vger.kernel.org
5463 S:      Maintained
5464 F:      Documentation/hwmon/dme1737.rst
5465 F:      drivers/hwmon/dme1737.c
5466
5467 DMI/SMBIOS SUPPORT
5468 M:      Jean Delvare <jdelvare@suse.com>
5469 S:      Maintained
5470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5471 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5472 F:      drivers/firmware/dmi-id.c
5473 F:      drivers/firmware/dmi_scan.c
5474 F:      include/linux/dmi.h
5475
5476 DOCUMENTATION
5477 M:      Jonathan Corbet <corbet@lwn.net>
5478 L:      linux-doc@vger.kernel.org
5479 S:      Maintained
5480 P:      Documentation/doc-guide/maintainer-profile.rst
5481 T:      git git://git.lwn.net/linux.git docs-next
5482 F:      Documentation/
5483 F:      scripts/documentation-file-ref-check
5484 F:      scripts/kernel-doc
5485 F:      scripts/sphinx-pre-install
5486 X:      Documentation/ABI/
5487 X:      Documentation/admin-guide/media/
5488 X:      Documentation/devicetree/
5489 X:      Documentation/driver-api/media/
5490 X:      Documentation/firmware-guide/acpi/
5491 X:      Documentation/i2c/
5492 X:      Documentation/power/
5493 X:      Documentation/spi/
5494 X:      Documentation/userspace-api/media/
5495
5496 DOCUMENTATION REPORTING ISSUES
5497 M:      Thorsten Leemhuis <linux@leemhuis.info>
5498 L:      linux-doc@vger.kernel.org
5499 S:      Maintained
5500 F:      Documentation/admin-guide/reporting-issues.rst
5501
5502 DOCUMENTATION SCRIPTS
5503 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5504 L:      linux-doc@vger.kernel.org
5505 S:      Maintained
5506 F:      Documentation/sphinx/parse-headers.pl
5507 F:      scripts/documentation-file-ref-check
5508 F:      scripts/sphinx-pre-install
5509
5510 DOCUMENTATION/ITALIAN
5511 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5512 L:      linux-doc@vger.kernel.org
5513 S:      Maintained
5514 F:      Documentation/translations/it_IT
5515
5516 DONGWOON DW9714 LENS VOICE COIL DRIVER
5517 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5518 L:      linux-media@vger.kernel.org
5519 S:      Maintained
5520 T:      git git://linuxtv.org/media_tree.git
5521 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5522 F:      drivers/media/i2c/dw9714.c
5523
5524 DONGWOON DW9768 LENS VOICE COIL DRIVER
5525 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5526 L:      linux-media@vger.kernel.org
5527 S:      Maintained
5528 T:      git git://linuxtv.org/media_tree.git
5529 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5530 F:      drivers/media/i2c/dw9768.c
5531
5532 DONGWOON DW9807 LENS VOICE COIL DRIVER
5533 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5534 L:      linux-media@vger.kernel.org
5535 S:      Maintained
5536 T:      git git://linuxtv.org/media_tree.git
5537 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5538 F:      drivers/media/i2c/dw9807-vcm.c
5539
5540 DOUBLETALK DRIVER
5541 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5542 L:      blinux-list@redhat.com
5543 S:      Maintained
5544 F:      drivers/char/dtlk.c
5545 F:      include/linux/dtlk.h
5546
5547 DPAA2 DATAPATH I/O (DPIO) DRIVER
5548 M:      Roy Pledge <Roy.Pledge@nxp.com>
5549 L:      linux-kernel@vger.kernel.org
5550 S:      Maintained
5551 F:      drivers/soc/fsl/dpio
5552
5553 DPAA2 ETHERNET DRIVER
5554 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5555 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5556 L:      netdev@vger.kernel.org
5557 S:      Maintained
5558 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5559 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5560 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5561 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5562 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5563 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5564 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5565 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5566 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5567
5568 DPAA2 ETHERNET SWITCH DRIVER
5569 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5570 L:      netdev@vger.kernel.org
5571 S:      Maintained
5572 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5573 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
5574
5575 DPT_I2O SCSI RAID DRIVER
5576 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5577 L:      linux-scsi@vger.kernel.org
5578 S:      Maintained
5579 W:      http://www.adaptec.com/
5580 F:      drivers/scsi/dpt*
5581 F:      drivers/scsi/dpt/
5582
5583 DRBD DRIVER
5584 M:      Philipp Reisner <philipp.reisner@linbit.com>
5585 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5586 L:      drbd-dev@lists.linbit.com
5587 S:      Supported
5588 W:      http://www.drbd.org
5589 T:      git git://git.linbit.com/linux-drbd.git
5590 T:      git git://git.linbit.com/drbd-8.4.git
5591 F:      Documentation/admin-guide/blockdev/
5592 F:      drivers/block/drbd/
5593 F:      lib/lru_cache.c
5594
5595 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5596 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5597 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5598 S:      Supported
5599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5600 F:      Documentation/core-api/kobject.rst
5601 F:      drivers/base/
5602 F:      fs/debugfs/
5603 F:      fs/sysfs/
5604 F:      include/linux/debugfs.h
5605 F:      include/linux/kobj*
5606 F:      lib/kobj*
5607
5608 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5609 M:      Nishanth Menon <nm@ti.com>
5610 L:      linux-pm@vger.kernel.org
5611 S:      Maintained
5612 F:      drivers/soc/ti/smartreflex.c
5613 F:      include/linux/power/smartreflex.h
5614
5615 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5616 M:      Maxime Ripard <mripard@kernel.org>
5617 M:      Chen-Yu Tsai <wens@csie.org>
5618 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5619 L:      dri-devel@lists.freedesktop.org
5620 S:      Supported
5621 T:      git git://anongit.freedesktop.org/drm/drm-misc
5622 F:      drivers/gpu/drm/sun4i/sun8i*
5623
5624 DRM DRIVER FOR ARM PL111 CLCD
5625 M:      Eric Anholt <eric@anholt.net>
5626 S:      Supported
5627 T:      git git://anongit.freedesktop.org/drm/drm-misc
5628 F:      drivers/gpu/drm/pl111/
5629
5630 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5631 M:      Linus Walleij <linus.walleij@linaro.org>
5632 S:      Maintained
5633 T:      git git://anongit.freedesktop.org/drm/drm-misc
5634 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5635 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5636
5637 DRM DRIVER FOR ASPEED BMC GFX
5638 M:      Joel Stanley <joel@jms.id.au>
5639 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5640 S:      Supported
5641 T:      git git://anongit.freedesktop.org/drm/drm-misc
5642 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5643 F:      drivers/gpu/drm/aspeed/
5644
5645 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5646 M:      Dave Airlie <airlied@redhat.com>
5647 R:      Thomas Zimmermann <tzimmermann@suse.de>
5648 L:      dri-devel@lists.freedesktop.org
5649 S:      Supported
5650 T:      git git://anongit.freedesktop.org/drm/drm-misc
5651 F:      drivers/gpu/drm/ast/
5652
5653 DRM DRIVER FOR BOCHS VIRTUAL GPU
5654 M:      Gerd Hoffmann <kraxel@redhat.com>
5655 L:      virtualization@lists.linux-foundation.org
5656 S:      Maintained
5657 T:      git git://anongit.freedesktop.org/drm/drm-misc
5658 F:      drivers/gpu/drm/bochs/
5659
5660 DRM DRIVER FOR BOE HIMAX8279D PANELS
5661 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5662 S:      Maintained
5663 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5664 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5665
5666 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
5667 M:      Jagan Teki <jagan@amarulasolutions.com>
5668 S:      Maintained
5669 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
5670 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
5671
5672 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5673 M:      Linus Walleij <linus.walleij@linaro.org>
5674 S:      Maintained
5675 T:      git git://anongit.freedesktop.org/drm/drm-misc
5676 F:      drivers/gpu/drm/tve200/
5677
5678 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5679 M:      Icenowy Zheng <icenowy@aosc.io>
5680 S:      Maintained
5681 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5682 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5683
5684 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5685 M:      Jagan Teki <jagan@amarulasolutions.com>
5686 S:      Maintained
5687 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5688 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5689
5690 DRM DRIVER FOR GENERIC USB DISPLAY
5691 M:      Noralf Trønnes <noralf@tronnes.org>
5692 S:      Maintained
5693 W:      https://github.com/notro/gud/wiki
5694 T:      git git://anongit.freedesktop.org/drm/drm-misc
5695 F:      drivers/gpu/drm/gud/
5696 F:      include/drm/gud.h
5697
5698 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5699 M:      Hans de Goede <hdegoede@redhat.com>
5700 S:      Maintained
5701 T:      git git://anongit.freedesktop.org/drm/drm-misc
5702 F:      drivers/gpu/drm/tiny/gm12u320.c
5703
5704 DRM DRIVER FOR HX8357D PANELS
5705 M:      Eric Anholt <eric@anholt.net>
5706 S:      Maintained
5707 T:      git git://anongit.freedesktop.org/drm/drm-misc
5708 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5709 F:      drivers/gpu/drm/tiny/hx8357d.c
5710
5711 DRM DRIVER FOR ILITEK ILI9225 PANELS
5712 M:      David Lechner <david@lechnology.com>
5713 S:      Maintained
5714 T:      git git://anongit.freedesktop.org/drm/drm-misc
5715 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5716 F:      drivers/gpu/drm/tiny/ili9225.c
5717
5718 DRM DRIVER FOR ILITEK ILI9486 PANELS
5719 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5720 S:      Maintained
5721 T:      git git://anongit.freedesktop.org/drm/drm-misc
5722 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5723 F:      drivers/gpu/drm/tiny/ili9486.c
5724
5725 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5726 S:      Orphan / Obsolete
5727 F:      drivers/gpu/drm/i810/
5728 F:      include/uapi/drm/i810_drm.h
5729
5730 DRM DRIVER FOR LVDS PANELS
5731 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5732 L:      dri-devel@lists.freedesktop.org
5733 T:      git git://anongit.freedesktop.org/drm/drm-misc
5734 S:      Maintained
5735 F:      drivers/gpu/drm/panel/panel-lvds.c
5736 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5737
5738 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5739 M:      Guido Günther <agx@sigxcpu.org>
5740 R:      Purism Kernel Team <kernel@puri.sm>
5741 S:      Maintained
5742 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5743 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5744
5745 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5746 S:      Orphan / Obsolete
5747 F:      drivers/gpu/drm/mga/
5748 F:      include/uapi/drm/mga_drm.h
5749
5750 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5751 M:      Dave Airlie <airlied@redhat.com>
5752 R:      Thomas Zimmermann <tzimmermann@suse.de>
5753 L:      dri-devel@lists.freedesktop.org
5754 S:      Supported
5755 T:      git git://anongit.freedesktop.org/drm/drm-misc
5756 F:      drivers/gpu/drm/mgag200/
5757
5758 DRM DRIVER FOR MI0283QT
5759 M:      Noralf Trønnes <noralf@tronnes.org>
5760 S:      Maintained
5761 T:      git git://anongit.freedesktop.org/drm/drm-misc
5762 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5763 F:      drivers/gpu/drm/tiny/mi0283qt.c
5764
5765 DRM DRIVER FOR MSM ADRENO GPU
5766 M:      Rob Clark <robdclark@gmail.com>
5767 M:      Sean Paul <sean@poorly.run>
5768 L:      linux-arm-msm@vger.kernel.org
5769 L:      dri-devel@lists.freedesktop.org
5770 L:      freedreno@lists.freedesktop.org
5771 S:      Maintained
5772 T:      git https://gitlab.freedesktop.org/drm/msm.git
5773 F:      Documentation/devicetree/bindings/display/msm/
5774 F:      drivers/gpu/drm/msm/
5775 F:      include/uapi/drm/msm_drm.h
5776
5777 DRM DRIVER FOR NOVATEK NT35510 PANELS
5778 M:      Linus Walleij <linus.walleij@linaro.org>
5779 S:      Maintained
5780 T:      git git://anongit.freedesktop.org/drm/drm-misc
5781 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5782 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5783
5784 DRM DRIVER FOR NOVATEK NT36672A PANELS
5785 M:      Sumit Semwal <sumit.semwal@linaro.org>
5786 S:      Maintained
5787 T:      git git://anongit.freedesktop.org/drm/drm-misc
5788 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
5789 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
5790
5791 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5792 M:      Ben Skeggs <bskeggs@redhat.com>
5793 L:      dri-devel@lists.freedesktop.org
5794 L:      nouveau@lists.freedesktop.org
5795 S:      Supported
5796 T:      git git://github.com/skeggsb/linux
5797 F:      drivers/gpu/drm/nouveau/
5798 F:      include/uapi/drm/nouveau_drm.h
5799
5800 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5801 M:      Stefan Mavrodiev <stefan@olimex.com>
5802 S:      Maintained
5803 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5804 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5805
5806 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5807 M:      Noralf Trønnes <noralf@tronnes.org>
5808 S:      Maintained
5809 T:      git git://anongit.freedesktop.org/drm/drm-misc
5810 F:      Documentation/devicetree/bindings/display/repaper.txt
5811 F:      drivers/gpu/drm/tiny/repaper.c
5812
5813 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5814 M:      Dave Airlie <airlied@redhat.com>
5815 M:      Gerd Hoffmann <kraxel@redhat.com>
5816 L:      virtualization@lists.linux-foundation.org
5817 S:      Obsolete
5818 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5819 T:      git git://anongit.freedesktop.org/drm/drm-misc
5820 F:      drivers/gpu/drm/tiny/cirrus.c
5821
5822 DRM DRIVER FOR QXL VIRTUAL GPU
5823 M:      Dave Airlie <airlied@redhat.com>
5824 M:      Gerd Hoffmann <kraxel@redhat.com>
5825 L:      virtualization@lists.linux-foundation.org
5826 L:      spice-devel@lists.freedesktop.org
5827 S:      Maintained
5828 T:      git git://anongit.freedesktop.org/drm/drm-misc
5829 F:      drivers/gpu/drm/qxl/
5830 F:      include/uapi/drm/qxl_drm.h
5831
5832 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5833 S:      Orphan / Obsolete
5834 F:      drivers/gpu/drm/r128/
5835 F:      include/uapi/drm/r128_drm.h
5836
5837 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5838 M:      Robert Chiras <robert.chiras@nxp.com>
5839 S:      Maintained
5840 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
5841 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5842
5843 DRM DRIVER FOR SITRONIX ST7703 PANELS
5844 M:      Guido Günther <agx@sigxcpu.org>
5845 R:      Purism Kernel Team <kernel@puri.sm>
5846 R:      Ondrej Jirman <megous@megous.com>
5847 S:      Maintained
5848 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
5849 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
5850
5851 DRM DRIVER FOR SAVAGE VIDEO CARDS
5852 S:      Orphan / Obsolete
5853 F:      drivers/gpu/drm/savage/
5854 F:      include/uapi/drm/savage_drm.h
5855
5856 DRM DRIVER FOR SIS VIDEO CARDS
5857 S:      Orphan / Obsolete
5858 F:      drivers/gpu/drm/sis/
5859 F:      include/uapi/drm/sis_drm.h
5860
5861 DRM DRIVER FOR SITRONIX ST7586 PANELS
5862 M:      David Lechner <david@lechnology.com>
5863 S:      Maintained
5864 T:      git git://anongit.freedesktop.org/drm/drm-misc
5865 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5866 F:      drivers/gpu/drm/tiny/st7586.c
5867
5868 DRM DRIVER FOR SITRONIX ST7701 PANELS
5869 M:      Jagan Teki <jagan@amarulasolutions.com>
5870 S:      Maintained
5871 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5872 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5873
5874 DRM DRIVER FOR SITRONIX ST7735R PANELS
5875 M:      David Lechner <david@lechnology.com>
5876 S:      Maintained
5877 T:      git git://anongit.freedesktop.org/drm/drm-misc
5878 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5879 F:      drivers/gpu/drm/tiny/st7735r.c
5880
5881 DRM DRIVER FOR SONY ACX424AKP PANELS
5882 M:      Linus Walleij <linus.walleij@linaro.org>
5883 S:      Maintained
5884 T:      git git://anongit.freedesktop.org/drm/drm-misc
5885 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5886
5887 DRM DRIVER FOR ST-ERICSSON MCDE
5888 M:      Linus Walleij <linus.walleij@linaro.org>
5889 S:      Maintained
5890 T:      git git://anongit.freedesktop.org/drm/drm-misc
5891 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
5892 F:      drivers/gpu/drm/mcde/
5893
5894 DRM DRIVER FOR TDFX VIDEO CARDS
5895 S:      Orphan / Obsolete
5896 F:      drivers/gpu/drm/tdfx/
5897
5898 DRM DRIVER FOR TPO TPG110 PANELS
5899 M:      Linus Walleij <linus.walleij@linaro.org>
5900 S:      Maintained
5901 T:      git git://anongit.freedesktop.org/drm/drm-misc
5902 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5903 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5904
5905 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5906 M:      Dave Airlie <airlied@redhat.com>
5907 R:      Sean Paul <sean@poorly.run>
5908 R:      Thomas Zimmermann <tzimmermann@suse.de>
5909 L:      dri-devel@lists.freedesktop.org
5910 S:      Supported
5911 T:      git git://anongit.freedesktop.org/drm/drm-misc
5912 F:      drivers/gpu/drm/udl/
5913
5914 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5915 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5916 M:      Melissa Wen <melissa.srw@gmail.com>
5917 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5918 R:      Daniel Vetter <daniel@ffwll.ch>
5919 L:      dri-devel@lists.freedesktop.org
5920 S:      Maintained
5921 T:      git git://anongit.freedesktop.org/drm/drm-misc
5922 F:      Documentation/gpu/vkms.rst
5923 F:      drivers/gpu/drm/vkms/
5924
5925 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5926 M:      Hans de Goede <hdegoede@redhat.com>
5927 L:      dri-devel@lists.freedesktop.org
5928 S:      Maintained
5929 T:      git git://anongit.freedesktop.org/drm/drm-misc
5930 F:      drivers/gpu/drm/vboxvideo/
5931
5932 DRM DRIVER FOR VMWARE VIRTUAL GPU
5933 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5934 M:      Roland Scheidegger <sroland@vmware.com>
5935 M:      Zack Rusin <zackr@vmware.com>
5936 L:      dri-devel@lists.freedesktop.org
5937 S:      Supported
5938 T:      git git://people.freedesktop.org/~sroland/linux
5939 F:      drivers/gpu/drm/vmwgfx/
5940 F:      include/uapi/drm/vmwgfx_drm.h
5941
5942 DRM DRIVERS
5943 M:      David Airlie <airlied@linux.ie>
5944 M:      Daniel Vetter <daniel@ffwll.ch>
5945 L:      dri-devel@lists.freedesktop.org
5946 S:      Maintained
5947 B:      https://gitlab.freedesktop.org/drm
5948 C:      irc://chat.freenode.net/dri-devel
5949 T:      git git://anongit.freedesktop.org/drm/drm
5950 F:      Documentation/devicetree/bindings/display/
5951 F:      Documentation/devicetree/bindings/gpu/
5952 F:      Documentation/gpu/
5953 F:      drivers/gpu/drm/
5954 F:      drivers/gpu/vga/
5955 F:      include/drm/
5956 F:      include/linux/vga*
5957 F:      include/uapi/drm/
5958
5959 DRM DRIVERS AND MISC GPU PATCHES
5960 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5961 M:      Maxime Ripard <mripard@kernel.org>
5962 M:      Thomas Zimmermann <tzimmermann@suse.de>
5963 S:      Maintained
5964 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5965 T:      git git://anongit.freedesktop.org/drm/drm-misc
5966 F:      Documentation/gpu/
5967 F:      drivers/gpu/drm/*
5968 F:      drivers/gpu/vga/
5969 F:      include/drm/drm*
5970 F:      include/linux/vga*
5971 F:      include/uapi/drm/drm*
5972
5973 DRM DRIVERS FOR ALLWINNER A10
5974 M:      Maxime Ripard <mripard@kernel.org>
5975 M:      Chen-Yu Tsai <wens@csie.org>
5976 L:      dri-devel@lists.freedesktop.org
5977 S:      Supported
5978 T:      git git://anongit.freedesktop.org/drm/drm-misc
5979 F:      Documentation/devicetree/bindings/display/allwinner*
5980 F:      drivers/gpu/drm/sun4i/
5981
5982 DRM DRIVERS FOR AMLOGIC SOCS
5983 M:      Neil Armstrong <narmstrong@baylibre.com>
5984 L:      dri-devel@lists.freedesktop.org
5985 L:      linux-amlogic@lists.infradead.org
5986 S:      Supported
5987 W:      http://linux-meson.com/
5988 T:      git git://anongit.freedesktop.org/drm/drm-misc
5989 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5990 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5991 F:      Documentation/gpu/meson.rst
5992 F:      drivers/gpu/drm/meson/
5993
5994 DRM DRIVERS FOR ATMEL HLCDC
5995 M:      Sam Ravnborg <sam@ravnborg.org>
5996 M:      Boris Brezillon <bbrezillon@kernel.org>
5997 L:      dri-devel@lists.freedesktop.org
5998 S:      Supported
5999 T:      git git://anongit.freedesktop.org/drm/drm-misc
6000 F:      Documentation/devicetree/bindings/display/atmel/
6001 F:      drivers/gpu/drm/atmel-hlcdc/
6002
6003 DRM DRIVERS FOR BRIDGE CHIPS
6004 M:      Andrzej Hajda <a.hajda@samsung.com>
6005 M:      Neil Armstrong <narmstrong@baylibre.com>
6006 M:      Robert Foss <robert.foss@linaro.org>
6007 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6008 R:      Jonas Karlman <jonas@kwiboo.se>
6009 R:      Jernej Skrabec <jernej.skrabec@siol.net>
6010 S:      Maintained
6011 T:      git git://anongit.freedesktop.org/drm/drm-misc
6012 F:      drivers/gpu/drm/bridge/
6013
6014 DRM DRIVERS FOR EXYNOS
6015 M:      Inki Dae <inki.dae@samsung.com>
6016 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6017 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6018 M:      Kyungmin Park <kyungmin.park@samsung.com>
6019 L:      dri-devel@lists.freedesktop.org
6020 S:      Supported
6021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6022 F:      Documentation/devicetree/bindings/display/exynos/
6023 F:      drivers/gpu/drm/exynos/
6024 F:      include/uapi/drm/exynos_drm.h
6025
6026 DRM DRIVERS FOR FREESCALE DCU
6027 M:      Stefan Agner <stefan@agner.ch>
6028 M:      Alison Wang <alison.wang@nxp.com>
6029 L:      dri-devel@lists.freedesktop.org
6030 S:      Supported
6031 T:      git git://anongit.freedesktop.org/drm/drm-misc
6032 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6033 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6034 F:      drivers/gpu/drm/fsl-dcu/
6035
6036 DRM DRIVERS FOR FREESCALE IMX
6037 M:      Philipp Zabel <p.zabel@pengutronix.de>
6038 L:      dri-devel@lists.freedesktop.org
6039 S:      Maintained
6040 F:      Documentation/devicetree/bindings/display/imx/
6041 F:      drivers/gpu/drm/imx/
6042 F:      drivers/gpu/ipu-v3/
6043
6044 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6045 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6046 L:      dri-devel@lists.freedesktop.org
6047 S:      Maintained
6048 T:      git git://github.com/patjak/drm-gma500
6049 F:      drivers/gpu/drm/gma500/
6050
6051 DRM DRIVERS FOR HISILICON
6052 M:      Xinliang Liu <xinliang.liu@linaro.org>
6053 M:      Tian Tao  <tiantao6@hisilicon.com>
6054 R:      John Stultz <john.stultz@linaro.org>
6055 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6056 R:      Chen Feng <puck.chen@hisilicon.com>
6057 L:      dri-devel@lists.freedesktop.org
6058 S:      Maintained
6059 T:      git git://anongit.freedesktop.org/drm/drm-misc
6060 F:      Documentation/devicetree/bindings/display/hisilicon/
6061 F:      drivers/gpu/drm/hisilicon/
6062
6063 DRM DRIVERS FOR LIMA
6064 M:      Qiang Yu <yuq825@gmail.com>
6065 L:      dri-devel@lists.freedesktop.org
6066 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6067 S:      Maintained
6068 T:      git git://anongit.freedesktop.org/drm/drm-misc
6069 F:      drivers/gpu/drm/lima/
6070 F:      include/uapi/drm/lima_drm.h
6071
6072 DRM DRIVERS FOR MEDIATEK
6073 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6074 M:      Philipp Zabel <p.zabel@pengutronix.de>
6075 L:      dri-devel@lists.freedesktop.org
6076 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6077 S:      Supported
6078 F:      Documentation/devicetree/bindings/display/mediatek/
6079 F:      drivers/gpu/drm/mediatek/
6080 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6081 F:      drivers/phy/mediatek/phy-mtk-mipi*
6082
6083 DRM DRIVERS FOR NVIDIA TEGRA
6084 M:      Thierry Reding <thierry.reding@gmail.com>
6085 L:      dri-devel@lists.freedesktop.org
6086 L:      linux-tegra@vger.kernel.org
6087 S:      Supported
6088 T:      git git://anongit.freedesktop.org/tegra/linux.git
6089 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6090 F:      drivers/gpu/drm/tegra/
6091 F:      drivers/gpu/host1x/
6092 F:      include/linux/host1x.h
6093 F:      include/uapi/drm/tegra_drm.h
6094
6095 DRM DRIVERS FOR RENESAS
6096 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6097 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6098 L:      dri-devel@lists.freedesktop.org
6099 L:      linux-renesas-soc@vger.kernel.org
6100 S:      Supported
6101 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6102 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6103 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6104 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6105 F:      drivers/gpu/drm/rcar-du/
6106 F:      drivers/gpu/drm/shmobile/
6107 F:      include/linux/platform_data/shmob_drm.h
6108
6109 DRM DRIVERS FOR ROCKCHIP
6110 M:      Sandy Huang <hjc@rock-chips.com>
6111 M:      Heiko Stübner <heiko@sntech.de>
6112 L:      dri-devel@lists.freedesktop.org
6113 S:      Maintained
6114 T:      git git://anongit.freedesktop.org/drm/drm-misc
6115 F:      Documentation/devicetree/bindings/display/rockchip/
6116 F:      drivers/gpu/drm/rockchip/
6117
6118 DRM DRIVERS FOR STI
6119 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6120 L:      dri-devel@lists.freedesktop.org
6121 S:      Maintained
6122 T:      git git://anongit.freedesktop.org/drm/drm-misc
6123 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6124 F:      drivers/gpu/drm/sti
6125
6126 DRM DRIVERS FOR STM
6127 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6128 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6129 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6130 L:      dri-devel@lists.freedesktop.org
6131 S:      Maintained
6132 T:      git git://anongit.freedesktop.org/drm/drm-misc
6133 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6134 F:      drivers/gpu/drm/stm
6135
6136 DRM DRIVERS FOR TI KEYSTONE
6137 M:      Jyri Sarha <jyri.sarha@iki.fi>
6138 M:      Tomi Valkeinen <tomba@kernel.org>
6139 L:      dri-devel@lists.freedesktop.org
6140 S:      Maintained
6141 T:      git git://anongit.freedesktop.org/drm/drm-misc
6142 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6143 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6144 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6145 F:      drivers/gpu/drm/tidss/
6146
6147 DRM DRIVERS FOR TI LCDC
6148 M:      Jyri Sarha <jyri.sarha@iki.fi>
6149 R:      Tomi Valkeinen <tomba@kernel.org>
6150 L:      dri-devel@lists.freedesktop.org
6151 S:      Maintained
6152 F:      Documentation/devicetree/bindings/display/tilcdc/
6153 F:      drivers/gpu/drm/tilcdc/
6154
6155 DRM DRIVERS FOR TI OMAP
6156 M:      Tomi Valkeinen <tomba@kernel.org>
6157 L:      dri-devel@lists.freedesktop.org
6158 S:      Maintained
6159 F:      Documentation/devicetree/bindings/display/ti/
6160 F:      drivers/gpu/drm/omapdrm/
6161
6162 DRM DRIVERS FOR V3D
6163 M:      Eric Anholt <eric@anholt.net>
6164 S:      Supported
6165 T:      git git://anongit.freedesktop.org/drm/drm-misc
6166 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6167 F:      drivers/gpu/drm/v3d/
6168 F:      include/uapi/drm/v3d_drm.h
6169
6170 DRM DRIVERS FOR VC4
6171 M:      Eric Anholt <eric@anholt.net>
6172 M:      Maxime Ripard <mripard@kernel.org>
6173 S:      Supported
6174 T:      git git://github.com/anholt/linux
6175 T:      git git://anongit.freedesktop.org/drm/drm-misc
6176 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6177 F:      drivers/gpu/drm/vc4/
6178 F:      include/uapi/drm/vc4_drm.h
6179
6180 DRM DRIVERS FOR VIVANTE GPU IP
6181 M:      Lucas Stach <l.stach@pengutronix.de>
6182 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6183 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6184 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6185 L:      dri-devel@lists.freedesktop.org
6186 S:      Maintained
6187 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6188 F:      drivers/gpu/drm/etnaviv/
6189 F:      include/uapi/drm/etnaviv_drm.h
6190
6191 DRM DRIVERS FOR XEN
6192 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6193 L:      dri-devel@lists.freedesktop.org
6194 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6195 S:      Supported
6196 T:      git git://anongit.freedesktop.org/drm/drm-misc
6197 F:      Documentation/gpu/xen-front.rst
6198 F:      drivers/gpu/drm/xen/
6199
6200 DRM DRIVERS FOR XILINX
6201 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6202 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6203 L:      dri-devel@lists.freedesktop.org
6204 S:      Maintained
6205 T:      git git://anongit.freedesktop.org/drm/drm-misc
6206 F:      Documentation/devicetree/bindings/display/xlnx/
6207 F:      drivers/gpu/drm/xlnx/
6208
6209 DRM PANEL DRIVERS
6210 M:      Thierry Reding <thierry.reding@gmail.com>
6211 R:      Sam Ravnborg <sam@ravnborg.org>
6212 L:      dri-devel@lists.freedesktop.org
6213 S:      Maintained
6214 T:      git git://anongit.freedesktop.org/drm/drm-misc
6215 F:      Documentation/devicetree/bindings/display/panel/
6216 F:      drivers/gpu/drm/drm_panel.c
6217 F:      drivers/gpu/drm/panel/
6218 F:      include/drm/drm_panel.h
6219
6220 DRM TTM SUBSYSTEM
6221 M:      Christian Koenig <christian.koenig@amd.com>
6222 M:      Huang Rui <ray.huang@amd.com>
6223 L:      dri-devel@lists.freedesktop.org
6224 S:      Maintained
6225 T:      git git://people.freedesktop.org/~agd5f/linux
6226 F:      drivers/gpu/drm/ttm/
6227 F:      include/drm/ttm/
6228
6229 DSBR100 USB FM RADIO DRIVER
6230 M:      Alexey Klimov <klimov.linux@gmail.com>
6231 L:      linux-media@vger.kernel.org
6232 S:      Maintained
6233 T:      git git://linuxtv.org/media_tree.git
6234 F:      drivers/media/radio/dsbr100.c
6235
6236 DT3155 MEDIA DRIVER
6237 M:      Hans Verkuil <hverkuil@xs4all.nl>
6238 L:      linux-media@vger.kernel.org
6239 S:      Odd Fixes
6240 W:      https://linuxtv.org
6241 T:      git git://linuxtv.org/media_tree.git
6242 F:      drivers/media/pci/dt3155/
6243
6244 DVB_USB_AF9015 MEDIA DRIVER
6245 M:      Antti Palosaari <crope@iki.fi>
6246 L:      linux-media@vger.kernel.org
6247 S:      Maintained
6248 W:      https://linuxtv.org
6249 W:      http://palosaari.fi/linux/
6250 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6251 T:      git git://linuxtv.org/anttip/media_tree.git
6252 F:      drivers/media/usb/dvb-usb-v2/af9015*
6253
6254 DVB_USB_AF9035 MEDIA DRIVER
6255 M:      Antti Palosaari <crope@iki.fi>
6256 L:      linux-media@vger.kernel.org
6257 S:      Maintained
6258 W:      https://linuxtv.org
6259 W:      http://palosaari.fi/linux/
6260 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6261 T:      git git://linuxtv.org/anttip/media_tree.git
6262 F:      drivers/media/usb/dvb-usb-v2/af9035*
6263
6264 DVB_USB_ANYSEE MEDIA DRIVER
6265 M:      Antti Palosaari <crope@iki.fi>
6266 L:      linux-media@vger.kernel.org
6267 S:      Maintained
6268 W:      https://linuxtv.org
6269 W:      http://palosaari.fi/linux/
6270 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6271 T:      git git://linuxtv.org/anttip/media_tree.git
6272 F:      drivers/media/usb/dvb-usb-v2/anysee*
6273
6274 DVB_USB_AU6610 MEDIA DRIVER
6275 M:      Antti Palosaari <crope@iki.fi>
6276 L:      linux-media@vger.kernel.org
6277 S:      Maintained
6278 W:      https://linuxtv.org
6279 W:      http://palosaari.fi/linux/
6280 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6281 T:      git git://linuxtv.org/anttip/media_tree.git
6282 F:      drivers/media/usb/dvb-usb-v2/au6610*
6283
6284 DVB_USB_CE6230 MEDIA DRIVER
6285 M:      Antti Palosaari <crope@iki.fi>
6286 L:      linux-media@vger.kernel.org
6287 S:      Maintained
6288 W:      https://linuxtv.org
6289 W:      http://palosaari.fi/linux/
6290 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6291 T:      git git://linuxtv.org/anttip/media_tree.git
6292 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6293
6294 DVB_USB_CXUSB MEDIA DRIVER
6295 M:      Michael Krufky <mkrufky@linuxtv.org>
6296 L:      linux-media@vger.kernel.org
6297 S:      Maintained
6298 W:      https://linuxtv.org
6299 W:      http://github.com/mkrufky
6300 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6301 T:      git git://linuxtv.org/media_tree.git
6302 F:      drivers/media/usb/dvb-usb/cxusb*
6303
6304 DVB_USB_EC168 MEDIA DRIVER
6305 M:      Antti Palosaari <crope@iki.fi>
6306 L:      linux-media@vger.kernel.org
6307 S:      Maintained
6308 W:      https://linuxtv.org
6309 W:      http://palosaari.fi/linux/
6310 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6311 T:      git git://linuxtv.org/anttip/media_tree.git
6312 F:      drivers/media/usb/dvb-usb-v2/ec168*
6313
6314 DVB_USB_GL861 MEDIA DRIVER
6315 M:      Antti Palosaari <crope@iki.fi>
6316 L:      linux-media@vger.kernel.org
6317 S:      Maintained
6318 W:      https://linuxtv.org
6319 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6320 T:      git git://linuxtv.org/anttip/media_tree.git
6321 F:      drivers/media/usb/dvb-usb-v2/gl861*
6322
6323 DVB_USB_MXL111SF MEDIA DRIVER
6324 M:      Michael Krufky <mkrufky@linuxtv.org>
6325 L:      linux-media@vger.kernel.org
6326 S:      Maintained
6327 W:      https://linuxtv.org
6328 W:      http://github.com/mkrufky
6329 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6330 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6331 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6332
6333 DVB_USB_RTL28XXU MEDIA DRIVER
6334 M:      Antti Palosaari <crope@iki.fi>
6335 L:      linux-media@vger.kernel.org
6336 S:      Maintained
6337 W:      https://linuxtv.org
6338 W:      http://palosaari.fi/linux/
6339 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6340 T:      git git://linuxtv.org/anttip/media_tree.git
6341 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6342
6343 DVB_USB_V2 MEDIA DRIVER
6344 M:      Antti Palosaari <crope@iki.fi>
6345 L:      linux-media@vger.kernel.org
6346 S:      Maintained
6347 W:      https://linuxtv.org
6348 W:      http://palosaari.fi/linux/
6349 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6350 T:      git git://linuxtv.org/anttip/media_tree.git
6351 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6352 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6353
6354 DYNAMIC DEBUG
6355 M:      Jason Baron <jbaron@akamai.com>
6356 S:      Maintained
6357 F:      include/linux/dynamic_debug.h
6358 F:      lib/dynamic_debug.c
6359
6360 DYNAMIC INTERRUPT MODERATION
6361 M:      Tal Gilboa <talgi@nvidia.com>
6362 S:      Maintained
6363 F:      Documentation/networking/net_dim.rst
6364 F:      include/linux/dim.h
6365 F:      lib/dim/
6366
6367 DZ DECSTATION DZ11 SERIAL DRIVER
6368 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6369 S:      Maintained
6370 F:      drivers/tty/serial/dz.*
6371
6372 E3X0 POWER BUTTON DRIVER
6373 M:      Moritz Fischer <moritz.fischer@ettus.com>
6374 L:      usrp-users@lists.ettus.com
6375 S:      Supported
6376 W:      http://www.ettus.com
6377 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6378 F:      drivers/input/misc/e3x0-button.c
6379
6380 E4000 MEDIA DRIVER
6381 M:      Antti Palosaari <crope@iki.fi>
6382 L:      linux-media@vger.kernel.org
6383 S:      Maintained
6384 W:      https://linuxtv.org
6385 W:      http://palosaari.fi/linux/
6386 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6387 T:      git git://linuxtv.org/anttip/media_tree.git
6388 F:      drivers/media/tuners/e4000*
6389
6390 EARTH_PT1 MEDIA DRIVER
6391 M:      Akihiro Tsukada <tskd08@gmail.com>
6392 L:      linux-media@vger.kernel.org
6393 S:      Odd Fixes
6394 F:      drivers/media/pci/pt1/
6395
6396 EARTH_PT3 MEDIA DRIVER
6397 M:      Akihiro Tsukada <tskd08@gmail.com>
6398 L:      linux-media@vger.kernel.org
6399 S:      Odd Fixes
6400 F:      drivers/media/pci/pt3/
6401
6402 EC100 MEDIA DRIVER
6403 M:      Antti Palosaari <crope@iki.fi>
6404 L:      linux-media@vger.kernel.org
6405 S:      Maintained
6406 W:      https://linuxtv.org
6407 W:      http://palosaari.fi/linux/
6408 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6409 T:      git git://linuxtv.org/anttip/media_tree.git
6410 F:      drivers/media/dvb-frontends/ec100*
6411
6412 ECRYPT FILE SYSTEM
6413 M:      Tyler Hicks <code@tyhicks.com>
6414 L:      ecryptfs@vger.kernel.org
6415 S:      Odd Fixes
6416 W:      http://ecryptfs.org
6417 W:      https://launchpad.net/ecryptfs
6418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6419 F:      Documentation/filesystems/ecryptfs.rst
6420 F:      fs/ecryptfs/
6421
6422 EDAC-AMD64
6423 M:      Borislav Petkov <bp@alien8.de>
6424 L:      linux-edac@vger.kernel.org
6425 S:      Maintained
6426 F:      drivers/edac/amd64_edac*
6427
6428 EDAC-ARMADA
6429 M:      Jan Luebbe <jlu@pengutronix.de>
6430 L:      linux-edac@vger.kernel.org
6431 S:      Maintained
6432 F:      drivers/edac/armada_xp_*
6433
6434 EDAC-AST2500
6435 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6436 S:      Supported
6437 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6438 F:      drivers/edac/aspeed_edac.c
6439
6440 EDAC-BLUEFIELD
6441 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6442 S:      Supported
6443 F:      drivers/edac/bluefield_edac.c
6444
6445 EDAC-CALXEDA
6446 M:      Andre Przywara <andre.przywara@arm.com>
6447 L:      linux-edac@vger.kernel.org
6448 S:      Maintained
6449 F:      drivers/edac/highbank*
6450
6451 EDAC-CAVIUM OCTEON
6452 M:      Ralf Baechle <ralf@linux-mips.org>
6453 L:      linux-edac@vger.kernel.org
6454 L:      linux-mips@vger.kernel.org
6455 S:      Supported
6456 F:      drivers/edac/octeon_edac*
6457
6458 EDAC-CAVIUM THUNDERX
6459 M:      Robert Richter <rric@kernel.org>
6460 L:      linux-edac@vger.kernel.org
6461 S:      Odd Fixes
6462 F:      drivers/edac/thunderx_edac*
6463
6464 EDAC-CORE
6465 M:      Borislav Petkov <bp@alien8.de>
6466 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6467 M:      Tony Luck <tony.luck@intel.com>
6468 R:      James Morse <james.morse@arm.com>
6469 R:      Robert Richter <rric@kernel.org>
6470 L:      linux-edac@vger.kernel.org
6471 S:      Supported
6472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6473 F:      Documentation/admin-guide/ras.rst
6474 F:      Documentation/driver-api/edac.rst
6475 F:      drivers/edac/
6476 F:      include/linux/edac.h
6477
6478 EDAC-DMC520
6479 M:      Lei Wang <lewan@microsoft.com>
6480 L:      linux-edac@vger.kernel.org
6481 S:      Supported
6482 F:      drivers/edac/dmc520_edac.c
6483
6484 EDAC-E752X
6485 M:      Mark Gross <mark.gross@intel.com>
6486 L:      linux-edac@vger.kernel.org
6487 S:      Maintained
6488 F:      drivers/edac/e752x_edac.c
6489
6490 EDAC-E7XXX
6491 L:      linux-edac@vger.kernel.org
6492 S:      Maintained
6493 F:      drivers/edac/e7xxx_edac.c
6494
6495 EDAC-FSL_DDR
6496 M:      York Sun <york.sun@nxp.com>
6497 L:      linux-edac@vger.kernel.org
6498 S:      Maintained
6499 F:      drivers/edac/fsl_ddr_edac.*
6500
6501 EDAC-GHES
6502 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6503 L:      linux-edac@vger.kernel.org
6504 S:      Maintained
6505 F:      drivers/edac/ghes_edac.c
6506
6507 EDAC-I10NM
6508 M:      Tony Luck <tony.luck@intel.com>
6509 L:      linux-edac@vger.kernel.org
6510 S:      Maintained
6511 F:      drivers/edac/i10nm_base.c
6512
6513 EDAC-I3000
6514 L:      linux-edac@vger.kernel.org
6515 S:      Orphan
6516 F:      drivers/edac/i3000_edac.c
6517
6518 EDAC-I5000
6519 L:      linux-edac@vger.kernel.org
6520 S:      Maintained
6521 F:      drivers/edac/i5000_edac.c
6522
6523 EDAC-I5400
6524 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6525 L:      linux-edac@vger.kernel.org
6526 S:      Maintained
6527 F:      drivers/edac/i5400_edac.c
6528
6529 EDAC-I7300
6530 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6531 L:      linux-edac@vger.kernel.org
6532 S:      Maintained
6533 F:      drivers/edac/i7300_edac.c
6534
6535 EDAC-I7CORE
6536 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6537 L:      linux-edac@vger.kernel.org
6538 S:      Maintained
6539 F:      drivers/edac/i7core_edac.c
6540
6541 EDAC-I82443BXGX
6542 M:      Tim Small <tim@buttersideup.com>
6543 L:      linux-edac@vger.kernel.org
6544 S:      Maintained
6545 F:      drivers/edac/i82443bxgx_edac.c
6546
6547 EDAC-I82975X
6548 M:      "Arvind R." <arvino55@gmail.com>
6549 L:      linux-edac@vger.kernel.org
6550 S:      Maintained
6551 F:      drivers/edac/i82975x_edac.c
6552
6553 EDAC-IE31200
6554 M:      Jason Baron <jbaron@akamai.com>
6555 L:      linux-edac@vger.kernel.org
6556 S:      Maintained
6557 F:      drivers/edac/ie31200_edac.c
6558
6559 EDAC-IGEN6
6560 M:      Tony Luck <tony.luck@intel.com>
6561 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6562 L:      linux-edac@vger.kernel.org
6563 S:      Maintained
6564 F:      drivers/edac/igen6_edac.c
6565
6566 EDAC-MPC85XX
6567 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6568 L:      linux-edac@vger.kernel.org
6569 S:      Maintained
6570 F:      drivers/edac/mpc85xx_edac.[ch]
6571
6572 EDAC-PASEMI
6573 M:      Egor Martovetsky <egor@pasemi.com>
6574 L:      linux-edac@vger.kernel.org
6575 S:      Maintained
6576 F:      drivers/edac/pasemi_edac.c
6577
6578 EDAC-PND2
6579 M:      Tony Luck <tony.luck@intel.com>
6580 L:      linux-edac@vger.kernel.org
6581 S:      Maintained
6582 F:      drivers/edac/pnd2_edac.[ch]
6583
6584 EDAC-QCOM
6585 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6586 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6587 L:      linux-arm-msm@vger.kernel.org
6588 L:      linux-edac@vger.kernel.org
6589 S:      Maintained
6590 F:      drivers/edac/qcom_edac.c
6591
6592 EDAC-R82600
6593 M:      Tim Small <tim@buttersideup.com>
6594 L:      linux-edac@vger.kernel.org
6595 S:      Maintained
6596 F:      drivers/edac/r82600_edac.c
6597
6598 EDAC-SBRIDGE
6599 M:      Tony Luck <tony.luck@intel.com>
6600 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6601 L:      linux-edac@vger.kernel.org
6602 S:      Maintained
6603 F:      drivers/edac/sb_edac.c
6604
6605 EDAC-SIFIVE
6606 M:      Yash Shah <yash.shah@sifive.com>
6607 L:      linux-edac@vger.kernel.org
6608 S:      Supported
6609 F:      drivers/edac/sifive_edac.c
6610
6611 EDAC-SKYLAKE
6612 M:      Tony Luck <tony.luck@intel.com>
6613 L:      linux-edac@vger.kernel.org
6614 S:      Maintained
6615 F:      drivers/edac/skx_*.[ch]
6616
6617 EDAC-TI
6618 M:      Tero Kristo <kristo@kernel.org>
6619 L:      linux-edac@vger.kernel.org
6620 S:      Odd Fixes
6621 F:      drivers/edac/ti_edac.c
6622
6623 EDIROL UA-101/UA-1000 DRIVER
6624 M:      Clemens Ladisch <clemens@ladisch.de>
6625 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6626 S:      Maintained
6627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6628 F:      sound/usb/misc/ua101.c
6629
6630 EFI TEST DRIVER
6631 M:      Ivan Hu <ivan.hu@canonical.com>
6632 M:      Ard Biesheuvel <ardb@kernel.org>
6633 L:      linux-efi@vger.kernel.org
6634 S:      Maintained
6635 F:      drivers/firmware/efi/test/
6636
6637 EFI VARIABLE FILESYSTEM
6638 M:      Matthew Garrett <matthew.garrett@nebula.com>
6639 M:      Jeremy Kerr <jk@ozlabs.org>
6640 M:      Ard Biesheuvel <ardb@kernel.org>
6641 L:      linux-efi@vger.kernel.org
6642 S:      Maintained
6643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6644 F:      fs/efivarfs/
6645
6646 EFIFB FRAMEBUFFER DRIVER
6647 M:      Peter Jones <pjones@redhat.com>
6648 L:      linux-fbdev@vger.kernel.org
6649 S:      Maintained
6650 F:      drivers/video/fbdev/efifb.c
6651
6652 EFS FILESYSTEM
6653 S:      Orphan
6654 W:      http://aeschi.ch.eu.org/efs/
6655 F:      fs/efs/
6656
6657 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6658 M:      Douglas Miller <dougmill@linux.ibm.com>
6659 L:      netdev@vger.kernel.org
6660 S:      Maintained
6661 F:      drivers/net/ethernet/ibm/ehea/
6662
6663 EM28XX VIDEO4LINUX DRIVER
6664 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6665 L:      linux-media@vger.kernel.org
6666 S:      Maintained
6667 W:      https://linuxtv.org
6668 T:      git git://linuxtv.org/media_tree.git
6669 F:      Documentation/admin-guide/media/em28xx*
6670 F:      drivers/media/usb/em28xx/
6671
6672 EMBEDDED LINUX
6673 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6674 M:      Matt Mackall <mpm@selenic.com>
6675 M:      David Woodhouse <dwmw2@infradead.org>
6676 L:      linux-embedded@vger.kernel.org
6677 S:      Maintained
6678
6679 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6680 M:      Adrian Hunter <adrian.hunter@intel.com>
6681 M:      Ritesh Harjani <riteshh@codeaurora.org>
6682 M:      Asutosh Das <asutoshd@codeaurora.org>
6683 L:      linux-mmc@vger.kernel.org
6684 S:      Maintained
6685 F:      drivers/mmc/host/cqhci*
6686
6687 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6688 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6689 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6690 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6691 L:      linux-scsi@vger.kernel.org
6692 S:      Supported
6693 W:      http://www.broadcom.com
6694 F:      drivers/scsi/be2iscsi/
6695
6696 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6697 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6698 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6699 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6700 L:      netdev@vger.kernel.org
6701 S:      Supported
6702 W:      http://www.emulex.com
6703 F:      drivers/net/ethernet/emulex/benet/
6704
6705 EMULEX ONECONNECT ROCE DRIVER
6706 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6707 M:      Devesh Sharma <devesh.sharma@broadcom.com>
6708 L:      linux-rdma@vger.kernel.org
6709 S:      Odd Fixes
6710 W:      http://www.broadcom.com
6711 F:      drivers/infiniband/hw/ocrdma/
6712 F:      include/uapi/rdma/ocrdma-abi.h
6713
6714 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6715 M:      James Smart <james.smart@broadcom.com>
6716 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6717 L:      linux-scsi@vger.kernel.org
6718 S:      Supported
6719 W:      http://www.broadcom.com
6720 F:      drivers/scsi/lpfc/
6721
6722 ENE CB710 FLASH CARD READER DRIVER
6723 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6724 S:      Maintained
6725 F:      drivers/misc/cb710/
6726 F:      drivers/mmc/host/cb710-mmc.*
6727 F:      include/linux/cb710.h
6728
6729 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6730 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6731 S:      Maintained
6732 F:      drivers/media/rc/ene_ir.*
6733
6734 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6735 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6736 L:      linuxppc-dev@lists.ozlabs.org
6737 S:      Maintained
6738 F:      drivers/tty/ehv_bytechan.c
6739
6740 EPSON S1D13XXX FRAMEBUFFER DRIVER
6741 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6742 S:      Maintained
6743 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6744 F:      drivers/video/fbdev/s1d13xxxfb.c
6745 F:      include/video/s1d13xxxfb.h
6746
6747 EROFS FILE SYSTEM
6748 M:      Gao Xiang <xiang@kernel.org>
6749 M:      Chao Yu <yuchao0@huawei.com>
6750 L:      linux-erofs@lists.ozlabs.org
6751 S:      Maintained
6752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6753 F:      Documentation/filesystems/erofs.rst
6754 F:      fs/erofs/
6755 F:      include/trace/events/erofs.h
6756
6757 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6758 M:      Jeff Layton <jlayton@kernel.org>
6759 S:      Maintained
6760 F:      include/linux/errseq.h
6761 F:      lib/errseq.c
6762
6763 ET131X NETWORK DRIVER
6764 M:      Mark Einon <mark.einon@gmail.com>
6765 S:      Odd Fixes
6766 F:      drivers/net/ethernet/agere/
6767
6768 ETHERNET BRIDGE
6769 M:      Roopa Prabhu <roopa@nvidia.com>
6770 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
6771 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6772 L:      netdev@vger.kernel.org
6773 S:      Maintained
6774 W:      http://www.linuxfoundation.org/en/Net:Bridge
6775 F:      include/linux/netfilter_bridge/
6776 F:      net/bridge/
6777
6778 ETHERNET PHY LIBRARY
6779 M:      Andrew Lunn <andrew@lunn.ch>
6780 M:      Heiner Kallweit <hkallweit1@gmail.com>
6781 R:      Russell King <linux@armlinux.org.uk>
6782 L:      netdev@vger.kernel.org
6783 S:      Maintained
6784 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6785 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6786 F:      Documentation/devicetree/bindings/net/mdio*
6787 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6788 F:      Documentation/networking/phy.rst
6789 F:      drivers/net/mdio/
6790 F:      drivers/net/mdio/of_mdio.c
6791 F:      drivers/net/pcs/
6792 F:      drivers/net/phy/
6793 F:      drivers/of/of_net.c
6794 F:      include/dt-bindings/net/qca-ar803x.h
6795 F:      include/linux/*mdio*.h
6796 F:      include/linux/mdio/*.h
6797 F:      include/linux/of_net.h
6798 F:      include/linux/phy.h
6799 F:      include/linux/phy_fixed.h
6800 F:      include/linux/platform_data/mdio-bcm-unimac.h
6801 F:      include/linux/platform_data/mdio-gpio.h
6802 F:      include/trace/events/mdio.h
6803 F:      include/uapi/linux/mdio.h
6804 F:      include/uapi/linux/mii.h
6805
6806 EXFAT FILE SYSTEM
6807 M:      Namjae Jeon <namjae.jeon@samsung.com>
6808 M:      Sungjong Seo <sj1557.seo@samsung.com>
6809 L:      linux-fsdevel@vger.kernel.org
6810 S:      Maintained
6811 F:      fs/exfat/
6812
6813 EXT2 FILE SYSTEM
6814 M:      Jan Kara <jack@suse.com>
6815 L:      linux-ext4@vger.kernel.org
6816 S:      Maintained
6817 F:      Documentation/filesystems/ext2.rst
6818 F:      fs/ext2/
6819 F:      include/linux/ext2*
6820
6821 EXT4 FILE SYSTEM
6822 M:      "Theodore Ts'o" <tytso@mit.edu>
6823 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6824 L:      linux-ext4@vger.kernel.org
6825 S:      Maintained
6826 W:      http://ext4.wiki.kernel.org
6827 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6828 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6829 F:      Documentation/filesystems/ext4/
6830 F:      fs/ext4/
6831 F:      include/trace/events/ext4.h
6832
6833 Extended Verification Module (EVM)
6834 M:      Mimi Zohar <zohar@linux.ibm.com>
6835 L:      linux-integrity@vger.kernel.org
6836 S:      Supported
6837 F:      security/integrity/evm/
6838
6839 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6840 M:      Ard Biesheuvel <ardb@kernel.org>
6841 L:      linux-efi@vger.kernel.org
6842 S:      Maintained
6843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6844 F:      Documentation/admin-guide/efi-stub.rst
6845 F:      arch/*/include/asm/efi.h
6846 F:      arch/*/kernel/efi.c
6847 F:      arch/arm/boot/compressed/efi-header.S
6848 F:      arch/arm64/kernel/efi-entry.S
6849 F:      arch/x86/platform/efi/
6850 F:      drivers/firmware/efi/
6851 F:      include/linux/efi*.h
6852
6853 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6854 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6855 M:      Chanwoo Choi <cw00.choi@samsung.com>
6856 L:      linux-kernel@vger.kernel.org
6857 S:      Maintained
6858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6859 F:      Documentation/devicetree/bindings/extcon/
6860 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6861 F:      drivers/extcon/
6862 F:      include/linux/extcon.h
6863 F:      include/linux/extcon/
6864
6865 EXTRA BOOT CONFIG
6866 M:      Masami Hiramatsu <mhiramat@kernel.org>
6867 S:      Maintained
6868 F:      Documentation/admin-guide/bootconfig.rst
6869 F:      fs/proc/bootconfig.c
6870 F:      include/linux/bootconfig.h
6871 F:      lib/bootconfig.c
6872 F:      tools/bootconfig/*
6873 F:      tools/bootconfig/scripts/*
6874
6875 EXYNOS DP DRIVER
6876 M:      Jingoo Han <jingoohan1@gmail.com>
6877 L:      dri-devel@lists.freedesktop.org
6878 S:      Maintained
6879 F:      drivers/gpu/drm/exynos/exynos_dp*
6880
6881 EXYNOS SYSMMU (IOMMU) driver
6882 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6883 L:      iommu@lists.linux-foundation.org
6884 S:      Maintained
6885 F:      drivers/iommu/exynos-iommu.c
6886
6887 F2FS FILE SYSTEM
6888 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6889 M:      Chao Yu <yuchao0@huawei.com>
6890 L:      linux-f2fs-devel@lists.sourceforge.net
6891 S:      Maintained
6892 W:      https://f2fs.wiki.kernel.org/
6893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6894 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6895 F:      Documentation/filesystems/f2fs.rst
6896 F:      fs/f2fs/
6897 F:      include/linux/f2fs_fs.h
6898 F:      include/trace/events/f2fs.h
6899 F:      include/uapi/linux/f2fs.h
6900
6901 F71805F HARDWARE MONITORING DRIVER
6902 M:      Jean Delvare <jdelvare@suse.com>
6903 L:      linux-hwmon@vger.kernel.org
6904 S:      Maintained
6905 F:      Documentation/hwmon/f71805f.rst
6906 F:      drivers/hwmon/f71805f.c
6907
6908 FADDR2LINE
6909 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6910 S:      Maintained
6911 F:      scripts/faddr2line
6912
6913 FAILOVER MODULE
6914 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
6915 L:      netdev@vger.kernel.org
6916 S:      Supported
6917 F:      Documentation/networking/failover.rst
6918 F:      include/net/failover.h
6919 F:      net/core/failover.c
6920
6921 FANOTIFY
6922 M:      Jan Kara <jack@suse.cz>
6923 R:      Amir Goldstein <amir73il@gmail.com>
6924 L:      linux-fsdevel@vger.kernel.org
6925 S:      Maintained
6926 F:      fs/notify/fanotify/
6927 F:      include/linux/fanotify.h
6928 F:      include/uapi/linux/fanotify.h
6929
6930 FARSYNC SYNCHRONOUS DRIVER
6931 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
6932 S:      Supported
6933 W:      http://www.farsite.co.uk/
6934 F:      drivers/net/wan/farsync.*
6935
6936 FAULT INJECTION SUPPORT
6937 M:      Akinobu Mita <akinobu.mita@gmail.com>
6938 S:      Supported
6939 F:      Documentation/fault-injection/
6940 F:      lib/fault-inject.c
6941
6942 FBTFT Framebuffer drivers
6943 L:      dri-devel@lists.freedesktop.org
6944 L:      linux-fbdev@vger.kernel.org
6945 S:      Orphan
6946 F:      drivers/staging/fbtft/
6947
6948 FC0011 TUNER DRIVER
6949 M:      Michael Buesch <m@bues.ch>
6950 L:      linux-media@vger.kernel.org
6951 S:      Maintained
6952 F:      drivers/media/tuners/fc0011.c
6953 F:      drivers/media/tuners/fc0011.h
6954
6955 FC2580 MEDIA DRIVER
6956 M:      Antti Palosaari <crope@iki.fi>
6957 L:      linux-media@vger.kernel.org
6958 S:      Maintained
6959 W:      https://linuxtv.org
6960 W:      http://palosaari.fi/linux/
6961 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6962 T:      git git://linuxtv.org/anttip/media_tree.git
6963 F:      drivers/media/tuners/fc2580*
6964
6965 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6966 M:      Hannes Reinecke <hare@suse.de>
6967 L:      linux-scsi@vger.kernel.org
6968 S:      Supported
6969 W:      www.Open-FCoE.org
6970 F:      drivers/scsi/fcoe/
6971 F:      drivers/scsi/libfc/
6972 F:      include/scsi/fc/
6973 F:      include/scsi/libfc.h
6974 F:      include/scsi/libfcoe.h
6975 F:      include/uapi/scsi/fc/
6976
6977 FILE LOCKING (flock() and fcntl()/lockf())
6978 M:      Jeff Layton <jlayton@kernel.org>
6979 M:      "J. Bruce Fields" <bfields@fieldses.org>
6980 L:      linux-fsdevel@vger.kernel.org
6981 S:      Maintained
6982 F:      fs/fcntl.c
6983 F:      fs/locks.c
6984 F:      include/linux/fcntl.h
6985 F:      include/uapi/linux/fcntl.h
6986
6987 FILESYSTEM DIRECT ACCESS (DAX)
6988 M:      Dan Williams <dan.j.williams@intel.com>
6989 R:      Matthew Wilcox <willy@infradead.org>
6990 R:      Jan Kara <jack@suse.cz>
6991 L:      linux-fsdevel@vger.kernel.org
6992 L:      linux-nvdimm@lists.01.org
6993 S:      Supported
6994 F:      fs/dax.c
6995 F:      include/linux/dax.h
6996 F:      include/trace/events/fs_dax.h
6997
6998 FILESYSTEMS (VFS and infrastructure)
6999 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7000 L:      linux-fsdevel@vger.kernel.org
7001 S:      Maintained
7002 F:      fs/*
7003 F:      include/linux/fs.h
7004 F:      include/linux/fs_types.h
7005 F:      include/uapi/linux/fs.h
7006 F:      include/uapi/linux/openat2.h
7007 X:      fs/io-wq.c
7008 X:      fs/io-wq.h
7009 X:      fs/io_uring.c
7010
7011 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7012 M:      Riku Voipio <riku.voipio@iki.fi>
7013 L:      linux-hwmon@vger.kernel.org
7014 S:      Maintained
7015 F:      drivers/hwmon/f75375s.c
7016 F:      include/linux/f75375s.h
7017
7018 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7019 M:      Clemens Ladisch <clemens@ladisch.de>
7020 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7021 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7022 S:      Maintained
7023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7024 F:      include/uapi/sound/firewire.h
7025 F:      sound/firewire/
7026
7027 FIREWIRE MEDIA DRIVERS (firedtv)
7028 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7029 L:      linux-media@vger.kernel.org
7030 L:      linux1394-devel@lists.sourceforge.net
7031 S:      Maintained
7032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7033 F:      drivers/media/firewire/
7034
7035 FIREWIRE SBP-2 TARGET
7036 M:      Chris Boot <bootc@bootc.net>
7037 L:      linux-scsi@vger.kernel.org
7038 L:      target-devel@vger.kernel.org
7039 L:      linux1394-devel@lists.sourceforge.net
7040 S:      Maintained
7041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7042 F:      drivers/target/sbp/
7043
7044 FIREWIRE SUBSYSTEM
7045 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7046 L:      linux1394-devel@lists.sourceforge.net
7047 S:      Maintained
7048 W:      http://ieee1394.wiki.kernel.org/
7049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7050 F:      drivers/firewire/
7051 F:      include/linux/firewire.h
7052 F:      include/uapi/linux/firewire*.h
7053 F:      tools/firewire/
7054
7055 FIRMWARE LOADER (request_firmware)
7056 M:      Luis Chamberlain <mcgrof@kernel.org>
7057 L:      linux-kernel@vger.kernel.org
7058 S:      Maintained
7059 F:      Documentation/firmware_class/
7060 F:      drivers/base/firmware_loader/
7061 F:      include/linux/firmware.h
7062
7063 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
7064 M:      Joshua Morris <josh.h.morris@us.ibm.com>
7065 M:      Philip Kelleher <pjk1939@linux.ibm.com>
7066 S:      Maintained
7067 F:      drivers/block/rsxx/
7068
7069 FLEXTIMER FTM-QUADDEC DRIVER
7070 M:      Patrick Havelange <patrick.havelange@essensium.com>
7071 L:      linux-iio@vger.kernel.org
7072 S:      Maintained
7073 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
7074 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7075 F:      drivers/counter/ftm-quaddec.c
7076
7077 FLOPPY DRIVER
7078 M:      Denis Efremov <efremov@linux.com>
7079 L:      linux-block@vger.kernel.org
7080 S:      Odd Fixes
7081 F:      drivers/block/floppy.c
7082
7083 FLYSKY FSIA6B RC RECEIVER
7084 M:      Markus Koch <markus@notsyncing.net>
7085 L:      linux-input@vger.kernel.org
7086 S:      Maintained
7087 F:      drivers/input/joystick/fsia6b.c
7088
7089 FORCEDETH GIGABIT ETHERNET DRIVER
7090 M:      Rain River <rain.1986.08.12@gmail.com>
7091 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7092 L:      netdev@vger.kernel.org
7093 S:      Maintained
7094 F:      drivers/net/ethernet/nvidia/*
7095
7096 FPGA DFL DRIVERS
7097 M:      Wu Hao <hao.wu@intel.com>
7098 R:      Tom Rix <trix@redhat.com>
7099 L:      linux-fpga@vger.kernel.org
7100 S:      Maintained
7101 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7102 F:      Documentation/fpga/dfl.rst
7103 F:      drivers/fpga/dfl*
7104 F:      drivers/uio/uio_dfl.c
7105 F:      include/linux/dfl.h
7106 F:      include/uapi/linux/fpga-dfl.h
7107
7108 FPGA MANAGER FRAMEWORK
7109 M:      Moritz Fischer <mdf@kernel.org>
7110 R:      Tom Rix <trix@redhat.com>
7111 L:      linux-fpga@vger.kernel.org
7112 S:      Maintained
7113 W:      http://www.rocketboards.org
7114 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7115 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7116 F:      Documentation/devicetree/bindings/fpga/
7117 F:      Documentation/driver-api/fpga/
7118 F:      Documentation/fpga/
7119 F:      drivers/fpga/
7120 F:      include/linux/fpga/
7121
7122 FPU EMULATOR
7123 M:      Bill Metzenthen <billm@melbpc.org.au>
7124 S:      Maintained
7125 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7126 F:      arch/x86/math-emu/
7127
7128 FRAMEBUFFER LAYER
7129 L:      dri-devel@lists.freedesktop.org
7130 L:      linux-fbdev@vger.kernel.org
7131 S:      Orphan
7132 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7133 T:      git git://anongit.freedesktop.org/drm/drm-misc
7134 F:      Documentation/fb/
7135 F:      drivers/video/
7136 F:      include/linux/fb.h
7137 F:      include/uapi/linux/fb.h
7138 F:      include/uapi/video/
7139 F:      include/video/
7140
7141 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7142 M:      Horia Geantă <horia.geanta@nxp.com>
7143 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
7144 L:      linux-crypto@vger.kernel.org
7145 S:      Maintained
7146 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7147 F:      drivers/crypto/caam/
7148
7149 FREESCALE COLDFIRE M5441X MMC DRIVER
7150 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7151 L:      linux-mmc@vger.kernel.org
7152 S:      Maintained
7153 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7154 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7155
7156 FREESCALE DIU FRAMEBUFFER DRIVER
7157 M:      Timur Tabi <timur@kernel.org>
7158 L:      linux-fbdev@vger.kernel.org
7159 S:      Maintained
7160 F:      drivers/video/fbdev/fsl-diu-fb.*
7161
7162 FREESCALE DMA DRIVER
7163 M:      Li Yang <leoyang.li@nxp.com>
7164 M:      Zhang Wei <zw@zh-kernel.org>
7165 L:      linuxppc-dev@lists.ozlabs.org
7166 S:      Maintained
7167 F:      drivers/dma/fsldma.*
7168
7169 FREESCALE DSPI DRIVER
7170 M:      Vladimir Oltean <olteanv@gmail.com>
7171 L:      linux-spi@vger.kernel.org
7172 S:      Maintained
7173 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7174 F:      drivers/spi/spi-fsl-dspi.c
7175 F:      include/linux/spi/spi-fsl-dspi.h
7176
7177 FREESCALE ENETC ETHERNET DRIVERS
7178 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7179 L:      netdev@vger.kernel.org
7180 S:      Maintained
7181 F:      drivers/net/ethernet/freescale/enetc/
7182
7183 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7184 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7185 L:      netdev@vger.kernel.org
7186 S:      Maintained
7187 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7188 F:      drivers/net/ethernet/freescale/gianfar*
7189
7190 FREESCALE GPMI NAND DRIVER
7191 M:      Han Xu <han.xu@nxp.com>
7192 L:      linux-mtd@lists.infradead.org
7193 S:      Maintained
7194 F:      drivers/mtd/nand/raw/gpmi-nand/*
7195
7196 FREESCALE I2C CPM DRIVER
7197 M:      Jochen Friedrich <jochen@scram.de>
7198 L:      linuxppc-dev@lists.ozlabs.org
7199 L:      linux-i2c@vger.kernel.org
7200 S:      Maintained
7201 F:      drivers/i2c/busses/i2c-cpm.c
7202
7203 FREESCALE IMX / MXC FEC DRIVER
7204 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7205 L:      netdev@vger.kernel.org
7206 S:      Maintained
7207 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
7208 F:      drivers/net/ethernet/freescale/fec.h
7209 F:      drivers/net/ethernet/freescale/fec_main.c
7210 F:      drivers/net/ethernet/freescale/fec_ptp.c
7211
7212 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7213 M:      Sascha Hauer <s.hauer@pengutronix.de>
7214 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7215 L:      linux-fbdev@vger.kernel.org
7216 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7217 S:      Maintained
7218 F:      drivers/video/fbdev/imxfb.c
7219 F:      include/linux/platform_data/video-imxfb.h
7220
7221 FREESCALE IMX DDR PMU DRIVER
7222 M:      Frank Li <Frank.li@nxp.com>
7223 L:      linux-arm-kernel@lists.infradead.org
7224 S:      Maintained
7225 F:      Documentation/admin-guide/perf/imx-ddr.rst
7226 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7227 F:      drivers/perf/fsl_imx8_ddr_perf.c
7228
7229 FREESCALE IMX I2C DRIVER
7230 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7231 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7232 L:      linux-i2c@vger.kernel.org
7233 S:      Maintained
7234 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7235 F:      drivers/i2c/busses/i2c-imx.c
7236
7237 FREESCALE IMX LPI2C DRIVER
7238 M:      Dong Aisheng <aisheng.dong@nxp.com>
7239 L:      linux-i2c@vger.kernel.org
7240 L:      linux-imx@nxp.com
7241 S:      Maintained
7242 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7243 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7244
7245 FREESCALE MPC I2C DRIVER
7246 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7247 L:      linux-i2c@vger.kernel.org
7248 S:      Maintained
7249 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7250 F:      drivers/i2c/busses/i2c-mpc.c
7251
7252 FREESCALE QORIQ DPAA ETHERNET DRIVER
7253 M:      Madalin Bucur <madalin.bucur@nxp.com>
7254 L:      netdev@vger.kernel.org
7255 S:      Maintained
7256 F:      drivers/net/ethernet/freescale/dpaa
7257
7258 FREESCALE QORIQ DPAA FMAN DRIVER
7259 M:      Madalin Bucur <madalin.bucur@nxp.com>
7260 L:      netdev@vger.kernel.org
7261 S:      Maintained
7262 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7263 F:      drivers/net/ethernet/freescale/fman
7264
7265 FREESCALE QORIQ PTP CLOCK DRIVER
7266 M:      Yangbo Lu <yangbo.lu@nxp.com>
7267 L:      netdev@vger.kernel.org
7268 S:      Maintained
7269 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7270 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7271 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7272 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7273 F:      drivers/ptp/ptp_qoriq.c
7274 F:      drivers/ptp/ptp_qoriq_debugfs.c
7275 F:      include/linux/fsl/ptp_qoriq.h
7276
7277 FREESCALE QUAD SPI DRIVER
7278 M:      Han Xu <han.xu@nxp.com>
7279 L:      linux-spi@vger.kernel.org
7280 S:      Maintained
7281 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7282 F:      drivers/spi/spi-fsl-qspi.c
7283
7284 FREESCALE QUICC ENGINE LIBRARY
7285 M:      Qiang Zhao <qiang.zhao@nxp.com>
7286 L:      linuxppc-dev@lists.ozlabs.org
7287 S:      Maintained
7288 F:      drivers/soc/fsl/qe/
7289 F:      include/soc/fsl/*qe*.h
7290 F:      include/soc/fsl/*ucc*.h
7291
7292 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7293 M:      Li Yang <leoyang.li@nxp.com>
7294 L:      netdev@vger.kernel.org
7295 L:      linuxppc-dev@lists.ozlabs.org
7296 S:      Maintained
7297 F:      drivers/net/ethernet/freescale/ucc_geth*
7298
7299 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7300 M:      Zhao Qiang <qiang.zhao@nxp.com>
7301 L:      netdev@vger.kernel.org
7302 L:      linuxppc-dev@lists.ozlabs.org
7303 S:      Maintained
7304 F:      drivers/net/wan/fsl_ucc_hdlc*
7305
7306 FREESCALE QUICC ENGINE UCC UART DRIVER
7307 M:      Timur Tabi <timur@kernel.org>
7308 L:      linuxppc-dev@lists.ozlabs.org
7309 S:      Maintained
7310 F:      drivers/tty/serial/ucc_uart.c
7311
7312 FREESCALE SOC DRIVERS
7313 M:      Li Yang <leoyang.li@nxp.com>
7314 L:      linuxppc-dev@lists.ozlabs.org
7315 L:      linux-arm-kernel@lists.infradead.org
7316 S:      Maintained
7317 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7318 F:      Documentation/devicetree/bindings/soc/fsl/
7319 F:      drivers/soc/fsl/
7320 F:      include/linux/fsl/
7321
7322 FREESCALE SOC FS_ENET DRIVER
7323 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7324 L:      linuxppc-dev@lists.ozlabs.org
7325 L:      netdev@vger.kernel.org
7326 S:      Maintained
7327 F:      drivers/net/ethernet/freescale/fs_enet/
7328 F:      include/linux/fs_enet_pd.h
7329
7330 FREESCALE SOC SOUND DRIVERS
7331 M:      Timur Tabi <timur@kernel.org>
7332 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7333 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7334 R:      Fabio Estevam <festevam@gmail.com>
7335 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7336 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7337 L:      linuxppc-dev@lists.ozlabs.org
7338 S:      Maintained
7339 F:      sound/soc/fsl/fsl*
7340 F:      sound/soc/fsl/imx*
7341 F:      sound/soc/fsl/mpc8610_hpcd.c
7342
7343 FREESCALE USB PERIPHERAL DRIVERS
7344 M:      Li Yang <leoyang.li@nxp.com>
7345 L:      linux-usb@vger.kernel.org
7346 L:      linuxppc-dev@lists.ozlabs.org
7347 S:      Maintained
7348 F:      drivers/usb/gadget/udc/fsl*
7349
7350 FREESCALE USB PHY DRIVER
7351 M:      Ran Wang <ran.wang_1@nxp.com>
7352 L:      linux-usb@vger.kernel.org
7353 L:      linuxppc-dev@lists.ozlabs.org
7354 S:      Maintained
7355 F:      drivers/usb/phy/phy-fsl-usb*
7356
7357 FREEVXFS FILESYSTEM
7358 M:      Christoph Hellwig <hch@infradead.org>
7359 S:      Maintained
7360 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7361 F:      fs/freevxfs/
7362
7363 FREEZER
7364 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7365 M:      Pavel Machek <pavel@ucw.cz>
7366 L:      linux-pm@vger.kernel.org
7367 S:      Supported
7368 F:      Documentation/power/freezing-of-tasks.rst
7369 F:      include/linux/freezer.h
7370 F:      kernel/freezer.c
7371
7372 FRONTSWAP API
7373 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7374 L:      linux-kernel@vger.kernel.org
7375 S:      Maintained
7376 F:      include/linux/frontswap.h
7377 F:      mm/frontswap.c
7378
7379 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7380 M:      David Howells <dhowells@redhat.com>
7381 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7382 S:      Supported
7383 F:      Documentation/filesystems/caching/
7384 F:      fs/fscache/
7385 F:      include/linux/fscache*.h
7386
7387 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7388 M:      Theodore Y. Ts'o <tytso@mit.edu>
7389 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7390 M:      Eric Biggers <ebiggers@kernel.org>
7391 L:      linux-fscrypt@vger.kernel.org
7392 S:      Supported
7393 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7394 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7395 F:      Documentation/filesystems/fscrypt.rst
7396 F:      fs/crypto/
7397 F:      include/linux/fscrypt*.h
7398 F:      include/uapi/linux/fscrypt.h
7399
7400 FSI SUBSYSTEM
7401 M:      Jeremy Kerr <jk@ozlabs.org>
7402 M:      Joel Stanley <joel@jms.id.au>
7403 R:      Alistar Popple <alistair@popple.id.au>
7404 R:      Eddie James <eajames@linux.ibm.com>
7405 L:      linux-fsi@lists.ozlabs.org
7406 S:      Supported
7407 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7409 F:      drivers/fsi/
7410 F:      include/linux/fsi*.h
7411 F:      include/trace/events/fsi*.h
7412
7413 FSI-ATTACHED I2C DRIVER
7414 M:      Eddie James <eajames@linux.ibm.com>
7415 L:      linux-i2c@vger.kernel.org
7416 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7417 S:      Maintained
7418 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7419 F:      drivers/i2c/busses/i2c-fsi.c
7420
7421 FSI-ATTACHED SPI DRIVER
7422 M:      Eddie James <eajames@linux.ibm.com>
7423 L:      linux-spi@vger.kernel.org
7424 S:      Maintained
7425 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7426 F:      drivers/spi/spi-fsi.c
7427
7428 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7429 M:      Jan Kara <jack@suse.cz>
7430 R:      Amir Goldstein <amir73il@gmail.com>
7431 L:      linux-fsdevel@vger.kernel.org
7432 S:      Maintained
7433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7434 F:      fs/notify/
7435 F:      include/linux/fsnotify*.h
7436
7437 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7438 M:      Eric Biggers <ebiggers@kernel.org>
7439 M:      Theodore Y. Ts'o <tytso@mit.edu>
7440 L:      linux-fscrypt@vger.kernel.org
7441 S:      Supported
7442 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7443 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7444 F:      Documentation/filesystems/fsverity.rst
7445 F:      fs/verity/
7446 F:      include/linux/fsverity.h
7447 F:      include/uapi/linux/fsverity.h
7448
7449 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7450 M:      Michael Zaidman <michael.zaidman@gmail.com>
7451 L:      linux-i2c@vger.kernel.org
7452 L:      linux-input@vger.kernel.org
7453 S:      Maintained
7454 F:      drivers/hid/hid-ft260.c
7455
7456 FUJITSU LAPTOP EXTRAS
7457 M:      Jonathan Woithe <jwoithe@just42.net>
7458 L:      platform-driver-x86@vger.kernel.org
7459 S:      Maintained
7460 F:      drivers/platform/x86/fujitsu-laptop.c
7461
7462 FUJITSU M-5MO LS CAMERA ISP DRIVER
7463 M:      Kyungmin Park <kyungmin.park@samsung.com>
7464 M:      Heungjun Kim <riverful.kim@samsung.com>
7465 L:      linux-media@vger.kernel.org
7466 S:      Maintained
7467 F:      drivers/media/i2c/m5mols/
7468 F:      include/media/i2c/m5mols.h
7469
7470 FUJITSU TABLET EXTRAS
7471 M:      Robert Gerlach <khnz@gmx.de>
7472 L:      platform-driver-x86@vger.kernel.org
7473 S:      Maintained
7474 F:      drivers/platform/x86/fujitsu-tablet.c
7475
7476 FUSE: FILESYSTEM IN USERSPACE
7477 M:      Miklos Szeredi <miklos@szeredi.hu>
7478 L:      linux-fsdevel@vger.kernel.org
7479 S:      Maintained
7480 W:      https://github.com/libfuse/
7481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7482 F:      Documentation/filesystems/fuse.rst
7483 F:      fs/fuse/
7484 F:      include/uapi/linux/fuse.h
7485
7486 FUTEX SUBSYSTEM
7487 M:      Thomas Gleixner <tglx@linutronix.de>
7488 M:      Ingo Molnar <mingo@redhat.com>
7489 R:      Peter Zijlstra <peterz@infradead.org>
7490 R:      Darren Hart <dvhart@infradead.org>
7491 R:      Davidlohr Bueso <dave@stgolabs.net>
7492 L:      linux-kernel@vger.kernel.org
7493 S:      Maintained
7494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7495 F:      Documentation/locking/*futex*
7496 F:      include/asm-generic/futex.h
7497 F:      include/linux/futex.h
7498 F:      include/uapi/linux/futex.h
7499 F:      kernel/futex.c
7500 F:      tools/perf/bench/futex*
7501 F:      tools/testing/selftests/futex/
7502
7503 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7504 M:      Tim Harvey <tharvey@gateworks.com>
7505 M:      Robert Jones <rjones@gateworks.com>
7506 S:      Maintained
7507 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7508 F:      drivers/mfd/gateworks-gsc.c
7509 F:      include/linux/mfd/gsc.h
7510 F:      Documentation/hwmon/gsc-hwmon.rst
7511 F:      drivers/hwmon/gsc-hwmon.c
7512 F:      include/linux/platform_data/gsc_hwmon.h
7513
7514 GCC PLUGINS
7515 M:      Kees Cook <keescook@chromium.org>
7516 L:      linux-hardening@vger.kernel.org
7517 S:      Maintained
7518 F:      Documentation/kbuild/gcc-plugins.rst
7519 F:      scripts/Makefile.gcc-plugins
7520 F:      scripts/gcc-plugins/
7521
7522 GCOV BASED KERNEL PROFILING
7523 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7524 S:      Maintained
7525 F:      Documentation/dev-tools/gcov.rst
7526 F:      kernel/gcov/
7527
7528 GDB KERNEL DEBUGGING HELPER SCRIPTS
7529 M:      Jan Kiszka <jan.kiszka@siemens.com>
7530 M:      Kieran Bingham <kbingham@kernel.org>
7531 S:      Supported
7532 F:      scripts/gdb/
7533
7534 GEMTEK FM RADIO RECEIVER DRIVER
7535 M:      Hans Verkuil <hverkuil@xs4all.nl>
7536 L:      linux-media@vger.kernel.org
7537 S:      Maintained
7538 W:      https://linuxtv.org
7539 T:      git git://linuxtv.org/media_tree.git
7540 F:      drivers/media/radio/radio-gemtek*
7541
7542 GENERIC ARCHITECTURE TOPOLOGY
7543 M:      Sudeep Holla <sudeep.holla@arm.com>
7544 L:      linux-kernel@vger.kernel.org
7545 S:      Maintained
7546 F:      drivers/base/arch_topology.c
7547 F:      include/linux/arch_topology.h
7548
7549 GENERIC ENTRY CODE
7550 M:      Thomas Gleixner <tglx@linutronix.de>
7551 M:      Peter Zijlstra <peterz@infradead.org>
7552 M:      Andy Lutomirski <luto@kernel.org>
7553 L:      linux-kernel@vger.kernel.org
7554 S:      Maintained
7555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7556 F:      include/linux/entry-common.h
7557 F:      include/linux/entry-kvm.h
7558 F:      kernel/entry/
7559
7560 GENERIC GPIO I2C DRIVER
7561 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7562 S:      Supported
7563 F:      drivers/i2c/busses/i2c-gpio.c
7564 F:      include/linux/platform_data/i2c-gpio.h
7565
7566 GENERIC GPIO I2C MULTIPLEXER DRIVER
7567 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7568 L:      linux-i2c@vger.kernel.org
7569 S:      Supported
7570 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7571 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7572 F:      include/linux/platform_data/i2c-mux-gpio.h
7573
7574 GENERIC HDLC (WAN) DRIVERS
7575 M:      Krzysztof Halasa <khc@pm.waw.pl>
7576 S:      Maintained
7577 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7578 F:      drivers/net/wan/c101.c
7579 F:      drivers/net/wan/hd6457*
7580 F:      drivers/net/wan/hdlc*
7581 F:      drivers/net/wan/n2.c
7582 F:      drivers/net/wan/pc300too.c
7583 F:      drivers/net/wan/pci200syn.c
7584 F:      drivers/net/wan/wanxl*
7585
7586 GENERIC INCLUDE/ASM HEADER FILES
7587 M:      Arnd Bergmann <arnd@arndb.de>
7588 L:      linux-arch@vger.kernel.org
7589 S:      Maintained
7590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7591 F:      include/asm-generic/
7592 F:      include/uapi/asm-generic/
7593
7594 GENERIC PHY FRAMEWORK
7595 M:      Kishon Vijay Abraham I <kishon@ti.com>
7596 M:      Vinod Koul <vkoul@kernel.org>
7597 L:      linux-phy@lists.infradead.org
7598 S:      Supported
7599 Q:      https://patchwork.kernel.org/project/linux-phy/list/
7600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7601 F:      Documentation/devicetree/bindings/phy/
7602 F:      drivers/phy/
7603 F:      include/linux/phy/
7604
7605 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7606 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7607 S:      Supported
7608 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7609
7610 GENERIC PM DOMAINS
7611 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7612 M:      Kevin Hilman <khilman@kernel.org>
7613 M:      Ulf Hansson <ulf.hansson@linaro.org>
7614 L:      linux-pm@vger.kernel.org
7615 S:      Supported
7616 F:      Documentation/devicetree/bindings/power/power?domain*
7617 F:      drivers/base/power/domain*.c
7618 F:      include/linux/pm_domain.h
7619
7620 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7621 M:      Eugen Hristev <eugen.hristev@microchip.com>
7622 L:      linux-input@vger.kernel.org
7623 S:      Maintained
7624 F:      drivers/input/touchscreen/resistive-adc-touch.c
7625
7626 GENERIC UIO DRIVER FOR PCI DEVICES
7627 M:      "Michael S. Tsirkin" <mst@redhat.com>
7628 L:      kvm@vger.kernel.org
7629 S:      Supported
7630 F:      drivers/uio/uio_pci_generic.c
7631
7632 GENERIC VDSO LIBRARY
7633 M:      Andy Lutomirski <luto@kernel.org>
7634 M:      Thomas Gleixner <tglx@linutronix.de>
7635 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7636 L:      linux-kernel@vger.kernel.org
7637 S:      Maintained
7638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7639 F:      include/asm-generic/vdso/vsyscall.h
7640 F:      include/vdso/
7641 F:      kernel/time/vsyscall.c
7642 F:      lib/vdso/
7643
7644 GENWQE (IBM Generic Workqueue Card)
7645 M:      Frank Haverkamp <haver@linux.ibm.com>
7646 S:      Supported
7647 F:      drivers/misc/genwqe/
7648
7649 GET_MAINTAINER SCRIPT
7650 M:      Joe Perches <joe@perches.com>
7651 S:      Maintained
7652 F:      scripts/get_maintainer.pl
7653
7654 GFS2 FILE SYSTEM
7655 M:      Bob Peterson <rpeterso@redhat.com>
7656 M:      Andreas Gruenbacher <agruenba@redhat.com>
7657 L:      cluster-devel@redhat.com
7658 S:      Supported
7659 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
7660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7661 F:      Documentation/filesystems/gfs2*
7662 F:      fs/gfs2/
7663 F:      include/uapi/linux/gfs2_ondisk.h
7664
7665 GIGABYTE WMI DRIVER
7666 M:      Thomas Weißschuh <thomas@weissschuh.net>
7667 L:      platform-driver-x86@vger.kernel.org
7668 S:      Maintained
7669 F:      drivers/platform/x86/gigabyte-wmi.c
7670
7671 GNSS SUBSYSTEM
7672 M:      Johan Hovold <johan@kernel.org>
7673 S:      Maintained
7674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7675 F:      Documentation/ABI/testing/sysfs-class-gnss
7676 F:      Documentation/devicetree/bindings/gnss/
7677 F:      drivers/gnss/
7678 F:      include/linux/gnss.h
7679
7680 GO7007 MPEG CODEC
7681 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7682 L:      linux-media@vger.kernel.org
7683 S:      Maintained
7684 F:      drivers/media/usb/go7007/
7685
7686 GOODIX TOUCHSCREEN
7687 M:      Bastien Nocera <hadess@hadess.net>
7688 L:      linux-input@vger.kernel.org
7689 S:      Maintained
7690 F:      drivers/input/touchscreen/goodix.c
7691
7692 GOOGLE ETHERNET DRIVERS
7693 M:      Catherine Sullivan <csully@google.com>
7694 R:      Sagi Shahar <sagis@google.com>
7695 R:      Jon Olson <jonolson@google.com>
7696 L:      netdev@vger.kernel.org
7697 S:      Supported
7698 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
7699 F:      drivers/net/ethernet/google
7700
7701 GPD POCKET FAN DRIVER
7702 M:      Hans de Goede <hdegoede@redhat.com>
7703 L:      platform-driver-x86@vger.kernel.org
7704 S:      Maintained
7705 F:      drivers/platform/x86/gpd-pocket-fan.c
7706
7707 GPIO ACPI SUPPORT
7708 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7709 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7710 L:      linux-gpio@vger.kernel.org
7711 L:      linux-acpi@vger.kernel.org
7712 S:      Maintained
7713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
7714 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7715 F:      drivers/gpio/gpiolib-acpi.c
7716 F:      drivers/gpio/gpiolib-acpi.h
7717
7718 GPIO AGGREGATOR
7719 M:      Geert Uytterhoeven <geert+renesas@glider.be>
7720 L:      linux-gpio@vger.kernel.org
7721 S:      Supported
7722 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7723 F:      drivers/gpio/gpio-aggregator.c
7724
7725 GPIO IR Transmitter
7726 M:      Sean Young <sean@mess.org>
7727 L:      linux-media@vger.kernel.org
7728 S:      Maintained
7729 F:      drivers/media/rc/gpio-ir-tx.c
7730
7731 GPIO MOCKUP DRIVER
7732 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7733 L:      linux-gpio@vger.kernel.org
7734 S:      Maintained
7735 F:      drivers/gpio/gpio-mockup.c
7736 F:      tools/testing/selftests/gpio/
7737
7738 GPIO REGMAP
7739 R:      Michael Walle <michael@walle.cc>
7740 S:      Maintained
7741 F:      drivers/gpio/gpio-regmap.c
7742 F:      include/linux/gpio/regmap.h
7743
7744 GPIO SUBSYSTEM
7745 M:      Linus Walleij <linus.walleij@linaro.org>
7746 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7747 L:      linux-gpio@vger.kernel.org
7748 S:      Maintained
7749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7750 F:      Documentation/ABI/obsolete/sysfs-gpio
7751 F:      Documentation/ABI/testing/gpio-cdev
7752 F:      Documentation/admin-guide/gpio/
7753 F:      Documentation/devicetree/bindings/gpio/
7754 F:      Documentation/driver-api/gpio/
7755 F:      drivers/gpio/
7756 F:      include/asm-generic/gpio.h
7757 F:      include/linux/gpio.h
7758 F:      include/linux/gpio/
7759 F:      include/linux/of_gpio.h
7760 F:      include/uapi/linux/gpio.h
7761 F:      tools/gpio/
7762
7763 GRE DEMULTIPLEXER DRIVER
7764 M:      Dmitry Kozlov <xeb@mail.ru>
7765 L:      netdev@vger.kernel.org
7766 S:      Maintained
7767 F:      include/net/gre.h
7768 F:      net/ipv4/gre_demux.c
7769 F:      net/ipv4/gre_offload.c
7770
7771 GRETH 10/100/1G Ethernet MAC device driver
7772 M:      Andreas Larsson <andreas@gaisler.com>
7773 L:      netdev@vger.kernel.org
7774 S:      Maintained
7775 F:      drivers/net/ethernet/aeroflex/
7776
7777 GREYBUS AUDIO PROTOCOLS DRIVERS
7778 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7779 M:      Mark Greer <mgreer@animalcreek.com>
7780 S:      Maintained
7781 F:      drivers/staging/greybus/audio_apbridgea.c
7782 F:      drivers/staging/greybus/audio_apbridgea.h
7783 F:      drivers/staging/greybus/audio_codec.c
7784 F:      drivers/staging/greybus/audio_codec.h
7785 F:      drivers/staging/greybus/audio_gb.c
7786 F:      drivers/staging/greybus/audio_manager.c
7787 F:      drivers/staging/greybus/audio_manager.h
7788 F:      drivers/staging/greybus/audio_manager_module.c
7789 F:      drivers/staging/greybus/audio_manager_private.h
7790 F:      drivers/staging/greybus/audio_manager_sysfs.c
7791 F:      drivers/staging/greybus/audio_module.c
7792 F:      drivers/staging/greybus/audio_topology.c
7793
7794 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7795 M:      Viresh Kumar <vireshk@kernel.org>
7796 S:      Maintained
7797 F:      drivers/staging/greybus/authentication.c
7798 F:      drivers/staging/greybus/bootrom.c
7799 F:      drivers/staging/greybus/firmware.h
7800 F:      drivers/staging/greybus/fw-core.c
7801 F:      drivers/staging/greybus/fw-download.c
7802 F:      drivers/staging/greybus/fw-management.c
7803 F:      drivers/staging/greybus/greybus_authentication.h
7804 F:      drivers/staging/greybus/greybus_firmware.h
7805 F:      drivers/staging/greybus/hid.c
7806 F:      drivers/staging/greybus/i2c.c
7807 F:      drivers/staging/greybus/spi.c
7808 F:      drivers/staging/greybus/spilib.c
7809 F:      drivers/staging/greybus/spilib.h
7810
7811 GREYBUS LOOPBACK DRIVER
7812 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7813 S:      Maintained
7814 F:      drivers/staging/greybus/loopback.c
7815
7816 GREYBUS PLATFORM DRIVERS
7817 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7818 S:      Maintained
7819 F:      drivers/staging/greybus/arche-apb-ctrl.c
7820 F:      drivers/staging/greybus/arche-platform.c
7821 F:      drivers/staging/greybus/arche_platform.h
7822
7823 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7824 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7825 S:      Maintained
7826 F:      drivers/staging/greybus/gpio.c
7827 F:      drivers/staging/greybus/light.c
7828 F:      drivers/staging/greybus/power_supply.c
7829 F:      drivers/staging/greybus/sdio.c
7830 F:      drivers/staging/greybus/spi.c
7831 F:      drivers/staging/greybus/spilib.c
7832
7833 GREYBUS SUBSYSTEM
7834 M:      Johan Hovold <johan@kernel.org>
7835 M:      Alex Elder <elder@kernel.org>
7836 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7837 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7838 S:      Maintained
7839 F:      drivers/greybus/
7840 F:      drivers/staging/greybus/
7841 F:      include/linux/greybus.h
7842 F:      include/linux/greybus/
7843
7844 GREYBUS UART PROTOCOLS DRIVERS
7845 M:      David Lin <dtwlin@gmail.com>
7846 S:      Maintained
7847 F:      drivers/staging/greybus/log.c
7848 F:      drivers/staging/greybus/uart.c
7849
7850 GS1662 VIDEO SERIALIZER
7851 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7852 L:      linux-media@vger.kernel.org
7853 S:      Maintained
7854 T:      git git://linuxtv.org/media_tree.git
7855 F:      drivers/media/spi/gs1662.c
7856
7857 GSPCA FINEPIX SUBDRIVER
7858 M:      Frank Zago <frank@zago.net>
7859 L:      linux-media@vger.kernel.org
7860 S:      Maintained
7861 T:      git git://linuxtv.org/media_tree.git
7862 F:      drivers/media/usb/gspca/finepix.c
7863
7864 GSPCA GL860 SUBDRIVER
7865 M:      Olivier Lorin <o.lorin@laposte.net>
7866 L:      linux-media@vger.kernel.org
7867 S:      Maintained
7868 T:      git git://linuxtv.org/media_tree.git
7869 F:      drivers/media/usb/gspca/gl860/
7870
7871 GSPCA M5602 SUBDRIVER
7872 M:      Erik Andren <erik.andren@gmail.com>
7873 L:      linux-media@vger.kernel.org
7874 S:      Maintained
7875 T:      git git://linuxtv.org/media_tree.git
7876 F:      drivers/media/usb/gspca/m5602/
7877
7878 GSPCA PAC207 SONIXB SUBDRIVER
7879 M:      Hans Verkuil <hverkuil@xs4all.nl>
7880 L:      linux-media@vger.kernel.org
7881 S:      Odd Fixes
7882 T:      git git://linuxtv.org/media_tree.git
7883 F:      drivers/media/usb/gspca/pac207.c
7884
7885 GSPCA SN9C20X SUBDRIVER
7886 M:      Brian Johnson <brijohn@gmail.com>
7887 L:      linux-media@vger.kernel.org
7888 S:      Maintained
7889 T:      git git://linuxtv.org/media_tree.git
7890 F:      drivers/media/usb/gspca/sn9c20x.c
7891
7892 GSPCA T613 SUBDRIVER
7893 M:      Leandro Costantino <lcostantino@gmail.com>
7894 L:      linux-media@vger.kernel.org
7895 S:      Maintained
7896 T:      git git://linuxtv.org/media_tree.git
7897 F:      drivers/media/usb/gspca/t613.c
7898
7899 GSPCA USB WEBCAM DRIVER
7900 M:      Hans Verkuil <hverkuil@xs4all.nl>
7901 L:      linux-media@vger.kernel.org
7902 S:      Odd Fixes
7903 T:      git git://linuxtv.org/media_tree.git
7904 F:      drivers/media/usb/gspca/
7905
7906 GTP (GPRS Tunneling Protocol)
7907 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7908 M:      Harald Welte <laforge@gnumonks.org>
7909 L:      osmocom-net-gprs@lists.osmocom.org
7910 S:      Maintained
7911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7912 F:      drivers/net/gtp.c
7913
7914 GUID PARTITION TABLE (GPT)
7915 M:      Davidlohr Bueso <dave@stgolabs.net>
7916 L:      linux-efi@vger.kernel.org
7917 S:      Maintained
7918 F:      block/partitions/efi.*
7919
7920 H8/300 ARCHITECTURE
7921 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
7922 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7923 S:      Maintained
7924 W:      http://uclinux-h8.sourceforge.jp
7925 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7926 F:      arch/h8300/
7927 F:      drivers/clk/h8300/
7928 F:      drivers/clocksource/h8300_*.c
7929 F:      drivers/irqchip/irq-renesas-h8*.c
7930
7931 HABANALABS PCI DRIVER
7932 M:      Oded Gabbay <ogabbay@kernel.org>
7933 S:      Supported
7934 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
7935 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7936 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7937 F:      drivers/misc/habanalabs/
7938 F:      include/uapi/misc/habanalabs.h
7939
7940 HACKRF MEDIA DRIVER
7941 M:      Antti Palosaari <crope@iki.fi>
7942 L:      linux-media@vger.kernel.org
7943 S:      Maintained
7944 W:      https://linuxtv.org
7945 W:      http://palosaari.fi/linux/
7946 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7947 T:      git git://linuxtv.org/anttip/media_tree.git
7948 F:      drivers/media/usb/hackrf/
7949
7950 HANTRO VPU CODEC DRIVER
7951 M:      Ezequiel Garcia <ezequiel@collabora.com>
7952 M:      Philipp Zabel <p.zabel@pengutronix.de>
7953 L:      linux-media@vger.kernel.org
7954 L:      linux-rockchip@lists.infradead.org
7955 S:      Maintained
7956 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
7957 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
7958 F:      drivers/staging/media/hantro/
7959
7960 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7961 M:      Frank Seidel <frank@f-seidel.de>
7962 L:      platform-driver-x86@vger.kernel.org
7963 S:      Maintained
7964 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7965 F:      drivers/platform/x86/hdaps.c
7966
7967 HARDWARE MONITORING
7968 M:      Jean Delvare <jdelvare@suse.com>
7969 M:      Guenter Roeck <linux@roeck-us.net>
7970 L:      linux-hwmon@vger.kernel.org
7971 S:      Maintained
7972 W:      http://hwmon.wiki.kernel.org/
7973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7974 F:      Documentation/devicetree/bindings/hwmon/
7975 F:      Documentation/hwmon/
7976 F:      drivers/hwmon/
7977 F:      include/linux/hwmon*.h
7978 F:      include/trace/events/hwmon*.h
7979 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
7980
7981 HARDWARE RANDOM NUMBER GENERATOR CORE
7982 M:      Matt Mackall <mpm@selenic.com>
7983 M:      Herbert Xu <herbert@gondor.apana.org.au>
7984 L:      linux-crypto@vger.kernel.org
7985 S:      Odd fixes
7986 F:      Documentation/admin-guide/hw_random.rst
7987 F:      Documentation/devicetree/bindings/rng/
7988 F:      drivers/char/hw_random/
7989 F:      include/linux/hw_random.h
7990
7991 HARDWARE SPINLOCK CORE
7992 M:      Ohad Ben-Cohen <ohad@wizery.com>
7993 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
7994 R:      Baolin Wang <baolin.wang7@gmail.com>
7995 L:      linux-remoteproc@vger.kernel.org
7996 S:      Maintained
7997 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7998 F:      Documentation/devicetree/bindings/hwlock/
7999 F:      Documentation/locking/hwspinlock.rst
8000 F:      drivers/hwspinlock/
8001 F:      include/linux/hwspinlock.h
8002
8003 HARDWARE TRACING FACILITIES
8004 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8005 S:      Maintained
8006 F:      drivers/hwtracing/
8007
8008 HARMONY SOUND DRIVER
8009 L:      linux-parisc@vger.kernel.org
8010 S:      Maintained
8011 F:      sound/parisc/harmony.*
8012
8013 HDPVR USB VIDEO ENCODER DRIVER
8014 M:      Hans Verkuil <hverkuil@xs4all.nl>
8015 L:      linux-media@vger.kernel.org
8016 S:      Odd Fixes
8017 W:      https://linuxtv.org
8018 T:      git git://linuxtv.org/media_tree.git
8019 F:      drivers/media/usb/hdpvr/
8020
8021 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8022 M:      Matt Hsiao <matt.hsiao@hpe.com>
8023 S:      Supported
8024 F:      drivers/misc/hpilo.[ch]
8025
8026 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8027 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8028 S:      Supported
8029 F:      Documentation/watchdog/hpwdt.rst
8030 F:      drivers/watchdog/hpwdt.c
8031
8032 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8033 M:      Don Brace <don.brace@microchip.com>
8034 L:      storagedev@microchip.com
8035 L:      linux-scsi@vger.kernel.org
8036 S:      Supported
8037 F:      Documentation/scsi/hpsa.rst
8038 F:      drivers/scsi/hpsa*.[ch]
8039 F:      include/linux/cciss*.h
8040 F:      include/uapi/linux/cciss*.h
8041
8042 HFI1 DRIVER
8043 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8044 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8045 L:      linux-rdma@vger.kernel.org
8046 S:      Supported
8047 F:      drivers/infiniband/hw/hfi1
8048
8049 HFS FILESYSTEM
8050 L:      linux-fsdevel@vger.kernel.org
8051 S:      Orphan
8052 F:      Documentation/filesystems/hfs.rst
8053 F:      fs/hfs/
8054
8055 HFSPLUS FILESYSTEM
8056 L:      linux-fsdevel@vger.kernel.org
8057 S:      Orphan
8058 F:      Documentation/filesystems/hfsplus.rst
8059 F:      fs/hfsplus/
8060
8061 HGA FRAMEBUFFER DRIVER
8062 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8063 L:      linux-nvidia@lists.surfsouth.com
8064 S:      Maintained
8065 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8066 F:      drivers/video/fbdev/hgafb.c
8067
8068 HIBERNATION (aka Software Suspend, aka swsusp)
8069 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
8070 M:      Pavel Machek <pavel@ucw.cz>
8071 L:      linux-pm@vger.kernel.org
8072 S:      Supported
8073 B:      https://bugzilla.kernel.org
8074 F:      arch/*/include/asm/suspend*.h
8075 F:      arch/x86/power/
8076 F:      drivers/base/power/
8077 F:      include/linux/freezer.h
8078 F:      include/linux/pm.h
8079 F:      include/linux/suspend.h
8080 F:      kernel/power/
8081
8082 HID CORE LAYER
8083 M:      Jiri Kosina <jikos@kernel.org>
8084 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8085 L:      linux-input@vger.kernel.org
8086 S:      Maintained
8087 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8088 F:      drivers/hid/
8089 F:      include/linux/hid*
8090 F:      include/uapi/linux/hid*
8091
8092 HID PLAYSTATION DRIVER
8093 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8094 L:      linux-input@vger.kernel.org
8095 S:      Supported
8096 F:      drivers/hid/hid-playstation.c
8097
8098 HID SENSOR HUB DRIVERS
8099 M:      Jiri Kosina <jikos@kernel.org>
8100 M:      Jonathan Cameron <jic23@kernel.org>
8101 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8102 L:      linux-input@vger.kernel.org
8103 L:      linux-iio@vger.kernel.org
8104 S:      Maintained
8105 F:      Documentation/hid/hid-sensor*
8106 F:      drivers/hid/hid-sensor-*
8107 F:      drivers/iio/*/hid-*
8108 F:      include/linux/hid-sensor-*
8109
8110 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8111 M:      Thomas Gleixner <tglx@linutronix.de>
8112 L:      linux-kernel@vger.kernel.org
8113 S:      Maintained
8114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8115 F:      Documentation/timers/
8116 F:      include/linux/clockchips.h
8117 F:      include/linux/hrtimer.h
8118 F:      kernel/time/clockevents.c
8119 F:      kernel/time/hrtimer.c
8120 F:      kernel/time/timer_*.c
8121
8122 HIGH-SPEED SCC DRIVER FOR AX.25
8123 L:      linux-hams@vger.kernel.org
8124 S:      Orphan
8125 F:      drivers/net/hamradio/dmascc.c
8126 F:      drivers/net/hamradio/scc.c
8127
8128 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8129 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8130 S:      Supported
8131 W:      http://www.highpoint-tech.com
8132 F:      Documentation/scsi/hptiop.rst
8133 F:      drivers/scsi/hptiop.c
8134
8135 HIPPI
8136 M:      Jes Sorensen <jes@trained-monkey.org>
8137 L:      linux-hippi@sunsite.dk
8138 S:      Maintained
8139 F:      drivers/net/hippi/
8140 F:      include/linux/hippidevice.h
8141 F:      include/uapi/linux/if_hippi.h
8142 F:      net/802/hippi.c
8143
8144 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8145 M:      Kurt Kanzenbach <kurt@linutronix.de>
8146 L:      netdev@vger.kernel.org
8147 S:      Maintained
8148 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8149 F:      drivers/net/dsa/hirschmann/*
8150 F:      include/linux/platform_data/hirschmann-hellcreek.h
8151 F:      net/dsa/tag_hellcreek.c
8152
8153 HISILICON DMA DRIVER
8154 M:      Zhou Wang <wangzhou1@hisilicon.com>
8155 L:      dmaengine@vger.kernel.org
8156 S:      Maintained
8157 F:      drivers/dma/hisi_dma.c
8158
8159 HISILICON GPIO DRIVER
8160 M:      Luo Jiaxing <luojiaxing@huawei.com>
8161 L:      linux-gpio@vger.kernel.org
8162 S:      Maintained
8163 F:      drivers/gpio/gpio-hisi.c
8164
8165 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8166 M:      Zaibo Xu <xuzaibo@huawei.com>
8167 L:      linux-crypto@vger.kernel.org
8168 S:      Maintained
8169 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8170 F:      drivers/crypto/hisilicon/hpre/hpre.h
8171 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8172 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8173
8174 HISILICON I2C CONTROLLER DRIVER
8175 M:      Yicong Yang <yangyicong@hisilicon.com>
8176 L:      linux-i2c@vger.kernel.org
8177 S:      Maintained
8178 W:      https://www.hisilicon.com
8179 F:      drivers/i2c/busses/i2c-hisi.c
8180
8181 HISILICON LPC BUS DRIVER
8182 M:      john.garry@huawei.com
8183 S:      Maintained
8184 W:      http://www.hisilicon.com
8185 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8186 F:      drivers/bus/hisi_lpc.c
8187
8188 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8189 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8190 M:      Salil Mehta <salil.mehta@huawei.com>
8191 L:      netdev@vger.kernel.org
8192 S:      Maintained
8193 W:      http://www.hisilicon.com
8194 F:      drivers/net/ethernet/hisilicon/hns3/
8195
8196 HISILICON NETWORK SUBSYSTEM DRIVER
8197 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8198 M:      Salil Mehta <salil.mehta@huawei.com>
8199 L:      netdev@vger.kernel.org
8200 S:      Maintained
8201 W:      http://www.hisilicon.com
8202 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8203 F:      drivers/net/ethernet/hisilicon/
8204
8205 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8206 M:      John Stultz <john.stultz@linaro.org>
8207 L:      linux-kernel@vger.kernel.org
8208 S:      Maintained
8209 F:      drivers/misc/hisi_hikey_usb.c
8210 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8211
8212 HISILICON PMU DRIVER
8213 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8214 S:      Supported
8215 W:      http://www.hisilicon.com
8216 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8217 F:      drivers/perf/hisilicon
8218
8219 HISILICON QM AND ZIP Controller DRIVER
8220 M:      Zhou Wang <wangzhou1@hisilicon.com>
8221 L:      linux-crypto@vger.kernel.org
8222 S:      Maintained
8223 F:      Documentation/ABI/testing/debugfs-hisi-zip
8224 F:      drivers/crypto/hisilicon/qm.c
8225 F:      drivers/crypto/hisilicon/qm.h
8226 F:      drivers/crypto/hisilicon/sgl.c
8227 F:      drivers/crypto/hisilicon/zip/
8228
8229 HISILICON ROCE DRIVER
8230 M:      Lijun Ou <oulijun@huawei.com>
8231 M:      Weihang Li <liweihang@huawei.com>
8232 L:      linux-rdma@vger.kernel.org
8233 S:      Maintained
8234 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8235 F:      drivers/infiniband/hw/hns/
8236
8237 HISILICON SAS Controller
8238 M:      John Garry <john.garry@huawei.com>
8239 S:      Supported
8240 W:      http://www.hisilicon.com
8241 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8242 F:      drivers/scsi/hisi_sas/
8243
8244 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8245 M:      Zaibo Xu <xuzaibo@huawei.com>
8246 L:      linux-crypto@vger.kernel.org
8247 S:      Maintained
8248 F:      Documentation/ABI/testing/debugfs-hisi-sec
8249 F:      drivers/crypto/hisilicon/sec2/sec.h
8250 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8251 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8252 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8253
8254 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8255 M:      Jay Fang <f.fangjian@huawei.com>
8256 L:      linux-spi@vger.kernel.org
8257 S:      Maintained
8258 W:      http://www.hisilicon.com
8259 F:      drivers/spi/spi-hisi-kunpeng.c
8260
8261 HISILICON STAGING DRIVERS FOR HIKEY 960/970
8262 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8263 S:      Maintained
8264 F:      drivers/staging/hikey9xx/
8265
8266 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8267 M:      Zaibo Xu <xuzaibo@huawei.com>
8268 S:      Maintained
8269 F:      drivers/crypto/hisilicon/trng/trng.c
8270
8271 HISILICON V3XX SPI NOR FLASH Controller Driver
8272 M:      John Garry <john.garry@huawei.com>
8273 S:      Maintained
8274 W:      http://www.hisilicon.com
8275 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8276
8277 HMM - Heterogeneous Memory Management
8278 M:      Jérôme Glisse <jglisse@redhat.com>
8279 L:      linux-mm@kvack.org
8280 S:      Maintained
8281 F:      Documentation/vm/hmm.rst
8282 F:      include/linux/hmm*
8283 F:      lib/test_hmm*
8284 F:      mm/hmm*
8285 F:      tools/testing/selftests/vm/*hmm*
8286
8287 HOST AP DRIVER
8288 M:      Jouni Malinen <j@w1.fi>
8289 L:      linux-wireless@vger.kernel.org
8290 S:      Obsolete
8291 W:      http://w1.fi/hostap-driver.html
8292 F:      drivers/net/wireless/intersil/hostap/
8293
8294 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8295 L:      platform-driver-x86@vger.kernel.org
8296 S:      Orphan
8297 F:      drivers/platform/x86/tc1100-wmi.c
8298
8299 HPET:   High Precision Event Timers driver
8300 M:      Clemens Ladisch <clemens@ladisch.de>
8301 S:      Maintained
8302 F:      Documentation/timers/hpet.rst
8303 F:      drivers/char/hpet.c
8304 F:      include/linux/hpet.h
8305 F:      include/uapi/linux/hpet.h
8306
8307 HPET:   x86
8308 S:      Orphan
8309 F:      arch/x86/include/asm/hpet.h
8310 F:      arch/x86/kernel/hpet.c
8311
8312 HPFS FILESYSTEM
8313 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8314 S:      Maintained
8315 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8316 F:      fs/hpfs/
8317
8318 HSI SUBSYSTEM
8319 M:      Sebastian Reichel <sre@kernel.org>
8320 S:      Maintained
8321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8322 F:      Documentation/ABI/testing/sysfs-bus-hsi
8323 F:      Documentation/driver-api/hsi.rst
8324 F:      drivers/hsi/
8325 F:      include/linux/hsi/
8326 F:      include/uapi/linux/hsi/
8327
8328 HSO 3G MODEM DRIVER
8329 L:      linux-usb@vger.kernel.org
8330 S:      Orphan
8331 F:      drivers/net/usb/hso.c
8332
8333 HSR NETWORK PROTOCOL
8334 L:      netdev@vger.kernel.org
8335 S:      Orphan
8336 F:      net/hsr/
8337
8338 HT16K33 LED CONTROLLER DRIVER
8339 M:      Robin van der Gracht <robin@protonic.nl>
8340 S:      Maintained
8341 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8342 F:      drivers/auxdisplay/ht16k33.c
8343
8344 HTCPEN TOUCHSCREEN DRIVER
8345 M:      Pau Oliva Fora <pof@eslack.org>
8346 L:      linux-input@vger.kernel.org
8347 S:      Maintained
8348 F:      drivers/input/touchscreen/htcpen.c
8349
8350 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8351 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8352 L:      linux-iio@vger.kernel.org
8353 S:      Maintained
8354 W:      http://www.st.com/
8355 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8356 F:      drivers/iio/humidity/hts221*
8357
8358 HUAWEI ETHERNET DRIVER
8359 M:      Bin Luo <luobin9@huawei.com>
8360 L:      netdev@vger.kernel.org
8361 S:      Supported
8362 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8363 F:      drivers/net/ethernet/huawei/hinic/
8364
8365 HUGETLB FILESYSTEM
8366 M:      Mike Kravetz <mike.kravetz@oracle.com>
8367 L:      linux-mm@kvack.org
8368 S:      Maintained
8369 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8370 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8371 F:      Documentation/vm/hugetlbfs_reserv.rst
8372 F:      fs/hugetlbfs/
8373 F:      include/linux/hugetlb.h
8374 F:      mm/hugetlb.c
8375
8376 HVA ST MEDIA DRIVER
8377 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8378 L:      linux-media@vger.kernel.org
8379 S:      Supported
8380 W:      https://linuxtv.org
8381 T:      git git://linuxtv.org/media_tree.git
8382 F:      drivers/media/platform/sti/hva
8383
8384 HWPOISON MEMORY FAILURE HANDLING
8385 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8386 L:      linux-mm@kvack.org
8387 S:      Maintained
8388 F:      mm/hwpoison-inject.c
8389 F:      mm/memory-failure.c
8390
8391 HYGON PROCESSOR SUPPORT
8392 M:      Pu Wen <puwen@hygon.cn>
8393 L:      linux-kernel@vger.kernel.org
8394 S:      Maintained
8395 F:      arch/x86/kernel/cpu/hygon.c
8396
8397 HYNIX HI556 SENSOR DRIVER
8398 M:      Shawn Tu <shawnx.tu@intel.com>
8399 L:      linux-media@vger.kernel.org
8400 S:      Maintained
8401 T:      git git://linuxtv.org/media_tree.git
8402 F:      drivers/media/i2c/hi556.c
8403
8404 Hyper-V/Azure CORE AND DRIVERS
8405 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8406 M:      Haiyang Zhang <haiyangz@microsoft.com>
8407 M:      Stephen Hemminger <sthemmin@microsoft.com>
8408 M:      Wei Liu <wei.liu@kernel.org>
8409 M:      Dexuan Cui <decui@microsoft.com>
8410 L:      linux-hyperv@vger.kernel.org
8411 S:      Supported
8412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8413 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8414 F:      Documentation/ABI/testing/debugfs-hyperv
8415 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8416 F:      arch/x86/hyperv
8417 F:      arch/x86/include/asm/hyperv-tlfs.h
8418 F:      arch/x86/include/asm/mshyperv.h
8419 F:      arch/x86/include/asm/trace/hyperv.h
8420 F:      arch/x86/kernel/cpu/mshyperv.c
8421 F:      drivers/clocksource/hyperv_timer.c
8422 F:      drivers/hid/hid-hyperv.c
8423 F:      drivers/hv/
8424 F:      drivers/input/serio/hyperv-keyboard.c
8425 F:      drivers/iommu/hyperv-iommu.c
8426 F:      drivers/net/ethernet/microsoft/
8427 F:      drivers/net/hyperv/
8428 F:      drivers/pci/controller/pci-hyperv-intf.c
8429 F:      drivers/pci/controller/pci-hyperv.c
8430 F:      drivers/scsi/storvsc_drv.c
8431 F:      drivers/uio/uio_hv_generic.c
8432 F:      drivers/video/fbdev/hyperv_fb.c
8433 F:      include/asm-generic/hyperv-tlfs.h
8434 F:      include/asm-generic/mshyperv.h
8435 F:      include/clocksource/hyperv_timer.h
8436 F:      include/linux/hyperv.h
8437 F:      include/uapi/linux/hyperv.h
8438 F:      net/vmw_vsock/hyperv_transport.c
8439 F:      tools/hv/
8440
8441 HYPERBUS SUPPORT
8442 M:      Vignesh Raghavendra <vigneshr@ti.com>
8443 L:      linux-mtd@lists.infradead.org
8444 S:      Supported
8445 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8446 C:      irc://irc.oftc.net/mtd
8447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8448 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8449 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8450 F:      drivers/mtd/hyperbus/
8451 F:      include/linux/mtd/hyperbus.h
8452
8453 HYPERVISOR VIRTUAL CONSOLE DRIVER
8454 L:      linuxppc-dev@lists.ozlabs.org
8455 S:      Odd Fixes
8456 F:      drivers/tty/hvc/
8457
8458 I2C ACPI SUPPORT
8459 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8460 L:      linux-i2c@vger.kernel.org
8461 L:      linux-acpi@vger.kernel.org
8462 S:      Maintained
8463 F:      drivers/i2c/i2c-core-acpi.c
8464
8465 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8466 M:      Ajay Gupta <ajayg@nvidia.com>
8467 L:      linux-i2c@vger.kernel.org
8468 S:      Maintained
8469 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8470 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8471
8472 I2C MUXES
8473 M:      Peter Rosin <peda@axentia.se>
8474 L:      linux-i2c@vger.kernel.org
8475 S:      Maintained
8476 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8477 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8478 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8479 F:      Documentation/i2c/i2c-topology.rst
8480 F:      Documentation/i2c/muxes/
8481 F:      drivers/i2c/i2c-mux.c
8482 F:      drivers/i2c/muxes/
8483 F:      include/linux/i2c-mux.h
8484
8485 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8486 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8487 L:      linux-i2c@vger.kernel.org
8488 S:      Maintained
8489 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8490 F:      drivers/i2c/busses/i2c-mv64xxx.c
8491
8492 I2C OVER PARALLEL PORT
8493 M:      Jean Delvare <jdelvare@suse.com>
8494 L:      linux-i2c@vger.kernel.org
8495 S:      Maintained
8496 F:      Documentation/i2c/busses/i2c-parport.rst
8497 F:      drivers/i2c/busses/i2c-parport.c
8498
8499 I2C SUBSYSTEM
8500 M:      Wolfram Sang <wsa@kernel.org>
8501 L:      linux-i2c@vger.kernel.org
8502 S:      Maintained
8503 W:      https://i2c.wiki.kernel.org/
8504 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8506 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8507 F:      Documentation/i2c/
8508 F:      drivers/i2c/*
8509 F:      include/linux/i2c-dev.h
8510 F:      include/linux/i2c-smbus.h
8511 F:      include/linux/i2c.h
8512 F:      include/uapi/linux/i2c-*.h
8513 F:      include/uapi/linux/i2c.h
8514
8515 I2C SUBSYSTEM HOST DRIVERS
8516 L:      linux-i2c@vger.kernel.org
8517 S:      Odd Fixes
8518 W:      https://i2c.wiki.kernel.org/
8519 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8521 F:      Documentation/devicetree/bindings/i2c/
8522 F:      drivers/i2c/algos/
8523 F:      drivers/i2c/busses/
8524
8525 I2C-TAOS-EVM DRIVER
8526 M:      Jean Delvare <jdelvare@suse.com>
8527 L:      linux-i2c@vger.kernel.org
8528 S:      Maintained
8529 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8530 F:      drivers/i2c/busses/i2c-taos-evm.c
8531
8532 I2C-TINY-USB DRIVER
8533 M:      Till Harbaum <till@harbaum.org>
8534 L:      linux-i2c@vger.kernel.org
8535 S:      Maintained
8536 W:      http://www.harbaum.org/till/i2c_tiny_usb
8537 F:      drivers/i2c/busses/i2c-tiny-usb.c
8538
8539 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8540 M:      Jean Delvare <jdelvare@suse.com>
8541 L:      linux-i2c@vger.kernel.org
8542 S:      Maintained
8543 F:      Documentation/i2c/busses/i2c-ali1535.rst
8544 F:      Documentation/i2c/busses/i2c-ali1563.rst
8545 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8546 F:      Documentation/i2c/busses/i2c-amd756.rst
8547 F:      Documentation/i2c/busses/i2c-amd8111.rst
8548 F:      Documentation/i2c/busses/i2c-i801.rst
8549 F:      Documentation/i2c/busses/i2c-nforce2.rst
8550 F:      Documentation/i2c/busses/i2c-piix4.rst
8551 F:      Documentation/i2c/busses/i2c-sis5595.rst
8552 F:      Documentation/i2c/busses/i2c-sis630.rst
8553 F:      Documentation/i2c/busses/i2c-sis96x.rst
8554 F:      Documentation/i2c/busses/i2c-via.rst
8555 F:      Documentation/i2c/busses/i2c-viapro.rst
8556 F:      drivers/i2c/busses/i2c-ali1535.c
8557 F:      drivers/i2c/busses/i2c-ali1563.c
8558 F:      drivers/i2c/busses/i2c-ali15x3.c
8559 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8560 F:      drivers/i2c/busses/i2c-amd756.c
8561 F:      drivers/i2c/busses/i2c-amd8111.c
8562 F:      drivers/i2c/busses/i2c-i801.c
8563 F:      drivers/i2c/busses/i2c-isch.c
8564 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8565 F:      drivers/i2c/busses/i2c-nforce2.c
8566 F:      drivers/i2c/busses/i2c-piix4.c
8567 F:      drivers/i2c/busses/i2c-sis5595.c
8568 F:      drivers/i2c/busses/i2c-sis630.c
8569 F:      drivers/i2c/busses/i2c-sis96x.c
8570 F:      drivers/i2c/busses/i2c-via.c
8571 F:      drivers/i2c/busses/i2c-viapro.c
8572
8573 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8574 M:      Hans de Goede <hdegoede@redhat.com>
8575 L:      linux-i2c@vger.kernel.org
8576 S:      Maintained
8577 F:      drivers/i2c/busses/i2c-cht-wc.c
8578
8579 I2C/SMBUS ISMT DRIVER
8580 M:      Seth Heasley <seth.heasley@intel.com>
8581 M:      Neil Horman <nhorman@tuxdriver.com>
8582 L:      linux-i2c@vger.kernel.org
8583 F:      Documentation/i2c/busses/i2c-ismt.rst
8584 F:      drivers/i2c/busses/i2c-ismt.c
8585
8586 I2C/SMBUS STUB DRIVER
8587 M:      Jean Delvare <jdelvare@suse.com>
8588 L:      linux-i2c@vger.kernel.org
8589 S:      Maintained
8590 F:      drivers/i2c/i2c-stub.c
8591
8592 I3C DRIVER FOR CADENCE I3C MASTER IP
8593 M:      Przemysław Gaj <pgaj@cadence.com>
8594 S:      Maintained
8595 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8596 F:      drivers/i3c/master/i3c-master-cdns.c
8597
8598 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8599 M:      Vitor Soares <vitor.soares@synopsys.com>
8600 S:      Maintained
8601 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8602 F:      drivers/i3c/master/dw*
8603
8604 I3C SUBSYSTEM
8605 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
8606 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8607 S:      Maintained
8608 C:      irc://chat.freenode.net/linux-i3c
8609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8610 F:      Documentation/ABI/testing/sysfs-bus-i3c
8611 F:      Documentation/devicetree/bindings/i3c/
8612 F:      Documentation/driver-api/i3c
8613 F:      drivers/i3c/
8614 F:      include/linux/i3c/
8615
8616 IA64 (Itanium) PLATFORM
8617 L:      linux-ia64@vger.kernel.org
8618 S:      Orphan
8619 F:      Documentation/ia64/
8620 F:      arch/ia64/
8621
8622 IBM Power 842 compression accelerator
8623 M:      Haren Myneni <haren@us.ibm.com>
8624 S:      Supported
8625 F:      crypto/842.c
8626 F:      drivers/crypto/nx/Kconfig
8627 F:      drivers/crypto/nx/Makefile
8628 F:      drivers/crypto/nx/nx-842*
8629 F:      include/linux/sw842.h
8630 F:      lib/842/
8631
8632 IBM Power in-Nest Crypto Acceleration
8633 M:      Breno Leitão <leitao@debian.org>
8634 M:      Nayna Jain <nayna@linux.ibm.com>
8635 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8636 L:      linux-crypto@vger.kernel.org
8637 S:      Supported
8638 F:      drivers/crypto/nx/Kconfig
8639 F:      drivers/crypto/nx/Makefile
8640 F:      drivers/crypto/nx/nx-aes*
8641 F:      drivers/crypto/nx/nx-sha*
8642 F:      drivers/crypto/nx/nx.*
8643 F:      drivers/crypto/nx/nx_csbcpb.h
8644 F:      drivers/crypto/nx/nx_debugfs.c
8645
8646 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8647 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8648 L:      linux-pci@vger.kernel.org
8649 L:      linuxppc-dev@lists.ozlabs.org
8650 S:      Supported
8651 F:      drivers/pci/hotplug/rpadlpar*
8652
8653 IBM Power Linux RAID adapter
8654 M:      Brian King <brking@us.ibm.com>
8655 S:      Supported
8656 F:      drivers/scsi/ipr.*
8657
8658 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8659 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8660 L:      linux-pci@vger.kernel.org
8661 L:      linuxppc-dev@lists.ozlabs.org
8662 S:      Supported
8663 F:      drivers/pci/hotplug/rpaphp*
8664
8665 IBM Power SRIOV Virtual NIC Device Driver
8666 M:      Dany Madden <drt@linux.ibm.com>
8667 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8668 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
8669 L:      netdev@vger.kernel.org
8670 S:      Supported
8671 F:      drivers/net/ethernet/ibm/ibmvnic.*
8672
8673 IBM Power Virtual Accelerator Switchboard
8674 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8675 L:      linuxppc-dev@lists.ozlabs.org
8676 S:      Supported
8677 F:      arch/powerpc/include/asm/vas.h
8678 F:      arch/powerpc/platforms/powernv/copy-paste.h
8679 F:      arch/powerpc/platforms/powernv/vas*
8680
8681 IBM Power Virtual Ethernet Device Driver
8682 M:      Cristobal Forno <cforno12@linux.ibm.com>
8683 L:      netdev@vger.kernel.org
8684 S:      Supported
8685 F:      drivers/net/ethernet/ibm/ibmveth.*
8686
8687 IBM Power Virtual FC Device Drivers
8688 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8689 L:      linux-scsi@vger.kernel.org
8690 S:      Supported
8691 F:      drivers/scsi/ibmvscsi/ibmvfc*
8692
8693 IBM Power Virtual Management Channel Driver
8694 M:      Brad Warrum <bwarrum@linux.ibm.com>
8695 M:      Ritu Agarwal <rituagar@linux.ibm.com>
8696 S:      Supported
8697 F:      drivers/misc/ibmvmc.*
8698
8699 IBM Power Virtual SCSI Device Drivers
8700 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8701 L:      linux-scsi@vger.kernel.org
8702 S:      Supported
8703 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8704 F:      include/scsi/viosrp.h
8705
8706 IBM Power Virtual SCSI Device Target Driver
8707 M:      Michael Cyr <mikecyr@linux.ibm.com>
8708 L:      linux-scsi@vger.kernel.org
8709 L:      target-devel@vger.kernel.org
8710 S:      Supported
8711 F:      drivers/scsi/ibmvscsi_tgt/
8712
8713 IBM Power VMX Cryptographic instructions
8714 M:      Breno Leitão <leitao@debian.org>
8715 M:      Nayna Jain <nayna@linux.ibm.com>
8716 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8717 L:      linux-crypto@vger.kernel.org
8718 S:      Supported
8719 F:      drivers/crypto/vmx/Kconfig
8720 F:      drivers/crypto/vmx/Makefile
8721 F:      drivers/crypto/vmx/aes*
8722 F:      drivers/crypto/vmx/ghash*
8723 F:      drivers/crypto/vmx/ppc-xlate.pl
8724 F:      drivers/crypto/vmx/vmx.c
8725
8726 IBM ServeRAID RAID DRIVER
8727 S:      Orphan
8728 F:      drivers/scsi/ips.*
8729
8730 ICH LPC AND GPIO DRIVER
8731 M:      Peter Tyser <ptyser@xes-inc.com>
8732 S:      Maintained
8733 F:      drivers/gpio/gpio-ich.c
8734 F:      drivers/mfd/lpc_ich.c
8735
8736 ICY I2C DRIVER
8737 M:      Max Staudt <max@enpas.org>
8738 L:      linux-i2c@vger.kernel.org
8739 S:      Maintained
8740 F:      drivers/i2c/busses/i2c-icy.c
8741
8742 IDE SUBSYSTEM
8743 M:      "David S. Miller" <davem@davemloft.net>
8744 L:      linux-ide@vger.kernel.org
8745 S:      Maintained
8746 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8748 F:      Documentation/ide/
8749 F:      drivers/ide/
8750 F:      include/linux/ide.h
8751
8752 IDE/ATAPI DRIVERS
8753 L:      linux-ide@vger.kernel.org
8754 S:      Orphan
8755 F:      Documentation/cdrom/ide-cd.rst
8756 F:      drivers/ide/ide-cd*
8757
8758 IDEAPAD LAPTOP EXTRAS DRIVER
8759 M:      Ike Panhc <ike.pan@canonical.com>
8760 L:      platform-driver-x86@vger.kernel.org
8761 S:      Maintained
8762 W:      http://launchpad.net/ideapad-laptop
8763 F:      drivers/platform/x86/ideapad-laptop.c
8764
8765 IDEAPAD LAPTOP SLIDEBAR DRIVER
8766 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
8767 L:      linux-input@vger.kernel.org
8768 S:      Maintained
8769 W:      https://github.com/o2genum/ideapad-slidebar
8770 F:      drivers/input/misc/ideapad_slidebar.c
8771
8772 IDT VersaClock 5 CLOCK DRIVER
8773 M:      Luca Ceresoli <luca@lucaceresoli.net>
8774 S:      Maintained
8775 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
8776 F:      drivers/clk/clk-versaclock5.c
8777
8778 IEEE 802.15.4 SUBSYSTEM
8779 M:      Alexander Aring <alex.aring@gmail.com>
8780 M:      Stefan Schmidt <stefan@datenfreihafen.org>
8781 L:      linux-wpan@vger.kernel.org
8782 S:      Maintained
8783 W:      https://linux-wpan.org/
8784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8786 F:      Documentation/networking/ieee802154.rst
8787 F:      drivers/net/ieee802154/
8788 F:      include/linux/ieee802154.h
8789 F:      include/linux/nl802154.h
8790 F:      include/net/af_ieee802154.h
8791 F:      include/net/cfg802154.h
8792 F:      include/net/ieee802154_netdev.h
8793 F:      include/net/mac802154.h
8794 F:      include/net/nl802154.h
8795 F:      net/ieee802154/
8796 F:      net/mac802154/
8797
8798 IFE PROTOCOL
8799 M:      Yotam Gigi <yotam.gi@gmail.com>
8800 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8801 F:      include/net/ife.h
8802 F:      include/uapi/linux/ife.h
8803 F:      net/ife
8804
8805 IGORPLUG-USB IR RECEIVER
8806 M:      Sean Young <sean@mess.org>
8807 L:      linux-media@vger.kernel.org
8808 S:      Maintained
8809 F:      drivers/media/rc/igorplugusb.c
8810
8811 IGUANAWORKS USB IR TRANSCEIVER
8812 M:      Sean Young <sean@mess.org>
8813 L:      linux-media@vger.kernel.org
8814 S:      Maintained
8815 F:      drivers/media/rc/iguanair.c
8816
8817 IIO DIGITAL POTENTIOMETER DAC
8818 M:      Peter Rosin <peda@axentia.se>
8819 L:      linux-iio@vger.kernel.org
8820 S:      Maintained
8821 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8822 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
8823 F:      drivers/iio/dac/dpot-dac.c
8824
8825 IIO ENVELOPE DETECTOR
8826 M:      Peter Rosin <peda@axentia.se>
8827 L:      linux-iio@vger.kernel.org
8828 S:      Maintained
8829 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8830 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
8831 F:      drivers/iio/adc/envelope-detector.c
8832
8833 IIO MULTIPLEXER
8834 M:      Peter Rosin <peda@axentia.se>
8835 L:      linux-iio@vger.kernel.org
8836 S:      Maintained
8837 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8838 F:      drivers/iio/multiplexer/iio-mux.c
8839
8840 IIO SCMI BASED DRIVER
8841 M:      Jyoti Bhayana <jbhayana@google.com>
8842 L:      linux-iio@vger.kernel.org
8843 S:      Maintained
8844 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
8845
8846 IIO SUBSYSTEM AND DRIVERS
8847 M:      Jonathan Cameron <jic23@kernel.org>
8848 R:      Lars-Peter Clausen <lars@metafoo.de>
8849 L:      linux-iio@vger.kernel.org
8850 S:      Maintained
8851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8852 F:      Documentation/ABI/testing/configfs-iio*
8853 F:      Documentation/ABI/testing/sysfs-bus-iio*
8854 F:      Documentation/devicetree/bindings/iio/
8855 F:      drivers/iio/
8856 F:      drivers/staging/iio/
8857 F:      include/linux/iio/
8858 F:      tools/iio/
8859
8860 IIO UNIT CONVERTER
8861 M:      Peter Rosin <peda@axentia.se>
8862 L:      linux-iio@vger.kernel.org
8863 S:      Maintained
8864 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
8865 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
8866 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
8867 F:      drivers/iio/afe/iio-rescale.c
8868
8869 IKANOS/ADI EAGLE ADSL USB DRIVER
8870 M:      Matthieu Castet <castet.matthieu@free.fr>
8871 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8872 S:      Maintained
8873 F:      drivers/usb/atm/ueagle-atm.c
8874
8875 IMGTEC ASCII LCD DRIVER
8876 M:      Paul Burton <paulburton@kernel.org>
8877 S:      Maintained
8878 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8879 F:      drivers/auxdisplay/img-ascii-lcd.c
8880
8881 IMGTEC IR DECODER DRIVER
8882 S:      Orphan
8883 F:      drivers/media/rc/img-ir/
8884
8885 IMON SOUNDGRAPH USB IR RECEIVER
8886 M:      Sean Young <sean@mess.org>
8887 L:      linux-media@vger.kernel.org
8888 S:      Maintained
8889 F:      drivers/media/rc/imon.c
8890 F:      drivers/media/rc/imon_raw.c
8891
8892 IMS TWINTURBO FRAMEBUFFER DRIVER
8893 L:      linux-fbdev@vger.kernel.org
8894 S:      Orphan
8895 F:      drivers/video/fbdev/imsttfb.c
8896
8897 INA209 HARDWARE MONITOR DRIVER
8898 M:      Guenter Roeck <linux@roeck-us.net>
8899 L:      linux-hwmon@vger.kernel.org
8900 S:      Maintained
8901 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
8902 F:      Documentation/hwmon/ina209.rst
8903 F:      drivers/hwmon/ina209.c
8904
8905 INA2XX HARDWARE MONITOR DRIVER
8906 M:      Guenter Roeck <linux@roeck-us.net>
8907 L:      linux-hwmon@vger.kernel.org
8908 S:      Maintained
8909 F:      Documentation/hwmon/ina2xx.rst
8910 F:      drivers/hwmon/ina2xx.c
8911 F:      include/linux/platform_data/ina2xx.h
8912
8913 INDUSTRY PACK SUBSYSTEM (IPACK)
8914 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8915 M:      Jens Taprogge <jens.taprogge@taprogge.org>
8916 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8917 L:      industrypack-devel@lists.sourceforge.net
8918 S:      Maintained
8919 W:      http://industrypack.sourceforge.net
8920 F:      drivers/ipack/
8921
8922 INFINEON DPS310 Driver
8923 M:      Eddie James <eajames@linux.ibm.com>
8924 L:      linux-iio@vger.kernel.org
8925 S:      Maintained
8926 F:      drivers/iio/pressure/dps310.c
8927
8928 INFINIBAND SUBSYSTEM
8929 M:      Doug Ledford <dledford@redhat.com>
8930 M:      Jason Gunthorpe <jgg@nvidia.com>
8931 L:      linux-rdma@vger.kernel.org
8932 S:      Supported
8933 W:      https://github.com/linux-rdma/rdma-core
8934 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8936 F:      Documentation/devicetree/bindings/infiniband/
8937 F:      Documentation/infiniband/
8938 F:      drivers/infiniband/
8939 F:      include/rdma/
8940 F:      include/trace/events/ib_mad.h
8941 F:      include/trace/events/ib_umad.h
8942 F:      include/uapi/linux/if_infiniband.h
8943 F:      include/uapi/rdma/
8944 F:      samples/bpf/ibumad_kern.c
8945 F:      samples/bpf/ibumad_user.c
8946
8947 INGENIC JZ4780 NAND DRIVER
8948 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
8949 L:      linux-mtd@lists.infradead.org
8950 L:      linux-mips@vger.kernel.org
8951 S:      Maintained
8952 F:      drivers/mtd/nand/raw/ingenic/
8953
8954 INGENIC JZ47xx SoCs
8955 M:      Paul Cercueil <paul@crapouillou.net>
8956 L:      linux-mips@vger.kernel.org
8957 S:      Maintained
8958 F:      arch/mips/boot/dts/ingenic/
8959 F:      arch/mips/generic/board-ingenic.c
8960 F:      arch/mips/include/asm/mach-ingenic/
8961 F:      arch/mips/ingenic/Kconfig
8962 F:      drivers/clk/ingenic/
8963 F:      drivers/dma/dma-jz4780.c
8964 F:      drivers/gpu/drm/ingenic/
8965 F:      drivers/i2c/busses/i2c-jz4780.c
8966 F:      drivers/iio/adc/ingenic-adc.c
8967 F:      drivers/irqchip/irq-ingenic.c
8968 F:      drivers/memory/jz4780-nemc.c
8969 F:      drivers/mmc/host/jz4740_mmc.c
8970 F:      drivers/mtd/nand/raw/ingenic/
8971 F:      drivers/pinctrl/pinctrl-ingenic.c
8972 F:      drivers/power/supply/ingenic-battery.c
8973 F:      drivers/pwm/pwm-jz4740.c
8974 F:      drivers/remoteproc/ingenic_rproc.c
8975 F:      drivers/rtc/rtc-jz4740.c
8976 F:      drivers/tty/serial/8250/8250_ingenic.c
8977 F:      drivers/usb/musb/jz4740.c
8978 F:      drivers/watchdog/jz4740_wdt.c
8979 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8980 F:      include/linux/mfd/ingenic-tcu.h
8981 F:      sound/soc/codecs/jz47*
8982 F:      sound/soc/jz4740/
8983
8984 INOTIFY
8985 M:      Jan Kara <jack@suse.cz>
8986 R:      Amir Goldstein <amir73il@gmail.com>
8987 L:      linux-fsdevel@vger.kernel.org
8988 S:      Maintained
8989 F:      Documentation/filesystems/inotify.rst
8990 F:      fs/notify/inotify/
8991 F:      include/linux/inotify.h
8992 F:      include/uapi/linux/inotify.h
8993
8994 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8995 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
8996 L:      linux-input@vger.kernel.org
8997 S:      Maintained
8998 Q:      http://patchwork.kernel.org/project/linux-input/list/
8999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9000 F:      Documentation/devicetree/bindings/input/
9001 F:      Documentation/devicetree/bindings/serio/
9002 F:      Documentation/input/
9003 F:      drivers/input/
9004 F:      include/linux/input.h
9005 F:      include/linux/input/
9006 F:      include/uapi/linux/input-event-codes.h
9007 F:      include/uapi/linux/input.h
9008
9009 INPUT MULTITOUCH (MT) PROTOCOL
9010 M:      Henrik Rydberg <rydberg@bitmath.org>
9011 L:      linux-input@vger.kernel.org
9012 S:      Odd fixes
9013 F:      Documentation/input/multi-touch-protocol.rst
9014 F:      drivers/input/input-mt.c
9015 K:      \b(ABS|SYN)_MT_
9016
9017 INSIDE SECURE CRYPTO DRIVER
9018 M:      Antoine Tenart <atenart@kernel.org>
9019 L:      linux-crypto@vger.kernel.org
9020 S:      Maintained
9021 F:      drivers/crypto/inside-secure/
9022
9023 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9024 M:      Mimi Zohar <zohar@linux.ibm.com>
9025 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9026 L:      linux-integrity@vger.kernel.org
9027 S:      Supported
9028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9029 F:      security/integrity/ima/
9030
9031 INTEL 810/815 FRAMEBUFFER DRIVER
9032 M:      Antonino Daplas <adaplas@gmail.com>
9033 L:      linux-fbdev@vger.kernel.org
9034 S:      Maintained
9035 F:      drivers/video/fbdev/i810/
9036
9037 INTEL ASoC DRIVERS
9038 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9039 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9040 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9041 M:      Jie Yang <yang.jie@linux.intel.com>
9042 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9043 S:      Supported
9044 F:      sound/soc/intel/
9045
9046 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9047 M:      Hans de Goede <hdegoede@redhat.com>
9048 L:      platform-driver-x86@vger.kernel.org
9049 S:      Maintained
9050 F:      drivers/platform/x86/intel_atomisp2_pm.c
9051
9052 INTEL ATOMISP2 LED DRIVER
9053 M:      Hans de Goede <hdegoede@redhat.com>
9054 L:      platform-driver-x86@vger.kernel.org
9055 S:      Maintained
9056 F:      drivers/platform/x86/intel_atomisp2_led.c
9057
9058 INTEL BROXTON PMC DRIVER
9059 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9060 M:      Zha Qipeng <qipeng.zha@intel.com>
9061 S:      Maintained
9062 F:      drivers/mfd/intel_pmc_bxt.c
9063 F:      include/linux/mfd/intel_pmc_bxt.h
9064
9065 INTEL C600 SERIES SAS CONTROLLER DRIVER
9066 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9067 L:      linux-scsi@vger.kernel.org
9068 S:      Supported
9069 T:      git git://git.code.sf.net/p/intel-sas/isci
9070 F:      drivers/scsi/isci/
9071
9072 INTEL CPU family model numbers
9073 M:      Tony Luck <tony.luck@intel.com>
9074 M:      x86@kernel.org
9075 L:      linux-kernel@vger.kernel.org
9076 S:      Supported
9077 F:      arch/x86/include/asm/intel-family.h
9078
9079 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9080 M:      Jani Nikula <jani.nikula@linux.intel.com>
9081 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9082 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9083 L:      intel-gfx@lists.freedesktop.org
9084 S:      Supported
9085 W:      https://01.org/linuxgraphics/
9086 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9087 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9088 C:      irc://chat.freenode.net/intel-gfx
9089 T:      git git://anongit.freedesktop.org/drm-intel
9090 F:      Documentation/gpu/i915.rst
9091 F:      drivers/gpu/drm/i915/
9092 F:      include/drm/i915*
9093 F:      include/uapi/drm/i915_drm.h
9094
9095 INTEL ETHERNET DRIVERS
9096 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9097 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9098 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9099 S:      Supported
9100 W:      http://www.intel.com/support/feedback.htm
9101 W:      http://e1000.sourceforge.net/
9102 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9105 F:      Documentation/networking/device_drivers/ethernet/intel/
9106 F:      drivers/net/ethernet/intel/
9107 F:      drivers/net/ethernet/intel/*/
9108 F:      include/linux/avf/virtchnl.h
9109
9110 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9111 M:      Maik Broemme <mbroemme@libmpq.org>
9112 L:      linux-fbdev@vger.kernel.org
9113 S:      Maintained
9114 F:      Documentation/fb/intelfb.rst
9115 F:      drivers/video/fbdev/intelfb/
9116
9117 INTEL GPIO DRIVERS
9118 M:      Andy Shevchenko <andy@kernel.org>
9119 L:      linux-gpio@vger.kernel.org
9120 S:      Maintained
9121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9122 F:      drivers/gpio/gpio-ich.c
9123 F:      drivers/gpio/gpio-merrifield.c
9124 F:      drivers/gpio/gpio-ml-ioh.c
9125 F:      drivers/gpio/gpio-pch.c
9126 F:      drivers/gpio/gpio-sch.c
9127 F:      drivers/gpio/gpio-sodaville.c
9128
9129 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9130 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9131 M:      Zhi Wang <zhi.a.wang@intel.com>
9132 L:      intel-gvt-dev@lists.freedesktop.org
9133 L:      intel-gfx@lists.freedesktop.org
9134 S:      Supported
9135 W:      https://01.org/igvt-g
9136 T:      git https://github.com/intel/gvt-linux.git
9137 F:      drivers/gpu/drm/i915/gvt/
9138
9139 INTEL HID EVENT DRIVER
9140 M:      Alex Hung <alex.hung@canonical.com>
9141 L:      platform-driver-x86@vger.kernel.org
9142 S:      Maintained
9143 F:      drivers/platform/x86/intel-hid.c
9144
9145 INTEL I/OAT DMA DRIVER
9146 M:      Dave Jiang <dave.jiang@intel.com>
9147 R:      Dan Williams <dan.j.williams@intel.com>
9148 L:      dmaengine@vger.kernel.org
9149 S:      Supported
9150 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9151 F:      drivers/dma/ioat*
9152
9153 INTEL IADX DRIVER
9154 M:      Dave Jiang <dave.jiang@intel.com>
9155 L:      dmaengine@vger.kernel.org
9156 S:      Supported
9157 F:      drivers/dma/idxd/*
9158 F:      include/uapi/linux/idxd.h
9159
9160 INTEL IDLE DRIVER
9161 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9162 M:      Len Brown <lenb@kernel.org>
9163 L:      linux-pm@vger.kernel.org
9164 S:      Supported
9165 B:      https://bugzilla.kernel.org
9166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9167 F:      drivers/idle/intel_idle.c
9168
9169 INTEL INTEGRATED SENSOR HUB DRIVER
9170 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9171 M:      Jiri Kosina <jikos@kernel.org>
9172 L:      linux-input@vger.kernel.org
9173 S:      Maintained
9174 F:      drivers/hid/intel-ish-hid/
9175
9176 INTEL IOMMU (VT-d)
9177 M:      David Woodhouse <dwmw2@infradead.org>
9178 M:      Lu Baolu <baolu.lu@linux.intel.com>
9179 L:      iommu@lists.linux-foundation.org
9180 S:      Supported
9181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9182 F:      drivers/iommu/intel/
9183 F:      include/linux/intel-iommu.h
9184 F:      include/linux/intel-svm.h
9185
9186 INTEL IOP-ADMA DMA DRIVER
9187 R:      Dan Williams <dan.j.williams@intel.com>
9188 S:      Odd fixes
9189 F:      drivers/dma/iop-adma.c
9190
9191 INTEL IPU3 CSI-2 CIO2 DRIVER
9192 M:      Yong Zhi <yong.zhi@intel.com>
9193 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9194 M:      Bingbu Cao <bingbu.cao@intel.com>
9195 M:      Dan Scally <djrscally@gmail.com>
9196 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9197 L:      linux-media@vger.kernel.org
9198 S:      Maintained
9199 T:      git git://linuxtv.org/media_tree.git
9200 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9201 F:      drivers/media/pci/intel/ipu3/
9202
9203 INTEL IPU3 CSI-2 IMGU DRIVER
9204 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9205 R:      Bingbu Cao <bingbu.cao@intel.com>
9206 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9207 L:      linux-media@vger.kernel.org
9208 S:      Maintained
9209 F:      Documentation/admin-guide/media/ipu3.rst
9210 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9211 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9212 F:      drivers/staging/media/ipu3/
9213
9214 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9215 M:      Krzysztof Halasa <khalasa@piap.pl>
9216 S:      Maintained
9217 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9218 F:      drivers/net/wan/ixp4xx_hss.c
9219 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9220 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9221 F:      include/linux/soc/ixp4xx/npe.h
9222 F:      include/linux/soc/ixp4xx/qmgr.h
9223
9224 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9225 M:      Deepak Saxena <dsaxena@plexity.net>
9226 S:      Maintained
9227 F:      drivers/char/hw_random/ixp4xx-rng.c
9228
9229 INTEL KEEM BAY DRM DRIVER
9230 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9231 M:      Edmund Dea <edmund.j.dea@intel.com>
9232 S:      Maintained
9233 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9234 F:      drivers/gpu/drm/kmb/
9235
9236 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9237 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9238 S:      Maintained
9239 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9240 F:      drivers/crypto/keembay/Kconfig
9241 F:      drivers/crypto/keembay/Makefile
9242 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9243 F:      drivers/crypto/keembay/ocs-aes.c
9244 F:      drivers/crypto/keembay/ocs-aes.h
9245
9246 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9247 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9248 M:      Declan Murphy <declan.murphy@intel.com>
9249 S:      Maintained
9250 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9251 F:      drivers/crypto/keembay/Kconfig
9252 F:      drivers/crypto/keembay/Makefile
9253 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9254 F:      drivers/crypto/keembay/ocs-hcu.c
9255 F:      drivers/crypto/keembay/ocs-hcu.h
9256
9257 INTEL MANAGEMENT ENGINE (mei)
9258 M:      Tomas Winkler <tomas.winkler@intel.com>
9259 L:      linux-kernel@vger.kernel.org
9260 S:      Supported
9261 F:      Documentation/driver-api/mei/*
9262 F:      drivers/misc/mei/
9263 F:      drivers/watchdog/mei_wdt.c
9264 F:      include/linux/mei_cl_bus.h
9265 F:      include/uapi/linux/mei.h
9266 F:      samples/mei/*
9267
9268 INTEL MAX 10 BMC MFD DRIVER
9269 M:      Xu Yilun <yilun.xu@intel.com>
9270 R:      Tom Rix <trix@redhat.com>
9271 S:      Maintained
9272 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9273 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9274 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9275 F:      drivers/mfd/intel-m10-bmc.c
9276 F:      include/linux/mfd/intel-m10-bmc.h
9277
9278 INTEL MAX 10 BMC MFD DRIVER
9279 M:      Xu Yilun <yilun.xu@intel.com>
9280 R:      Tom Rix <trix@redhat.com>
9281 S:      Maintained
9282 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9283 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9284 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9285 F:      drivers/mfd/intel-m10-bmc.c
9286 F:      include/linux/mfd/intel-m10-bmc.h
9287
9288 INTEL MENLOW THERMAL DRIVER
9289 M:      Sujith Thomas <sujith.thomas@intel.com>
9290 L:      platform-driver-x86@vger.kernel.org
9291 S:      Supported
9292 W:      https://01.org/linux-acpi
9293 F:      drivers/platform/x86/intel_menlow.c
9294
9295 INTEL P-Unit IPC DRIVER
9296 M:      Zha Qipeng <qipeng.zha@intel.com>
9297 L:      platform-driver-x86@vger.kernel.org
9298 S:      Maintained
9299 F:      arch/x86/include/asm/intel_punit_ipc.h
9300 F:      drivers/platform/x86/intel_punit_ipc.c
9301
9302 INTEL PMC CORE DRIVER
9303 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9304 M:      David E Box <david.e.box@intel.com>
9305 L:      platform-driver-x86@vger.kernel.org
9306 S:      Maintained
9307 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
9308 F:      drivers/platform/x86/intel_pmc_core*
9309
9310 INTEL PMIC GPIO DRIVERS
9311 M:      Andy Shevchenko <andy@kernel.org>
9312 S:      Maintained
9313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9314 F:      drivers/gpio/gpio-*cove.c
9315
9316 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9317 M:      Andy Shevchenko <andy@kernel.org>
9318 S:      Maintained
9319 F:      drivers/mfd/intel_soc_pmic*
9320 F:      include/linux/mfd/intel_soc_pmic*
9321
9322 INTEL PMT DRIVER
9323 M:      "David E. Box" <david.e.box@linux.intel.com>
9324 S:      Maintained
9325 F:      drivers/mfd/intel_pmt.c
9326 F:      drivers/platform/x86/intel_pmt_*
9327
9328 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9329 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9330 L:      linux-wireless@vger.kernel.org
9331 S:      Maintained
9332 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9333 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9334 F:      drivers/net/wireless/intel/ipw2x00/
9335
9336 INTEL PSTATE DRIVER
9337 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9338 M:      Len Brown <lenb@kernel.org>
9339 L:      linux-pm@vger.kernel.org
9340 S:      Supported
9341 F:      drivers/cpufreq/intel_pstate.c
9342
9343 INTEL RDMA RNIC DRIVER
9344 M:      Faisal Latif <faisal.latif@intel.com>
9345 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9346 L:      linux-rdma@vger.kernel.org
9347 S:      Supported
9348 F:      drivers/infiniband/hw/i40iw/
9349 F:      include/uapi/rdma/i40iw-abi.h
9350
9351 INTEL SCU DRIVERS
9352 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9353 S:      Maintained
9354 F:      arch/x86/include/asm/intel_scu_ipc.h
9355 F:      drivers/platform/x86/intel_scu_*
9356
9357 INTEL SPEED SELECT TECHNOLOGY
9358 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9359 L:      platform-driver-x86@vger.kernel.org
9360 S:      Maintained
9361 F:      drivers/platform/x86/intel_speed_select_if/
9362 F:      include/uapi/linux/isst_if.h
9363 F:      tools/power/x86/intel-speed-select/
9364
9365 INTEL STRATIX10 FIRMWARE DRIVERS
9366 M:      Richard Gong <richard.gong@linux.intel.com>
9367 L:      linux-kernel@vger.kernel.org
9368 S:      Maintained
9369 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9370 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9371 F:      drivers/firmware/stratix10-rsu.c
9372 F:      drivers/firmware/stratix10-svc.c
9373 F:      include/linux/firmware/intel/stratix10-smc.h
9374 F:      include/linux/firmware/intel/stratix10-svc-client.h
9375
9376 INTEL TELEMETRY DRIVER
9377 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
9378 M:      "David E. Box" <david.e.box@linux.intel.com>
9379 L:      platform-driver-x86@vger.kernel.org
9380 S:      Maintained
9381 F:      arch/x86/include/asm/intel_telemetry.h
9382 F:      drivers/platform/x86/intel_telemetry*
9383
9384 INTEL UNCORE FREQUENCY CONTROL
9385 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9386 L:      platform-driver-x86@vger.kernel.org
9387 S:      Maintained
9388 F:      drivers/platform/x86/intel-uncore-frequency.c
9389
9390 INTEL VIRTUAL BUTTON DRIVER
9391 M:      AceLan Kao <acelan.kao@canonical.com>
9392 L:      platform-driver-x86@vger.kernel.org
9393 S:      Maintained
9394 F:      drivers/platform/x86/intel-vbtn.c
9395
9396 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9397 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9398 L:      linux-wireless@vger.kernel.org
9399 S:      Supported
9400 F:      drivers/net/wireless/intel/iwlegacy/
9401
9402 INTEL WIRELESS WIFI LINK (iwlwifi)
9403 M:      Luca Coelho <luciano.coelho@intel.com>
9404 L:      linux-wireless@vger.kernel.org
9405 S:      Supported
9406 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9408 F:      drivers/net/wireless/intel/iwlwifi/
9409
9410 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9411 M:      Jithu Joseph <jithu.joseph@intel.com>
9412 R:      Maurice Ma <maurice.ma@intel.com>
9413 S:      Maintained
9414 W:      https://slimbootloader.github.io/security/firmware-update.html
9415 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
9416
9417 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9418 L:      Dell.Client.Kernel@dell.com
9419 S:      Maintained
9420 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
9421
9422 INTEL(R) TRACE HUB
9423 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9424 S:      Supported
9425 F:      Documentation/trace/intel_th.rst
9426 F:      drivers/hwtracing/intel_th/
9427 F:      include/linux/intel_th.h
9428
9429 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9430 M:      Ning Sun <ning.sun@intel.com>
9431 L:      tboot-devel@lists.sourceforge.net
9432 S:      Supported
9433 W:      http://tboot.sourceforge.net
9434 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9435 F:      Documentation/x86/intel_txt.rst
9436 F:      arch/x86/kernel/tboot.c
9437 F:      include/linux/tboot.h
9438
9439 INTEL SGX
9440 M:      Jarkko Sakkinen <jarkko@kernel.org>
9441 R:      Dave Hansen <dave.hansen@linux.intel.com>
9442 L:      linux-sgx@vger.kernel.org
9443 S:      Supported
9444 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9446 F:      Documentation/x86/sgx.rst
9447 F:      arch/x86/entry/vdso/vsgx.S
9448 F:      arch/x86/include/asm/sgx.h
9449 F:      arch/x86/include/uapi/asm/sgx.h
9450 F:      arch/x86/kernel/cpu/sgx/*
9451 F:      tools/testing/selftests/sgx/*
9452 K:      \bSGX_
9453
9454 INTERCONNECT API
9455 M:      Georgi Djakov <djakov@kernel.org>
9456 L:      linux-pm@vger.kernel.org
9457 S:      Maintained
9458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
9459 F:      Documentation/devicetree/bindings/interconnect/
9460 F:      Documentation/driver-api/interconnect.rst
9461 F:      drivers/interconnect/
9462 F:      include/dt-bindings/interconnect/
9463 F:      include/linux/interconnect-provider.h
9464 F:      include/linux/interconnect.h
9465
9466 INTERRUPT COUNTER DRIVER
9467 M:      Oleksij Rempel <o.rempel@pengutronix.de>
9468 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
9469 L:      linux-iio@vger.kernel.org
9470 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
9471 F:      drivers/counter/interrupt-cnt.c
9472
9473 INVENSENSE ICM-426xx IMU DRIVER
9474 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9475 L:      linux-iio@vger.kernel.org
9476 S:      Maintained
9477 W:      https://invensense.tdk.com/
9478 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9479 F:      drivers/iio/imu/inv_icm42600/
9480
9481 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9482 M:      Linus Walleij <linus.walleij@linaro.org>
9483 L:      linux-iio@vger.kernel.org
9484 S:      Maintained
9485 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
9486 F:      drivers/iio/gyro/mpu3050*
9487
9488 IOC3 ETHERNET DRIVER
9489 M:      Ralf Baechle <ralf@linux-mips.org>
9490 L:      linux-mips@vger.kernel.org
9491 S:      Maintained
9492 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9493
9494 IOMAP FILESYSTEM LIBRARY
9495 M:      Christoph Hellwig <hch@infradead.org>
9496 M:      Darrick J. Wong <djwong@kernel.org>
9497 M:      linux-xfs@vger.kernel.org
9498 M:      linux-fsdevel@vger.kernel.org
9499 L:      linux-xfs@vger.kernel.org
9500 L:      linux-fsdevel@vger.kernel.org
9501 S:      Supported
9502 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9503 F:      fs/iomap/
9504 F:      include/linux/iomap.h
9505
9506 IOMMU DRIVERS
9507 M:      Joerg Roedel <joro@8bytes.org>
9508 M:      Will Deacon <will@kernel.org>
9509 L:      iommu@lists.linux-foundation.org
9510 S:      Maintained
9511 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9512 F:      Documentation/devicetree/bindings/iommu/
9513 F:      Documentation/userspace-api/iommu.rst
9514 F:      drivers/iommu/
9515 F:      include/linux/iommu.h
9516 F:      include/linux/iova.h
9517 F:      include/linux/of_iommu.h
9518 F:      include/uapi/linux/iommu.h
9519
9520 IO_URING
9521 M:      Jens Axboe <axboe@kernel.dk>
9522 R:      Pavel Begunkov <asml.silence@gmail.com>
9523 L:      io-uring@vger.kernel.org
9524 S:      Maintained
9525 T:      git git://git.kernel.dk/linux-block
9526 T:      git git://git.kernel.dk/liburing
9527 F:      fs/io-wq.c
9528 F:      fs/io-wq.h
9529 F:      fs/io_uring.c
9530 F:      include/linux/io_uring.h
9531 F:      include/uapi/linux/io_uring.h
9532
9533 IPMI SUBSYSTEM
9534 M:      Corey Minyard <minyard@acm.org>
9535 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9536 S:      Supported
9537 W:      http://openipmi.sourceforge.net/
9538 F:      Documentation/driver-api/ipmi.rst
9539 F:      Documentation/devicetree/bindings/ipmi/
9540 F:      drivers/char/ipmi/
9541 F:      include/linux/ipmi*
9542 F:      include/uapi/linux/ipmi*
9543
9544 IPS SCSI RAID DRIVER
9545 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9546 L:      linux-scsi@vger.kernel.org
9547 S:      Maintained
9548 W:      http://www.adaptec.com/
9549 F:      drivers/scsi/ips*
9550
9551 IPVS
9552 M:      Simon Horman <horms@verge.net.au>
9553 M:      Julian Anastasov <ja@ssi.bg>
9554 L:      netdev@vger.kernel.org
9555 L:      lvs-devel@vger.kernel.org
9556 S:      Maintained
9557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9559 F:      Documentation/networking/ipvs-sysctl.rst
9560 F:      include/net/ip_vs.h
9561 F:      include/uapi/linux/ip_vs.h
9562 F:      net/netfilter/ipvs/
9563
9564 IPWIRELESS DRIVER
9565 M:      Jiri Kosina <jikos@kernel.org>
9566 M:      David Sterba <dsterba@suse.com>
9567 S:      Odd Fixes
9568 F:      drivers/tty/ipwireless/
9569
9570 IPX NETWORK LAYER
9571 L:      netdev@vger.kernel.org
9572 S:      Obsolete
9573 F:      include/uapi/linux/ipx.h
9574
9575 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9576 M:      Marc Zyngier <maz@kernel.org>
9577 S:      Maintained
9578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9579 F:      Documentation/core-api/irq/irq-domain.rst
9580 F:      include/linux/irqdomain.h
9581 F:      kernel/irq/irqdomain.c
9582 F:      kernel/irq/msi.c
9583
9584 IRQ SUBSYSTEM
9585 M:      Thomas Gleixner <tglx@linutronix.de>
9586 L:      linux-kernel@vger.kernel.org
9587 S:      Maintained
9588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9589 F:      kernel/irq/
9590
9591 IRQCHIP DRIVERS
9592 M:      Thomas Gleixner <tglx@linutronix.de>
9593 M:      Marc Zyngier <maz@kernel.org>
9594 L:      linux-kernel@vger.kernel.org
9595 S:      Maintained
9596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9597 F:      Documentation/devicetree/bindings/interrupt-controller/
9598 F:      drivers/irqchip/
9599
9600 ISA
9601 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9602 S:      Maintained
9603 F:      Documentation/driver-api/isa.rst
9604 F:      drivers/base/isa.c
9605 F:      include/linux/isa.h
9606
9607 ISA RADIO MODULE
9608 M:      Hans Verkuil <hverkuil@xs4all.nl>
9609 L:      linux-media@vger.kernel.org
9610 S:      Maintained
9611 W:      https://linuxtv.org
9612 T:      git git://linuxtv.org/media_tree.git
9613 F:      drivers/media/radio/radio-isa*
9614
9615 ISAPNP
9616 M:      Jaroslav Kysela <perex@perex.cz>
9617 S:      Maintained
9618 F:      Documentation/driver-api/isapnp.rst
9619 F:      drivers/pnp/isapnp/
9620 F:      include/linux/isapnp.h
9621
9622 ISCSI
9623 M:      Lee Duncan <lduncan@suse.com>
9624 M:      Chris Leech <cleech@redhat.com>
9625 L:      open-iscsi@googlegroups.com
9626 L:      linux-scsi@vger.kernel.org
9627 S:      Maintained
9628 W:      www.open-iscsi.com
9629 F:      drivers/scsi/*iscsi*
9630 F:      include/scsi/*iscsi*
9631
9632 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9633 M:      Peter Jones <pjones@redhat.com>
9634 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9635 S:      Maintained
9636 F:      drivers/firmware/iscsi_ibft*
9637
9638 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9639 M:      Sagi Grimberg <sagi@grimberg.me>
9640 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
9641 L:      linux-rdma@vger.kernel.org
9642 S:      Supported
9643 W:      http://www.openfabrics.org
9644 W:      www.open-iscsi.org
9645 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9646 F:      drivers/infiniband/ulp/iser/
9647
9648 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9649 M:      Sagi Grimberg <sagi@grimberg.me>
9650 L:      linux-rdma@vger.kernel.org
9651 L:      target-devel@vger.kernel.org
9652 S:      Supported
9653 W:      http://www.linux-iscsi.org
9654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9655 F:      drivers/infiniband/ulp/isert
9656
9657 ISDN/CMTP OVER BLUETOOTH
9658 M:      Karsten Keil <isdn@linux-pingi.de>
9659 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9660 L:      netdev@vger.kernel.org
9661 S:      Odd Fixes
9662 W:      http://www.isdn4linux.de
9663 F:      Documentation/isdn/
9664 F:      drivers/isdn/capi/
9665 F:      include/linux/isdn/
9666 F:      include/uapi/linux/isdn/
9667 F:      net/bluetooth/cmtp/
9668
9669 ISDN/mISDN SUBSYSTEM
9670 M:      Karsten Keil <isdn@linux-pingi.de>
9671 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9672 L:      netdev@vger.kernel.org
9673 S:      Maintained
9674 W:      http://www.isdn4linux.de
9675 F:      drivers/isdn/Kconfig
9676 F:      drivers/isdn/Makefile
9677 F:      drivers/isdn/hardware/
9678 F:      drivers/isdn/mISDN/
9679
9680 IT87 HARDWARE MONITORING DRIVER
9681 M:      Jean Delvare <jdelvare@suse.com>
9682 L:      linux-hwmon@vger.kernel.org
9683 S:      Maintained
9684 F:      Documentation/hwmon/it87.rst
9685 F:      drivers/hwmon/it87.c
9686
9687 IT913X MEDIA DRIVER
9688 M:      Antti Palosaari <crope@iki.fi>
9689 L:      linux-media@vger.kernel.org
9690 S:      Maintained
9691 W:      https://linuxtv.org
9692 W:      http://palosaari.fi/linux/
9693 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9694 T:      git git://linuxtv.org/anttip/media_tree.git
9695 F:      drivers/media/tuners/it913x*
9696
9697 IVTV VIDEO4LINUX DRIVER
9698 M:      Andy Walls <awalls@md.metrocast.net>
9699 L:      linux-media@vger.kernel.org
9700 S:      Maintained
9701 W:      https://linuxtv.org
9702 T:      git git://linuxtv.org/media_tree.git
9703 F:      Documentation/admin-guide/media/ivtv*
9704 F:      drivers/media/pci/ivtv/
9705 F:      include/uapi/linux/ivtv*
9706
9707 IX2505V MEDIA DRIVER
9708 M:      Malcolm Priestley <tvboxspy@gmail.com>
9709 L:      linux-media@vger.kernel.org
9710 S:      Maintained
9711 W:      https://linuxtv.org
9712 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9713 F:      drivers/media/dvb-frontends/ix2505v*
9714
9715 JAILHOUSE HYPERVISOR INTERFACE
9716 M:      Jan Kiszka <jan.kiszka@siemens.com>
9717 L:      jailhouse-dev@googlegroups.com
9718 S:      Maintained
9719 F:      arch/x86/include/asm/jailhouse_para.h
9720 F:      arch/x86/kernel/jailhouse.c
9721
9722 JC42.4 TEMPERATURE SENSOR DRIVER
9723 M:      Guenter Roeck <linux@roeck-us.net>
9724 L:      linux-hwmon@vger.kernel.org
9725 S:      Maintained
9726 F:      Documentation/hwmon/jc42.rst
9727 F:      drivers/hwmon/jc42.c
9728
9729 JFS FILESYSTEM
9730 M:      Dave Kleikamp <shaggy@kernel.org>
9731 L:      jfs-discussion@lists.sourceforge.net
9732 S:      Maintained
9733 W:      http://jfs.sourceforge.net/
9734 T:      git git://github.com/kleikamp/linux-shaggy.git
9735 F:      Documentation/admin-guide/jfs.rst
9736 F:      fs/jfs/
9737
9738 JME NETWORK DRIVER
9739 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
9740 L:      netdev@vger.kernel.org
9741 S:      Maintained
9742 F:      drivers/net/ethernet/jme.*
9743
9744 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9745 M:      David Woodhouse <dwmw2@infradead.org>
9746 M:      Richard Weinberger <richard@nod.at>
9747 L:      linux-mtd@lists.infradead.org
9748 S:      Odd Fixes
9749 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9750 T:      git git://git.infradead.org/ubifs-2.6.git
9751 F:      fs/jffs2/
9752 F:      include/uapi/linux/jffs2.h
9753
9754 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9755 M:      "Theodore Ts'o" <tytso@mit.edu>
9756 M:      Jan Kara <jack@suse.com>
9757 L:      linux-ext4@vger.kernel.org
9758 S:      Maintained
9759 F:      fs/jbd2/
9760 F:      include/linux/jbd2.h
9761
9762 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9763 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9764 L:      linux-media@vger.kernel.org
9765 S:      Maintained
9766 F:      drivers/media/platform/rcar_jpu.c
9767
9768 JSM Neo PCI based serial card
9769 L:      linux-serial@vger.kernel.org
9770 S:      Orphan
9771 F:      drivers/tty/serial/jsm/
9772
9773 K10TEMP HARDWARE MONITORING DRIVER
9774 M:      Clemens Ladisch <clemens@ladisch.de>
9775 L:      linux-hwmon@vger.kernel.org
9776 S:      Maintained
9777 F:      Documentation/hwmon/k10temp.rst
9778 F:      drivers/hwmon/k10temp.c
9779
9780 K8TEMP HARDWARE MONITORING DRIVER
9781 M:      Rudolf Marek <r.marek@assembler.cz>
9782 L:      linux-hwmon@vger.kernel.org
9783 S:      Maintained
9784 F:      Documentation/hwmon/k8temp.rst
9785 F:      drivers/hwmon/k8temp.c
9786
9787 KASAN
9788 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
9789 R:      Alexander Potapenko <glider@google.com>
9790 R:      Andrey Konovalov <andreyknvl@gmail.com>
9791 R:      Dmitry Vyukov <dvyukov@google.com>
9792 L:      kasan-dev@googlegroups.com
9793 S:      Maintained
9794 F:      Documentation/dev-tools/kasan.rst
9795 F:      arch/*/include/asm/*kasan.h
9796 F:      arch/*/mm/kasan_init*
9797 F:      include/linux/kasan*.h
9798 F:      lib/Kconfig.kasan
9799 F:      lib/test_kasan*.c
9800 F:      mm/kasan/
9801 F:      scripts/Makefile.kasan
9802
9803 KCONFIG
9804 M:      Masahiro Yamada <masahiroy@kernel.org>
9805 L:      linux-kbuild@vger.kernel.org
9806 S:      Maintained
9807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9808 F:      Documentation/kbuild/kconfig*
9809 F:      scripts/Kconfig.include
9810 F:      scripts/kconfig/
9811
9812 KCOV
9813 R:      Dmitry Vyukov <dvyukov@google.com>
9814 R:      Andrey Konovalov <andreyknvl@gmail.com>
9815 L:      kasan-dev@googlegroups.com
9816 S:      Maintained
9817 F:      Documentation/dev-tools/kcov.rst
9818 F:      include/linux/kcov.h
9819 F:      include/uapi/linux/kcov.h
9820 F:      kernel/kcov.c
9821 F:      scripts/Makefile.kcov
9822
9823 KCSAN
9824 M:      Marco Elver <elver@google.com>
9825 R:      Dmitry Vyukov <dvyukov@google.com>
9826 L:      kasan-dev@googlegroups.com
9827 S:      Maintained
9828 F:      Documentation/dev-tools/kcsan.rst
9829 F:      include/linux/kcsan*.h
9830 F:      kernel/kcsan/
9831 F:      lib/Kconfig.kcsan
9832 F:      scripts/Makefile.kcsan
9833
9834 KDUMP
9835 M:      Dave Young <dyoung@redhat.com>
9836 M:      Baoquan He <bhe@redhat.com>
9837 R:      Vivek Goyal <vgoyal@redhat.com>
9838 L:      kexec@lists.infradead.org
9839 S:      Maintained
9840 W:      http://lse.sourceforge.net/kdump/
9841 F:      Documentation/admin-guide/kdump/
9842 F:      fs/proc/vmcore.c
9843 F:      include/linux/crash_core.h
9844 F:      include/linux/crash_dump.h
9845 F:      include/uapi/linux/vmcore.h
9846 F:      kernel/crash_*.c
9847
9848 KEENE FM RADIO TRANSMITTER DRIVER
9849 M:      Hans Verkuil <hverkuil@xs4all.nl>
9850 L:      linux-media@vger.kernel.org
9851 S:      Maintained
9852 W:      https://linuxtv.org
9853 T:      git git://linuxtv.org/media_tree.git
9854 F:      drivers/media/radio/radio-keene*
9855
9856 KERNEL AUTOMOUNTER
9857 M:      Ian Kent <raven@themaw.net>
9858 L:      autofs@vger.kernel.org
9859 S:      Maintained
9860 F:      fs/autofs/
9861
9862 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9863 M:      Masahiro Yamada <masahiroy@kernel.org>
9864 M:      Michal Marek <michal.lkml@markovi.net>
9865 L:      linux-kbuild@vger.kernel.org
9866 S:      Maintained
9867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9868 F:      Documentation/kbuild/
9869 F:      Makefile
9870 F:      scripts/*vmlinux*
9871 F:      scripts/Kbuild*
9872 F:      scripts/Makefile*
9873 F:      scripts/basic/
9874 F:      scripts/dummy-tools/
9875 F:      scripts/mk*
9876 F:      scripts/mod/
9877 F:      scripts/package/
9878
9879 KERNEL JANITORS
9880 L:      kernel-janitors@vger.kernel.org
9881 S:      Odd Fixes
9882 W:      http://kernelnewbies.org/KernelJanitors
9883
9884 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9885 M:      "J. Bruce Fields" <bfields@fieldses.org>
9886 M:      Chuck Lever <chuck.lever@oracle.com>
9887 L:      linux-nfs@vger.kernel.org
9888 S:      Supported
9889 W:      http://nfs.sourceforge.net/
9890 T:      git git://linux-nfs.org/~bfields/linux.git
9891 F:      fs/lockd/
9892 F:      fs/nfs_common/
9893 F:      fs/nfsd/
9894 F:      include/linux/lockd/
9895 F:      include/linux/sunrpc/
9896 F:      include/uapi/linux/nfsd/
9897 F:      include/uapi/linux/sunrpc/
9898 F:      net/sunrpc/
9899 F:      Documentation/filesystems/nfs/
9900
9901 KERNEL REGRESSIONS
9902 M:      Thorsten Leemhuis <linux@leemhuis.info>
9903 L:      regressions@lists.linux.dev
9904 S:      Supported
9905
9906 KERNEL SELFTEST FRAMEWORK
9907 M:      Shuah Khan <shuah@kernel.org>
9908 M:      Shuah Khan <skhan@linuxfoundation.org>
9909 L:      linux-kselftest@vger.kernel.org
9910 S:      Maintained
9911 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9913 F:      Documentation/dev-tools/kselftest*
9914 F:      tools/testing/selftests/
9915
9916 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9917 M:      Brendan Higgins <brendanhiggins@google.com>
9918 L:      linux-kselftest@vger.kernel.org
9919 L:      kunit-dev@googlegroups.com
9920 S:      Maintained
9921 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9922 F:      Documentation/dev-tools/kunit/
9923 F:      include/kunit/
9924 F:      lib/kunit/
9925 F:      tools/testing/kunit/
9926
9927 KERNEL USERMODE HELPER
9928 M:      Luis Chamberlain <mcgrof@kernel.org>
9929 L:      linux-kernel@vger.kernel.org
9930 S:      Maintained
9931 F:      include/linux/umh.h
9932 F:      kernel/umh.c
9933
9934 KERNEL VIRTUAL MACHINE (KVM)
9935 M:      Paolo Bonzini <pbonzini@redhat.com>
9936 L:      kvm@vger.kernel.org
9937 S:      Supported
9938 W:      http://www.linux-kvm.org
9939 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9940 F:      Documentation/virt/kvm/
9941 F:      include/asm-generic/kvm*
9942 F:      include/kvm/iodev.h
9943 F:      include/linux/kvm*
9944 F:      include/trace/events/kvm.h
9945 F:      include/uapi/asm-generic/kvm*
9946 F:      include/uapi/linux/kvm*
9947 F:      tools/kvm/
9948 F:      tools/testing/selftests/kvm/
9949 F:      virt/kvm/*
9950
9951 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9952 M:      Marc Zyngier <maz@kernel.org>
9953 R:      James Morse <james.morse@arm.com>
9954 R:      Alexandru Elisei <alexandru.elisei@arm.com>
9955 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
9956 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9957 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
9958 S:      Maintained
9959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9960 F:      arch/arm64/include/asm/kvm*
9961 F:      arch/arm64/include/uapi/asm/kvm*
9962 F:      arch/arm64/kvm/
9963 F:      include/kvm/arm_*
9964
9965 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9966 M:      Huacai Chen <chenhuacai@kernel.org>
9967 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
9968 L:      linux-mips@vger.kernel.org
9969 L:      kvm@vger.kernel.org
9970 S:      Maintained
9971 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9972 F:      arch/mips/include/asm/kvm*
9973 F:      arch/mips/include/uapi/asm/kvm*
9974 F:      arch/mips/kvm/
9975
9976 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9977 M:      Paul Mackerras <paulus@ozlabs.org>
9978 L:      kvm-ppc@vger.kernel.org
9979 S:      Supported
9980 W:      http://www.linux-kvm.org/
9981 T:      git git://github.com/agraf/linux-2.6.git
9982 F:      arch/powerpc/include/asm/kvm*
9983 F:      arch/powerpc/include/uapi/asm/kvm*
9984 F:      arch/powerpc/kernel/kvm*
9985 F:      arch/powerpc/kvm/
9986
9987 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9988 M:      Christian Borntraeger <borntraeger@de.ibm.com>
9989 M:      Janosch Frank <frankja@linux.ibm.com>
9990 R:      David Hildenbrand <david@redhat.com>
9991 R:      Cornelia Huck <cohuck@redhat.com>
9992 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
9993 L:      kvm@vger.kernel.org
9994 S:      Supported
9995 W:      http://www.ibm.com/developerworks/linux/linux390/
9996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9997 F:      Documentation/virt/kvm/s390*
9998 F:      arch/s390/include/asm/gmap.h
9999 F:      arch/s390/include/asm/kvm*
10000 F:      arch/s390/include/uapi/asm/kvm*
10001 F:      arch/s390/kernel/uv.c
10002 F:      arch/s390/kvm/
10003 F:      arch/s390/mm/gmap.c
10004 F:      tools/testing/selftests/kvm/*/s390x/
10005 F:      tools/testing/selftests/kvm/s390x/
10006
10007 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10008 M:      Paolo Bonzini <pbonzini@redhat.com>
10009 R:      Sean Christopherson <seanjc@google.com>
10010 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10011 R:      Wanpeng Li <wanpengli@tencent.com>
10012 R:      Jim Mattson <jmattson@google.com>
10013 R:      Joerg Roedel <joro@8bytes.org>
10014 L:      kvm@vger.kernel.org
10015 S:      Supported
10016 W:      http://www.linux-kvm.org
10017 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10018 F:      arch/x86/include/asm/kvm*
10019 F:      arch/x86/include/asm/pvclock-abi.h
10020 F:      arch/x86/include/asm/svm.h
10021 F:      arch/x86/include/asm/vmx*.h
10022 F:      arch/x86/include/uapi/asm/kvm*
10023 F:      arch/x86/include/uapi/asm/svm.h
10024 F:      arch/x86/include/uapi/asm/vmx.h
10025 F:      arch/x86/kernel/kvm.c
10026 F:      arch/x86/kernel/kvmclock.c
10027 F:      arch/x86/kvm/
10028 F:      arch/x86/kvm/*/
10029
10030 KERNFS
10031 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10032 M:      Tejun Heo <tj@kernel.org>
10033 S:      Supported
10034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10035 F:      fs/kernfs/
10036 F:      include/linux/kernfs.h
10037
10038 KEXEC
10039 M:      Eric Biederman <ebiederm@xmission.com>
10040 L:      kexec@lists.infradead.org
10041 S:      Maintained
10042 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10043 F:      include/linux/kexec.h
10044 F:      include/uapi/linux/kexec.h
10045 F:      kernel/kexec*
10046
10047 KEYS-ENCRYPTED
10048 M:      Mimi Zohar <zohar@linux.ibm.com>
10049 L:      linux-integrity@vger.kernel.org
10050 L:      keyrings@vger.kernel.org
10051 S:      Supported
10052 F:      Documentation/security/keys/trusted-encrypted.rst
10053 F:      include/keys/encrypted-type.h
10054 F:      security/keys/encrypted-keys/
10055
10056 KEYS-TRUSTED
10057 M:      James Bottomley <jejb@linux.ibm.com>
10058 M:      Jarkko Sakkinen <jarkko@kernel.org>
10059 M:      Mimi Zohar <zohar@linux.ibm.com>
10060 L:      linux-integrity@vger.kernel.org
10061 L:      keyrings@vger.kernel.org
10062 S:      Supported
10063 F:      Documentation/security/keys/trusted-encrypted.rst
10064 F:      include/keys/trusted-type.h
10065 F:      include/keys/trusted_tpm.h
10066 F:      security/keys/trusted-keys/
10067
10068 KEYS-TRUSTED-TEE
10069 M:      Sumit Garg <sumit.garg@linaro.org>
10070 L:      linux-integrity@vger.kernel.org
10071 L:      keyrings@vger.kernel.org
10072 S:      Supported
10073 F:      include/keys/trusted_tee.h
10074 F:      security/keys/trusted-keys/trusted_tee.c
10075
10076 KEYS/KEYRINGS
10077 M:      David Howells <dhowells@redhat.com>
10078 M:      Jarkko Sakkinen <jarkko@kernel.org>
10079 L:      keyrings@vger.kernel.org
10080 S:      Maintained
10081 F:      Documentation/security/keys/core.rst
10082 F:      include/keys/
10083 F:      include/linux/key-type.h
10084 F:      include/linux/key.h
10085 F:      include/linux/keyctl.h
10086 F:      include/uapi/linux/keyctl.h
10087 F:      security/keys/
10088
10089 KFENCE
10090 M:      Alexander Potapenko <glider@google.com>
10091 M:      Marco Elver <elver@google.com>
10092 R:      Dmitry Vyukov <dvyukov@google.com>
10093 L:      kasan-dev@googlegroups.com
10094 S:      Maintained
10095 F:      Documentation/dev-tools/kfence.rst
10096 F:      arch/*/include/asm/kfence.h
10097 F:      include/linux/kfence.h
10098 F:      lib/Kconfig.kfence
10099 F:      mm/kfence/
10100
10101 KFIFO
10102 M:      Stefani Seibold <stefani@seibold.net>
10103 S:      Maintained
10104 F:      include/linux/kfifo.h
10105 F:      lib/kfifo.c
10106 F:      samples/kfifo/
10107
10108 KGDB / KDB /debug_core
10109 M:      Jason Wessel <jason.wessel@windriver.com>
10110 M:      Daniel Thompson <daniel.thompson@linaro.org>
10111 R:      Douglas Anderson <dianders@chromium.org>
10112 L:      kgdb-bugreport@lists.sourceforge.net
10113 S:      Maintained
10114 W:      http://kgdb.wiki.kernel.org/
10115 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10116 F:      Documentation/dev-tools/kgdb.rst
10117 F:      drivers/misc/kgdbts.c
10118 F:      drivers/tty/serial/kgdboc.c
10119 F:      include/linux/kdb.h
10120 F:      include/linux/kgdb.h
10121 F:      kernel/debug/
10122
10123 KHADAS MCU MFD DRIVER
10124 M:      Neil Armstrong <narmstrong@baylibre.com>
10125 L:      linux-amlogic@lists.infradead.org
10126 S:      Maintained
10127 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10128 F:      drivers/mfd/khadas-mcu.c
10129 F:      include/linux/mfd/khadas-mcu.h
10130 F:      drivers/thermal/khadas_mcu_fan.c
10131
10132 KMEMLEAK
10133 M:      Catalin Marinas <catalin.marinas@arm.com>
10134 S:      Maintained
10135 F:      Documentation/dev-tools/kmemleak.rst
10136 F:      include/linux/kmemleak.h
10137 F:      mm/kmemleak.c
10138 F:      samples/kmemleak/kmemleak-test.c
10139
10140 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10141 M:      Luis Chamberlain <mcgrof@kernel.org>
10142 L:      linux-kernel@vger.kernel.org
10143 S:      Maintained
10144 F:      include/linux/kmod.h
10145 F:      kernel/kmod.c
10146 F:      lib/test_kmod.c
10147 F:      tools/testing/selftests/kmod/
10148
10149 KPROBES
10150 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10151 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10152 M:      "David S. Miller" <davem@davemloft.net>
10153 M:      Masami Hiramatsu <mhiramat@kernel.org>
10154 S:      Maintained
10155 F:      Documentation/trace/kprobes.rst
10156 F:      include/asm-generic/kprobes.h
10157 F:      include/linux/kprobes.h
10158 F:      kernel/kprobes.c
10159
10160 KS0108 LCD CONTROLLER DRIVER
10161 M:      Miguel Ojeda <ojeda@kernel.org>
10162 S:      Maintained
10163 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10164 F:      drivers/auxdisplay/ks0108.c
10165 F:      include/linux/ks0108.h
10166
10167 KTD253 BACKLIGHT DRIVER
10168 M:      Linus Walleij <linus.walleij@linaro.org>
10169 S:      Maintained
10170 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10171 F:      drivers/video/backlight/ktd253-backlight.c
10172
10173 KTEST
10174 M:      Steven Rostedt <rostedt@goodmis.org>
10175 M:      John Hawley <warthog9@eaglescrag.net>
10176 S:      Maintained
10177 F:      tools/testing/ktest
10178
10179 L3MDEV
10180 M:      David Ahern <dsahern@kernel.org>
10181 L:      netdev@vger.kernel.org
10182 S:      Maintained
10183 F:      include/net/l3mdev.h
10184 F:      net/l3mdev
10185
10186 L7 BPF FRAMEWORK
10187 M:      John Fastabend <john.fastabend@gmail.com>
10188 M:      Daniel Borkmann <daniel@iogearbox.net>
10189 M:      Jakub Sitnicki <jakub@cloudflare.com>
10190 M:      Lorenz Bauer <lmb@cloudflare.com>
10191 L:      netdev@vger.kernel.org
10192 L:      bpf@vger.kernel.org
10193 S:      Maintained
10194 F:      include/linux/skmsg.h
10195 F:      net/core/skmsg.c
10196 F:      net/core/sock_map.c
10197 F:      net/ipv4/tcp_bpf.c
10198 F:      net/ipv4/udp_bpf.c
10199
10200 LANDLOCK SECURITY MODULE
10201 M:      Mickaël Salaün <mic@digikod.net>
10202 L:      linux-security-module@vger.kernel.org
10203 S:      Supported
10204 W:      https://landlock.io
10205 T:      git https://github.com/landlock-lsm/linux.git
10206 F:      Documentation/security/landlock.rst
10207 F:      Documentation/userspace-api/landlock.rst
10208 F:      include/uapi/linux/landlock.h
10209 F:      samples/landlock/
10210 F:      security/landlock/
10211 F:      tools/testing/selftests/landlock/
10212 K:      landlock
10213 K:      LANDLOCK
10214
10215 LANTIQ / INTEL Ethernet drivers
10216 M:      Hauke Mehrtens <hauke@hauke-m.de>
10217 L:      netdev@vger.kernel.org
10218 S:      Maintained
10219 F:      drivers/net/dsa/lantiq_gswip.c
10220 F:      drivers/net/dsa/lantiq_pce.h
10221 F:      drivers/net/ethernet/lantiq_xrx200.c
10222 F:      net/dsa/tag_gswip.c
10223
10224 LANTIQ MIPS ARCHITECTURE
10225 M:      John Crispin <john@phrozen.org>
10226 L:      linux-mips@vger.kernel.org
10227 S:      Maintained
10228 F:      arch/mips/lantiq
10229 F:      drivers/soc/lantiq
10230
10231 LASI 53c700 driver for PARISC
10232 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10233 L:      linux-scsi@vger.kernel.org
10234 S:      Maintained
10235 F:      Documentation/scsi/53c700.rst
10236 F:      drivers/scsi/53c700*
10237
10238 LEAKING_ADDRESSES
10239 M:      Tobin C. Harding <me@tobin.cc>
10240 M:      Tycho Andersen <tycho@tycho.pizza>
10241 L:      linux-hardening@vger.kernel.org
10242 S:      Maintained
10243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10244 F:      scripts/leaking_addresses.pl
10245
10246 LED SUBSYSTEM
10247 M:      Pavel Machek <pavel@ucw.cz>
10248 L:      linux-leds@vger.kernel.org
10249 S:      Maintained
10250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10251 F:      Documentation/devicetree/bindings/leds/
10252 F:      drivers/leds/
10253 F:      include/linux/leds.h
10254
10255 LEGACY EEPROM DRIVER
10256 M:      Jean Delvare <jdelvare@suse.com>
10257 S:      Maintained
10258 F:      Documentation/misc-devices/eeprom.rst
10259 F:      drivers/misc/eeprom/eeprom.c
10260
10261 LEGO MINDSTORMS EV3
10262 R:      David Lechner <david@lechnology.com>
10263 S:      Maintained
10264 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10265 F:      arch/arm/boot/dts/da850-lego-ev3.dts
10266 F:      drivers/power/supply/lego_ev3_battery.c
10267
10268 LEGO USB Tower driver
10269 M:      Juergen Stuber <starblue@users.sourceforge.net>
10270 L:      legousb-devel@lists.sourceforge.net
10271 S:      Maintained
10272 W:      http://legousb.sourceforge.net/
10273 F:      drivers/usb/misc/legousbtower.c
10274
10275 LG LAPTOP EXTRAS
10276 M:      Matan Ziv-Av <matan@svgalib.org>
10277 L:      platform-driver-x86@vger.kernel.org
10278 S:      Maintained
10279 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
10280 F:      Documentation/admin-guide/laptops/lg-laptop.rst
10281 F:      drivers/platform/x86/lg-laptop.c
10282
10283 LG2160 MEDIA DRIVER
10284 M:      Michael Krufky <mkrufky@linuxtv.org>
10285 L:      linux-media@vger.kernel.org
10286 S:      Maintained
10287 W:      https://linuxtv.org
10288 W:      http://github.com/mkrufky
10289 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10290 T:      git git://linuxtv.org/mkrufky/tuners.git
10291 F:      drivers/media/dvb-frontends/lg2160.*
10292
10293 LGDT3305 MEDIA DRIVER
10294 M:      Michael Krufky <mkrufky@linuxtv.org>
10295 L:      linux-media@vger.kernel.org
10296 S:      Maintained
10297 W:      https://linuxtv.org
10298 W:      http://github.com/mkrufky
10299 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10300 T:      git git://linuxtv.org/mkrufky/tuners.git
10301 F:      drivers/media/dvb-frontends/lgdt3305.*
10302
10303 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10304 M:      Viresh Kumar <vireshk@kernel.org>
10305 L:      linux-ide@vger.kernel.org
10306 S:      Maintained
10307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10308 F:      drivers/ata/pata_arasan_cf.c
10309 F:      include/linux/pata_arasan_cf_data.h
10310
10311 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10312 M:      Linus Walleij <linus.walleij@linaro.org>
10313 L:      linux-ide@vger.kernel.org
10314 S:      Maintained
10315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10316 F:      drivers/ata/pata_ftide010.c
10317 F:      drivers/ata/sata_gemini.c
10318 F:      drivers/ata/sata_gemini.h
10319
10320 LIBATA SATA AHCI PLATFORM devices support
10321 M:      Hans de Goede <hdegoede@redhat.com>
10322 M:      Jens Axboe <axboe@kernel.dk>
10323 L:      linux-ide@vger.kernel.org
10324 S:      Maintained
10325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10326 F:      drivers/ata/ahci_platform.c
10327 F:      drivers/ata/libahci_platform.c
10328 F:      include/linux/ahci_platform.h
10329
10330 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10331 M:      Mikael Pettersson <mikpelinux@gmail.com>
10332 L:      linux-ide@vger.kernel.org
10333 S:      Maintained
10334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10335 F:      drivers/ata/sata_promise.*
10336
10337 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10338 M:      Jens Axboe <axboe@kernel.dk>
10339 L:      linux-ide@vger.kernel.org
10340 S:      Maintained
10341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10342 F:      Documentation/devicetree/bindings/ata/
10343 F:      drivers/ata/
10344 F:      include/linux/ata.h
10345 F:      include/linux/libata.h
10346
10347 LIBLOCKDEP
10348 M:      Sasha Levin <alexander.levin@microsoft.com>
10349 S:      Maintained
10350 F:      tools/lib/lockdep/
10351
10352 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10353 M:      Dan Williams <dan.j.williams@intel.com>
10354 M:      Vishal Verma <vishal.l.verma@intel.com>
10355 M:      Dave Jiang <dave.jiang@intel.com>
10356 L:      linux-nvdimm@lists.01.org
10357 S:      Supported
10358 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10359 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10360 F:      drivers/nvdimm/blk.c
10361 F:      drivers/nvdimm/region_devs.c
10362
10363 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10364 M:      Vishal Verma <vishal.l.verma@intel.com>
10365 M:      Dan Williams <dan.j.williams@intel.com>
10366 M:      Dave Jiang <dave.jiang@intel.com>
10367 L:      linux-nvdimm@lists.01.org
10368 S:      Supported
10369 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10370 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10371 F:      drivers/nvdimm/btt*
10372
10373 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10374 M:      Dan Williams <dan.j.williams@intel.com>
10375 M:      Vishal Verma <vishal.l.verma@intel.com>
10376 M:      Dave Jiang <dave.jiang@intel.com>
10377 L:      linux-nvdimm@lists.01.org
10378 S:      Supported
10379 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10380 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10381 F:      drivers/nvdimm/pmem*
10382
10383 LIBNVDIMM: DEVICETREE BINDINGS
10384 M:      Oliver O'Halloran <oohall@gmail.com>
10385 L:      linux-nvdimm@lists.01.org
10386 S:      Supported
10387 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10388 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10389 F:      drivers/nvdimm/of_pmem.c
10390
10391 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10392 M:      Dan Williams <dan.j.williams@intel.com>
10393 M:      Vishal Verma <vishal.l.verma@intel.com>
10394 M:      Dave Jiang <dave.jiang@intel.com>
10395 M:      Ira Weiny <ira.weiny@intel.com>
10396 L:      linux-nvdimm@lists.01.org
10397 S:      Supported
10398 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10399 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10401 F:      drivers/acpi/nfit/*
10402 F:      drivers/nvdimm/*
10403 F:      include/linux/libnvdimm.h
10404 F:      include/linux/nd.h
10405 F:      include/uapi/linux/ndctl.h
10406 F:      tools/testing/nvdimm/
10407
10408 LICENSES and SPDX stuff
10409 M:      Thomas Gleixner <tglx@linutronix.de>
10410 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10411 L:      linux-spdx@vger.kernel.org
10412 S:      Maintained
10413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10414 F:      COPYING
10415 F:      Documentation/process/license-rules.rst
10416 F:      LICENSES/
10417 F:      scripts/spdxcheck-test.sh
10418 F:      scripts/spdxcheck.py
10419
10420 LIGHTNVM PLATFORM SUPPORT
10421 M:      Matias Bjorling <mb@lightnvm.io>
10422 L:      linux-block@vger.kernel.org
10423 S:      Maintained
10424 W:      http://github/OpenChannelSSD
10425 F:      drivers/lightnvm/
10426 F:      include/linux/lightnvm.h
10427 F:      include/uapi/linux/lightnvm.h
10428
10429 LINEAR RANGES HELPERS
10430 M:      Mark Brown <broonie@kernel.org>
10431 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10432 F:      lib/linear_ranges.c
10433 F:      lib/test_linear_ranges.c
10434 F:      include/linux/linear_range.h
10435
10436 LINUX FOR POWER MACINTOSH
10437 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10438 L:      linuxppc-dev@lists.ozlabs.org
10439 S:      Odd Fixes
10440 F:      arch/powerpc/platforms/powermac/
10441 F:      drivers/macintosh/
10442
10443 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10444 M:      Michael Ellerman <mpe@ellerman.id.au>
10445 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10446 R:      Paul Mackerras <paulus@samba.org>
10447 L:      linuxppc-dev@lists.ozlabs.org
10448 S:      Supported
10449 W:      https://github.com/linuxppc/wiki/wiki
10450 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10452 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10453 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10454 F:      Documentation/devicetree/bindings/powerpc/
10455 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10456 F:      Documentation/powerpc/
10457 F:      arch/powerpc/
10458 F:      drivers/*/*/*pasemi*
10459 F:      drivers/*/*pasemi*
10460 F:      drivers/char/tpm/tpm_ibmvtpm*
10461 F:      drivers/crypto/nx/
10462 F:      drivers/crypto/vmx/
10463 F:      drivers/i2c/busses/i2c-opal.c
10464 F:      drivers/net/ethernet/ibm/ibmveth.*
10465 F:      drivers/net/ethernet/ibm/ibmvnic.*
10466 F:      drivers/pci/hotplug/pnv_php.c
10467 F:      drivers/pci/hotplug/rpa*
10468 F:      drivers/rtc/rtc-opal.c
10469 F:      drivers/scsi/ibmvscsi/
10470 F:      drivers/tty/hvc/hvc_opal.c
10471 F:      drivers/watchdog/wdrtas.c
10472 F:      tools/testing/selftests/powerpc
10473 N:      /pmac
10474 N:      powermac
10475 N:      powernv
10476 N:      [^a-z0-9]ps3
10477 N:      pseries
10478
10479 LINUX FOR POWERPC EMBEDDED MPC5XXX
10480 M:      Anatolij Gustschin <agust@denx.de>
10481 L:      linuxppc-dev@lists.ozlabs.org
10482 S:      Odd Fixes
10483 F:      arch/powerpc/platforms/512x/
10484 F:      arch/powerpc/platforms/52xx/
10485
10486 LINUX FOR POWERPC EMBEDDED PPC4XX
10487 L:      linuxppc-dev@lists.ozlabs.org
10488 S:      Orphan
10489 F:      arch/powerpc/platforms/40x/
10490 F:      arch/powerpc/platforms/44x/
10491
10492 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10493 M:      Scott Wood <oss@buserror.net>
10494 L:      linuxppc-dev@lists.ozlabs.org
10495 S:      Odd fixes
10496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10497 F:      Documentation/devicetree/bindings/powerpc/fsl/
10498 F:      arch/powerpc/platforms/83xx/
10499 F:      arch/powerpc/platforms/85xx/
10500
10501 LINUX FOR POWERPC EMBEDDED PPC8XX
10502 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10503 L:      linuxppc-dev@lists.ozlabs.org
10504 S:      Maintained
10505 F:      arch/powerpc/platforms/8xx/
10506
10507 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10508 M:      Kees Cook <keescook@chromium.org>
10509 S:      Maintained
10510 F:      drivers/misc/lkdtm/*
10511 F:      tools/testing/selftests/lkdtm/*
10512
10513 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10514 M:      Alan Stern <stern@rowland.harvard.edu>
10515 M:      Andrea Parri <parri.andrea@gmail.com>
10516 M:      Will Deacon <will@kernel.org>
10517 M:      Peter Zijlstra <peterz@infradead.org>
10518 M:      Boqun Feng <boqun.feng@gmail.com>
10519 M:      Nicholas Piggin <npiggin@gmail.com>
10520 M:      David Howells <dhowells@redhat.com>
10521 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10522 M:      Luc Maranget <luc.maranget@inria.fr>
10523 M:      "Paul E. McKenney" <paulmck@kernel.org>
10524 R:      Akira Yokosawa <akiyks@gmail.com>
10525 R:      Daniel Lustig <dlustig@nvidia.com>
10526 R:      Joel Fernandes <joel@joelfernandes.org>
10527 L:      linux-kernel@vger.kernel.org
10528 L:      linux-arch@vger.kernel.org
10529 S:      Supported
10530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10531 F:      Documentation/atomic_bitops.txt
10532 F:      Documentation/atomic_t.txt
10533 F:      Documentation/core-api/refcount-vs-atomic.rst
10534 F:      Documentation/litmus-tests/
10535 F:      Documentation/memory-barriers.txt
10536 F:      tools/memory-model/
10537
10538 LIS3LV02D ACCELEROMETER DRIVER
10539 M:      Eric Piel <eric.piel@tremplin-utc.net>
10540 S:      Maintained
10541 F:      Documentation/misc-devices/lis3lv02d.rst
10542 F:      drivers/misc/lis3lv02d/
10543 F:      drivers/platform/x86/hp_accel.c
10544
10545 LIST KUNIT TEST
10546 M:      David Gow <davidgow@google.com>
10547 L:      linux-kselftest@vger.kernel.org
10548 L:      kunit-dev@googlegroups.com
10549 S:      Maintained
10550 F:      lib/list-test.c
10551
10552 LITEX PLATFORM
10553 M:      Karol Gugala <kgugala@antmicro.com>
10554 M:      Mateusz Holenko <mholenko@antmicro.com>
10555 S:      Maintained
10556 F:      Documentation/devicetree/bindings/*/litex,*.yaml
10557 F:      arch/openrisc/boot/dts/or1klitex.dts
10558 F:      drivers/soc/litex/litex_soc_ctrl.c
10559 F:      drivers/tty/serial/liteuart.c
10560 F:      include/linux/litex.h
10561
10562 LIVE PATCHING
10563 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10564 M:      Jiri Kosina <jikos@kernel.org>
10565 M:      Miroslav Benes <mbenes@suse.cz>
10566 M:      Petr Mladek <pmladek@suse.com>
10567 R:      Joe Lawrence <joe.lawrence@redhat.com>
10568 L:      live-patching@vger.kernel.org
10569 S:      Maintained
10570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10571 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10572 F:      Documentation/livepatch/
10573 F:      arch/powerpc/include/asm/livepatch.h
10574 F:      arch/s390/include/asm/livepatch.h
10575 F:      arch/x86/include/asm/livepatch.h
10576 F:      include/linux/livepatch.h
10577 F:      kernel/livepatch/
10578 F:      lib/livepatch/
10579 F:      samples/livepatch/
10580 F:      tools/testing/selftests/livepatch/
10581
10582 LLC (802.2)
10583 L:      netdev@vger.kernel.org
10584 S:      Odd fixes
10585 F:      include/linux/llc.h
10586 F:      include/net/llc*
10587 F:      include/uapi/linux/llc.h
10588 F:      net/llc/
10589
10590 LM73 HARDWARE MONITOR DRIVER
10591 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10592 L:      linux-hwmon@vger.kernel.org
10593 S:      Maintained
10594 F:      drivers/hwmon/lm73.c
10595
10596 LM78 HARDWARE MONITOR DRIVER
10597 M:      Jean Delvare <jdelvare@suse.com>
10598 L:      linux-hwmon@vger.kernel.org
10599 S:      Maintained
10600 F:      Documentation/hwmon/lm78.rst
10601 F:      drivers/hwmon/lm78.c
10602
10603 LM83 HARDWARE MONITOR DRIVER
10604 M:      Jean Delvare <jdelvare@suse.com>
10605 L:      linux-hwmon@vger.kernel.org
10606 S:      Maintained
10607 F:      Documentation/hwmon/lm83.rst
10608 F:      drivers/hwmon/lm83.c
10609
10610 LM90 HARDWARE MONITOR DRIVER
10611 M:      Jean Delvare <jdelvare@suse.com>
10612 L:      linux-hwmon@vger.kernel.org
10613 S:      Maintained
10614 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10615 F:      Documentation/hwmon/lm90.rst
10616 F:      drivers/hwmon/lm90.c
10617 F:      include/dt-bindings/thermal/lm90.h
10618
10619 LM95234 HARDWARE MONITOR DRIVER
10620 M:      Guenter Roeck <linux@roeck-us.net>
10621 L:      linux-hwmon@vger.kernel.org
10622 S:      Maintained
10623 F:      Documentation/hwmon/lm95234.rst
10624 F:      drivers/hwmon/lm95234.c
10625
10626 LME2510 MEDIA DRIVER
10627 M:      Malcolm Priestley <tvboxspy@gmail.com>
10628 L:      linux-media@vger.kernel.org
10629 S:      Maintained
10630 W:      https://linuxtv.org
10631 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10632 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10633
10634 LOADPIN SECURITY MODULE
10635 M:      Kees Cook <keescook@chromium.org>
10636 S:      Supported
10637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10638 F:      Documentation/admin-guide/LSM/LoadPin.rst
10639 F:      security/loadpin/
10640
10641 LOCKING PRIMITIVES
10642 M:      Peter Zijlstra <peterz@infradead.org>
10643 M:      Ingo Molnar <mingo@redhat.com>
10644 M:      Will Deacon <will@kernel.org>
10645 R:      Waiman Long <longman@redhat.com>
10646 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
10647 L:      linux-kernel@vger.kernel.org
10648 S:      Maintained
10649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10650 F:      Documentation/locking/
10651 F:      arch/*/include/asm/spinlock*.h
10652 F:      include/linux/lockdep.h
10653 F:      include/linux/mutex*.h
10654 F:      include/linux/rwlock*.h
10655 F:      include/linux/rwsem*.h
10656 F:      include/linux/seqlock.h
10657 F:      include/linux/spinlock*.h
10658 F:      kernel/locking/
10659 F:      lib/locking*.[ch]
10660 X:      kernel/locking/locktorture.c
10661
10662 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10663 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
10664 L:      linux-ntfs-dev@lists.sourceforge.net
10665 S:      Maintained
10666 W:      http://www.linux-ntfs.org/content/view/19/37/
10667 F:      Documentation/admin-guide/ldm.rst
10668 F:      block/partitions/ldm.*
10669
10670 LOGITECH HID GAMING KEYBOARDS
10671 M:      Hans de Goede <hdegoede@redhat.com>
10672 L:      linux-input@vger.kernel.org
10673 S:      Maintained
10674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10675 F:      drivers/hid/hid-lg-g15.c
10676
10677 LONTIUM LT8912B MIPI TO HDMI BRIDGE
10678 M:      Adrien Grassein <adrien.grassein@gmail.com>
10679 S:      Maintained
10680 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
10681 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
10682
10683 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10684 M:      Sathya Prakash <sathya.prakash@broadcom.com>
10685 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
10686 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10687 L:      MPT-FusionLinux.pdl@broadcom.com
10688 L:      linux-scsi@vger.kernel.org
10689 S:      Supported
10690 W:      http://www.avagotech.com/support/
10691 F:      drivers/message/fusion/
10692 F:      drivers/scsi/mpt3sas/
10693
10694 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10695 M:      Matthew Wilcox <willy@infradead.org>
10696 L:      linux-scsi@vger.kernel.org
10697 S:      Maintained
10698 F:      drivers/scsi/sym53c8xx_2/
10699
10700 LTC1660 DAC DRIVER
10701 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10702 L:      linux-iio@vger.kernel.org
10703 S:      Maintained
10704 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10705 F:      drivers/iio/dac/ltc1660.c
10706
10707 LTC2947 HARDWARE MONITOR DRIVER
10708 M:      Nuno Sá <nuno.sa@analog.com>
10709 L:      linux-hwmon@vger.kernel.org
10710 S:      Supported
10711 W:      http://ez.analog.com/community/linux-device-drivers
10712 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10713 F:      drivers/hwmon/ltc2947-core.c
10714 F:      drivers/hwmon/ltc2947-i2c.c
10715 F:      drivers/hwmon/ltc2947-spi.c
10716 F:      drivers/hwmon/ltc2947.h
10717
10718 LTC2983 IIO TEMPERATURE DRIVER
10719 M:      Nuno Sá <nuno.sa@analog.com>
10720 L:      linux-iio@vger.kernel.org
10721 S:      Supported
10722 W:      http://ez.analog.com/community/linux-device-drivers
10723 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10724 F:      drivers/iio/temperature/ltc2983.c
10725
10726 LTC4261 HARDWARE MONITOR DRIVER
10727 M:      Guenter Roeck <linux@roeck-us.net>
10728 L:      linux-hwmon@vger.kernel.org
10729 S:      Maintained
10730 F:      Documentation/hwmon/ltc4261.rst
10731 F:      drivers/hwmon/ltc4261.c
10732
10733 LTC4306 I2C MULTIPLEXER DRIVER
10734 M:      Michael Hennerich <michael.hennerich@analog.com>
10735 L:      linux-i2c@vger.kernel.org
10736 S:      Supported
10737 W:      http://ez.analog.com/community/linux-device-drivers
10738 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10739 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10740
10741 LTP (Linux Test Project)
10742 M:      Mike Frysinger <vapier@gentoo.org>
10743 M:      Cyril Hrubis <chrubis@suse.cz>
10744 M:      Wanlong Gao <wanlong.gao@gmail.com>
10745 M:      Jan Stancek <jstancek@redhat.com>
10746 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
10747 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
10748 L:      ltp@lists.linux.it (subscribers-only)
10749 S:      Maintained
10750 W:      http://linux-test-project.github.io/
10751 T:      git git://github.com/linux-test-project/ltp.git
10752
10753 LYNX PCS MODULE
10754 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
10755 L:      netdev@vger.kernel.org
10756 S:      Supported
10757 F:      drivers/net/pcs/pcs-lynx.c
10758 F:      include/linux/pcs-lynx.h
10759
10760 M68K ARCHITECTURE
10761 M:      Geert Uytterhoeven <geert@linux-m68k.org>
10762 L:      linux-m68k@lists.linux-m68k.org
10763 S:      Maintained
10764 W:      http://www.linux-m68k.org/
10765 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10766 F:      arch/m68k/
10767 F:      drivers/zorro/
10768
10769 M68K ON APPLE MACINTOSH
10770 M:      Joshua Thompson <funaho@jurai.org>
10771 L:      linux-m68k@lists.linux-m68k.org
10772 S:      Maintained
10773 W:      http://www.mac.linux-m68k.org/
10774 F:      arch/m68k/mac/
10775 F:      drivers/macintosh/adb-iop.c
10776 F:      drivers/macintosh/via-macii.c
10777
10778 M68K ON HP9000/300
10779 M:      Philip Blundell <philb@gnu.org>
10780 S:      Maintained
10781 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10782 F:      arch/m68k/hp300/
10783
10784 M88DS3103 MEDIA DRIVER
10785 M:      Antti Palosaari <crope@iki.fi>
10786 L:      linux-media@vger.kernel.org
10787 S:      Maintained
10788 W:      https://linuxtv.org
10789 W:      http://palosaari.fi/linux/
10790 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10791 T:      git git://linuxtv.org/anttip/media_tree.git
10792 F:      drivers/media/dvb-frontends/m88ds3103*
10793
10794 M88RS2000 MEDIA DRIVER
10795 M:      Malcolm Priestley <tvboxspy@gmail.com>
10796 L:      linux-media@vger.kernel.org
10797 S:      Maintained
10798 W:      https://linuxtv.org
10799 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10800 F:      drivers/media/dvb-frontends/m88rs2000*
10801
10802 MA901 MASTERKIT USB FM RADIO DRIVER
10803 M:      Alexey Klimov <klimov.linux@gmail.com>
10804 L:      linux-media@vger.kernel.org
10805 S:      Maintained
10806 T:      git git://linuxtv.org/media_tree.git
10807 F:      drivers/media/radio/radio-ma901.c
10808
10809 MAC80211
10810 M:      Johannes Berg <johannes@sipsolutions.net>
10811 L:      linux-wireless@vger.kernel.org
10812 S:      Maintained
10813 W:      https://wireless.wiki.kernel.org/
10814 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10816 F:      Documentation/networking/mac80211-injection.rst
10817 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10818 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10819 F:      include/net/mac80211.h
10820 F:      net/mac80211/
10821
10822 MAILBOX API
10823 M:      Jassi Brar <jassisinghbrar@gmail.com>
10824 L:      linux-kernel@vger.kernel.org
10825 S:      Maintained
10826 F:      drivers/mailbox/
10827 F:      include/linux/mailbox_client.h
10828 F:      include/linux/mailbox_controller.h
10829 F:      Documentation/devicetree/bindings/mailbox/
10830
10831 MAILBOX ARM MHUv2
10832 M:      Viresh Kumar <viresh.kumar@linaro.org>
10833 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
10834 L:      linux-kernel@vger.kernel.org
10835 S:      Maintained
10836 F:      drivers/mailbox/arm_mhuv2.c
10837 F:      include/linux/mailbox/arm_mhuv2_message.h
10838 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
10839
10840 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10841 M:      Michael Kerrisk <mtk.manpages@gmail.com>
10842 L:      linux-man@vger.kernel.org
10843 S:      Maintained
10844 W:      http://www.kernel.org/doc/man-pages
10845
10846 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10847 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
10848 L:      linux-mips@vger.kernel.org
10849 S:      Maintained
10850 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10851
10852 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10853 M:      Andrew Lunn <andrew@lunn.ch>
10854 M:      Vivien Didelot <vivien.didelot@gmail.com>
10855 L:      netdev@vger.kernel.org
10856 S:      Maintained
10857 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10858 F:      Documentation/networking/devlink/mv88e6xxx.rst
10859 F:      drivers/net/dsa/mv88e6xxx/
10860 F:      include/linux/platform_data/mv88e6xxx.h
10861
10862 MARVELL ARMADA 3700 PHY DRIVERS
10863 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10864 S:      Maintained
10865 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10866 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10867 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10868 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10869
10870 MARVELL ARMADA DRM SUPPORT
10871 M:      Russell King <linux@armlinux.org.uk>
10872 S:      Maintained
10873 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10874 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10875 F:      Documentation/devicetree/bindings/display/armada/
10876 F:      drivers/gpu/drm/armada/
10877 F:      include/uapi/drm/armada_drm.h
10878
10879 MARVELL CRYPTO DRIVER
10880 M:      Boris Brezillon <bbrezillon@kernel.org>
10881 M:      Arnaud Ebalard <arno@natisbad.org>
10882 M:      Srujana Challa <schalla@marvell.com>
10883 L:      linux-crypto@vger.kernel.org
10884 S:      Maintained
10885 F:      drivers/crypto/marvell/
10886 F:      include/linux/soc/marvell/octeontx2/
10887
10888 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10889 M:      Mirko Lindner <mlindner@marvell.com>
10890 M:      Stephen Hemminger <stephen@networkplumber.org>
10891 L:      netdev@vger.kernel.org
10892 S:      Maintained
10893 F:      drivers/net/ethernet/marvell/sk*
10894
10895 MARVELL LIBERTAS WIRELESS DRIVER
10896 L:      libertas-dev@lists.infradead.org
10897 S:      Orphan
10898 F:      drivers/net/wireless/marvell/libertas/
10899
10900 MARVELL MACCHIATOBIN SUPPORT
10901 M:      Russell King <linux@armlinux.org.uk>
10902 L:      linux-arm-kernel@lists.infradead.org
10903 S:      Maintained
10904 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10905
10906 MARVELL MV643XX ETHERNET DRIVER
10907 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
10908 L:      netdev@vger.kernel.org
10909 S:      Maintained
10910 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10911 F:      include/linux/mv643xx.h
10912
10913 MARVELL MV88X3310 PHY DRIVER
10914 M:      Russell King <linux@armlinux.org.uk>
10915 M:      Marek Behun <marek.behun@nic.cz>
10916 L:      netdev@vger.kernel.org
10917 S:      Maintained
10918 F:      drivers/net/phy/marvell10g.c
10919
10920 MARVELL MVEBU THERMAL DRIVER
10921 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10922 S:      Maintained
10923 F:      drivers/thermal/armada_thermal.c
10924
10925 MARVELL MVNETA ETHERNET DRIVER
10926 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
10927 L:      netdev@vger.kernel.org
10928 S:      Maintained
10929 F:      drivers/net/ethernet/marvell/mvneta.*
10930
10931 MARVELL MVPP2 ETHERNET DRIVER
10932 M:      Marcin Wojtas <mw@semihalf.com>
10933 M:      Russell King <linux@armlinux.org.uk>
10934 L:      netdev@vger.kernel.org
10935 S:      Maintained
10936 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
10937 F:      drivers/net/ethernet/marvell/mvpp2/
10938
10939 MARVELL MWIFIEX WIRELESS DRIVER
10940 M:      Amitkumar Karwar <amitkarwar@gmail.com>
10941 M:      Ganapathi Bhat <ganapathi017@gmail.com>
10942 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
10943 M:      Xinming Hu <huxinming820@gmail.com>
10944 L:      linux-wireless@vger.kernel.org
10945 S:      Maintained
10946 F:      drivers/net/wireless/marvell/mwifiex/
10947
10948 MARVELL MWL8K WIRELESS DRIVER
10949 M:      Lennert Buytenhek <buytenh@wantstofly.org>
10950 L:      linux-wireless@vger.kernel.org
10951 S:      Odd Fixes
10952 F:      drivers/net/wireless/marvell/mwl8k.c
10953
10954 MARVELL NAND CONTROLLER DRIVER
10955 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10956 L:      linux-mtd@lists.infradead.org
10957 S:      Maintained
10958 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10959 F:      drivers/mtd/nand/raw/marvell_nand.c
10960
10961 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10962 M:      Sunil Goutham <sgoutham@marvell.com>
10963 M:      Geetha sowjanya <gakula@marvell.com>
10964 M:      Subbaraya Sundeep <sbhatta@marvell.com>
10965 M:      hariprasad <hkelam@marvell.com>
10966 L:      netdev@vger.kernel.org
10967 S:      Supported
10968 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10969 F:      include/linux/soc/marvell/octeontx2/
10970
10971 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10972 M:      Sunil Goutham <sgoutham@marvell.com>
10973 M:      Linu Cherian <lcherian@marvell.com>
10974 M:      Geetha sowjanya <gakula@marvell.com>
10975 M:      Jerin Jacob <jerinj@marvell.com>
10976 M:      hariprasad <hkelam@marvell.com>
10977 M:      Subbaraya Sundeep <sbhatta@marvell.com>
10978 L:      netdev@vger.kernel.org
10979 S:      Supported
10980 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
10981 F:      drivers/net/ethernet/marvell/octeontx2/af/
10982
10983 MARVELL PRESTERA ETHERNET SWITCH DRIVER
10984 M:      Vadym Kochan <vkochan@marvell.com>
10985 M:      Taras Chornyi <tchornyi@marvell.com>
10986 S:      Supported
10987 W:      https://github.com/Marvell-switching/switchdev-prestera
10988 F:      drivers/net/ethernet/marvell/prestera/
10989
10990 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10991 M:      Nicolas Pitre <nico@fluxnic.net>
10992 S:      Odd Fixes
10993 F:      drivers/mmc/host/mvsdio.*
10994
10995 MARVELL USB MDIO CONTROLLER DRIVER
10996 M:      Tobias Waldekranz <tobias@waldekranz.com>
10997 L:      netdev@vger.kernel.org
10998 S:      Maintained
10999 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11000 F:      drivers/net/mdio/mdio-mvusb.c
11001
11002 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11003 M:      Hu Ziji <huziji@marvell.com>
11004 L:      linux-mmc@vger.kernel.org
11005 S:      Supported
11006 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11007 F:      drivers/mmc/host/sdhci-xenon*
11008
11009 MATROX FRAMEBUFFER DRIVER
11010 L:      linux-fbdev@vger.kernel.org
11011 S:      Orphan
11012 F:      drivers/video/fbdev/matrox/matroxfb_*
11013 F:      include/uapi/linux/matroxfb.h
11014
11015 MAX15301 DRIVER
11016 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11017 L:      linux-hwmon@vger.kernel.org
11018 S:      Maintained
11019 F:      Documentation/hwmon/max15301.rst
11020 F:      drivers/hwmon/pmbus/max15301.c
11021
11022 MAX16065 HARDWARE MONITOR DRIVER
11023 M:      Guenter Roeck <linux@roeck-us.net>
11024 L:      linux-hwmon@vger.kernel.org
11025 S:      Maintained
11026 F:      Documentation/hwmon/max16065.rst
11027 F:      drivers/hwmon/max16065.c
11028
11029 MAX2175 SDR TUNER DRIVER
11030 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11031 L:      linux-media@vger.kernel.org
11032 S:      Maintained
11033 T:      git git://linuxtv.org/media_tree.git
11034 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11035 F:      Documentation/userspace-api/media/drivers/max2175.rst
11036 F:      drivers/media/i2c/max2175*
11037 F:      include/uapi/linux/max2175.h
11038
11039 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11040 L:      linux-hwmon@vger.kernel.org
11041 S:      Orphan
11042 F:      Documentation/hwmon/max6650.rst
11043 F:      drivers/hwmon/max6650.c
11044
11045 MAX6697 HARDWARE MONITOR DRIVER
11046 M:      Guenter Roeck <linux@roeck-us.net>
11047 L:      linux-hwmon@vger.kernel.org
11048 S:      Maintained
11049 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11050 F:      Documentation/hwmon/max6697.rst
11051 F:      drivers/hwmon/max6697.c
11052 F:      include/linux/platform_data/max6697.h
11053
11054 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11055 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
11056 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11057 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11058 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11059 L:      linux-media@vger.kernel.org
11060 S:      Maintained
11061 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11062 F:      drivers/media/i2c/max9286.c
11063
11064 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11065 M:      Peter Rosin <peda@axentia.se>
11066 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11067 S:      Maintained
11068 F:      Documentation/devicetree/bindings/sound/max9860.txt
11069 F:      sound/soc/codecs/max9860.*
11070
11071 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11072 M:      Andreas Klinger <ak@it-klinger.de>
11073 L:      linux-iio@vger.kernel.org
11074 S:      Maintained
11075 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11076 F:      drivers/iio/proximity/mb1232.c
11077
11078 MAXIM MAX77650 PMIC MFD DRIVER
11079 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
11080 L:      linux-kernel@vger.kernel.org
11081 S:      Maintained
11082 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11083 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11084 F:      drivers/gpio/gpio-max77650.c
11085 F:      drivers/input/misc/max77650-onkey.c
11086 F:      drivers/leds/leds-max77650.c
11087 F:      drivers/mfd/max77650.c
11088 F:      drivers/power/supply/max77650-charger.c
11089 F:      drivers/regulator/max77650-regulator.c
11090 F:      include/linux/mfd/max77650.h
11091
11092 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11093 M:      Javier Martinez Canillas <javier@dowhile0.org>
11094 L:      linux-kernel@vger.kernel.org
11095 S:      Supported
11096 F:      Documentation/devicetree/bindings/*/*max77802.txt
11097 F:      drivers/regulator/max77802-regulator.c
11098 F:      include/dt-bindings/*/*max77802.h
11099
11100 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11101 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11102 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11103 L:      linux-pm@vger.kernel.org
11104 S:      Supported
11105 F:      drivers/power/supply/max14577_charger.c
11106 F:      drivers/power/supply/max77693_charger.c
11107
11108 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11109 M:      Chanwoo Choi <cw00.choi@samsung.com>
11110 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11111 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11112 L:      linux-kernel@vger.kernel.org
11113 S:      Supported
11114 F:      Documentation/devicetree/bindings/*/max77686.txt
11115 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
11116 F:      Documentation/devicetree/bindings/mfd/max14577.txt
11117 F:      Documentation/devicetree/bindings/mfd/max77693.txt
11118 F:      drivers/*/max14577*.c
11119 F:      drivers/*/max77686*.c
11120 F:      drivers/*/max77693*.c
11121 F:      drivers/clk/clk-max77686.c
11122 F:      drivers/extcon/extcon-max14577.c
11123 F:      drivers/extcon/extcon-max77693.c
11124 F:      drivers/rtc/rtc-max77686.c
11125 F:      include/linux/mfd/max14577*.h
11126 F:      include/linux/mfd/max77686*.h
11127 F:      include/linux/mfd/max77693*.h
11128
11129 MAXIRADIO FM RADIO RECEIVER DRIVER
11130 M:      Hans Verkuil <hverkuil@xs4all.nl>
11131 L:      linux-media@vger.kernel.org
11132 S:      Maintained
11133 W:      https://linuxtv.org
11134 T:      git git://linuxtv.org/media_tree.git
11135 F:      drivers/media/radio/radio-maxiradio*
11136
11137 MCAN MMIO DEVICE DRIVER
11138 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11139 L:      linux-can@vger.kernel.org
11140 S:      Maintained
11141 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11142 F:      drivers/net/can/m_can/m_can.c
11143 F:      drivers/net/can/m_can/m_can.h
11144 F:      drivers/net/can/m_can/m_can_platform.c
11145
11146 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11147 M:      Rishi Gupta <gupt21@gmail.com>
11148 L:      linux-i2c@vger.kernel.org
11149 L:      linux-input@vger.kernel.org
11150 S:      Maintained
11151 F:      drivers/hid/hid-mcp2221.c
11152
11153 MCP251XFD SPI-CAN NETWORK DRIVER
11154 M:      Marc Kleine-Budde <mkl@pengutronix.de>
11155 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11156 R:      Thomas Kopp <thomas.kopp@microchip.com>
11157 L:      linux-can@vger.kernel.org
11158 S:      Maintained
11159 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11160 F:      drivers/net/can/spi/mcp251xfd/
11161
11162 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11163 M:      Peter Rosin <peda@axentia.se>
11164 L:      linux-iio@vger.kernel.org
11165 S:      Maintained
11166 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11167 F:      drivers/iio/potentiometer/mcp4018.c
11168 F:      drivers/iio/potentiometer/mcp4531.c
11169
11170 MCR20A IEEE-802.15.4 RADIO DRIVER
11171 M:      Xue Liu <liuxuenetmail@gmail.com>
11172 L:      linux-wpan@vger.kernel.org
11173 S:      Maintained
11174 W:      https://github.com/xueliu/mcr20a-linux
11175 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11176 F:      drivers/net/ieee802154/mcr20a.c
11177 F:      drivers/net/ieee802154/mcr20a.h
11178
11179 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11180 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
11181 L:      linux-iio@vger.kernel.org
11182 S:      Maintained
11183 F:      drivers/iio/dac/cio-dac.c
11184
11185 MEDIA CONTROLLER FRAMEWORK
11186 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11187 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11188 L:      linux-media@vger.kernel.org
11189 S:      Supported
11190 W:      https://www.linuxtv.org
11191 T:      git git://linuxtv.org/media_tree.git
11192 F:      drivers/media/mc/
11193 F:      include/media/media-*.h
11194 F:      include/uapi/linux/media.h
11195
11196 MEDIA DRIVER FOR FREESCALE IMX PXP
11197 M:      Philipp Zabel <p.zabel@pengutronix.de>
11198 L:      linux-media@vger.kernel.org
11199 S:      Maintained
11200 T:      git git://linuxtv.org/media_tree.git
11201 F:      drivers/media/platform/imx-pxp.[ch]
11202
11203 MEDIA DRIVERS FOR ASCOT2E
11204 M:      Sergey Kozlov <serjk@netup.ru>
11205 M:      Abylay Ospan <aospan@netup.ru>
11206 L:      linux-media@vger.kernel.org
11207 S:      Supported
11208 W:      https://linuxtv.org
11209 W:      http://netup.tv/
11210 T:      git git://linuxtv.org/media_tree.git
11211 F:      drivers/media/dvb-frontends/ascot2e*
11212
11213 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11214 M:      Jasmin Jessich <jasmin@anw.at>
11215 L:      linux-media@vger.kernel.org
11216 S:      Maintained
11217 W:      https://linuxtv.org
11218 T:      git git://linuxtv.org/media_tree.git
11219 F:      drivers/media/dvb-frontends/cxd2099*
11220
11221 MEDIA DRIVERS FOR CXD2841ER
11222 M:      Sergey Kozlov <serjk@netup.ru>
11223 M:      Abylay Ospan <aospan@netup.ru>
11224 L:      linux-media@vger.kernel.org
11225 S:      Supported
11226 W:      https://linuxtv.org
11227 W:      http://netup.tv/
11228 T:      git git://linuxtv.org/media_tree.git
11229 F:      drivers/media/dvb-frontends/cxd2841er*
11230
11231 MEDIA DRIVERS FOR CXD2880
11232 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
11233 L:      linux-media@vger.kernel.org
11234 S:      Supported
11235 W:      http://linuxtv.org/
11236 T:      git git://linuxtv.org/media_tree.git
11237 F:      drivers/media/dvb-frontends/cxd2880/*
11238 F:      drivers/media/spi/cxd2880*
11239
11240 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11241 L:      linux-media@vger.kernel.org
11242 S:      Orphan
11243 W:      https://linuxtv.org
11244 T:      git git://linuxtv.org/media_tree.git
11245 F:      drivers/media/pci/ddbridge/*
11246
11247 MEDIA DRIVERS FOR FREESCALE IMX
11248 M:      Steve Longerbeam <slongerbeam@gmail.com>
11249 M:      Philipp Zabel <p.zabel@pengutronix.de>
11250 L:      linux-media@vger.kernel.org
11251 S:      Maintained
11252 T:      git git://linuxtv.org/media_tree.git
11253 F:      Documentation/admin-guide/media/imx.rst
11254 F:      Documentation/devicetree/bindings/media/imx.txt
11255 F:      drivers/staging/media/imx/
11256 F:      include/linux/imx-media.h
11257 F:      include/media/imx.h
11258
11259 MEDIA DRIVERS FOR FREESCALE IMX7
11260 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11261 L:      linux-media@vger.kernel.org
11262 S:      Maintained
11263 T:      git git://linuxtv.org/media_tree.git
11264 F:      Documentation/admin-guide/media/imx7.rst
11265 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11266 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11267 F:      drivers/staging/media/imx/imx7-media-csi.c
11268 F:      drivers/staging/media/imx/imx7-mipi-csis.c
11269
11270 MEDIA DRIVERS FOR HELENE
11271 M:      Abylay Ospan <aospan@netup.ru>
11272 L:      linux-media@vger.kernel.org
11273 S:      Supported
11274 W:      https://linuxtv.org
11275 W:      http://netup.tv/
11276 T:      git git://linuxtv.org/media_tree.git
11277 F:      drivers/media/dvb-frontends/helene*
11278
11279 MEDIA DRIVERS FOR HORUS3A
11280 M:      Sergey Kozlov <serjk@netup.ru>
11281 M:      Abylay Ospan <aospan@netup.ru>
11282 L:      linux-media@vger.kernel.org
11283 S:      Supported
11284 W:      https://linuxtv.org
11285 W:      http://netup.tv/
11286 T:      git git://linuxtv.org/media_tree.git
11287 F:      drivers/media/dvb-frontends/horus3a*
11288
11289 MEDIA DRIVERS FOR LNBH25
11290 M:      Sergey Kozlov <serjk@netup.ru>
11291 M:      Abylay Ospan <aospan@netup.ru>
11292 L:      linux-media@vger.kernel.org
11293 S:      Supported
11294 W:      https://linuxtv.org
11295 W:      http://netup.tv/
11296 T:      git git://linuxtv.org/media_tree.git
11297 F:      drivers/media/dvb-frontends/lnbh25*
11298
11299 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11300 L:      linux-media@vger.kernel.org
11301 S:      Orphan
11302 W:      https://linuxtv.org
11303 T:      git git://linuxtv.org/media_tree.git
11304 F:      drivers/media/dvb-frontends/mxl5xx*
11305
11306 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11307 M:      Sergey Kozlov <serjk@netup.ru>
11308 M:      Abylay Ospan <aospan@netup.ru>
11309 L:      linux-media@vger.kernel.org
11310 S:      Supported
11311 W:      https://linuxtv.org
11312 W:      http://netup.tv/
11313 T:      git git://linuxtv.org/media_tree.git
11314 F:      drivers/media/pci/netup_unidvb/*
11315
11316 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11317 M:      Dmitry Osipenko <digetx@gmail.com>
11318 L:      linux-media@vger.kernel.org
11319 L:      linux-tegra@vger.kernel.org
11320 S:      Maintained
11321 T:      git git://linuxtv.org/media_tree.git
11322 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11323 F:      drivers/staging/media/tegra-vde/
11324
11325 MEDIA DRIVERS FOR RENESAS - CEU
11326 M:      Jacopo Mondi <jacopo@jmondi.org>
11327 L:      linux-media@vger.kernel.org
11328 L:      linux-renesas-soc@vger.kernel.org
11329 S:      Supported
11330 T:      git git://linuxtv.org/media_tree.git
11331 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
11332 F:      drivers/media/platform/renesas-ceu.c
11333 F:      include/media/drv-intf/renesas-ceu.h
11334
11335 MEDIA DRIVERS FOR RENESAS - DRIF
11336 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
11337 L:      linux-media@vger.kernel.org
11338 L:      linux-renesas-soc@vger.kernel.org
11339 S:      Supported
11340 T:      git git://linuxtv.org/media_tree.git
11341 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
11342 F:      drivers/media/platform/rcar_drif.c
11343
11344 MEDIA DRIVERS FOR RENESAS - FCP
11345 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11346 L:      linux-media@vger.kernel.org
11347 L:      linux-renesas-soc@vger.kernel.org
11348 S:      Supported
11349 T:      git git://linuxtv.org/media_tree.git
11350 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11351 F:      drivers/media/platform/rcar-fcp.c
11352 F:      include/media/rcar-fcp.h
11353
11354 MEDIA DRIVERS FOR RENESAS - FDP1
11355 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11356 L:      linux-media@vger.kernel.org
11357 L:      linux-renesas-soc@vger.kernel.org
11358 S:      Supported
11359 T:      git git://linuxtv.org/media_tree.git
11360 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11361 F:      drivers/media/platform/rcar_fdp1.c
11362
11363 MEDIA DRIVERS FOR RENESAS - VIN
11364 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11365 L:      linux-media@vger.kernel.org
11366 L:      linux-renesas-soc@vger.kernel.org
11367 S:      Supported
11368 T:      git git://linuxtv.org/media_tree.git
11369 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11370 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11371 F:      drivers/media/platform/rcar-vin/
11372
11373 MEDIA DRIVERS FOR RENESAS - VSP1
11374 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11375 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11376 L:      linux-media@vger.kernel.org
11377 L:      linux-renesas-soc@vger.kernel.org
11378 S:      Supported
11379 T:      git git://linuxtv.org/media_tree.git
11380 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11381 F:      drivers/media/platform/vsp1/
11382
11383 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11384 L:      linux-media@vger.kernel.org
11385 S:      Orphan
11386 W:      https://linuxtv.org
11387 T:      git git://linuxtv.org/media_tree.git
11388 F:      drivers/media/dvb-frontends/stv0910*
11389
11390 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11391 L:      linux-media@vger.kernel.org
11392 S:      Orphan
11393 W:      https://linuxtv.org
11394 T:      git git://linuxtv.org/media_tree.git
11395 F:      drivers/media/dvb-frontends/stv6111*
11396
11397 MEDIA DRIVERS FOR STM32 - DCMI
11398 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
11399 L:      linux-media@vger.kernel.org
11400 S:      Supported
11401 T:      git git://linuxtv.org/media_tree.git
11402 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11403 F:      drivers/media/platform/stm32/stm32-dcmi.c
11404
11405 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11406 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11407 L:      linux-media@vger.kernel.org
11408 S:      Maintained
11409 W:      https://linuxtv.org
11410 Q:      http://patchwork.kernel.org/project/linux-media/list/
11411 T:      git git://linuxtv.org/media_tree.git
11412 F:      Documentation/admin-guide/media/
11413 F:      Documentation/devicetree/bindings/media/
11414 F:      Documentation/driver-api/media/
11415 F:      Documentation/userspace-api/media/
11416 F:      drivers/media/
11417 F:      drivers/staging/media/
11418 F:      include/linux/platform_data/media/
11419 F:      include/media/
11420 F:      include/uapi/linux/dvb/
11421 F:      include/uapi/linux/ivtv*
11422 F:      include/uapi/linux/media.h
11423 F:      include/uapi/linux/meye.h
11424 F:      include/uapi/linux/uvcvideo.h
11425 F:      include/uapi/linux/v4l2-*
11426 F:      include/uapi/linux/videodev2.h
11427
11428 MEDIATEK BLUETOOTH DRIVER
11429 M:      Sean Wang <sean.wang@mediatek.com>
11430 L:      linux-bluetooth@vger.kernel.org
11431 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11432 S:      Maintained
11433 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11434 F:      drivers/bluetooth/btmtkuart.c
11435
11436 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11437 M:      Sean Wang <sean.wang@mediatek.com>
11438 L:      linux-pm@vger.kernel.org
11439 S:      Maintained
11440 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11441 F:      drivers/power/reset/mt6323-poweroff.c
11442
11443 MEDIATEK CIR DRIVER
11444 M:      Sean Wang <sean.wang@mediatek.com>
11445 S:      Maintained
11446 F:      drivers/media/rc/mtk-cir.c
11447
11448 MEDIATEK DMA DRIVER
11449 M:      Sean Wang <sean.wang@mediatek.com>
11450 L:      dmaengine@vger.kernel.org
11451 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11452 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11453 S:      Maintained
11454 F:      Documentation/devicetree/bindings/dma/mtk-*
11455 F:      drivers/dma/mediatek/
11456
11457 MEDIATEK ETHERNET DRIVER
11458 M:      Felix Fietkau <nbd@nbd.name>
11459 M:      John Crispin <john@phrozen.org>
11460 M:      Sean Wang <sean.wang@mediatek.com>
11461 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11462 L:      netdev@vger.kernel.org
11463 S:      Maintained
11464 F:      drivers/net/ethernet/mediatek/
11465
11466 MEDIATEK I2C CONTROLLER DRIVER
11467 M:      Qii Wang <qii.wang@mediatek.com>
11468 L:      linux-i2c@vger.kernel.org
11469 S:      Maintained
11470 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11471 F:      drivers/i2c/busses/i2c-mt65xx.c
11472
11473 MEDIATEK IOMMU DRIVER
11474 M:      Yong Wu <yong.wu@mediatek.com>
11475 L:      iommu@lists.linux-foundation.org
11476 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11477 S:      Supported
11478 F:      Documentation/devicetree/bindings/iommu/mediatek*
11479 F:      drivers/iommu/mtk_iommu*
11480 F:      include/dt-bindings/memory/mt*-port.h
11481
11482 MEDIATEK JPEG DRIVER
11483 M:      Rick Chang <rick.chang@mediatek.com>
11484 M:      Bin Liu <bin.liu@mediatek.com>
11485 S:      Supported
11486 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11487 F:      drivers/media/platform/mtk-jpeg/
11488
11489 MEDIATEK MDP DRIVER
11490 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11491 M:      Houlong Wei <houlong.wei@mediatek.com>
11492 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11493 S:      Supported
11494 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11495 F:      drivers/media/platform/mtk-mdp/
11496 F:      drivers/media/platform/mtk-vpu/
11497
11498 MEDIATEK MEDIA DRIVER
11499 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11500 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11501 S:      Supported
11502 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11503 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11504 F:      drivers/media/platform/mtk-vcodec/
11505 F:      drivers/media/platform/mtk-vpu/
11506
11507 MEDIATEK MMC/SD/SDIO DRIVER
11508 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11509 S:      Maintained
11510 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
11511 F:      drivers/mmc/host/mtk-sd.c
11512
11513 MEDIATEK MT76 WIRELESS LAN DRIVER
11514 M:      Felix Fietkau <nbd@nbd.name>
11515 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11516 R:      Ryder Lee <ryder.lee@mediatek.com>
11517 L:      linux-wireless@vger.kernel.org
11518 S:      Maintained
11519 F:      drivers/net/wireless/mediatek/mt76/
11520
11521 MEDIATEK MT7601U WIRELESS LAN DRIVER
11522 M:      Jakub Kicinski <kubakici@wp.pl>
11523 L:      linux-wireless@vger.kernel.org
11524 S:      Maintained
11525 F:      drivers/net/wireless/mediatek/mt7601u/
11526
11527 MEDIATEK MT7621 CLOCK DRIVER
11528 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11529 S:      Maintained
11530 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
11531 F:      drivers/clk/ralink/clk-mt7621.c
11532
11533 MEDIATEK MT7621/28/88 I2C DRIVER
11534 M:      Stefan Roese <sr@denx.de>
11535 L:      linux-i2c@vger.kernel.org
11536 S:      Maintained
11537 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11538 F:      drivers/i2c/busses/i2c-mt7621.c
11539
11540 MEDIATEK MT7621 PHY PCI DRIVER
11541 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11542 S:      Maintained
11543 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11544 F:      drivers/phy/ralink/phy-mt7621-pci.c
11545
11546 MEDIATEK NAND CONTROLLER DRIVER
11547 L:      linux-mtd@lists.infradead.org
11548 S:      Orphan
11549 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11550 F:      drivers/mtd/nand/raw/mtk_*
11551
11552 MEDIATEK PMIC LED DRIVER
11553 M:      Sean Wang <sean.wang@mediatek.com>
11554 S:      Maintained
11555 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11556 F:      drivers/leds/leds-mt6323.c
11557
11558 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11559 M:      Sean Wang <sean.wang@mediatek.com>
11560 S:      Maintained
11561 F:      drivers/char/hw_random/mtk-rng.c
11562
11563 MEDIATEK SWITCH DRIVER
11564 M:      Sean Wang <sean.wang@mediatek.com>
11565 M:      Landen Chao <Landen.Chao@mediatek.com>
11566 L:      netdev@vger.kernel.org
11567 S:      Maintained
11568 F:      drivers/net/dsa/mt7530.*
11569 F:      net/dsa/tag_mtk.c
11570
11571 MEDIATEK USB3 DRD IP DRIVER
11572 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
11573 L:      linux-usb@vger.kernel.org
11574 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11575 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11576 S:      Maintained
11577 F:      Documentation/devicetree/bindings/usb/mediatek,*
11578 F:      drivers/usb/host/xhci-mtk*
11579 F:      drivers/usb/mtu3/
11580
11581 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11582 M:      Peter Senna Tschudin <peter.senna@gmail.com>
11583 M:      Martin Donnelly <martin.donnelly@ge.com>
11584 M:      Martyn Welch <martyn.welch@collabora.co.uk>
11585 S:      Maintained
11586 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11587 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11588
11589 MEGARAID SCSI/SAS DRIVERS
11590 M:      Kashyap Desai <kashyap.desai@broadcom.com>
11591 M:      Sumit Saxena <sumit.saxena@broadcom.com>
11592 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11593 L:      megaraidlinux.pdl@broadcom.com
11594 L:      linux-scsi@vger.kernel.org
11595 S:      Maintained
11596 W:      http://www.avagotech.com/support/
11597 F:      Documentation/scsi/megaraid.rst
11598 F:      drivers/scsi/megaraid.*
11599 F:      drivers/scsi/megaraid/
11600
11601 MELEXIS MLX90614 DRIVER
11602 M:      Crt Mori <cmo@melexis.com>
11603 L:      linux-iio@vger.kernel.org
11604 S:      Supported
11605 W:      http://www.melexis.com
11606 F:      drivers/iio/temperature/mlx90614.c
11607
11608 MELEXIS MLX90632 DRIVER
11609 M:      Crt Mori <cmo@melexis.com>
11610 L:      linux-iio@vger.kernel.org
11611 S:      Supported
11612 W:      http://www.melexis.com
11613 F:      drivers/iio/temperature/mlx90632.c
11614
11615 MELFAS MIP4 TOUCHSCREEN DRIVER
11616 M:      Sangwon Jee <jeesw@melfas.com>
11617 S:      Supported
11618 W:      http://www.melfas.com
11619 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11620 F:      drivers/input/touchscreen/melfas_mip4.c
11621
11622 MELLANOX BLUEFIELD I2C DRIVER
11623 M:      Khalil Blaiech <kblaiech@nvidia.com>
11624 L:      linux-i2c@vger.kernel.org
11625 S:      Supported
11626 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
11627 F:      drivers/i2c/busses/i2c-mlxbf.c
11628
11629 MELLANOX ETHERNET DRIVER (mlx4_en)
11630 M:      Tariq Toukan <tariqt@nvidia.com>
11631 L:      netdev@vger.kernel.org
11632 S:      Supported
11633 W:      http://www.mellanox.com
11634 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11635 F:      drivers/net/ethernet/mellanox/mlx4/en_*
11636
11637 MELLANOX ETHERNET DRIVER (mlx5e)
11638 M:      Saeed Mahameed <saeedm@nvidia.com>
11639 L:      netdev@vger.kernel.org
11640 S:      Supported
11641 W:      http://www.mellanox.com
11642 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11643 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
11644
11645 MELLANOX ETHERNET INNOVA DRIVERS
11646 R:      Boris Pismenny <borisp@nvidia.com>
11647 L:      netdev@vger.kernel.org
11648 S:      Supported
11649 W:      http://www.mellanox.com
11650 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11651 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
11652 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
11653 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
11654 F:      include/linux/mlx5/mlx5_ifc_fpga.h
11655
11656 MELLANOX ETHERNET SWITCH DRIVERS
11657 M:      Jiri Pirko <jiri@nvidia.com>
11658 M:      Ido Schimmel <idosch@nvidia.com>
11659 L:      netdev@vger.kernel.org
11660 S:      Supported
11661 W:      http://www.mellanox.com
11662 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11663 F:      drivers/net/ethernet/mellanox/mlxsw/
11664 F:      tools/testing/selftests/drivers/net/mlxsw/
11665
11666 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
11667 M:      mlxsw@nvidia.com
11668 L:      netdev@vger.kernel.org
11669 S:      Supported
11670 W:      http://www.mellanox.com
11671 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11672 F:      drivers/net/ethernet/mellanox/mlxfw/
11673
11674 MELLANOX HARDWARE PLATFORM SUPPORT
11675 M:      Hans de Goede <hdegoede@redhat.com>
11676 M:      Mark Gross <mgross@linux.intel.com>
11677 M:      Vadim Pasternak <vadimp@nvidia.com>
11678 L:      platform-driver-x86@vger.kernel.org
11679 S:      Supported
11680 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
11681 F:      drivers/platform/mellanox/
11682 F:      include/linux/platform_data/mlxreg.h
11683
11684 MELLANOX MLX4 core VPI driver
11685 M:      Tariq Toukan <tariqt@nvidia.com>
11686 L:      netdev@vger.kernel.org
11687 L:      linux-rdma@vger.kernel.org
11688 S:      Supported
11689 W:      http://www.mellanox.com
11690 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11691 F:      drivers/net/ethernet/mellanox/mlx4/
11692 F:      include/linux/mlx4/
11693
11694 MELLANOX MLX4 IB driver
11695 M:      Yishai Hadas <yishaih@nvidia.com>
11696 L:      linux-rdma@vger.kernel.org
11697 S:      Supported
11698 W:      http://www.mellanox.com
11699 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11700 F:      drivers/infiniband/hw/mlx4/
11701 F:      include/linux/mlx4/
11702 F:      include/uapi/rdma/mlx4-abi.h
11703
11704 MELLANOX MLX5 core VPI driver
11705 M:      Saeed Mahameed <saeedm@nvidia.com>
11706 M:      Leon Romanovsky <leonro@nvidia.com>
11707 L:      netdev@vger.kernel.org
11708 L:      linux-rdma@vger.kernel.org
11709 S:      Supported
11710 W:      http://www.mellanox.com
11711 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11712 F:      Documentation/networking/device_drivers/ethernet/mellanox/
11713 F:      drivers/net/ethernet/mellanox/mlx5/core/
11714 F:      include/linux/mlx5/
11715
11716 MELLANOX MLX5 IB driver
11717 M:      Leon Romanovsky <leonro@nvidia.com>
11718 L:      linux-rdma@vger.kernel.org
11719 S:      Supported
11720 W:      http://www.mellanox.com
11721 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11722 F:      drivers/infiniband/hw/mlx5/
11723 F:      include/linux/mlx5/
11724 F:      include/uapi/rdma/mlx5-abi.h
11725
11726 MELLANOX MLXCPLD I2C AND MUX DRIVER
11727 M:      Vadim Pasternak <vadimp@nvidia.com>
11728 M:      Michael Shych <michaelsh@nvidia.com>
11729 L:      linux-i2c@vger.kernel.org
11730 S:      Supported
11731 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11732 F:      drivers/i2c/busses/i2c-mlxcpld.c
11733 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11734
11735 MELLANOX MLXCPLD LED DRIVER
11736 M:      Vadim Pasternak <vadimp@nvidia.com>
11737 L:      linux-leds@vger.kernel.org
11738 S:      Supported
11739 F:      Documentation/leds/leds-mlxcpld.rst
11740 F:      drivers/leds/leds-mlxcpld.c
11741 F:      drivers/leds/leds-mlxreg.c
11742
11743 MELLANOX PLATFORM DRIVER
11744 M:      Vadim Pasternak <vadimp@nvidia.com>
11745 L:      platform-driver-x86@vger.kernel.org
11746 S:      Supported
11747 F:      drivers/platform/x86/mlx-platform.c
11748
11749 MEMBARRIER SUPPORT
11750 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11751 M:      "Paul E. McKenney" <paulmck@kernel.org>
11752 L:      linux-kernel@vger.kernel.org
11753 S:      Supported
11754 F:      arch/powerpc/include/asm/membarrier.h
11755 F:      include/uapi/linux/membarrier.h
11756 F:      kernel/sched/membarrier.c
11757
11758 MEMBLOCK
11759 M:      Mike Rapoport <rppt@linux.ibm.com>
11760 L:      linux-mm@kvack.org
11761 S:      Maintained
11762 F:      Documentation/core-api/boot-time-mm.rst
11763 F:      include/linux/memblock.h
11764 F:      mm/memblock.c
11765
11766 MEMORY CONTROLLER DRIVERS
11767 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11768 L:      linux-kernel@vger.kernel.org
11769 S:      Maintained
11770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
11771 F:      Documentation/devicetree/bindings/memory-controllers/
11772 F:      drivers/memory/
11773 F:      include/dt-bindings/memory/
11774
11775 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
11776 M:      Dmitry Osipenko <digetx@gmail.com>
11777 L:      linux-pm@vger.kernel.org
11778 L:      linux-tegra@vger.kernel.org
11779 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
11780 S:      Maintained
11781 F:      drivers/devfreq/tegra30-devfreq.c
11782
11783 MEMORY MANAGEMENT
11784 M:      Andrew Morton <akpm@linux-foundation.org>
11785 L:      linux-mm@kvack.org
11786 S:      Maintained
11787 W:      http://www.linux-mm.org
11788 T:      quilt https://ozlabs.org/~akpm/mmotm/
11789 T:      quilt https://ozlabs.org/~akpm/mmots/
11790 T:      git git://github.com/hnaz/linux-mm.git
11791 F:      include/linux/gfp.h
11792 F:      include/linux/memory_hotplug.h
11793 F:      include/linux/mm.h
11794 F:      include/linux/mmzone.h
11795 F:      include/linux/pagewalk.h
11796 F:      include/linux/vmalloc.h
11797 F:      mm/
11798
11799 MEMORY TECHNOLOGY DEVICES (MTD)
11800 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11801 M:      Richard Weinberger <richard@nod.at>
11802 M:      Vignesh Raghavendra <vigneshr@ti.com>
11803 L:      linux-mtd@lists.infradead.org
11804 S:      Maintained
11805 W:      http://www.linux-mtd.infradead.org/
11806 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11807 C:      irc://irc.oftc.net/mtd
11808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11810 F:      Documentation/devicetree/bindings/mtd/
11811 F:      drivers/mtd/
11812 F:      include/linux/mtd/
11813 F:      include/uapi/mtd/
11814
11815 MEN A21 WATCHDOG DRIVER
11816 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11817 L:      linux-watchdog@vger.kernel.org
11818 S:      Maintained
11819 F:      drivers/watchdog/mena21_wdt.c
11820
11821 MEN CHAMELEON BUS (mcb)
11822 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11823 S:      Maintained
11824 F:      Documentation/driver-api/men-chameleon-bus.rst
11825 F:      drivers/mcb/
11826 F:      include/linux/mcb.h
11827
11828 MEN F21BMC (Board Management Controller)
11829 M:      Andreas Werner <andreas.werner@men.de>
11830 S:      Supported
11831 F:      Documentation/hwmon/menf21bmc.rst
11832 F:      drivers/hwmon/menf21bmc_hwmon.c
11833 F:      drivers/leds/leds-menf21bmc.c
11834 F:      drivers/mfd/menf21bmc.c
11835 F:      drivers/watchdog/menf21bmc_wdt.c
11836
11837 MEN Z069 WATCHDOG DRIVER
11838 M:      Johannes Thumshirn <jth@kernel.org>
11839 L:      linux-watchdog@vger.kernel.org
11840 S:      Maintained
11841 F:      drivers/watchdog/menz69_wdt.c
11842
11843 MESON AO CEC DRIVER FOR AMLOGIC SOCS
11844 M:      Neil Armstrong <narmstrong@baylibre.com>
11845 L:      linux-media@vger.kernel.org
11846 L:      linux-amlogic@lists.infradead.org
11847 S:      Supported
11848 W:      http://linux-meson.com/
11849 T:      git git://linuxtv.org/media_tree.git
11850 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
11851 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
11852 F:      drivers/media/cec/platform/meson/ao-cec.c
11853
11854 MESON GE2D DRIVER FOR AMLOGIC SOCS
11855 M:      Neil Armstrong <narmstrong@baylibre.com>
11856 L:      linux-media@vger.kernel.org
11857 L:      linux-amlogic@lists.infradead.org
11858 S:      Supported
11859 T:      git git://linuxtv.org/media_tree.git
11860 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
11861 F:      drivers/media/platform/meson/ge2d/
11862
11863 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
11864 M:      Liang Yang <liang.yang@amlogic.com>
11865 L:      linux-mtd@lists.infradead.org
11866 S:      Maintained
11867 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
11868 F:      drivers/mtd/nand/raw/meson_*
11869
11870 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
11871 M:      Neil Armstrong <narmstrong@baylibre.com>
11872 L:      linux-media@vger.kernel.org
11873 L:      linux-amlogic@lists.infradead.org
11874 S:      Supported
11875 T:      git git://linuxtv.org/media_tree.git
11876 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
11877 F:      drivers/staging/media/meson/vdec/
11878
11879 METHODE UDPU SUPPORT
11880 M:      Vladimir Vid <vladimir.vid@sartura.hr>
11881 S:      Maintained
11882 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11883
11884 MHI BUS
11885 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11886 M:      Hemant Kumar <hemantk@codeaurora.org>
11887 L:      linux-arm-msm@vger.kernel.org
11888 S:      Maintained
11889 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11890 F:      Documentation/ABI/stable/sysfs-bus-mhi
11891 F:      Documentation/mhi/
11892 F:      drivers/bus/mhi/
11893 F:      include/linux/mhi.h
11894
11895 MICROBLAZE ARCHITECTURE
11896 M:      Michal Simek <monstr@monstr.eu>
11897 S:      Supported
11898 W:      http://www.monstr.eu/fdt/
11899 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11900 F:      arch/microblaze/
11901
11902 MICROCHIP AT91 DMA DRIVERS
11903 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11904 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11905 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11906 L:      dmaengine@vger.kernel.org
11907 S:      Supported
11908 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11909 F:      drivers/dma/at_hdmac.c
11910 F:      drivers/dma/at_hdmac_regs.h
11911 F:      drivers/dma/at_xdmac.c
11912 F:      include/dt-bindings/dma/at91.h
11913
11914 MICROCHIP AT91 SERIAL DRIVER
11915 M:      Richard Genoud <richard.genoud@gmail.com>
11916 S:      Maintained
11917 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11918 F:      drivers/tty/serial/atmel_serial.c
11919 F:      drivers/tty/serial/atmel_serial.h
11920
11921 MICROCHIP AT91 USART MFD DRIVER
11922 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11923 L:      linux-kernel@vger.kernel.org
11924 S:      Supported
11925 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11926 F:      drivers/mfd/at91-usart.c
11927 F:      include/dt-bindings/mfd/at91-usart.h
11928
11929 MICROCHIP AT91 USART SPI DRIVER
11930 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11931 L:      linux-spi@vger.kernel.org
11932 S:      Supported
11933 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11934 F:      drivers/spi/spi-at91-usart.c
11935
11936 MICROCHIP AUDIO ASOC DRIVERS
11937 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11938 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11939 S:      Supported
11940 F:      sound/soc/atmel
11941
11942 MICROCHIP ECC DRIVER
11943 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11944 L:      linux-crypto@vger.kernel.org
11945 S:      Maintained
11946 F:      drivers/crypto/atmel-ecc.*
11947
11948 MICROCHIP I2C DRIVER
11949 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11950 L:      linux-i2c@vger.kernel.org
11951 S:      Supported
11952 F:      drivers/i2c/busses/i2c-at91-*.c
11953 F:      drivers/i2c/busses/i2c-at91.h
11954
11955 MICROCHIP ISC DRIVER
11956 M:      Eugen Hristev <eugen.hristev@microchip.com>
11957 L:      linux-media@vger.kernel.org
11958 S:      Supported
11959 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11960 F:      drivers/media/platform/atmel/atmel-isc-base.c
11961 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11962 F:      drivers/media/platform/atmel/atmel-isc.h
11963 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11964 F:      include/linux/atmel-isc-media.h
11965
11966 MICROCHIP ISI DRIVER
11967 M:      Eugen Hristev <eugen.hristev@microchip.com>
11968 L:      linux-media@vger.kernel.org
11969 S:      Supported
11970 F:      drivers/media/platform/atmel/atmel-isi.c
11971 F:      drivers/media/platform/atmel/atmel-isi.h
11972
11973 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11974 M:      Woojung Huh <woojung.huh@microchip.com>
11975 M:      UNGLinuxDriver@microchip.com
11976 L:      netdev@vger.kernel.org
11977 S:      Maintained
11978 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
11979 F:      drivers/net/dsa/microchip/*
11980 F:      include/linux/platform_data/microchip-ksz.h
11981 F:      net/dsa/tag_ksz.c
11982
11983 MICROCHIP LAN743X ETHERNET DRIVER
11984 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
11985 M:      UNGLinuxDriver@microchip.com
11986 L:      netdev@vger.kernel.org
11987 S:      Maintained
11988 F:      drivers/net/ethernet/microchip/lan743x_*
11989
11990 MICROCHIP LCDFB DRIVER
11991 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11992 L:      linux-fbdev@vger.kernel.org
11993 S:      Maintained
11994 F:      drivers/video/fbdev/atmel_lcdfb.c
11995 F:      include/video/atmel_lcdc.h
11996
11997 MICROCHIP MCP16502 PMIC DRIVER
11998 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12000 S:      Supported
12001 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12002 F:      drivers/regulator/mcp16502.c
12003
12004 MICROCHIP MCP3911 ADC DRIVER
12005 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12006 M:      Kent Gustavsson <kent@minoris.se>
12007 L:      linux-iio@vger.kernel.org
12008 S:      Supported
12009 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12010 F:      drivers/iio/adc/mcp3911.c
12011
12012 MICROCHIP MMC/SD/SDIO MCI DRIVER
12013 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12014 S:      Maintained
12015 F:      drivers/mmc/host/atmel-mci.c
12016
12017 MICROCHIP NAND DRIVER
12018 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12019 L:      linux-mtd@lists.infradead.org
12020 S:      Supported
12021 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
12022 F:      drivers/mtd/nand/raw/atmel/*
12023
12024 MICROCHIP PWM DRIVER
12025 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12026 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12027 L:      linux-pwm@vger.kernel.org
12028 S:      Supported
12029 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12030 F:      drivers/pwm/pwm-atmel.c
12031
12032 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12033 M:      Eugen Hristev <eugen.hristev@microchip.com>
12034 L:      linux-iio@vger.kernel.org
12035 S:      Supported
12036 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12037 F:      drivers/iio/adc/at91-sama5d2_adc.c
12038 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12039
12040 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12041 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12042 S:      Supported
12043 F:      drivers/power/reset/at91-sama5d2_shdwc.c
12044
12045 MICROCHIP SPI DRIVER
12046 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12047 S:      Supported
12048 F:      drivers/spi/spi-atmel.*
12049
12050 MICROCHIP SSC DRIVER
12051 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12052 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12053 S:      Supported
12054 F:      drivers/misc/atmel-ssc.c
12055 F:      include/linux/atmel-ssc.h
12056
12057 MICROCHIP USB251XB DRIVER
12058 M:      Richard Leitner <richard.leitner@skidata.com>
12059 L:      linux-usb@vger.kernel.org
12060 S:      Maintained
12061 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
12062 F:      drivers/usb/misc/usb251xb.c
12063
12064 MICROCHIP USBA UDC DRIVER
12065 M:      Cristian Birsan <cristian.birsan@microchip.com>
12066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12067 S:      Supported
12068 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
12069
12070 MICROCHIP WILC1000 WIFI DRIVER
12071 M:      Ajay Singh <ajay.kathat@microchip.com>
12072 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12073 L:      linux-wireless@vger.kernel.org
12074 S:      Supported
12075 F:      drivers/net/wireless/microchip/wilc1000/
12076
12077 MICROSEMI MIPS SOCS
12078 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12079 M:      UNGLinuxDriver@microchip.com
12080 L:      linux-mips@vger.kernel.org
12081 S:      Supported
12082 F:      Documentation/devicetree/bindings/mips/mscc.txt
12083 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12084 F:      arch/mips/boot/dts/mscc/
12085 F:      arch/mips/configs/generic/board-ocelot.config
12086 F:      arch/mips/generic/board-ocelot.c
12087
12088 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12089 M:      Don Brace <don.brace@microchip.com>
12090 L:      storagedev@microchip.com
12091 L:      linux-scsi@vger.kernel.org
12092 S:      Supported
12093 F:      Documentation/scsi/smartpqi.rst
12094 F:      drivers/scsi/smartpqi/Kconfig
12095 F:      drivers/scsi/smartpqi/Makefile
12096 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
12097 F:      include/linux/cciss*.h
12098 F:      include/uapi/linux/cciss*.h
12099
12100 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12101 M:      Maximilian Luz <luzmaximilian@gmail.com>
12102 L:      linux-pm@vger.kernel.org
12103 L:      platform-driver-x86@vger.kernel.org
12104 S:      Maintained
12105 F:      drivers/power/supply/surface_battery.c
12106 F:      drivers/power/supply/surface_charger.c
12107
12108 MICROSOFT SURFACE DTX DRIVER
12109 M:      Maximilian Luz <luzmaximilian@gmail.com>
12110 L:      platform-driver-x86@vger.kernel.org
12111 S:      Maintained
12112 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
12113 F:      drivers/platform/surface/surface_dtx.c
12114 F:      include/uapi/linux/surface_aggregator/dtx.h
12115
12116 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12117 M:      Maximilian Luz <luzmaximilian@gmail.com>
12118 L:      platform-driver-x86@vger.kernel.org
12119 S:      Maintained
12120 F:      drivers/platform/surface/surface_gpe.c
12121
12122 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12123 M:      Hans de Goede <hdegoede@redhat.com>
12124 M:      Mark Gross <mgross@linux.intel.com>
12125 M:      Maximilian Luz <luzmaximilian@gmail.com>
12126 L:      platform-driver-x86@vger.kernel.org
12127 S:      Maintained
12128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12129 F:      drivers/platform/surface/
12130
12131 MICROSOFT SURFACE HID TRANSPORT DRIVER
12132 M:      Maximilian Luz <luzmaximilian@gmail.com>
12133 L:      linux-input@vger.kernel.org
12134 L:      platform-driver-x86@vger.kernel.org
12135 S:      Maintained
12136 F:      drivers/hid/surface-hid/
12137
12138 MICROSOFT SURFACE HOT-PLUG DRIVER
12139 M:      Maximilian Luz <luzmaximilian@gmail.com>
12140 L:      platform-driver-x86@vger.kernel.org
12141 S:      Maintained
12142 F:      drivers/platform/surface/surface_hotplug.c
12143
12144 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12145 M:      Maximilian Luz <luzmaximilian@gmail.com>
12146 L:      platform-driver-x86@vger.kernel.org
12147 S:      Maintained
12148 F:      drivers/platform/surface/surface_platform_profile.c
12149
12150 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12151 M:      Chen Yu <yu.c.chen@intel.com>
12152 L:      platform-driver-x86@vger.kernel.org
12153 S:      Supported
12154 F:      drivers/platform/surface/surfacepro3_button.c
12155
12156 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12157 M:      Maximilian Luz <luzmaximilian@gmail.com>
12158 S:      Maintained
12159 W:      https://github.com/linux-surface/surface-aggregator-module
12160 C:      irc://chat.freenode.net/##linux-surface
12161 F:      Documentation/driver-api/surface_aggregator/
12162 F:      drivers/platform/surface/aggregator/
12163 F:      drivers/platform/surface/surface_acpi_notify.c
12164 F:      drivers/platform/surface/surface_aggregator_cdev.c
12165 F:      drivers/platform/surface/surface_aggregator_registry.c
12166 F:      include/linux/surface_acpi_notify.h
12167 F:      include/linux/surface_aggregator/
12168 F:      include/uapi/linux/surface_aggregator/
12169
12170 MICROTEK X6 SCANNER
12171 M:      Oliver Neukum <oliver@neukum.org>
12172 S:      Maintained
12173 F:      drivers/usb/image/microtek.*
12174
12175 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12176 M:      Luka Kovacic <luka.kovacic@sartura.hr>
12177 M:      Luka Perkov <luka.perkov@sartura.hr>
12178 S:      Maintained
12179 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12180 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12181 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12182 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12183 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12184 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12185
12186 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12187 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12188 L:      linux-media@vger.kernel.org
12189 S:      Maintained
12190 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12191 F:      Documentation/driver-api/media/drivers/ccs/
12192 F:      Documentation/userspace-api/media/drivers/ccs.rst
12193 F:      drivers/media/i2c/ccs-pll.c
12194 F:      drivers/media/i2c/ccs-pll.h
12195 F:      drivers/media/i2c/ccs/
12196 F:      include/uapi/linux/ccs.h
12197 F:      include/uapi/linux/smiapp.h
12198
12199 MIPS
12200 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12201 L:      linux-mips@vger.kernel.org
12202 S:      Maintained
12203 W:      http://www.linux-mips.org/
12204 Q:      https://patchwork.kernel.org/project/linux-mips/list/
12205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12206 F:      Documentation/devicetree/bindings/mips/
12207 F:      Documentation/mips/
12208 F:      arch/mips/
12209 F:      drivers/platform/mips/
12210
12211 MIPS BOSTON DEVELOPMENT BOARD
12212 M:      Paul Burton <paulburton@kernel.org>
12213 L:      linux-mips@vger.kernel.org
12214 S:      Maintained
12215 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
12216 F:      arch/mips/boot/dts/img/boston.dts
12217 F:      arch/mips/configs/generic/board-boston.config
12218 F:      drivers/clk/imgtec/clk-boston.c
12219 F:      include/dt-bindings/clock/boston-clock.h
12220
12221 MIPS CORE DRIVERS
12222 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12223 M:      Serge Semin <fancer.lancer@gmail.com>
12224 L:      linux-mips@vger.kernel.org
12225 S:      Supported
12226 F:      drivers/bus/mips_cdmm.c
12227 F:      drivers/clocksource/mips-gic-timer.c
12228 F:      drivers/cpuidle/cpuidle-cps.c
12229 F:      drivers/irqchip/irq-mips-cpu.c
12230 F:      drivers/irqchip/irq-mips-gic.c
12231
12232 MIPS GENERIC PLATFORM
12233 M:      Paul Burton <paulburton@kernel.org>
12234 L:      linux-mips@vger.kernel.org
12235 S:      Supported
12236 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12237 F:      arch/mips/generic/
12238 F:      arch/mips/tools/generic-board-config.sh
12239
12240 MIPS RINT INSTRUCTION EMULATION
12241 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
12242 L:      linux-mips@vger.kernel.org
12243 S:      Supported
12244 F:      arch/mips/math-emu/dp_rint.c
12245 F:      arch/mips/math-emu/sp_rint.c
12246
12247 MIPS/LOONGSON1 ARCHITECTURE
12248 M:      Keguang Zhang <keguang.zhang@gmail.com>
12249 L:      linux-mips@vger.kernel.org
12250 S:      Maintained
12251 F:      arch/mips/include/asm/mach-loongson32/
12252 F:      arch/mips/loongson32/
12253 F:      drivers/*/*/*loongson1*
12254 F:      drivers/*/*loongson1*
12255
12256 MIPS/LOONGSON2EF ARCHITECTURE
12257 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12258 L:      linux-mips@vger.kernel.org
12259 S:      Maintained
12260 F:      arch/mips/include/asm/mach-loongson2ef/
12261 F:      arch/mips/loongson2ef/
12262 F:      drivers/cpufreq/loongson2_cpufreq.c
12263
12264 MIPS/LOONGSON64 ARCHITECTURE
12265 M:      Huacai Chen <chenhuacai@kernel.org>
12266 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12267 L:      linux-mips@vger.kernel.org
12268 S:      Maintained
12269 F:      arch/mips/include/asm/mach-loongson64/
12270 F:      arch/mips/loongson64/
12271 F:      drivers/irqchip/irq-loongson*
12272 F:      drivers/platform/mips/cpu_hwmon.c
12273
12274 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12275 M:      Hans Verkuil <hverkuil@xs4all.nl>
12276 L:      linux-media@vger.kernel.org
12277 S:      Odd Fixes
12278 W:      https://linuxtv.org
12279 T:      git git://linuxtv.org/media_tree.git
12280 F:      drivers/media/radio/radio-miropcm20*
12281
12282 MMP SUPPORT
12283 R:      Lubomir Rintel <lkundrak@v3.sk>
12284 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12285 S:      Odd Fixes
12286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12287 F:      arch/arm/boot/dts/mmp*
12288 F:      arch/arm/mach-mmp/
12289 F:      include/linux/soc/mmp/
12290
12291 MMP USB PHY DRIVERS
12292 R:      Lubomir Rintel <lkundrak@v3.sk>
12293 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12294 S:      Maintained
12295 F:      drivers/phy/marvell/phy-mmp3-usb.c
12296 F:      drivers/phy/marvell/phy-pxa-usb.c
12297
12298 MMU GATHER AND TLB INVALIDATION
12299 M:      Will Deacon <will@kernel.org>
12300 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
12301 M:      Andrew Morton <akpm@linux-foundation.org>
12302 M:      Nick Piggin <npiggin@gmail.com>
12303 M:      Peter Zijlstra <peterz@infradead.org>
12304 L:      linux-arch@vger.kernel.org
12305 L:      linux-mm@kvack.org
12306 S:      Maintained
12307 F:      arch/*/include/asm/tlb.h
12308 F:      include/asm-generic/tlb.h
12309 F:      mm/mmu_gather.c
12310
12311 MN88472 MEDIA DRIVER
12312 M:      Antti Palosaari <crope@iki.fi>
12313 L:      linux-media@vger.kernel.org
12314 S:      Maintained
12315 W:      https://linuxtv.org
12316 W:      http://palosaari.fi/linux/
12317 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12318 F:      drivers/media/dvb-frontends/mn88472*
12319
12320 MN88473 MEDIA DRIVER
12321 M:      Antti Palosaari <crope@iki.fi>
12322 L:      linux-media@vger.kernel.org
12323 S:      Maintained
12324 W:      https://linuxtv.org
12325 W:      http://palosaari.fi/linux/
12326 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12327 F:      drivers/media/dvb-frontends/mn88473*
12328
12329 MODULE SUPPORT
12330 M:      Jessica Yu <jeyu@kernel.org>
12331 S:      Maintained
12332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12333 F:      include/linux/module.h
12334 F:      kernel/module.c
12335
12336 MONOLITHIC POWER SYSTEM PMIC DRIVER
12337 M:      Saravanan Sekar <sravanhome@gmail.com>
12338 S:      Maintained
12339 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12340 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12341 F:      drivers/iio/adc/mp2629_adc.c
12342 F:      drivers/mfd/mp2629.c
12343 F:      drivers/power/supply/mp2629_charger.c
12344 F:      drivers/regulator/mp5416.c
12345 F:      drivers/regulator/mpq7920.c
12346 F:      drivers/regulator/mpq7920.h
12347 F:      include/linux/mfd/mp2629.h
12348
12349 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12350 S:      Orphan
12351 W:      http://popies.net/meye/
12352 F:      Documentation/userspace-api/media/drivers/meye*
12353 F:      drivers/media/pci/meye/
12354 F:      include/uapi/linux/meye.h
12355
12356 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12357 S:      Orphan
12358 F:      Documentation/driver-api/serial/moxa-smartio.rst
12359 F:      drivers/tty/mxser.*
12360
12361 MR800 AVERMEDIA USB FM RADIO DRIVER
12362 M:      Alexey Klimov <klimov.linux@gmail.com>
12363 L:      linux-media@vger.kernel.org
12364 S:      Maintained
12365 T:      git git://linuxtv.org/media_tree.git
12366 F:      drivers/media/radio/radio-mr800.c
12367
12368 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12369 M:      Alan Ott <alan@signal11.us>
12370 L:      linux-wpan@vger.kernel.org
12371 S:      Maintained
12372 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12373 F:      drivers/net/ieee802154/mrf24j40.c
12374
12375 MSI LAPTOP SUPPORT
12376 M:      "Lee, Chun-Yi" <jlee@suse.com>
12377 L:      platform-driver-x86@vger.kernel.org
12378 S:      Maintained
12379 F:      drivers/platform/x86/msi-laptop.c
12380
12381 MSI WMI SUPPORT
12382 L:      platform-driver-x86@vger.kernel.org
12383 S:      Orphan
12384 F:      drivers/platform/x86/msi-wmi.c
12385
12386 MSI001 MEDIA DRIVER
12387 M:      Antti Palosaari <crope@iki.fi>
12388 L:      linux-media@vger.kernel.org
12389 S:      Maintained
12390 W:      https://linuxtv.org
12391 W:      http://palosaari.fi/linux/
12392 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12393 T:      git git://linuxtv.org/anttip/media_tree.git
12394 F:      drivers/media/tuners/msi001*
12395
12396 MSI2500 MEDIA DRIVER
12397 M:      Antti Palosaari <crope@iki.fi>
12398 L:      linux-media@vger.kernel.org
12399 S:      Maintained
12400 W:      https://linuxtv.org
12401 W:      http://palosaari.fi/linux/
12402 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12403 T:      git git://linuxtv.org/anttip/media_tree.git
12404 F:      drivers/media/usb/msi2500/
12405
12406 MSTAR INTERRUPT CONTROLLER DRIVER
12407 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12408 M:      Daniel Palmer <daniel@thingy.jp>
12409 S:      Maintained
12410 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12411 F:      drivers/irqchip/irq-mst-intc.c
12412
12413 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12414 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12415 L:      linux-mtd@lists.infradead.org
12416 S:      Maintained
12417 F:      drivers/mtd/devices/docg3*
12418
12419 MT9M032 APTINA SENSOR DRIVER
12420 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12421 L:      linux-media@vger.kernel.org
12422 S:      Maintained
12423 T:      git git://linuxtv.org/media_tree.git
12424 F:      drivers/media/i2c/mt9m032.c
12425 F:      include/media/i2c/mt9m032.h
12426
12427 MT9P031 APTINA CAMERA SENSOR
12428 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12429 L:      linux-media@vger.kernel.org
12430 S:      Maintained
12431 T:      git git://linuxtv.org/media_tree.git
12432 F:      drivers/media/i2c/mt9p031.c
12433 F:      include/media/i2c/mt9p031.h
12434
12435 MT9T001 APTINA CAMERA SENSOR
12436 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12437 L:      linux-media@vger.kernel.org
12438 S:      Maintained
12439 T:      git git://linuxtv.org/media_tree.git
12440 F:      drivers/media/i2c/mt9t001.c
12441 F:      include/media/i2c/mt9t001.h
12442
12443 MT9T112 APTINA CAMERA SENSOR
12444 M:      Jacopo Mondi <jacopo@jmondi.org>
12445 L:      linux-media@vger.kernel.org
12446 S:      Odd Fixes
12447 T:      git git://linuxtv.org/media_tree.git
12448 F:      drivers/media/i2c/mt9t112.c
12449 F:      include/media/i2c/mt9t112.h
12450
12451 MT9V032 APTINA CAMERA SENSOR
12452 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12453 L:      linux-media@vger.kernel.org
12454 S:      Maintained
12455 T:      git git://linuxtv.org/media_tree.git
12456 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12457 F:      drivers/media/i2c/mt9v032.c
12458 F:      include/media/i2c/mt9v032.h
12459
12460 MT9V111 APTINA CAMERA SENSOR
12461 M:      Jacopo Mondi <jacopo@jmondi.org>
12462 L:      linux-media@vger.kernel.org
12463 S:      Maintained
12464 T:      git git://linuxtv.org/media_tree.git
12465 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12466 F:      drivers/media/i2c/mt9v111.c
12467
12468 MULTIFUNCTION DEVICES (MFD)
12469 M:      Lee Jones <lee.jones@linaro.org>
12470 S:      Supported
12471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12472 F:      Documentation/devicetree/bindings/mfd/
12473 F:      drivers/mfd/
12474 F:      include/dt-bindings/mfd/
12475 F:      include/linux/mfd/
12476
12477 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12478 S:      Orphan
12479 F:      drivers/mmc/host/mmc_spi.c
12480 F:      include/linux/spi/mmc_spi.h
12481
12482 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12483 M:      Ulf Hansson <ulf.hansson@linaro.org>
12484 L:      linux-mmc@vger.kernel.org
12485 S:      Maintained
12486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12487 F:      Documentation/devicetree/bindings/mmc/
12488 F:      drivers/mmc/
12489 F:      include/linux/mmc/
12490 F:      include/uapi/linux/mmc/
12491
12492 MULTIPLEXER SUBSYSTEM
12493 M:      Peter Rosin <peda@axentia.se>
12494 S:      Maintained
12495 F:      Documentation/ABI/testing/sysfs-class-mux*
12496 F:      Documentation/devicetree/bindings/mux/
12497 F:      drivers/mux/
12498 F:      include/dt-bindings/mux/
12499 F:      include/linux/mux/
12500
12501 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12502 M:      Bin Liu <b-liu@ti.com>
12503 L:      linux-usb@vger.kernel.org
12504 S:      Maintained
12505 F:      drivers/usb/musb/
12506
12507 MXL301RF MEDIA DRIVER
12508 M:      Akihiro Tsukada <tskd08@gmail.com>
12509 L:      linux-media@vger.kernel.org
12510 S:      Odd Fixes
12511 F:      drivers/media/tuners/mxl301rf*
12512
12513 MXL5007T MEDIA DRIVER
12514 M:      Michael Krufky <mkrufky@linuxtv.org>
12515 L:      linux-media@vger.kernel.org
12516 S:      Maintained
12517 W:      https://linuxtv.org
12518 W:      http://github.com/mkrufky
12519 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12520 T:      git git://linuxtv.org/mkrufky/tuners.git
12521 F:      drivers/media/tuners/mxl5007t.*
12522
12523 MXSFB DRM DRIVER
12524 M:      Marek Vasut <marex@denx.de>
12525 M:      Stefan Agner <stefan@agner.ch>
12526 L:      dri-devel@lists.freedesktop.org
12527 S:      Supported
12528 T:      git git://anongit.freedesktop.org/drm/drm-misc
12529 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
12530 F:      drivers/gpu/drm/mxsfb/
12531
12532 MYLEX DAC960 PCI RAID Controller
12533 M:      Hannes Reinecke <hare@kernel.org>
12534 L:      linux-scsi@vger.kernel.org
12535 S:      Supported
12536 F:      drivers/scsi/myrb.*
12537 F:      drivers/scsi/myrs.*
12538
12539 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12540 M:      Chris Lee <christopher.lee@cspi.com>
12541 L:      netdev@vger.kernel.org
12542 S:      Supported
12543 W:      https://www.cspi.com/ethernet-products/support/downloads/
12544 F:      drivers/net/ethernet/myricom/myri10ge/
12545
12546 NAND FLASH SUBSYSTEM
12547 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12548 R:      Richard Weinberger <richard@nod.at>
12549 L:      linux-mtd@lists.infradead.org
12550 S:      Maintained
12551 W:      http://www.linux-mtd.infradead.org/
12552 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12553 C:      irc://irc.oftc.net/mtd
12554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12555 F:      drivers/mtd/nand/
12556 F:      include/linux/mtd/*nand*.h
12557
12558 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12559 M:      Daniel Mack <zonque@gmail.com>
12560 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12561 S:      Maintained
12562 W:      http://www.native-instruments.com
12563 F:      sound/usb/caiaq/
12564
12565 NATSEMI ETHERNET DRIVER (DP8381x)
12566 S:      Orphan
12567 F:      drivers/net/ethernet/natsemi/natsemi.c
12568
12569 NCR 5380 SCSI DRIVERS
12570 M:      Finn Thain <fthain@telegraphics.com.au>
12571 M:      Michael Schmitz <schmitzmic@gmail.com>
12572 L:      linux-scsi@vger.kernel.org
12573 S:      Maintained
12574 F:      Documentation/scsi/g_NCR5380.rst
12575 F:      drivers/scsi/NCR5380.*
12576 F:      drivers/scsi/arm/cumana_1.c
12577 F:      drivers/scsi/arm/oak.c
12578 F:      drivers/scsi/atari_scsi.*
12579 F:      drivers/scsi/dmx3191d.c
12580 F:      drivers/scsi/g_NCR5380.*
12581 F:      drivers/scsi/mac_scsi.*
12582 F:      drivers/scsi/sun3_scsi.*
12583 F:      drivers/scsi/sun3_scsi_vme.c
12584
12585 NCSI LIBRARY
12586 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
12587 S:      Maintained
12588 F:      net/ncsi/
12589
12590 NCT6775 HARDWARE MONITOR DRIVER
12591 M:      Guenter Roeck <linux@roeck-us.net>
12592 L:      linux-hwmon@vger.kernel.org
12593 S:      Maintained
12594 F:      Documentation/hwmon/nct6775.rst
12595 F:      drivers/hwmon/nct6775.c
12596
12597 NETDEVSIM
12598 M:      Jakub Kicinski <kuba@kernel.org>
12599 S:      Maintained
12600 F:      drivers/net/netdevsim/*
12601
12602 NETEM NETWORK EMULATOR
12603 M:      Stephen Hemminger <stephen@networkplumber.org>
12604 L:      netdev@vger.kernel.org
12605 S:      Maintained
12606 F:      net/sched/sch_netem.c
12607
12608 NETERION 10GbE DRIVERS (s2io/vxge)
12609 M:      Jon Mason <jdmason@kudzu.us>
12610 L:      netdev@vger.kernel.org
12611 S:      Supported
12612 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12613 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12614 F:      drivers/net/ethernet/neterion/
12615
12616 NETFILTER
12617 M:      Pablo Neira Ayuso <pablo@netfilter.org>
12618 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
12619 M:      Florian Westphal <fw@strlen.de>
12620 L:      netfilter-devel@vger.kernel.org
12621 L:      coreteam@netfilter.org
12622 S:      Maintained
12623 W:      http://www.netfilter.org/
12624 W:      http://www.iptables.org/
12625 W:      http://www.nftables.org/
12626 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
12627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
12628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
12629 F:      include/linux/netfilter*
12630 F:      include/linux/netfilter/
12631 F:      include/net/netfilter/
12632 F:      include/uapi/linux/netfilter*
12633 F:      include/uapi/linux/netfilter/
12634 F:      net/*/netfilter.c
12635 F:      net/*/netfilter/
12636 F:      net/bridge/br_netfilter*.c
12637 F:      net/netfilter/
12638
12639 NETROM NETWORK LAYER
12640 M:      Ralf Baechle <ralf@linux-mips.org>
12641 L:      linux-hams@vger.kernel.org
12642 S:      Maintained
12643 W:      http://www.linux-ax25.org/
12644 F:      include/net/netrom.h
12645 F:      include/uapi/linux/netrom.h
12646 F:      net/netrom/
12647
12648 NETRONIX EMBEDDED CONTROLLER
12649 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
12650 S:      Maintained
12651 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
12652 F:      drivers/mfd/ntxec.c
12653 F:      drivers/pwm/pwm-ntxec.c
12654 F:      drivers/rtc/rtc-ntxec.c
12655 F:      include/linux/mfd/ntxec.h
12656
12657 NETRONOME ETHERNET DRIVERS
12658 M:      Simon Horman <simon.horman@netronome.com>
12659 R:      Jakub Kicinski <kuba@kernel.org>
12660 L:      oss-drivers@netronome.com
12661 S:      Maintained
12662 F:      drivers/net/ethernet/netronome/
12663
12664 NETWORK BLOCK DEVICE (NBD)
12665 M:      Josef Bacik <josef@toxicpanda.com>
12666 L:      linux-block@vger.kernel.org
12667 L:      nbd@other.debian.org
12668 S:      Maintained
12669 F:      Documentation/admin-guide/blockdev/nbd.rst
12670 F:      drivers/block/nbd.c
12671 F:      include/trace/events/nbd.h
12672 F:      include/uapi/linux/nbd.h
12673
12674 NETWORK DROP MONITOR
12675 M:      Neil Horman <nhorman@tuxdriver.com>
12676 L:      netdev@vger.kernel.org
12677 S:      Maintained
12678 W:      https://fedorahosted.org/dropwatch/
12679 F:      include/uapi/linux/net_dropmon.h
12680 F:      net/core/drop_monitor.c
12681
12682 NETWORKING DRIVERS
12683 M:      "David S. Miller" <davem@davemloft.net>
12684 M:      Jakub Kicinski <kuba@kernel.org>
12685 L:      netdev@vger.kernel.org
12686 S:      Maintained
12687 W:      http://www.linuxfoundation.org/en/Net
12688 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12691 F:      Documentation/devicetree/bindings/net/
12692 F:      drivers/connector/
12693 F:      drivers/net/
12694 F:      include/linux/etherdevice.h
12695 F:      include/linux/fcdevice.h
12696 F:      include/linux/fddidevice.h
12697 F:      include/linux/hippidevice.h
12698 F:      include/linux/if_*
12699 F:      include/linux/inetdevice.h
12700 F:      include/linux/netdevice.h
12701 F:      include/uapi/linux/if_*
12702 F:      include/uapi/linux/netdevice.h
12703
12704 NETWORKING DRIVERS (WIRELESS)
12705 M:      Kalle Valo <kvalo@codeaurora.org>
12706 L:      linux-wireless@vger.kernel.org
12707 S:      Maintained
12708 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
12710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
12711 F:      Documentation/devicetree/bindings/net/wireless/
12712 F:      drivers/net/wireless/
12713
12714 NETWORKING [DSA]
12715 M:      Andrew Lunn <andrew@lunn.ch>
12716 M:      Vivien Didelot <vivien.didelot@gmail.com>
12717 M:      Florian Fainelli <f.fainelli@gmail.com>
12718 M:      Vladimir Oltean <olteanv@gmail.com>
12719 S:      Maintained
12720 F:      Documentation/devicetree/bindings/net/dsa/
12721 F:      drivers/net/dsa/
12722 F:      include/linux/dsa/
12723 F:      include/linux/platform_data/dsa.h
12724 F:      include/net/dsa.h
12725 F:      net/dsa/
12726
12727 NETWORKING [GENERAL]
12728 M:      "David S. Miller" <davem@davemloft.net>
12729 M:      Jakub Kicinski <kuba@kernel.org>
12730 L:      netdev@vger.kernel.org
12731 S:      Maintained
12732 W:      http://www.linuxfoundation.org/en/Net
12733 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12734 B:      mailto:netdev@vger.kernel.org
12735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12737 F:      Documentation/networking/
12738 F:      include/linux/in.h
12739 F:      include/linux/net.h
12740 F:      include/linux/netdevice.h
12741 F:      include/net/
12742 F:      include/uapi/linux/in.h
12743 F:      include/uapi/linux/net.h
12744 F:      include/uapi/linux/net_namespace.h
12745 F:      include/uapi/linux/netdevice.h
12746 F:      lib/net_utils.c
12747 F:      lib/random32.c
12748 F:      net/
12749 F:      tools/testing/selftests/net/
12750
12751 NETWORKING [IPSEC]
12752 M:      Steffen Klassert <steffen.klassert@secunet.com>
12753 M:      Herbert Xu <herbert@gondor.apana.org.au>
12754 M:      "David S. Miller" <davem@davemloft.net>
12755 L:      netdev@vger.kernel.org
12756 S:      Maintained
12757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
12758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
12759 F:      include/net/xfrm.h
12760 F:      include/uapi/linux/xfrm.h
12761 F:      net/ipv4/ah4.c
12762 F:      net/ipv4/esp4*
12763 F:      net/ipv4/ip_vti.c
12764 F:      net/ipv4/ipcomp.c
12765 F:      net/ipv4/xfrm*
12766 F:      net/ipv6/ah6.c
12767 F:      net/ipv6/esp6*
12768 F:      net/ipv6/ip6_vti.c
12769 F:      net/ipv6/ipcomp6.c
12770 F:      net/ipv6/xfrm*
12771 F:      net/key/
12772 F:      net/xfrm/
12773 F:      tools/testing/selftests/net/ipsec.c
12774
12775 NETWORKING [IPv4/IPv6]
12776 M:      "David S. Miller" <davem@davemloft.net>
12777 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
12778 M:      David Ahern <dsahern@kernel.org>
12779 L:      netdev@vger.kernel.org
12780 S:      Maintained
12781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12782 F:      arch/x86/net/*
12783 F:      include/net/ip*
12784 F:      net/ipv4/
12785 F:      net/ipv6/
12786
12787 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
12788 M:      Paul Moore <paul@paul-moore.com>
12789 L:      netdev@vger.kernel.org
12790 L:      linux-security-module@vger.kernel.org
12791 S:      Maintained
12792 W:      https://github.com/netlabel
12793 F:      Documentation/netlabel/
12794 F:      include/net/calipso.h
12795 F:      include/net/cipso_ipv4.h
12796 F:      include/net/netlabel.h
12797 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
12798 F:      include/uapi/linux/netfilter/xt_SECMARK.h
12799 F:      net/ipv4/cipso_ipv4.c
12800 F:      net/ipv6/calipso.c
12801 F:      net/netfilter/xt_CONNSECMARK.c
12802 F:      net/netfilter/xt_SECMARK.c
12803 F:      net/netlabel/
12804
12805 NETWORKING [MPTCP]
12806 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
12807 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
12808 L:      netdev@vger.kernel.org
12809 L:      mptcp@lists.linux.dev
12810 S:      Maintained
12811 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
12812 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
12813 F:      Documentation/networking/mptcp-sysctl.rst
12814 F:      include/net/mptcp.h
12815 F:      include/trace/events/mptcp.h
12816 F:      include/uapi/linux/mptcp.h
12817 F:      net/mptcp/
12818 F:      tools/testing/selftests/net/mptcp/
12819
12820 NETWORKING [TCP]
12821 M:      Eric Dumazet <edumazet@google.com>
12822 L:      netdev@vger.kernel.org
12823 S:      Maintained
12824 F:      include/linux/tcp.h
12825 F:      include/net/tcp.h
12826 F:      include/trace/events/tcp.h
12827 F:      include/uapi/linux/tcp.h
12828 F:      net/ipv4/syncookies.c
12829 F:      net/ipv4/tcp*.c
12830 F:      net/ipv6/syncookies.c
12831 F:      net/ipv6/tcp*.c
12832
12833 NETWORKING [TLS]
12834 M:      Boris Pismenny <borisp@nvidia.com>
12835 M:      John Fastabend <john.fastabend@gmail.com>
12836 M:      Daniel Borkmann <daniel@iogearbox.net>
12837 M:      Jakub Kicinski <kuba@kernel.org>
12838 L:      netdev@vger.kernel.org
12839 S:      Maintained
12840 F:      include/net/tls.h
12841 F:      include/uapi/linux/tls.h
12842 F:      net/tls/*
12843
12844 NETWORKING [WIRELESS]
12845 L:      linux-wireless@vger.kernel.org
12846 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12847
12848 NETXEN (1/10) GbE SUPPORT
12849 M:      Manish Chopra <manishc@marvell.com>
12850 M:      Rahul Verma <rahulv@marvell.com>
12851 M:      GR-Linux-NIC-Dev@marvell.com
12852 L:      netdev@vger.kernel.org
12853 S:      Supported
12854 F:      drivers/net/ethernet/qlogic/netxen/
12855
12856 NET_FAILOVER MODULE
12857 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
12858 L:      netdev@vger.kernel.org
12859 S:      Supported
12860 F:      Documentation/networking/net_failover.rst
12861 F:      drivers/net/net_failover.c
12862 F:      include/net/net_failover.h
12863
12864 NEXTHOP
12865 M:      David Ahern <dsahern@kernel.org>
12866 L:      netdev@vger.kernel.org
12867 S:      Maintained
12868 F:      include/net/netns/nexthop.h
12869 F:      include/net/nexthop.h
12870 F:      include/uapi/linux/nexthop.h
12871 F:      net/ipv4/nexthop.c
12872
12873 NFC SUBSYSTEM
12874 L:      netdev@vger.kernel.org
12875 S:      Orphan
12876 F:      Documentation/devicetree/bindings/net/nfc/
12877 F:      drivers/nfc/
12878 F:      include/linux/platform_data/nfcmrvl.h
12879 F:      include/net/nfc/
12880 F:      include/uapi/linux/nfc.h
12881 F:      net/nfc/
12882
12883 NFC VIRTUAL NCI DEVICE DRIVER
12884 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
12885 L:      netdev@vger.kernel.org
12886 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12887 S:      Supported
12888 F:      drivers/nfc/virtual_ncidev.c
12889 F:      tools/testing/selftests/nci/
12890
12891 NFS, SUNRPC, AND LOCKD CLIENTS
12892 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
12893 M:      Anna Schumaker <anna.schumaker@netapp.com>
12894 L:      linux-nfs@vger.kernel.org
12895 S:      Maintained
12896 W:      http://client.linux-nfs.org
12897 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
12898 F:      fs/lockd/
12899 F:      fs/nfs/
12900 F:      fs/nfs_common/
12901 F:      include/linux/lockd/
12902 F:      include/linux/nfs*
12903 F:      include/linux/sunrpc/
12904 F:      include/uapi/linux/nfs*
12905 F:      include/uapi/linux/sunrpc/
12906 F:      net/sunrpc/
12907 F:      Documentation/filesystems/nfs/
12908
12909 NILFS2 FILESYSTEM
12910 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
12911 L:      linux-nilfs@vger.kernel.org
12912 S:      Supported
12913 W:      https://nilfs.sourceforge.io/
12914 W:      https://nilfs.osdn.jp/
12915 T:      git git://github.com/konis/nilfs2.git
12916 F:      Documentation/filesystems/nilfs2.rst
12917 F:      fs/nilfs2/
12918 F:      include/trace/events/nilfs2.h
12919 F:      include/uapi/linux/nilfs2_api.h
12920 F:      include/uapi/linux/nilfs2_ondisk.h
12921
12922 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
12923 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12924 S:      Maintained
12925 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12926 F:      Documentation/scsi/NinjaSCSI.rst
12927 F:      drivers/scsi/pcmcia/nsp_*
12928
12929 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
12930 M:      GOTO Masanori <gotom@debian.or.jp>
12931 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12932 S:      Maintained
12933 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12934 F:      Documentation/scsi/NinjaSCSI.rst
12935 F:      drivers/scsi/nsp32*
12936
12937 NIOS2 ARCHITECTURE
12938 M:      Ley Foon Tan <ley.foon.tan@intel.com>
12939 S:      Maintained
12940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
12941 F:      arch/nios2/
12942
12943 NITRO ENCLAVES (NE)
12944 M:      Andra Paraschiv <andraprs@amazon.com>
12945 M:      Alexandru Vasile <lexnv@amazon.com>
12946 M:      Alexandru Ciobotaru <alcioa@amazon.com>
12947 L:      linux-kernel@vger.kernel.org
12948 S:      Supported
12949 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
12950 F:      Documentation/virt/ne_overview.rst
12951 F:      drivers/virt/nitro_enclaves/
12952 F:      include/linux/nitro_enclaves.h
12953 F:      include/uapi/linux/nitro_enclaves.h
12954 F:      samples/nitro_enclaves/
12955
12956 NOHZ, DYNTICKS SUPPORT
12957 M:      Frederic Weisbecker <fweisbec@gmail.com>
12958 M:      Thomas Gleixner <tglx@linutronix.de>
12959 M:      Ingo Molnar <mingo@kernel.org>
12960 L:      linux-kernel@vger.kernel.org
12961 S:      Maintained
12962 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
12963 F:      include/linux/sched/nohz.h
12964 F:      include/linux/tick.h
12965 F:      kernel/time/tick*.*
12966
12967 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
12968 M:      Pavel Machek <pavel@ucw.cz>
12969 M:      Sakari Ailus <sakari.ailus@iki.fi>
12970 L:      linux-media@vger.kernel.org
12971 S:      Maintained
12972 F:      drivers/media/i2c/ad5820.c
12973 F:      drivers/media/i2c/et8ek8
12974
12975 NOKIA N900 POWER SUPPLY DRIVERS
12976 R:      Pali Rohár <pali@kernel.org>
12977 F:      drivers/power/supply/bq2415x_charger.c
12978 F:      drivers/power/supply/bq27xxx_battery.c
12979 F:      drivers/power/supply/bq27xxx_battery_i2c.c
12980 F:      drivers/power/supply/isp1704_charger.c
12981 F:      drivers/power/supply/rx51_battery.c
12982 F:      include/linux/power/bq2415x_charger.h
12983 F:      include/linux/power/bq27xxx_battery.h
12984
12985 NOLIBC HEADER FILE
12986 M:      Willy Tarreau <w@1wt.eu>
12987 S:      Maintained
12988 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
12989 F:      tools/include/nolibc/
12990
12991 NSDEPS
12992 M:      Matthias Maennich <maennich@google.com>
12993 S:      Maintained
12994 F:      Documentation/core-api/symbol-namespaces.rst
12995 F:      scripts/nsdeps
12996
12997 NTB AMD DRIVER
12998 M:      Sanjay R Mehta <sanju.mehta@amd.com>
12999 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13000 L:      linux-ntb@googlegroups.com
13001 S:      Supported
13002 F:      drivers/ntb/hw/amd/
13003
13004 NTB DRIVER CORE
13005 M:      Jon Mason <jdmason@kudzu.us>
13006 M:      Dave Jiang <dave.jiang@intel.com>
13007 M:      Allen Hubbe <allenbh@gmail.com>
13008 L:      linux-ntb@googlegroups.com
13009 S:      Supported
13010 W:      https://github.com/jonmason/ntb/wiki
13011 T:      git git://github.com/jonmason/ntb.git
13012 F:      drivers/net/ntb_netdev.c
13013 F:      drivers/ntb/
13014 F:      include/linux/ntb.h
13015 F:      include/linux/ntb_transport.h
13016 F:      tools/testing/selftests/ntb/
13017
13018 NTB IDT DRIVER
13019 M:      Serge Semin <fancer.lancer@gmail.com>
13020 L:      linux-ntb@googlegroups.com
13021 S:      Supported
13022 F:      drivers/ntb/hw/idt/
13023
13024 NTB INTEL DRIVER
13025 M:      Dave Jiang <dave.jiang@intel.com>
13026 L:      linux-ntb@googlegroups.com
13027 S:      Supported
13028 W:      https://github.com/davejiang/linux/wiki
13029 T:      git https://github.com/davejiang/linux.git
13030 F:      drivers/ntb/hw/intel/
13031
13032 NTFS FILESYSTEM
13033 M:      Anton Altaparmakov <anton@tuxera.com>
13034 L:      linux-ntfs-dev@lists.sourceforge.net
13035 S:      Supported
13036 W:      http://www.tuxera.com/
13037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13038 F:      Documentation/filesystems/ntfs.rst
13039 F:      fs/ntfs/
13040
13041 NUBUS SUBSYSTEM
13042 M:      Finn Thain <fthain@telegraphics.com.au>
13043 L:      linux-m68k@lists.linux-m68k.org
13044 S:      Maintained
13045 F:      arch/*/include/asm/nubus.h
13046 F:      drivers/nubus/
13047 F:      include/linux/nubus.h
13048 F:      include/uapi/linux/nubus.h
13049
13050 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13051 M:      Antonino Daplas <adaplas@gmail.com>
13052 L:      linux-fbdev@vger.kernel.org
13053 S:      Maintained
13054 F:      drivers/video/fbdev/nvidia/
13055 F:      drivers/video/fbdev/riva/
13056
13057 NVM EXPRESS DRIVER
13058 M:      Keith Busch <kbusch@kernel.org>
13059 M:      Jens Axboe <axboe@fb.com>
13060 M:      Christoph Hellwig <hch@lst.de>
13061 M:      Sagi Grimberg <sagi@grimberg.me>
13062 L:      linux-nvme@lists.infradead.org
13063 S:      Supported
13064 W:      http://git.infradead.org/nvme.git
13065 T:      git://git.infradead.org/nvme.git
13066 F:      drivers/nvme/host/
13067 F:      include/linux/nvme.h
13068 F:      include/uapi/linux/nvme_ioctl.h
13069
13070 NVM EXPRESS FC TRANSPORT DRIVERS
13071 M:      James Smart <james.smart@broadcom.com>
13072 L:      linux-nvme@lists.infradead.org
13073 S:      Supported
13074 F:      drivers/nvme/host/fc.c
13075 F:      drivers/nvme/target/fc.c
13076 F:      drivers/nvme/target/fcloop.c
13077 F:      include/linux/nvme-fc-driver.h
13078 F:      include/linux/nvme-fc.h
13079
13080 NVM EXPRESS TARGET DRIVER
13081 M:      Christoph Hellwig <hch@lst.de>
13082 M:      Sagi Grimberg <sagi@grimberg.me>
13083 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
13084 L:      linux-nvme@lists.infradead.org
13085 S:      Supported
13086 W:      http://git.infradead.org/nvme.git
13087 T:      git://git.infradead.org/nvme.git
13088 F:      drivers/nvme/target/
13089
13090 NVMEM FRAMEWORK
13091 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13092 S:      Maintained
13093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13094 F:      Documentation/ABI/stable/sysfs-bus-nvmem
13095 F:      Documentation/devicetree/bindings/nvmem/
13096 F:      drivers/nvmem/
13097 F:      include/linux/nvmem-consumer.h
13098 F:      include/linux/nvmem-provider.h
13099
13100 NXP C45 TJA11XX PHY DRIVER
13101 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13102 L:      netdev@vger.kernel.org
13103 S:      Maintained
13104 F:      drivers/net/phy/nxp-c45-tja11xx.c
13105
13106 NXP FSPI DRIVER
13107 M:      Ashish Kumar <ashish.kumar@nxp.com>
13108 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
13109 L:      linux-spi@vger.kernel.org
13110 S:      Maintained
13111 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
13112 F:      drivers/spi/spi-nxp-fspi.c
13113
13114 NXP FXAS21002C DRIVER
13115 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13116 L:      linux-iio@vger.kernel.org
13117 S:      Maintained
13118 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13119 F:      drivers/iio/gyro/fxas21002c.h
13120 F:      drivers/iio/gyro/fxas21002c_core.c
13121 F:      drivers/iio/gyro/fxas21002c_i2c.c
13122 F:      drivers/iio/gyro/fxas21002c_spi.c
13123
13124 NXP i.MX CLOCK DRIVERS
13125 M:      Abel Vesa <abel.vesa@nxp.com>
13126 L:      linux-clk@vger.kernel.org
13127 L:      linux-imx@nxp.com
13128 S:      Maintained
13129 F:      drivers/clk/imx/
13130
13131 NXP i.MX 8MQ DCSS DRIVER
13132 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13133 R:      Lucas Stach <l.stach@pengutronix.de>
13134 L:      dri-devel@lists.freedesktop.org
13135 S:      Maintained
13136 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13137 F:      drivers/gpu/drm/imx/dcss/
13138
13139 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13140 M:      Jagan Teki <jagan@amarulasolutions.com>
13141 S:      Maintained
13142 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13143 F:      drivers/regulator/pf8x00-regulator.c
13144
13145 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13146 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13147 L:      linux-kernel@vger.kernel.org
13148 S:      Maintained
13149 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13150 F:      drivers/extcon/extcon-ptn5150.c
13151
13152 NXP SGTL5000 DRIVER
13153 M:      Fabio Estevam <festevam@gmail.com>
13154 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13155 S:      Maintained
13156 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
13157 F:      sound/soc/codecs/sgtl5000*
13158
13159 NXP SJA1105 ETHERNET SWITCH DRIVER
13160 M:      Vladimir Oltean <olteanv@gmail.com>
13161 L:      linux-kernel@vger.kernel.org
13162 S:      Maintained
13163 F:      drivers/net/dsa/sja1105
13164
13165 NXP TDA998X DRM DRIVER
13166 M:      Russell King <linux@armlinux.org.uk>
13167 S:      Maintained
13168 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13169 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13170 F:      drivers/gpu/drm/i2c/tda998x_drv.c
13171 F:      include/drm/i2c/tda998x.h
13172 F:      include/dt-bindings/display/tda998x.h
13173 K:      "nxp,tda998x"
13174
13175 NXP TFA9879 DRIVER
13176 M:      Peter Rosin <peda@axentia.se>
13177 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13178 S:      Maintained
13179 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
13180 F:      sound/soc/codecs/tfa9879*
13181
13182 NXP-NCI NFC DRIVER
13183 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
13184 R:      Charles Gorand <charles.gorand@effinnov.com>
13185 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
13186 S:      Supported
13187 F:      drivers/nfc/nxp-nci
13188
13189 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13190 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
13191 R:      NXP Linux Team <linux-imx@nxp.com>
13192 L:      linux-media@vger.kernel.org
13193 S:      Maintained
13194 F:      Documentation/devicetree/bindings/media/imx8-jpeg.yaml
13195 F:      drivers/media/platform/imx-jpeg
13196
13197 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13198 M:      Jonas Malaco <jonas@protocubo.io>
13199 L:      linux-hwmon@vger.kernel.org
13200 S:      Maintained
13201 F:      Documentation/hwmon/nzxt-kraken2.rst
13202 F:      drivers/hwmon/nzxt-kraken2.c
13203
13204 OBJAGG
13205 M:      Jiri Pirko <jiri@nvidia.com>
13206 L:      netdev@vger.kernel.org
13207 S:      Supported
13208 F:      include/linux/objagg.h
13209 F:      lib/objagg.c
13210 F:      lib/test_objagg.c
13211
13212 OBJTOOL
13213 M:      Josh Poimboeuf <jpoimboe@redhat.com>
13214 M:      Peter Zijlstra <peterz@infradead.org>
13215 S:      Supported
13216 F:      tools/objtool/
13217 F:      include/linux/objtool.h
13218
13219 OCELOT ETHERNET SWITCH DRIVER
13220 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
13221 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
13222 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13223 M:      UNGLinuxDriver@microchip.com
13224 L:      netdev@vger.kernel.org
13225 S:      Supported
13226 F:      drivers/net/dsa/ocelot/*
13227 F:      drivers/net/ethernet/mscc/
13228 F:      include/soc/mscc/ocelot*
13229 F:      net/dsa/tag_ocelot.c
13230 F:      net/dsa/tag_ocelot_8021q.c
13231 F:      tools/testing/selftests/drivers/net/ocelot/*
13232
13233 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13234 M:      Frederic Barrat <fbarrat@linux.ibm.com>
13235 M:      Andrew Donnellan <ajd@linux.ibm.com>
13236 L:      linuxppc-dev@lists.ozlabs.org
13237 S:      Supported
13238 F:      Documentation/userspace-api/accelerators/ocxl.rst
13239 F:      arch/powerpc/include/asm/pnv-ocxl.h
13240 F:      arch/powerpc/platforms/powernv/ocxl.c
13241 F:      drivers/misc/ocxl/
13242 F:      include/misc/ocxl*
13243 F:      include/uapi/misc/ocxl.h
13244
13245 OMAP AUDIO SUPPORT
13246 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
13247 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
13248 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13249 L:      linux-omap@vger.kernel.org
13250 S:      Maintained
13251 F:      sound/soc/ti/n810.c
13252 F:      sound/soc/ti/omap*
13253 F:      sound/soc/ti/rx51.c
13254 F:      sound/soc/ti/sdma-pcm.*
13255
13256 OMAP CLOCK FRAMEWORK SUPPORT
13257 M:      Paul Walmsley <paul@pwsan.com>
13258 L:      linux-omap@vger.kernel.org
13259 S:      Maintained
13260 F:      arch/arm/*omap*/*clock*
13261
13262 OMAP DEVICE TREE SUPPORT
13263 M:      Benoît Cousson <bcousson@baylibre.com>
13264 M:      Tony Lindgren <tony@atomide.com>
13265 L:      linux-omap@vger.kernel.org
13266 L:      devicetree@vger.kernel.org
13267 S:      Maintained
13268 F:      arch/arm/boot/dts/*am3*
13269 F:      arch/arm/boot/dts/*am4*
13270 F:      arch/arm/boot/dts/*am5*
13271 F:      arch/arm/boot/dts/*dra7*
13272 F:      arch/arm/boot/dts/*omap*
13273 F:      arch/arm/boot/dts/logicpd-som-lv*
13274 F:      arch/arm/boot/dts/logicpd-torpedo*
13275
13276 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
13277 L:      linux-omap@vger.kernel.org
13278 L:      linux-fbdev@vger.kernel.org
13279 S:      Orphan
13280 F:      Documentation/arm/omap/dss.rst
13281 F:      drivers/video/fbdev/omap2/
13282
13283 OMAP FRAMEBUFFER SUPPORT
13284 L:      linux-fbdev@vger.kernel.org
13285 L:      linux-omap@vger.kernel.org
13286 S:      Orphan
13287 F:      drivers/video/fbdev/omap/
13288
13289 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
13290 M:      Roger Quadros <rogerq@kernel.org>
13291 M:      Tony Lindgren <tony@atomide.com>
13292 L:      linux-omap@vger.kernel.org
13293 S:      Maintained
13294 F:      arch/arm/mach-omap2/*gpmc*
13295 F:      drivers/memory/omap-gpmc.c
13296
13297 OMAP GPIO DRIVER
13298 M:      Grygorii Strashko <grygorii.strashko@ti.com>
13299 M:      Santosh Shilimkar <ssantosh@kernel.org>
13300 M:      Kevin Hilman <khilman@kernel.org>
13301 L:      linux-omap@vger.kernel.org
13302 S:      Maintained
13303 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
13304 F:      drivers/gpio/gpio-omap.c
13305
13306 OMAP HARDWARE SPINLOCK SUPPORT
13307 M:      Ohad Ben-Cohen <ohad@wizery.com>
13308 L:      linux-omap@vger.kernel.org
13309 S:      Maintained
13310 F:      drivers/hwspinlock/omap_hwspinlock.c
13311
13312 OMAP HS MMC SUPPORT
13313 L:      linux-mmc@vger.kernel.org
13314 L:      linux-omap@vger.kernel.org
13315 S:      Orphan
13316 F:      drivers/mmc/host/omap_hsmmc.c
13317
13318 OMAP HWMOD DATA
13319 M:      Paul Walmsley <paul@pwsan.com>
13320 L:      linux-omap@vger.kernel.org
13321 S:      Maintained
13322 F:      arch/arm/mach-omap2/omap_hwmod*data*
13323
13324 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
13325 M:      Benoît Cousson <bcousson@baylibre.com>
13326 L:      linux-omap@vger.kernel.org
13327 S:      Maintained
13328 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
13329
13330 OMAP HWMOD SUPPORT
13331 M:      Benoît Cousson <bcousson@baylibre.com>
13332 M:      Paul Walmsley <paul@pwsan.com>
13333 L:      linux-omap@vger.kernel.org
13334 S:      Maintained
13335 F:      arch/arm/mach-omap2/omap_hwmod.*
13336
13337 OMAP I2C DRIVER
13338 M:      Vignesh R <vigneshr@ti.com>
13339 L:      linux-omap@vger.kernel.org
13340 L:      linux-i2c@vger.kernel.org
13341 S:      Maintained
13342 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
13343 F:      drivers/i2c/busses/i2c-omap.c
13344
13345 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
13346 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13347 L:      linux-media@vger.kernel.org
13348 S:      Maintained
13349 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
13350 F:      drivers/media/platform/omap3isp/
13351 F:      drivers/staging/media/omap4iss/
13352
13353 OMAP MMC SUPPORT
13354 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13355 L:      linux-omap@vger.kernel.org
13356 S:      Odd Fixes
13357 F:      drivers/mmc/host/omap.c
13358
13359 OMAP POWER MANAGEMENT SUPPORT
13360 M:      Kevin Hilman <khilman@kernel.org>
13361 L:      linux-omap@vger.kernel.org
13362 S:      Maintained
13363 F:      arch/arm/*omap*/*pm*
13364 F:      drivers/cpufreq/omap-cpufreq.c
13365
13366 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13367 M:      Rajendra Nayak <rnayak@codeaurora.org>
13368 M:      Paul Walmsley <paul@pwsan.com>
13369 L:      linux-omap@vger.kernel.org
13370 S:      Maintained
13371 F:      arch/arm/mach-omap2/prm*
13372
13373 OMAP RANDOM NUMBER GENERATOR SUPPORT
13374 M:      Deepak Saxena <dsaxena@plexity.net>
13375 S:      Maintained
13376 F:      drivers/char/hw_random/omap-rng.c
13377
13378 OMAP USB SUPPORT
13379 L:      linux-usb@vger.kernel.org
13380 L:      linux-omap@vger.kernel.org
13381 S:      Orphan
13382 F:      arch/arm/*omap*/usb*
13383 F:      drivers/usb/*/*omap*
13384
13385 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13386 M:      Mark Jackson <mpfj@newflow.co.uk>
13387 L:      linux-omap@vger.kernel.org
13388 S:      Maintained
13389 F:      arch/arm/boot/dts/am335x-nano.dts
13390
13391 OMAP1 SUPPORT
13392 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13393 M:      Tony Lindgren <tony@atomide.com>
13394 L:      linux-omap@vger.kernel.org
13395 S:      Maintained
13396 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13397 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13398 F:      arch/arm/configs/omap1_defconfig
13399 F:      arch/arm/mach-omap1/
13400 F:      arch/arm/plat-omap/
13401 F:      drivers/i2c/busses/i2c-omap.c
13402 F:      include/linux/platform_data/ams-delta-fiq.h
13403 F:      include/linux/platform_data/i2c-omap.h
13404
13405 OMAP2+ SUPPORT
13406 M:      Tony Lindgren <tony@atomide.com>
13407 L:      linux-omap@vger.kernel.org
13408 S:      Maintained
13409 W:      http://www.muru.com/linux/omap/
13410 W:      http://linux.omap.com/
13411 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13413 F:      arch/arm/configs/omap2plus_defconfig
13414 F:      arch/arm/mach-omap2/
13415 F:      arch/arm/plat-omap/
13416 F:      drivers/bus/ti-sysc.c
13417 F:      drivers/i2c/busses/i2c-omap.c
13418 F:      drivers/irqchip/irq-omap-intc.c
13419 F:      drivers/mfd/*omap*.c
13420 F:      drivers/mfd/menelaus.c
13421 F:      drivers/mfd/palmas.c
13422 F:      drivers/mfd/tps65217.c
13423 F:      drivers/mfd/tps65218.c
13424 F:      drivers/mfd/tps65910.c
13425 F:      drivers/mfd/twl-core.[ch]
13426 F:      drivers/mfd/twl4030*.c
13427 F:      drivers/mfd/twl6030*.c
13428 F:      drivers/mfd/twl6040*.c
13429 F:      drivers/regulator/palmas-regulator*.c
13430 F:      drivers/regulator/pbias-regulator.c
13431 F:      drivers/regulator/tps65217-regulator.c
13432 F:      drivers/regulator/tps65218-regulator.c
13433 F:      drivers/regulator/tps65910-regulator.c
13434 F:      drivers/regulator/twl-regulator.c
13435 F:      drivers/regulator/twl6030-regulator.c
13436 F:      include/linux/platform_data/i2c-omap.h
13437 F:      include/linux/platform_data/ti-sysc.h
13438
13439 OMFS FILESYSTEM
13440 M:      Bob Copeland <me@bobcopeland.com>
13441 L:      linux-karma-devel@lists.sourceforge.net
13442 S:      Maintained
13443 F:      Documentation/filesystems/omfs.rst
13444 F:      fs/omfs/
13445
13446 OMNIKEY CARDMAN 4000 DRIVER
13447 M:      Harald Welte <laforge@gnumonks.org>
13448 S:      Maintained
13449 F:      drivers/char/pcmcia/cm4000_cs.c
13450 F:      include/linux/cm4000_cs.h
13451 F:      include/uapi/linux/cm4000_cs.h
13452
13453 OMNIKEY CARDMAN 4040 DRIVER
13454 M:      Harald Welte <laforge@gnumonks.org>
13455 S:      Maintained
13456 F:      drivers/char/pcmcia/cm4040_cs.*
13457
13458 OMNIVISION OV02A10 SENSOR DRIVER
13459 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13460 L:      linux-media@vger.kernel.org
13461 S:      Maintained
13462 T:      git git://linuxtv.org/media_tree.git
13463 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13464 F:      drivers/media/i2c/ov02a10.c
13465
13466 OMNIVISION OV13858 SENSOR DRIVER
13467 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13468 L:      linux-media@vger.kernel.org
13469 S:      Maintained
13470 T:      git git://linuxtv.org/media_tree.git
13471 F:      drivers/media/i2c/ov13858.c
13472
13473 OMNIVISION OV2680 SENSOR DRIVER
13474 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13475 L:      linux-media@vger.kernel.org
13476 S:      Maintained
13477 T:      git git://linuxtv.org/media_tree.git
13478 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
13479 F:      drivers/media/i2c/ov2680.c
13480
13481 OMNIVISION OV2685 SENSOR DRIVER
13482 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13483 L:      linux-media@vger.kernel.org
13484 S:      Maintained
13485 T:      git git://linuxtv.org/media_tree.git
13486 F:      drivers/media/i2c/ov2685.c
13487
13488 OMNIVISION OV2740 SENSOR DRIVER
13489 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13490 R:      Shawn Tu <shawnx.tu@intel.com>
13491 R:      Bingbu Cao <bingbu.cao@intel.com>
13492 L:      linux-media@vger.kernel.org
13493 S:      Maintained
13494 T:      git git://linuxtv.org/media_tree.git
13495 F:      drivers/media/i2c/ov2740.c
13496
13497 OMNIVISION OV5640 SENSOR DRIVER
13498 M:      Steve Longerbeam <slongerbeam@gmail.com>
13499 L:      linux-media@vger.kernel.org
13500 S:      Maintained
13501 T:      git git://linuxtv.org/media_tree.git
13502 F:      drivers/media/i2c/ov5640.c
13503
13504 OMNIVISION OV5647 SENSOR DRIVER
13505 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
13506 M:      Jacopo Mondi <jacopo@jmondi.org>
13507 L:      linux-media@vger.kernel.org
13508 S:      Maintained
13509 T:      git git://linuxtv.org/media_tree.git
13510 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
13511 F:      drivers/media/i2c/ov5647.c
13512
13513 OMNIVISION OV5670 SENSOR DRIVER
13514 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13515 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
13516 L:      linux-media@vger.kernel.org
13517 S:      Maintained
13518 T:      git git://linuxtv.org/media_tree.git
13519 F:      drivers/media/i2c/ov5670.c
13520
13521 OMNIVISION OV5675 SENSOR DRIVER
13522 M:      Shawn Tu <shawnx.tu@intel.com>
13523 L:      linux-media@vger.kernel.org
13524 S:      Maintained
13525 T:      git git://linuxtv.org/media_tree.git
13526 F:      drivers/media/i2c/ov5675.c
13527
13528 OMNIVISION OV5695 SENSOR DRIVER
13529 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13530 L:      linux-media@vger.kernel.org
13531 S:      Maintained
13532 T:      git git://linuxtv.org/media_tree.git
13533 F:      drivers/media/i2c/ov5695.c
13534
13535 OMNIVISION OV7670 SENSOR DRIVER
13536 L:      linux-media@vger.kernel.org
13537 S:      Orphan
13538 T:      git git://linuxtv.org/media_tree.git
13539 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
13540 F:      drivers/media/i2c/ov7670.c
13541
13542 OMNIVISION OV772x SENSOR DRIVER
13543 M:      Jacopo Mondi <jacopo@jmondi.org>
13544 L:      linux-media@vger.kernel.org
13545 S:      Odd fixes
13546 T:      git git://linuxtv.org/media_tree.git
13547 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13548 F:      drivers/media/i2c/ov772x.c
13549 F:      include/media/i2c/ov772x.h
13550
13551 OMNIVISION OV7740 SENSOR DRIVER
13552 M:      Wenyou Yang <wenyou.yang@microchip.com>
13553 L:      linux-media@vger.kernel.org
13554 S:      Maintained
13555 T:      git git://linuxtv.org/media_tree.git
13556 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
13557 F:      drivers/media/i2c/ov7740.c
13558
13559 OMNIVISION OV8856 SENSOR DRIVER
13560 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13561 L:      linux-media@vger.kernel.org
13562 S:      Maintained
13563 T:      git git://linuxtv.org/media_tree.git
13564 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13565 F:      drivers/media/i2c/ov8856.c
13566
13567 OMNIVISION OV9640 SENSOR DRIVER
13568 M:      Petr Cvek <petrcvekcz@gmail.com>
13569 L:      linux-media@vger.kernel.org
13570 S:      Maintained
13571 F:      drivers/media/i2c/ov9640.*
13572
13573 OMNIVISION OV9650 SENSOR DRIVER
13574 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13575 R:      Akinobu Mita <akinobu.mita@gmail.com>
13576 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13577 L:      linux-media@vger.kernel.org
13578 S:      Maintained
13579 T:      git git://linuxtv.org/media_tree.git
13580 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
13581 F:      drivers/media/i2c/ov9650.c
13582
13583 OMNIVISION OV9734 SENSOR DRIVER
13584 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13585 R:      Bingbu Cao <bingbu.cao@intel.com>
13586 L:      linux-media@vger.kernel.org
13587 S:      Maintained
13588 T:      git git://linuxtv.org/media_tree.git
13589 F:      drivers/media/i2c/ov9734.c
13590
13591 ONENAND FLASH DRIVER
13592 M:      Kyungmin Park <kyungmin.park@samsung.com>
13593 L:      linux-mtd@lists.infradead.org
13594 S:      Maintained
13595 F:      drivers/mtd/nand/onenand/
13596 F:      include/linux/mtd/onenand*.h
13597
13598 ONION OMEGA2+ BOARD
13599 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
13600 L:      linux-mips@vger.kernel.org
13601 S:      Maintained
13602 F:      arch/mips/boot/dts/ralink/omega2p.dts
13603
13604 OP-TEE DRIVER
13605 M:      Jens Wiklander <jens.wiklander@linaro.org>
13606 L:      op-tee@lists.trustedfirmware.org
13607 S:      Maintained
13608 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
13609 F:      drivers/tee/optee/
13610
13611 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
13612 M:      Sumit Garg <sumit.garg@linaro.org>
13613 L:      op-tee@lists.trustedfirmware.org
13614 S:      Maintained
13615 F:      drivers/char/hw_random/optee-rng.c
13616
13617 OPA-VNIC DRIVER
13618 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
13619 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
13620 L:      linux-rdma@vger.kernel.org
13621 S:      Supported
13622 F:      drivers/infiniband/ulp/opa_vnic
13623
13624 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
13625 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
13626 M:      Frank Rowand <frowand.list@gmail.com>
13627 L:      devicetree@vger.kernel.org
13628 S:      Maintained
13629 F:      Documentation/devicetree/dynamic-resolution-notes.rst
13630 F:      Documentation/devicetree/overlay-notes.rst
13631 F:      drivers/of/overlay.c
13632 F:      drivers/of/resolver.c
13633 K:      of_overlay_notifier_
13634
13635 OPEN FIRMWARE AND FLATTENED DEVICE TREE
13636 M:      Rob Herring <robh+dt@kernel.org>
13637 M:      Frank Rowand <frowand.list@gmail.com>
13638 L:      devicetree@vger.kernel.org
13639 S:      Maintained
13640 W:      http://www.devicetree.org/
13641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13642 F:      Documentation/ABI/testing/sysfs-firmware-ofw
13643 F:      drivers/of/
13644 F:      include/linux/of*.h
13645 F:      scripts/dtc/
13646
13647 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
13648 M:      Rob Herring <robh+dt@kernel.org>
13649 L:      devicetree@vger.kernel.org
13650 S:      Maintained
13651 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
13652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13653 F:      Documentation/devicetree/
13654 F:      arch/*/boot/dts/
13655 F:      include/dt-bindings/
13656
13657 OPENCORES I2C BUS DRIVER
13658 M:      Peter Korsgaard <peter@korsgaard.com>
13659 M:      Andrew Lunn <andrew@lunn.ch>
13660 L:      linux-i2c@vger.kernel.org
13661 S:      Maintained
13662 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
13663 F:      Documentation/i2c/busses/i2c-ocores.rst
13664 F:      drivers/i2c/busses/i2c-ocores.c
13665 F:      include/linux/platform_data/i2c-ocores.h
13666
13667 OPENRISC ARCHITECTURE
13668 M:      Jonas Bonn <jonas@southpole.se>
13669 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
13670 M:      Stafford Horne <shorne@gmail.com>
13671 L:      openrisc@lists.librecores.org
13672 S:      Maintained
13673 W:      http://openrisc.io
13674 T:      git git://github.com/openrisc/linux.git
13675 F:      Documentation/devicetree/bindings/openrisc/
13676 F:      Documentation/openrisc/
13677 F:      arch/openrisc/
13678 F:      drivers/irqchip/irq-ompic.c
13679 F:      drivers/irqchip/irq-or1k-*
13680
13681 OPENVSWITCH
13682 M:      Pravin B Shelar <pshelar@ovn.org>
13683 L:      netdev@vger.kernel.org
13684 L:      dev@openvswitch.org
13685 S:      Maintained
13686 W:      http://openvswitch.org
13687 F:      include/uapi/linux/openvswitch.h
13688 F:      net/openvswitch/
13689
13690 OPERATING PERFORMANCE POINTS (OPP)
13691 M:      Viresh Kumar <vireshk@kernel.org>
13692 M:      Nishanth Menon <nm@ti.com>
13693 M:      Stephen Boyd <sboyd@kernel.org>
13694 L:      linux-pm@vger.kernel.org
13695 S:      Maintained
13696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
13697 F:      Documentation/devicetree/bindings/opp/
13698 F:      Documentation/power/opp.rst
13699 F:      drivers/opp/
13700 F:      include/linux/pm_opp.h
13701
13702 OPL4 DRIVER
13703 M:      Clemens Ladisch <clemens@ladisch.de>
13704 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13705 S:      Maintained
13706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
13707 F:      sound/drivers/opl4/
13708
13709 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
13710 M:      Mark Fasheh <mark@fasheh.com>
13711 M:      Joel Becker <jlbec@evilplan.org>
13712 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
13713 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
13714 S:      Supported
13715 W:      http://ocfs2.wiki.kernel.org
13716 F:      Documentation/filesystems/dlmfs.rst
13717 F:      Documentation/filesystems/ocfs2.rst
13718 F:      fs/ocfs2/
13719
13720 ORANGEFS FILESYSTEM
13721 M:      Mike Marshall <hubcap@omnibond.com>
13722 R:      Martin Brandenburg <martin@omnibond.com>
13723 L:      devel@lists.orangefs.org
13724 S:      Supported
13725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
13726 F:      Documentation/filesystems/orangefs.rst
13727 F:      fs/orangefs/
13728
13729 ORINOCO DRIVER
13730 L:      linux-wireless@vger.kernel.org
13731 S:      Orphan
13732 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
13733 W:      http://www.nongnu.org/orinoco/
13734 F:      drivers/net/wireless/intersil/orinoco/
13735
13736 OV2659 OMNIVISION SENSOR DRIVER
13737 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13738 L:      linux-media@vger.kernel.org
13739 S:      Maintained
13740 W:      https://linuxtv.org
13741 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13742 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13743 F:      drivers/media/i2c/ov2659.c
13744 F:      include/media/i2c/ov2659.h
13745
13746 OVERLAY FILESYSTEM
13747 M:      Miklos Szeredi <miklos@szeredi.hu>
13748 L:      linux-unionfs@vger.kernel.org
13749 S:      Supported
13750 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
13751 F:      Documentation/filesystems/overlayfs.rst
13752 F:      fs/overlayfs/
13753
13754 P54 WIRELESS DRIVER
13755 M:      Christian Lamparter <chunkeey@googlemail.com>
13756 L:      linux-wireless@vger.kernel.org
13757 S:      Maintained
13758 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
13759 F:      drivers/net/wireless/intersil/p54/
13760
13761 PACKING
13762 M:      Vladimir Oltean <olteanv@gmail.com>
13763 L:      netdev@vger.kernel.org
13764 S:      Supported
13765 F:      Documentation/core-api/packing.rst
13766 F:      include/linux/packing.h
13767 F:      lib/packing.c
13768
13769 PADATA PARALLEL EXECUTION MECHANISM
13770 M:      Steffen Klassert <steffen.klassert@secunet.com>
13771 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
13772 L:      linux-crypto@vger.kernel.org
13773 L:      linux-kernel@vger.kernel.org
13774 S:      Maintained
13775 F:      Documentation/core-api/padata.rst
13776 F:      include/linux/padata.h
13777 F:      kernel/padata.c
13778
13779 PAGE POOL
13780 M:      Jesper Dangaard Brouer <hawk@kernel.org>
13781 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
13782 L:      netdev@vger.kernel.org
13783 S:      Supported
13784 F:      Documentation/networking/page_pool.rst
13785 F:      include/net/page_pool.h
13786 F:      include/trace/events/page_pool.h
13787 F:      net/core/page_pool.c
13788
13789 PANASONIC LAPTOP ACPI EXTRAS DRIVER
13790 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
13791 L:      platform-driver-x86@vger.kernel.org
13792 S:      Maintained
13793 F:      drivers/platform/x86/panasonic-laptop.c
13794
13795 PARALLAX PING IIO SENSOR DRIVER
13796 M:      Andreas Klinger <ak@it-klinger.de>
13797 L:      linux-iio@vger.kernel.org
13798 S:      Maintained
13799 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
13800 F:      drivers/iio/proximity/ping.c
13801
13802 PARALLEL LCD/KEYPAD PANEL DRIVER
13803 M:      Willy Tarreau <willy@haproxy.com>
13804 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
13805 S:      Odd Fixes
13806 F:      Documentation/admin-guide/lcd-panel-cgram.rst
13807 F:      drivers/auxdisplay/panel.c
13808
13809 PARALLEL PORT SUBSYSTEM
13810 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
13811 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
13812 L:      linux-parport@lists.infradead.org (subscribers-only)
13813 S:      Maintained
13814 F:      Documentation/driver-api/parport*.rst
13815 F:      drivers/char/ppdev.c
13816 F:      drivers/parport/
13817 F:      include/linux/parport*.h
13818 F:      include/uapi/linux/ppdev.h
13819
13820 PARAVIRT_OPS INTERFACE
13821 M:      Juergen Gross <jgross@suse.com>
13822 M:      Deep Shah <sdeep@vmware.com>
13823 M:      "VMware, Inc." <pv-drivers@vmware.com>
13824 L:      virtualization@lists.linux-foundation.org
13825 S:      Supported
13826 F:      Documentation/virt/paravirt_ops.rst
13827 F:      arch/*/include/asm/paravirt*.h
13828 F:      arch/*/kernel/paravirt*
13829 F:      include/linux/hypervisor.h
13830
13831 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
13832 M:      Tim Waugh <tim@cyberelk.net>
13833 L:      linux-parport@lists.infradead.org (subscribers-only)
13834 S:      Maintained
13835 F:      Documentation/admin-guide/blockdev/paride.rst
13836 F:      drivers/block/paride/
13837
13838 PARISC ARCHITECTURE
13839 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
13840 M:      Helge Deller <deller@gmx.de>
13841 L:      linux-parisc@vger.kernel.org
13842 S:      Maintained
13843 W:      https://parisc.wiki.kernel.org
13844 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
13845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
13846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
13847 F:      Documentation/parisc/
13848 F:      arch/parisc/
13849 F:      drivers/char/agp/parisc-agp.c
13850 F:      drivers/input/misc/hp_sdc_rtc.c
13851 F:      drivers/input/serio/gscps2.c
13852 F:      drivers/input/serio/hp_sdc*
13853 F:      drivers/parisc/
13854 F:      drivers/parport/parport_gsc.*
13855 F:      drivers/tty/serial/8250/8250_gsc.c
13856 F:      drivers/video/console/sti*
13857 F:      drivers/video/fbdev/sti*
13858 F:      drivers/video/logo/logo_parisc*
13859 F:      include/linux/hp_sdc.h
13860
13861 PARMAN
13862 M:      Jiri Pirko <jiri@nvidia.com>
13863 L:      netdev@vger.kernel.org
13864 S:      Supported
13865 F:      include/linux/parman.h
13866 F:      lib/parman.c
13867 F:      lib/test_parman.c
13868
13869 PC ENGINES APU BOARD DRIVER
13870 M:      Enrico Weigelt, metux IT consult <info@metux.net>
13871 S:      Maintained
13872 F:      drivers/platform/x86/pcengines-apuv2.c
13873
13874 PC87360 HARDWARE MONITORING DRIVER
13875 M:      Jim Cromie <jim.cromie@gmail.com>
13876 L:      linux-hwmon@vger.kernel.org
13877 S:      Maintained
13878 F:      Documentation/hwmon/pc87360.rst
13879 F:      drivers/hwmon/pc87360.c
13880
13881 PC8736x GPIO DRIVER
13882 M:      Jim Cromie <jim.cromie@gmail.com>
13883 S:      Maintained
13884 F:      drivers/char/pc8736x_gpio.c
13885
13886 PC87427 HARDWARE MONITORING DRIVER
13887 M:      Jean Delvare <jdelvare@suse.com>
13888 L:      linux-hwmon@vger.kernel.org
13889 S:      Maintained
13890 F:      Documentation/hwmon/pc87427.rst
13891 F:      drivers/hwmon/pc87427.c
13892
13893 PCA9532 LED DRIVER
13894 M:      Riku Voipio <riku.voipio@iki.fi>
13895 S:      Maintained
13896 F:      drivers/leds/leds-pca9532.c
13897 F:      include/linux/leds-pca9532.h
13898
13899 PCA9541 I2C BUS MASTER SELECTOR DRIVER
13900 M:      Guenter Roeck <linux@roeck-us.net>
13901 L:      linux-i2c@vger.kernel.org
13902 S:      Maintained
13903 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
13904
13905 PCDP - PRIMARY CONSOLE AND DEBUG PORT
13906 M:      Khalid Aziz <khalid@gonehiking.org>
13907 S:      Maintained
13908 F:      drivers/firmware/pcdp.*
13909
13910 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
13911 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13912 M:      Pali Rohár <pali@kernel.org>
13913 L:      linux-pci@vger.kernel.org
13914 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13915 S:      Maintained
13916 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
13917 F:      drivers/pci/controller/pci-aardvark.c
13918
13919 PCI DRIVER FOR ALTERA PCIE IP
13920 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13921 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13922 L:      linux-pci@vger.kernel.org
13923 S:      Supported
13924 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
13925 F:      drivers/pci/controller/pcie-altera.c
13926
13927 PCI DRIVER FOR APPLIEDMICRO XGENE
13928 M:      Toan Le <toan@os.amperecomputing.com>
13929 L:      linux-pci@vger.kernel.org
13930 L:      linux-arm-kernel@lists.infradead.org
13931 S:      Maintained
13932 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
13933 F:      drivers/pci/controller/pci-xgene.c
13934
13935 PCI DRIVER FOR ARM VERSATILE PLATFORM
13936 M:      Rob Herring <robh@kernel.org>
13937 L:      linux-pci@vger.kernel.org
13938 L:      linux-arm-kernel@lists.infradead.org
13939 S:      Maintained
13940 F:      Documentation/devicetree/bindings/pci/versatile.yaml
13941 F:      drivers/pci/controller/pci-versatile.c
13942
13943 PCI DRIVER FOR ARMADA 8K
13944 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13945 L:      linux-pci@vger.kernel.org
13946 L:      linux-arm-kernel@lists.infradead.org
13947 S:      Maintained
13948 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
13949 F:      drivers/pci/controller/dwc/pcie-armada8k.c
13950
13951 PCI DRIVER FOR CADENCE PCIE IP
13952 M:      Tom Joseph <tjoseph@cadence.com>
13953 L:      linux-pci@vger.kernel.org
13954 S:      Maintained
13955 F:      Documentation/devicetree/bindings/pci/cdns,*
13956 F:      drivers/pci/controller/cadence/
13957
13958 PCI DRIVER FOR FREESCALE LAYERSCAPE
13959 M:      Minghuan Lian <minghuan.Lian@nxp.com>
13960 M:      Mingkai Hu <mingkai.hu@nxp.com>
13961 M:      Roy Zang <roy.zang@nxp.com>
13962 L:      linuxppc-dev@lists.ozlabs.org
13963 L:      linux-pci@vger.kernel.org
13964 L:      linux-arm-kernel@lists.infradead.org
13965 S:      Maintained
13966 F:      drivers/pci/controller/dwc/*layerscape*
13967
13968 PCI DRIVER FOR GENERIC OF HOSTS
13969 M:      Will Deacon <will@kernel.org>
13970 L:      linux-pci@vger.kernel.org
13971 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13972 S:      Maintained
13973 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
13974 F:      drivers/pci/controller/pci-host-common.c
13975 F:      drivers/pci/controller/pci-host-generic.c
13976
13977 PCI DRIVER FOR IMX6
13978 M:      Richard Zhu <hongxing.zhu@nxp.com>
13979 M:      Lucas Stach <l.stach@pengutronix.de>
13980 L:      linux-pci@vger.kernel.org
13981 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13982 S:      Maintained
13983 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
13984 F:      drivers/pci/controller/dwc/*imx6*
13985
13986 PCI DRIVER FOR FU740
13987 M:      Paul Walmsley <paul.walmsley@sifive.com>
13988 M:      Greentime Hu <greentime.hu@sifive.com>
13989 L:      linux-pci@vger.kernel.org
13990 S:      Maintained
13991 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
13992 F:      drivers/pci/controller/dwc/pcie-fu740.c
13993
13994 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
13995 M:      Jonathan Derrick <jonathan.derrick@intel.com>
13996 L:      linux-pci@vger.kernel.org
13997 S:      Supported
13998 F:      drivers/pci/controller/vmd.c
13999
14000 PCI DRIVER FOR MICROSEMI SWITCHTEC
14001 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
14002 M:      Logan Gunthorpe <logang@deltatee.com>
14003 L:      linux-pci@vger.kernel.org
14004 S:      Maintained
14005 F:      Documentation/ABI/testing/sysfs-class-switchtec
14006 F:      Documentation/driver-api/switchtec.rst
14007 F:      drivers/ntb/hw/mscc/
14008 F:      drivers/pci/switch/switchtec*
14009 F:      include/linux/switchtec.h
14010 F:      include/uapi/linux/switchtec_ioctl.h
14011
14012 PCI DRIVER FOR MOBIVEIL PCIE IP
14013 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
14014 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14015 L:      linux-pci@vger.kernel.org
14016 S:      Supported
14017 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14018 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
14019
14020 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14021 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14022 L:      linux-pci@vger.kernel.org
14023 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14024 S:      Maintained
14025 F:      drivers/pci/controller/*mvebu*
14026
14027 PCI DRIVER FOR NVIDIA TEGRA
14028 M:      Thierry Reding <thierry.reding@gmail.com>
14029 L:      linux-tegra@vger.kernel.org
14030 L:      linux-pci@vger.kernel.org
14031 S:      Supported
14032 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14033 F:      drivers/pci/controller/pci-tegra.c
14034
14035 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14036 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14037 L:      linux-pci@vger.kernel.org
14038 L:      linux-arm-kernel@lists.infradead.org
14039 S:      Maintained
14040 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14041 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14042
14043 PCI DRIVER FOR RENESAS R-CAR
14044 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14045 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14046 L:      linux-pci@vger.kernel.org
14047 L:      linux-renesas-soc@vger.kernel.org
14048 S:      Maintained
14049 F:      Documentation/devicetree/bindings/pci/*rcar*
14050 F:      drivers/pci/controller/*rcar*
14051
14052 PCI DRIVER FOR SAMSUNG EXYNOS
14053 M:      Jingoo Han <jingoohan1@gmail.com>
14054 L:      linux-pci@vger.kernel.org
14055 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14056 L:      linux-samsung-soc@vger.kernel.org
14057 S:      Maintained
14058 F:      drivers/pci/controller/dwc/pci-exynos.c
14059
14060 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14061 M:      Jingoo Han <jingoohan1@gmail.com>
14062 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
14063 L:      linux-pci@vger.kernel.org
14064 S:      Maintained
14065 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
14066 F:      drivers/pci/controller/dwc/*designware*
14067
14068 PCI DRIVER FOR TI DRA7XX/J721E
14069 M:      Kishon Vijay Abraham I <kishon@ti.com>
14070 L:      linux-omap@vger.kernel.org
14071 L:      linux-pci@vger.kernel.org
14072 L:      linux-arm-kernel@lists.infradead.org
14073 S:      Supported
14074 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
14075 F:      drivers/pci/controller/cadence/pci-j721e.c
14076 F:      drivers/pci/controller/dwc/pci-dra7xx.c
14077
14078 PCI DRIVER FOR TI KEYSTONE
14079 M:      Murali Karicheri <m-karicheri2@ti.com>
14080 L:      linux-pci@vger.kernel.org
14081 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14082 S:      Maintained
14083 F:      drivers/pci/controller/dwc/pci-keystone.c
14084
14085 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14086 M:      Linus Walleij <linus.walleij@linaro.org>
14087 L:      linux-pci@vger.kernel.org
14088 S:      Maintained
14089 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14090 F:      drivers/pci/controller/pci-v3-semi.c
14091
14092 PCI ENDPOINT SUBSYSTEM
14093 M:      Kishon Vijay Abraham I <kishon@ti.com>
14094 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14095 L:      linux-pci@vger.kernel.org
14096 S:      Supported
14097 F:      Documentation/PCI/endpoint/*
14098 F:      Documentation/misc-devices/pci-endpoint-test.rst
14099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
14100 F:      drivers/misc/pci_endpoint_test.c
14101 F:      drivers/pci/endpoint/
14102 F:      tools/pci/
14103
14104 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14105 M:      Russell Currey <ruscur@russell.cc>
14106 M:      Oliver O'Halloran <oohall@gmail.com>
14107 L:      linuxppc-dev@lists.ozlabs.org
14108 S:      Supported
14109 F:      Documentation/PCI/pci-error-recovery.rst
14110 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
14111 F:      arch/powerpc/include/*/eeh*.h
14112 F:      arch/powerpc/kernel/eeh*.c
14113 F:      arch/powerpc/platforms/*/eeh*.c
14114 F:      drivers/pci/pcie/aer.c
14115 F:      drivers/pci/pcie/dpc.c
14116 F:      drivers/pci/pcie/err.c
14117
14118 PCI ERROR RECOVERY
14119 M:      Linas Vepstas <linasvepstas@gmail.com>
14120 L:      linux-pci@vger.kernel.org
14121 S:      Supported
14122 F:      Documentation/PCI/pci-error-recovery.rst
14123
14124 PCI MSI DRIVER FOR ALTERA MSI IP
14125 M:      Ley Foon Tan <ley.foon.tan@intel.com>
14126 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
14127 L:      linux-pci@vger.kernel.org
14128 S:      Supported
14129 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14130 F:      drivers/pci/controller/pcie-altera-msi.c
14131
14132 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14133 M:      Toan Le <toan@os.amperecomputing.com>
14134 L:      linux-pci@vger.kernel.org
14135 L:      linux-arm-kernel@lists.infradead.org
14136 S:      Maintained
14137 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14138 F:      drivers/pci/controller/pci-xgene-msi.c
14139
14140 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14141 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14142 R:      Rob Herring <robh@kernel.org>
14143 L:      linux-pci@vger.kernel.org
14144 S:      Supported
14145 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
14147 F:      drivers/pci/controller/
14148
14149 PCI SUBSYSTEM
14150 M:      Bjorn Helgaas <bhelgaas@google.com>
14151 L:      linux-pci@vger.kernel.org
14152 S:      Supported
14153 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14155 F:      Documentation/PCI/
14156 F:      Documentation/devicetree/bindings/pci/
14157 F:      arch/x86/kernel/early-quirks.c
14158 F:      arch/x86/kernel/quirks.c
14159 F:      arch/x86/pci/
14160 F:      drivers/acpi/pci*
14161 F:      drivers/pci/
14162 F:      include/asm-generic/pci*
14163 F:      include/linux/of_pci.h
14164 F:      include/linux/pci*
14165 F:      include/uapi/linux/pci*
14166 F:      lib/pci*
14167
14168 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14169 M:      Jonathan Chocron <jonnyc@amazon.com>
14170 L:      linux-pci@vger.kernel.org
14171 S:      Maintained
14172 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
14173 F:      drivers/pci/controller/dwc/pcie-al.c
14174
14175 PCIE DRIVER FOR AMLOGIC MESON
14176 M:      Yue Wang <yue.wang@Amlogic.com>
14177 L:      linux-pci@vger.kernel.org
14178 L:      linux-amlogic@lists.infradead.org
14179 S:      Maintained
14180 F:      drivers/pci/controller/dwc/pci-meson.c
14181
14182 PCIE DRIVER FOR AXIS ARTPEC
14183 M:      Jesper Nilsson <jesper.nilsson@axis.com>
14184 L:      linux-arm-kernel@axis.com
14185 L:      linux-pci@vger.kernel.org
14186 S:      Maintained
14187 F:      Documentation/devicetree/bindings/pci/axis,artpec*
14188 F:      drivers/pci/controller/dwc/*artpec*
14189
14190 PCIE DRIVER FOR CAVIUM THUNDERX
14191 M:      Robert Richter <rric@kernel.org>
14192 L:      linux-pci@vger.kernel.org
14193 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14194 S:      Odd Fixes
14195 F:      drivers/pci/controller/pci-thunder-*
14196
14197 PCIE DRIVER FOR HISILICON
14198 M:      Zhou Wang <wangzhou1@hisilicon.com>
14199 L:      linux-pci@vger.kernel.org
14200 S:      Maintained
14201 F:      drivers/pci/controller/dwc/pcie-hisi.c
14202
14203 PCIE DRIVER FOR HISILICON KIRIN
14204 M:      Xiaowei Song <songxiaowei@hisilicon.com>
14205 M:      Binghui Wang <wangbinghui@hisilicon.com>
14206 L:      linux-pci@vger.kernel.org
14207 S:      Maintained
14208 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
14209 F:      drivers/pci/controller/dwc/pcie-kirin.c
14210
14211 PCIE DRIVER FOR HISILICON STB
14212 M:      Shawn Guo <shawn.guo@linaro.org>
14213 L:      linux-pci@vger.kernel.org
14214 S:      Maintained
14215 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
14216 F:      drivers/pci/controller/dwc/pcie-histb.c
14217
14218 PCIE DRIVER FOR MEDIATEK
14219 M:      Ryder Lee <ryder.lee@mediatek.com>
14220 M:      Jianjun Wang <jianjun.wang@mediatek.com>
14221 L:      linux-pci@vger.kernel.org
14222 L:      linux-mediatek@lists.infradead.org
14223 S:      Supported
14224 F:      Documentation/devicetree/bindings/pci/mediatek*
14225 F:      drivers/pci/controller/*mediatek*
14226
14227 PCIE DRIVER FOR MICROCHIP
14228 M:      Daire McNamara <daire.mcnamara@microchip.com>
14229 L:      linux-pci@vger.kernel.org
14230 S:      Supported
14231 F:      Documentation/devicetree/bindings/pci/microchip*
14232 F:      drivers/pci/controller/*microchip*
14233
14234 PCIE DRIVER FOR QUALCOMM MSM
14235 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
14236 L:      linux-pci@vger.kernel.org
14237 L:      linux-arm-msm@vger.kernel.org
14238 S:      Maintained
14239 F:      drivers/pci/controller/dwc/*qcom*
14240
14241 PCIE DRIVER FOR ROCKCHIP
14242 M:      Shawn Lin <shawn.lin@rock-chips.com>
14243 L:      linux-pci@vger.kernel.org
14244 L:      linux-rockchip@lists.infradead.org
14245 S:      Maintained
14246 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
14247 F:      drivers/pci/controller/pcie-rockchip*
14248
14249 PCIE DRIVER FOR SOCIONEXT UNIPHIER
14250 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
14251 L:      linux-pci@vger.kernel.org
14252 S:      Maintained
14253 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
14254 F:      drivers/pci/controller/dwc/pcie-uniphier*
14255
14256 PCIE DRIVER FOR ST SPEAR13XX
14257 M:      Pratyush Anand <pratyush.anand@gmail.com>
14258 L:      linux-pci@vger.kernel.org
14259 S:      Maintained
14260 F:      drivers/pci/controller/dwc/*spear*
14261
14262 PCMCIA SUBSYSTEM
14263 M:      Dominik Brodowski <linux@dominikbrodowski.net>
14264 S:      Odd Fixes
14265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
14266 F:      Documentation/pcmcia/
14267 F:      drivers/pcmcia/
14268 F:      include/pcmcia/
14269 F:      tools/pcmcia/
14270
14271 PCNET32 NETWORK DRIVER
14272 M:      Don Fry <pcnet32@frontier.com>
14273 L:      netdev@vger.kernel.org
14274 S:      Maintained
14275 F:      drivers/net/ethernet/amd/pcnet32.c
14276
14277 PCRYPT PARALLEL CRYPTO ENGINE
14278 M:      Steffen Klassert <steffen.klassert@secunet.com>
14279 L:      linux-crypto@vger.kernel.org
14280 S:      Maintained
14281 F:      crypto/pcrypt.c
14282 F:      include/crypto/pcrypt.h
14283
14284 PEAQ WMI HOTKEYS DRIVER
14285 M:      Hans de Goede <hdegoede@redhat.com>
14286 L:      platform-driver-x86@vger.kernel.org
14287 S:      Maintained
14288 F:      drivers/platform/x86/peaq-wmi.c
14289
14290 PENSANDO ETHERNET DRIVERS
14291 M:      Shannon Nelson <snelson@pensando.io>
14292 M:      drivers@pensando.io
14293 L:      netdev@vger.kernel.org
14294 S:      Supported
14295 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
14296 F:      drivers/net/ethernet/pensando/
14297
14298 PER-CPU MEMORY ALLOCATOR
14299 M:      Dennis Zhou <dennis@kernel.org>
14300 M:      Tejun Heo <tj@kernel.org>
14301 M:      Christoph Lameter <cl@linux.com>
14302 S:      Maintained
14303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
14304 F:      arch/*/include/asm/percpu.h
14305 F:      include/linux/percpu*.h
14306 F:      mm/percpu*.c
14307
14308 PER-TASK DELAY ACCOUNTING
14309 M:      Balbir Singh <bsingharora@gmail.com>
14310 S:      Maintained
14311 F:      include/linux/delayacct.h
14312 F:      kernel/delayacct.c
14313
14314 PERFORMANCE EVENTS SUBSYSTEM
14315 M:      Peter Zijlstra <peterz@infradead.org>
14316 M:      Ingo Molnar <mingo@redhat.com>
14317 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
14318 R:      Mark Rutland <mark.rutland@arm.com>
14319 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
14320 R:      Jiri Olsa <jolsa@redhat.com>
14321 R:      Namhyung Kim <namhyung@kernel.org>
14322 L:      linux-perf-users@vger.kernel.org
14323 L:      linux-kernel@vger.kernel.org
14324 S:      Supported
14325 W:      https://perf.wiki.kernel.org/
14326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14327 F:      arch/*/events/*
14328 F:      arch/*/events/*/*
14329 F:      arch/*/include/asm/perf_event.h
14330 F:      arch/*/kernel/*/*/perf_event*.c
14331 F:      arch/*/kernel/*/perf_event*.c
14332 F:      arch/*/kernel/perf_callchain.c
14333 F:      arch/*/kernel/perf_event*.c
14334 F:      include/linux/perf_event.h
14335 F:      include/uapi/linux/perf_event.h
14336 F:      kernel/events/*
14337 F:      tools/lib/perf/
14338 F:      tools/perf/
14339
14340 PERFORMANCE EVENTS TOOLING ARM64
14341 R:      John Garry <john.garry@huawei.com>
14342 R:      Will Deacon <will@kernel.org>
14343 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
14344 R:      Leo Yan <leo.yan@linaro.org>
14345 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14346 S:      Supported
14347 F:      tools/build/feature/test-libopencsd.c
14348 F:      tools/perf/arch/arm*/
14349 F:      tools/perf/pmu-events/arch/arm64/
14350 F:      tools/perf/util/arm-spe*
14351 F:      tools/perf/util/cs-etm*
14352
14353 PERSONALITY HANDLING
14354 M:      Christoph Hellwig <hch@infradead.org>
14355 L:      linux-abi-devel@lists.sourceforge.net
14356 S:      Maintained
14357 F:      include/linux/personality.h
14358 F:      include/uapi/linux/personality.h
14359
14360 PHOENIX RC FLIGHT CONTROLLER ADAPTER
14361 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
14362 L:      linux-input@vger.kernel.org
14363 S:      Maintained
14364 F:      Documentation/input/devices/pxrc.rst
14365 F:      drivers/input/joystick/pxrc.c
14366
14367 PHONET PROTOCOL
14368 M:      Remi Denis-Courmont <courmisch@gmail.com>
14369 S:      Supported
14370 F:      Documentation/networking/phonet.rst
14371 F:      include/linux/phonet.h
14372 F:      include/net/phonet/
14373 F:      include/uapi/linux/phonet.h
14374 F:      net/phonet/
14375
14376 PHRAM MTD DRIVER
14377 M:      Joern Engel <joern@lazybastard.org>
14378 L:      linux-mtd@lists.infradead.org
14379 S:      Maintained
14380 F:      drivers/mtd/devices/phram.c
14381
14382 PICOLCD HID DRIVER
14383 M:      Bruno Prémont <bonbons@linux-vserver.org>
14384 L:      linux-input@vger.kernel.org
14385 S:      Maintained
14386 F:      drivers/hid/hid-picolcd*
14387
14388 PIDFD API
14389 M:      Christian Brauner <christian@brauner.io>
14390 L:      linux-kernel@vger.kernel.org
14391 S:      Maintained
14392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14393 F:      samples/pidfd/
14394 F:      tools/testing/selftests/clone3/
14395 F:      tools/testing/selftests/pid_namespace/
14396 F:      tools/testing/selftests/pidfd/
14397 K:      (?i)pidfd
14398 K:      (?i)clone3
14399 K:      \b(clone_args|kernel_clone_args)\b
14400
14401 PIN CONTROL SUBSYSTEM
14402 M:      Linus Walleij <linus.walleij@linaro.org>
14403 L:      linux-gpio@vger.kernel.org
14404 S:      Maintained
14405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
14406 F:      Documentation/devicetree/bindings/pinctrl/
14407 F:      Documentation/driver-api/pin-control.rst
14408 F:      drivers/pinctrl/
14409 F:      include/linux/pinctrl/
14410
14411 PIN CONTROLLER - FREESCALE
14412 M:      Dong Aisheng <aisheng.dong@nxp.com>
14413 M:      Fabio Estevam <festevam@gmail.com>
14414 M:      Shawn Guo <shawnguo@kernel.org>
14415 M:      Stefan Agner <stefan@agner.ch>
14416 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
14417 L:      linux-gpio@vger.kernel.org
14418 S:      Maintained
14419 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
14420 F:      drivers/pinctrl/freescale/
14421
14422 PIN CONTROLLER - INTEL
14423 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
14424 M:      Andy Shevchenko <andy@kernel.org>
14425 S:      Maintained
14426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
14427 F:      drivers/pinctrl/intel/
14428
14429 PIN CONTROLLER - MEDIATEK
14430 M:      Sean Wang <sean.wang@kernel.org>
14431 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
14432 S:      Maintained
14433 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
14434 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
14435 F:      drivers/pinctrl/mediatek/
14436
14437 PIN CONTROLLER - MICROCHIP AT91
14438 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
14439 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14440 L:      linux-gpio@vger.kernel.org
14441 S:      Supported
14442 F:      drivers/gpio/gpio-sama5d2-piobu.c
14443 F:      drivers/pinctrl/pinctrl-at91*
14444
14445 PIN CONTROLLER - QUALCOMM
14446 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14447 L:      linux-arm-msm@vger.kernel.org
14448 S:      Maintained
14449 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14450 F:      drivers/pinctrl/qcom/
14451
14452 PIN CONTROLLER - RENESAS
14453 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14454 L:      linux-renesas-soc@vger.kernel.org
14455 S:      Supported
14456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14457 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
14458 F:      drivers/pinctrl/renesas/
14459
14460 PIN CONTROLLER - SAMSUNG
14461 M:      Tomasz Figa <tomasz.figa@gmail.com>
14462 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
14463 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14464 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14465 L:      linux-samsung-soc@vger.kernel.org
14466 S:      Maintained
14467 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
14468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14469 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14470 F:      drivers/pinctrl/samsung/
14471 F:      include/dt-bindings/pinctrl/samsung.h
14472
14473 PIN CONTROLLER - SINGLE
14474 M:      Tony Lindgren <tony@atomide.com>
14475 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
14476 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14477 L:      linux-omap@vger.kernel.org
14478 S:      Maintained
14479 F:      drivers/pinctrl/pinctrl-single.c
14480
14481 PIN CONTROLLER - ST SPEAR
14482 M:      Viresh Kumar <vireshk@kernel.org>
14483 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14484 S:      Maintained
14485 W:      http://www.st.com/spear
14486 F:      drivers/pinctrl/spear/
14487
14488 PISTACHIO SOC SUPPORT
14489 M:      James Hartley <james.hartley@sondrel.com>
14490 L:      linux-mips@vger.kernel.org
14491 S:      Odd Fixes
14492 F:      arch/mips/boot/dts/img/pistachio*
14493 F:      arch/mips/configs/pistachio*_defconfig
14494 F:      arch/mips/pistachio/
14495
14496 PKTCDVD DRIVER
14497 M:      linux-block@vger.kernel.org
14498 S:      Orphan
14499 F:      drivers/block/pktcdvd.c
14500 F:      include/linux/pktcdvd.h
14501 F:      include/uapi/linux/pktcdvd.h
14502
14503 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14504 M:      Tomasz Duszynski <tduszyns@gmail.com>
14505 S:      Maintained
14506 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14507 F:      drivers/iio/chemical/pms7003.c
14508
14509 PLDMFW LIBRARY
14510 M:      Jacob Keller <jacob.e.keller@intel.com>
14511 S:      Maintained
14512 F:      Documentation/driver-api/pldmfw/
14513 F:      include/linux/pldmfw.h
14514 F:      lib/pldmfw/
14515
14516 PLX DMA DRIVER
14517 M:      Logan Gunthorpe <logang@deltatee.com>
14518 S:      Maintained
14519 F:      drivers/dma/plx_dma.c
14520
14521 PM6764TR DRIVER
14522 M:      Charles Hsu     <hsu.yungteng@gmail.com>
14523 L:      linux-hwmon@vger.kernel.org
14524 S:      Maintained
14525 F:      Documentation/hwmon/pm6764tr.rst
14526 F:      drivers/hwmon/pmbus/pm6764tr.c
14527
14528 PM-GRAPH UTILITY
14529 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
14530 L:      linux-pm@vger.kernel.org
14531 S:      Supported
14532 W:      https://01.org/pm-graph
14533 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
14534 T:      git git://github.com/intel/pm-graph
14535 F:      tools/power/pm-graph
14536
14537 PMBUS HARDWARE MONITORING DRIVERS
14538 M:      Guenter Roeck <linux@roeck-us.net>
14539 L:      linux-hwmon@vger.kernel.org
14540 S:      Maintained
14541 W:      http://hwmon.wiki.kernel.org/
14542 W:      http://www.roeck-us.net/linux/drivers/
14543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
14544 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
14545 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
14546 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
14547 F:      Documentation/hwmon/adm1275.rst
14548 F:      Documentation/hwmon/ibm-cffps.rst
14549 F:      Documentation/hwmon/ir35221.rst
14550 F:      Documentation/hwmon/lm25066.rst
14551 F:      Documentation/hwmon/ltc2978.rst
14552 F:      Documentation/hwmon/ltc3815.rst
14553 F:      Documentation/hwmon/max16064.rst
14554 F:      Documentation/hwmon/max20751.rst
14555 F:      Documentation/hwmon/max31785.rst
14556 F:      Documentation/hwmon/max34440.rst
14557 F:      Documentation/hwmon/max8688.rst
14558 F:      Documentation/hwmon/pmbus-core.rst
14559 F:      Documentation/hwmon/pmbus.rst
14560 F:      Documentation/hwmon/tps40422.rst
14561 F:      Documentation/hwmon/ucd9000.rst
14562 F:      Documentation/hwmon/ucd9200.rst
14563 F:      Documentation/hwmon/zl6100.rst
14564 F:      drivers/hwmon/pmbus/
14565 F:      include/linux/pmbus.h
14566
14567 PMC SIERRA MaxRAID DRIVER
14568 L:      linux-scsi@vger.kernel.org
14569 S:      Orphan
14570 W:      http://www.pmc-sierra.com/
14571 F:      drivers/scsi/pmcraid.*
14572
14573 PMC SIERRA PM8001 DRIVER
14574 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14575 L:      linux-scsi@vger.kernel.org
14576 S:      Supported
14577 F:      drivers/scsi/pm8001/
14578
14579 PNI RM3100 IIO DRIVER
14580 M:      Song Qiang <songqiang1304521@gmail.com>
14581 L:      linux-iio@vger.kernel.org
14582 S:      Maintained
14583 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
14584 F:      drivers/iio/magnetometer/rm3100*
14585
14586 PNP SUPPORT
14587 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
14588 L:      linux-acpi@vger.kernel.org
14589 S:      Maintained
14590 F:      drivers/pnp/
14591 F:      include/linux/pnp.h
14592
14593 POSIX CLOCKS and TIMERS
14594 M:      Thomas Gleixner <tglx@linutronix.de>
14595 L:      linux-kernel@vger.kernel.org
14596 S:      Maintained
14597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
14598 F:      fs/timerfd.c
14599 F:      include/linux/time_namespace.h
14600 F:      include/linux/timer*
14601 F:      kernel/time/*timer*
14602 F:      kernel/time/namespace.c
14603
14604 POWER MANAGEMENT CORE
14605 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
14606 L:      linux-pm@vger.kernel.org
14607 S:      Supported
14608 B:      https://bugzilla.kernel.org
14609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14610 F:      drivers/base/power/
14611 F:      drivers/powercap/
14612 F:      include/linux/intel_rapl.h
14613 F:      include/linux/pm.h
14614 F:      include/linux/pm_*
14615 F:      include/linux/powercap.h
14616 F:      kernel/configs/nopm.config
14617
14618 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
14619 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
14620 L:      linux-pm@vger.kernel.org
14621 S:      Supported
14622 B:      https://bugzilla.kernel.org
14623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14624 F:      drivers/powercap/dtpm*
14625 F:      include/linux/dtpm.h
14626
14627 POWER STATE COORDINATION INTERFACE (PSCI)
14628 M:      Mark Rutland <mark.rutland@arm.com>
14629 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14630 L:      linux-arm-kernel@lists.infradead.org
14631 S:      Maintained
14632 F:      drivers/firmware/psci/
14633 F:      include/linux/psci.h
14634 F:      include/uapi/linux/psci.h
14635
14636 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
14637 M:      Sebastian Reichel <sre@kernel.org>
14638 L:      linux-pm@vger.kernel.org
14639 S:      Maintained
14640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
14641 F:      Documentation/ABI/testing/sysfs-class-power
14642 F:      Documentation/devicetree/bindings/power/supply/
14643 F:      drivers/power/supply/
14644 F:      include/linux/power_supply.h
14645
14646 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
14647 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
14648 L:      linuxppc-dev@lists.ozlabs.org
14649 S:      Maintained
14650 F:      drivers/char/powernv-op-panel.c
14651
14652 PPP OVER ATM (RFC 2364)
14653 M:      Mitchell Blank Jr <mitch@sfgoth.com>
14654 S:      Maintained
14655 F:      include/uapi/linux/atmppp.h
14656 F:      net/atm/pppoatm.c
14657
14658 PPP OVER ETHERNET
14659 M:      Michal Ostrowski <mostrows@earthlink.net>
14660 S:      Maintained
14661 F:      drivers/net/ppp/pppoe.c
14662 F:      drivers/net/ppp/pppox.c
14663
14664 PPP OVER L2TP
14665 M:      James Chapman <jchapman@katalix.com>
14666 S:      Maintained
14667 F:      include/linux/if_pppol2tp.h
14668 F:      include/uapi/linux/if_pppol2tp.h
14669 F:      net/l2tp/l2tp_ppp.c
14670
14671 PPP PROTOCOL DRIVERS AND COMPRESSORS
14672 M:      Paul Mackerras <paulus@samba.org>
14673 L:      linux-ppp@vger.kernel.org
14674 S:      Maintained
14675 F:      drivers/net/ppp/ppp_*
14676
14677 PPS SUPPORT
14678 M:      Rodolfo Giometti <giometti@enneenne.com>
14679 L:      linuxpps@ml.enneenne.com (subscribers-only)
14680 S:      Maintained
14681 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
14682 F:      Documentation/ABI/testing/sysfs-pps
14683 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
14684 F:      Documentation/driver-api/pps.rst
14685 F:      drivers/pps/
14686 F:      include/linux/pps*.h
14687 F:      include/uapi/linux/pps.h
14688
14689 PPTP DRIVER
14690 M:      Dmitry Kozlov <xeb@mail.ru>
14691 L:      netdev@vger.kernel.org
14692 S:      Maintained
14693 W:      http://sourceforge.net/projects/accel-pptp
14694 F:      drivers/net/ppp/pptp.c
14695
14696 PRESSURE STALL INFORMATION (PSI)
14697 M:      Johannes Weiner <hannes@cmpxchg.org>
14698 S:      Maintained
14699 F:      include/linux/psi*
14700 F:      kernel/sched/psi.c
14701
14702 PRINTK
14703 M:      Petr Mladek <pmladek@suse.com>
14704 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
14705 R:      Steven Rostedt <rostedt@goodmis.org>
14706 R:      John Ogness <john.ogness@linutronix.de>
14707 S:      Maintained
14708 F:      include/linux/printk.h
14709 F:      kernel/printk/
14710
14711 PRISM54 WIRELESS DRIVER
14712 M:      Luis Chamberlain <mcgrof@kernel.org>
14713 L:      linux-wireless@vger.kernel.org
14714 S:      Obsolete
14715 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14716 F:      drivers/net/wireless/intersil/prism54/
14717
14718 PROC FILESYSTEM
14719 R:      Alexey Dobriyan <adobriyan@gmail.com>
14720 L:      linux-kernel@vger.kernel.org
14721 L:      linux-fsdevel@vger.kernel.org
14722 S:      Maintained
14723 F:      Documentation/filesystems/proc.rst
14724 F:      fs/proc/
14725 F:      include/linux/proc_fs.h
14726 F:      tools/testing/selftests/proc/
14727
14728 PROC SYSCTL
14729 M:      Luis Chamberlain <mcgrof@kernel.org>
14730 M:      Kees Cook <keescook@chromium.org>
14731 M:      Iurii Zaikin <yzaikin@google.com>
14732 L:      linux-kernel@vger.kernel.org
14733 L:      linux-fsdevel@vger.kernel.org
14734 S:      Maintained
14735 F:      fs/proc/proc_sysctl.c
14736 F:      include/linux/sysctl.h
14737 F:      kernel/sysctl-test.c
14738 F:      kernel/sysctl.c
14739 F:      tools/testing/selftests/sysctl/
14740
14741 PS3 NETWORK SUPPORT
14742 M:      Geoff Levand <geoff@infradead.org>
14743 L:      netdev@vger.kernel.org
14744 L:      linuxppc-dev@lists.ozlabs.org
14745 S:      Maintained
14746 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
14747
14748 PS3 PLATFORM SUPPORT
14749 M:      Geoff Levand <geoff@infradead.org>
14750 L:      linuxppc-dev@lists.ozlabs.org
14751 S:      Maintained
14752 F:      arch/powerpc/boot/ps3*
14753 F:      arch/powerpc/include/asm/lv1call.h
14754 F:      arch/powerpc/include/asm/ps3*.h
14755 F:      arch/powerpc/platforms/ps3/
14756 F:      drivers/*/ps3*
14757 F:      drivers/ps3/
14758 F:      drivers/rtc/rtc-ps3.c
14759 F:      drivers/usb/host/*ps3.c
14760 F:      sound/ppc/snd_ps3*
14761
14762 PS3VRAM DRIVER
14763 M:      Jim Paris <jim@jtan.com>
14764 M:      Geoff Levand <geoff@infradead.org>
14765 L:      linuxppc-dev@lists.ozlabs.org
14766 S:      Maintained
14767 F:      drivers/block/ps3vram.c
14768
14769 PSAMPLE PACKET SAMPLING SUPPORT
14770 M:      Yotam Gigi <yotam.gi@gmail.com>
14771 S:      Maintained
14772 F:      include/net/psample.h
14773 F:      include/uapi/linux/psample.h
14774 F:      net/psample
14775
14776 PSTORE FILESYSTEM
14777 M:      Kees Cook <keescook@chromium.org>
14778 M:      Anton Vorontsov <anton@enomsg.org>
14779 M:      Colin Cross <ccross@android.com>
14780 M:      Tony Luck <tony.luck@intel.com>
14781 S:      Maintained
14782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
14783 F:      Documentation/admin-guide/ramoops.rst
14784 F:      Documentation/admin-guide/pstore-blk.rst
14785 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
14786 F:      drivers/acpi/apei/erst.c
14787 F:      drivers/firmware/efi/efi-pstore.c
14788 F:      fs/pstore/
14789 F:      include/linux/pstore*
14790 K:      \b(pstore|ramoops)
14791
14792 PTP HARDWARE CLOCK SUPPORT
14793 M:      Richard Cochran <richardcochran@gmail.com>
14794 L:      netdev@vger.kernel.org
14795 S:      Maintained
14796 W:      http://linuxptp.sourceforge.net/
14797 F:      Documentation/ABI/testing/sysfs-ptp
14798 F:      Documentation/driver-api/ptp.rst
14799 F:      drivers/net/phy/dp83640*
14800 F:      drivers/ptp/*
14801 F:      include/linux/ptp_cl*
14802
14803 PTRACE SUPPORT
14804 M:      Oleg Nesterov <oleg@redhat.com>
14805 S:      Maintained
14806 F:      arch/*/*/ptrace*.c
14807 F:      arch/*/include/asm/ptrace*.h
14808 F:      arch/*/ptrace*.c
14809 F:      include/asm-generic/syscall.h
14810 F:      include/linux/ptrace.h
14811 F:      include/linux/regset.h
14812 F:      include/linux/tracehook.h
14813 F:      include/uapi/linux/ptrace.h
14814 F:      include/uapi/linux/ptrace.h
14815 F:      kernel/ptrace.c
14816
14817 PULSE8-CEC DRIVER
14818 M:      Hans Verkuil <hverkuil@xs4all.nl>
14819 L:      linux-media@vger.kernel.org
14820 S:      Maintained
14821 T:      git git://linuxtv.org/media_tree.git
14822 F:      Documentation/admin-guide/media/pulse8-cec.rst
14823 F:      drivers/media/cec/usb/pulse8/
14824
14825 PVRUSB2 VIDEO4LINUX DRIVER
14826 M:      Mike Isely <isely@pobox.com>
14827 L:      pvrusb2@isely.net       (subscribers-only)
14828 L:      linux-media@vger.kernel.org
14829 S:      Maintained
14830 W:      http://www.isely.net/pvrusb2/
14831 T:      git git://linuxtv.org/media_tree.git
14832 F:      Documentation/driver-api/media/drivers/pvrusb2*
14833 F:      drivers/media/usb/pvrusb2/
14834
14835 PWC WEBCAM DRIVER
14836 M:      Hans Verkuil <hverkuil@xs4all.nl>
14837 L:      linux-media@vger.kernel.org
14838 S:      Odd Fixes
14839 T:      git git://linuxtv.org/media_tree.git
14840 F:      drivers/media/usb/pwc/*
14841 F:      include/trace/events/pwc.h
14842
14843 PWM FAN DRIVER
14844 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14845 L:      linux-hwmon@vger.kernel.org
14846 S:      Supported
14847 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
14848 F:      Documentation/hwmon/pwm-fan.rst
14849 F:      drivers/hwmon/pwm-fan.c
14850
14851 PWM IR Transmitter
14852 M:      Sean Young <sean@mess.org>
14853 L:      linux-media@vger.kernel.org
14854 S:      Maintained
14855 F:      drivers/media/rc/pwm-ir-tx.c
14856
14857 PWM SUBSYSTEM
14858 M:      Thierry Reding <thierry.reding@gmail.com>
14859 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
14860 M:      Lee Jones <lee.jones@linaro.org>
14861 L:      linux-pwm@vger.kernel.org
14862 S:      Maintained
14863 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
14864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
14865 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
14866 F:      Documentation/devicetree/bindings/pwm/
14867 F:      Documentation/driver-api/pwm.rst
14868 F:      drivers/gpio/gpio-mvebu.c
14869 F:      drivers/pwm/
14870 F:      drivers/video/backlight/pwm_bl.c
14871 F:      include/linux/pwm.h
14872 F:      include/linux/pwm_backlight.h
14873 K:      pwm_(config|apply_state|ops)
14874
14875 PXA GPIO DRIVER
14876 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14877 L:      linux-gpio@vger.kernel.org
14878 S:      Maintained
14879 F:      drivers/gpio/gpio-pxa.c
14880
14881 PXA MMCI DRIVER
14882 S:      Orphan
14883
14884 PXA RTC DRIVER
14885 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14886 L:      linux-rtc@vger.kernel.org
14887 S:      Maintained
14888
14889 PXA2xx/PXA3xx SUPPORT
14890 M:      Daniel Mack <daniel@zonque.org>
14891 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
14892 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14893 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14894 S:      Maintained
14895 T:      git git://github.com/hzhuang1/linux.git
14896 T:      git git://github.com/rjarzmik/linux.git
14897 F:      arch/arm/boot/dts/pxa*
14898 F:      arch/arm/mach-pxa/
14899 F:      drivers/dma/pxa*
14900 F:      drivers/pcmcia/pxa2xx*
14901 F:      drivers/pinctrl/pxa/
14902 F:      drivers/spi/spi-pxa2xx*
14903 F:      drivers/usb/gadget/udc/pxa2*
14904 F:      include/sound/pxa2xx-lib.h
14905 F:      sound/arm/pxa*
14906 F:      sound/soc/pxa/
14907
14908 QAT DRIVER
14909 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
14910 L:      qat-linux@intel.com
14911 S:      Supported
14912 F:      drivers/crypto/qat/
14913
14914 QCOM AUDIO (ASoC) DRIVERS
14915 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14916 M:      Banajit Goswami <bgoswami@codeaurora.org>
14917 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14918 S:      Supported
14919 F:      sound/soc/codecs/lpass-va-macro.c
14920 F:      sound/soc/codecs/lpass-wsa-macro.*
14921 F:      sound/soc/codecs/msm8916-wcd-analog.c
14922 F:      sound/soc/codecs/msm8916-wcd-digital.c
14923 F:      sound/soc/codecs/wcd9335.*
14924 F:      sound/soc/codecs/wcd934x.c
14925 F:      sound/soc/codecs/wcd-clsh-v2.*
14926 F:      sound/soc/codecs/wsa881x.c
14927 F:      sound/soc/qcom/
14928
14929 QCOM IPA DRIVER
14930 M:      Alex Elder <elder@kernel.org>
14931 L:      netdev@vger.kernel.org
14932 S:      Supported
14933 F:      drivers/net/ipa/
14934
14935 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
14936 M:      Gabriel Somlo <somlo@cmu.edu>
14937 M:      "Michael S. Tsirkin" <mst@redhat.com>
14938 L:      qemu-devel@nongnu.org
14939 S:      Maintained
14940 F:      drivers/firmware/qemu_fw_cfg.c
14941 F:      include/uapi/linux/qemu_fw_cfg.h
14942
14943 QIB DRIVER
14944 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14945 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14946 L:      linux-rdma@vger.kernel.org
14947 S:      Supported
14948 F:      drivers/infiniband/hw/qib/
14949
14950 QLOGIC QL41xxx FCOE DRIVER
14951 M:      Saurav Kashyap <skashyap@marvell.com>
14952 M:      Javed Hasan <jhasan@marvell.com>
14953 M:      GR-QLogic-Storage-Upstream@marvell.com
14954 L:      linux-scsi@vger.kernel.org
14955 S:      Supported
14956 F:      drivers/scsi/qedf/
14957
14958 QLOGIC QL41xxx ISCSI DRIVER
14959 M:      Nilesh Javali <njavali@marvell.com>
14960 M:      Manish Rangankar <mrangankar@marvell.com>
14961 M:      GR-QLogic-Storage-Upstream@marvell.com
14962 L:      linux-scsi@vger.kernel.org
14963 S:      Supported
14964 F:      drivers/scsi/qedi/
14965
14966 QLOGIC QL4xxx ETHERNET DRIVER
14967 M:      Ariel Elior <aelior@marvell.com>
14968 M:      GR-everest-linux-l2@marvell.com
14969 L:      netdev@vger.kernel.org
14970 S:      Supported
14971 F:      drivers/net/ethernet/qlogic/qed/
14972 F:      drivers/net/ethernet/qlogic/qede/
14973 F:      include/linux/qed/
14974
14975 QLOGIC QL4xxx RDMA DRIVER
14976 M:      Michal Kalderon <mkalderon@marvell.com>
14977 M:      Ariel Elior <aelior@marvell.com>
14978 L:      linux-rdma@vger.kernel.org
14979 S:      Supported
14980 F:      drivers/infiniband/hw/qedr/
14981 F:      include/uapi/rdma/qedr-abi.h
14982
14983 QLOGIC QLA1280 SCSI DRIVER
14984 M:      Michael Reed <mdr@sgi.com>
14985 L:      linux-scsi@vger.kernel.org
14986 S:      Maintained
14987 F:      drivers/scsi/qla1280.[ch]
14988
14989 QLOGIC QLA2XXX FC-SCSI DRIVER
14990 M:      Nilesh Javali <njavali@marvell.com>
14991 M:      GR-QLogic-Storage-Upstream@marvell.com
14992 L:      linux-scsi@vger.kernel.org
14993 S:      Supported
14994 F:      drivers/scsi/qla2xxx/
14995
14996 QLOGIC QLA3XXX NETWORK DRIVER
14997 M:      GR-Linux-NIC-Dev@marvell.com
14998 L:      netdev@vger.kernel.org
14999 S:      Supported
15000 F:      drivers/net/ethernet/qlogic/qla3xxx.*
15001
15002 QLOGIC QLA4XXX iSCSI DRIVER
15003 M:      Nilesh Javali <njavali@marvell.com>
15004 M:      Manish Rangankar <mrangankar@marvell.com>
15005 M:      GR-QLogic-Storage-Upstream@marvell.com
15006 L:      linux-scsi@vger.kernel.org
15007 S:      Supported
15008 F:      drivers/scsi/qla4xxx/
15009
15010 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
15011 M:      Shahed Shaikh <shshaikh@marvell.com>
15012 M:      Manish Chopra <manishc@marvell.com>
15013 M:      GR-Linux-NIC-Dev@marvell.com
15014 L:      netdev@vger.kernel.org
15015 S:      Supported
15016 F:      drivers/net/ethernet/qlogic/qlcnic/
15017
15018 QLOGIC QLGE 10Gb ETHERNET DRIVER
15019 M:      Manish Chopra <manishc@marvell.com>
15020 M:      GR-Linux-NIC-Dev@marvell.com
15021 M:      Coiby Xu <coiby.xu@gmail.com>
15022 L:      netdev@vger.kernel.org
15023 S:      Supported
15024 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
15025 F:      drivers/staging/qlge/
15026
15027 QM1D1B0004 MEDIA DRIVER
15028 M:      Akihiro Tsukada <tskd08@gmail.com>
15029 L:      linux-media@vger.kernel.org
15030 S:      Odd Fixes
15031 F:      drivers/media/tuners/qm1d1b0004*
15032
15033 QM1D1C0042 MEDIA DRIVER
15034 M:      Akihiro Tsukada <tskd08@gmail.com>
15035 L:      linux-media@vger.kernel.org
15036 S:      Odd Fixes
15037 F:      drivers/media/tuners/qm1d1c0042*
15038
15039 QNX4 FILESYSTEM
15040 M:      Anders Larsen <al@alarsen.net>
15041 S:      Maintained
15042 W:      http://www.alarsen.net/linux/qnx4fs/
15043 F:      fs/qnx4/
15044 F:      include/uapi/linux/qnx4_fs.h
15045 F:      include/uapi/linux/qnxtypes.h
15046
15047 QORIQ DPAA2 FSL-MC BUS DRIVER
15048 M:      Stuart Yoder <stuyoder@gmail.com>
15049 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
15050 L:      linux-kernel@vger.kernel.org
15051 S:      Maintained
15052 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
15053 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15054 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15055 F:      drivers/bus/fsl-mc/
15056 F:      include/uapi/linux/fsl_mc.h
15057
15058 QT1010 MEDIA DRIVER
15059 M:      Antti Palosaari <crope@iki.fi>
15060 L:      linux-media@vger.kernel.org
15061 S:      Maintained
15062 W:      https://linuxtv.org
15063 W:      http://palosaari.fi/linux/
15064 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15065 T:      git git://linuxtv.org/anttip/media_tree.git
15066 F:      drivers/media/tuners/qt1010*
15067
15068 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15069 M:      Kalle Valo <kvalo@codeaurora.org>
15070 L:      ath10k@lists.infradead.org
15071 S:      Supported
15072 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15074 F:      drivers/net/wireless/ath/ath10k/
15075
15076 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15077 M:      Kalle Valo <kvalo@codeaurora.org>
15078 L:      ath11k@lists.infradead.org
15079 S:      Supported
15080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15081 F:      drivers/net/wireless/ath/ath11k/
15082
15083 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15084 M:      ath9k-devel@qca.qualcomm.com
15085 L:      linux-wireless@vger.kernel.org
15086 S:      Supported
15087 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15088 F:      drivers/net/wireless/ath/ath9k/
15089
15090 QUALCOMM CAMERA SUBSYSTEM DRIVER
15091 M:      Robert Foss <robert.foss@linaro.org>
15092 M:      Todor Tomov <todor.too@gmail.com>
15093 L:      linux-media@vger.kernel.org
15094 S:      Maintained
15095 F:      Documentation/admin-guide/media/qcom_camss.rst
15096 F:      Documentation/devicetree/bindings/media/*camss*
15097 F:      drivers/media/platform/qcom/camss/
15098
15099 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15100 M:      Niklas Cassel <nks@flawful.org>
15101 L:      linux-pm@vger.kernel.org
15102 L:      linux-arm-msm@vger.kernel.org
15103 S:      Maintained
15104 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15105 F:      drivers/soc/qcom/cpr.c
15106
15107 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15108 M:      Ilia Lin <ilia.lin@kernel.org>
15109 L:      linux-pm@vger.kernel.org
15110 S:      Maintained
15111 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15112 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
15113
15114 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15115 M:      Timur Tabi <timur@kernel.org>
15116 L:      netdev@vger.kernel.org
15117 S:      Maintained
15118 F:      drivers/net/ethernet/qualcomm/emac/
15119
15120 QUALCOMM ETHQOS ETHERNET DRIVER
15121 M:      Vinod Koul <vkoul@kernel.org>
15122 L:      netdev@vger.kernel.org
15123 S:      Maintained
15124 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
15125 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15126
15127 QUALCOMM GENERIC INTERFACE I2C DRIVER
15128 M:      Akash Asthana <akashast@codeaurora.org>
15129 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
15130 L:      linux-i2c@vger.kernel.org
15131 L:      linux-arm-msm@vger.kernel.org
15132 S:      Supported
15133 F:      drivers/i2c/busses/i2c-qcom-geni.c
15134
15135 QUALCOMM HEXAGON ARCHITECTURE
15136 M:      Brian Cain <bcain@codeaurora.org>
15137 L:      linux-hexagon@vger.kernel.org
15138 S:      Supported
15139 F:      arch/hexagon/
15140
15141 QUALCOMM HIDMA DRIVER
15142 M:      Sinan Kaya <okaya@kernel.org>
15143 L:      linux-arm-kernel@lists.infradead.org
15144 L:      linux-arm-msm@vger.kernel.org
15145 L:      dmaengine@vger.kernel.org
15146 S:      Supported
15147 F:      drivers/dma/qcom/hidma*
15148
15149 QUALCOMM I2C CCI DRIVER
15150 M:      Loic Poulain <loic.poulain@linaro.org>
15151 M:      Robert Foss <robert.foss@linaro.org>
15152 L:      linux-i2c@vger.kernel.org
15153 L:      linux-arm-msm@vger.kernel.org
15154 S:      Maintained
15155 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
15156 F:      drivers/i2c/busses/i2c-qcom-cci.c
15157
15158 QUALCOMM IOMMU
15159 M:      Rob Clark <robdclark@gmail.com>
15160 L:      iommu@lists.linux-foundation.org
15161 L:      linux-arm-msm@vger.kernel.org
15162 S:      Maintained
15163 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
15164
15165 QUALCOMM IPC ROUTER (QRTR) DRIVER
15166 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15167 L:      linux-arm-msm@vger.kernel.org
15168 S:      Maintained
15169 F:      include/trace/events/qrtr.h
15170 F:      include/uapi/linux/qrtr.h
15171 F:      net/qrtr/
15172
15173 QUALCOMM IPCC MAILBOX DRIVER
15174 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15175 L:      linux-arm-msm@vger.kernel.org
15176 S:      Supported
15177 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
15178 F:      drivers/mailbox/qcom-ipcc.c
15179 F:      include/dt-bindings/mailbox/qcom-ipcc.h
15180
15181 QUALCOMM IPQ4019 USB PHY DRIVER
15182 M:      Robert Marko <robert.marko@sartura.hr>
15183 M:      Luka Perkov <luka.perkov@sartura.hr>
15184 L:      linux-arm-msm@vger.kernel.org
15185 S:      Maintained
15186 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
15187 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
15188
15189 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
15190 M:      Robert Marko <robert.marko@sartura.hr>
15191 M:      Luka Perkov <luka.perkov@sartura.hr>
15192 L:      linux-arm-msm@vger.kernel.org
15193 S:      Maintained
15194 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
15195 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
15196
15197 QUALCOMM RMNET DRIVER
15198 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
15199 M:      Sean Tranchetti <stranche@codeaurora.org>
15200 L:      netdev@vger.kernel.org
15201 S:      Maintained
15202 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
15203 F:      drivers/net/ethernet/qualcomm/rmnet/
15204 F:      include/linux/if_rmnet.h
15205
15206 QUALCOMM TSENS THERMAL DRIVER
15207 M:      Amit Kucheria <amitk@kernel.org>
15208 M:      Thara Gopinath <thara.gopinath@linaro.org>
15209 L:      linux-pm@vger.kernel.org
15210 L:      linux-arm-msm@vger.kernel.org
15211 S:      Maintained
15212 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
15213 F:      drivers/thermal/qcom/
15214
15215 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
15216 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
15217 L:      linux-media@vger.kernel.org
15218 L:      linux-arm-msm@vger.kernel.org
15219 S:      Maintained
15220 T:      git git://linuxtv.org/media_tree.git
15221 F:      Documentation/devicetree/bindings/media/*venus*
15222 F:      drivers/media/platform/qcom/venus/
15223
15224 QUALCOMM WCN36XX WIRELESS DRIVER
15225 M:      Kalle Valo <kvalo@codeaurora.org>
15226 L:      wcn36xx@lists.infradead.org
15227 S:      Supported
15228 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
15229 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
15230 F:      drivers/net/wireless/ath/wcn36xx/
15231
15232 QUANTENNA QTNFMAC WIRELESS DRIVER
15233 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
15234 R:      Sergey Matyukevich <geomatsi@gmail.com>
15235 L:      linux-wireless@vger.kernel.org
15236 S:      Maintained
15237 F:      drivers/net/wireless/quantenna
15238
15239 RADEON and AMDGPU DRM DRIVERS
15240 M:      Alex Deucher <alexander.deucher@amd.com>
15241 M:      Christian König <christian.koenig@amd.com>
15242 L:      amd-gfx@lists.freedesktop.org
15243 S:      Supported
15244 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
15245 F:      drivers/gpu/drm/amd/
15246 F:      drivers/gpu/drm/radeon/
15247 F:      include/uapi/drm/amdgpu_drm.h
15248 F:      include/uapi/drm/radeon_drm.h
15249
15250 RADEON FRAMEBUFFER DISPLAY DRIVER
15251 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
15252 L:      linux-fbdev@vger.kernel.org
15253 S:      Maintained
15254 F:      drivers/video/fbdev/aty/radeon*
15255 F:      include/uapi/linux/radeonfb.h
15256
15257 RADIOSHARK RADIO DRIVER
15258 M:      Hans Verkuil <hverkuil@xs4all.nl>
15259 L:      linux-media@vger.kernel.org
15260 S:      Maintained
15261 T:      git git://linuxtv.org/media_tree.git
15262 F:      drivers/media/radio/radio-shark.c
15263
15264 RADIOSHARK2 RADIO DRIVER
15265 M:      Hans Verkuil <hverkuil@xs4all.nl>
15266 L:      linux-media@vger.kernel.org
15267 S:      Maintained
15268 T:      git git://linuxtv.org/media_tree.git
15269 F:      drivers/media/radio/radio-shark2.c
15270 F:      drivers/media/radio/radio-tea5777.c
15271
15272 RADOS BLOCK DEVICE (RBD)
15273 M:      Ilya Dryomov <idryomov@gmail.com>
15274 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
15275 L:      ceph-devel@vger.kernel.org
15276 S:      Supported
15277 W:      http://ceph.com/
15278 T:      git git://github.com/ceph/ceph-client.git
15279 F:      Documentation/ABI/testing/sysfs-bus-rbd
15280 F:      drivers/block/rbd.c
15281 F:      drivers/block/rbd_types.h
15282
15283 RAGE128 FRAMEBUFFER DISPLAY DRIVER
15284 M:      Paul Mackerras <paulus@samba.org>
15285 L:      linux-fbdev@vger.kernel.org
15286 S:      Maintained
15287 F:      drivers/video/fbdev/aty/aty128fb.c
15288
15289 RAINSHADOW-CEC DRIVER
15290 M:      Hans Verkuil <hverkuil@xs4all.nl>
15291 L:      linux-media@vger.kernel.org
15292 S:      Maintained
15293 T:      git git://linuxtv.org/media_tree.git
15294 F:      drivers/media/cec/usb/rainshadow/
15295
15296 RALINK MIPS ARCHITECTURE
15297 M:      John Crispin <john@phrozen.org>
15298 L:      linux-mips@vger.kernel.org
15299 S:      Maintained
15300 F:      arch/mips/ralink
15301
15302 RALINK RT2X00 WIRELESS LAN DRIVER
15303 M:      Stanislaw Gruszka <stf_xl@wp.pl>
15304 M:      Helmut Schaa <helmut.schaa@googlemail.com>
15305 L:      linux-wireless@vger.kernel.org
15306 S:      Maintained
15307 F:      drivers/net/wireless/ralink/rt2x00/
15308
15309 RAMDISK RAM BLOCK DEVICE DRIVER
15310 M:      Jens Axboe <axboe@kernel.dk>
15311 S:      Maintained
15312 F:      Documentation/admin-guide/blockdev/ramdisk.rst
15313 F:      drivers/block/brd.c
15314
15315 RANCHU VIRTUAL BOARD FOR MIPS
15316 M:      Miodrag Dinic <miodrag.dinic@mips.com>
15317 L:      linux-mips@vger.kernel.org
15318 S:      Supported
15319 F:      arch/mips/configs/generic/board-ranchu.config
15320 F:      arch/mips/generic/board-ranchu.c
15321
15322 RANDOM NUMBER DRIVER
15323 M:      "Theodore Ts'o" <tytso@mit.edu>
15324 S:      Maintained
15325 F:      drivers/char/random.c
15326
15327 RAPIDIO SUBSYSTEM
15328 M:      Matt Porter <mporter@kernel.crashing.org>
15329 M:      Alexandre Bounine <alex.bou9@gmail.com>
15330 S:      Maintained
15331 F:      drivers/rapidio/
15332
15333 RAS INFRASTRUCTURE
15334 M:      Tony Luck <tony.luck@intel.com>
15335 M:      Borislav Petkov <bp@alien8.de>
15336 L:      linux-edac@vger.kernel.org
15337 S:      Maintained
15338 F:      Documentation/admin-guide/ras.rst
15339 F:      drivers/ras/
15340 F:      include/linux/ras.h
15341 F:      include/ras/ras_event.h
15342
15343 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
15344 L:      linux-wireless@vger.kernel.org
15345 S:      Orphan
15346 F:      drivers/net/wireless/ray*
15347
15348 RC-CORE / LIRC FRAMEWORK
15349 M:      Sean Young <sean@mess.org>
15350 L:      linux-media@vger.kernel.org
15351 S:      Maintained
15352 W:      http://linuxtv.org
15353 T:      git git://linuxtv.org/media_tree.git
15354 F:      Documentation/driver-api/media/rc-core.rst
15355 F:      Documentation/userspace-api/media/rc/
15356 F:      drivers/media/rc/
15357 F:      include/media/rc-map.h
15358 F:      include/media/rc-core.h
15359 F:      include/uapi/linux/lirc.h
15360
15361 RCMM REMOTE CONTROLS DECODER
15362 M:      Patrick Lerda <patrick9876@free.fr>
15363 S:      Maintained
15364 F:      drivers/media/rc/ir-rcmm-decoder.c
15365
15366 RCUTORTURE TEST FRAMEWORK
15367 M:      "Paul E. McKenney" <paulmck@kernel.org>
15368 M:      Josh Triplett <josh@joshtriplett.org>
15369 R:      Steven Rostedt <rostedt@goodmis.org>
15370 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15371 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15372 L:      rcu@vger.kernel.org
15373 S:      Supported
15374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15375 F:      tools/testing/selftests/rcutorture
15376
15377 RDACM20 Camera Sensor
15378 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15379 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15380 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15381 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15382 L:      linux-media@vger.kernel.org
15383 S:      Maintained
15384 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15385 F:      drivers/media/i2c/max9271.c
15386 F:      drivers/media/i2c/max9271.h
15387 F:      drivers/media/i2c/rdacm20.c
15388
15389 RDACM21 Camera Sensor
15390 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15391 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15392 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15393 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15394 L:      linux-media@vger.kernel.org
15395 S:      Maintained
15396 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15397 F:      drivers/media/i2c/max9271.c
15398 F:      drivers/media/i2c/max9271.h
15399 F:      drivers/media/i2c/rdacm21.c
15400
15401 RDC R-321X SoC
15402 M:      Florian Fainelli <florian@openwrt.org>
15403 S:      Maintained
15404
15405 RDC R6040 FAST ETHERNET DRIVER
15406 M:      Florian Fainelli <f.fainelli@gmail.com>
15407 L:      netdev@vger.kernel.org
15408 S:      Maintained
15409 F:      drivers/net/ethernet/rdc/r6040.c
15410
15411 RDMAVT - RDMA verbs software
15412 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15413 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15414 L:      linux-rdma@vger.kernel.org
15415 S:      Supported
15416 F:      drivers/infiniband/sw/rdmavt
15417
15418 RDS - RELIABLE DATAGRAM SOCKETS
15419 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
15420 L:      netdev@vger.kernel.org
15421 L:      linux-rdma@vger.kernel.org
15422 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
15423 S:      Supported
15424 W:      https://oss.oracle.com/projects/rds/
15425 F:      Documentation/networking/rds.rst
15426 F:      net/rds/
15427
15428 RDT - RESOURCE ALLOCATION
15429 M:      Fenghua Yu <fenghua.yu@intel.com>
15430 M:      Reinette Chatre <reinette.chatre@intel.com>
15431 L:      linux-kernel@vger.kernel.org
15432 S:      Supported
15433 F:      Documentation/x86/resctrl*
15434 F:      arch/x86/include/asm/resctrl.h
15435 F:      arch/x86/kernel/cpu/resctrl/
15436 F:      tools/testing/selftests/resctrl/
15437
15438 READ-COPY UPDATE (RCU)
15439 M:      "Paul E. McKenney" <paulmck@kernel.org>
15440 M:      Josh Triplett <josh@joshtriplett.org>
15441 R:      Steven Rostedt <rostedt@goodmis.org>
15442 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15443 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15444 R:      Joel Fernandes <joel@joelfernandes.org>
15445 L:      rcu@vger.kernel.org
15446 S:      Supported
15447 W:      http://www.rdrop.com/users/paulmck/RCU/
15448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15449 F:      Documentation/RCU/
15450 F:      include/linux/rcu*
15451 F:      kernel/rcu/
15452 X:      Documentation/RCU/torture.rst
15453 X:      include/linux/srcu*.h
15454 X:      kernel/rcu/srcu*.c
15455
15456 REAL TIME CLOCK (RTC) SUBSYSTEM
15457 M:      Alessandro Zummo <a.zummo@towertech.it>
15458 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
15459 L:      linux-rtc@vger.kernel.org
15460 S:      Maintained
15461 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
15462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
15463 F:      Documentation/admin-guide/rtc.rst
15464 F:      Documentation/devicetree/bindings/rtc/
15465 F:      drivers/rtc/
15466 F:      include/linux/platform_data/rtc-*
15467 F:      include/linux/rtc.h
15468 F:      include/linux/rtc/
15469 F:      include/uapi/linux/rtc.h
15470 F:      tools/testing/selftests/rtc/
15471
15472 REALTEK AUDIO CODECS
15473 M:      Oder Chiou <oder_chiou@realtek.com>
15474 S:      Maintained
15475 F:      include/sound/rt*.h
15476 F:      sound/soc/codecs/rt*
15477
15478 REALTEK RTL83xx SMI DSA ROUTER CHIPS
15479 M:      Linus Walleij <linus.walleij@linaro.org>
15480 S:      Maintained
15481 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
15482 F:      drivers/net/dsa/realtek-smi*
15483 F:      drivers/net/dsa/rtl83*
15484
15485 REALTEK WIRELESS DRIVER (rtlwifi family)
15486 M:      Ping-Ke Shih <pkshih@realtek.com>
15487 L:      linux-wireless@vger.kernel.org
15488 S:      Maintained
15489 W:      https://wireless.wiki.kernel.org/
15490 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15491 F:      drivers/net/wireless/realtek/rtlwifi/
15492
15493 REALTEK WIRELESS DRIVER (rtw88)
15494 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
15495 L:      linux-wireless@vger.kernel.org
15496 S:      Maintained
15497 F:      drivers/net/wireless/realtek/rtw88/
15498
15499 REDPINE WIRELESS DRIVER
15500 M:      Amitkumar Karwar <amitkarwar@gmail.com>
15501 M:      Siva Rebbagondla <siva8118@gmail.com>
15502 L:      linux-wireless@vger.kernel.org
15503 S:      Maintained
15504 F:      drivers/net/wireless/rsi/
15505
15506 REGISTER MAP ABSTRACTION
15507 M:      Mark Brown <broonie@kernel.org>
15508 L:      linux-kernel@vger.kernel.org
15509 S:      Supported
15510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
15511 F:      Documentation/devicetree/bindings/regmap/
15512 F:      drivers/base/regmap/
15513 F:      include/linux/regmap.h
15514
15515 REISERFS FILE SYSTEM
15516 L:      reiserfs-devel@vger.kernel.org
15517 S:      Supported
15518 F:      fs/reiserfs/
15519
15520 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
15521 M:      Ohad Ben-Cohen <ohad@wizery.com>
15522 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15523 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
15524 L:      linux-remoteproc@vger.kernel.org
15525 S:      Maintained
15526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
15527 F:      Documentation/ABI/testing/sysfs-class-remoteproc
15528 F:      Documentation/devicetree/bindings/remoteproc/
15529 F:      Documentation/staging/remoteproc.rst
15530 F:      drivers/remoteproc/
15531 F:      include/linux/remoteproc.h
15532 F:      include/linux/remoteproc/
15533
15534 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
15535 M:      Ohad Ben-Cohen <ohad@wizery.com>
15536 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15537 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
15538 L:      linux-remoteproc@vger.kernel.org
15539 S:      Maintained
15540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
15541 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
15542 F:      Documentation/staging/rpmsg.rst
15543 F:      drivers/rpmsg/
15544 F:      include/linux/rpmsg.h
15545 F:      include/linux/rpmsg/
15546 F:      include/uapi/linux/rpmsg.h
15547 F:      samples/rpmsg/
15548
15549 RENESAS CLOCK DRIVERS
15550 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15551 L:      linux-renesas-soc@vger.kernel.org
15552 S:      Supported
15553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
15554 F:      Documentation/devicetree/bindings/clock/renesas,*
15555 F:      drivers/clk/renesas/
15556
15557 RENESAS EMEV2 I2C DRIVER
15558 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15559 S:      Supported
15560 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
15561 F:      drivers/i2c/busses/i2c-emev2.c
15562
15563 RENESAS ETHERNET DRIVERS
15564 R:      Sergei Shtylyov <sergei.shtylyov@gmail.com>
15565 L:      netdev@vger.kernel.org
15566 L:      linux-renesas-soc@vger.kernel.org
15567 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
15568 F:      drivers/net/ethernet/renesas/
15569 F:      include/linux/sh_eth.h
15570
15571 RENESAS R-CAR GYROADC DRIVER
15572 M:      Marek Vasut <marek.vasut@gmail.com>
15573 L:      linux-iio@vger.kernel.org
15574 S:      Supported
15575 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
15576 F:      drivers/iio/adc/rcar-gyroadc.c
15577
15578 RENESAS R-CAR I2C DRIVERS
15579 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15580 S:      Supported
15581 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
15582 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
15583 F:      drivers/i2c/busses/i2c-rcar.c
15584 F:      drivers/i2c/busses/i2c-sh_mobile.c
15585
15586 RENESAS R-CAR THERMAL DRIVERS
15587 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
15588 L:      linux-renesas-soc@vger.kernel.org
15589 S:      Supported
15590 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
15591 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
15592 F:      drivers/thermal/rcar_gen3_thermal.c
15593 F:      drivers/thermal/rcar_thermal.c
15594
15595 RENESAS RIIC DRIVER
15596 M:      Chris Brandt <chris.brandt@renesas.com>
15597 S:      Supported
15598 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
15599 F:      drivers/i2c/busses/i2c-riic.c
15600
15601 RENESAS USB PHY DRIVER
15602 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15603 L:      linux-renesas-soc@vger.kernel.org
15604 S:      Maintained
15605 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
15606
15607 RESET CONTROLLER FRAMEWORK
15608 M:      Philipp Zabel <p.zabel@pengutronix.de>
15609 S:      Maintained
15610 T:      git git://git.pengutronix.de/git/pza/linux
15611 F:      Documentation/devicetree/bindings/reset/
15612 F:      Documentation/driver-api/reset.rst
15613 F:      drivers/reset/
15614 F:      include/dt-bindings/reset/
15615 F:      include/linux/reset-controller.h
15616 F:      include/linux/reset.h
15617 F:      include/linux/reset/
15618 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
15619
15620 RESTARTABLE SEQUENCES SUPPORT
15621 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15622 M:      Peter Zijlstra <peterz@infradead.org>
15623 M:      "Paul E. McKenney" <paulmck@kernel.org>
15624 M:      Boqun Feng <boqun.feng@gmail.com>
15625 L:      linux-kernel@vger.kernel.org
15626 S:      Supported
15627 F:      include/trace/events/rseq.h
15628 F:      include/uapi/linux/rseq.h
15629 F:      kernel/rseq.c
15630 F:      tools/testing/selftests/rseq/
15631
15632 RFKILL
15633 M:      Johannes Berg <johannes@sipsolutions.net>
15634 L:      linux-wireless@vger.kernel.org
15635 S:      Maintained
15636 W:      https://wireless.wiki.kernel.org/
15637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
15638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
15639 F:      Documentation/ABI/stable/sysfs-class-rfkill
15640 F:      Documentation/driver-api/rfkill.rst
15641 F:      include/linux/rfkill.h
15642 F:      include/uapi/linux/rfkill.h
15643 F:      net/rfkill/
15644
15645 RHASHTABLE
15646 M:      Thomas Graf <tgraf@suug.ch>
15647 M:      Herbert Xu <herbert@gondor.apana.org.au>
15648 L:      netdev@vger.kernel.org
15649 S:      Maintained
15650 F:      include/linux/rhashtable-types.h
15651 F:      include/linux/rhashtable.h
15652 F:      lib/rhashtable.c
15653 F:      lib/test_rhashtable.c
15654
15655 RICOH R5C592 MEMORYSTICK DRIVER
15656 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15657 S:      Maintained
15658 F:      drivers/memstick/host/r592.*
15659
15660 RICOH SMARTMEDIA/XD DRIVER
15661 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15662 S:      Maintained
15663 F:      drivers/mtd/nand/raw/r852.c
15664 F:      drivers/mtd/nand/raw/r852.h
15665
15666 RISC-V ARCHITECTURE
15667 M:      Paul Walmsley <paul.walmsley@sifive.com>
15668 M:      Palmer Dabbelt <palmer@dabbelt.com>
15669 M:      Albert Ou <aou@eecs.berkeley.edu>
15670 L:      linux-riscv@lists.infradead.org
15671 S:      Supported
15672 P:      Documentation/riscv/patch-acceptance.rst
15673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
15674 F:      arch/riscv/
15675 N:      riscv
15676 K:      riscv
15677
15678 RNBD BLOCK DRIVERS
15679 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
15680 M:      Jack Wang <jinpu.wang@ionos.com>
15681 L:      linux-block@vger.kernel.org
15682 S:      Maintained
15683 F:      drivers/block/rnbd/
15684
15685 ROCCAT DRIVERS
15686 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
15687 S:      Maintained
15688 W:      http://sourceforge.net/projects/roccat/
15689 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
15690 F:      drivers/hid/hid-roccat*
15691 F:      include/linux/hid-roccat*
15692
15693 ROCKCHIP ISP V1 DRIVER
15694 M:      Helen Koike <helen.koike@collabora.com>
15695 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
15696 L:      linux-media@vger.kernel.org
15697 L:      linux-rockchip@lists.infradead.org
15698 S:      Maintained
15699 F:      Documentation/admin-guide/media/rkisp1.rst
15700 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
15701 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
15702 F:      drivers/media/platform/rockchip/rkisp1
15703 F:      include/uapi/linux/rkisp1-config.h
15704
15705 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
15706 M:      Jacob Chen <jacob-chen@iotwrt.com>
15707 M:      Ezequiel Garcia <ezequiel@collabora.com>
15708 L:      linux-media@vger.kernel.org
15709 L:      linux-rockchip@lists.infradead.org
15710 S:      Maintained
15711 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
15712 F:      drivers/media/platform/rockchip/rga/
15713
15714 ROCKCHIP VIDEO DECODER DRIVER
15715 M:      Ezequiel Garcia <ezequiel@collabora.com>
15716 L:      linux-media@vger.kernel.org
15717 L:      linux-rockchip@lists.infradead.org
15718 S:      Maintained
15719 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
15720 F:      drivers/staging/media/rkvdec/
15721
15722 ROCKER DRIVER
15723 M:      Jiri Pirko <jiri@resnulli.us>
15724 L:      netdev@vger.kernel.org
15725 S:      Supported
15726 F:      drivers/net/ethernet/rocker/
15727
15728 ROCKETPORT EXPRESS/INFINITY DRIVER
15729 M:      Kevin Cernekee <cernekee@gmail.com>
15730 L:      linux-serial@vger.kernel.org
15731 S:      Odd Fixes
15732 F:      drivers/tty/serial/rp2.*
15733
15734 ROHM BD99954 CHARGER IC
15735 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15736 L:      linux-power@fi.rohmeurope.com
15737 S:      Supported
15738 F:      drivers/power/supply/bd99954-charger.c
15739 F:      drivers/power/supply/bd99954-charger.h
15740
15741 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
15742 M:      Tomasz Duszynski <tduszyns@gmail.com>
15743 S:      Maintained
15744 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
15745 F:      drivers/iio/light/bh1750.c
15746
15747 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
15748 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15749 L:      linux-kernel@vger.kernel.org
15750 L:      linux-renesas-soc@vger.kernel.org
15751 S:      Supported
15752 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
15753 F:      drivers/gpio/gpio-bd9571mwv.c
15754 F:      drivers/mfd/bd9571mwv.c
15755 F:      drivers/regulator/bd9571mwv-regulator.c
15756 F:      include/linux/mfd/bd9571mwv.h
15757
15758 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
15759 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15760 L:      linux-power@fi.rohmeurope.com
15761 S:      Supported
15762 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
15763 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
15764 F:      drivers/clk/clk-bd718x7.c
15765 F:      drivers/gpio/gpio-bd70528.c
15766 F:      drivers/gpio/gpio-bd71815.c
15767 F:      drivers/gpio/gpio-bd71828.c
15768 F:      drivers/mfd/rohm-bd70528.c
15769 F:      drivers/mfd/rohm-bd71828.c
15770 F:      drivers/mfd/rohm-bd718x7.c
15771 F:      drivers/mfd/rohm-bd9576.c
15772 F:      drivers/power/supply/bd70528-charger.c
15773 F:      drivers/regulator/bd70528-regulator.c
15774 F:      drivers/regulator/bd71815-regulator.c
15775 F:      drivers/regulator/bd71828-regulator.c
15776 F:      drivers/regulator/bd718x7-regulator.c
15777 F:      drivers/regulator/bd9576-regulator.c
15778 F:      drivers/regulator/rohm-regulator.c
15779 F:      drivers/rtc/rtc-bd70528.c
15780 F:      drivers/watchdog/bd70528_wdt.c
15781 F:      drivers/watchdog/bd9576_wdt.c
15782 F:      include/linux/mfd/rohm-bd70528.h
15783 F:      include/linux/mfd/rohm-bd71815.h
15784 F:      include/linux/mfd/rohm-bd71828.h
15785 F:      include/linux/mfd/rohm-bd718x7.h
15786 F:      include/linux/mfd/rohm-bd957x.h
15787 F:      include/linux/mfd/rohm-generic.h
15788 F:      include/linux/mfd/rohm-shared.h
15789
15790 ROSE NETWORK LAYER
15791 M:      Ralf Baechle <ralf@linux-mips.org>
15792 L:      linux-hams@vger.kernel.org
15793 S:      Maintained
15794 W:      http://www.linux-ax25.org/
15795 F:      include/net/rose.h
15796 F:      include/uapi/linux/rose.h
15797 F:      net/rose/
15798
15799 ROTATION DRIVER FOR ALLWINNER A83T
15800 M:      Jernej Skrabec <jernej.skrabec@siol.net>
15801 L:      linux-media@vger.kernel.org
15802 S:      Maintained
15803 T:      git git://linuxtv.org/media_tree.git
15804 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
15805 F:      drivers/media/platform/sunxi/sun8i-rotate/
15806
15807 RTL2830 MEDIA DRIVER
15808 M:      Antti Palosaari <crope@iki.fi>
15809 L:      linux-media@vger.kernel.org
15810 S:      Maintained
15811 W:      https://linuxtv.org
15812 W:      http://palosaari.fi/linux/
15813 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15814 T:      git git://linuxtv.org/anttip/media_tree.git
15815 F:      drivers/media/dvb-frontends/rtl2830*
15816
15817 RTL2832 MEDIA DRIVER
15818 M:      Antti Palosaari <crope@iki.fi>
15819 L:      linux-media@vger.kernel.org
15820 S:      Maintained
15821 W:      https://linuxtv.org
15822 W:      http://palosaari.fi/linux/
15823 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15824 T:      git git://linuxtv.org/anttip/media_tree.git
15825 F:      drivers/media/dvb-frontends/rtl2832*
15826
15827 RTL2832_SDR MEDIA DRIVER
15828 M:      Antti Palosaari <crope@iki.fi>
15829 L:      linux-media@vger.kernel.org
15830 S:      Maintained
15831 W:      https://linuxtv.org
15832 W:      http://palosaari.fi/linux/
15833 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15834 T:      git git://linuxtv.org/anttip/media_tree.git
15835 F:      drivers/media/dvb-frontends/rtl2832_sdr*
15836
15837 RTL8180 WIRELESS DRIVER
15838 L:      linux-wireless@vger.kernel.org
15839 S:      Orphan
15840 W:      https://wireless.wiki.kernel.org/
15841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15842 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
15843
15844 RTL8187 WIRELESS DRIVER
15845 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
15846 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
15847 M:      Larry Finger <Larry.Finger@lwfinger.net>
15848 L:      linux-wireless@vger.kernel.org
15849 S:      Maintained
15850 W:      https://wireless.wiki.kernel.org/
15851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15852 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
15853
15854 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
15855 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
15856 L:      linux-wireless@vger.kernel.org
15857 S:      Maintained
15858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
15859 F:      drivers/net/wireless/realtek/rtl8xxxu/
15860
15861 RTRS TRANSPORT DRIVERS
15862 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
15863 M:      Jack Wang <jinpu.wang@ionos.com>
15864 L:      linux-rdma@vger.kernel.org
15865 S:      Maintained
15866 F:      drivers/infiniband/ulp/rtrs/
15867
15868 RXRPC SOCKETS (AF_RXRPC)
15869 M:      David Howells <dhowells@redhat.com>
15870 L:      linux-afs@lists.infradead.org
15871 S:      Supported
15872 W:      https://www.infradead.org/~dhowells/kafs/
15873 F:      Documentation/networking/rxrpc.rst
15874 F:      include/keys/rxrpc-type.h
15875 F:      include/net/af_rxrpc.h
15876 F:      include/trace/events/rxrpc.h
15877 F:      include/uapi/linux/rxrpc.h
15878 F:      net/rxrpc/
15879
15880 S3 SAVAGE FRAMEBUFFER DRIVER
15881 M:      Antonino Daplas <adaplas@gmail.com>
15882 L:      linux-fbdev@vger.kernel.org
15883 S:      Maintained
15884 F:      drivers/video/fbdev/savage/
15885
15886 S390
15887 M:      Heiko Carstens <hca@linux.ibm.com>
15888 M:      Vasily Gorbik <gor@linux.ibm.com>
15889 M:      Christian Borntraeger <borntraeger@de.ibm.com>
15890 L:      linux-s390@vger.kernel.org
15891 S:      Supported
15892 W:      http://www.ibm.com/developerworks/linux/linux390/
15893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
15894 F:      Documentation/driver-api/s390-drivers.rst
15895 F:      Documentation/s390/
15896 F:      arch/s390/
15897 F:      drivers/s390/
15898
15899 S390 COMMON I/O LAYER
15900 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
15901 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
15902 L:      linux-s390@vger.kernel.org
15903 S:      Supported
15904 W:      http://www.ibm.com/developerworks/linux/linux390/
15905 F:      drivers/s390/cio/
15906
15907 S390 DASD DRIVER
15908 M:      Stefan Haberland <sth@linux.ibm.com>
15909 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
15910 L:      linux-s390@vger.kernel.org
15911 S:      Supported
15912 W:      http://www.ibm.com/developerworks/linux/linux390/
15913 F:      block/partitions/ibm.c
15914 F:      drivers/s390/block/dasd*
15915 F:      include/linux/dasd_mod.h
15916
15917 S390 IOMMU (PCI)
15918 M:      Matthew Rosato <mjrosato@linux.ibm.com>
15919 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
15920 L:      linux-s390@vger.kernel.org
15921 S:      Supported
15922 W:      http://www.ibm.com/developerworks/linux/linux390/
15923 F:      drivers/iommu/s390-iommu.c
15924
15925 S390 IUCV NETWORK LAYER
15926 M:      Julian Wiedmann <jwi@linux.ibm.com>
15927 M:      Karsten Graul <kgraul@linux.ibm.com>
15928 L:      linux-s390@vger.kernel.org
15929 S:      Supported
15930 W:      http://www.ibm.com/developerworks/linux/linux390/
15931 F:      drivers/s390/net/*iucv*
15932 F:      include/net/iucv/
15933 F:      net/iucv/
15934
15935 S390 NETWORK DRIVERS
15936 M:      Julian Wiedmann <jwi@linux.ibm.com>
15937 M:      Karsten Graul <kgraul@linux.ibm.com>
15938 L:      linux-s390@vger.kernel.org
15939 S:      Supported
15940 W:      http://www.ibm.com/developerworks/linux/linux390/
15941 F:      drivers/s390/net/
15942
15943 S390 PCI SUBSYSTEM
15944 M:      Niklas Schnelle <schnelle@linux.ibm.com>
15945 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
15946 L:      linux-s390@vger.kernel.org
15947 S:      Supported
15948 W:      http://www.ibm.com/developerworks/linux/linux390/
15949 F:      arch/s390/pci/
15950 F:      drivers/pci/hotplug/s390_pci_hpc.c
15951 F:      Documentation/s390/pci.rst
15952
15953 S390 VFIO AP DRIVER
15954 M:      Tony Krowiak <akrowiak@linux.ibm.com>
15955 M:      Halil Pasic <pasic@linux.ibm.com>
15956 M:      Jason Herne <jjherne@linux.ibm.com>
15957 L:      linux-s390@vger.kernel.org
15958 S:      Supported
15959 W:      http://www.ibm.com/developerworks/linux/linux390/
15960 F:      Documentation/s390/vfio-ap.rst
15961 F:      drivers/s390/crypto/vfio_ap_drv.c
15962 F:      drivers/s390/crypto/vfio_ap_ops.c
15963 F:      drivers/s390/crypto/vfio_ap_private.h
15964
15965 S390 VFIO-CCW DRIVER
15966 M:      Cornelia Huck <cohuck@redhat.com>
15967 M:      Eric Farman <farman@linux.ibm.com>
15968 M:      Matthew Rosato <mjrosato@linux.ibm.com>
15969 R:      Halil Pasic <pasic@linux.ibm.com>
15970 L:      linux-s390@vger.kernel.org
15971 L:      kvm@vger.kernel.org
15972 S:      Supported
15973 F:      Documentation/s390/vfio-ccw.rst
15974 F:      drivers/s390/cio/vfio_ccw*
15975 F:      include/uapi/linux/vfio_ccw.h
15976
15977 S390 VFIO-PCI DRIVER
15978 M:      Matthew Rosato <mjrosato@linux.ibm.com>
15979 M:      Eric Farman <farman@linux.ibm.com>
15980 L:      linux-s390@vger.kernel.org
15981 L:      kvm@vger.kernel.org
15982 S:      Supported
15983 F:      drivers/vfio/pci/vfio_pci_zdev.c
15984 F:      include/uapi/linux/vfio_zdev.h
15985
15986 S390 ZCRYPT DRIVER
15987 M:      Harald Freudenberger <freude@linux.ibm.com>
15988 L:      linux-s390@vger.kernel.org
15989 S:      Supported
15990 W:      http://www.ibm.com/developerworks/linux/linux390/
15991 F:      drivers/s390/crypto/
15992
15993 S390 ZFCP DRIVER
15994 M:      Steffen Maier <maier@linux.ibm.com>
15995 M:      Benjamin Block <bblock@linux.ibm.com>
15996 L:      linux-s390@vger.kernel.org
15997 S:      Supported
15998 W:      http://www.ibm.com/developerworks/linux/linux390/
15999 F:      drivers/s390/scsi/zfcp_*
16000
16001 S3C ADC BATTERY DRIVER
16002 M:      Krzysztof Kozlowski <krzk@kernel.org>
16003 L:      linux-samsung-soc@vger.kernel.org
16004 S:      Odd Fixes
16005 F:      drivers/power/supply/s3c_adc_battery.c
16006 F:      include/linux/s3c_adc_battery.h
16007
16008 S3C24XX SD/MMC Driver
16009 M:      Ben Dooks <ben-linux@fluff.org>
16010 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16011 S:      Supported
16012 F:      drivers/mmc/host/s3cmci.*
16013
16014 SAA6588 RDS RECEIVER DRIVER
16015 M:      Hans Verkuil <hverkuil@xs4all.nl>
16016 L:      linux-media@vger.kernel.org
16017 S:      Odd Fixes
16018 W:      https://linuxtv.org
16019 T:      git git://linuxtv.org/media_tree.git
16020 F:      drivers/media/i2c/saa6588*
16021
16022 SAA7134 VIDEO4LINUX DRIVER
16023 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16024 L:      linux-media@vger.kernel.org
16025 S:      Odd fixes
16026 W:      https://linuxtv.org
16027 T:      git git://linuxtv.org/media_tree.git
16028 F:      Documentation/driver-api/media/drivers/saa7134*
16029 F:      drivers/media/pci/saa7134/
16030
16031 SAA7146 VIDEO4LINUX-2 DRIVER
16032 M:      Hans Verkuil <hverkuil@xs4all.nl>
16033 L:      linux-media@vger.kernel.org
16034 S:      Maintained
16035 T:      git git://linuxtv.org/media_tree.git
16036 F:      drivers/media/common/saa7146/
16037 F:      drivers/media/pci/saa7146/
16038 F:      include/media/drv-intf/saa7146*
16039
16040 SAFESETID SECURITY MODULE
16041 M:      Micah Morton <mortonm@chromium.org>
16042 S:      Supported
16043 F:      Documentation/admin-guide/LSM/SafeSetID.rst
16044 F:      security/safesetid/
16045
16046 SAMSUNG AUDIO (ASoC) DRIVERS
16047 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16048 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16049 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16050 S:      Supported
16051 F:      Documentation/devicetree/bindings/sound/samsung*
16052 F:      sound/soc/samsung/
16053
16054 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
16055 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16056 L:      linux-crypto@vger.kernel.org
16057 L:      linux-samsung-soc@vger.kernel.org
16058 S:      Maintained
16059 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
16060 F:      drivers/crypto/exynos-rng.c
16061
16062 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
16063 M:      Łukasz Stelmach <l.stelmach@samsung.com>
16064 L:      linux-samsung-soc@vger.kernel.org
16065 S:      Maintained
16066 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
16067 F:      drivers/char/hw_random/exynos-trng.c
16068
16069 SAMSUNG FRAMEBUFFER DRIVER
16070 M:      Jingoo Han <jingoohan1@gmail.com>
16071 L:      linux-fbdev@vger.kernel.org
16072 S:      Maintained
16073 F:      drivers/video/fbdev/s3c-fb.c
16074
16075 SAMSUNG INTERCONNECT DRIVERS
16076 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16077 M:      Artur Świgoń <a.swigon@samsung.com>
16078 L:      linux-pm@vger.kernel.org
16079 L:      linux-samsung-soc@vger.kernel.org
16080 S:      Supported
16081 F:      drivers/interconnect/samsung/
16082
16083 SAMSUNG LAPTOP DRIVER
16084 M:      Corentin Chary <corentin.chary@gmail.com>
16085 L:      platform-driver-x86@vger.kernel.org
16086 S:      Maintained
16087 F:      drivers/platform/x86/samsung-laptop.c
16088
16089 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
16090 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16091 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16092 L:      linux-kernel@vger.kernel.org
16093 L:      linux-samsung-soc@vger.kernel.org
16094 S:      Supported
16095 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
16096 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
16097 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
16098 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
16099 F:      drivers/clk/clk-s2mps11.c
16100 F:      drivers/mfd/sec*.c
16101 F:      drivers/regulator/s2m*.c
16102 F:      drivers/regulator/s5m*.c
16103 F:      drivers/rtc/rtc-s5m.c
16104 F:      include/linux/mfd/samsung/
16105
16106 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
16107 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
16108 L:      linux-media@vger.kernel.org
16109 L:      linux-samsung-soc@vger.kernel.org
16110 S:      Maintained
16111 F:      drivers/media/platform/s3c-camif/
16112 F:      include/media/drv-intf/s3c_camif.h
16113
16114 SAMSUNG S3FWRN5 NFC DRIVER
16115 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16116 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
16117 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
16118 S:      Maintained
16119 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
16120 F:      drivers/nfc/s3fwrn5
16121
16122 SAMSUNG S5C73M3 CAMERA DRIVER
16123 M:      Andrzej Hajda <a.hajda@samsung.com>
16124 L:      linux-media@vger.kernel.org
16125 S:      Supported
16126 F:      drivers/media/i2c/s5c73m3/*
16127
16128 SAMSUNG S5K5BAF CAMERA DRIVER
16129 M:      Andrzej Hajda <a.hajda@samsung.com>
16130 L:      linux-media@vger.kernel.org
16131 S:      Supported
16132 F:      drivers/media/i2c/s5k5baf.c
16133
16134 SAMSUNG S5P Security SubSystem (SSS) DRIVER
16135 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16136 M:      Vladimir Zapolskiy <vz@mleia.com>
16137 L:      linux-crypto@vger.kernel.org
16138 L:      linux-samsung-soc@vger.kernel.org
16139 S:      Maintained
16140 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
16141 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
16142 F:      drivers/crypto/s5p-sss.c
16143
16144 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
16145 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16146 L:      linux-media@vger.kernel.org
16147 S:      Supported
16148 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
16149 F:      drivers/media/platform/exynos4-is/
16150
16151 SAMSUNG SOC CLOCK DRIVERS
16152 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16153 M:      Tomasz Figa <tomasz.figa@gmail.com>
16154 M:      Chanwoo Choi <cw00.choi@samsung.com>
16155 L:      linux-samsung-soc@vger.kernel.org
16156 S:      Supported
16157 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
16158 F:      Documentation/devicetree/bindings/clock/exynos*.txt
16159 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
16160 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
16161 F:      drivers/clk/samsung/
16162 F:      include/dt-bindings/clock/exynos*.h
16163 F:      include/linux/clk/samsung.h
16164 F:      include/linux/platform_data/clk-s3c2410.h
16165
16166 SAMSUNG SPI DRIVERS
16167 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16168 M:      Andi Shyti <andi@etezian.org>
16169 L:      linux-spi@vger.kernel.org
16170 L:      linux-samsung-soc@vger.kernel.org
16171 S:      Maintained
16172 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
16173 F:      drivers/spi/spi-s3c*
16174 F:      include/linux/platform_data/spi-s3c64xx.h
16175 F:      include/linux/spi/s3c24xx-fiq.h
16176
16177 SAMSUNG SXGBE DRIVERS
16178 M:      Byungho An <bh74.an@samsung.com>
16179 L:      netdev@vger.kernel.org
16180 S:      Supported
16181 F:      drivers/net/ethernet/samsung/sxgbe/
16182
16183 SAMSUNG THERMAL DRIVER
16184 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16185 L:      linux-pm@vger.kernel.org
16186 L:      linux-samsung-soc@vger.kernel.org
16187 S:      Supported
16188 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
16189 F:      drivers/thermal/samsung/
16190
16191 SAMSUNG USB2 PHY DRIVER
16192 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16193 L:      linux-kernel@vger.kernel.org
16194 S:      Supported
16195 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
16196 F:      Documentation/driver-api/phy/samsung-usb2.rst
16197 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
16198 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
16199 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
16200 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
16201 F:      drivers/phy/samsung/phy-samsung-usb2.c
16202 F:      drivers/phy/samsung/phy-samsung-usb2.h
16203
16204 SC1200 WDT DRIVER
16205 M:      Zwane Mwaikambo <zwanem@gmail.com>
16206 S:      Maintained
16207 F:      drivers/watchdog/sc1200wdt.c
16208
16209 SCHEDULER
16210 M:      Ingo Molnar <mingo@redhat.com>
16211 M:      Peter Zijlstra <peterz@infradead.org>
16212 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
16213 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
16214 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
16215 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
16216 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
16217 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
16218 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
16219 L:      linux-kernel@vger.kernel.org
16220 S:      Maintained
16221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
16222 F:      include/linux/preempt.h
16223 F:      include/linux/sched.h
16224 F:      include/linux/wait.h
16225 F:      include/uapi/linux/sched.h
16226 F:      kernel/sched/
16227
16228 SCR24X CHIP CARD INTERFACE DRIVER
16229 M:      Lubomir Rintel <lkundrak@v3.sk>
16230 S:      Supported
16231 F:      drivers/char/pcmcia/scr24x_cs.c
16232
16233 SCSI CDROM DRIVER
16234 M:      Jens Axboe <axboe@kernel.dk>
16235 L:      linux-scsi@vger.kernel.org
16236 S:      Maintained
16237 W:      http://www.kernel.dk
16238 F:      drivers/scsi/sr*
16239
16240 SCSI RDMA PROTOCOL (SRP) INITIATOR
16241 M:      Bart Van Assche <bvanassche@acm.org>
16242 L:      linux-rdma@vger.kernel.org
16243 S:      Supported
16244 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16245 F:      drivers/infiniband/ulp/srp/
16246 F:      include/scsi/srp.h
16247
16248 SCSI RDMA PROTOCOL (SRP) TARGET
16249 M:      Bart Van Assche <bvanassche@acm.org>
16250 L:      linux-rdma@vger.kernel.org
16251 L:      target-devel@vger.kernel.org
16252 S:      Supported
16253 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16254 F:      drivers/infiniband/ulp/srpt/
16255
16256 SCSI SG DRIVER
16257 M:      Doug Gilbert <dgilbert@interlog.com>
16258 L:      linux-scsi@vger.kernel.org
16259 S:      Maintained
16260 W:      http://sg.danny.cz/sg
16261 F:      Documentation/scsi/scsi-generic.rst
16262 F:      drivers/scsi/sg.c
16263 F:      include/scsi/sg.h
16264
16265 SCSI SUBSYSTEM
16266 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
16267 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16268 L:      linux-scsi@vger.kernel.org
16269 S:      Maintained
16270 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
16271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
16272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16273 F:      Documentation/devicetree/bindings/scsi/
16274 F:      drivers/scsi/
16275 F:      include/scsi/
16276
16277 SCSI TAPE DRIVER
16278 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
16279 L:      linux-scsi@vger.kernel.org
16280 S:      Maintained
16281 F:      Documentation/scsi/st.rst
16282 F:      drivers/scsi/st.*
16283 F:      drivers/scsi/st_*.h
16284
16285 SCSI TARGET CORE USER DRIVER
16286 M:      Bodo Stroesser <bostroesser@gmail.com>
16287 L:      linux-scsi@vger.kernel.org
16288 L:      target-devel@vger.kernel.org
16289 S:      Supported
16290 F:      Documentation/target/tcmu-design.rst
16291 F:      drivers/target/target_core_user.c
16292 F:      include/uapi/linux/target_core_user.h
16293
16294 SCSI TARGET SUBSYSTEM
16295 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16296 L:      linux-scsi@vger.kernel.org
16297 L:      target-devel@vger.kernel.org
16298 S:      Supported
16299 W:      http://www.linux-iscsi.org
16300 Q:      https://patchwork.kernel.org/project/target-devel/list/
16301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16302 F:      Documentation/target/
16303 F:      drivers/target/
16304 F:      include/target/
16305
16306 SCTP PROTOCOL
16307 M:      Vlad Yasevich <vyasevich@gmail.com>
16308 M:      Neil Horman <nhorman@tuxdriver.com>
16309 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
16310 L:      linux-sctp@vger.kernel.org
16311 S:      Maintained
16312 W:      http://lksctp.sourceforge.net
16313 F:      Documentation/networking/sctp.rst
16314 F:      include/linux/sctp.h
16315 F:      include/net/sctp/
16316 F:      include/uapi/linux/sctp.h
16317 F:      net/sctp/
16318
16319 SCx200 CPU SUPPORT
16320 M:      Jim Cromie <jim.cromie@gmail.com>
16321 S:      Odd Fixes
16322 F:      Documentation/i2c/busses/scx200_acb.rst
16323 F:      arch/x86/platform/scx200/
16324 F:      drivers/i2c/busses/scx200*
16325 F:      drivers/mtd/maps/scx200_docflash.c
16326 F:      drivers/watchdog/scx200_wdt.c
16327 F:      include/linux/scx200.h
16328
16329 SCx200 GPIO DRIVER
16330 M:      Jim Cromie <jim.cromie@gmail.com>
16331 S:      Maintained
16332 F:      drivers/char/scx200_gpio.c
16333 F:      include/linux/scx200_gpio.h
16334
16335 SCx200 HRT CLOCKSOURCE DRIVER
16336 M:      Jim Cromie <jim.cromie@gmail.com>
16337 S:      Maintained
16338 F:      drivers/clocksource/scx200_hrt.c
16339
16340 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
16341 M:      Sascha Sommer <saschasommer@freenet.de>
16342 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
16343 S:      Maintained
16344 F:      drivers/mmc/host/sdricoh_cs.c
16345
16346 SECO BOARDS CEC DRIVER
16347 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
16348 S:      Maintained
16349 F:      drivers/media/cec/platform/seco/seco-cec.c
16350 F:      drivers/media/cec/platform/seco/seco-cec.h
16351
16352 SECURE COMPUTING
16353 M:      Kees Cook <keescook@chromium.org>
16354 R:      Andy Lutomirski <luto@amacapital.net>
16355 R:      Will Drewry <wad@chromium.org>
16356 S:      Supported
16357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
16358 F:      Documentation/userspace-api/seccomp_filter.rst
16359 F:      include/linux/seccomp.h
16360 F:      include/uapi/linux/seccomp.h
16361 F:      kernel/seccomp.c
16362 F:      tools/testing/selftests/kselftest_harness.h
16363 F:      tools/testing/selftests/seccomp/*
16364 K:      \bsecure_computing
16365 K:      \bTIF_SECCOMP\b
16366
16367 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
16368 M:      Al Cooper <alcooperx@gmail.com>
16369 L:      linux-mmc@vger.kernel.org
16370 L:      bcm-kernel-feedback-list@broadcom.com
16371 S:      Maintained
16372 F:      drivers/mmc/host/sdhci-brcmstb*
16373
16374 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
16375 M:      Adrian Hunter <adrian.hunter@intel.com>
16376 L:      linux-mmc@vger.kernel.org
16377 S:      Maintained
16378 F:      drivers/mmc/host/sdhci*
16379 F:      include/linux/mmc/sdhci*
16380
16381 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
16382 M:      Eugen Hristev <eugen.hristev@microchip.com>
16383 L:      linux-mmc@vger.kernel.org
16384 S:      Supported
16385 F:      drivers/mmc/host/sdhci-of-at91.c
16386
16387 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
16388 M:      Ben Dooks <ben-linux@fluff.org>
16389 M:      Jaehoon Chung <jh80.chung@samsung.com>
16390 L:      linux-mmc@vger.kernel.org
16391 S:      Maintained
16392 F:      drivers/mmc/host/sdhci-s3c*
16393
16394 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
16395 M:      Viresh Kumar <vireshk@kernel.org>
16396 L:      linux-mmc@vger.kernel.org
16397 S:      Maintained
16398 F:      drivers/mmc/host/sdhci-spear.c
16399
16400 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
16401 M:      Kishon Vijay Abraham I <kishon@ti.com>
16402 L:      linux-mmc@vger.kernel.org
16403 S:      Maintained
16404 F:      drivers/mmc/host/sdhci-omap.c
16405
16406 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
16407 M:      Jonathan Derrick <jonathan.derrick@intel.com>
16408 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
16409 L:      linux-block@vger.kernel.org
16410 S:      Supported
16411 F:      block/opal_proto.h
16412 F:      block/sed*
16413 F:      include/linux/sed*
16414 F:      include/uapi/linux/sed*
16415
16416 SECURITY CONTACT
16417 M:      Security Officers <security@kernel.org>
16418 S:      Supported
16419 F:      Documentation/admin-guide/security-bugs.rst
16420
16421 SECURITY SUBSYSTEM
16422 M:      James Morris <jmorris@namei.org>
16423 M:      "Serge E. Hallyn" <serge@hallyn.com>
16424 L:      linux-security-module@vger.kernel.org (suggested Cc:)
16425 S:      Supported
16426 W:      http://kernsec.org/
16427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
16428 F:      security/
16429 X:      security/selinux/
16430
16431 SELINUX SECURITY MODULE
16432 M:      Paul Moore <paul@paul-moore.com>
16433 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
16434 M:      Eric Paris <eparis@parisplace.org>
16435 L:      selinux@vger.kernel.org
16436 S:      Supported
16437 W:      https://selinuxproject.org
16438 W:      https://github.com/SELinuxProject
16439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
16440 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
16441 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
16442 F:      Documentation/admin-guide/LSM/SELinux.rst
16443 F:      include/trace/events/avc.h
16444 F:      include/uapi/linux/selinux_netlink.h
16445 F:      scripts/selinux/
16446 F:      security/selinux/
16447
16448 SENSABLE PHANTOM
16449 M:      Jiri Slaby <jirislaby@kernel.org>
16450 S:      Maintained
16451 F:      drivers/misc/phantom.c
16452 F:      include/uapi/linux/phantom.h
16453
16454 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
16455 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
16456 S:      Maintained
16457 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
16458 F:      drivers/iio/chemical/scd30.h
16459 F:      drivers/iio/chemical/scd30_core.c
16460 F:      drivers/iio/chemical/scd30_i2c.c
16461 F:      drivers/iio/chemical/scd30_serial.c
16462
16463 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
16464 M:      Tomasz Duszynski <tduszyns@gmail.com>
16465 S:      Maintained
16466 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
16467 F:      drivers/iio/chemical/sps30.c
16468
16469 SERIAL DEVICE BUS
16470 M:      Rob Herring <robh@kernel.org>
16471 L:      linux-serial@vger.kernel.org
16472 S:      Maintained
16473 F:      Documentation/devicetree/bindings/serial/serial.yaml
16474 F:      drivers/tty/serdev/
16475 F:      include/linux/serdev.h
16476
16477 SERIAL DRIVERS
16478 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16479 L:      linux-serial@vger.kernel.org
16480 S:      Maintained
16481 F:      Documentation/devicetree/bindings/serial/
16482 F:      drivers/tty/serial/
16483
16484 SERIAL IR RECEIVER
16485 M:      Sean Young <sean@mess.org>
16486 L:      linux-media@vger.kernel.org
16487 S:      Maintained
16488 F:      drivers/media/rc/serial_ir.c
16489
16490 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
16491 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16492 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16493 S:      Maintained
16494 F:      Documentation/devicetree/bindings/slimbus/
16495 F:      drivers/slimbus/
16496 F:      include/linux/slimbus.h
16497
16498 SFC NETWORK DRIVER
16499 M:      Edward Cree <ecree.xilinx@gmail.com>
16500 M:      Martin Habets <habetsm.xilinx@gmail.com>
16501 L:      netdev@vger.kernel.org
16502 S:      Supported
16503 F:      drivers/net/ethernet/sfc/
16504
16505 SFF/SFP/SFP+ MODULE SUPPORT
16506 M:      Russell King <linux@armlinux.org.uk>
16507 L:      netdev@vger.kernel.org
16508 S:      Maintained
16509 F:      drivers/net/phy/phylink.c
16510 F:      drivers/net/phy/sfp*
16511 F:      include/linux/mdio/mdio-i2c.h
16512 F:      include/linux/phylink.h
16513 F:      include/linux/sfp.h
16514 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)
16515
16516 SGI GRU DRIVER
16517 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
16518 S:      Maintained
16519 F:      drivers/misc/sgi-gru/
16520
16521 SGI XP/XPC/XPNET DRIVER
16522 M:      Robin Holt <robinmholt@gmail.com>
16523 M:      Steve Wahl <steve.wahl@hpe.com>
16524 R:      Mike Travis <mike.travis@hpe.com>
16525 S:      Maintained
16526 F:      drivers/misc/sgi-xp/
16527
16528 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
16529 M:      Karsten Graul <kgraul@linux.ibm.com>
16530 L:      linux-s390@vger.kernel.org
16531 S:      Supported
16532 W:      http://www.ibm.com/developerworks/linux/linux390/
16533 F:      net/smc/
16534
16535 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
16536 M:      Linus Walleij <linus.walleij@linaro.org>
16537 L:      linux-iio@vger.kernel.org
16538 S:      Maintained
16539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
16540 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
16541 F:      drivers/iio/light/gp2ap002.c
16542
16543 SHARP RJ54N1CB0C SENSOR DRIVER
16544 M:      Jacopo Mondi <jacopo@jmondi.org>
16545 L:      linux-media@vger.kernel.org
16546 S:      Odd fixes
16547 T:      git git://linuxtv.org/media_tree.git
16548 F:      drivers/media/i2c/rj54n1cb0c.c
16549 F:      include/media/i2c/rj54n1cb0c.h
16550
16551 SH_VOU V4L2 OUTPUT DRIVER
16552 L:      linux-media@vger.kernel.org
16553 S:      Orphan
16554 F:      drivers/media/platform/sh_vou.c
16555 F:      include/media/drv-intf/sh_vou.h
16556
16557 SI2157 MEDIA DRIVER
16558 M:      Antti Palosaari <crope@iki.fi>
16559 L:      linux-media@vger.kernel.org
16560 S:      Maintained
16561 W:      https://linuxtv.org
16562 W:      http://palosaari.fi/linux/
16563 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16564 T:      git git://linuxtv.org/anttip/media_tree.git
16565 F:      drivers/media/tuners/si2157*
16566
16567 SI2165 MEDIA DRIVER
16568 M:      Matthias Schwarzott <zzam@gentoo.org>
16569 L:      linux-media@vger.kernel.org
16570 S:      Maintained
16571 W:      https://linuxtv.org
16572 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16573 F:      drivers/media/dvb-frontends/si2165*
16574
16575 SI2168 MEDIA DRIVER
16576 M:      Antti Palosaari <crope@iki.fi>
16577 L:      linux-media@vger.kernel.org
16578 S:      Maintained
16579 W:      https://linuxtv.org
16580 W:      http://palosaari.fi/linux/
16581 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16582 T:      git git://linuxtv.org/anttip/media_tree.git
16583 F:      drivers/media/dvb-frontends/si2168*
16584
16585 SI470X FM RADIO RECEIVER I2C DRIVER
16586 M:      Hans Verkuil <hverkuil@xs4all.nl>
16587 L:      linux-media@vger.kernel.org
16588 S:      Odd Fixes
16589 W:      https://linuxtv.org
16590 T:      git git://linuxtv.org/media_tree.git
16591 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
16592
16593 SI470X FM RADIO RECEIVER USB DRIVER
16594 M:      Hans Verkuil <hverkuil@xs4all.nl>
16595 L:      linux-media@vger.kernel.org
16596 S:      Maintained
16597 W:      https://linuxtv.org
16598 T:      git git://linuxtv.org/media_tree.git
16599 F:      drivers/media/radio/si470x/radio-si470x-common.c
16600 F:      drivers/media/radio/si470x/radio-si470x-usb.c
16601 F:      drivers/media/radio/si470x/radio-si470x.h
16602
16603 SI4713 FM RADIO TRANSMITTER I2C DRIVER
16604 M:      Eduardo Valentin <edubezval@gmail.com>
16605 L:      linux-media@vger.kernel.org
16606 S:      Odd Fixes
16607 W:      https://linuxtv.org
16608 T:      git git://linuxtv.org/media_tree.git
16609 F:      drivers/media/radio/si4713/si4713.?
16610
16611 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
16612 M:      Eduardo Valentin <edubezval@gmail.com>
16613 L:      linux-media@vger.kernel.org
16614 S:      Odd Fixes
16615 W:      https://linuxtv.org
16616 T:      git git://linuxtv.org/media_tree.git
16617 F:      drivers/media/radio/si4713/radio-platform-si4713.c
16618
16619 SI4713 FM RADIO TRANSMITTER USB DRIVER
16620 M:      Hans Verkuil <hverkuil@xs4all.nl>
16621 L:      linux-media@vger.kernel.org
16622 S:      Maintained
16623 W:      https://linuxtv.org
16624 T:      git git://linuxtv.org/media_tree.git
16625 F:      drivers/media/radio/si4713/radio-usb-si4713.c
16626
16627 SIANO DVB DRIVER
16628 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16629 L:      linux-media@vger.kernel.org
16630 S:      Odd fixes
16631 W:      https://linuxtv.org
16632 T:      git git://linuxtv.org/media_tree.git
16633 F:      drivers/media/common/siano/
16634 F:      drivers/media/mmc/siano/
16635 F:      drivers/media/usb/siano/
16636 F:      drivers/media/usb/siano/
16637
16638 SIFIVE DRIVERS
16639 M:      Palmer Dabbelt <palmer@dabbelt.com>
16640 M:      Paul Walmsley <paul.walmsley@sifive.com>
16641 L:      linux-riscv@lists.infradead.org
16642 S:      Supported
16643 T:      git git://github.com/sifive/riscv-linux.git
16644 N:      sifive
16645 K:      [^@]sifive
16646
16647 SIFIVE FU540 SYSTEM-ON-CHIP
16648 M:      Paul Walmsley <paul.walmsley@sifive.com>
16649 M:      Palmer Dabbelt <palmer@dabbelt.com>
16650 L:      linux-riscv@lists.infradead.org
16651 S:      Supported
16652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
16653 N:      fu540
16654 K:      fu540
16655
16656 SIFIVE PDMA DRIVER
16657 M:      Green Wan <green.wan@sifive.com>
16658 S:      Maintained
16659 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
16660 F:      drivers/dma/sf-pdma/
16661
16662 SILEAD TOUCHSCREEN DRIVER
16663 M:      Hans de Goede <hdegoede@redhat.com>
16664 L:      linux-input@vger.kernel.org
16665 L:      platform-driver-x86@vger.kernel.org
16666 S:      Maintained
16667 F:      drivers/input/touchscreen/silead.c
16668 F:      drivers/platform/x86/touchscreen_dmi.c
16669
16670 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
16671 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
16672 S:      Supported
16673 F:      drivers/staging/wfx/
16674
16675 SILICON MOTION SM712 FRAME BUFFER DRIVER
16676 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16677 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16678 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16679 L:      linux-fbdev@vger.kernel.org
16680 S:      Maintained
16681 F:      Documentation/fb/sm712fb.rst
16682 F:      drivers/video/fbdev/sm712*
16683
16684 SILVACO I3C DUAL-ROLE MASTER
16685 M:      Miquel Raynal <miquel.raynal@bootlin.com>
16686 M:      Conor Culhane <conor.culhane@silvaco.com>
16687 L:      linux-i3c@lists.infradead.org
16688 S:      Maintained
16689 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
16690 F:      drivers/i3c/master/svc-i3c-master.c
16691
16692 SIMPLEFB FB DRIVER
16693 M:      Hans de Goede <hdegoede@redhat.com>
16694 L:      linux-fbdev@vger.kernel.org
16695 S:      Maintained
16696 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
16697 F:      drivers/video/fbdev/simplefb.c
16698 F:      include/linux/platform_data/simplefb.h
16699
16700 SIMTEC EB110ATX (Chalice CATS)
16701 M:      Simtec Linux Team <linux@simtec.co.uk>
16702 S:      Supported
16703 W:      http://www.simtec.co.uk/products/EB110ATX/
16704
16705 SIMTEC EB2410ITX (BAST)
16706 M:      Simtec Linux Team <linux@simtec.co.uk>
16707 S:      Supported
16708 W:      http://www.simtec.co.uk/products/EB2410ITX/
16709 F:      arch/arm/mach-s3c/bast-ide.c
16710 F:      arch/arm/mach-s3c/bast-irq.c
16711 F:      arch/arm/mach-s3c/mach-bast.c
16712
16713 SIOX
16714 M:      Thorsten Scherer <t.scherer@eckelmann.de>
16715 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16716 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
16717 S:      Supported
16718 F:      drivers/gpio/gpio-siox.c
16719 F:      drivers/siox/*
16720 F:      include/trace/events/siox.h
16721
16722 SIPHASH PRF ROUTINES
16723 M:      Jason A. Donenfeld <Jason@zx2c4.com>
16724 S:      Maintained
16725 F:      include/linux/siphash.h
16726 F:      lib/siphash.c
16727 F:      lib/test_siphash.c
16728
16729 SIS 190 ETHERNET DRIVER
16730 M:      Francois Romieu <romieu@fr.zoreil.com>
16731 L:      netdev@vger.kernel.org
16732 S:      Maintained
16733 F:      drivers/net/ethernet/sis/sis190.c
16734
16735 SIS 900/7016 FAST ETHERNET DRIVER
16736 M:      Daniele Venzano <venza@brownhat.org>
16737 L:      netdev@vger.kernel.org
16738 S:      Maintained
16739 W:      http://www.brownhat.org/sis900.html
16740 F:      drivers/net/ethernet/sis/sis900.*
16741
16742 SIS FRAMEBUFFER DRIVER
16743 M:      Thomas Winischhofer <thomas@winischhofer.net>
16744 S:      Maintained
16745 W:      http://www.winischhofer.net/linuxsisvga.shtml
16746 F:      Documentation/fb/sisfb.rst
16747 F:      drivers/video/fbdev/sis/
16748 F:      include/video/sisfb.h
16749
16750 SIS I2C TOUCHSCREEN DRIVER
16751 M:      Mika Penttilä <mika.penttila@nextfour.com>
16752 L:      linux-input@vger.kernel.org
16753 S:      Maintained
16754 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
16755 F:      drivers/input/touchscreen/sis_i2c.c
16756
16757 SIS USB2VGA DRIVER
16758 M:      Thomas Winischhofer <thomas@winischhofer.net>
16759 S:      Maintained
16760 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
16761 F:      drivers/usb/misc/sisusbvga/
16762
16763 SLAB ALLOCATOR
16764 M:      Christoph Lameter <cl@linux.com>
16765 M:      Pekka Enberg <penberg@kernel.org>
16766 M:      David Rientjes <rientjes@google.com>
16767 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
16768 M:      Andrew Morton <akpm@linux-foundation.org>
16769 M:      Vlastimil Babka <vbabka@suse.cz>
16770 L:      linux-mm@kvack.org
16771 S:      Maintained
16772 F:      include/linux/sl?b*.h
16773 F:      mm/sl?b*
16774
16775 SLEEPABLE READ-COPY UPDATE (SRCU)
16776 M:      Lai Jiangshan <jiangshanlai@gmail.com>
16777 M:      "Paul E. McKenney" <paulmck@kernel.org>
16778 M:      Josh Triplett <josh@joshtriplett.org>
16779 R:      Steven Rostedt <rostedt@goodmis.org>
16780 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16781 L:      rcu@vger.kernel.org
16782 S:      Supported
16783 W:      http://www.rdrop.com/users/paulmck/RCU/
16784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16785 F:      include/linux/srcu*.h
16786 F:      kernel/rcu/srcu*.c
16787
16788 SMACK SECURITY MODULE
16789 M:      Casey Schaufler <casey@schaufler-ca.com>
16790 L:      linux-security-module@vger.kernel.org
16791 S:      Maintained
16792 W:      http://schaufler-ca.com
16793 T:      git git://github.com/cschaufler/smack-next
16794 F:      Documentation/admin-guide/LSM/Smack.rst
16795 F:      security/smack/
16796
16797 SMC91x ETHERNET DRIVER
16798 M:      Nicolas Pitre <nico@fluxnic.net>
16799 S:      Odd Fixes
16800 F:      drivers/net/ethernet/smsc/smc91x.*
16801
16802 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
16803 M:      Mark Rutland <mark.rutland@arm.com>
16804 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
16805 M:      Sudeep Holla <sudeep.holla@arm.com>
16806 L:      linux-arm-kernel@lists.infradead.org
16807 S:      Maintained
16808 F:      drivers/firmware/smccc/
16809 F:      include/linux/arm-smccc.h
16810
16811 SMM665 HARDWARE MONITOR DRIVER
16812 M:      Guenter Roeck <linux@roeck-us.net>
16813 L:      linux-hwmon@vger.kernel.org
16814 S:      Maintained
16815 F:      Documentation/hwmon/smm665.rst
16816 F:      drivers/hwmon/smm665.c
16817
16818 SMSC EMC2103 HARDWARE MONITOR DRIVER
16819 M:      Steve Glendinning <steve.glendinning@shawell.net>
16820 L:      linux-hwmon@vger.kernel.org
16821 S:      Maintained
16822 F:      Documentation/hwmon/emc2103.rst
16823 F:      drivers/hwmon/emc2103.c
16824
16825 SMSC SCH5627 HARDWARE MONITOR DRIVER
16826 M:      Hans de Goede <hdegoede@redhat.com>
16827 L:      linux-hwmon@vger.kernel.org
16828 S:      Supported
16829 F:      Documentation/hwmon/sch5627.rst
16830 F:      drivers/hwmon/sch5627.c
16831
16832 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
16833 M:      Steve Glendinning <steve.glendinning@shawell.net>
16834 L:      linux-fbdev@vger.kernel.org
16835 S:      Maintained
16836 F:      drivers/video/fbdev/smscufx.c
16837
16838 SMSC47B397 HARDWARE MONITOR DRIVER
16839 M:      Jean Delvare <jdelvare@suse.com>
16840 L:      linux-hwmon@vger.kernel.org
16841 S:      Maintained
16842 F:      Documentation/hwmon/smsc47b397.rst
16843 F:      drivers/hwmon/smsc47b397.c
16844
16845 SMSC911x ETHERNET DRIVER
16846 M:      Steve Glendinning <steve.glendinning@shawell.net>
16847 L:      netdev@vger.kernel.org
16848 S:      Maintained
16849 F:      drivers/net/ethernet/smsc/smsc911x.*
16850 F:      include/linux/smsc911x.h
16851
16852 SMSC9420 PCI ETHERNET DRIVER
16853 M:      Steve Glendinning <steve.glendinning@shawell.net>
16854 L:      netdev@vger.kernel.org
16855 S:      Maintained
16856 F:      drivers/net/ethernet/smsc/smsc9420.*
16857
16858 SOCIONEXT (SNI) AVE NETWORK DRIVER
16859 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
16860 L:      netdev@vger.kernel.org
16861 S:      Maintained
16862 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
16863 F:      drivers/net/ethernet/socionext/sni_ave.c
16864
16865 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
16866 M:      Jassi Brar <jaswinder.singh@linaro.org>
16867 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
16868 L:      netdev@vger.kernel.org
16869 S:      Maintained
16870 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
16871 F:      drivers/net/ethernet/socionext/netsec.c
16872
16873 SOCIONEXT (SNI) Synquacer SPI DRIVER
16874 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
16875 M:      Jassi Brar <jaswinder.singh@linaro.org>
16876 L:      linux-spi@vger.kernel.org
16877 S:      Maintained
16878 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
16879 F:      drivers/spi/spi-synquacer.c
16880
16881 SOCIONEXT SYNQUACER I2C DRIVER
16882 M:      Ard Biesheuvel <ardb@kernel.org>
16883 L:      linux-i2c@vger.kernel.org
16884 S:      Maintained
16885 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
16886 F:      drivers/i2c/busses/i2c-synquacer.c
16887
16888 SOCIONEXT UNIPHIER SOUND DRIVER
16889 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16890 S:      Orphan
16891 F:      sound/soc/uniphier/
16892
16893 SOEKRIS NET48XX LED SUPPORT
16894 M:      Chris Boot <bootc@bootc.net>
16895 S:      Maintained
16896 F:      drivers/leds/leds-net48xx.c
16897
16898 SOFT-IWARP DRIVER (siw)
16899 M:      Bernard Metzler <bmt@zurich.ibm.com>
16900 L:      linux-rdma@vger.kernel.org
16901 S:      Supported
16902 F:      drivers/infiniband/sw/siw/
16903 F:      include/uapi/rdma/siw-abi.h
16904
16905 SOFT-ROCE DRIVER (rxe)
16906 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
16907 L:      linux-rdma@vger.kernel.org
16908 S:      Supported
16909 F:      drivers/infiniband/sw/rxe/
16910 F:      include/uapi/rdma/rdma_user_rxe.h
16911
16912 SOFTLOGIC 6x10 MPEG CODEC
16913 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
16914 M:      Anton Sviridenko <anton@corp.bluecherry.net>
16915 M:      Andrey Utkin <andrey_utkin@fastmail.com>
16916 M:      Ismael Luceno <ismael@iodev.co.uk>
16917 L:      linux-media@vger.kernel.org
16918 S:      Supported
16919 F:      drivers/media/pci/solo6x10/
16920
16921 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
16922 M:      James Morse <james.morse@arm.com>
16923 L:      linux-arm-kernel@lists.infradead.org
16924 S:      Maintained
16925 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
16926 F:      drivers/firmware/arm_sdei.c
16927 F:      include/linux/arm_sdei.h
16928 F:      include/uapi/linux/arm_sdei.h
16929
16930 SOFTWARE NODES
16931 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16932 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
16933 L:      linux-acpi@vger.kernel.org
16934 S:      Maintained
16935 F:      drivers/base/swnode.c
16936
16937 SOFTWARE RAID (Multiple Disks) SUPPORT
16938 M:      Song Liu <song@kernel.org>
16939 L:      linux-raid@vger.kernel.org
16940 S:      Supported
16941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
16942 F:      drivers/md/Kconfig
16943 F:      drivers/md/Makefile
16944 F:      drivers/md/md*
16945 F:      drivers/md/raid*
16946 F:      include/linux/raid/
16947 F:      include/uapi/linux/raid/
16948
16949 SOLIDRUN CLEARFOG SUPPORT
16950 M:      Russell King <linux@armlinux.org.uk>
16951 S:      Maintained
16952 F:      arch/arm/boot/dts/armada-388-clearfog*
16953 F:      arch/arm/boot/dts/armada-38x-solidrun-*
16954
16955 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
16956 M:      Russell King <linux@armlinux.org.uk>
16957 S:      Maintained
16958 F:      arch/arm/boot/dts/imx6*-cubox-i*
16959 F:      arch/arm/boot/dts/imx6*-hummingboard*
16960 F:      arch/arm/boot/dts/imx6*-sr-*
16961
16962 SONIC NETWORK DRIVER
16963 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
16964 L:      netdev@vger.kernel.org
16965 S:      Maintained
16966 F:      drivers/net/ethernet/natsemi/sonic.*
16967
16968 SONICS SILICON BACKPLANE DRIVER (SSB)
16969 M:      Michael Buesch <m@bues.ch>
16970 L:      linux-wireless@vger.kernel.org
16971 S:      Maintained
16972 F:      drivers/ssb/
16973 F:      include/linux/ssb/
16974
16975 SONY IMX214 SENSOR DRIVER
16976 M:      Ricardo Ribalda <ribalda@kernel.org>
16977 L:      linux-media@vger.kernel.org
16978 S:      Maintained
16979 T:      git git://linuxtv.org/media_tree.git
16980 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
16981 F:      drivers/media/i2c/imx214.c
16982
16983 SONY IMX219 SENSOR DRIVER
16984 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
16985 L:      linux-media@vger.kernel.org
16986 S:      Maintained
16987 T:      git git://linuxtv.org/media_tree.git
16988 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
16989 F:      drivers/media/i2c/imx219.c
16990
16991 SONY IMX258 SENSOR DRIVER
16992 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
16993 L:      linux-media@vger.kernel.org
16994 S:      Maintained
16995 T:      git git://linuxtv.org/media_tree.git
16996 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
16997 F:      drivers/media/i2c/imx258.c
16998
16999 SONY IMX274 SENSOR DRIVER
17000 M:      Leon Luo <leonl@leopardimaging.com>
17001 L:      linux-media@vger.kernel.org
17002 S:      Maintained
17003 T:      git git://linuxtv.org/media_tree.git
17004 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
17005 F:      drivers/media/i2c/imx274.c
17006
17007 SONY IMX290 SENSOR DRIVER
17008 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17009 L:      linux-media@vger.kernel.org
17010 S:      Maintained
17011 T:      git git://linuxtv.org/media_tree.git
17012 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
17013 F:      drivers/media/i2c/imx290.c
17014
17015 SONY IMX319 SENSOR DRIVER
17016 M:      Bingbu Cao <bingbu.cao@intel.com>
17017 L:      linux-media@vger.kernel.org
17018 S:      Maintained
17019 T:      git git://linuxtv.org/media_tree.git
17020 F:      drivers/media/i2c/imx319.c
17021
17022 SONY IMX334 SENSOR DRIVER
17023 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17024 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17025 L:      linux-media@vger.kernel.org
17026 S:      Maintained
17027 T:      git git://linuxtv.org/media_tree.git
17028 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
17029 F:      drivers/media/i2c/imx334.c
17030
17031 SONY IMX355 SENSOR DRIVER
17032 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
17033 L:      linux-media@vger.kernel.org
17034 S:      Maintained
17035 T:      git git://linuxtv.org/media_tree.git
17036 F:      drivers/media/i2c/imx355.c
17037
17038 SONY MEMORYSTICK SUBSYSTEM
17039 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17040 M:      Alex Dubov <oakad@yahoo.com>
17041 M:      Ulf Hansson <ulf.hansson@linaro.org>
17042 L:      linux-mmc@vger.kernel.org
17043 S:      Maintained
17044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
17045 F:      drivers/memstick/
17046 F:      include/linux/memstick.h
17047
17048 SONY VAIO CONTROL DEVICE DRIVER
17049 M:      Mattia Dongili <malattia@linux.it>
17050 L:      platform-driver-x86@vger.kernel.org
17051 S:      Maintained
17052 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
17053 F:      Documentation/admin-guide/laptops/sony-laptop.rst
17054 F:      drivers/char/sonypi.c
17055 F:      drivers/platform/x86/sony-laptop.c
17056 F:      include/linux/sony-laptop.h
17057
17058 SOUND
17059 M:      Jaroslav Kysela <perex@perex.cz>
17060 M:      Takashi Iwai <tiwai@suse.com>
17061 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17062 S:      Maintained
17063 W:      http://www.alsa-project.org/
17064 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
17065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17066 F:      Documentation/sound/
17067 F:      include/sound/
17068 F:      include/uapi/sound/
17069 F:      sound/
17070
17071 SOUND - COMPRESSED AUDIO
17072 M:      Vinod Koul <vkoul@kernel.org>
17073 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17074 S:      Supported
17075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17076 F:      Documentation/sound/designs/compress-offload.rst
17077 F:      include/sound/compress_driver.h
17078 F:      include/uapi/sound/compress_*
17079 F:      sound/core/compress_offload.c
17080 F:      sound/soc/soc-compress.c
17081
17082 SOUND - DMAENGINE HELPERS
17083 M:      Lars-Peter Clausen <lars@metafoo.de>
17084 S:      Supported
17085 F:      include/sound/dmaengine_pcm.h
17086 F:      sound/core/pcm_dmaengine.c
17087 F:      sound/soc/soc-generic-dmaengine-pcm.c
17088
17089 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
17090 M:      Liam Girdwood <lgirdwood@gmail.com>
17091 M:      Mark Brown <broonie@kernel.org>
17092 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17093 S:      Supported
17094 W:      http://alsa-project.org/main/index.php/ASoC
17095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
17096 F:      Documentation/devicetree/bindings/sound/
17097 F:      Documentation/sound/soc/
17098 F:      include/dt-bindings/sound/
17099 F:      include/sound/soc*
17100 F:      sound/soc/
17101
17102 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
17103 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17104 M:      Liam Girdwood <lgirdwood@gmail.com>
17105 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
17106 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
17107 M:      Daniel Baluta <daniel.baluta@nxp.com>
17108 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
17109 S:      Supported
17110 W:      https://github.com/thesofproject/linux/
17111 F:      sound/soc/sof/
17112
17113 SOUNDWIRE SUBSYSTEM
17114 M:      Vinod Koul <vkoul@kernel.org>
17115 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
17116 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17117 R:      Sanyog Kale <sanyog.r.kale@intel.com>
17118 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17119 S:      Supported
17120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
17121 F:      Documentation/driver-api/soundwire/
17122 F:      drivers/soundwire/
17123 F:      include/linux/soundwire/
17124
17125 SP2 MEDIA DRIVER
17126 M:      Olli Salonen <olli.salonen@iki.fi>
17127 L:      linux-media@vger.kernel.org
17128 S:      Maintained
17129 W:      https://linuxtv.org
17130 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17131 F:      drivers/media/dvb-frontends/sp2*
17132
17133 SPARC + UltraSPARC (sparc/sparc64)
17134 M:      "David S. Miller" <davem@davemloft.net>
17135 L:      sparclinux@vger.kernel.org
17136 S:      Maintained
17137 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
17138 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17140 F:      arch/sparc/
17141 F:      drivers/sbus/
17142
17143 SPARC SERIAL DRIVERS
17144 M:      "David S. Miller" <davem@davemloft.net>
17145 L:      sparclinux@vger.kernel.org
17146 S:      Maintained
17147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17149 F:      drivers/tty/serial/suncore.c
17150 F:      drivers/tty/serial/sunhv.c
17151 F:      drivers/tty/serial/sunsab.c
17152 F:      drivers/tty/serial/sunsab.h
17153 F:      drivers/tty/serial/sunsu.c
17154 F:      drivers/tty/serial/sunzilog.c
17155 F:      drivers/tty/serial/sunzilog.h
17156 F:      drivers/tty/vcc.c
17157 F:      include/linux/sunserialcore.h
17158
17159 SPARSE CHECKER
17160 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
17161 L:      linux-sparse@vger.kernel.org
17162 S:      Maintained
17163 W:      https://sparse.docs.kernel.org/
17164 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
17165 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
17166 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
17167 F:      include/linux/compiler.h
17168
17169 SPEAKUP CONSOLE SPEECH DRIVER
17170 M:      William Hubbs <w.d.hubbs@gmail.com>
17171 M:      Chris Brannon <chris@the-brannons.com>
17172 M:      Kirk Reiser <kirk@reisers.ca>
17173 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
17174 L:      speakup@linux-speakup.org
17175 S:      Odd Fixes
17176 W:      http://www.linux-speakup.org/
17177 W:      https://github.com/linux-speakup/speakup
17178 B:      https://github.com/linux-speakup/speakup/issues
17179 F:      drivers/accessibility/speakup/
17180
17181 SPEAR CLOCK FRAMEWORK SUPPORT
17182 M:      Viresh Kumar <vireshk@kernel.org>
17183 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17184 S:      Maintained
17185 W:      http://www.st.com/spear
17186 F:      drivers/clk/spear/
17187
17188 SPEAR PLATFORM SUPPORT
17189 M:      Viresh Kumar <vireshk@kernel.org>
17190 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
17191 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17192 S:      Maintained
17193 W:      http://www.st.com/spear
17194 F:      arch/arm/boot/dts/spear*
17195 F:      arch/arm/mach-spear/
17196
17197 SPI NOR SUBSYSTEM
17198 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
17199 R:      Michael Walle <michael@walle.cc>
17200 R:      Pratyush Yadav <p.yadav@ti.com>
17201 L:      linux-mtd@lists.infradead.org
17202 S:      Maintained
17203 W:      http://www.linux-mtd.infradead.org/
17204 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
17205 C:      irc://irc.oftc.net/mtd
17206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
17207 F:      drivers/mtd/spi-nor/
17208 F:      include/linux/mtd/spi-nor.h
17209
17210 SPI SUBSYSTEM
17211 M:      Mark Brown <broonie@kernel.org>
17212 L:      linux-spi@vger.kernel.org
17213 S:      Maintained
17214 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
17215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
17216 F:      Documentation/devicetree/bindings/spi/
17217 F:      Documentation/spi/
17218 F:      drivers/spi/
17219 F:      include/linux/spi/
17220 F:      include/uapi/linux/spi/
17221 F:      tools/spi/
17222
17223 SPIDERNET NETWORK DRIVER for CELL
17224 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
17225 M:      Geoff Levand <geoff@infradead.org>
17226 L:      netdev@vger.kernel.org
17227 L:      linuxppc-dev@lists.ozlabs.org
17228 S:      Maintained
17229 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
17230 F:      drivers/net/ethernet/toshiba/spider_net*
17231
17232 SPMI SUBSYSTEM
17233 M:      Stephen Boyd <sboyd@kernel.org>
17234 L:      linux-kernel@vger.kernel.org
17235 S:      Maintained
17236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
17237 F:      Documentation/devicetree/bindings/spmi/
17238 F:      drivers/spmi/
17239 F:      include/dt-bindings/spmi/spmi.h
17240 F:      include/linux/spmi.h
17241 F:      include/trace/events/spmi.h
17242
17243 SPU FILE SYSTEM
17244 M:      Jeremy Kerr <jk@ozlabs.org>
17245 L:      linuxppc-dev@lists.ozlabs.org
17246 S:      Supported
17247 W:      http://www.ibm.com/developerworks/power/cell/
17248 F:      Documentation/filesystems/spufs/spufs.rst
17249 F:      arch/powerpc/platforms/cell/spufs/
17250
17251 SQUASHFS FILE SYSTEM
17252 M:      Phillip Lougher <phillip@squashfs.org.uk>
17253 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
17254 S:      Maintained
17255 W:      http://squashfs.org.uk
17256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
17257 F:      Documentation/filesystems/squashfs.rst
17258 F:      fs/squashfs/
17259
17260 SRM (Alpha) environment access
17261 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
17262 S:      Maintained
17263 F:      arch/alpha/kernel/srm_env.c
17264
17265 ST LSM6DSx IMU IIO DRIVER
17266 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
17267 L:      linux-iio@vger.kernel.org
17268 S:      Maintained
17269 W:      http://www.st.com/
17270 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
17271 F:      drivers/iio/imu/st_lsm6dsx/
17272
17273 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
17274 M:      Mickael Guene <mickael.guene@st.com>
17275 L:      linux-media@vger.kernel.org
17276 S:      Maintained
17277 T:      git git://linuxtv.org/media_tree.git
17278 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
17279 F:      drivers/media/i2c/st-mipid02.c
17280
17281 ST STM32 I2C/SMBUS DRIVER
17282 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
17283 M:      Alain Volmat <alain.volmat@foss.st.com>
17284 L:      linux-i2c@vger.kernel.org
17285 S:      Maintained
17286 F:      drivers/i2c/busses/i2c-stm32*
17287
17288 ST STPDDC60 DRIVER
17289 M:      Daniel Nilsson <daniel.nilsson@flex.com>
17290 L:      linux-hwmon@vger.kernel.org
17291 S:      Maintained
17292 F:      Documentation/hwmon/stpddc60.rst
17293 F:      drivers/hwmon/pmbus/stpddc60.c
17294
17295 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
17296 M:      Song Qiang <songqiang1304521@gmail.com>
17297 L:      linux-iio@vger.kernel.org
17298 S:      Maintained
17299 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
17300 F:      drivers/iio/proximity/vl53l0x-i2c.c
17301
17302 STABLE BRANCH
17303 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17304 M:      Sasha Levin <sashal@kernel.org>
17305 L:      stable@vger.kernel.org
17306 S:      Supported
17307 F:      Documentation/process/stable-kernel-rules.rst
17308
17309 STAGING - ATOMISP DRIVER
17310 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17311 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
17312 L:      linux-media@vger.kernel.org
17313 S:      Maintained
17314 F:      drivers/staging/media/atomisp/
17315
17316 STAGING - FIELDBUS SUBSYSTEM
17317 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17318 S:      Maintained
17319 F:      drivers/staging/fieldbus/*
17320 F:      drivers/staging/fieldbus/Documentation/
17321
17322 STAGING - HMS ANYBUS-S BUS
17323 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17324 S:      Maintained
17325 F:      drivers/staging/fieldbus/anybuss/
17326
17327 STAGING - INDUSTRIAL IO
17328 M:      Jonathan Cameron <jic23@kernel.org>
17329 L:      linux-iio@vger.kernel.org
17330 S:      Odd Fixes
17331 F:      Documentation/devicetree/bindings/staging/iio/
17332 F:      drivers/staging/iio/
17333
17334 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
17335 M:      Marc Dietrich <marvin24@gmx.de>
17336 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
17337 L:      linux-tegra@vger.kernel.org
17338 S:      Maintained
17339 F:      drivers/staging/nvec/
17340
17341 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
17342 M:      Jens Frederich <jfrederich@gmail.com>
17343 M:      Daniel Drake <dsd@laptop.org>
17344 M:      Jon Nettleton <jon.nettleton@gmail.com>
17345 S:      Maintained
17346 W:      http://wiki.laptop.org/go/DCON
17347 F:      drivers/staging/olpc_dcon/
17348
17349 STAGING - REALTEK RTL8188EU DRIVERS
17350 M:      Larry Finger <Larry.Finger@lwfinger.net>
17351 S:      Odd Fixes
17352 F:      drivers/staging/rtl8188eu/
17353
17354 STAGING - REALTEK RTL8712U DRIVERS
17355 M:      Larry Finger <Larry.Finger@lwfinger.net>
17356 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
17357 S:      Odd Fixes
17358 F:      drivers/staging/rtl8712/
17359
17360 STAGING - SEPS525 LCD CONTROLLER DRIVERS
17361 M:      Michael Hennerich <michael.hennerich@analog.com>
17362 L:      linux-fbdev@vger.kernel.org
17363 S:      Supported
17364 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
17365 F:      drivers/staging/fbtft/fb_seps525.c
17366
17367 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
17368 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17369 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17370 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17371 L:      linux-fbdev@vger.kernel.org
17372 S:      Maintained
17373 F:      drivers/staging/sm750fb/
17374
17375 STAGING - VIA VT665X DRIVERS
17376 M:      Forest Bond <forest@alittletooquiet.net>
17377 S:      Odd Fixes
17378 F:      drivers/staging/vt665?/
17379
17380 STAGING SUBSYSTEM
17381 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17382 L:      linux-staging@lists.linux.dev
17383 S:      Supported
17384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
17385 F:      drivers/staging/
17386
17387 STARFIRE/DURALAN NETWORK DRIVER
17388 M:      Ion Badulescu <ionut@badula.org>
17389 S:      Odd Fixes
17390 F:      drivers/net/ethernet/adaptec/starfire*
17391
17392 STATIC BRANCH/CALL
17393 M:      Peter Zijlstra <peterz@infradead.org>
17394 M:      Josh Poimboeuf <jpoimboe@redhat.com>
17395 M:      Jason Baron <jbaron@akamai.com>
17396 R:      Steven Rostedt <rostedt@goodmis.org>
17397 R:      Ard Biesheuvel <ardb@kernel.org>
17398 S:      Supported
17399 F:      arch/*/include/asm/jump_label*.h
17400 F:      arch/*/include/asm/static_call*.h
17401 F:      arch/*/kernel/jump_label.c
17402 F:      arch/*/kernel/static_call.c
17403 F:      include/linux/jump_label*.h
17404 F:      include/linux/static_call*.h
17405 F:      kernel/jump_label.c
17406 F:      kernel/static_call.c
17407
17408 STI AUDIO (ASoC) DRIVERS
17409 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17410 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17411 S:      Maintained
17412 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
17413 F:      sound/soc/sti/
17414
17415 STI CEC DRIVER
17416 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
17417 S:      Maintained
17418 F:      Documentation/devicetree/bindings/media/stih-cec.txt
17419 F:      drivers/media/cec/platform/sti/
17420
17421 STK1160 USB VIDEO CAPTURE DRIVER
17422 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17423 L:      linux-media@vger.kernel.org
17424 S:      Maintained
17425 T:      git git://linuxtv.org/media_tree.git
17426 F:      drivers/media/usb/stk1160/
17427
17428 STM32 AUDIO (ASoC) DRIVERS
17429 M:      Olivier Moysan <olivier.moysan@foss.st.com>
17430 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17431 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17432 S:      Maintained
17433 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-*.yaml
17434 F:      sound/soc/stm/
17435
17436 STM32 TIMER/LPTIMER DRIVERS
17437 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
17438 S:      Maintained
17439 F:      Documentation/ABI/testing/*timer-stm32
17440 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
17441 F:      drivers/*/stm32-*timer*
17442 F:      drivers/pwm/pwm-stm32*
17443 F:      include/linux/*/stm32-*tim*
17444
17445 STMMAC ETHERNET DRIVER
17446 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
17447 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
17448 M:      Jose Abreu <joabreu@synopsys.com>
17449 L:      netdev@vger.kernel.org
17450 S:      Supported
17451 W:      http://www.stlinux.com
17452 F:      Documentation/networking/device_drivers/ethernet/stmicro/
17453 F:      drivers/net/ethernet/stmicro/stmmac/
17454
17455 SUN3/3X
17456 M:      Sam Creasey <sammy@sammy.net>
17457 S:      Maintained
17458 W:      http://sammy.net/sun3/
17459 F:      arch/m68k/include/asm/sun3*
17460 F:      arch/m68k/kernel/*sun3*
17461 F:      arch/m68k/sun3*/
17462 F:      drivers/net/ethernet/i825xx/sun3*
17463
17464 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
17465 M:      Hans de Goede <hdegoede@redhat.com>
17466 L:      linux-input@vger.kernel.org
17467 S:      Maintained
17468 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
17469 F:      drivers/input/keyboard/sun4i-lradc-keys.c
17470
17471 SUNDANCE NETWORK DRIVER
17472 M:      Denis Kirjanov <kda@linux-powerpc.org>
17473 L:      netdev@vger.kernel.org
17474 S:      Maintained
17475 F:      drivers/net/ethernet/dlink/sundance.c
17476
17477 SUPERH
17478 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
17479 M:      Rich Felker <dalias@libc.org>
17480 L:      linux-sh@vger.kernel.org
17481 S:      Maintained
17482 Q:      http://patchwork.kernel.org/project/linux-sh/list/
17483 F:      Documentation/sh/
17484 F:      arch/sh/
17485 F:      drivers/sh/
17486
17487 SUSPEND TO RAM
17488 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
17489 M:      Len Brown <len.brown@intel.com>
17490 M:      Pavel Machek <pavel@ucw.cz>
17491 L:      linux-pm@vger.kernel.org
17492 S:      Supported
17493 B:      https://bugzilla.kernel.org
17494 F:      Documentation/power/
17495 F:      arch/x86/kernel/acpi/
17496 F:      drivers/base/power/
17497 F:      include/linux/freezer.h
17498 F:      include/linux/pm.h
17499 F:      include/linux/suspend.h
17500 F:      kernel/power/
17501
17502 SVGA HANDLING
17503 M:      Martin Mares <mj@ucw.cz>
17504 L:      linux-video@atrey.karlin.mff.cuni.cz
17505 S:      Maintained
17506 F:      Documentation/admin-guide/svga.rst
17507 F:      arch/x86/boot/video*
17508
17509 SWIOTLB SUBSYSTEM
17510 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17511 L:      iommu@lists.linux-foundation.org
17512 S:      Supported
17513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
17514 F:      arch/*/kernel/pci-swiotlb.c
17515 F:      include/linux/swiotlb.h
17516 F:      kernel/dma/swiotlb.c
17517
17518 SWITCHDEV
17519 M:      Jiri Pirko <jiri@resnulli.us>
17520 M:      Ivan Vecera <ivecera@redhat.com>
17521 L:      netdev@vger.kernel.org
17522 S:      Supported
17523 F:      include/net/switchdev.h
17524 F:      net/switchdev/
17525
17526 SY8106A REGULATOR DRIVER
17527 M:      Icenowy Zheng <icenowy@aosc.io>
17528 S:      Maintained
17529 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
17530 F:      drivers/regulator/sy8106a-regulator.c
17531
17532 SYNC FILE FRAMEWORK
17533 M:      Sumit Semwal <sumit.semwal@linaro.org>
17534 R:      Gustavo Padovan <gustavo@padovan.org>
17535 L:      linux-media@vger.kernel.org
17536 L:      dri-devel@lists.freedesktop.org
17537 S:      Maintained
17538 T:      git git://anongit.freedesktop.org/drm/drm-misc
17539 F:      Documentation/driver-api/sync_file.rst
17540 F:      drivers/dma-buf/dma-fence*
17541 F:      drivers/dma-buf/sw_sync.c
17542 F:      drivers/dma-buf/sync_*
17543 F:      include/linux/sync_file.h
17544 F:      include/uapi/linux/sync_file.h
17545
17546 SYNOPSYS ARC ARCHITECTURE
17547 M:      Vineet Gupta <vgupta@synopsys.com>
17548 L:      linux-snps-arc@lists.infradead.org
17549 S:      Supported
17550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
17551 F:      Documentation/devicetree/bindings/arc/*
17552 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
17553 F:      arch/arc/
17554 F:      drivers/clocksource/arc_timer.c
17555 F:      drivers/tty/serial/arc_uart.c
17556
17557 SYNOPSYS ARC HSDK SDP pll clock driver
17558 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17559 S:      Supported
17560 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
17561 F:      drivers/clk/clk-hsdk-pll.c
17562
17563 SYNOPSYS ARC SDP clock driver
17564 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17565 S:      Supported
17566 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
17567 F:      drivers/clk/axs10x/*
17568
17569 SYNOPSYS ARC SDP platform support
17570 M:      Alexey Brodkin <abrodkin@synopsys.com>
17571 S:      Supported
17572 F:      Documentation/devicetree/bindings/arc/axs10*
17573 F:      arch/arc/boot/dts/ax*
17574 F:      arch/arc/plat-axs10x
17575
17576 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
17577 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17578 S:      Supported
17579 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
17580 F:      drivers/reset/reset-axs10x.c
17581
17582 SYNOPSYS CREG GPIO DRIVER
17583 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17584 S:      Maintained
17585 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
17586 F:      drivers/gpio/gpio-creg-snps.c
17587
17588 SYNOPSYS DESIGNWARE 8250 UART DRIVER
17589 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17590 S:      Maintained
17591 F:      drivers/tty/serial/8250/8250_dw.c
17592 F:      drivers/tty/serial/8250/8250_dwlib.*
17593 F:      drivers/tty/serial/8250/8250_lpss.c
17594
17595 SYNOPSYS DESIGNWARE APB GPIO DRIVER
17596 M:      Hoan Tran <hoan@os.amperecomputing.com>
17597 M:      Serge Semin <fancer.lancer@gmail.com>
17598 L:      linux-gpio@vger.kernel.org
17599 S:      Maintained
17600 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
17601 F:      drivers/gpio/gpio-dwapb.c
17602
17603 SYNOPSYS DESIGNWARE APB SSI DRIVER
17604 M:      Serge Semin <fancer.lancer@gmail.com>
17605 L:      linux-spi@vger.kernel.org
17606 S:      Supported
17607 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
17608 F:      drivers/spi/spi-dw*
17609
17610 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
17611 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17612 S:      Maintained
17613 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
17614 F:      drivers/dma/dw-axi-dmac/
17615
17616 SYNOPSYS DESIGNWARE DMAC DRIVER
17617 M:      Viresh Kumar <vireshk@kernel.org>
17618 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17619 S:      Maintained
17620 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
17621 F:      drivers/dma/dw/
17622 F:      include/dt-bindings/dma/dw-dmac.h
17623 F:      include/linux/dma/dw.h
17624 F:      include/linux/platform_data/dma-dw.h
17625
17626 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
17627 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17628 L:      netdev@vger.kernel.org
17629 S:      Supported
17630 F:      drivers/net/ethernet/synopsys/
17631
17632 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
17633 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17634 L:      netdev@vger.kernel.org
17635 S:      Supported
17636 F:      drivers/net/pcs/pcs-xpcs.c
17637 F:      include/linux/pcs/pcs-xpcs.h
17638
17639 SYNOPSYS DESIGNWARE I2C DRIVER
17640 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
17641 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17642 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
17643 L:      linux-i2c@vger.kernel.org
17644 S:      Maintained
17645 F:      drivers/i2c/busses/i2c-designware-*
17646 F:      include/linux/platform_data/i2c-designware.h
17647
17648 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
17649 M:      Jaehoon Chung <jh80.chung@samsung.com>
17650 L:      linux-mmc@vger.kernel.org
17651 S:      Maintained
17652 F:      drivers/mmc/host/dw_mmc*
17653
17654 SYNOPSYS HSDK RESET CONTROLLER DRIVER
17655 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17656 S:      Supported
17657 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
17658 F:      drivers/reset/reset-hsdk.c
17659 F:      include/dt-bindings/reset/snps,hsdk-reset.h
17660
17661 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
17662 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
17663 M:      Manjunath M B <manjumb@synopsys.com>
17664 L:      linux-mmc@vger.kernel.org
17665 S:      Maintained
17666 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
17667
17668 SYSTEM CONFIGURATION (SYSCON)
17669 M:      Lee Jones <lee.jones@linaro.org>
17670 M:      Arnd Bergmann <arnd@arndb.de>
17671 S:      Supported
17672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
17673 F:      drivers/mfd/syscon.c
17674
17675 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
17676 M:      Sudeep Holla <sudeep.holla@arm.com>
17677 R:      Cristian Marussi <cristian.marussi@arm.com>
17678 L:      linux-arm-kernel@lists.infradead.org
17679 S:      Maintained
17680 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
17681 F:      drivers/clk/clk-sc[mp]i.c
17682 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
17683 F:      drivers/firmware/arm_scmi/
17684 F:      drivers/firmware/arm_scpi.c
17685 F:      drivers/regulator/scmi-regulator.c
17686 F:      drivers/reset/reset-scmi.c
17687 F:      include/linux/sc[mp]i_protocol.h
17688 F:      include/trace/events/scmi.h
17689
17690 SYSTEM RESET/SHUTDOWN DRIVERS
17691 M:      Sebastian Reichel <sre@kernel.org>
17692 L:      linux-pm@vger.kernel.org
17693 S:      Maintained
17694 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
17695 F:      Documentation/devicetree/bindings/power/reset/
17696 F:      drivers/power/reset/
17697
17698 SYSTEM TRACE MODULE CLASS
17699 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
17700 S:      Maintained
17701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
17702 F:      Documentation/trace/stm.rst
17703 F:      drivers/hwtracing/stm/
17704 F:      include/linux/stm.h
17705 F:      include/uapi/linux/stm.h
17706
17707 SYSTEM76 ACPI DRIVER
17708 M:      Jeremy Soller <jeremy@system76.com>
17709 M:      System76 Product Development <productdev@system76.com>
17710 L:      platform-driver-x86@vger.kernel.org
17711 S:      Maintained
17712 F:      drivers/platform/x86/system76_acpi.c
17713
17714 SYSV FILESYSTEM
17715 M:      Christoph Hellwig <hch@infradead.org>
17716 S:      Maintained
17717 F:      Documentation/filesystems/sysv-fs.rst
17718 F:      fs/sysv/
17719 F:      include/linux/sysv_fs.h
17720
17721 TASKSTATS STATISTICS INTERFACE
17722 M:      Balbir Singh <bsingharora@gmail.com>
17723 S:      Maintained
17724 F:      Documentation/accounting/taskstats*
17725 F:      include/linux/taskstats*
17726 F:      kernel/taskstats.c
17727
17728 TC subsystem
17729 M:      Jamal Hadi Salim <jhs@mojatatu.com>
17730 M:      Cong Wang <xiyou.wangcong@gmail.com>
17731 M:      Jiri Pirko <jiri@resnulli.us>
17732 L:      netdev@vger.kernel.org
17733 S:      Maintained
17734 F:      include/net/pkt_cls.h
17735 F:      include/net/pkt_sched.h
17736 F:      include/net/tc_act/
17737 F:      include/uapi/linux/pkt_cls.h
17738 F:      include/uapi/linux/pkt_sched.h
17739 F:      include/uapi/linux/tc_act/
17740 F:      include/uapi/linux/tc_ematch/
17741 F:      net/sched/
17742
17743 TC90522 MEDIA DRIVER
17744 M:      Akihiro Tsukada <tskd08@gmail.com>
17745 L:      linux-media@vger.kernel.org
17746 S:      Odd Fixes
17747 F:      drivers/media/dvb-frontends/tc90522*
17748
17749 TCP LOW PRIORITY MODULE
17750 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
17751 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
17752 S:      Maintained
17753 W:      http://tcp-lp-mod.sourceforge.net/
17754 F:      net/ipv4/tcp_lp.c
17755
17756 TDA10071 MEDIA DRIVER
17757 M:      Antti Palosaari <crope@iki.fi>
17758 L:      linux-media@vger.kernel.org
17759 S:      Maintained
17760 W:      https://linuxtv.org
17761 W:      http://palosaari.fi/linux/
17762 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17763 T:      git git://linuxtv.org/anttip/media_tree.git
17764 F:      drivers/media/dvb-frontends/tda10071*
17765
17766 TDA18212 MEDIA DRIVER
17767 M:      Antti Palosaari <crope@iki.fi>
17768 L:      linux-media@vger.kernel.org
17769 S:      Maintained
17770 W:      https://linuxtv.org
17771 W:      http://palosaari.fi/linux/
17772 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17773 T:      git git://linuxtv.org/anttip/media_tree.git
17774 F:      drivers/media/tuners/tda18212*
17775
17776 TDA18218 MEDIA DRIVER
17777 M:      Antti Palosaari <crope@iki.fi>
17778 L:      linux-media@vger.kernel.org
17779 S:      Maintained
17780 W:      https://linuxtv.org
17781 W:      http://palosaari.fi/linux/
17782 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17783 T:      git git://linuxtv.org/anttip/media_tree.git
17784 F:      drivers/media/tuners/tda18218*
17785
17786 TDA18250 MEDIA DRIVER
17787 M:      Olli Salonen <olli.salonen@iki.fi>
17788 L:      linux-media@vger.kernel.org
17789 S:      Maintained
17790 W:      https://linuxtv.org
17791 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17792 T:      git git://linuxtv.org/media_tree.git
17793 F:      drivers/media/tuners/tda18250*
17794
17795 TDA18271 MEDIA DRIVER
17796 M:      Michael Krufky <mkrufky@linuxtv.org>
17797 L:      linux-media@vger.kernel.org
17798 S:      Maintained
17799 W:      https://linuxtv.org
17800 W:      http://github.com/mkrufky
17801 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17802 T:      git git://linuxtv.org/mkrufky/tuners.git
17803 F:      drivers/media/tuners/tda18271*
17804
17805 TDA1997x MEDIA DRIVER
17806 M:      Tim Harvey <tharvey@gateworks.com>
17807 L:      linux-media@vger.kernel.org
17808 S:      Maintained
17809 W:      https://linuxtv.org
17810 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17811 F:      drivers/media/i2c/tda1997x.*
17812
17813 TDA827x MEDIA DRIVER
17814 M:      Michael Krufky <mkrufky@linuxtv.org>
17815 L:      linux-media@vger.kernel.org
17816 S:      Maintained
17817 W:      https://linuxtv.org
17818 W:      http://github.com/mkrufky
17819 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17820 T:      git git://linuxtv.org/mkrufky/tuners.git
17821 F:      drivers/media/tuners/tda8290.*
17822
17823 TDA8290 MEDIA DRIVER
17824 M:      Michael Krufky <mkrufky@linuxtv.org>
17825 L:      linux-media@vger.kernel.org
17826 S:      Maintained
17827 W:      https://linuxtv.org
17828 W:      http://github.com/mkrufky
17829 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17830 T:      git git://linuxtv.org/mkrufky/tuners.git
17831 F:      drivers/media/tuners/tda8290.*
17832
17833 TDA9840 MEDIA DRIVER
17834 M:      Hans Verkuil <hverkuil@xs4all.nl>
17835 L:      linux-media@vger.kernel.org
17836 S:      Maintained
17837 W:      https://linuxtv.org
17838 T:      git git://linuxtv.org/media_tree.git
17839 F:      drivers/media/i2c/tda9840*
17840
17841 TEA5761 TUNER DRIVER
17842 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17843 L:      linux-media@vger.kernel.org
17844 S:      Odd fixes
17845 W:      https://linuxtv.org
17846 T:      git git://linuxtv.org/media_tree.git
17847 F:      drivers/media/tuners/tea5761.*
17848
17849 TEA5767 TUNER DRIVER
17850 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17851 L:      linux-media@vger.kernel.org
17852 S:      Maintained
17853 W:      https://linuxtv.org
17854 T:      git git://linuxtv.org/media_tree.git
17855 F:      drivers/media/tuners/tea5767.*
17856
17857 TEA6415C MEDIA DRIVER
17858 M:      Hans Verkuil <hverkuil@xs4all.nl>
17859 L:      linux-media@vger.kernel.org
17860 S:      Maintained
17861 W:      https://linuxtv.org
17862 T:      git git://linuxtv.org/media_tree.git
17863 F:      drivers/media/i2c/tea6415c*
17864
17865 TEA6420 MEDIA DRIVER
17866 M:      Hans Verkuil <hverkuil@xs4all.nl>
17867 L:      linux-media@vger.kernel.org
17868 S:      Maintained
17869 W:      https://linuxtv.org
17870 T:      git git://linuxtv.org/media_tree.git
17871 F:      drivers/media/i2c/tea6420*
17872
17873 TEAM DRIVER
17874 M:      Jiri Pirko <jiri@resnulli.us>
17875 L:      netdev@vger.kernel.org
17876 S:      Supported
17877 F:      drivers/net/team/
17878 F:      include/linux/if_team.h
17879 F:      include/uapi/linux/if_team.h
17880
17881 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
17882 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
17883 S:      Maintained
17884 F:      arch/x86/platform/ts5500/
17885
17886 TECHNOTREND USB IR RECEIVER
17887 M:      Sean Young <sean@mess.org>
17888 L:      linux-media@vger.kernel.org
17889 S:      Maintained
17890 F:      drivers/media/rc/ttusbir.c
17891
17892 TECHWELL TW9910 VIDEO DECODER
17893 L:      linux-media@vger.kernel.org
17894 S:      Orphan
17895 F:      drivers/media/i2c/tw9910.c
17896 F:      include/media/i2c/tw9910.h
17897
17898 TEE SUBSYSTEM
17899 M:      Jens Wiklander <jens.wiklander@linaro.org>
17900 L:      op-tee@lists.trustedfirmware.org
17901 S:      Maintained
17902 F:      Documentation/staging/tee.rst
17903 F:      drivers/tee/
17904 F:      include/linux/tee_drv.h
17905 F:      include/uapi/linux/tee.h
17906
17907 TEGRA ARCHITECTURE SUPPORT
17908 M:      Thierry Reding <thierry.reding@gmail.com>
17909 M:      Jonathan Hunter <jonathanh@nvidia.com>
17910 L:      linux-tegra@vger.kernel.org
17911 S:      Supported
17912 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
17913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
17914 N:      [^a-z]tegra
17915
17916 TEGRA CLOCK DRIVER
17917 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
17918 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
17919 S:      Supported
17920 F:      drivers/clk/tegra/
17921
17922 TEGRA DMA DRIVERS
17923 M:      Laxman Dewangan <ldewangan@nvidia.com>
17924 M:      Jon Hunter <jonathanh@nvidia.com>
17925 S:      Supported
17926 F:      drivers/dma/tegra*
17927
17928 TEGRA I2C DRIVER
17929 M:      Laxman Dewangan <ldewangan@nvidia.com>
17930 R:      Dmitry Osipenko <digetx@gmail.com>
17931 S:      Supported
17932 F:      drivers/i2c/busses/i2c-tegra.c
17933
17934 TEGRA IOMMU DRIVERS
17935 M:      Thierry Reding <thierry.reding@gmail.com>
17936 R:      Krishna Reddy <vdumpa@nvidia.com>
17937 L:      linux-tegra@vger.kernel.org
17938 S:      Supported
17939 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
17940 F:      drivers/iommu/tegra*
17941
17942 TEGRA KBC DRIVER
17943 M:      Laxman Dewangan <ldewangan@nvidia.com>
17944 S:      Supported
17945 F:      drivers/input/keyboard/tegra-kbc.c
17946
17947 TEGRA NAND DRIVER
17948 M:      Stefan Agner <stefan@agner.ch>
17949 M:      Lucas Stach <dev@lynxeye.de>
17950 S:      Maintained
17951 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
17952 F:      drivers/mtd/nand/raw/tegra_nand.c
17953
17954 TEGRA PWM DRIVER
17955 M:      Thierry Reding <thierry.reding@gmail.com>
17956 S:      Supported
17957 F:      drivers/pwm/pwm-tegra.c
17958
17959 TEGRA SERIAL DRIVER
17960 M:      Laxman Dewangan <ldewangan@nvidia.com>
17961 S:      Supported
17962 F:      drivers/tty/serial/serial-tegra.c
17963
17964 TEGRA SPI DRIVER
17965 M:      Laxman Dewangan <ldewangan@nvidia.com>
17966 S:      Supported
17967 F:      drivers/spi/spi-tegra*
17968
17969 TEGRA QUAD SPI DRIVER
17970 M:      Thierry Reding <thierry.reding@gmail.com>
17971 M:      Jonathan Hunter <jonathanh@nvidia.com>
17972 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
17973 L:      linux-tegra@vger.kernel.org
17974 S:      Maintained
17975 F:      drivers/spi/spi-tegra210-quad.c
17976
17977 TEGRA VIDEO DRIVER
17978 M:      Thierry Reding <thierry.reding@gmail.com>
17979 M:      Jonathan Hunter <jonathanh@nvidia.com>
17980 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
17981 L:      linux-media@vger.kernel.org
17982 L:      linux-tegra@vger.kernel.org
17983 S:      Maintained
17984 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
17985 F:      drivers/staging/media/tegra-video/
17986
17987 TEGRA XUSB PADCTL DRIVER
17988 M:      JC Kuo <jckuo@nvidia.com>
17989 S:      Supported
17990 F:      drivers/phy/tegra/xusb*
17991
17992 TEHUTI ETHERNET DRIVER
17993 M:      Andy Gospodarek <andy@greyhouse.net>
17994 L:      netdev@vger.kernel.org
17995 S:      Supported
17996 F:      drivers/net/ethernet/tehuti/*
17997
17998 TELECOM CLOCK DRIVER FOR MCPL0010
17999 M:      Mark Gross <mark.gross@intel.com>
18000 S:      Supported
18001 F:      drivers/char/tlclk.c
18002
18003 TEMPO SEMICONDUCTOR DRIVERS
18004 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
18005 S:      Maintained
18006 F:      Documentation/devicetree/bindings/sound/tscs*.txt
18007 F:      sound/soc/codecs/tscs*.c
18008 F:      sound/soc/codecs/tscs*.h
18009
18010 TENSILICA XTENSA PORT (xtensa)
18011 M:      Chris Zankel <chris@zankel.net>
18012 M:      Max Filippov <jcmvbkbc@gmail.com>
18013 L:      linux-xtensa@linux-xtensa.org
18014 S:      Maintained
18015 T:      git git://github.com/czankel/xtensa-linux.git
18016 F:      arch/xtensa/
18017 F:      drivers/irqchip/irq-xtensa-*
18018
18019 TEXAS INSTRUMENTS ASoC DRIVERS
18020 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18021 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18022 S:      Maintained
18023 F:      sound/soc/ti/
18024
18025 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
18026 M:      Ricardo Ribalda <ribalda@kernel.org>
18027 L:      linux-iio@vger.kernel.org
18028 S:      Supported
18029 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
18030 F:      drivers/iio/dac/ti-dac7612.c
18031
18032 TEXAS INSTRUMENTS DMA DRIVERS
18033 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18034 L:      dmaengine@vger.kernel.org
18035 S:      Maintained
18036 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
18037 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
18038 F:      Documentation/devicetree/bindings/dma/ti/
18039 F:      drivers/dma/ti/
18040 X:      drivers/dma/ti/cppi41.c
18041 F:      include/linux/dma/k3-udma-glue.h
18042 F:      include/linux/dma/ti-cppi5.h
18043 F:      include/linux/dma/k3-psil.h
18044
18045 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
18046 M:      Nishanth Menon <nm@ti.com>
18047 M:      Tero Kristo <kristo@kernel.org>
18048 M:      Santosh Shilimkar <ssantosh@kernel.org>
18049 L:      linux-arm-kernel@lists.infradead.org
18050 S:      Maintained
18051 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
18052 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
18053 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
18054 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
18055 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
18056 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
18057 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
18058 F:      drivers/clk/keystone/sci-clk.c
18059 F:      drivers/firmware/ti_sci*
18060 F:      drivers/irqchip/irq-ti-sci-inta.c
18061 F:      drivers/irqchip/irq-ti-sci-intr.c
18062 F:      drivers/reset/reset-ti-sci.c
18063 F:      drivers/soc/ti/ti_sci_inta_msi.c
18064 F:      drivers/soc/ti/ti_sci_pm_domains.c
18065 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
18066 F:      include/linux/soc/ti/ti_sci_inta_msi.h
18067 F:      include/linux/soc/ti/ti_sci_protocol.h
18068
18069 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
18070 M:      Robert Marko <robert.marko@sartura.hr>
18071 M:      Luka Perkov <luka.perkov@sartura.hr>
18072 L:      linux-hwmon@vger.kernel.org
18073 S:      Maintained
18074 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
18075 F:      Documentation/hwmon/tps23861.rst
18076 F:      drivers/hwmon/tps23861.c
18077
18078 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
18079 M:      Hans Verkuil <hverkuil@xs4all.nl>
18080 L:      linux-media@vger.kernel.org
18081 S:      Maintained
18082 W:      https://linuxtv.org
18083 T:      git git://linuxtv.org/media_tree.git
18084 F:      drivers/media/radio/radio-raremono.c
18085
18086 THERMAL
18087 M:      Zhang Rui <rui.zhang@intel.com>
18088 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18089 R:      Amit Kucheria <amitk@kernel.org>
18090 L:      linux-pm@vger.kernel.org
18091 S:      Supported
18092 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
18094 F:      Documentation/devicetree/bindings/thermal/
18095 F:      drivers/thermal/
18096 F:      include/linux/cpu_cooling.h
18097 F:      include/linux/thermal.h
18098 F:      include/uapi/linux/thermal.h
18099
18100 THERMAL DRIVER FOR AMLOGIC SOCS
18101 M:      Guillaume La Roque <glaroque@baylibre.com>
18102 L:      linux-pm@vger.kernel.org
18103 L:      linux-amlogic@lists.infradead.org
18104 S:      Supported
18105 W:      http://linux-meson.com/
18106 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
18107 F:      drivers/thermal/amlogic_thermal.c
18108
18109 THERMAL/CPU_COOLING
18110 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
18111 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18112 M:      Viresh Kumar <viresh.kumar@linaro.org>
18113 R:      Lukasz Luba <lukasz.luba@arm.com>
18114 L:      linux-pm@vger.kernel.org
18115 S:      Supported
18116 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
18117 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
18118 F:      drivers/thermal/cpufreq_cooling.c
18119 F:      drivers/thermal/cpuidle_cooling.c
18120 F:      include/linux/cpu_cooling.h
18121
18122 THERMAL/POWER_ALLOCATOR
18123 M:      Lukasz Luba <lukasz.luba@arm.com>
18124 L:      linux-pm@vger.kernel.org
18125 S:      Maintained
18126 F:      Documentation/driver-api/thermal/power_allocator.rst
18127 F:      drivers/thermal/gov_power_allocator.c
18128 F:      include/trace/events/thermal_power_allocator.h
18129
18130 THINKPAD ACPI EXTRAS DRIVER
18131 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
18132 L:      ibm-acpi-devel@lists.sourceforge.net
18133 L:      platform-driver-x86@vger.kernel.org
18134 S:      Maintained
18135 W:      http://ibm-acpi.sourceforge.net
18136 W:      http://thinkwiki.org/wiki/Ibm-acpi
18137 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
18138 F:      drivers/platform/x86/thinkpad_acpi.c
18139
18140 THUNDERBOLT DMA TRAFFIC TEST DRIVER
18141 M:      Isaac Hazan <isaac.hazan@intel.com>
18142 L:      linux-usb@vger.kernel.org
18143 S:      Maintained
18144 F:      drivers/thunderbolt/dma_test.c
18145
18146 THUNDERBOLT DRIVER
18147 M:      Andreas Noever <andreas.noever@gmail.com>
18148 M:      Michael Jamet <michael.jamet@intel.com>
18149 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18150 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18151 L:      linux-usb@vger.kernel.org
18152 S:      Maintained
18153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
18154 F:      Documentation/admin-guide/thunderbolt.rst
18155 F:      drivers/thunderbolt/
18156 F:      include/linux/thunderbolt.h
18157
18158 THUNDERBOLT NETWORK DRIVER
18159 M:      Michael Jamet <michael.jamet@intel.com>
18160 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18161 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18162 L:      netdev@vger.kernel.org
18163 S:      Maintained
18164 F:      drivers/net/thunderbolt.c
18165
18166 THUNDERX GPIO DRIVER
18167 M:      Robert Richter <rric@kernel.org>
18168 S:      Odd Fixes
18169 F:      drivers/gpio/gpio-thunderx.c
18170
18171 TI ADS131E0X ADC SERIES DRIVER
18172 M:      Tomislav Denis <tomislav.denis@avl.com>
18173 L:      linux-iio@vger.kernel.org
18174 S:      Maintained
18175 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
18176 F:      drivers/iio/adc/ti-ads131e08.c
18177
18178 TI AM437X VPFE DRIVER
18179 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18180 L:      linux-media@vger.kernel.org
18181 S:      Maintained
18182 W:      https://linuxtv.org
18183 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18184 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18185 F:      drivers/media/platform/am437x/
18186
18187 TI BANDGAP AND THERMAL DRIVER
18188 M:      Eduardo Valentin <edubezval@gmail.com>
18189 M:      Keerthy <j-keerthy@ti.com>
18190 L:      linux-pm@vger.kernel.org
18191 L:      linux-omap@vger.kernel.org
18192 S:      Maintained
18193 F:      drivers/thermal/ti-soc-thermal/
18194
18195 TI BQ27XXX POWER SUPPLY DRIVER
18196 F:      drivers/power/supply/bq27xxx_battery.c
18197 F:      drivers/power/supply/bq27xxx_battery_i2c.c
18198 F:      include/linux/power/bq27xxx_battery.h
18199
18200 TI CDCE706 CLOCK DRIVER
18201 M:      Max Filippov <jcmvbkbc@gmail.com>
18202 S:      Maintained
18203 F:      drivers/clk/clk-cdce706.c
18204
18205 TI CLOCK DRIVER
18206 M:      Tero Kristo <kristo@kernel.org>
18207 L:      linux-omap@vger.kernel.org
18208 S:      Odd Fixes
18209 F:      drivers/clk/ti/
18210 F:      include/linux/clk/ti.h
18211
18212 TI DAVINCI MACHINE SUPPORT
18213 M:      Sekhar Nori <nsekhar@ti.com>
18214 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
18215 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18216 S:      Supported
18217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
18218 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
18219 F:      arch/arm/boot/dts/da850*
18220 F:      arch/arm/mach-davinci/
18221 F:      drivers/i2c/busses/i2c-davinci.c
18222
18223 TI DAVINCI SERIES CLOCK DRIVER
18224 M:      David Lechner <david@lechnology.com>
18225 R:      Sekhar Nori <nsekhar@ti.com>
18226 S:      Maintained
18227 F:      Documentation/devicetree/bindings/clock/ti/davinci/
18228 F:      drivers/clk/davinci/
18229
18230 TI DAVINCI SERIES GPIO DRIVER
18231 M:      Keerthy <j-keerthy@ti.com>
18232 L:      linux-gpio@vger.kernel.org
18233 S:      Maintained
18234 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
18235 F:      drivers/gpio/gpio-davinci.c
18236
18237 TI DAVINCI SERIES MEDIA DRIVER
18238 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18239 L:      linux-media@vger.kernel.org
18240 S:      Maintained
18241 W:      https://linuxtv.org
18242 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18243 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18244 F:      drivers/media/platform/davinci/
18245 F:      include/media/davinci/
18246
18247 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
18248 R:      David Lechner <david@lechnology.com>
18249 L:      linux-iio@vger.kernel.org
18250 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
18251 F:      drivers/counter/ti-eqep.c
18252
18253 TI ETHERNET SWITCH DRIVER (CPSW)
18254 R:      Grygorii Strashko <grygorii.strashko@ti.com>
18255 L:      linux-omap@vger.kernel.org
18256 L:      netdev@vger.kernel.org
18257 S:      Maintained
18258 F:      drivers/net/ethernet/ti/cpsw*
18259 F:      drivers/net/ethernet/ti/davinci*
18260
18261 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
18262 M:      Alex Dubov <oakad@yahoo.com>
18263 S:      Maintained
18264 W:      http://tifmxx.berlios.de/
18265 F:      drivers/memstick/host/tifm_ms.c
18266 F:      drivers/misc/tifm*
18267 F:      drivers/mmc/host/tifm_sd.c
18268 F:      include/linux/tifm.h
18269
18270 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
18271 M:      Santosh Shilimkar <ssantosh@kernel.org>
18272 L:      linux-kernel@vger.kernel.org
18273 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18274 S:      Maintained
18275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
18276 F:      drivers/soc/ti/*
18277
18278 TI LM49xxx FAMILY ASoC CODEC DRIVERS
18279 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
18280 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
18281 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18282 S:      Maintained
18283 F:      sound/soc/codecs/isabelle*
18284 F:      sound/soc/codecs/lm49453*
18285
18286 TI NETCP ETHERNET DRIVER
18287 M:      Wingman Kwok <w-kwok2@ti.com>
18288 M:      Murali Karicheri <m-karicheri2@ti.com>
18289 L:      netdev@vger.kernel.org
18290 S:      Maintained
18291 F:      drivers/net/ethernet/ti/netcp*
18292
18293 TI PCM3060 ASoC CODEC DRIVER
18294 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
18295 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18296 S:      Maintained
18297 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
18298 F:      sound/soc/codecs/pcm3060*
18299
18300 TI TAS571X FAMILY ASoC CODEC DRIVER
18301 M:      Kevin Cernekee <cernekee@chromium.org>
18302 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18303 S:      Odd Fixes
18304 F:      sound/soc/codecs/tas571x*
18305
18306 TI TRF7970A NFC DRIVER
18307 M:      Mark Greer <mgreer@animalcreek.com>
18308 L:      linux-wireless@vger.kernel.org
18309 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
18310 S:      Supported
18311 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
18312 F:      drivers/nfc/trf7970a.c
18313
18314 TI TWL4030 SERIES SOC CODEC DRIVER
18315 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18316 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18317 S:      Maintained
18318 F:      sound/soc/codecs/twl4030*
18319
18320 TI VPE/CAL DRIVERS
18321 M:      Benoit Parrot <bparrot@ti.com>
18322 L:      linux-media@vger.kernel.org
18323 S:      Maintained
18324 W:      http://linuxtv.org/
18325 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18326 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
18327 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
18328 F:      drivers/media/platform/ti-vpe/
18329
18330 TI WILINK WIRELESS DRIVERS
18331 L:      linux-wireless@vger.kernel.org
18332 S:      Orphan
18333 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
18334 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
18335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
18336 F:      drivers/net/wireless/ti/
18337 F:      include/linux/wl12xx.h
18338
18339 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
18340 M:      John Stultz <john.stultz@linaro.org>
18341 M:      Thomas Gleixner <tglx@linutronix.de>
18342 R:      Stephen Boyd <sboyd@kernel.org>
18343 L:      linux-kernel@vger.kernel.org
18344 S:      Supported
18345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
18346 F:      include/linux/clocksource.h
18347 F:      include/linux/time.h
18348 F:      include/linux/timex.h
18349 F:      include/uapi/linux/time.h
18350 F:      include/uapi/linux/timex.h
18351 F:      kernel/time/alarmtimer.c
18352 F:      kernel/time/clocksource.c
18353 F:      kernel/time/ntp.c
18354 F:      kernel/time/time*.c
18355 F:      tools/testing/selftests/timers/
18356
18357 TIPC NETWORK LAYER
18358 M:      Jon Maloy <jmaloy@redhat.com>
18359 M:      Ying Xue <ying.xue@windriver.com>
18360 L:      netdev@vger.kernel.org (core kernel code)
18361 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
18362 S:      Maintained
18363 W:      http://tipc.sourceforge.net/
18364 F:      include/uapi/linux/tipc*.h
18365 F:      net/tipc/
18366
18367 TLAN NETWORK DRIVER
18368 M:      Samuel Chessman <chessman@tux.org>
18369 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
18370 S:      Maintained
18371 W:      http://sourceforge.net/projects/tlan/
18372 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
18373 F:      drivers/net/ethernet/ti/tlan.*
18374
18375 TM6000 VIDEO4LINUX DRIVER
18376 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18377 L:      linux-media@vger.kernel.org
18378 S:      Odd fixes
18379 W:      https://linuxtv.org
18380 T:      git git://linuxtv.org/media_tree.git
18381 F:      Documentation/admin-guide/media/tm6000*
18382 F:      drivers/media/usb/tm6000/
18383
18384 TMIO/SDHI MMC DRIVER
18385 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
18386 L:      linux-mmc@vger.kernel.org
18387 S:      Supported
18388 F:      drivers/mmc/host/renesas_sdhi*
18389 F:      drivers/mmc/host/tmio_mmc*
18390 F:      include/linux/mfd/tmio.h
18391
18392 TMP401 HARDWARE MONITOR DRIVER
18393 M:      Guenter Roeck <linux@roeck-us.net>
18394 L:      linux-hwmon@vger.kernel.org
18395 S:      Maintained
18396 F:      Documentation/hwmon/tmp401.rst
18397 F:      drivers/hwmon/tmp401.c
18398
18399 TMP513 HARDWARE MONITOR DRIVER
18400 M:      Eric Tremblay <etremblay@distech-controls.com>
18401 L:      linux-hwmon@vger.kernel.org
18402 S:      Maintained
18403 F:      Documentation/hwmon/tmp513.rst
18404 F:      drivers/hwmon/tmp513.c
18405
18406 TMPFS (SHMEM FILESYSTEM)
18407 M:      Hugh Dickins <hughd@google.com>
18408 L:      linux-mm@kvack.org
18409 S:      Maintained
18410 F:      include/linux/shmem_fs.h
18411 F:      mm/shmem.c
18412
18413 TOMOYO SECURITY MODULE
18414 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
18415 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
18416 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
18417 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
18418 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
18419 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
18420 S:      Maintained
18421 W:      https://tomoyo.osdn.jp/
18422 F:      security/tomoyo/
18423
18424 TOPSTAR LAPTOP EXTRAS DRIVER
18425 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
18426 L:      platform-driver-x86@vger.kernel.org
18427 S:      Maintained
18428 F:      drivers/platform/x86/topstar-laptop.c
18429
18430 TORTURE-TEST MODULES
18431 M:      Davidlohr Bueso <dave@stgolabs.net>
18432 M:      "Paul E. McKenney" <paulmck@kernel.org>
18433 M:      Josh Triplett <josh@joshtriplett.org>
18434 L:      linux-kernel@vger.kernel.org
18435 S:      Supported
18436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18437 F:      Documentation/RCU/torture.rst
18438 F:      kernel/locking/locktorture.c
18439 F:      kernel/rcu/rcuscale.c
18440 F:      kernel/rcu/rcutorture.c
18441 F:      kernel/rcu/refscale.c
18442 F:      kernel/torture.c
18443
18444 TOSHIBA ACPI EXTRAS DRIVER
18445 M:      Azael Avalos <coproscefalo@gmail.com>
18446 L:      platform-driver-x86@vger.kernel.org
18447 S:      Maintained
18448 F:      drivers/platform/x86/toshiba_acpi.c
18449
18450 TOSHIBA BLUETOOTH DRIVER
18451 M:      Azael Avalos <coproscefalo@gmail.com>
18452 L:      platform-driver-x86@vger.kernel.org
18453 S:      Maintained
18454 F:      drivers/platform/x86/toshiba_bluetooth.c
18455
18456 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
18457 M:      Azael Avalos <coproscefalo@gmail.com>
18458 L:      platform-driver-x86@vger.kernel.org
18459 S:      Maintained
18460 F:      drivers/platform/x86/toshiba_haps.c
18461
18462 TOSHIBA SMM DRIVER
18463 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
18464 S:      Maintained
18465 W:      http://www.buzzard.org.uk/toshiba/
18466 F:      drivers/char/toshiba.c
18467 F:      include/linux/toshiba.h
18468 F:      include/uapi/linux/toshiba.h
18469
18470 TOSHIBA TC358743 DRIVER
18471 M:      Mats Randgaard <matrandg@cisco.com>
18472 L:      linux-media@vger.kernel.org
18473 S:      Maintained
18474 F:      drivers/media/i2c/tc358743*
18475 F:      include/media/i2c/tc358743.h
18476
18477 TOSHIBA WMI HOTKEYS DRIVER
18478 M:      Azael Avalos <coproscefalo@gmail.com>
18479 L:      platform-driver-x86@vger.kernel.org
18480 S:      Maintained
18481 F:      drivers/platform/x86/toshiba-wmi.c
18482
18483 TPM DEVICE DRIVER
18484 M:      Peter Huewe <peterhuewe@gmx.de>
18485 M:      Jarkko Sakkinen <jarkko@kernel.org>
18486 R:      Jason Gunthorpe <jgg@ziepe.ca>
18487 L:      linux-integrity@vger.kernel.org
18488 S:      Maintained
18489 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
18490 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
18491 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
18492 F:      drivers/char/tpm/
18493
18494 TRACING
18495 M:      Steven Rostedt <rostedt@goodmis.org>
18496 M:      Ingo Molnar <mingo@redhat.com>
18497 S:      Maintained
18498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
18499 F:      Documentation/trace/ftrace.rst
18500 F:      arch/*/*/*/ftrace.h
18501 F:      arch/*/kernel/ftrace.c
18502 F:      fs/tracefs/
18503 F:      include/*/ftrace.h
18504 F:      include/linux/trace*.h
18505 F:      include/trace/
18506 F:      kernel/trace/
18507 F:      tools/testing/selftests/ftrace/
18508
18509 TRACING MMIO ACCESSES (MMIOTRACE)
18510 M:      Steven Rostedt <rostedt@goodmis.org>
18511 M:      Ingo Molnar <mingo@kernel.org>
18512 R:      Karol Herbst <karolherbst@gmail.com>
18513 R:      Pekka Paalanen <ppaalanen@gmail.com>
18514 L:      linux-kernel@vger.kernel.org
18515 L:      nouveau@lists.freedesktop.org
18516 S:      Maintained
18517 F:      arch/x86/mm/kmmio.c
18518 F:      arch/x86/mm/mmio-mod.c
18519 F:      arch/x86/mm/testmmiotrace.c
18520 F:      include/linux/mmiotrace.h
18521 F:      kernel/trace/trace_mmiotrace.c
18522
18523 TRIVIAL PATCHES
18524 M:      Jiri Kosina <trivial@kernel.org>
18525 S:      Maintained
18526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
18527 K:      ^Subject:.*(?i)trivial
18528
18529 TTY LAYER
18530 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18531 M:      Jiri Slaby <jirislaby@kernel.org>
18532 S:      Supported
18533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
18534 F:      Documentation/driver-api/serial/
18535 F:      drivers/tty/
18536 F:      drivers/tty/serial/serial_core.c
18537 F:      include/linux/serial.h
18538 F:      include/linux/serial_core.h
18539 F:      include/linux/tty.h
18540 F:      include/uapi/linux/serial.h
18541 F:      include/uapi/linux/serial_core.h
18542 F:      include/uapi/linux/tty.h
18543
18544 TUA9001 MEDIA DRIVER
18545 M:      Antti Palosaari <crope@iki.fi>
18546 L:      linux-media@vger.kernel.org
18547 S:      Maintained
18548 W:      https://linuxtv.org
18549 W:      http://palosaari.fi/linux/
18550 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18551 T:      git git://linuxtv.org/anttip/media_tree.git
18552 F:      drivers/media/tuners/tua9001*
18553
18554 TULIP NETWORK DRIVERS
18555 L:      netdev@vger.kernel.org
18556 L:      linux-parisc@vger.kernel.org
18557 S:      Orphan
18558 F:      drivers/net/ethernet/dec/tulip/
18559
18560 TUN/TAP driver
18561 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
18562 S:      Maintained
18563 W:      http://vtun.sourceforge.net/tun
18564 F:      Documentation/networking/tuntap.rst
18565 F:      arch/um/os-Linux/drivers/
18566
18567 TURBOCHANNEL SUBSYSTEM
18568 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
18569 M:      Ralf Baechle <ralf@linux-mips.org>
18570 L:      linux-mips@vger.kernel.org
18571 S:      Maintained
18572 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
18573 F:      drivers/tc/
18574 F:      include/linux/tc.h
18575
18576 TURBOSTAT UTILITY
18577 M:      "Len Brown" <lenb@kernel.org>
18578 L:      linux-pm@vger.kernel.org
18579 S:      Supported
18580 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18581 B:      https://bugzilla.kernel.org
18582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
18583 F:      tools/power/x86/turbostat/
18584
18585 TW5864 VIDEO4LINUX DRIVER
18586 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18587 M:      Anton Sviridenko <anton@corp.bluecherry.net>
18588 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
18589 M:      Andrey Utkin <andrey_utkin@fastmail.com>
18590 L:      linux-media@vger.kernel.org
18591 S:      Supported
18592 F:      drivers/media/pci/tw5864/
18593
18594 TW68 VIDEO4LINUX DRIVER
18595 M:      Hans Verkuil <hverkuil@xs4all.nl>
18596 L:      linux-media@vger.kernel.org
18597 S:      Odd Fixes
18598 W:      https://linuxtv.org
18599 T:      git git://linuxtv.org/media_tree.git
18600 F:      drivers/media/pci/tw68/
18601
18602 TW686X VIDEO4LINUX DRIVER
18603 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18604 L:      linux-media@vger.kernel.org
18605 S:      Maintained
18606 W:      http://linuxtv.org
18607 T:      git git://linuxtv.org/media_tree.git
18608 F:      drivers/media/pci/tw686x/
18609
18610 UACCE ACCELERATOR FRAMEWORK
18611 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
18612 M:      Zhou Wang <wangzhou1@hisilicon.com>
18613 L:      linux-accelerators@lists.ozlabs.org
18614 L:      linux-kernel@vger.kernel.org
18615 S:      Maintained
18616 F:      Documentation/ABI/testing/sysfs-driver-uacce
18617 F:      Documentation/misc-devices/uacce.rst
18618 F:      drivers/misc/uacce/
18619 F:      include/linux/uacce.h
18620 F:      include/uapi/misc/uacce/
18621
18622 UBI FILE SYSTEM (UBIFS)
18623 M:      Richard Weinberger <richard@nod.at>
18624 L:      linux-mtd@lists.infradead.org
18625 S:      Supported
18626 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
18627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18629 F:      Documentation/filesystems/ubifs-authentication.rst
18630 F:      Documentation/filesystems/ubifs.rst
18631 F:      fs/ubifs/
18632
18633 UCLINUX (M68KNOMMU AND COLDFIRE)
18634 M:      Greg Ungerer <gerg@linux-m68k.org>
18635 L:      linux-m68k@lists.linux-m68k.org
18636 L:      uclinux-dev@uclinux.org  (subscribers-only)
18637 S:      Maintained
18638 W:      http://www.linux-m68k.org/
18639 W:      http://www.uclinux.org/
18640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
18641 F:      arch/m68k/*/*_no.*
18642 F:      arch/m68k/68*/
18643 F:      arch/m68k/coldfire/
18644 F:      arch/m68k/include/asm/*_no.*
18645
18646 UDF FILESYSTEM
18647 M:      Jan Kara <jack@suse.com>
18648 S:      Maintained
18649 F:      Documentation/filesystems/udf.rst
18650 F:      fs/udf/
18651
18652 UDRAW TABLET
18653 M:      Bastien Nocera <hadess@hadess.net>
18654 L:      linux-input@vger.kernel.org
18655 S:      Maintained
18656 F:      drivers/hid/hid-udraw-ps3.c
18657
18658 UFS FILESYSTEM
18659 M:      Evgeniy Dushistov <dushistov@mail.ru>
18660 S:      Maintained
18661 F:      Documentation/admin-guide/ufs.rst
18662 F:      fs/ufs/
18663
18664 UHID USERSPACE HID IO DRIVER
18665 M:      David Rheinsberg <david.rheinsberg@gmail.com>
18666 L:      linux-input@vger.kernel.org
18667 S:      Maintained
18668 F:      drivers/hid/uhid.c
18669 F:      include/uapi/linux/uhid.h
18670
18671 ULPI BUS
18672 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18673 L:      linux-usb@vger.kernel.org
18674 S:      Maintained
18675 F:      drivers/usb/common/ulpi.c
18676 F:      include/linux/ulpi/
18677
18678 UNICODE SUBSYSTEM
18679 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
18680 L:      linux-fsdevel@vger.kernel.org
18681 S:      Supported
18682 F:      fs/unicode/
18683
18684 UNIFDEF
18685 M:      Tony Finch <dot@dotat.at>
18686 S:      Maintained
18687 W:      http://dotat.at/prog/unifdef
18688 F:      scripts/unifdef.c
18689
18690 UNIFORM CDROM DRIVER
18691 M:      Jens Axboe <axboe@kernel.dk>
18692 S:      Maintained
18693 W:      http://www.kernel.dk
18694 F:      Documentation/cdrom/
18695 F:      drivers/cdrom/cdrom.c
18696 F:      include/linux/cdrom.h
18697 F:      include/uapi/linux/cdrom.h
18698
18699 UNISYS S-PAR DRIVERS
18700 M:      David Kershner <david.kershner@unisys.com>
18701 L:      sparmaintainer@unisys.com (Unisys internal)
18702 S:      Supported
18703 F:      drivers/staging/unisys/
18704 F:      drivers/visorbus/
18705 F:      include/linux/visorbus.h
18706
18707 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
18708 R:      Alim Akhtar <alim.akhtar@samsung.com>
18709 R:      Avri Altman <avri.altman@wdc.com>
18710 L:      linux-scsi@vger.kernel.org
18711 S:      Supported
18712 F:      Documentation/scsi/ufs.rst
18713 F:      drivers/scsi/ufs/
18714
18715 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
18716 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
18717 L:      linux-scsi@vger.kernel.org
18718 S:      Supported
18719 F:      drivers/scsi/ufs/*dwc*
18720
18721 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
18722 M:      Stanley Chu <stanley.chu@mediatek.com>
18723 L:      linux-scsi@vger.kernel.org
18724 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
18725 S:      Maintained
18726 F:      drivers/scsi/ufs/ufs-mediatek*
18727
18728 UNSORTED BLOCK IMAGES (UBI)
18729 M:      Richard Weinberger <richard@nod.at>
18730 L:      linux-mtd@lists.infradead.org
18731 S:      Supported
18732 W:      http://www.linux-mtd.infradead.org/
18733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18735 F:      drivers/mtd/ubi/
18736 F:      include/linux/mtd/ubi.h
18737 F:      include/uapi/mtd/ubi-user.h
18738
18739 USB "USBNET" DRIVER FRAMEWORK
18740 M:      Oliver Neukum <oneukum@suse.com>
18741 L:      netdev@vger.kernel.org
18742 S:      Maintained
18743 W:      http://www.linux-usb.org/usbnet
18744 F:      drivers/net/usb/usbnet.c
18745 F:      include/linux/usb/usbnet.h
18746
18747 USB ACM DRIVER
18748 M:      Oliver Neukum <oneukum@suse.com>
18749 L:      linux-usb@vger.kernel.org
18750 S:      Maintained
18751 F:      Documentation/usb/acm.rst
18752 F:      drivers/usb/class/cdc-acm.*
18753
18754 USB APPLE MFI FASTCHARGE DRIVER
18755 M:      Bastien Nocera <hadess@hadess.net>
18756 L:      linux-usb@vger.kernel.org
18757 S:      Maintained
18758 F:      drivers/usb/misc/apple-mfi-fastcharge.c
18759
18760 USB AR5523 WIRELESS DRIVER
18761 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
18762 L:      linux-wireless@vger.kernel.org
18763 S:      Maintained
18764 F:      drivers/net/wireless/ath/ar5523/
18765
18766 USB ATTACHED SCSI
18767 M:      Oliver Neukum <oneukum@suse.com>
18768 L:      linux-usb@vger.kernel.org
18769 L:      linux-scsi@vger.kernel.org
18770 S:      Maintained
18771 F:      drivers/usb/storage/uas.c
18772
18773 USB CDC ETHERNET DRIVER
18774 M:      Oliver Neukum <oliver@neukum.org>
18775 L:      linux-usb@vger.kernel.org
18776 S:      Maintained
18777 F:      drivers/net/usb/cdc_*.c
18778 F:      include/uapi/linux/usb/cdc.h
18779
18780 USB CHAOSKEY DRIVER
18781 M:      Keith Packard <keithp@keithp.com>
18782 L:      linux-usb@vger.kernel.org
18783 S:      Maintained
18784 F:      drivers/usb/misc/chaoskey.c
18785
18786 USB CYPRESS C67X00 DRIVER
18787 M:      Peter Korsgaard <jacmet@sunsite.dk>
18788 L:      linux-usb@vger.kernel.org
18789 S:      Maintained
18790 F:      drivers/usb/c67x00/
18791
18792 USB DAVICOM DM9601 DRIVER
18793 M:      Peter Korsgaard <jacmet@sunsite.dk>
18794 L:      netdev@vger.kernel.org
18795 S:      Maintained
18796 W:      http://www.linux-usb.org/usbnet
18797 F:      drivers/net/usb/dm9601.c
18798
18799 USB EHCI DRIVER
18800 M:      Alan Stern <stern@rowland.harvard.edu>
18801 L:      linux-usb@vger.kernel.org
18802 S:      Maintained
18803 F:      Documentation/usb/ehci.rst
18804 F:      drivers/usb/host/ehci*
18805
18806 USB GADGET/PERIPHERAL SUBSYSTEM
18807 M:      Felipe Balbi <balbi@kernel.org>
18808 L:      linux-usb@vger.kernel.org
18809 S:      Maintained
18810 W:      http://www.linux-usb.org/gadget
18811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18812 F:      drivers/usb/gadget/
18813 F:      include/linux/usb/gadget*
18814
18815 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
18816 M:      Jiri Kosina <jikos@kernel.org>
18817 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
18818 L:      linux-usb@vger.kernel.org
18819 S:      Maintained
18820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
18821 F:      Documentation/hid/hiddev.rst
18822 F:      drivers/hid/usbhid/
18823
18824 USB INTEL XHCI ROLE MUX DRIVER
18825 M:      Hans de Goede <hdegoede@redhat.com>
18826 L:      linux-usb@vger.kernel.org
18827 S:      Maintained
18828 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
18829
18830 USB IP DRIVER FOR HISILICON KIRIN
18831 M:      Yu Chen <chenyu56@huawei.com>
18832 M:      Binghui Wang <wangbinghui@hisilicon.com>
18833 L:      linux-usb@vger.kernel.org
18834 S:      Maintained
18835 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
18836 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
18837
18838 USB ISP116X DRIVER
18839 M:      Olav Kongas <ok@artecdesign.ee>
18840 L:      linux-usb@vger.kernel.org
18841 S:      Maintained
18842 F:      drivers/usb/host/isp116x*
18843 F:      include/linux/usb/isp116x.h
18844
18845 USB LAN78XX ETHERNET DRIVER
18846 M:      Woojung Huh <woojung.huh@microchip.com>
18847 M:      UNGLinuxDriver@microchip.com
18848 L:      netdev@vger.kernel.org
18849 S:      Maintained
18850 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
18851 F:      drivers/net/usb/lan78xx.*
18852 F:      include/dt-bindings/net/microchip-lan78xx.h
18853
18854 USB MASS STORAGE DRIVER
18855 M:      Alan Stern <stern@rowland.harvard.edu>
18856 L:      linux-usb@vger.kernel.org
18857 L:      usb-storage@lists.one-eyed-alien.net
18858 S:      Maintained
18859 F:      drivers/usb/storage/
18860
18861 USB MIDI DRIVER
18862 M:      Clemens Ladisch <clemens@ladisch.de>
18863 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18864 S:      Maintained
18865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18866 F:      sound/usb/midi.*
18867
18868 USB NETWORKING DRIVERS
18869 L:      linux-usb@vger.kernel.org
18870 S:      Odd Fixes
18871 F:      drivers/net/usb/
18872
18873 USB OHCI DRIVER
18874 M:      Alan Stern <stern@rowland.harvard.edu>
18875 L:      linux-usb@vger.kernel.org
18876 S:      Maintained
18877 F:      Documentation/usb/ohci.rst
18878 F:      drivers/usb/host/ohci*
18879
18880 USB OTG FSM (Finite State Machine)
18881 M:      Peter Chen <peter.chen@kernel.org>
18882 L:      linux-usb@vger.kernel.org
18883 S:      Maintained
18884 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
18885 F:      drivers/usb/common/usb-otg-fsm.c
18886
18887 USB OVER IP DRIVER
18888 M:      Valentina Manea <valentina.manea.m@gmail.com>
18889 M:      Shuah Khan <shuah@kernel.org>
18890 M:      Shuah Khan <skhan@linuxfoundation.org>
18891 L:      linux-usb@vger.kernel.org
18892 S:      Maintained
18893 F:      Documentation/usb/usbip_protocol.rst
18894 F:      drivers/usb/usbip/
18895 F:      tools/testing/selftests/drivers/usb/usbip/
18896 F:      tools/usb/usbip/
18897
18898 USB PEGASUS DRIVER
18899 M:      Petko Manolov <petkan@nucleusys.com>
18900 L:      linux-usb@vger.kernel.org
18901 L:      netdev@vger.kernel.org
18902 S:      Maintained
18903 W:      https://github.com/petkan/pegasus
18904 T:      git git://github.com/petkan/pegasus.git
18905 F:      drivers/net/usb/pegasus.*
18906
18907 USB PHY LAYER
18908 M:      Felipe Balbi <balbi@kernel.org>
18909 L:      linux-usb@vger.kernel.org
18910 S:      Maintained
18911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18912 F:      drivers/usb/phy/
18913
18914 USB PRINTER DRIVER (usblp)
18915 M:      Pete Zaitcev <zaitcev@redhat.com>
18916 L:      linux-usb@vger.kernel.org
18917 S:      Supported
18918 F:      drivers/usb/class/usblp.c
18919
18920 USB RAW GADGET DRIVER
18921 R:      Andrey Konovalov <andreyknvl@gmail.com>
18922 L:      linux-usb@vger.kernel.org
18923 S:      Maintained
18924 F:      Documentation/usb/raw-gadget.rst
18925 F:      drivers/usb/gadget/legacy/raw_gadget.c
18926 F:      include/uapi/linux/usb/raw_gadget.h
18927
18928 USB QMI WWAN NETWORK DRIVER
18929 M:      Bjørn Mork <bjorn@mork.no>
18930 L:      netdev@vger.kernel.org
18931 S:      Maintained
18932 F:      Documentation/ABI/testing/sysfs-class-net-qmi
18933 F:      drivers/net/usb/qmi_wwan.c
18934
18935 USB RTL8150 DRIVER
18936 M:      Petko Manolov <petkan@nucleusys.com>
18937 L:      linux-usb@vger.kernel.org
18938 L:      netdev@vger.kernel.org
18939 S:      Maintained
18940 W:      https://github.com/petkan/rtl8150
18941 T:      git git://github.com/petkan/rtl8150.git
18942 F:      drivers/net/usb/rtl8150.c
18943
18944 USB SERIAL SUBSYSTEM
18945 M:      Johan Hovold <johan@kernel.org>
18946 L:      linux-usb@vger.kernel.org
18947 S:      Maintained
18948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
18949 F:      Documentation/usb/usb-serial.rst
18950 F:      drivers/usb/serial/
18951 F:      include/linux/usb/serial.h
18952
18953 USB SMSC75XX ETHERNET DRIVER
18954 M:      Steve Glendinning <steve.glendinning@shawell.net>
18955 L:      netdev@vger.kernel.org
18956 S:      Maintained
18957 F:      drivers/net/usb/smsc75xx.*
18958
18959 USB SMSC95XX ETHERNET DRIVER
18960 M:      Steve Glendinning <steve.glendinning@shawell.net>
18961 M:      UNGLinuxDriver@microchip.com
18962 L:      netdev@vger.kernel.org
18963 S:      Maintained
18964 F:      drivers/net/usb/smsc95xx.*
18965
18966 USB SUBSYSTEM
18967 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18968 L:      linux-usb@vger.kernel.org
18969 S:      Supported
18970 W:      http://www.linux-usb.org
18971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
18972 F:      Documentation/devicetree/bindings/usb/
18973 F:      Documentation/usb/
18974 F:      drivers/usb/
18975 F:      include/linux/usb.h
18976 F:      include/linux/usb/
18977
18978 USB TYPEC BUS FOR ALTERNATE MODES
18979 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18980 L:      linux-usb@vger.kernel.org
18981 S:      Maintained
18982 F:      Documentation/ABI/testing/sysfs-bus-typec
18983 F:      Documentation/driver-api/usb/typec_bus.rst
18984 F:      drivers/usb/typec/altmodes/
18985 F:      include/linux/usb/typec_altmode.h
18986
18987 USB TYPEC CLASS
18988 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18989 L:      linux-usb@vger.kernel.org
18990 S:      Maintained
18991 F:      Documentation/ABI/testing/sysfs-class-typec
18992 F:      Documentation/driver-api/usb/typec.rst
18993 F:      drivers/usb/typec/
18994 F:      include/linux/usb/typec.h
18995
18996 USB TYPEC INTEL PMC MUX DRIVER
18997 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18998 L:      linux-usb@vger.kernel.org
18999 S:      Maintained
19000 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
19001 F:      drivers/usb/typec/mux/intel_pmc_mux.c
19002
19003 USB TYPEC PI3USB30532 MUX DRIVER
19004 M:      Hans de Goede <hdegoede@redhat.com>
19005 L:      linux-usb@vger.kernel.org
19006 S:      Maintained
19007 F:      drivers/usb/typec/mux/pi3usb30532.c
19008
19009 USB TYPEC PORT CONTROLLER DRIVERS
19010 M:      Guenter Roeck <linux@roeck-us.net>
19011 L:      linux-usb@vger.kernel.org
19012 S:      Maintained
19013 F:      drivers/usb/typec/tcpm/
19014
19015 USB UHCI DRIVER
19016 M:      Alan Stern <stern@rowland.harvard.edu>
19017 L:      linux-usb@vger.kernel.org
19018 S:      Maintained
19019 F:      drivers/usb/host/uhci*
19020
19021 USB VIDEO CLASS
19022 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19023 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
19024 L:      linux-media@vger.kernel.org
19025 S:      Maintained
19026 W:      http://www.ideasonboard.org/uvc/
19027 T:      git git://linuxtv.org/media_tree.git
19028 F:      drivers/media/usb/uvc/
19029 F:      include/uapi/linux/uvcvideo.h
19030
19031 USB WEBCAM GADGET
19032 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19033 L:      linux-usb@vger.kernel.org
19034 S:      Maintained
19035 F:      drivers/usb/gadget/function/*uvc*
19036 F:      drivers/usb/gadget/legacy/webcam.c
19037 F:      include/uapi/linux/usb/g_uvc.h
19038
19039 USB WIRELESS RNDIS DRIVER (rndis_wlan)
19040 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
19041 L:      linux-wireless@vger.kernel.org
19042 S:      Maintained
19043 F:      drivers/net/wireless/rndis_wlan.c
19044
19045 USB XHCI DRIVER
19046 M:      Mathias Nyman <mathias.nyman@intel.com>
19047 L:      linux-usb@vger.kernel.org
19048 S:      Supported
19049 F:      drivers/usb/host/pci-quirks*
19050 F:      drivers/usb/host/xhci*
19051
19052 USB ZD1201 DRIVER
19053 L:      linux-wireless@vger.kernel.org
19054 S:      Orphan
19055 W:      http://linux-lc100020.sourceforge.net
19056 F:      drivers/net/wireless/zydas/zd1201.*
19057
19058 USB ZR364XX DRIVER
19059 M:      Antoine Jacquet <royale@zerezo.com>
19060 L:      linux-usb@vger.kernel.org
19061 L:      linux-media@vger.kernel.org
19062 S:      Maintained
19063 W:      http://royale.zerezo.com/zr364xx/
19064 T:      git git://linuxtv.org/media_tree.git
19065 F:      Documentation/admin-guide/media/zr364xx*
19066 F:      drivers/media/usb/zr364xx/
19067
19068 USER-MODE LINUX (UML)
19069 M:      Jeff Dike <jdike@addtoit.com>
19070 M:      Richard Weinberger <richard@nod.at>
19071 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
19072 L:      linux-um@lists.infradead.org
19073 S:      Maintained
19074 W:      http://user-mode-linux.sourceforge.net
19075 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
19076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
19077 F:      Documentation/virt/uml/
19078 F:      arch/um/
19079 F:      arch/x86/um/
19080 F:      fs/hostfs/
19081
19082 USERSPACE COPYIN/COPYOUT (UIOVEC)
19083 M:      Alexander Viro <viro@zeniv.linux.org.uk>
19084 S:      Maintained
19085 F:      include/linux/uio.h
19086 F:      lib/iov_iter.c
19087
19088 USERSPACE DMA BUFFER DRIVER
19089 M:      Gerd Hoffmann <kraxel@redhat.com>
19090 L:      dri-devel@lists.freedesktop.org
19091 S:      Maintained
19092 T:      git git://anongit.freedesktop.org/drm/drm-misc
19093 F:      drivers/dma-buf/udmabuf.c
19094 F:      include/uapi/linux/udmabuf.h
19095
19096 USERSPACE I/O (UIO)
19097 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19098 S:      Maintained
19099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19100 F:      Documentation/driver-api/uio-howto.rst
19101 F:      drivers/uio/
19102 F:      include/linux/uio_driver.h
19103
19104 UTIL-LINUX PACKAGE
19105 M:      Karel Zak <kzak@redhat.com>
19106 L:      util-linux@vger.kernel.org
19107 S:      Maintained
19108 W:      http://en.wikipedia.org/wiki/Util-linux
19109 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
19110
19111 UUID HELPERS
19112 M:      Christoph Hellwig <hch@lst.de>
19113 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19114 L:      linux-kernel@vger.kernel.org
19115 S:      Maintained
19116 T:      git git://git.infradead.org/users/hch/uuid.git
19117 F:      include/linux/uuid.h
19118 F:      include/uapi/linux/uuid.h
19119 F:      lib/test_uuid.c
19120 F:      lib/uuid.c
19121
19122 UV SYSFS DRIVER
19123 M:      Justin Ernst <justin.ernst@hpe.com>
19124 L:      platform-driver-x86@vger.kernel.org
19125 S:      Maintained
19126 F:      drivers/platform/x86/uv_sysfs.c
19127
19128 UVESAFB DRIVER
19129 M:      Michal Januszewski <spock@gentoo.org>
19130 L:      linux-fbdev@vger.kernel.org
19131 S:      Maintained
19132 W:      https://github.com/mjanusz/v86d
19133 F:      Documentation/fb/uvesafb.rst
19134 F:      drivers/video/fbdev/uvesafb.*
19135
19136 Ux500 CLOCK DRIVERS
19137 M:      Ulf Hansson <ulf.hansson@linaro.org>
19138 L:      linux-clk@vger.kernel.org
19139 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19140 S:      Maintained
19141 F:      drivers/clk/ux500/
19142
19143 VF610 NAND DRIVER
19144 M:      Stefan Agner <stefan@agner.ch>
19145 L:      linux-mtd@lists.infradead.org
19146 S:      Supported
19147 F:      drivers/mtd/nand/raw/vf610_nfc.c
19148
19149 VFAT/FAT/MSDOS FILESYSTEM
19150 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
19151 S:      Maintained
19152 F:      Documentation/filesystems/vfat.rst
19153 F:      fs/fat/
19154
19155 VFIO DRIVER
19156 M:      Alex Williamson <alex.williamson@redhat.com>
19157 R:      Cornelia Huck <cohuck@redhat.com>
19158 L:      kvm@vger.kernel.org
19159 S:      Maintained
19160 T:      git git://github.com/awilliam/linux-vfio.git
19161 F:      Documentation/driver-api/vfio.rst
19162 F:      drivers/vfio/
19163 F:      include/linux/vfio.h
19164 F:      include/uapi/linux/vfio.h
19165
19166 VFIO FSL-MC DRIVER
19167 M:      Diana Craciun <diana.craciun@oss.nxp.com>
19168 L:      kvm@vger.kernel.org
19169 S:      Maintained
19170 F:      drivers/vfio/fsl-mc/
19171
19172 VFIO MEDIATED DEVICE DRIVERS
19173 M:      Kirti Wankhede <kwankhede@nvidia.com>
19174 L:      kvm@vger.kernel.org
19175 S:      Maintained
19176 F:      Documentation/driver-api/vfio-mediated-device.rst
19177 F:      drivers/vfio/mdev/
19178 F:      include/linux/mdev.h
19179 F:      samples/vfio-mdev/
19180
19181 VFIO PLATFORM DRIVER
19182 M:      Eric Auger <eric.auger@redhat.com>
19183 L:      kvm@vger.kernel.org
19184 S:      Maintained
19185 F:      drivers/vfio/platform/
19186
19187 VGA_SWITCHEROO
19188 R:      Lukas Wunner <lukas@wunner.de>
19189 S:      Maintained
19190 T:      git git://anongit.freedesktop.org/drm/drm-misc
19191 F:      Documentation/gpu/vga-switcheroo.rst
19192 F:      drivers/gpu/vga/vga_switcheroo.c
19193 F:      include/linux/vga_switcheroo.h
19194
19195 VIA RHINE NETWORK DRIVER
19196 S:      Maintained
19197 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
19198 F:      drivers/net/ethernet/via/via-rhine.c
19199
19200 VIA SD/MMC CARD CONTROLLER DRIVER
19201 M:      Bruce Chang <brucechang@via.com.tw>
19202 M:      Harald Welte <HaraldWelte@viatech.com>
19203 S:      Maintained
19204 F:      drivers/mmc/host/via-sdmmc.c
19205
19206 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
19207 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
19208 L:      linux-fbdev@vger.kernel.org
19209 S:      Maintained
19210 F:      drivers/video/fbdev/via/
19211 F:      include/linux/via-core.h
19212 F:      include/linux/via-gpio.h
19213 F:      include/linux/via_i2c.h
19214
19215 VIA VELOCITY NETWORK DRIVER
19216 M:      Francois Romieu <romieu@fr.zoreil.com>
19217 L:      netdev@vger.kernel.org
19218 S:      Maintained
19219 F:      drivers/net/ethernet/via/via-velocity.*
19220
19221 VICODEC VIRTUAL CODEC DRIVER
19222 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
19223 L:      linux-media@vger.kernel.org
19224 S:      Maintained
19225 W:      https://linuxtv.org
19226 T:      git git://linuxtv.org/media_tree.git
19227 F:      drivers/media/test-drivers/vicodec/*
19228
19229 VIDEO I2C POLLING DRIVER
19230 M:      Matt Ranostay <matt.ranostay@konsulko.com>
19231 L:      linux-media@vger.kernel.org
19232 S:      Maintained
19233 F:      drivers/media/i2c/video-i2c.c
19234
19235 VIDEO MULTIPLEXER DRIVER
19236 M:      Philipp Zabel <p.zabel@pengutronix.de>
19237 L:      linux-media@vger.kernel.org
19238 S:      Maintained
19239 F:      drivers/media/platform/video-mux.c
19240
19241 VIDEOBUF2 FRAMEWORK
19242 M:      Tomasz Figa <tfiga@chromium.org>
19243 M:      Marek Szyprowski <m.szyprowski@samsung.com>
19244 L:      linux-media@vger.kernel.org
19245 S:      Maintained
19246 F:      drivers/media/common/videobuf2/*
19247 F:      include/media/videobuf2-*
19248
19249 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
19250 M:      Helen Koike <helen.koike@collabora.com>
19251 R:      Shuah Khan <skhan@linuxfoundation.org>
19252 L:      linux-media@vger.kernel.org
19253 S:      Maintained
19254 W:      https://linuxtv.org
19255 T:      git git://linuxtv.org/media_tree.git
19256 F:      drivers/media/test-drivers/vimc/*
19257
19258 VIRT LIB
19259 M:      Alex Williamson <alex.williamson@redhat.com>
19260 M:      Paolo Bonzini <pbonzini@redhat.com>
19261 L:      kvm@vger.kernel.org
19262 S:      Supported
19263 F:      virt/lib/
19264
19265 VIRTIO AND VHOST VSOCK DRIVER
19266 M:      Stefan Hajnoczi <stefanha@redhat.com>
19267 M:      Stefano Garzarella <sgarzare@redhat.com>
19268 L:      kvm@vger.kernel.org
19269 L:      virtualization@lists.linux-foundation.org
19270 L:      netdev@vger.kernel.org
19271 S:      Maintained
19272 F:      drivers/net/vsockmon.c
19273 F:      drivers/vhost/vsock.c
19274 F:      include/linux/virtio_vsock.h
19275 F:      include/uapi/linux/virtio_vsock.h
19276 F:      include/uapi/linux/vm_sockets_diag.h
19277 F:      include/uapi/linux/vsockmon.h
19278 F:      net/vmw_vsock/af_vsock_tap.c
19279 F:      net/vmw_vsock/diag.c
19280 F:      net/vmw_vsock/virtio_transport.c
19281 F:      net/vmw_vsock/virtio_transport_common.c
19282 F:      net/vmw_vsock/vsock_loopback.c
19283 F:      tools/testing/vsock/
19284
19285 VIRTIO BLOCK AND SCSI DRIVERS
19286 M:      "Michael S. Tsirkin" <mst@redhat.com>
19287 M:      Jason Wang <jasowang@redhat.com>
19288 R:      Paolo Bonzini <pbonzini@redhat.com>
19289 R:      Stefan Hajnoczi <stefanha@redhat.com>
19290 L:      virtualization@lists.linux-foundation.org
19291 S:      Maintained
19292 F:      drivers/block/virtio_blk.c
19293 F:      drivers/scsi/virtio_scsi.c
19294 F:      drivers/vhost/scsi.c
19295 F:      include/uapi/linux/virtio_blk.h
19296 F:      include/uapi/linux/virtio_scsi.h
19297
19298 VIRTIO CONSOLE DRIVER
19299 M:      Amit Shah <amit@kernel.org>
19300 L:      virtualization@lists.linux-foundation.org
19301 S:      Maintained
19302 F:      drivers/char/virtio_console.c
19303 F:      include/linux/virtio_console.h
19304 F:      include/uapi/linux/virtio_console.h
19305
19306 VIRTIO CORE AND NET DRIVERS
19307 M:      "Michael S. Tsirkin" <mst@redhat.com>
19308 M:      Jason Wang <jasowang@redhat.com>
19309 L:      virtualization@lists.linux-foundation.org
19310 S:      Maintained
19311 F:      Documentation/devicetree/bindings/virtio/
19312 F:      drivers/block/virtio_blk.c
19313 F:      drivers/crypto/virtio/
19314 F:      drivers/net/virtio_net.c
19315 F:      drivers/vdpa/
19316 F:      drivers/virtio/
19317 F:      include/linux/vdpa.h
19318 F:      include/linux/virtio*.h
19319 F:      include/uapi/linux/virtio_*.h
19320 F:      tools/virtio/
19321
19322 VIRTIO BALLOON
19323 M:      "Michael S. Tsirkin" <mst@redhat.com>
19324 M:      David Hildenbrand <david@redhat.com>
19325 L:      virtualization@lists.linux-foundation.org
19326 S:      Maintained
19327 F:      drivers/virtio/virtio_balloon.c
19328 F:      include/uapi/linux/virtio_balloon.h
19329 F:      include/linux/balloon_compaction.h
19330 F:      mm/balloon_compaction.c
19331
19332 VIRTIO CRYPTO DRIVER
19333 M:      Gonglei <arei.gonglei@huawei.com>
19334 L:      virtualization@lists.linux-foundation.org
19335 L:      linux-crypto@vger.kernel.org
19336 S:      Maintained
19337 F:      drivers/crypto/virtio/
19338 F:      include/uapi/linux/virtio_crypto.h
19339
19340 VIRTIO DRIVERS FOR S390
19341 M:      Cornelia Huck <cohuck@redhat.com>
19342 M:      Halil Pasic <pasic@linux.ibm.com>
19343 L:      linux-s390@vger.kernel.org
19344 L:      virtualization@lists.linux-foundation.org
19345 L:      kvm@vger.kernel.org
19346 S:      Supported
19347 F:      arch/s390/include/uapi/asm/virtio-ccw.h
19348 F:      drivers/s390/virtio/
19349
19350 VIRTIO FILE SYSTEM
19351 M:      Vivek Goyal <vgoyal@redhat.com>
19352 M:      Stefan Hajnoczi <stefanha@redhat.com>
19353 M:      Miklos Szeredi <miklos@szeredi.hu>
19354 L:      virtualization@lists.linux-foundation.org
19355 L:      linux-fsdevel@vger.kernel.org
19356 S:      Supported
19357 W:      https://virtio-fs.gitlab.io/
19358 F:      Documentation/filesystems/virtiofs.rst
19359 F:      fs/fuse/virtio_fs.c
19360 F:      include/uapi/linux/virtio_fs.h
19361
19362 VIRTIO GPU DRIVER
19363 M:      David Airlie <airlied@linux.ie>
19364 M:      Gerd Hoffmann <kraxel@redhat.com>
19365 L:      dri-devel@lists.freedesktop.org
19366 L:      virtualization@lists.linux-foundation.org
19367 S:      Maintained
19368 T:      git git://anongit.freedesktop.org/drm/drm-misc
19369 F:      drivers/gpu/drm/virtio/
19370 F:      include/uapi/linux/virtio_gpu.h
19371
19372 VIRTIO HOST (VHOST)
19373 M:      "Michael S. Tsirkin" <mst@redhat.com>
19374 M:      Jason Wang <jasowang@redhat.com>
19375 L:      kvm@vger.kernel.org
19376 L:      virtualization@lists.linux-foundation.org
19377 L:      netdev@vger.kernel.org
19378 S:      Maintained
19379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
19380 F:      drivers/vhost/
19381 F:      include/linux/vhost_iotlb.h
19382 F:      include/uapi/linux/vhost.h
19383
19384 VIRTIO INPUT DRIVER
19385 M:      Gerd Hoffmann <kraxel@redhat.com>
19386 S:      Maintained
19387 F:      drivers/virtio/virtio_input.c
19388 F:      include/uapi/linux/virtio_input.h
19389
19390 VIRTIO IOMMU DRIVER
19391 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
19392 L:      virtualization@lists.linux-foundation.org
19393 S:      Maintained
19394 F:      drivers/iommu/virtio-iommu.c
19395 F:      include/uapi/linux/virtio_iommu.h
19396
19397 VIRTIO MEM DRIVER
19398 M:      David Hildenbrand <david@redhat.com>
19399 L:      virtualization@lists.linux-foundation.org
19400 S:      Maintained
19401 W:      https://virtio-mem.gitlab.io/
19402 F:      drivers/virtio/virtio_mem.c
19403 F:      include/uapi/linux/virtio_mem.h
19404
19405 VIRTIO SOUND DRIVER
19406 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
19407 M:      "Michael S. Tsirkin" <mst@redhat.com>
19408 L:      virtualization@lists.linux-foundation.org
19409 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19410 S:      Maintained
19411 F:      include/uapi/linux/virtio_snd.h
19412 F:      sound/virtio/*
19413
19414 VIRTUAL BOX GUEST DEVICE DRIVER
19415 M:      Hans de Goede <hdegoede@redhat.com>
19416 M:      Arnd Bergmann <arnd@arndb.de>
19417 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19418 S:      Maintained
19419 F:      drivers/virt/vboxguest/
19420 F:      include/linux/vbox_utils.h
19421 F:      include/uapi/linux/vbox*.h
19422
19423 VIRTUAL BOX SHARED FOLDER VFS DRIVER
19424 M:      Hans de Goede <hdegoede@redhat.com>
19425 L:      linux-fsdevel@vger.kernel.org
19426 S:      Maintained
19427 F:      fs/vboxsf/*
19428
19429 VIRTUAL SERIO DEVICE DRIVER
19430 M:      Stephen Chandler Paul <thatslyude@gmail.com>
19431 S:      Maintained
19432 F:      drivers/input/serio/userio.c
19433 F:      include/uapi/linux/userio.h
19434
19435 VIVID VIRTUAL VIDEO DRIVER
19436 M:      Hans Verkuil <hverkuil@xs4all.nl>
19437 L:      linux-media@vger.kernel.org
19438 S:      Maintained
19439 W:      https://linuxtv.org
19440 T:      git git://linuxtv.org/media_tree.git
19441 F:      drivers/media/test-drivers/vivid/*
19442
19443 VIDTV VIRTUAL DIGITAL TV DRIVER
19444 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
19445 L:      linux-media@vger.kernel.org
19446 S:      Maintained
19447 W:      https://linuxtv.org
19448 T:      git git://linuxtv.org/media_tree.git
19449 F:      drivers/media/test-drivers/vidtv/*
19450
19451 VLYNQ BUS
19452 M:      Florian Fainelli <f.fainelli@gmail.com>
19453 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
19454 S:      Maintained
19455 F:      drivers/vlynq/vlynq.c
19456 F:      include/linux/vlynq.h
19457
19458 VME SUBSYSTEM
19459 M:      Martyn Welch <martyn@welchs.me.uk>
19460 M:      Manohar Vanga <manohar.vanga@gmail.com>
19461 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19462 L:      linux-kernel@vger.kernel.org
19463 S:      Maintained
19464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19465 F:      Documentation/driver-api/vme.rst
19466 F:      drivers/staging/vme/
19467 F:      drivers/vme/
19468 F:      include/linux/vme*
19469
19470 VMWARE BALLOON DRIVER
19471 M:      Nadav Amit <namit@vmware.com>
19472 M:      "VMware, Inc." <pv-drivers@vmware.com>
19473 L:      linux-kernel@vger.kernel.org
19474 S:      Maintained
19475 F:      drivers/misc/vmw_balloon.c
19476
19477 VMWARE HYPERVISOR INTERFACE
19478 M:      Deep Shah <sdeep@vmware.com>
19479 M:      "VMware, Inc." <pv-drivers@vmware.com>
19480 L:      virtualization@lists.linux-foundation.org
19481 S:      Supported
19482 F:      arch/x86/include/asm/vmware.h
19483 F:      arch/x86/kernel/cpu/vmware.c
19484
19485 VMWARE PVRDMA DRIVER
19486 M:      Adit Ranadive <aditr@vmware.com>
19487 M:      VMware PV-Drivers <pv-drivers@vmware.com>
19488 L:      linux-rdma@vger.kernel.org
19489 S:      Maintained
19490 F:      drivers/infiniband/hw/vmw_pvrdma/
19491
19492 VMware PVSCSI driver
19493 M:      Vishal Bhakta <vbhakta@vmware.com>
19494 M:      VMware PV-Drivers <pv-drivers@vmware.com>
19495 L:      linux-scsi@vger.kernel.org
19496 S:      Maintained
19497 F:      drivers/scsi/vmw_pvscsi.c
19498 F:      drivers/scsi/vmw_pvscsi.h
19499
19500 VMWARE VIRTUAL PTP CLOCK DRIVER
19501 M:      Vivek Thampi <vithampi@vmware.com>
19502 M:      "VMware, Inc." <pv-drivers@vmware.com>
19503 L:      netdev@vger.kernel.org
19504 S:      Supported
19505 F:      drivers/ptp/ptp_vmw.c
19506
19507 VMWARE VMMOUSE SUBDRIVER
19508 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
19509 M:      "VMware, Inc." <pv-drivers@vmware.com>
19510 L:      linux-input@vger.kernel.org
19511 S:      Maintained
19512 F:      drivers/input/mouse/vmmouse.c
19513 F:      drivers/input/mouse/vmmouse.h
19514
19515 VMWARE VMXNET3 ETHERNET DRIVER
19516 M:      Ronak Doshi <doshir@vmware.com>
19517 M:      pv-drivers@vmware.com
19518 L:      netdev@vger.kernel.org
19519 S:      Maintained
19520 F:      drivers/net/vmxnet3/
19521
19522 VOCORE VOCORE2 BOARD
19523 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
19524 L:      linux-mips@vger.kernel.org
19525 S:      Maintained
19526 F:      arch/mips/boot/dts/ralink/vocore2.dts
19527
19528 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
19529 M:      Liam Girdwood <lgirdwood@gmail.com>
19530 M:      Mark Brown <broonie@kernel.org>
19531 L:      linux-kernel@vger.kernel.org
19532 S:      Supported
19533 W:      http://www.slimlogic.co.uk/?p=48
19534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
19535 F:      Documentation/devicetree/bindings/regulator/
19536 F:      Documentation/power/regulator/
19537 F:      drivers/regulator/
19538 F:      include/dt-bindings/regulator/
19539 F:      include/linux/regulator/
19540 K:      regulator_get_optional
19541
19542 VRF
19543 M:      David Ahern <dsahern@kernel.org>
19544 L:      netdev@vger.kernel.org
19545 S:      Maintained
19546 F:      Documentation/networking/vrf.rst
19547 F:      drivers/net/vrf.c
19548
19549 VSPRINTF
19550 M:      Petr Mladek <pmladek@suse.com>
19551 M:      Steven Rostedt <rostedt@goodmis.org>
19552 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
19553 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19554 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
19555 S:      Maintained
19556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
19557 F:      Documentation/core-api/printk-formats.rst
19558 F:      lib/test_printf.c
19559 F:      lib/vsprintf.c
19560
19561 VT1211 HARDWARE MONITOR DRIVER
19562 M:      Juerg Haefliger <juergh@gmail.com>
19563 L:      linux-hwmon@vger.kernel.org
19564 S:      Maintained
19565 F:      Documentation/hwmon/vt1211.rst
19566 F:      drivers/hwmon/vt1211.c
19567
19568 VT8231 HARDWARE MONITOR DRIVER
19569 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
19570 L:      linux-hwmon@vger.kernel.org
19571 S:      Maintained
19572 F:      drivers/hwmon/vt8231.c
19573
19574 VUB300 USB to SDIO/SD/MMC bridge chip
19575 L:      linux-mmc@vger.kernel.org
19576 S:      Orphan
19577 F:      drivers/mmc/host/vub300.c
19578
19579 W1 DALLAS'S 1-WIRE BUS
19580 M:      Evgeniy Polyakov <zbr@ioremap.net>
19581 S:      Maintained
19582 F:      Documentation/devicetree/bindings/w1/
19583 F:      Documentation/w1/
19584 F:      drivers/w1/
19585 F:      include/linux/w1.h
19586
19587 W83791D HARDWARE MONITORING DRIVER
19588 M:      Marc Hulsman <m.hulsman@tudelft.nl>
19589 L:      linux-hwmon@vger.kernel.org
19590 S:      Maintained
19591 F:      Documentation/hwmon/w83791d.rst
19592 F:      drivers/hwmon/w83791d.c
19593
19594 W83793 HARDWARE MONITORING DRIVER
19595 M:      Rudolf Marek <r.marek@assembler.cz>
19596 L:      linux-hwmon@vger.kernel.org
19597 S:      Maintained
19598 F:      Documentation/hwmon/w83793.rst
19599 F:      drivers/hwmon/w83793.c
19600
19601 W83795 HARDWARE MONITORING DRIVER
19602 M:      Jean Delvare <jdelvare@suse.com>
19603 L:      linux-hwmon@vger.kernel.org
19604 S:      Maintained
19605 F:      drivers/hwmon/w83795.c
19606
19607 W83L51xD SD/MMC CARD INTERFACE DRIVER
19608 M:      Pierre Ossman <pierre@ossman.eu>
19609 S:      Maintained
19610 F:      drivers/mmc/host/wbsd.*
19611
19612 WACOM PROTOCOL 4 SERIAL TABLETS
19613 M:      Julian Squires <julian@cipht.net>
19614 M:      Hans de Goede <hdegoede@redhat.com>
19615 L:      linux-input@vger.kernel.org
19616 S:      Maintained
19617 F:      drivers/input/tablet/wacom_serial4.c
19618
19619 WATCHDOG DEVICE DRIVERS
19620 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
19621 M:      Guenter Roeck <linux@roeck-us.net>
19622 L:      linux-watchdog@vger.kernel.org
19623 S:      Maintained
19624 W:      http://www.linux-watchdog.org/
19625 T:      git git://www.linux-watchdog.org/linux-watchdog.git
19626 F:      Documentation/devicetree/bindings/watchdog/
19627 F:      Documentation/watchdog/
19628 F:      drivers/watchdog/
19629 F:      include/linux/watchdog.h
19630 F:      include/uapi/linux/watchdog.h
19631
19632 WHISKEYCOVE PMIC GPIO DRIVER
19633 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
19634 L:      linux-gpio@vger.kernel.org
19635 S:      Maintained
19636 F:      drivers/gpio/gpio-wcove.c
19637
19638 WHWAVE RTC DRIVER
19639 M:      Dianlong Li <long17.cool@163.com>
19640 L:      linux-rtc@vger.kernel.org
19641 S:      Maintained
19642 F:      drivers/rtc/rtc-sd3078.c
19643
19644 WIIMOTE HID DRIVER
19645 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19646 L:      linux-input@vger.kernel.org
19647 S:      Maintained
19648 F:      drivers/hid/hid-wiimote*
19649
19650 WILOCITY WIL6210 WIRELESS DRIVER
19651 M:      Maya Erez <merez@codeaurora.org>
19652 L:      linux-wireless@vger.kernel.org
19653 L:      wil6210@qti.qualcomm.com
19654 S:      Supported
19655 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
19656 F:      drivers/net/wireless/ath/wil6210/
19657
19658 WINBOND CIR DRIVER
19659 M:      David Härdeman <david@hardeman.nu>
19660 S:      Maintained
19661 F:      drivers/media/rc/winbond-cir.c
19662
19663 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
19664 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
19665 L:      linux-watchdog@vger.kernel.org
19666 S:      Maintained
19667 F:      drivers/watchdog/ebc-c384_wdt.c
19668
19669 WINSYSTEMS WS16C48 GPIO DRIVER
19670 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
19671 L:      linux-gpio@vger.kernel.org
19672 S:      Maintained
19673 F:      drivers/gpio/gpio-ws16c48.c
19674
19675 WIREGUARD SECURE NETWORK TUNNEL
19676 M:      Jason A. Donenfeld <Jason@zx2c4.com>
19677 L:      wireguard@lists.zx2c4.com
19678 L:      netdev@vger.kernel.org
19679 S:      Maintained
19680 F:      drivers/net/wireguard/
19681 F:      tools/testing/selftests/wireguard/
19682
19683 WISTRON LAPTOP BUTTON DRIVER
19684 M:      Miloslav Trmac <mitr@volny.cz>
19685 S:      Maintained
19686 F:      drivers/input/misc/wistron_btns.c
19687
19688 WL3501 WIRELESS PCMCIA CARD DRIVER
19689 L:      linux-wireless@vger.kernel.org
19690 S:      Odd fixes
19691 F:      drivers/net/wireless/wl3501*
19692
19693 WOLFSON MICROELECTRONICS DRIVERS
19694 L:      patches@opensource.cirrus.com
19695 S:      Supported
19696 W:      https://github.com/CirrusLogic/linux-drivers/wiki
19697 T:      git https://github.com/CirrusLogic/linux-drivers.git
19698 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
19699 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
19700 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
19701 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
19702 F:      Documentation/devicetree/bindings/sound/wlf,arizona.yaml
19703 F:      Documentation/hwmon/wm83??.rst
19704 F:      arch/arm/mach-s3c/mach-crag6410*
19705 F:      drivers/clk/clk-wm83*.c
19706 F:      drivers/gpio/gpio-*wm*.c
19707 F:      drivers/gpio/gpio-arizona.c
19708 F:      drivers/hwmon/wm83??-hwmon.c
19709 F:      drivers/input/misc/wm831x-on.c
19710 F:      drivers/input/touchscreen/wm831x-ts.c
19711 F:      drivers/input/touchscreen/wm97*.c
19712 F:      drivers/leds/leds-wm83*.c
19713 F:      drivers/mfd/arizona*
19714 F:      drivers/mfd/cs47l24*
19715 F:      drivers/mfd/wm*.c
19716 F:      drivers/power/supply/wm83*.c
19717 F:      drivers/regulator/arizona*
19718 F:      drivers/regulator/wm8*.c
19719 F:      drivers/rtc/rtc-wm83*.c
19720 F:      drivers/video/backlight/wm83*_bl.c
19721 F:      drivers/watchdog/wm83*_wdt.c
19722 F:      include/linux/mfd/arizona/
19723 F:      include/linux/mfd/wm831x/
19724 F:      include/linux/mfd/wm8350/
19725 F:      include/linux/mfd/wm8400*
19726 F:      include/linux/regulator/arizona*
19727 F:      include/linux/wm97xx.h
19728 F:      include/sound/wm????.h
19729 F:      sound/soc/codecs/arizona*
19730 F:      sound/soc/codecs/cs47l24*
19731 F:      sound/soc/codecs/wm*
19732
19733 WORKQUEUE
19734 M:      Tejun Heo <tj@kernel.org>
19735 R:      Lai Jiangshan <jiangshanlai@gmail.com>
19736 S:      Maintained
19737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
19738 F:      Documentation/core-api/workqueue.rst
19739 F:      include/linux/workqueue.h
19740 F:      kernel/workqueue.c
19741
19742 X-POWERS AXP288 PMIC DRIVERS
19743 M:      Hans de Goede <hdegoede@redhat.com>
19744 S:      Maintained
19745 F:      drivers/acpi/pmic/intel_pmic_xpower.c
19746 N:      axp288
19747
19748 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
19749 M:      Chen-Yu Tsai <wens@csie.org>
19750 L:      linux-kernel@vger.kernel.org
19751 S:      Maintained
19752 N:      axp[128]
19753
19754 X.25 STACK
19755 M:      Martin Schiller <ms@dev.tdt.de>
19756 L:      linux-x25@vger.kernel.org
19757 S:      Maintained
19758 F:      Documentation/networking/lapb-module.rst
19759 F:      Documentation/networking/x25*
19760 F:      drivers/net/wan/hdlc_x25.c
19761 F:      drivers/net/wan/lapbether.c
19762 F:      include/*/lapb.h
19763 F:      include/net/x25*
19764 F:      include/uapi/linux/x25.h
19765 F:      net/lapb/
19766 F:      net/x25/
19767
19768 X86 ARCHITECTURE (32-BIT AND 64-BIT)
19769 M:      Thomas Gleixner <tglx@linutronix.de>
19770 M:      Ingo Molnar <mingo@redhat.com>
19771 M:      Borislav Petkov <bp@alien8.de>
19772 M:      x86@kernel.org
19773 R:      "H. Peter Anvin" <hpa@zytor.com>
19774 L:      linux-kernel@vger.kernel.org
19775 S:      Maintained
19776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19777 F:      Documentation/devicetree/bindings/x86/
19778 F:      Documentation/x86/
19779 F:      arch/x86/
19780
19781 X86 ENTRY CODE
19782 M:      Andy Lutomirski <luto@kernel.org>
19783 L:      linux-kernel@vger.kernel.org
19784 S:      Maintained
19785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
19786 F:      arch/x86/entry/
19787
19788 X86 MCE INFRASTRUCTURE
19789 M:      Tony Luck <tony.luck@intel.com>
19790 M:      Borislav Petkov <bp@alien8.de>
19791 L:      linux-edac@vger.kernel.org
19792 S:      Maintained
19793 F:      arch/x86/kernel/cpu/mce/*
19794
19795 X86 MICROCODE UPDATE SUPPORT
19796 M:      Borislav Petkov <bp@alien8.de>
19797 S:      Maintained
19798 F:      arch/x86/kernel/cpu/microcode/*
19799
19800 X86 MM
19801 M:      Dave Hansen <dave.hansen@linux.intel.com>
19802 M:      Andy Lutomirski <luto@kernel.org>
19803 M:      Peter Zijlstra <peterz@infradead.org>
19804 L:      linux-kernel@vger.kernel.org
19805 S:      Maintained
19806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
19807 F:      arch/x86/mm/
19808
19809 X86 PLATFORM DRIVERS
19810 M:      Hans de Goede <hdegoede@redhat.com>
19811 M:      Mark Gross <mgross@linux.intel.com>
19812 L:      platform-driver-x86@vger.kernel.org
19813 S:      Maintained
19814 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
19815 F:      drivers/platform/olpc/
19816 F:      drivers/platform/x86/
19817
19818 X86 PLATFORM DRIVERS - ARCH
19819 R:      Darren Hart <dvhart@infradead.org>
19820 R:      Andy Shevchenko <andy@infradead.org>
19821 L:      platform-driver-x86@vger.kernel.org
19822 L:      x86@kernel.org
19823 S:      Maintained
19824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19825 F:      arch/x86/platform
19826
19827 X86 PLATFORM UV HPE SUPERDOME FLEX
19828 M:      Steve Wahl <steve.wahl@hpe.com>
19829 R:      Mike Travis <mike.travis@hpe.com>
19830 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
19831 R:      Russ Anderson <russ.anderson@hpe.com>
19832 S:      Supported
19833 F:      arch/x86/include/asm/uv/
19834 F:      arch/x86/kernel/apic/x2apic_uv_x.c
19835 F:      arch/x86/platform/uv/
19836
19837 X86 VDSO
19838 M:      Andy Lutomirski <luto@kernel.org>
19839 L:      linux-kernel@vger.kernel.org
19840 S:      Maintained
19841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
19842 F:      arch/x86/entry/vdso/
19843
19844 XARRAY
19845 M:      Matthew Wilcox <willy@infradead.org>
19846 L:      linux-fsdevel@vger.kernel.org
19847 S:      Supported
19848 F:      Documentation/core-api/xarray.rst
19849 F:      include/linux/idr.h
19850 F:      include/linux/xarray.h
19851 F:      lib/idr.c
19852 F:      lib/xarray.c
19853 F:      tools/testing/radix-tree
19854
19855 XBOX DVD IR REMOTE
19856 M:      Benjamin Valentin <benpicco@googlemail.com>
19857 S:      Maintained
19858 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
19859 F:      drivers/media/rc/xbox_remote.c
19860
19861 XC2028/3028 TUNER DRIVER
19862 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19863 L:      linux-media@vger.kernel.org
19864 S:      Maintained
19865 W:      https://linuxtv.org
19866 T:      git git://linuxtv.org/media_tree.git
19867 F:      drivers/media/tuners/tuner-xc2028.*
19868
19869 XDP (eXpress Data Path)
19870 M:      Alexei Starovoitov <ast@kernel.org>
19871 M:      Daniel Borkmann <daniel@iogearbox.net>
19872 M:      David S. Miller <davem@davemloft.net>
19873 M:      Jakub Kicinski <kuba@kernel.org>
19874 M:      Jesper Dangaard Brouer <hawk@kernel.org>
19875 M:      John Fastabend <john.fastabend@gmail.com>
19876 L:      netdev@vger.kernel.org
19877 L:      bpf@vger.kernel.org
19878 S:      Supported
19879 F:      include/net/xdp.h
19880 F:      include/net/xdp_priv.h
19881 F:      include/trace/events/xdp.h
19882 F:      kernel/bpf/cpumap.c
19883 F:      kernel/bpf/devmap.c
19884 F:      net/core/xdp.c
19885 F:      samples/bpf/xdp*
19886 F:      tools/testing/selftests/bpf/*xdp*
19887 F:      tools/testing/selftests/bpf/*/*xdp*
19888 F:      drivers/net/ethernet/*/*/*/*/*xdp*
19889 F:      drivers/net/ethernet/*/*/*xdp*
19890 K:      (?:\b|_)xdp(?:\b|_)
19891
19892 XDP SOCKETS (AF_XDP)
19893 M:      Björn Töpel <bjorn@kernel.org>
19894 M:      Magnus Karlsson <magnus.karlsson@intel.com>
19895 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
19896 L:      netdev@vger.kernel.org
19897 L:      bpf@vger.kernel.org
19898 S:      Maintained
19899 F:      Documentation/networking/af_xdp.rst
19900 F:      include/net/xdp_sock*
19901 F:      include/net/xsk_buff_pool.h
19902 F:      include/uapi/linux/if_xdp.h
19903 F:      include/uapi/linux/xdp_diag.h
19904 F:      include/net/netns/xdp.h
19905 F:      net/xdp/
19906 F:      samples/bpf/xdpsock*
19907 F:      tools/lib/bpf/xsk*
19908
19909 XEN BLOCK SUBSYSTEM
19910 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19911 M:      Roger Pau Monné <roger.pau@citrix.com>
19912 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19913 S:      Supported
19914 F:      drivers/block/xen*
19915 F:      drivers/block/xen-blkback/*
19916
19917 XEN HYPERVISOR ARM
19918 M:      Stefano Stabellini <sstabellini@kernel.org>
19919 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19920 S:      Maintained
19921 F:      arch/arm/include/asm/xen/
19922 F:      arch/arm/xen/
19923
19924 XEN HYPERVISOR ARM64
19925 M:      Stefano Stabellini <sstabellini@kernel.org>
19926 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19927 S:      Maintained
19928 F:      arch/arm64/include/asm/xen/
19929 F:      arch/arm64/xen/
19930
19931 XEN HYPERVISOR INTERFACE
19932 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
19933 M:      Juergen Gross <jgross@suse.com>
19934 R:      Stefano Stabellini <sstabellini@kernel.org>
19935 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19936 S:      Supported
19937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
19938 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
19939 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
19940 F:      arch/x86/include/asm/pvclock-abi.h
19941 F:      arch/x86/include/asm/xen/
19942 F:      arch/x86/platform/pvh/
19943 F:      arch/x86/xen/
19944 F:      drivers/*/xen-*front.c
19945 F:      drivers/xen/
19946 F:      include/uapi/xen/
19947 F:      include/xen/
19948
19949 XEN NETWORK BACKEND DRIVER
19950 M:      Wei Liu <wei.liu@kernel.org>
19951 M:      Paul Durrant <paul@xen.org>
19952 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19953 L:      netdev@vger.kernel.org
19954 S:      Supported
19955 F:      drivers/net/xen-netback/*
19956
19957 XEN PCI SUBSYSTEM
19958 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19959 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19960 S:      Supported
19961 F:      arch/x86/pci/*xen*
19962 F:      drivers/pci/*xen*
19963
19964 XEN PVSCSI DRIVERS
19965 M:      Juergen Gross <jgross@suse.com>
19966 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19967 L:      linux-scsi@vger.kernel.org
19968 S:      Supported
19969 F:      drivers/scsi/xen-scsifront.c
19970 F:      drivers/xen/xen-scsiback.c
19971 F:      include/xen/interface/io/vscsiif.h
19972
19973 XEN SOUND FRONTEND DRIVER
19974 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
19975 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19976 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19977 S:      Supported
19978 F:      sound/xen/*
19979
19980 XEN SWIOTLB SUBSYSTEM
19981 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19982 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19983 L:      iommu@lists.linux-foundation.org
19984 S:      Supported
19985 F:      arch/x86/xen/*swiotlb*
19986 F:      drivers/xen/*swiotlb*
19987
19988 XFS FILESYSTEM
19989 M:      Darrick J. Wong <djwong@kernel.org>
19990 M:      linux-xfs@vger.kernel.org
19991 L:      linux-xfs@vger.kernel.org
19992 S:      Supported
19993 W:      http://xfs.org/
19994 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
19995 F:      Documentation/ABI/testing/sysfs-fs-xfs
19996 F:      Documentation/admin-guide/xfs.rst
19997 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
19998 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
19999 F:      fs/xfs/
20000 F:      include/uapi/linux/dqblk_xfs.h
20001 F:      include/uapi/linux/fsmap.h
20002
20003 XILINX AXI ETHERNET DRIVER
20004 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
20005 S:      Maintained
20006 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
20007
20008 XILINX CAN DRIVER
20009 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
20010 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
20011 L:      linux-can@vger.kernel.org
20012 S:      Maintained
20013 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
20014 F:      drivers/net/can/xilinx_can.c
20015
20016 XILINX GPIO DRIVER
20017 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
20018 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
20019 R:      Michal Simek <michal.simek@xilinx.com>
20020 S:      Maintained
20021 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
20022 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.txt
20023 F:      drivers/gpio/gpio-xilinx.c
20024 F:      drivers/gpio/gpio-zynq.c
20025
20026 XILINX SD-FEC IP CORES
20027 M:      Derek Kiernan <derek.kiernan@xilinx.com>
20028 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
20029 S:      Maintained
20030 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
20031 F:      Documentation/misc-devices/xilinx_sdfec.rst
20032 F:      drivers/misc/Kconfig
20033 F:      drivers/misc/Makefile
20034 F:      drivers/misc/xilinx_sdfec.c
20035 F:      include/uapi/misc/xilinx_sdfec.h
20036
20037 XILINX UARTLITE SERIAL DRIVER
20038 M:      Peter Korsgaard <jacmet@sunsite.dk>
20039 L:      linux-serial@vger.kernel.org
20040 S:      Maintained
20041 F:      drivers/tty/serial/uartlite.c
20042
20043 XILINX VIDEO IP CORES
20044 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20045 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20046 L:      linux-media@vger.kernel.org
20047 S:      Supported
20048 T:      git git://linuxtv.org/media_tree.git
20049 F:      Documentation/devicetree/bindings/media/xilinx/
20050 F:      drivers/media/platform/xilinx/
20051 F:      include/uapi/linux/xilinx-v4l2-controls.h
20052
20053 XILINX ZYNQMP DPDMA DRIVER
20054 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20055 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20056 L:      dmaengine@vger.kernel.org
20057 S:      Supported
20058 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
20059 F:      drivers/dma/xilinx/xilinx_dpdma.c
20060 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
20061
20062 XILINX ZYNQMP PSGTR PHY DRIVER
20063 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
20064 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20065 L:      linux-kernel@vger.kernel.org
20066 S:      Supported
20067 T:      git https://github.com/Xilinx/linux-xlnx.git
20068 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
20069 F:      drivers/phy/xilinx/phy-zynqmp.c
20070
20071 XILLYBUS DRIVER
20072 M:      Eli Billauer <eli.billauer@gmail.com>
20073 L:      linux-kernel@vger.kernel.org
20074 S:      Supported
20075 F:      drivers/char/xillybus/
20076
20077 XLP9XX I2C DRIVER
20078 M:      George Cherian <gcherian@marvell.com>
20079 L:      linux-i2c@vger.kernel.org
20080 S:      Supported
20081 W:      http://www.marvell.com
20082 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
20083 F:      drivers/i2c/busses/i2c-xlp9xx.c
20084
20085 XRA1403 GPIO EXPANDER
20086 M:      Nandor Han <nandor.han@ge.com>
20087 M:      Semi Malinen <semi.malinen@ge.com>
20088 L:      linux-gpio@vger.kernel.org
20089 S:      Maintained
20090 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
20091 F:      drivers/gpio/gpio-xra1403.c
20092
20093 XTENSA XTFPGA PLATFORM SUPPORT
20094 M:      Max Filippov <jcmvbkbc@gmail.com>
20095 L:      linux-xtensa@linux-xtensa.org
20096 S:      Maintained
20097 F:      drivers/spi/spi-xtensa-xtfpga.c
20098 F:      sound/soc/xtensa/xtfpga-i2s.c
20099
20100 YAM DRIVER FOR AX.25
20101 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
20102 L:      linux-hams@vger.kernel.org
20103 S:      Maintained
20104 F:      drivers/net/hamradio/yam*
20105 F:      include/linux/yam.h
20106
20107 YAMA SECURITY MODULE
20108 M:      Kees Cook <keescook@chromium.org>
20109 S:      Supported
20110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
20111 F:      Documentation/admin-guide/LSM/Yama.rst
20112 F:      security/yama/
20113
20114 YEALINK PHONE DRIVER
20115 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
20116 L:      usbb2k-api-dev@nongnu.org
20117 S:      Maintained
20118 F:      Documentation/input/devices/yealink.rst
20119 F:      drivers/input/misc/yealink.*
20120
20121 Z8530 DRIVER FOR AX.25
20122 M:      Joerg Reuter <jreuter@yaina.de>
20123 L:      linux-hams@vger.kernel.org
20124 S:      Maintained
20125 W:      http://yaina.de/jreuter/
20126 W:      http://www.qsl.net/dl1bke/
20127 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
20128 F:      drivers/net/hamradio/*scc.c
20129 F:      drivers/net/hamradio/z8530.h
20130
20131 ZBUD COMPRESSED PAGE ALLOCATOR
20132 M:      Seth Jennings <sjenning@redhat.com>
20133 M:      Dan Streetman <ddstreet@ieee.org>
20134 L:      linux-mm@kvack.org
20135 S:      Maintained
20136 F:      include/linux/zbud.h
20137 F:      mm/zbud.c
20138
20139 ZD1211RW WIRELESS DRIVER
20140 M:      Daniel Drake <dsd@gentoo.org>
20141 M:      Ulrich Kunitz <kune@deine-taler.de>
20142 L:      linux-wireless@vger.kernel.org
20143 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
20144 S:      Maintained
20145 W:      http://zd1211.ath.cx/wiki/DriverRewrite
20146 F:      drivers/net/wireless/zydas/zd1211rw/
20147
20148 ZD1301 MEDIA DRIVER
20149 M:      Antti Palosaari <crope@iki.fi>
20150 L:      linux-media@vger.kernel.org
20151 S:      Maintained
20152 W:      https://linuxtv.org/
20153 W:      http://palosaari.fi/linux/
20154 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20155 F:      drivers/media/usb/dvb-usb-v2/zd1301*
20156
20157 ZD1301_DEMOD MEDIA DRIVER
20158 M:      Antti Palosaari <crope@iki.fi>
20159 L:      linux-media@vger.kernel.org
20160 S:      Maintained
20161 W:      https://linuxtv.org/
20162 W:      http://palosaari.fi/linux/
20163 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20164 F:      drivers/media/dvb-frontends/zd1301_demod*
20165
20166 ZHAOXIN PROCESSOR SUPPORT
20167 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
20168 L:      linux-kernel@vger.kernel.org
20169 S:      Maintained
20170 F:      arch/x86/kernel/cpu/zhaoxin.c
20171
20172 ZONEFS FILESYSTEM
20173 M:      Damien Le Moal <damien.lemoal@wdc.com>
20174 M:      Naohiro Aota <naohiro.aota@wdc.com>
20175 R:      Johannes Thumshirn <jth@kernel.org>
20176 L:      linux-fsdevel@vger.kernel.org
20177 S:      Maintained
20178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
20179 F:      Documentation/filesystems/zonefs.rst
20180 F:      fs/zonefs/
20181
20182 ZPOOL COMPRESSED PAGE STORAGE API
20183 M:      Dan Streetman <ddstreet@ieee.org>
20184 L:      linux-mm@kvack.org
20185 S:      Maintained
20186 F:      include/linux/zpool.h
20187 F:      mm/zpool.c
20188
20189 ZR36067 VIDEO FOR LINUX DRIVER
20190 M:      Corentin Labbe <clabbe@baylibre.com>
20191 L:      mjpeg-users@lists.sourceforge.net
20192 L:      linux-media@vger.kernel.org
20193 S:      Maintained
20194 W:      http://mjpeg.sourceforge.net/driver-zoran/
20195 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20196 F:      Documentation/driver-api/media/drivers/zoran.rst
20197 F:      drivers/staging/media/zoran/
20198
20199 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
20200 M:      Minchan Kim <minchan@kernel.org>
20201 M:      Nitin Gupta <ngupta@vflare.org>
20202 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20203 L:      linux-kernel@vger.kernel.org
20204 S:      Maintained
20205 F:      Documentation/admin-guide/blockdev/zram.rst
20206 F:      drivers/block/zram/
20207
20208 ZS DECSTATION Z85C30 SERIAL DRIVER
20209 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
20210 S:      Maintained
20211 F:      drivers/tty/serial/zs.*
20212
20213 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
20214 M:      Minchan Kim <minchan@kernel.org>
20215 M:      Nitin Gupta <ngupta@vflare.org>
20216 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20217 L:      linux-mm@kvack.org
20218 S:      Maintained
20219 F:      Documentation/vm/zsmalloc.rst
20220 F:      include/linux/zsmalloc.h
20221 F:      mm/zsmalloc.c
20222
20223 ZSWAP COMPRESSED SWAP CACHING
20224 M:      Seth Jennings <sjenning@redhat.com>
20225 M:      Dan Streetman <ddstreet@ieee.org>
20226 M:      Vitaly Wool <vitaly.wool@konsulko.com>
20227 L:      linux-mm@kvack.org
20228 S:      Maintained
20229 F:      mm/zswap.c
20230
20231 THE REST
20232 M:      Linus Torvalds <torvalds@linux-foundation.org>
20233 L:      linux-kernel@vger.kernel.org
20234 S:      Buried alive in reporters
20235 Q:      http://patchwork.kernel.org/project/LKML/list/
20236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
20237 F:      *
20238 F:      */