OSDN Git Service

livepatch: Reorder to use before freeing a pointer
[uclinux-h8/linux.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 R:      Christian Schoenebeck <linux_oss@crudebyte.com>
230 L:      v9fs-developer@lists.sourceforge.net
231 S:      Maintained
232 W:      http://swik.net/v9fs
233 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
235 T:      git git://github.com/martinetd/linux.git
236 F:      Documentation/filesystems/9p.rst
237 F:      fs/9p/
238 F:      include/net/9p/
239 F:      include/trace/events/9p.h
240 F:      include/uapi/linux/virtio_9p.h
241 F:      net/9p/
242
243 A8293 MEDIA DRIVER
244 M:      Antti Palosaari <crope@iki.fi>
245 L:      linux-media@vger.kernel.org
246 S:      Maintained
247 W:      https://linuxtv.org
248 W:      http://palosaari.fi/linux/
249 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
250 T:      git git://linuxtv.org/anttip/media_tree.git
251 F:      drivers/media/dvb-frontends/a8293*
252
253 AACRAID SCSI RAID DRIVER
254 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
255 L:      linux-scsi@vger.kernel.org
256 S:      Supported
257 W:      http://www.adaptec.com/
258 F:      Documentation/scsi/aacraid.rst
259 F:      drivers/scsi/aacraid/
260
261 ABI/API
262 L:      linux-api@vger.kernel.org
263 F:      include/linux/syscalls.h
264 F:      kernel/sys_ni.c
265 X:      include/uapi/
266 X:      arch/*/include/uapi/
267
268 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
269 M:      Hans de Goede <hdegoede@redhat.com>
270 L:      linux-hwmon@vger.kernel.org
271 S:      Maintained
272 F:      drivers/hwmon/abituguru.c
273
274 ABIT UGURU 3 HARDWARE MONITOR DRIVER
275 M:      Alistair John Strachan <alistair@devzero.co.uk>
276 L:      linux-hwmon@vger.kernel.org
277 S:      Maintained
278 F:      drivers/hwmon/abituguru3.c
279
280 ACCES 104-DIO-48E GPIO DRIVER
281 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
282 L:      linux-gpio@vger.kernel.org
283 S:      Maintained
284 F:      drivers/gpio/gpio-104-dio-48e.c
285
286 ACCES 104-IDI-48 GPIO DRIVER
287 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
288 L:      linux-gpio@vger.kernel.org
289 S:      Maintained
290 F:      drivers/gpio/gpio-104-idi-48.c
291
292 ACCES 104-IDIO-16 GPIO DRIVER
293 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
294 L:      linux-gpio@vger.kernel.org
295 S:      Maintained
296 F:      drivers/gpio/gpio-104-idio-16.c
297
298 ACCES 104-QUAD-8 DRIVER
299 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
300 M:      Syed Nayyar Waris <syednwaris@gmail.com>
301 L:      linux-iio@vger.kernel.org
302 S:      Maintained
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" <rafael@kernel.org>
338 R:      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" <rafael@kernel.org>
359 R:      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:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
369 L:      linux-acpi@vger.kernel.org
370 L:      devel@acpica.org
371 S:      Supported
372 W:      https://acpica.org/
373 W:      https://github.com/acpica/acpica/
374 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
375 B:      https://bugzilla.kernel.org
376 B:      https://bugs.acpica.org
377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
378 F:      drivers/acpi/acpica/
379 F:      include/acpi/
380 F:      tools/power/acpi/
381
382 ACPI FOR ARM64 (ACPI/arm64)
383 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
384 M:      Hanjun Guo <guohanjun@huawei.com>
385 M:      Sudeep Holla <sudeep.holla@arm.com>
386 L:      linux-acpi@vger.kernel.org
387 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
388 S:      Maintained
389 F:      drivers/acpi/arm64
390
391 ACPI I2C MULTI INSTANTIATE DRIVER
392 M:      Hans de Goede <hdegoede@redhat.com>
393 L:      platform-driver-x86@vger.kernel.org
394 S:      Maintained
395 F:      drivers/platform/x86/i2c-multi-instantiate.c
396
397 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
398 M:      Sudeep Holla <sudeep.holla@arm.com>
399 L:      linux-acpi@vger.kernel.org
400 S:      Supported
401 F:      drivers/mailbox/pcc.c
402
403 ACPI PMIC DRIVERS
404 M:      "Rafael J. Wysocki" <rafael@kernel.org>
405 M:      Len Brown <lenb@kernel.org>
406 R:      Andy Shevchenko <andy@kernel.org>
407 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
408 L:      linux-acpi@vger.kernel.org
409 S:      Supported
410 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
411 B:      https://bugzilla.kernel.org
412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
413 F:      drivers/acpi/pmic/
414
415 ACPI THERMAL DRIVER
416 M:      Rafael J. Wysocki <rafael@kernel.org>
417 R:      Zhang Rui <rui.zhang@intel.com>
418 L:      linux-acpi@vger.kernel.org
419 S:      Supported
420 W:      https://01.org/linux-acpi
421 B:      https://bugzilla.kernel.org
422 F:      drivers/acpi/*thermal*
423
424 ACPI VIOT DRIVER
425 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
426 L:      linux-acpi@vger.kernel.org
427 L:      iommu@lists.linux-foundation.org
428 S:      Maintained
429 F:      drivers/acpi/viot.c
430 F:      include/linux/acpi_viot.h
431
432 ACPI WMI DRIVER
433 L:      platform-driver-x86@vger.kernel.org
434 S:      Orphan
435 F:      drivers/platform/x86/wmi.c
436 F:      include/uapi/linux/wmi.h
437
438 ACRN HYPERVISOR SERVICE MODULE
439 M:      Fei Li <fei1.li@intel.com>
440 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
441 S:      Supported
442 W:      https://projectacrn.org
443 F:      Documentation/virt/acrn/
444 F:      drivers/virt/acrn/
445 F:      include/uapi/linux/acrn.h
446
447 AD1889 ALSA SOUND DRIVER
448 L:      linux-parisc@vger.kernel.org
449 S:      Maintained
450 W:      https://parisc.wiki.kernel.org/index.php/AD1889
451 F:      sound/pci/ad1889.*
452
453 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
454 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
455 L:      linux-iio@vger.kernel.org
456 S:      Supported
457 F:      drivers/iio/potentiometer/ad5110.c
458
459 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
460 M:      Michael Hennerich <michael.hennerich@analog.com>
461 S:      Supported
462 W:      http://wiki.analog.com/AD5254
463 W:      http://ez.analog.com/community/linux-device-drivers
464 F:      drivers/misc/ad525x_dpot.c
465
466 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
467 M:      Michael Hennerich <michael.hennerich@analog.com>
468 S:      Supported
469 W:      http://wiki.analog.com/AD5398
470 W:      http://ez.analog.com/community/linux-device-drivers
471 F:      drivers/regulator/ad5398.c
472
473 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
474 M:      Michael Hennerich <michael.hennerich@analog.com>
475 S:      Supported
476 W:      http://wiki.analog.com/AD7142
477 W:      http://ez.analog.com/community/linux-device-drivers
478 F:      drivers/input/misc/ad714x.c
479
480 AD7877 TOUCHSCREEN DRIVER
481 M:      Michael Hennerich <michael.hennerich@analog.com>
482 S:      Supported
483 W:      http://wiki.analog.com/AD7877
484 W:      http://ez.analog.com/community/linux-device-drivers
485 F:      drivers/input/touchscreen/ad7877.c
486
487 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
488 M:      Michael Hennerich <michael.hennerich@analog.com>
489 S:      Supported
490 W:      http://wiki.analog.com/AD7879
491 W:      http://ez.analog.com/community/linux-device-drivers
492 F:      drivers/input/touchscreen/ad7879.c
493
494 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
495 M:      Jiri Kosina <jikos@kernel.org>
496 S:      Maintained
497
498 ADF7242 IEEE 802.15.4 RADIO DRIVER
499 M:      Michael Hennerich <michael.hennerich@analog.com>
500 L:      linux-wpan@vger.kernel.org
501 S:      Supported
502 W:      https://wiki.analog.com/ADF7242
503 W:      http://ez.analog.com/community/linux-device-drivers
504 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
505 F:      drivers/net/ieee802154/adf7242.c
506
507 ADM1025 HARDWARE MONITOR DRIVER
508 M:      Jean Delvare <jdelvare@suse.com>
509 L:      linux-hwmon@vger.kernel.org
510 S:      Maintained
511 F:      Documentation/hwmon/adm1025.rst
512 F:      drivers/hwmon/adm1025.c
513
514 ADM1029 HARDWARE MONITOR DRIVER
515 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
516 L:      linux-hwmon@vger.kernel.org
517 S:      Maintained
518 F:      drivers/hwmon/adm1029.c
519
520 ADM8211 WIRELESS DRIVER
521 L:      linux-wireless@vger.kernel.org
522 S:      Orphan
523 W:      https://wireless.wiki.kernel.org/
524 F:      drivers/net/wireless/admtek/adm8211.*
525
526 ADP1653 FLASH CONTROLLER DRIVER
527 M:      Sakari Ailus <sakari.ailus@iki.fi>
528 L:      linux-media@vger.kernel.org
529 S:      Maintained
530 F:      drivers/media/i2c/adp1653.c
531 F:      include/media/i2c/adp1653.h
532
533 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
534 M:      Michael Hennerich <michael.hennerich@analog.com>
535 S:      Supported
536 W:      http://wiki.analog.com/ADP5520
537 W:      http://ez.analog.com/community/linux-device-drivers
538 F:      drivers/gpio/gpio-adp5520.c
539 F:      drivers/input/keyboard/adp5520-keys.c
540 F:      drivers/leds/leds-adp5520.c
541 F:      drivers/mfd/adp5520.c
542 F:      drivers/video/backlight/adp5520_bl.c
543
544 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
545 M:      Michael Hennerich <michael.hennerich@analog.com>
546 S:      Supported
547 W:      http://wiki.analog.com/ADP5588
548 W:      http://ez.analog.com/community/linux-device-drivers
549 F:      drivers/gpio/gpio-adp5588.c
550 F:      drivers/input/keyboard/adp5588-keys.c
551
552 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
553 M:      Michael Hennerich <michael.hennerich@analog.com>
554 S:      Supported
555 W:      http://wiki.analog.com/ADP8860
556 W:      http://ez.analog.com/community/linux-device-drivers
557 F:      drivers/video/backlight/adp8860_bl.c
558
559 ADT746X FAN DRIVER
560 M:      Colin Leroy <colin@colino.net>
561 S:      Maintained
562 F:      drivers/macintosh/therm_adt746x.c
563
564 ADT7475 HARDWARE MONITOR DRIVER
565 M:      Jean Delvare <jdelvare@suse.com>
566 L:      linux-hwmon@vger.kernel.org
567 S:      Maintained
568 F:      Documentation/hwmon/adt7475.rst
569 F:      drivers/hwmon/adt7475.c
570
571 ADVANSYS SCSI DRIVER
572 M:      Matthew Wilcox <willy@infradead.org>
573 M:      Hannes Reinecke <hare@suse.com>
574 L:      linux-scsi@vger.kernel.org
575 S:      Maintained
576 F:      Documentation/scsi/advansys.rst
577 F:      drivers/scsi/advansys.c
578
579 ADVANTECH SWBTN DRIVER
580 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
581 L:      platform-driver-x86@vger.kernel.org
582 S:      Maintained
583 F:      drivers/platform/x86/adv_swbutton.c
584
585 ADXL313 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
586 M:      Lucas Stankus <lucas.p.stankus@gmail.com>
587 S:      Supported
588 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl313.yaml
589 F:      drivers/iio/accel/adxl313*
590
591 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
592 M:      Michael Hennerich <michael.hennerich@analog.com>
593 S:      Supported
594 W:      http://wiki.analog.com/ADXL345
595 W:      http://ez.analog.com/community/linux-device-drivers
596 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
597 F:      drivers/input/misc/adxl34x.c
598
599 ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
600 M:      Puranjay Mohan <puranjay12@gmail.com>
601 L:      linux-iio@vger.kernel.org
602 S:      Supported
603 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml
604 F:      drivers/iio/accel/adxl355.h
605 F:      drivers/iio/accel/adxl355_core.c
606 F:      drivers/iio/accel/adxl355_i2c.c
607 F:      drivers/iio/accel/adxl355_spi.c
608
609 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
610 M:      Michael Hennerich <michael.hennerich@analog.com>
611 S:      Supported
612 W:      http://ez.analog.com/community/linux-device-drivers
613 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
614 F:      drivers/iio/accel/adxl372.c
615 F:      drivers/iio/accel/adxl372_i2c.c
616 F:      drivers/iio/accel/adxl372_spi.c
617
618 AF9013 MEDIA DRIVER
619 M:      Antti Palosaari <crope@iki.fi>
620 L:      linux-media@vger.kernel.org
621 S:      Maintained
622 W:      https://linuxtv.org
623 W:      http://palosaari.fi/linux/
624 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
625 T:      git git://linuxtv.org/anttip/media_tree.git
626 F:      drivers/media/dvb-frontends/af9013*
627
628 AF9033 MEDIA DRIVER
629 M:      Antti Palosaari <crope@iki.fi>
630 L:      linux-media@vger.kernel.org
631 S:      Maintained
632 W:      https://linuxtv.org
633 W:      http://palosaari.fi/linux/
634 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
635 T:      git git://linuxtv.org/anttip/media_tree.git
636 F:      drivers/media/dvb-frontends/af9033*
637
638 AFFS FILE SYSTEM
639 M:      David Sterba <dsterba@suse.com>
640 L:      linux-fsdevel@vger.kernel.org
641 S:      Odd Fixes
642 F:      Documentation/filesystems/affs.rst
643 F:      fs/affs/
644
645 AFS FILESYSTEM
646 M:      David Howells <dhowells@redhat.com>
647 M:      Marc Dionne <marc.dionne@auristor.com>
648 L:      linux-afs@lists.infradead.org
649 S:      Supported
650 W:      https://www.infradead.org/~dhowells/kafs/
651 F:      Documentation/filesystems/afs.rst
652 F:      fs/afs/
653 F:      include/trace/events/afs.h
654
655 AGPGART DRIVER
656 M:      David Airlie <airlied@linux.ie>
657 S:      Maintained
658 T:      git git://anongit.freedesktop.org/drm/drm
659 F:      drivers/char/agp/
660 F:      include/linux/agp*
661 F:      include/uapi/linux/agp*
662
663 AHA152X SCSI DRIVER
664 M:      "Juergen E. Fischer" <fischer@norbit.de>
665 L:      linux-scsi@vger.kernel.org
666 S:      Maintained
667 F:      drivers/scsi/aha152x*
668 F:      drivers/scsi/pcmcia/aha152x*
669
670 AIC7XXX / AIC79XX SCSI DRIVER
671 M:      Hannes Reinecke <hare@suse.com>
672 L:      linux-scsi@vger.kernel.org
673 S:      Maintained
674 F:      drivers/scsi/aic7xxx/
675
676 AIMSLAB FM RADIO RECEIVER DRIVER
677 M:      Hans Verkuil <hverkuil@xs4all.nl>
678 L:      linux-media@vger.kernel.org
679 S:      Maintained
680 W:      https://linuxtv.org
681 T:      git git://linuxtv.org/media_tree.git
682 F:      drivers/media/radio/radio-aimslab*
683
684 AIO
685 M:      Benjamin LaHaise <bcrl@kvack.org>
686 L:      linux-aio@kvack.org
687 S:      Supported
688 F:      fs/aio.c
689 F:      include/linux/*aio*.h
690
691 AIRSPY MEDIA DRIVER
692 M:      Antti Palosaari <crope@iki.fi>
693 L:      linux-media@vger.kernel.org
694 S:      Maintained
695 W:      https://linuxtv.org
696 W:      http://palosaari.fi/linux/
697 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
698 T:      git git://linuxtv.org/anttip/media_tree.git
699 F:      drivers/media/usb/airspy/
700
701 ALACRITECH GIGABIT ETHERNET DRIVER
702 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
703 S:      Maintained
704 F:      drivers/net/ethernet/alacritech/*
705
706 ALCATEL SPEEDTOUCH USB DRIVER
707 M:      Duncan Sands <duncan.sands@free.fr>
708 L:      linux-usb@vger.kernel.org
709 S:      Maintained
710 W:      http://www.linux-usb.org/SpeedTouch/
711 F:      drivers/usb/atm/speedtch.c
712 F:      drivers/usb/atm/usbatm.c
713
714 ALCHEMY AU1XX0 MMC DRIVER
715 M:      Manuel Lauss <manuel.lauss@gmail.com>
716 S:      Maintained
717 F:      drivers/mmc/host/au1xmmc.c
718
719 ALI1563 I2C DRIVER
720 M:      Rudolf Marek <r.marek@assembler.cz>
721 L:      linux-i2c@vger.kernel.org
722 S:      Maintained
723 F:      Documentation/i2c/busses/i2c-ali1563.rst
724 F:      drivers/i2c/busses/i2c-ali1563.c
725
726 ALIENWARE WMI DRIVER
727 L:      Dell.Client.Kernel@dell.com
728 S:      Maintained
729 F:      drivers/platform/x86/dell/alienware-wmi.c
730
731 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
732 M:      Tomislav Denis <tomislav.denis@avl.com>
733 L:      linux-iio@vger.kernel.org
734 S:      Maintained
735 W:      http://www.allsensors.com/
736 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
737 F:      drivers/iio/pressure/dlhl60d.c
738
739 ALLEGRO DVT VIDEO IP CORE DRIVER
740 M:      Michael Tretter <m.tretter@pengutronix.de>
741 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
742 L:      linux-media@vger.kernel.org
743 S:      Maintained
744 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
745 F:      drivers/media/platform/allegro-dvt/
746
747 ALLWINNER A10 CSI DRIVER
748 M:      Maxime Ripard <mripard@kernel.org>
749 L:      linux-media@vger.kernel.org
750 S:      Maintained
751 T:      git git://linuxtv.org/media_tree.git
752 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
753 F:      drivers/media/platform/sunxi/sun4i-csi/
754
755 ALLWINNER CPUFREQ DRIVER
756 M:      Yangtao Li <tiny.windzz@gmail.com>
757 L:      linux-pm@vger.kernel.org
758 S:      Maintained
759 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
760 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
761
762 ALLWINNER CRYPTO DRIVERS
763 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
764 L:      linux-crypto@vger.kernel.org
765 S:      Maintained
766 F:      drivers/crypto/allwinner/
767
768 ALLWINNER HARDWARE SPINLOCK SUPPORT
769 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
770 S:      Maintained
771 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml
772 F:      drivers/hwspinlock/sun6i_hwspinlock.c
773
774 ALLWINNER THERMAL DRIVER
775 M:      Vasily Khoruzhick <anarsoul@gmail.com>
776 M:      Yangtao Li <tiny.windzz@gmail.com>
777 L:      linux-pm@vger.kernel.org
778 S:      Maintained
779 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
780 F:      drivers/thermal/sun8i_thermal.c
781
782 ALLWINNER VPU DRIVER
783 M:      Maxime Ripard <mripard@kernel.org>
784 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
785 L:      linux-media@vger.kernel.org
786 S:      Maintained
787 F:      drivers/staging/media/sunxi/cedrus/
788
789 ALPHA PORT
790 M:      Richard Henderson <rth@twiddle.net>
791 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
792 M:      Matt Turner <mattst88@gmail.com>
793 L:      linux-alpha@vger.kernel.org
794 S:      Odd Fixes
795 F:      arch/alpha/
796
797 ALPS PS/2 TOUCHPAD DRIVER
798 R:      Pali Rohár <pali@kernel.org>
799 F:      drivers/input/mouse/alps.*
800
801 ALTERA I2C CONTROLLER DRIVER
802 M:      Thor Thayer <thor.thayer@linux.intel.com>
803 S:      Maintained
804 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
805 F:      drivers/i2c/busses/i2c-altera.c
806
807 ALTERA MAILBOX DRIVER
808 M:      Mun Yew Tham <mun.yew.tham@intel.com>
809 S:      Maintained
810 F:      drivers/mailbox/mailbox-altera.c
811
812 ALTERA MSGDMA IP CORE DRIVER
813 M:      Olivier Dautricourt <olivier.dautricourt@orolia.com>
814 R:      Stefan Roese <sr@denx.de>
815 L:      dmaengine@vger.kernel.org
816 S:      Odd Fixes
817 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
818 F:      drivers/dma/altera-msgdma.c
819
820 ALTERA PIO DRIVER
821 M:      Mun Yew Tham <mun.yew.tham@intel.com>
822 L:      linux-gpio@vger.kernel.org
823 S:      Maintained
824 F:      drivers/gpio/gpio-altera.c
825
826 ALTERA SYSTEM MANAGER DRIVER
827 M:      Thor Thayer <thor.thayer@linux.intel.com>
828 S:      Maintained
829 F:      drivers/mfd/altera-sysmgr.c
830 F:      include/linux/mfd/altera-sysmgr.h
831
832 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
833 M:      Thor Thayer <thor.thayer@linux.intel.com>
834 S:      Maintained
835 F:      drivers/gpio/gpio-altera-a10sr.c
836 F:      drivers/mfd/altera-a10sr.c
837 F:      drivers/reset/reset-a10sr.c
838 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
839 F:      include/linux/mfd/altera-a10sr.h
840
841 ALTERA TRIPLE SPEED ETHERNET DRIVER
842 M:      Joyce Ooi <joyce.ooi@intel.com>
843 L:      netdev@vger.kernel.org
844 S:      Maintained
845 F:      drivers/net/ethernet/altera/
846
847 ALTERA UART/JTAG UART SERIAL DRIVERS
848 M:      Tobias Klauser <tklauser@distanz.ch>
849 L:      linux-serial@vger.kernel.org
850 S:      Maintained
851 F:      drivers/tty/serial/altera_jtaguart.c
852 F:      drivers/tty/serial/altera_uart.c
853 F:      include/linux/altera_jtaguart.h
854 F:      include/linux/altera_uart.h
855
856 AMAZON ANNAPURNA LABS FIC DRIVER
857 M:      Talel Shenhar <talel@amazon.com>
858 S:      Maintained
859 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
860 F:      drivers/irqchip/irq-al-fic.c
861
862 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
863 M:      Talel Shenhar <talel@amazon.com>
864 M:      Talel Shenhar <talelshenhar@gmail.com>
865 S:      Maintained
866 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
867 F:      drivers/edac/al_mc_edac.c
868
869 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
870 M:      Talel Shenhar <talel@amazon.com>
871 S:      Maintained
872 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
873 F:      drivers/thermal/thermal_mmio.c
874
875 AMAZON ETHERNET DRIVERS
876 M:      Shay Agroskin <shayagr@amazon.com>
877 M:      Arthur Kiyanovski <akiyano@amazon.com>
878 R:      David Arinzon <darinzon@amazon.com>
879 R:      Noam Dagan <ndagan@amazon.com>
880 R:      Saeed Bishara <saeedb@amazon.com>
881 L:      netdev@vger.kernel.org
882 S:      Supported
883 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
884 F:      drivers/net/ethernet/amazon/
885
886 AMAZON RDMA EFA DRIVER
887 M:      Gal Pressman <galpress@amazon.com>
888 R:      Yossi Leybovich <sleybo@amazon.com>
889 L:      linux-rdma@vger.kernel.org
890 S:      Supported
891 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
892 F:      drivers/infiniband/hw/efa/
893 F:      include/uapi/rdma/efa-abi.h
894
895 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
896 M:      Tom Lendacky <thomas.lendacky@amd.com>
897 M:      John Allen <john.allen@amd.com>
898 L:      linux-crypto@vger.kernel.org
899 S:      Supported
900 F:      drivers/crypto/ccp/
901 F:      include/linux/ccp.h
902
903 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
904 M:      Brijesh Singh <brijesh.singh@amd.com>
905 M:      Tom Lendacky <thomas.lendacky@amd.com>
906 L:      linux-crypto@vger.kernel.org
907 S:      Supported
908 F:      drivers/crypto/ccp/sev*
909 F:      include/uapi/linux/psp-sev.h
910
911 AMD DISPLAY CORE
912 M:      Harry Wentland <harry.wentland@amd.com>
913 M:      Leo Li <sunpeng.li@amd.com>
914 M:      Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
915 L:      amd-gfx@lists.freedesktop.org
916 S:      Supported
917 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
918 F:      drivers/gpu/drm/amd/display/
919
920 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
921 M:      Huang Rui <ray.huang@amd.com>
922 L:      linux-hwmon@vger.kernel.org
923 S:      Supported
924 F:      Documentation/hwmon/fam15h_power.rst
925 F:      drivers/hwmon/fam15h_power.c
926
927 AMD FCH GPIO DRIVER
928 M:      Enrico Weigelt, metux IT consult <info@metux.net>
929 L:      linux-gpio@vger.kernel.org
930 S:      Maintained
931 F:      drivers/gpio/gpio-amd-fch.c
932 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
933
934 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
935 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
936 S:      Orphan
937 F:      drivers/usb/gadget/udc/amd5536udc.*
938
939 AMD GEODE PROCESSOR/CHIPSET SUPPORT
940 M:      Andres Salomon <dilinger@queued.net>
941 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
942 S:      Supported
943 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
944 F:      arch/x86/include/asm/geode.h
945 F:      drivers/char/hw_random/geode-rng.c
946 F:      drivers/crypto/geode*
947 F:      drivers/video/fbdev/geode/
948
949 AMD IOMMU (AMD-VI)
950 M:      Joerg Roedel <joro@8bytes.org>
951 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
952 L:      iommu@lists.linux-foundation.org
953 S:      Maintained
954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
955 F:      drivers/iommu/amd/
956 F:      include/linux/amd-iommu.h
957
958 AMD KFD
959 M:      Felix Kuehling <Felix.Kuehling@amd.com>
960 L:      amd-gfx@lists.freedesktop.org
961 S:      Supported
962 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
963 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
964 F:      drivers/gpu/drm/amd/amdkfd/
965 F:      drivers/gpu/drm/amd/include/cik_structs.h
966 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
967 F:      drivers/gpu/drm/amd/include/v9_structs.h
968 F:      drivers/gpu/drm/amd/include/vi_structs.h
969 F:      include/uapi/linux/kfd_ioctl.h
970 F:      include/uapi/linux/kfd_sysfs.h
971
972 AMD SPI DRIVER
973 M:      Sanjay R Mehta <sanju.mehta@amd.com>
974 S:      Maintained
975 F:      drivers/spi/spi-amd.c
976
977 AMD MP2 I2C DRIVER
978 M:      Elie Morisse <syniurge@gmail.com>
979 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
980 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
981 L:      linux-i2c@vger.kernel.org
982 S:      Maintained
983 F:      drivers/i2c/busses/i2c-amd-mp2*
984
985 AMD PMC DRIVER
986 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
987 L:      platform-driver-x86@vger.kernel.org
988 S:      Maintained
989 F:      drivers/platform/x86/amd-pmc.*
990
991 AMD POWERPLAY AND SWSMU
992 M:      Evan Quan <evan.quan@amd.com>
993 L:      amd-gfx@lists.freedesktop.org
994 S:      Supported
995 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
996 F:      drivers/gpu/drm/amd/pm/
997
998 AMD PSTATE DRIVER
999 M:      Huang Rui <ray.huang@amd.com>
1000 L:      linux-pm@vger.kernel.org
1001 S:      Supported
1002 F:      Documentation/admin-guide/pm/amd-pstate.rst
1003 F:      drivers/cpufreq/amd-pstate*
1004
1005 AMD PTDMA DRIVER
1006 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1007 L:      dmaengine@vger.kernel.org
1008 S:      Maintained
1009 F:      drivers/dma/ptdma/
1010
1011 AMD SEATTLE DEVICE TREE SUPPORT
1012 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
1013 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1014 M:      Tom Lendacky <thomas.lendacky@amd.com>
1015 S:      Supported
1016 F:      arch/arm64/boot/dts/amd/
1017
1018 AMD XGBE DRIVER
1019 M:      Tom Lendacky <thomas.lendacky@amd.com>
1020 L:      netdev@vger.kernel.org
1021 S:      Supported
1022 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1023 F:      drivers/net/ethernet/amd/xgbe/
1024
1025 AMD SENSOR FUSION HUB DRIVER
1026 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
1027 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1028 L:      linux-input@vger.kernel.org
1029 S:      Maintained
1030 F:      Documentation/hid/amd-sfh*
1031 F:      drivers/hid/amd-sfh-hid/
1032
1033 AMS AS73211 DRIVER
1034 M:      Christian Eggers <ceggers@arri.de>
1035 L:      linux-iio@vger.kernel.org
1036 S:      Maintained
1037 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1038 F:      drivers/iio/light/as73211.c
1039
1040 AMT (Automatic Multicast Tunneling)
1041 M:      Taehee Yoo <ap420073@gmail.com>
1042 L:      netdev@vger.kernel.org
1043 S:      Maintained
1044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1046 F:      drivers/net/amt.c
1047
1048 ANALOG DEVICES INC AD7192 DRIVER
1049 M:      Alexandru Tachici <alexandru.tachici@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/adc/adi,ad7192.yaml
1054 F:      drivers/iio/adc/ad7192.c
1055
1056 ANALOG DEVICES INC AD7292 DRIVER
1057 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1058 L:      linux-iio@vger.kernel.org
1059 S:      Supported
1060 W:      http://ez.analog.com/community/linux-device-drivers
1061 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1062 F:      drivers/iio/adc/ad7292.c
1063
1064 ANALOG DEVICES INC AD7768-1 DRIVER
1065 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1066 L:      linux-iio@vger.kernel.org
1067 S:      Supported
1068 W:      http://ez.analog.com/community/linux-device-drivers
1069 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1070 F:      drivers/iio/adc/ad7768-1.c
1071
1072 ANALOG DEVICES INC AD7780 DRIVER
1073 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1074 M:      Renato Lui Geh <renatogeh@gmail.com>
1075 L:      linux-iio@vger.kernel.org
1076 S:      Supported
1077 W:      http://ez.analog.com/community/linux-device-drivers
1078 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1079 F:      drivers/iio/adc/ad7780.c
1080
1081 ANALOG DEVICES INC AD74413R DRIVER
1082 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1083 L:      linux-iio@vger.kernel.org
1084 S:      Supported
1085 W:      http://ez.analog.com/community/linux-device-drivers
1086 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml
1087 F:      drivers/iio/addac/ad74413r.c
1088 F:      include/dt-bindings/iio/addac/adi,ad74413r.h
1089
1090 ANALOG DEVICES INC AD9389B DRIVER
1091 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1092 L:      linux-media@vger.kernel.org
1093 S:      Maintained
1094 F:      drivers/media/i2c/ad9389b*
1095
1096 ANALOG DEVICES INC ADGS1408 DRIVER
1097 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1098 S:      Supported
1099 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1100 F:      drivers/mux/adgs1408.c
1101
1102 ANALOG DEVICES INC ADIN DRIVER
1103 M:      Michael Hennerich <michael.hennerich@analog.com>
1104 L:      netdev@vger.kernel.org
1105 S:      Supported
1106 W:      http://ez.analog.com/community/linux-device-drivers
1107 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1108 F:      drivers/net/phy/adin.c
1109
1110 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1111 M:      Nuno Sa <nuno.sa@analog.com>
1112 L:      linux-iio@vger.kernel.org
1113 S:      Supported
1114 F:      drivers/iio/imu/adis.c
1115 F:      include/linux/iio/imu/adis.h
1116
1117 ANALOG DEVICES INC ADIS16460 DRIVER
1118 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1119 L:      linux-iio@vger.kernel.org
1120 S:      Supported
1121 W:      http://ez.analog.com/community/linux-device-drivers
1122 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1123 F:      drivers/iio/imu/adis16460.c
1124
1125 ANALOG DEVICES INC ADIS16475 DRIVER
1126 M:      Nuno Sa <nuno.sa@analog.com>
1127 L:      linux-iio@vger.kernel.org
1128 W:      http://ez.analog.com/community/linux-device-drivers
1129 S:      Supported
1130 F:      drivers/iio/imu/adis16475.c
1131 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1132
1133 ANALOG DEVICES INC ADM1177 DRIVER
1134 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1135 L:      linux-hwmon@vger.kernel.org
1136 S:      Supported
1137 W:      http://ez.analog.com/community/linux-device-drivers
1138 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1139 F:      drivers/hwmon/adm1177.c
1140
1141 ANALOG DEVICES INC ADP5061 DRIVER
1142 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1143 L:      linux-pm@vger.kernel.org
1144 S:      Supported
1145 W:      http://ez.analog.com/community/linux-device-drivers
1146 F:      drivers/power/supply/adp5061.c
1147
1148 ANALOG DEVICES INC ADV7180 DRIVER
1149 M:      Lars-Peter Clausen <lars@metafoo.de>
1150 L:      linux-media@vger.kernel.org
1151 S:      Supported
1152 W:      http://ez.analog.com/community/linux-device-drivers
1153 F:      drivers/media/i2c/adv7180.c
1154 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1155
1156 ANALOG DEVICES INC ADV748X DRIVER
1157 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1158 L:      linux-media@vger.kernel.org
1159 S:      Maintained
1160 F:      Documentation/devicetree/bindings/media/i2c/adv748x.yaml
1161 F:      drivers/media/i2c/adv748x/*
1162
1163 ANALOG DEVICES INC ADV7511 DRIVER
1164 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1165 L:      linux-media@vger.kernel.org
1166 S:      Maintained
1167 F:      drivers/media/i2c/adv7511*
1168
1169 ANALOG DEVICES INC ADV7604 DRIVER
1170 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1171 L:      linux-media@vger.kernel.org
1172 S:      Maintained
1173 F:      drivers/media/i2c/adv7604*
1174 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1175
1176 ANALOG DEVICES INC ADV7842 DRIVER
1177 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1178 L:      linux-media@vger.kernel.org
1179 S:      Maintained
1180 F:      drivers/media/i2c/adv7842*
1181
1182 ANALOG DEVICES INC ADXRS290 DRIVER
1183 M:      Nishant Malpani <nish.malpani25@gmail.com>
1184 L:      linux-iio@vger.kernel.org
1185 S:      Supported
1186 F:      drivers/iio/gyro/adxrs290.c
1187 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1188
1189 ANALOG DEVICES INC ASOC CODEC DRIVERS
1190 M:      Lars-Peter Clausen <lars@metafoo.de>
1191 M:      Nuno Sá <nuno.sa@analog.com>
1192 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1193 S:      Supported
1194 W:      http://wiki.analog.com/
1195 W:      http://ez.analog.com/community/linux-device-drivers
1196 F:      sound/soc/codecs/ad1*
1197 F:      sound/soc/codecs/ad7*
1198 F:      sound/soc/codecs/adau*
1199 F:      sound/soc/codecs/adav*
1200 F:      sound/soc/codecs/sigmadsp.*
1201 F:      sound/soc/codecs/ssm*
1202
1203 ANALOG DEVICES INC DMA DRIVERS
1204 M:      Lars-Peter Clausen <lars@metafoo.de>
1205 S:      Supported
1206 W:      http://ez.analog.com/community/linux-device-drivers
1207 F:      drivers/dma/dma-axi-dmac.c
1208
1209 ANALOG DEVICES INC IIO DRIVERS
1210 M:      Lars-Peter Clausen <lars@metafoo.de>
1211 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1212 S:      Supported
1213 W:      http://wiki.analog.com/
1214 W:      http://ez.analog.com/community/linux-device-drivers
1215 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1216 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1217 F:      Documentation/devicetree/bindings/iio/*/adi,*
1218 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1219 F:      drivers/iio/*/ad*
1220 F:      drivers/iio/adc/ltc249*
1221 F:      drivers/iio/amplifiers/hmc425a.c
1222 F:      drivers/staging/iio/*/ad*
1223 X:      drivers/iio/*/adjd*
1224
1225 ANALOGBITS PLL LIBRARIES
1226 M:      Paul Walmsley <paul.walmsley@sifive.com>
1227 S:      Supported
1228 F:      drivers/clk/analogbits/*
1229 F:      include/linux/clk/analogbits*
1230
1231 ANDES ARCHITECTURE
1232 M:      Nick Hu <nickhu@andestech.com>
1233 M:      Greentime Hu <green.hu@gmail.com>
1234 M:      Vincent Chen <deanbo422@gmail.com>
1235 S:      Supported
1236 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1237 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1238 F:      Documentation/devicetree/bindings/nds32/
1239 F:      arch/nds32/
1240 N:      nds32
1241 K:      nds32
1242
1243 ANDROID CONFIG FRAGMENTS
1244 M:      Rob Herring <robh@kernel.org>
1245 S:      Supported
1246 F:      kernel/configs/android*
1247
1248 ANDROID DRIVERS
1249 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1250 M:      Arve Hjønnevåg <arve@android.com>
1251 M:      Todd Kjos <tkjos@android.com>
1252 M:      Martijn Coenen <maco@android.com>
1253 M:      Joel Fernandes <joel@joelfernandes.org>
1254 M:      Christian Brauner <christian@brauner.io>
1255 M:      Hridya Valsaraju <hridya@google.com>
1256 M:      Suren Baghdasaryan <surenb@google.com>
1257 L:      linux-kernel@vger.kernel.org
1258 S:      Supported
1259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1260 F:      drivers/android/
1261 F:      drivers/staging/android/
1262
1263 ANDROID GOLDFISH PIC DRIVER
1264 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1265 S:      Supported
1266 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1267 F:      drivers/irqchip/irq-goldfish-pic.c
1268
1269 ANDROID GOLDFISH RTC DRIVER
1270 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1271 S:      Supported
1272 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1273 F:      drivers/rtc/rtc-goldfish.c
1274
1275 AOA (Apple Onboard Audio) ALSA DRIVER
1276 M:      Johannes Berg <johannes@sipsolutions.net>
1277 L:      linuxppc-dev@lists.ozlabs.org
1278 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1279 S:      Maintained
1280 F:      sound/aoa/
1281
1282 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1283 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1284 L:      linux-iio@vger.kernel.org
1285 S:      Maintained
1286 F:      drivers/iio/adc/stx104.c
1287
1288 APM DRIVER
1289 M:      Jiri Kosina <jikos@kernel.org>
1290 S:      Odd fixes
1291 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1292 F:      arch/x86/kernel/apm_32.c
1293 F:      drivers/char/apm-emulation.c
1294 F:      include/linux/apm_bios.h
1295 F:      include/uapi/linux/apm_bios.h
1296
1297 APPARMOR SECURITY MODULE
1298 M:      John Johansen <john.johansen@canonical.com>
1299 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1300 S:      Supported
1301 W:      wiki.apparmor.net
1302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1303 F:      Documentation/admin-guide/LSM/apparmor.rst
1304 F:      security/apparmor/
1305
1306 APPLE BCM5974 MULTITOUCH DRIVER
1307 M:      Henrik Rydberg <rydberg@bitmath.org>
1308 L:      linux-input@vger.kernel.org
1309 S:      Odd fixes
1310 F:      drivers/input/mouse/bcm5974.c
1311
1312 APPLE DART IOMMU DRIVER
1313 M:      Sven Peter <sven@svenpeter.dev>
1314 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1315 L:      iommu@lists.linux-foundation.org
1316 S:      Maintained
1317 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1318 F:      drivers/iommu/apple-dart.c
1319
1320 APPLE PCIE CONTROLLER DRIVER
1321 M:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1322 M:      Marc Zyngier <maz@kernel.org>
1323 L:      linux-pci@vger.kernel.org
1324 S:      Maintained
1325 F:      drivers/pci/controller/pcie-apple.c
1326
1327 APPLE SMC DRIVER
1328 M:      Henrik Rydberg <rydberg@bitmath.org>
1329 L:      linux-hwmon@vger.kernel.org
1330 S:      Odd fixes
1331 F:      drivers/hwmon/applesmc.c
1332
1333 APPLETALK NETWORK LAYER
1334 L:      netdev@vger.kernel.org
1335 S:      Odd fixes
1336 F:      drivers/net/appletalk/
1337 F:      include/linux/atalk.h
1338 F:      include/uapi/linux/atalk.h
1339 F:      net/appletalk/
1340
1341 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1342 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1343 S:      Supported
1344 F:      arch/arm64/boot/dts/apm/
1345
1346 APPLIED MICRO (APM) X-GENE SOC EDAC
1347 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1348 S:      Supported
1349 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1350 F:      drivers/edac/xgene_edac.c
1351
1352 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1353 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1354 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1355 S:      Supported
1356 F:      drivers/net/ethernet/apm/xgene-v2/
1357
1358 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1359 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1360 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1361 M:      Quan Nguyen <quan@os.amperecomputing.com>
1362 S:      Supported
1363 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1364 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1365 F:      drivers/net/ethernet/apm/xgene/
1366 F:      drivers/net/mdio/mdio-xgene.c
1367
1368 APPLIED MICRO (APM) X-GENE SOC PMU
1369 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1370 S:      Supported
1371 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1372 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1373 F:      drivers/perf/xgene_pmu.c
1374
1375 APTINA CAMERA SENSOR PLL
1376 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1377 L:      linux-media@vger.kernel.org
1378 S:      Maintained
1379 F:      drivers/media/i2c/aptina-pll.*
1380
1381 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1382 M:      Aleksa Savic <savicaleksa83@gmail.com>
1383 L:      linux-hwmon@vger.kernel.org
1384 S:      Maintained
1385 F:      Documentation/hwmon/aquacomputer_d5next.rst
1386 F:      drivers/hwmon/aquacomputer_d5next.c
1387
1388 AQUANTIA ETHERNET DRIVER (atlantic)
1389 M:      Igor Russkikh <irusskikh@marvell.com>
1390 L:      netdev@vger.kernel.org
1391 S:      Supported
1392 W:      https://www.marvell.com/
1393 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1394 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1395 F:      drivers/net/ethernet/aquantia/atlantic/
1396
1397 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1398 M:      Egor Pomozov <epomozov@marvell.com>
1399 L:      netdev@vger.kernel.org
1400 S:      Supported
1401 W:      http://www.aquantia.com
1402 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1403
1404 ARASAN NAND CONTROLLER DRIVER
1405 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1406 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1407 L:      linux-mtd@lists.infradead.org
1408 S:      Maintained
1409 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1410 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1411
1412 ARC FRAMEBUFFER DRIVER
1413 M:      Jaya Kumar <jayalk@intworks.biz>
1414 S:      Maintained
1415 F:      drivers/video/fbdev/arcfb.c
1416 F:      drivers/video/fbdev/core/fb_defio.c
1417
1418 ARC PGU DRM DRIVER
1419 M:      Alexey Brodkin <abrodkin@synopsys.com>
1420 S:      Supported
1421 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1422 F:      drivers/gpu/drm/tiny/arcpgu.c
1423
1424 ARCNET NETWORK LAYER
1425 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1426 L:      netdev@vger.kernel.org
1427 S:      Maintained
1428 F:      drivers/net/arcnet/
1429 F:      include/uapi/linux/if_arcnet.h
1430
1431 ARM ARCHITECTED TIMER DRIVER
1432 M:      Mark Rutland <mark.rutland@arm.com>
1433 M:      Marc Zyngier <maz@kernel.org>
1434 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1435 S:      Maintained
1436 F:      arch/arm/include/asm/arch_timer.h
1437 F:      arch/arm64/include/asm/arch_timer.h
1438 F:      drivers/clocksource/arm_arch_timer.c
1439
1440 ARM HDLCD DRM DRIVER
1441 M:      Liviu Dudau <liviu.dudau@arm.com>
1442 S:      Supported
1443 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1444 F:      drivers/gpu/drm/arm/hdlcd_*
1445
1446 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1447 M:      Linus Walleij <linus.walleij@linaro.org>
1448 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1449 S:      Maintained
1450 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1451 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1452 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1453 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1454 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1455 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1456 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1457 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1458 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1459 F:      arch/arm/boot/dts/arm-realview-*
1460 F:      arch/arm/boot/dts/integrator*
1461 F:      arch/arm/boot/dts/versatile*
1462 F:      arch/arm/mach-integrator/
1463 F:      arch/arm/mach-realview/
1464 F:      arch/arm/mach-versatile/
1465 F:      arch/arm/plat-versatile/
1466 F:      drivers/bus/arm-integrator-lm.c
1467 F:      drivers/clk/versatile/
1468 F:      drivers/i2c/busses/i2c-versatile.c
1469 F:      drivers/irqchip/irq-versatile-fpga.c
1470 F:      drivers/mtd/maps/physmap-versatile.*
1471 F:      drivers/power/reset/arm-versatile-reboot.c
1472 F:      drivers/soc/versatile/
1473
1474 ARM KOMEDA DRM-KMS DRIVER
1475 M:      James (Qian) Wang <james.qian.wang@arm.com>
1476 M:      Liviu Dudau <liviu.dudau@arm.com>
1477 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1478 L:      Mali DP Maintainers <malidp@foss.arm.com>
1479 S:      Supported
1480 T:      git git://anongit.freedesktop.org/drm/drm-misc
1481 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1482 F:      Documentation/gpu/komeda-kms.rst
1483 F:      drivers/gpu/drm/arm/display/include/
1484 F:      drivers/gpu/drm/arm/display/komeda/
1485
1486 ARM MALI PANFROST DRM DRIVER
1487 M:      Rob Herring <robh@kernel.org>
1488 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1489 R:      Steven Price <steven.price@arm.com>
1490 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1491 L:      dri-devel@lists.freedesktop.org
1492 S:      Supported
1493 T:      git git://anongit.freedesktop.org/drm/drm-misc
1494 F:      drivers/gpu/drm/panfrost/
1495 F:      include/uapi/drm/panfrost_drm.h
1496
1497 ARM MALI-DP DRM DRIVER
1498 M:      Liviu Dudau <liviu.dudau@arm.com>
1499 M:      Brian Starkey <brian.starkey@arm.com>
1500 L:      Mali DP Maintainers <malidp@foss.arm.com>
1501 S:      Supported
1502 T:      git git://anongit.freedesktop.org/drm/drm-misc
1503 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1504 F:      Documentation/gpu/afbc.rst
1505 F:      drivers/gpu/drm/arm/
1506
1507 ARM MFM AND FLOPPY DRIVERS
1508 M:      Ian Molton <spyro@f2s.com>
1509 S:      Maintained
1510 F:      arch/arm/include/asm/floppy.h
1511 F:      arch/arm/mach-rpc/floppydma.S
1512
1513 ARM PMU PROFILING AND DEBUGGING
1514 M:      Will Deacon <will@kernel.org>
1515 M:      Mark Rutland <mark.rutland@arm.com>
1516 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1517 S:      Maintained
1518 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1519 F:      Documentation/devicetree/bindings/perf/
1520 F:      arch/arm*/include/asm/hw_breakpoint.h
1521 F:      arch/arm*/include/asm/perf_event.h
1522 F:      arch/arm*/kernel/hw_breakpoint.c
1523 F:      arch/arm*/kernel/perf_*
1524 F:      drivers/perf/
1525 F:      include/linux/perf/arm_pmu.h
1526
1527 ARM PORT
1528 M:      Russell King <linux@armlinux.org.uk>
1529 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1530 S:      Odd Fixes
1531 W:      http://www.armlinux.org.uk/
1532 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1533 F:      arch/arm/
1534 X:      arch/arm/boot/dts/
1535
1536 ARM PRIMECELL AACI PL041 DRIVER
1537 M:      Russell King <linux@armlinux.org.uk>
1538 S:      Odd Fixes
1539 F:      sound/arm/aaci.*
1540
1541 ARM PRIMECELL BUS SUPPORT
1542 M:      Russell King <linux@armlinux.org.uk>
1543 S:      Odd Fixes
1544 F:      drivers/amba/
1545 F:      include/linux/amba/bus.h
1546
1547 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1548 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1549 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1550 L:      linux-mtd@lists.infradead.org
1551 S:      Maintained
1552 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1553 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1554
1555 ARM PRIMECELL PL35X SMC DRIVER
1556 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1557 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1558 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1559 S:      Maintained
1560 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1561 F:      drivers/memory/pl353-smc.c
1562
1563 ARM PRIMECELL CLCD PL110 DRIVER
1564 M:      Russell King <linux@armlinux.org.uk>
1565 S:      Odd Fixes
1566 F:      drivers/video/fbdev/amba-clcd.*
1567
1568 ARM PRIMECELL KMI PL050 DRIVER
1569 M:      Russell King <linux@armlinux.org.uk>
1570 S:      Odd Fixes
1571 F:      drivers/input/serio/ambakmi.*
1572 F:      include/linux/amba/kmi.h
1573
1574 ARM PRIMECELL MMCI PL180/1 DRIVER
1575 M:      Russell King <linux@armlinux.org.uk>
1576 S:      Odd Fixes
1577 F:      drivers/mmc/host/mmci.*
1578 F:      include/linux/amba/mmci.h
1579
1580 ARM PRIMECELL SSP PL022 SPI DRIVER
1581 M:      Linus Walleij <linus.walleij@linaro.org>
1582 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1583 S:      Maintained
1584 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1585 F:      drivers/spi/spi-pl022.c
1586
1587 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1588 M:      Russell King <linux@armlinux.org.uk>
1589 S:      Odd Fixes
1590 F:      drivers/tty/serial/amba-pl01*.c
1591 F:      include/linux/amba/serial.h
1592
1593 ARM PRIMECELL VIC PL190/PL192 DRIVER
1594 M:      Linus Walleij <linus.walleij@linaro.org>
1595 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1596 S:      Maintained
1597 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1598 F:      drivers/irqchip/irq-vic.c
1599
1600 ARM SMC WATCHDOG DRIVER
1601 M:      Julius Werner <jwerner@chromium.org>
1602 R:      Evan Benn <evanbenn@chromium.org>
1603 S:      Maintained
1604 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1605 F:      drivers/watchdog/arm_smc_wdt.c
1606
1607 ARM SMMU DRIVERS
1608 M:      Will Deacon <will@kernel.org>
1609 R:      Robin Murphy <robin.murphy@arm.com>
1610 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1611 S:      Maintained
1612 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1613 F:      drivers/iommu/arm/
1614 F:      drivers/iommu/io-pgtable-arm*
1615
1616 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1617 M:      Arnd Bergmann <arnd@arndb.de>
1618 M:      Olof Johansson <olof@lixom.net>
1619 M:      soc@kernel.org
1620 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1621 S:      Maintained
1622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1623 F:      arch/arm/boot/dts/Makefile
1624 F:      arch/arm64/boot/dts/Makefile
1625
1626 ARM SUB-ARCHITECTURES
1627 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1628 S:      Maintained
1629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1630 F:      arch/arm/mach-*/
1631 F:      arch/arm/plat-*/
1632
1633 ARM/ACTIONS SEMI ARCHITECTURE
1634 M:      Andreas Färber <afaerber@suse.de>
1635 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1636 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1637 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1638 S:      Maintained
1639 F:      Documentation/devicetree/bindings/arm/actions.yaml
1640 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1641 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1642 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1643 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1644 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1645 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1646 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1647 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1648 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1649 F:      arch/arm/boot/dts/owl-*
1650 F:      arch/arm/mach-actions/
1651 F:      arch/arm64/boot/dts/actions/
1652 F:      drivers/clk/actions/
1653 F:      drivers/clocksource/timer-owl*
1654 F:      drivers/dma/owl-dma.c
1655 F:      drivers/i2c/busses/i2c-owl.c
1656 F:      drivers/irqchip/irq-owl-sirq.c
1657 F:      drivers/mmc/host/owl-mmc.c
1658 F:      drivers/net/ethernet/actions/
1659 F:      drivers/pinctrl/actions/*
1660 F:      drivers/soc/actions/
1661 F:      include/dt-bindings/power/owl-*
1662 F:      include/dt-bindings/reset/actions,*
1663 F:      include/linux/soc/actions/
1664 N:      owl
1665
1666 ARM/ADS SPHERE MACHINE SUPPORT
1667 M:      Lennert Buytenhek <kernel@wantstofly.org>
1668 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1669 S:      Maintained
1670
1671 ARM/AFEB9260 MACHINE SUPPORT
1672 M:      Sergey Lapin <slapin@ossfans.org>
1673 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1674 S:      Maintained
1675
1676 ARM/AJECO 1ARM MACHINE SUPPORT
1677 M:      Lennert Buytenhek <kernel@wantstofly.org>
1678 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1679 S:      Maintained
1680
1681 ARM/Allwinner SoC Clock Support
1682 M:      Emilio López <emilio@elopez.com.ar>
1683 S:      Maintained
1684 F:      drivers/clk/sunxi/
1685
1686 ARM/Allwinner sunXi SoC support
1687 M:      Maxime Ripard <mripard@kernel.org>
1688 M:      Chen-Yu Tsai <wens@csie.org>
1689 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
1690 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1691 S:      Maintained
1692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1693 L:      linux-sunxi@lists.linux.dev
1694 F:      arch/arm/mach-sunxi/
1695 F:      arch/arm64/boot/dts/allwinner/
1696 F:      drivers/clk/sunxi-ng/
1697 F:      drivers/pinctrl/sunxi/
1698 F:      drivers/soc/sunxi/
1699 N:      allwinner
1700 N:      sun[x456789]i
1701 N:      sun50i
1702
1703 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1704 M:      Neil Armstrong <narmstrong@baylibre.com>
1705 M:      Jerome Brunet <jbrunet@baylibre.com>
1706 L:      linux-amlogic@lists.infradead.org
1707 S:      Maintained
1708 F:      Documentation/devicetree/bindings/clock/amlogic*
1709 F:      drivers/clk/meson/
1710 F:      include/dt-bindings/clock/gxbb*
1711 F:      include/dt-bindings/clock/meson*
1712
1713 ARM/Amlogic Meson SoC Crypto Drivers
1714 M:      Corentin Labbe <clabbe@baylibre.com>
1715 L:      linux-crypto@vger.kernel.org
1716 L:      linux-amlogic@lists.infradead.org
1717 S:      Maintained
1718 F:      Documentation/devicetree/bindings/crypto/amlogic*
1719 F:      drivers/crypto/amlogic/
1720
1721 ARM/Amlogic Meson SoC Sound Drivers
1722 M:      Jerome Brunet <jbrunet@baylibre.com>
1723 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1724 S:      Maintained
1725 F:      Documentation/devicetree/bindings/sound/amlogic*
1726 F:      sound/soc/meson/
1727
1728 ARM/Amlogic Meson SoC support
1729 M:      Neil Armstrong <narmstrong@baylibre.com>
1730 M:      Kevin Hilman <khilman@baylibre.com>
1731 R:      Jerome Brunet <jbrunet@baylibre.com>
1732 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1733 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1734 L:      linux-amlogic@lists.infradead.org
1735 S:      Maintained
1736 W:      http://linux-meson.com/
1737 F:      arch/arm/boot/dts/meson*
1738 F:      arch/arm/mach-meson/
1739 F:      arch/arm64/boot/dts/amlogic/
1740 F:      drivers/mmc/host/meson*
1741 F:      drivers/pinctrl/meson/
1742 F:      drivers/rtc/rtc-meson*
1743 F:      drivers/soc/amlogic/
1744 N:      meson
1745
1746 ARM/Annapurna Labs ALPINE ARCHITECTURE
1747 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1748 M:      Antoine Tenart <atenart@kernel.org>
1749 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1750 S:      Maintained
1751 F:      arch/arm/boot/dts/alpine*
1752 F:      arch/arm/mach-alpine/
1753 F:      arch/arm64/boot/dts/amazon/
1754 F:      drivers/*/*alpine*
1755
1756 ARM/APPLE MACHINE SUPPORT
1757 M:      Hector Martin <marcan@marcan.st>
1758 M:      Sven Peter <sven@svenpeter.dev>
1759 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1760 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1761 S:      Maintained
1762 W:      https://asahilinux.org
1763 B:      https://github.com/AsahiLinux/linux/issues
1764 C:      irc://irc.oftc.net/asahi-dev
1765 T:      git https://github.com/AsahiLinux/linux.git
1766 F:      Documentation/devicetree/bindings/arm/apple.yaml
1767 F:      Documentation/devicetree/bindings/arm/apple/*
1768 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1769 F:      Documentation/devicetree/bindings/interrupt-controller/apple,aic.yaml
1770 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1771 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1772 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1773 F:      Documentation/devicetree/bindings/power/apple*
1774 F:      Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
1775 F:      arch/arm64/boot/dts/apple/
1776 F:      drivers/i2c/busses/i2c-pasemi-core.c
1777 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1778 F:      drivers/irqchip/irq-apple-aic.c
1779 F:      drivers/mailbox/apple-mailbox.c
1780 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1781 F:      drivers/soc/apple/*
1782 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1783 F:      include/dt-bindings/pinctrl/apple.h
1784 F:      include/linux/apple-mailbox.h
1785
1786 ARM/ARTPEC MACHINE SUPPORT
1787 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1788 M:      Lars Persson <lars.persson@axis.com>
1789 L:      linux-arm-kernel@axis.com
1790 S:      Maintained
1791 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1792 F:      arch/arm/boot/dts/artpec6*
1793 F:      arch/arm/mach-artpec
1794 F:      drivers/clk/axis
1795 F:      drivers/crypto/axis
1796 F:      drivers/mmc/host/usdhi6rol0.c
1797 F:      drivers/pinctrl/pinctrl-artpec*
1798
1799 ARM/ASPEED I2C DRIVER
1800 M:      Brendan Higgins <brendanhiggins@google.com>
1801 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1802 R:      Joel Stanley <joel@jms.id.au>
1803 L:      linux-i2c@vger.kernel.org
1804 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1805 S:      Maintained
1806 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
1807 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1808 F:      drivers/i2c/busses/i2c-aspeed.c
1809 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1810
1811 ARM/ASPEED MACHINE SUPPORT
1812 M:      Joel Stanley <joel@jms.id.au>
1813 R:      Andrew Jeffery <andrew@aj.id.au>
1814 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1815 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1816 S:      Supported
1817 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1819 F:      arch/arm/boot/dts/aspeed-*
1820 F:      arch/arm/mach-aspeed/
1821 N:      aspeed
1822
1823 ARM/BITMAIN ARCHITECTURE
1824 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1825 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1826 S:      Maintained
1827 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1828 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1829 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1830 F:      arch/arm64/boot/dts/bitmain/
1831 F:      drivers/clk/clk-bm1880.c
1832 F:      drivers/pinctrl/pinctrl-bm1880.c
1833
1834 ARM/CALXEDA HIGHBANK ARCHITECTURE
1835 M:      Andre Przywara <andre.przywara@arm.com>
1836 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1837 S:      Maintained
1838 F:      arch/arm/boot/dts/ecx-*.dts*
1839 F:      arch/arm/boot/dts/highbank.dts
1840 F:      arch/arm/mach-highbank/
1841
1842 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1843 M:      Krzysztof Halasa <khalasa@piap.pl>
1844 S:      Maintained
1845 F:      arch/arm/mach-cns3xxx/
1846
1847 ARM/CAVIUM THUNDER NETWORK DRIVER
1848 M:      Sunil Goutham <sgoutham@marvell.com>
1849 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1850 S:      Supported
1851 F:      drivers/net/ethernet/cavium/thunder/
1852
1853 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1854 M:      Lukasz Majewski <lukma@denx.de>
1855 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1856 S:      Maintained
1857 F:      arch/arm/mach-ep93xx/ts72xx.c
1858
1859 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1860 M:      Alexander Shiyan <shc_work@mail.ru>
1861 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1862 S:      Odd Fixes
1863 N:      clps711x
1864
1865 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1866 M:      Lennert Buytenhek <kernel@wantstofly.org>
1867 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1868 S:      Maintained
1869
1870 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1871 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1872 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1873 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1874 S:      Maintained
1875 F:      arch/arm/mach-ep93xx/
1876 F:      arch/arm/mach-ep93xx/include/mach/
1877
1878 ARM/CLKDEV SUPPORT
1879 M:      Russell King <linux@armlinux.org.uk>
1880 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1881 S:      Maintained
1882 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1883 F:      drivers/clk/clkdev.c
1884
1885 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1886 M:      Baruch Siach <baruch@tkos.co.il>
1887 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1888 S:      Maintained
1889 F:      arch/arm/boot/dts/cx92755*
1890 N:      digicolor
1891
1892 ARM/CONTEC MICRO9 MACHINE SUPPORT
1893 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1894 S:      Maintained
1895 F:      arch/arm/mach-ep93xx/micro9.c
1896
1897 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1898 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1899 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1900 R:      Mike Leach <mike.leach@linaro.org>
1901 R:      Leo Yan <leo.yan@linaro.org>
1902 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1903 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1904 S:      Maintained
1905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1906 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1907 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1908 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1909 F:      Documentation/devicetree/bindings/arm/coresight.txt
1910 F:      Documentation/devicetree/bindings/arm/ete.yaml
1911 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1912 F:      Documentation/trace/coresight/*
1913 F:      drivers/hwtracing/coresight/*
1914 F:      include/dt-bindings/arm/coresight-cti-dt.h
1915 F:      include/linux/coresight*
1916 F:      samples/coresight/*
1917 F:      tools/perf/arch/arm/util/auxtrace.c
1918 F:      tools/perf/arch/arm/util/cs-etm.c
1919 F:      tools/perf/arch/arm/util/cs-etm.h
1920 F:      tools/perf/arch/arm/util/pmu.c
1921 F:      tools/perf/util/cs-etm-decoder/*
1922 F:      tools/perf/util/cs-etm.*
1923
1924 ARM/CORGI MACHINE SUPPORT
1925 M:      Richard Purdie <rpurdie@rpsys.net>
1926 S:      Maintained
1927
1928 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1929 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1930 M:      Linus Walleij <linus.walleij@linaro.org>
1931 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1932 S:      Maintained
1933 T:      git git://github.com/ulli-kroll/linux.git
1934 F:      Documentation/devicetree/bindings/arm/gemini.yaml
1935 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1936 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1937 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
1938 F:      arch/arm/boot/dts/gemini*
1939 F:      arch/arm/mach-gemini/
1940 F:      drivers/crypto/gemini/
1941 F:      drivers/net/ethernet/cortina/
1942 F:      drivers/pinctrl/pinctrl-gemini.c
1943 F:      drivers/rtc/rtc-ftrtc010.c
1944
1945 ARM/CZ.NIC TURRIS SUPPORT
1946 M:      Marek Behún <kabel@kernel.org>
1947 S:      Maintained
1948 W:      https://www.turris.cz/
1949 F:      Documentation/ABI/testing/debugfs-moxtet
1950 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1951 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1952 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1953 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1954 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1955 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1956 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1957 F:      drivers/bus/moxtet.c
1958 F:      drivers/firmware/turris-mox-rwtm.c
1959 F:      drivers/leds/leds-turris-omnia.c
1960 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
1961 F:      drivers/gpio/gpio-moxtet.c
1962 F:      drivers/watchdog/armada_37xx_wdt.c
1963 F:      include/dt-bindings/bus/moxtet.h
1964 F:      include/linux/armada-37xx-rwtm-mailbox.h
1965 F:      include/linux/moxtet.h
1966
1967 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1968 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1969 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1970 S:      Maintained
1971 F:      arch/arm/mach-pxa/ezx.c
1972
1973 ARM/FARADAY FA526 PORT
1974 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1975 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1976 S:      Maintained
1977 T:      git git://git.berlios.de/gemini-board
1978 F:      arch/arm/mm/*-fa*
1979
1980 ARM/FOOTBRIDGE ARCHITECTURE
1981 M:      Russell King <linux@armlinux.org.uk>
1982 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1983 S:      Maintained
1984 W:      http://www.armlinux.org.uk/
1985 F:      arch/arm/include/asm/hardware/dec21285.h
1986 F:      arch/arm/mach-footbridge/
1987
1988 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1989 M:      Shawn Guo <shawnguo@kernel.org>
1990 M:      Sascha Hauer <s.hauer@pengutronix.de>
1991 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1992 R:      Fabio Estevam <festevam@gmail.com>
1993 R:      NXP Linux Team <linux-imx@nxp.com>
1994 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1995 S:      Maintained
1996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1997 X:      drivers/media/i2c/
1998 N:      imx
1999 N:      mxs
2000
2001 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
2002 M:      Shawn Guo <shawnguo@kernel.org>
2003 M:      Li Yang <leoyang.li@nxp.com>
2004 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2005 S:      Maintained
2006 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2007 F:      arch/arm/boot/dts/ls1021a*
2008 F:      arch/arm64/boot/dts/freescale/fsl-*
2009 F:      arch/arm64/boot/dts/freescale/qoriq-*
2010
2011 ARM/FREESCALE VYBRID ARM ARCHITECTURE
2012 M:      Shawn Guo <shawnguo@kernel.org>
2013 M:      Sascha Hauer <s.hauer@pengutronix.de>
2014 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2015 R:      Stefan Agner <stefan@agner.ch>
2016 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2017 S:      Maintained
2018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2019 F:      arch/arm/boot/dts/vf*
2020 F:      arch/arm/mach-imx/*vf610*
2021
2022 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
2023 M:      Lennert Buytenhek <kernel@wantstofly.org>
2024 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2025 S:      Maintained
2026
2027 ARM/GUMSTIX MACHINE SUPPORT
2028 M:      Steve Sakoman <sakoman@gmail.com>
2029 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2030 S:      Maintained
2031
2032 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
2033 M:      Philipp Zabel <philipp.zabel@gmail.com>
2034 M:      Paul Parsons <lost.distance@yahoo.com>
2035 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2036 S:      Maintained
2037 F:      arch/arm/mach-pxa/hx4700.c
2038 F:      arch/arm/mach-pxa/include/mach/hx4700.h
2039 F:      sound/soc/pxa/hx4700.c
2040
2041 ARM/HISILICON SOC SUPPORT
2042 M:      Wei Xu <xuwei5@hisilicon.com>
2043 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2044 S:      Supported
2045 W:      http://www.hisilicon.com
2046 T:      git git://github.com/hisilicon/linux-hisi.git
2047 F:      arch/arm/boot/dts/hi3*
2048 F:      arch/arm/boot/dts/hip*
2049 F:      arch/arm/boot/dts/hisi*
2050 F:      arch/arm/mach-hisi/
2051 F:      arch/arm64/boot/dts/hisilicon/
2052
2053 ARM/HP JORNADA 7XX MACHINE SUPPORT
2054 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2055 S:      Maintained
2056 W:      www.jlime.com
2057 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2058 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2059 F:      arch/arm/mach-sa1100/jornada720.c
2060
2061 ARM/IGEP MACHINE SUPPORT
2062 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2063 M:      Javier Martinez Canillas <javier@dowhile0.org>
2064 L:      linux-omap@vger.kernel.org
2065 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2066 S:      Maintained
2067 F:      arch/arm/boot/dts/omap3-igep*
2068
2069 ARM/INCOME PXA270 SUPPORT
2070 M:      Marek Vasut <marek.vasut@gmail.com>
2071 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2072 S:      Maintained
2073 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2074
2075 ARM/INTEL IOP32X ARM ARCHITECTURE
2076 M:      Lennert Buytenhek <kernel@wantstofly.org>
2077 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2078 S:      Maintained
2079
2080 ARM/INTEL IQ81342EX MACHINE SUPPORT
2081 M:      Lennert Buytenhek <kernel@wantstofly.org>
2082 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2083 S:      Maintained
2084
2085 ARM/INTEL IXDP2850 MACHINE SUPPORT
2086 M:      Lennert Buytenhek <kernel@wantstofly.org>
2087 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2088 S:      Maintained
2089
2090 ARM/INTEL IXP4XX ARM ARCHITECTURE
2091 M:      Linus Walleij <linusw@kernel.org>
2092 M:      Imre Kaloz <kaloz@openwrt.org>
2093 M:      Krzysztof Halasa <khalasa@piap.pl>
2094 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2095 S:      Maintained
2096 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2097 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2098 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2099 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2100 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2101 F:      arch/arm/mach-ixp4xx/
2102 F:      drivers/bus/intel-ixp4xx-eb.c
2103 F:      drivers/clocksource/timer-ixp4xx.c
2104 F:      drivers/crypto/ixp4xx_crypto.c
2105 F:      drivers/gpio/gpio-ixp4xx.c
2106 F:      drivers/irqchip/irq-ixp4xx.c
2107 F:      include/linux/irqchip/irq-ixp4xx.h
2108 F:      include/linux/platform_data/timer-ixp4xx.h
2109
2110 ARM/INTEL KEEMBAY ARCHITECTURE
2111 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2112 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2113 S:      Maintained
2114 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2115 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2116 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2117
2118 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
2119 M:      Jonathan Cameron <jic23@cam.ac.uk>
2120 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2121 S:      Maintained
2122 F:      arch/arm/mach-pxa/stargate2.c
2123 F:      drivers/pcmcia/pxa2xx_stargate2.c
2124
2125 ARM/INTEL XSC3 (MANZANO) ARM CORE
2126 M:      Lennert Buytenhek <kernel@wantstofly.org>
2127 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2128 S:      Maintained
2129
2130 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2131 M:      Lennert Buytenhek <kernel@wantstofly.org>
2132 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2133 S:      Maintained
2134
2135 ARM/LG1K ARCHITECTURE
2136 M:      Chanho Min <chanho.min@lge.com>
2137 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2138 S:      Maintained
2139 F:      arch/arm64/boot/dts/lg/
2140
2141 ARM/LOGICPD PXA270 MACHINE SUPPORT
2142 M:      Lennert Buytenhek <kernel@wantstofly.org>
2143 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2144 S:      Maintained
2145
2146 ARM/LPC18XX ARCHITECTURE
2147 M:      Vladimir Zapolskiy <vz@mleia.com>
2148 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2149 S:      Maintained
2150 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2151 F:      arch/arm/boot/dts/lpc43*
2152 F:      drivers/i2c/busses/i2c-lpc2k.c
2153 F:      drivers/memory/pl172.c
2154 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2155 F:      drivers/rtc/rtc-lpc24xx.c
2156 N:      lpc18xx
2157
2158 ARM/LPC32XX SOC SUPPORT
2159 M:      Vladimir Zapolskiy <vz@mleia.com>
2160 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2161 S:      Maintained
2162 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2163 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2164 F:      arch/arm/boot/dts/lpc32*
2165 F:      arch/arm/mach-lpc32xx/
2166 F:      drivers/i2c/busses/i2c-pnx.c
2167 F:      drivers/net/ethernet/nxp/lpc_eth.c
2168 F:      drivers/usb/host/ohci-nxp.c
2169 F:      drivers/watchdog/pnx4008_wdt.c
2170 N:      lpc32xx
2171
2172 ARM/MAGICIAN MACHINE SUPPORT
2173 M:      Philipp Zabel <philipp.zabel@gmail.com>
2174 S:      Maintained
2175
2176 ARM/Marvell Dove/MV78xx0/Orion SOC support
2177 M:      Andrew Lunn <andrew@lunn.ch>
2178 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2179 M:      Gregory Clement <gregory.clement@bootlin.com>
2180 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2181 S:      Maintained
2182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2183 F:      Documentation/devicetree/bindings/soc/dove/
2184 F:      arch/arm/boot/dts/dove*
2185 F:      arch/arm/boot/dts/orion5x*
2186 F:      arch/arm/mach-dove/
2187 F:      arch/arm/mach-mv78xx0/
2188 F:      arch/arm/mach-orion5x/
2189 F:      arch/arm/plat-orion/
2190 F:      drivers/soc/dove/
2191
2192 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2193 M:      Andrew Lunn <andrew@lunn.ch>
2194 M:      Gregory Clement <gregory.clement@bootlin.com>
2195 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2196 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2197 S:      Maintained
2198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2199 F:      arch/arm/boot/dts/armada*
2200 F:      arch/arm/boot/dts/kirkwood*
2201 F:      arch/arm/configs/mvebu_*_defconfig
2202 F:      arch/arm/mach-mvebu/
2203 F:      arch/arm64/boot/dts/marvell/armada*
2204 F:      arch/arm64/boot/dts/marvell/cn913*
2205 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2206 F:      drivers/cpufreq/armada-8k-cpufreq.c
2207 F:      drivers/cpufreq/mvebu-cpufreq.c
2208 F:      drivers/irqchip/irq-armada-370-xp.c
2209 F:      drivers/irqchip/irq-mvebu-*
2210 F:      drivers/pinctrl/mvebu/
2211 F:      drivers/rtc/rtc-armada38x.c
2212
2213 ARM/Mediatek RTC DRIVER
2214 M:      Eddie Huang <eddie.huang@mediatek.com>
2215 M:      Sean Wang <sean.wang@mediatek.com>
2216 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2217 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2218 S:      Maintained
2219 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2220 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2221 F:      drivers/rtc/rtc-mt2712.c
2222 F:      drivers/rtc/rtc-mt6397.c
2223 F:      drivers/rtc/rtc-mt7622.c
2224
2225 ARM/Mediatek SoC support
2226 M:      Matthias Brugger <matthias.bgg@gmail.com>
2227 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2228 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2229 S:      Maintained
2230 W:      https://mtk.wiki.kernel.org/
2231 C:      irc://chat.freenode.net/linux-mediatek
2232 F:      arch/arm/boot/dts/mt6*
2233 F:      arch/arm/boot/dts/mt7*
2234 F:      arch/arm/boot/dts/mt8*
2235 F:      arch/arm/mach-mediatek/
2236 F:      arch/arm64/boot/dts/mediatek/
2237 F:      drivers/soc/mediatek/
2238 N:      mtk
2239 N:      mt[678]
2240 K:      mediatek
2241
2242 ARM/Mediatek USB3 PHY DRIVER
2243 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2244 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2245 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2246 S:      Maintained
2247 F:      Documentation/devicetree/bindings/phy/mediatek,*
2248 F:      drivers/phy/mediatek/
2249
2250 ARM/Microchip (AT91) SoC support
2251 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2252 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2253 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2254 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2255 S:      Supported
2256 W:      http://www.linux4sam.org
2257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2258 F:      arch/arm/boot/dts/at91*.dts
2259 F:      arch/arm/boot/dts/at91*.dtsi
2260 F:      arch/arm/boot/dts/sama*.dts
2261 F:      arch/arm/boot/dts/sama*.dtsi
2262 F:      arch/arm/include/debug/at91.S
2263 F:      arch/arm/mach-at91/
2264 F:      drivers/memory/atmel*
2265 F:      drivers/watchdog/sama5d4_wdt.c
2266 F:      include/soc/at91/
2267 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2268 X:      drivers/net/wireless/atmel/
2269 N:      at91
2270 N:      atmel
2271
2272 ARM/Microchip Sparx5 SoC support
2273 M:      Lars Povlsen <lars.povlsen@microchip.com>
2274 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2275 M:      UNGLinuxDriver@microchip.com
2276 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2277 S:      Supported
2278 T:      git git://github.com/microchip-ung/linux-upstream.git
2279 F:      arch/arm64/boot/dts/microchip/
2280 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2281 N:      sparx5
2282
2283 Microchip Timer Counter Block (TCB) Capture Driver
2284 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2285 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2286 L:      linux-iio@vger.kernel.org
2287 S:      Maintained
2288 F:      drivers/counter/microchip-tcb-capture.c
2289
2290 ARM/MILBEAUT ARCHITECTURE
2291 M:      Taichi Sugaya <sugaya.taichi@socionext.com>
2292 M:      Takao Orito <orito.takao@socionext.com>
2293 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2294 S:      Maintained
2295 F:      arch/arm/boot/dts/milbeaut*
2296 F:      arch/arm/mach-milbeaut/
2297 N:      milbeaut
2298
2299 ARM/MIOA701 MACHINE SUPPORT
2300 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2301 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2302 S:      Maintained
2303 F:      arch/arm/mach-pxa/mioa701.c
2304
2305 ARM/MStar/Sigmastar Armv7 SoC support
2306 M:      Daniel Palmer <daniel@thingy.jp>
2307 M:      Romain Perier <romain.perier@gmail.com>
2308 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2309 S:      Maintained
2310 W:      http://linux-chenxing.org/
2311 T:      git git://github.com/linux-chenxing/linux.git
2312 F:      Documentation/devicetree/bindings/arm/mstar/*
2313 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2314 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2315 F:      arch/arm/boot/dts/mstar-*
2316 F:      arch/arm/mach-mstar/
2317 F:      drivers/clk/mstar/
2318 F:      drivers/clocksource/timer-msc313e.c
2319 F:      drivers/gpio/gpio-msc313.c
2320 F:      drivers/rtc/rtc-msc313.c
2321 F:      drivers/watchdog/msc313e_wdt.c
2322 F:      include/dt-bindings/clock/mstar-*
2323 F:      include/dt-bindings/gpio/msc313-gpio.h
2324
2325 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2326 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2327 S:      Maintained
2328
2329 ARM/NOMADIK/Ux500 ARCHITECTURES
2330 M:      Linus Walleij <linus.walleij@linaro.org>
2331 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2332 S:      Maintained
2333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2334 F:      Documentation/devicetree/bindings/arm/ste-*
2335 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2336 F:      Documentation/devicetree/bindings/arm/ux500/
2337 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2338 F:      arch/arm/boot/dts/ste-*
2339 F:      arch/arm/mach-nomadik/
2340 F:      arch/arm/mach-ux500/
2341 F:      drivers/clk/clk-nomadik.c
2342 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2343 F:      drivers/dma/ste_dma40*
2344 F:      drivers/hwspinlock/u8500_hsem.c
2345 F:      drivers/i2c/busses/i2c-nomadik.c
2346 F:      drivers/iio/adc/ab8500-gpadc.c
2347 F:      drivers/mfd/ab8500*
2348 F:      drivers/mfd/abx500*
2349 F:      drivers/mfd/db8500*
2350 F:      drivers/pinctrl/nomadik/
2351 F:      drivers/rtc/rtc-ab8500.c
2352 F:      drivers/rtc/rtc-pl031.c
2353 F:      drivers/soc/ux500/
2354
2355 ARM/NUVOTON NPCM ARCHITECTURE
2356 M:      Avi Fishman <avifishman70@gmail.com>
2357 M:      Tomer Maimon <tmaimon77@gmail.com>
2358 M:      Tali Perry <tali.perry1@gmail.com>
2359 R:      Patrick Venture <venture@google.com>
2360 R:      Nancy Yuen <yuenn@google.com>
2361 R:      Benjamin Fair <benjaminfair@google.com>
2362 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2363 S:      Supported
2364 F:      Documentation/devicetree/bindings/*/*/*npcm*
2365 F:      Documentation/devicetree/bindings/*/*npcm*
2366 F:      arch/arm/boot/dts/nuvoton-npcm*
2367 F:      arch/arm/mach-npcm/
2368 F:      drivers/*/*npcm*
2369 F:      drivers/*/*/*npcm*
2370 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2371
2372 ARM/NUVOTON WPCM450 ARCHITECTURE
2373 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2374 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2375 S:      Maintained
2376 F:      Documentation/devicetree/bindings/*/*wpcm*
2377 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2378 F:      arch/arm/mach-npcm/wpcm450.c
2379 F:      drivers/*/*wpcm*
2380
2381 ARM/NXP S32G ARCHITECTURE
2382 M:      Chester Lin <clin@suse.com>
2383 R:      Andreas Färber <afaerber@suse.de>
2384 R:      Matthias Brugger <mbrugger@suse.com>
2385 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2386 S:      Maintained
2387 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2388
2389 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2390 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2391 S:      Orphan
2392 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2393 F:      arch/arm/mach-s3c/gta02.h
2394 F:      arch/arm/mach-s3c/mach-gta02.c
2395
2396 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2397 M:      Alexander Clouter <alex@digriz.org.uk>
2398 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2399 S:      Maintained
2400 W:      http://www.digriz.org.uk/ts78xx/kernel
2401 F:      arch/arm/mach-orion5x/ts78xx-*
2402
2403 ARM/OXNAS platform support
2404 M:      Neil Armstrong <narmstrong@baylibre.com>
2405 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2406 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2407 S:      Maintained
2408 F:      arch/arm/boot/dts/ox8*.dts*
2409 F:      arch/arm/mach-oxnas/
2410 F:      drivers/power/reset/oxnas-restart.c
2411 N:      oxnas
2412
2413 ARM/PALM TREO SUPPORT
2414 M:      Tomas Cech <sleep_walker@suse.com>
2415 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2416 S:      Maintained
2417 W:      http://hackndev.com
2418 F:      arch/arm/mach-pxa/palmtreo.*
2419
2420 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2421 M:      Marek Vasut <marek.vasut@gmail.com>
2422 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2423 S:      Maintained
2424 W:      http://hackndev.com
2425 F:      arch/arm/mach-pxa/include/mach/palmld.h
2426 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2427 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2428 F:      arch/arm/mach-pxa/palmld.c
2429 F:      arch/arm/mach-pxa/palmt5.*
2430 F:      arch/arm/mach-pxa/palmtc.c
2431 F:      arch/arm/mach-pxa/palmte2.*
2432 F:      arch/arm/mach-pxa/palmtx.c
2433
2434 ARM/PALMZ72 SUPPORT
2435 M:      Sergey Lapin <slapin@ossfans.org>
2436 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2437 S:      Maintained
2438 W:      http://hackndev.com
2439 F:      arch/arm/mach-pxa/palmz72.*
2440
2441 ARM/PLEB SUPPORT
2442 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2443 S:      Maintained
2444 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2445
2446 ARM/PT DIGITAL BOARD PORT
2447 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2448 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2449 S:      Maintained
2450 W:      http://www.armlinux.org.uk/
2451
2452 ARM/QUALCOMM SUPPORT
2453 M:      Andy Gross <agross@kernel.org>
2454 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2455 L:      linux-arm-msm@vger.kernel.org
2456 S:      Maintained
2457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2458 F:      Documentation/devicetree/bindings/*/qcom*
2459 F:      Documentation/devicetree/bindings/soc/qcom/
2460 F:      arch/arm/boot/dts/qcom-*.dts
2461 F:      arch/arm/boot/dts/qcom-*.dtsi
2462 F:      arch/arm/mach-qcom/
2463 F:      arch/arm64/boot/dts/qcom/
2464 F:      drivers/*/*/qcom*
2465 F:      drivers/*/*/qcom/
2466 F:      drivers/*/pm8???-*
2467 F:      drivers/*/qcom*
2468 F:      drivers/*/qcom/
2469 F:      drivers/bluetooth/btqcomsmd.c
2470 F:      drivers/clocksource/timer-qcom.c
2471 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2472 F:      drivers/extcon/extcon-qcom*
2473 F:      drivers/i2c/busses/i2c-qcom-geni.c
2474 F:      drivers/i2c/busses/i2c-qup.c
2475 F:      drivers/iommu/msm*
2476 F:      drivers/mfd/ssbi.c
2477 F:      drivers/mmc/host/mmci_qcom*
2478 F:      drivers/mmc/host/sdhci-msm.c
2479 F:      drivers/pci/controller/dwc/pcie-qcom.c
2480 F:      drivers/phy/qualcomm/
2481 F:      drivers/power/*/msm*
2482 F:      drivers/reset/reset-qcom-*
2483 F:      drivers/scsi/ufs/ufs-qcom*
2484 F:      drivers/spi/spi-geni-qcom.c
2485 F:      drivers/spi/spi-qcom-qspi.c
2486 F:      drivers/spi/spi-qup.c
2487 F:      drivers/tty/serial/msm_serial.c
2488 F:      drivers/usb/dwc3/dwc3-qcom.c
2489 F:      include/dt-bindings/*/qcom*
2490 F:      include/linux/*/qcom*
2491 F:      include/linux/soc/qcom/
2492
2493 ARM/RADISYS ENP2611 MACHINE SUPPORT
2494 M:      Lennert Buytenhek <kernel@wantstofly.org>
2495 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2496 S:      Maintained
2497
2498 ARM/RDA MICRO ARCHITECTURE
2499 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2500 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2501 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2502 S:      Maintained
2503 F:      Documentation/devicetree/bindings/arm/rda.yaml
2504 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2505 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2506 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2507 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2508 F:      arch/arm/boot/dts/rda8810pl-*
2509 F:      drivers/clocksource/timer-rda.c
2510 F:      drivers/gpio/gpio-rda.c
2511 F:      drivers/irqchip/irq-rda-intc.c
2512 F:      drivers/tty/serial/rda-uart.c
2513
2514 ARM/REALTEK ARCHITECTURE
2515 M:      Andreas Färber <afaerber@suse.de>
2516 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2517 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2518 S:      Maintained
2519 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2520 F:      arch/arm/boot/dts/rtd*
2521 F:      arch/arm/mach-realtek/
2522 F:      arch/arm64/boot/dts/realtek/
2523
2524 ARM/RENESAS ARM64 ARCHITECTURE
2525 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2526 M:      Magnus Damm <magnus.damm@gmail.com>
2527 L:      linux-renesas-soc@vger.kernel.org
2528 S:      Supported
2529 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2531 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2532 F:      arch/arm64/boot/dts/renesas/
2533 F:      drivers/soc/renesas/
2534 F:      include/linux/soc/renesas/
2535
2536 ARM/RISCPC ARCHITECTURE
2537 M:      Russell King <linux@armlinux.org.uk>
2538 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2539 S:      Maintained
2540 W:      http://www.armlinux.org.uk/
2541 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2542 F:      arch/arm/include/asm/hardware/ioc.h
2543 F:      arch/arm/include/asm/hardware/iomd.h
2544 F:      arch/arm/include/asm/hardware/memc.h
2545 F:      arch/arm/mach-rpc/
2546 F:      drivers/net/ethernet/8390/etherh.c
2547 F:      drivers/net/ethernet/i825xx/ether1*
2548 F:      drivers/net/ethernet/seeq/ether3*
2549 F:      drivers/scsi/arm/
2550
2551 ARM/Rockchip SoC support
2552 M:      Heiko Stuebner <heiko@sntech.de>
2553 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2554 L:      linux-rockchip@lists.infradead.org
2555 S:      Maintained
2556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2557 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2558 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2559 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2560 F:      arch/arm/boot/dts/rk3*
2561 F:      arch/arm/boot/dts/rv1108*
2562 F:      arch/arm/mach-rockchip/
2563 F:      drivers/*/*/*rockchip*
2564 F:      drivers/*/*rockchip*
2565 F:      drivers/clk/rockchip/
2566 F:      drivers/i2c/busses/i2c-rk3x.c
2567 F:      sound/soc/rockchip/
2568 N:      rockchip
2569
2570 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2571 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
2572 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2573 L:      linux-samsung-soc@vger.kernel.org
2574 S:      Maintained
2575 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2576 F:      Documentation/arm/samsung/
2577 F:      Documentation/devicetree/bindings/arm/samsung/
2578 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2579 F:      Documentation/devicetree/bindings/soc/samsung/
2580 F:      arch/arm/boot/dts/exynos*
2581 F:      arch/arm/boot/dts/s3c*
2582 F:      arch/arm/boot/dts/s5p*
2583 F:      arch/arm/mach-exynos*/
2584 F:      arch/arm/mach-s3c/
2585 F:      arch/arm/mach-s5p*/
2586 F:      arch/arm64/boot/dts/exynos/
2587 F:      drivers/*/*/*s3c24*
2588 F:      drivers/*/*s3c24*
2589 F:      drivers/*/*s3c64xx*
2590 F:      drivers/*/*s5pv210*
2591 F:      drivers/clocksource/samsung_pwm_timer.c
2592 F:      drivers/memory/samsung/
2593 F:      drivers/pwm/pwm-samsung.c
2594 F:      drivers/soc/samsung/
2595 F:      drivers/tty/serial/samsung*
2596 F:      include/clocksource/samsung_pwm.h
2597 F:      include/linux/platform_data/*s3c*
2598 F:      include/linux/serial_s3c.h
2599 F:      include/linux/soc/samsung/
2600 N:      exynos
2601 N:      s3c2410
2602 N:      s3c64xx
2603 N:      s5pv210
2604
2605 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2606 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2607 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2608 L:      linux-media@vger.kernel.org
2609 S:      Maintained
2610 F:      drivers/media/platform/s5p-g2d/
2611
2612 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2613 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2614 L:      linux-samsung-soc@vger.kernel.org
2615 L:      linux-media@vger.kernel.org
2616 S:      Maintained
2617 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2618 F:      drivers/media/cec/platform/s5p/
2619
2620 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2621 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2622 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2623 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2624 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2625 L:      linux-media@vger.kernel.org
2626 S:      Maintained
2627 F:      drivers/media/platform/s5p-jpeg/
2628
2629 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2630 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2631 M:      Andrzej Hajda <andrzej.hajda@intel.com>
2632 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2633 L:      linux-media@vger.kernel.org
2634 S:      Maintained
2635 F:      drivers/media/platform/s5p-mfc/
2636
2637 ARM/SHMOBILE ARM ARCHITECTURE
2638 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2639 M:      Magnus Damm <magnus.damm@gmail.com>
2640 L:      linux-renesas-soc@vger.kernel.org
2641 S:      Supported
2642 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2644 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2645 F:      arch/arm/boot/dts/emev2*
2646 F:      arch/arm/boot/dts/gr-peach*
2647 F:      arch/arm/boot/dts/iwg20d-q7*
2648 F:      arch/arm/boot/dts/r7s*
2649 F:      arch/arm/boot/dts/r8a*
2650 F:      arch/arm/boot/dts/r9a*
2651 F:      arch/arm/boot/dts/sh*
2652 F:      arch/arm/configs/shmobile_defconfig
2653 F:      arch/arm/include/debug/renesas-scif.S
2654 F:      arch/arm/mach-shmobile/
2655 F:      drivers/soc/renesas/
2656 F:      include/linux/soc/renesas/
2657
2658 ARM/SOCFPGA ARCHITECTURE
2659 M:      Dinh Nguyen <dinguyen@kernel.org>
2660 S:      Maintained
2661 W:      http://www.rocketboards.org
2662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2663 F:      arch/arm/boot/dts/socfpga*
2664 F:      arch/arm/configs/socfpga_defconfig
2665 F:      arch/arm/mach-socfpga/
2666 F:      arch/arm64/boot/dts/altera/
2667 F:      arch/arm64/boot/dts/intel/
2668
2669 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2670 M:      Dinh Nguyen <dinguyen@kernel.org>
2671 S:      Maintained
2672 F:      drivers/clk/socfpga/
2673
2674 ARM/SOCFPGA EDAC SUPPORT
2675 M:      Dinh Nguyen <dinguyen@kernel.org>
2676 S:      Maintained
2677 F:      drivers/edac/altera_edac.[ch]
2678
2679 ARM/SPREADTRUM SoC SUPPORT
2680 M:      Orson Zhai <orsonzhai@gmail.com>
2681 M:      Baolin Wang <baolin.wang7@gmail.com>
2682 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2683 S:      Maintained
2684 F:      arch/arm64/boot/dts/sprd
2685 N:      sprd
2686 N:      sc27xx
2687 N:      sc2731
2688
2689 ARM/STI ARCHITECTURE
2690 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2691 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2692 S:      Maintained
2693 W:      http://www.stlinux.com
2694 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2695 F:      arch/arm/boot/dts/sti*
2696 F:      arch/arm/mach-sti/
2697 F:      drivers/ata/ahci_st.c
2698 F:      drivers/char/hw_random/st-rng.c
2699 F:      drivers/clocksource/arm_global_timer.c
2700 F:      drivers/clocksource/clksrc_st_lpc.c
2701 F:      drivers/cpufreq/sti-cpufreq.c
2702 F:      drivers/dma/st_fdma*
2703 F:      drivers/i2c/busses/i2c-st.c
2704 F:      drivers/media/platform/sti/c8sectpfe/
2705 F:      drivers/media/rc/st_rc.c
2706 F:      drivers/mmc/host/sdhci-st.c
2707 F:      drivers/phy/st/phy-miphy28lp.c
2708 F:      drivers/phy/st/phy-stih407-usb.c
2709 F:      drivers/pinctrl/pinctrl-st.c
2710 F:      drivers/remoteproc/st_remoteproc.c
2711 F:      drivers/remoteproc/st_slim_rproc.c
2712 F:      drivers/reset/sti/
2713 F:      drivers/rtc/rtc-st-lpc.c
2714 F:      drivers/tty/serial/st-asc.c
2715 F:      drivers/usb/dwc3/dwc3-st.c
2716 F:      drivers/usb/host/ehci-st.c
2717 F:      drivers/usb/host/ohci-st.c
2718 F:      drivers/watchdog/st_lpc_wdt.c
2719 F:      include/linux/remoteproc/st_slim_rproc.h
2720
2721 ARM/STM32 ARCHITECTURE
2722 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2723 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2724 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2725 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2726 S:      Maintained
2727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2728 F:      arch/arm/boot/dts/stm32*
2729 F:      arch/arm/mach-stm32/
2730 F:      drivers/clocksource/armv7m_systick.c
2731 N:      stm32
2732 N:      stm
2733
2734 ARM/Synaptics SoC support
2735 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2736 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2737 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2738 S:      Maintained
2739 F:      arch/arm/boot/dts/berlin*
2740 F:      arch/arm/mach-berlin/
2741 F:      arch/arm64/boot/dts/synaptics/
2742
2743 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2744 M:      Lennert Buytenhek <kernel@wantstofly.org>
2745 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2746 S:      Maintained
2747
2748 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2749 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2750 L:      linux-tegra@vger.kernel.org
2751 L:      linux-media@vger.kernel.org
2752 S:      Maintained
2753 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2754 F:      drivers/media/cec/platform/tegra/
2755
2756 ARM/TETON BGA MACHINE SUPPORT
2757 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2758 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2759 S:      Maintained
2760
2761 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2762 M:      Santosh Shilimkar <ssantosh@kernel.org>
2763 L:      linux-kernel@vger.kernel.org
2764 S:      Maintained
2765 F:      drivers/memory/*emif*
2766
2767 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2768 M:      Nishanth Menon <nm@ti.com>
2769 M:      Santosh Shilimkar <ssantosh@kernel.org>
2770 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2771 S:      Maintained
2772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
2773 F:      arch/arm/boot/dts/keystone-*
2774 F:      arch/arm/mach-keystone/
2775
2776 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2777 M:      Santosh Shilimkar <ssantosh@kernel.org>
2778 L:      linux-kernel@vger.kernel.org
2779 S:      Maintained
2780 F:      drivers/clk/keystone/
2781
2782 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2783 M:      Santosh Shilimkar <ssantosh@kernel.org>
2784 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2785 L:      linux-kernel@vger.kernel.org
2786 S:      Maintained
2787 F:      drivers/clocksource/timer-keystone.c
2788
2789 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2790 M:      Santosh Shilimkar <ssantosh@kernel.org>
2791 L:      linux-kernel@vger.kernel.org
2792 S:      Maintained
2793 F:      drivers/power/reset/keystone-reset.c
2794
2795 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2796 M:      Nishanth Menon <nm@ti.com>
2797 M:      Vignesh Raghavendra <vigneshr@ti.com>
2798 M:      Tero Kristo <kristo@kernel.org>
2799 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2800 S:      Supported
2801 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2802 F:      arch/arm64/boot/dts/ti/Makefile
2803 F:      arch/arm64/boot/dts/ti/k3-*
2804 F:      include/dt-bindings/pinctrl/k3.h
2805
2806 ARM/THECUS N2100 MACHINE SUPPORT
2807 M:      Lennert Buytenhek <kernel@wantstofly.org>
2808 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2809 S:      Maintained
2810
2811 ARM/TOSA MACHINE SUPPORT
2812 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2813 M:      Dirk Opfer <dirk@opfer-online.de>
2814 S:      Maintained
2815
2816 ARM/TOSHIBA VISCONTI ARCHITECTURE
2817 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2818 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2819 S:      Supported
2820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2821 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2822 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
2823 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
2824 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2825 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2826 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2827 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
2828 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2829 F:      arch/arm64/boot/dts/toshiba/
2830 F:      drivers/clk/visconti/
2831 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2832 F:      drivers/gpio/gpio-visconti.c
2833 F:      drivers/pci/controller/dwc/pcie-visconti.c
2834 F:      drivers/pinctrl/visconti/
2835 F:      drivers/watchdog/visconti_wdt.c
2836 N:      visconti
2837
2838 ARM/UNIPHIER ARCHITECTURE
2839 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2840 M:      Masami Hiramatsu <mhiramat@kernel.org>
2841 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2842 S:      Maintained
2843 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2844 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2845 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2846 F:      arch/arm/boot/dts/uniphier*
2847 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2848 F:      arch/arm/mach-uniphier/
2849 F:      arch/arm/mm/cache-uniphier.c
2850 F:      arch/arm64/boot/dts/socionext/uniphier*
2851 F:      drivers/bus/uniphier-system-bus.c
2852 F:      drivers/clk/uniphier/
2853 F:      drivers/dma/uniphier-mdmac.c
2854 F:      drivers/gpio/gpio-uniphier.c
2855 F:      drivers/i2c/busses/i2c-uniphier*
2856 F:      drivers/irqchip/irq-uniphier-aidet.c
2857 F:      drivers/mmc/host/uniphier-sd.c
2858 F:      drivers/pinctrl/uniphier/
2859 F:      drivers/reset/reset-uniphier.c
2860 F:      drivers/tty/serial/8250/8250_uniphier.c
2861 N:      uniphier
2862
2863 ARM/VERSATILE EXPRESS PLATFORM
2864 M:      Liviu Dudau <liviu.dudau@arm.com>
2865 M:      Sudeep Holla <sudeep.holla@arm.com>
2866 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2867 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2868 S:      Maintained
2869 F:      */*/*/vexpress*
2870 F:      */*/vexpress*
2871 F:      arch/arm/boot/dts/vexpress*
2872 F:      arch/arm/mach-vexpress/
2873 F:      arch/arm64/boot/dts/arm/
2874 F:      drivers/clk/versatile/clk-vexpress-osc.c
2875 F:      drivers/clocksource/timer-versatile.c
2876 N:      mps2
2877
2878 ARM/VFP SUPPORT
2879 M:      Russell King <linux@armlinux.org.uk>
2880 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2881 S:      Maintained
2882 W:      http://www.armlinux.org.uk/
2883 F:      arch/arm/vfp/
2884
2885 ARM/VOIPAC PXA270 SUPPORT
2886 M:      Marek Vasut <marek.vasut@gmail.com>
2887 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2888 S:      Maintained
2889 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2890 F:      arch/arm/mach-pxa/vpac270.c
2891
2892 ARM/VT8500 ARM ARCHITECTURE
2893 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2894 S:      Orphan
2895 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2896 F:      arch/arm/mach-vt8500/
2897 F:      drivers/clocksource/timer-vt8500.c
2898 F:      drivers/i2c/busses/i2c-wmt.c
2899 F:      drivers/mmc/host/wmt-sdmmc.c
2900 F:      drivers/pwm/pwm-vt8500.c
2901 F:      drivers/rtc/rtc-vt8500.c
2902 F:      drivers/tty/serial/vt8500_serial.c
2903 F:      drivers/usb/host/ehci-platform.c
2904 F:      drivers/usb/host/uhci-platform.c
2905 F:      drivers/video/fbdev/vt8500lcdfb.*
2906 F:      drivers/video/fbdev/wm8505fb*
2907 F:      drivers/video/fbdev/wmt_ge_rops.*
2908
2909 ARM/ZIPIT Z2 SUPPORT
2910 M:      Marek Vasut <marek.vasut@gmail.com>
2911 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2912 S:      Maintained
2913 F:      arch/arm/mach-pxa/include/mach/z2.h
2914 F:      arch/arm/mach-pxa/z2.c
2915
2916 ARM/ZYNQ ARCHITECTURE
2917 M:      Michal Simek <michal.simek@xilinx.com>
2918 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2919 S:      Supported
2920 W:      http://wiki.xilinx.com
2921 T:      git https://github.com/Xilinx/linux-xlnx.git
2922 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2923 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2924 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2925 F:      arch/arm/mach-zynq/
2926 F:      drivers/clocksource/timer-cadence-ttc.c
2927 F:      drivers/cpuidle/cpuidle-zynq.c
2928 F:      drivers/edac/synopsys_edac.c
2929 F:      drivers/i2c/busses/i2c-cadence.c
2930 F:      drivers/i2c/busses/i2c-xiic.c
2931 F:      drivers/mmc/host/sdhci-of-arasan.c
2932 N:      zynq
2933 N:      xilinx
2934
2935 ARM64 PORT (AARCH64 ARCHITECTURE)
2936 M:      Catalin Marinas <catalin.marinas@arm.com>
2937 M:      Will Deacon <will@kernel.org>
2938 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2939 S:      Maintained
2940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2941 F:      Documentation/arm64/
2942 F:      arch/arm64/
2943 F:      tools/testing/selftests/arm64/
2944 X:      arch/arm64/boot/dts/
2945
2946 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2947 M:      George McCollister <george.mccollister@gmail.com>
2948 L:      netdev@vger.kernel.org
2949 S:      Maintained
2950 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2951 F:      drivers/net/dsa/xrs700x/*
2952 F:      net/dsa/tag_xrs700x.c
2953
2954 AS3645A LED FLASH CONTROLLER DRIVER
2955 M:      Sakari Ailus <sakari.ailus@iki.fi>
2956 L:      linux-leds@vger.kernel.org
2957 S:      Maintained
2958 F:      drivers/leds/flash/leds-as3645a.c
2959
2960 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2961 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2962 L:      linux-media@vger.kernel.org
2963 S:      Maintained
2964 T:      git git://linuxtv.org/media_tree.git
2965 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2966 F:      drivers/media/i2c/ak7375.c
2967
2968 ASAHI KASEI AK8974 DRIVER
2969 M:      Linus Walleij <linus.walleij@linaro.org>
2970 L:      linux-iio@vger.kernel.org
2971 S:      Supported
2972 W:      http://www.akm.com/
2973 F:      drivers/iio/magnetometer/ak8974.c
2974
2975 ASC7621 HARDWARE MONITOR DRIVER
2976 M:      George Joseph <george.joseph@fairview5.com>
2977 L:      linux-hwmon@vger.kernel.org
2978 S:      Maintained
2979 F:      Documentation/hwmon/asc7621.rst
2980 F:      drivers/hwmon/asc7621.c
2981
2982 ASIX AX88796C SPI ETHERNET ADAPTER
2983 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2984 S:      Maintained
2985 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
2986 F:      drivers/net/ethernet/asix/ax88796c_*
2987
2988 ASPEED PINCTRL DRIVERS
2989 M:      Andrew Jeffery <andrew@aj.id.au>
2990 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2991 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2992 L:      linux-gpio@vger.kernel.org
2993 S:      Maintained
2994 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2995 F:      drivers/pinctrl/aspeed/
2996
2997 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2998 M:      Eddie James <eajames@linux.ibm.com>
2999 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3000 S:      Maintained
3001 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3002 F:      drivers/irqchip/irq-aspeed-scu-ic.c
3003 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3004
3005 ASPEED SD/MMC DRIVER
3006 M:      Andrew Jeffery <andrew@aj.id.au>
3007 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3008 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3009 L:      linux-mmc@vger.kernel.org
3010 S:      Maintained
3011 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3012 F:      drivers/mmc/host/sdhci-of-aspeed*
3013
3014 ASPEED VIDEO ENGINE DRIVER
3015 M:      Eddie James <eajames@linux.ibm.com>
3016 L:      linux-media@vger.kernel.org
3017 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3018 S:      Maintained
3019 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
3020 F:      drivers/media/platform/aspeed-video.c
3021
3022 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3023 M:      Corentin Chary <corentin.chary@gmail.com>
3024 L:      acpi4asus-user@lists.sourceforge.net
3025 L:      platform-driver-x86@vger.kernel.org
3026 S:      Maintained
3027 W:      http://acpi4asus.sf.net
3028 F:      drivers/platform/x86/asus*.c
3029 F:      drivers/platform/x86/eeepc*.c
3030
3031 ASUS TF103C DOCK DRIVER
3032 M:      Hans de Goede <hdegoede@redhat.com>
3033 L:      platform-driver-x86@vger.kernel.org
3034 S:      Maintained
3035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3036 F:      drivers/platform/x86/asus-tf103c-dock.c
3037
3038 ASUS WMI HARDWARE MONITOR DRIVER
3039 M:      Ed Brindley <kernel@maidavale.org>
3040 M:      Denis Pauk <pauk.denis@gmail.com>
3041 L:      linux-hwmon@vger.kernel.org
3042 S:      Maintained
3043 F:      drivers/hwmon/asus_wmi_sensors.c
3044
3045 ASUS WMI EC HARDWARE MONITOR DRIVER
3046 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3047 M:      Denis Pauk <pauk.denis@gmail.com>
3048 L:      linux-hwmon@vger.kernel.org
3049 S:      Maintained
3050 F:      drivers/hwmon/asus_wmi_ec_sensors.c
3051
3052 ASUS WIRELESS RADIO CONTROL DRIVER
3053 M:      João Paulo Rechi Vita <jprvita@gmail.com>
3054 L:      platform-driver-x86@vger.kernel.org
3055 S:      Maintained
3056 F:      drivers/platform/x86/asus-wireless.c
3057
3058 ASYMMETRIC KEYS
3059 M:      David Howells <dhowells@redhat.com>
3060 L:      keyrings@vger.kernel.org
3061 S:      Maintained
3062 F:      Documentation/crypto/asymmetric-keys.rst
3063 F:      crypto/asymmetric_keys/
3064 F:      include/crypto/pkcs7.h
3065 F:      include/crypto/public_key.h
3066 F:      include/linux/verification.h
3067
3068 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3069 R:      Dan Williams <dan.j.williams@intel.com>
3070 S:      Odd fixes
3071 W:      http://sourceforge.net/projects/xscaleiop
3072 F:      Documentation/crypto/async-tx-api.rst
3073 F:      crypto/async_tx/
3074 F:      include/linux/async_tx.h
3075
3076 AT24 EEPROM DRIVER
3077 M:      Bartosz Golaszewski <brgl@bgdev.pl>
3078 L:      linux-i2c@vger.kernel.org
3079 S:      Maintained
3080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3081 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3082 F:      drivers/misc/eeprom/at24.c
3083
3084 ATA OVER ETHERNET (AOE) DRIVER
3085 M:      "Justin Sanders" <justin@coraid.com>
3086 S:      Supported
3087 W:      http://www.openaoe.org/
3088 F:      Documentation/admin-guide/aoe/
3089 F:      drivers/block/aoe/
3090
3091 ATC260X PMIC MFD DRIVER
3092 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3093 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3094 L:      linux-actions@lists.infradead.org
3095 S:      Maintained
3096 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3097 F:      drivers/input/misc/atc260x-onkey.c
3098 F:      drivers/mfd/atc260*
3099 F:      drivers/power/reset/atc260x-poweroff.c
3100 F:      drivers/regulator/atc260x-regulator.c
3101 F:      include/linux/mfd/atc260x/*
3102
3103 ATHEROS 71XX/9XXX GPIO DRIVER
3104 M:      Alban Bedel <albeu@free.fr>
3105 S:      Maintained
3106 W:      https://github.com/AlbanBedel/linux
3107 T:      git git://github.com/AlbanBedel/linux
3108 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3109 F:      drivers/gpio/gpio-ath79.c
3110
3111 ATHEROS 71XX/9XXX USB PHY DRIVER
3112 M:      Alban Bedel <albeu@free.fr>
3113 S:      Maintained
3114 W:      https://github.com/AlbanBedel/linux
3115 T:      git git://github.com/AlbanBedel/linux
3116 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3117 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3118
3119 ATHEROS ATH GENERIC UTILITIES
3120 M:      Kalle Valo <kvalo@kernel.org>
3121 L:      linux-wireless@vger.kernel.org
3122 S:      Supported
3123 F:      drivers/net/wireless/ath/*
3124
3125 ATHEROS ATH5K WIRELESS DRIVER
3126 M:      Jiri Slaby <jirislaby@kernel.org>
3127 M:      Nick Kossifidis <mickflemm@gmail.com>
3128 M:      Luis Chamberlain <mcgrof@kernel.org>
3129 L:      linux-wireless@vger.kernel.org
3130 S:      Maintained
3131 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3132 F:      drivers/net/wireless/ath/ath5k/
3133
3134 ATHEROS ATH6KL WIRELESS DRIVER
3135 M:      Kalle Valo <kvalo@kernel.org>
3136 L:      linux-wireless@vger.kernel.org
3137 S:      Supported
3138 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
3140 F:      drivers/net/wireless/ath/ath6kl/
3141
3142 ATI_REMOTE2 DRIVER
3143 M:      Ville Syrjala <syrjala@sci.fi>
3144 S:      Maintained
3145 F:      drivers/input/misc/ati_remote2.c
3146
3147 ATK0110 HWMON DRIVER
3148 M:      Luca Tettamanti <kronos.it@gmail.com>
3149 L:      linux-hwmon@vger.kernel.org
3150 S:      Maintained
3151 F:      drivers/hwmon/asus_atk0110.c
3152
3153 ATLX ETHERNET DRIVERS
3154 M:      Chris Snook <chris.snook@gmail.com>
3155 L:      netdev@vger.kernel.org
3156 S:      Maintained
3157 W:      http://sourceforge.net/projects/atl1
3158 W:      http://atl1.sourceforge.net
3159 F:      drivers/net/ethernet/atheros/
3160
3161 ATM
3162 M:      Chas Williams <3chas3@gmail.com>
3163 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3164 L:      netdev@vger.kernel.org
3165 S:      Maintained
3166 W:      http://linux-atm.sourceforge.net
3167 F:      drivers/atm/
3168 F:      include/linux/atm*
3169 F:      include/uapi/linux/atm*
3170
3171 ATMEL MACB ETHERNET DRIVER
3172 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3173 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3174 S:      Supported
3175 F:      drivers/net/ethernet/cadence/
3176
3177 ATMEL MAXTOUCH DRIVER
3178 M:      Nick Dyer <nick@shmanahar.org>
3179 S:      Maintained
3180 T:      git git://github.com/ndyer/linux.git
3181 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3182 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3183
3184 ATMEL WIRELESS DRIVER
3185 M:      Simon Kelley <simon@thekelleys.org.uk>
3186 L:      linux-wireless@vger.kernel.org
3187 S:      Maintained
3188 W:      http://www.thekelleys.org.uk/atmel
3189 W:      http://atmelwlandriver.sourceforge.net/
3190 F:      drivers/net/wireless/atmel/atmel*
3191
3192 ATOMIC INFRASTRUCTURE
3193 M:      Will Deacon <will@kernel.org>
3194 M:      Peter Zijlstra <peterz@infradead.org>
3195 R:      Boqun Feng <boqun.feng@gmail.com>
3196 L:      linux-kernel@vger.kernel.org
3197 S:      Maintained
3198 F:      arch/*/include/asm/atomic*.h
3199 F:      include/*/atomic*.h
3200 F:      include/linux/refcount.h
3201 F:      Documentation/atomic_*.txt
3202 F:      scripts/atomic/
3203
3204 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3205 M:      Bradley Grove <linuxdrivers@attotech.com>
3206 L:      linux-scsi@vger.kernel.org
3207 S:      Supported
3208 W:      http://www.attotech.com
3209 F:      drivers/scsi/esas2r
3210
3211 ATUSB IEEE 802.15.4 RADIO DRIVER
3212 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3213 L:      linux-wpan@vger.kernel.org
3214 S:      Maintained
3215 F:      drivers/net/ieee802154/at86rf230.h
3216 F:      drivers/net/ieee802154/atusb.c
3217 F:      drivers/net/ieee802154/atusb.h
3218
3219 AUDIT SUBSYSTEM
3220 M:      Paul Moore <paul@paul-moore.com>
3221 M:      Eric Paris <eparis@redhat.com>
3222 L:      linux-audit@redhat.com (moderated for non-subscribers)
3223 S:      Supported
3224 W:      https://github.com/linux-audit
3225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3226 F:      include/asm-generic/audit_*.h
3227 F:      include/linux/audit.h
3228 F:      include/linux/audit_arch.h
3229 F:      include/uapi/linux/audit.h
3230 F:      kernel/audit*
3231 F:      lib/*audit.c
3232
3233 AUXILIARY DISPLAY DRIVERS
3234 M:      Miguel Ojeda <ojeda@kernel.org>
3235 S:      Maintained
3236 F:      Documentation/devicetree/bindings/auxdisplay/
3237 F:      drivers/auxdisplay/
3238 F:      include/linux/cfag12864b.h
3239
3240 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3241 M:      Andreas Klinger <ak@it-klinger.de>
3242 L:      linux-iio@vger.kernel.org
3243 S:      Maintained
3244 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3245 F:      drivers/iio/adc/hx711.c
3246
3247 AX.25 NETWORK LAYER
3248 M:      Ralf Baechle <ralf@linux-mips.org>
3249 L:      linux-hams@vger.kernel.org
3250 S:      Maintained
3251 W:      http://www.linux-ax25.org/
3252 F:      include/net/ax25.h
3253 F:      include/uapi/linux/ax25.h
3254 F:      net/ax25/
3255
3256 AXENTIA ARM DEVICES
3257 M:      Peter Rosin <peda@axentia.se>
3258 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3259 S:      Maintained
3260 F:      arch/arm/boot/dts/at91-linea.dtsi
3261 F:      arch/arm/boot/dts/at91-natte.dtsi
3262 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3263 F:      arch/arm/boot/dts/at91-tse850-3.dts
3264
3265 AXENTIA ASOC DRIVERS
3266 M:      Peter Rosin <peda@axentia.se>
3267 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3268 S:      Maintained
3269 F:      Documentation/devicetree/bindings/sound/axentia,*
3270 F:      sound/soc/atmel/tse850-pcm5142.c
3271
3272 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3273 M:      Nuno Sá <nuno.sa@analog.com>
3274 L:      linux-hwmon@vger.kernel.org
3275 S:      Supported
3276 W:      http://ez.analog.com/community/linux-device-drivers
3277 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3278 F:      drivers/hwmon/axi-fan-control.c
3279
3280 AXXIA I2C CONTROLLER
3281 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3282 L:      linux-i2c@vger.kernel.org
3283 S:      Maintained
3284 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3285 F:      drivers/i2c/busses/i2c-axxia.c
3286
3287 AZ6007 DVB DRIVER
3288 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3289 L:      linux-media@vger.kernel.org
3290 S:      Maintained
3291 W:      https://linuxtv.org
3292 T:      git git://linuxtv.org/media_tree.git
3293 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3294
3295 AZTECH FM RADIO RECEIVER DRIVER
3296 M:      Hans Verkuil <hverkuil@xs4all.nl>
3297 L:      linux-media@vger.kernel.org
3298 S:      Maintained
3299 W:      https://linuxtv.org
3300 T:      git git://linuxtv.org/media_tree.git
3301 F:      drivers/media/radio/radio-aztech*
3302
3303 B43 WIRELESS DRIVER
3304 L:      linux-wireless@vger.kernel.org
3305 L:      b43-dev@lists.infradead.org
3306 S:      Odd Fixes
3307 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3308 F:      drivers/net/wireless/broadcom/b43/
3309
3310 B43LEGACY WIRELESS DRIVER
3311 M:      Larry Finger <Larry.Finger@lwfinger.net>
3312 L:      linux-wireless@vger.kernel.org
3313 L:      b43-dev@lists.infradead.org
3314 S:      Maintained
3315 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3316 F:      drivers/net/wireless/broadcom/b43legacy/
3317
3318 BACKLIGHT CLASS/SUBSYSTEM
3319 M:      Lee Jones <lee.jones@linaro.org>
3320 M:      Daniel Thompson <daniel.thompson@linaro.org>
3321 M:      Jingoo Han <jingoohan1@gmail.com>
3322 L:      dri-devel@lists.freedesktop.org
3323 S:      Maintained
3324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3325 F:      Documentation/ABI/stable/sysfs-class-backlight
3326 F:      Documentation/ABI/testing/sysfs-class-backlight
3327 F:      Documentation/devicetree/bindings/leds/backlight
3328 F:      drivers/video/backlight/
3329 F:      include/linux/backlight.h
3330 F:      include/linux/pwm_backlight.h
3331
3332 BARCO P50 GPIO DRIVER
3333 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3334 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3335 S:      Maintained
3336 F:      drivers/platform/x86/barco-p50-gpio.c
3337
3338 BATMAN ADVANCED
3339 M:      Marek Lindner <mareklindner@neomailbox.ch>
3340 M:      Simon Wunderlich <sw@simonwunderlich.de>
3341 M:      Antonio Quartulli <a@unstable.cc>
3342 M:      Sven Eckelmann <sven@narfation.org>
3343 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3344 S:      Maintained
3345 W:      https://www.open-mesh.org/
3346 Q:      https://patchwork.open-mesh.org/project/batman/list/
3347 B:      https://www.open-mesh.org/projects/batman-adv/issues
3348 C:      ircs://irc.hackint.org/batadv
3349 T:      git https://git.open-mesh.org/linux-merge.git
3350 F:      Documentation/networking/batman-adv.rst
3351 F:      include/uapi/linux/batadv_packet.h
3352 F:      include/uapi/linux/batman_adv.h
3353 F:      net/batman-adv/
3354
3355 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3356 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3357 L:      linux-hams@vger.kernel.org
3358 S:      Maintained
3359 W:      http://www.baycom.org/~tom/ham/ham.html
3360 F:      drivers/net/hamradio/baycom*
3361
3362 BCACHE (BLOCK LAYER CACHE)
3363 M:      Coly Li <colyli@suse.de>
3364 M:      Kent Overstreet <kent.overstreet@gmail.com>
3365 L:      linux-bcache@vger.kernel.org
3366 S:      Maintained
3367 W:      http://bcache.evilpiepirate.org
3368 C:      irc://irc.oftc.net/bcache
3369 F:      drivers/md/bcache/
3370
3371 BDISP ST MEDIA DRIVER
3372 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3373 L:      linux-media@vger.kernel.org
3374 S:      Supported
3375 W:      https://linuxtv.org
3376 T:      git git://linuxtv.org/media_tree.git
3377 F:      drivers/media/platform/sti/bdisp
3378
3379 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3380 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3381 L:      netdev@vger.kernel.org
3382 S:      Maintained
3383 F:      drivers/net/ethernet/ec_bhf.c
3384
3385 BEFS FILE SYSTEM
3386 M:      Luis de Bethencourt <luisbg@kernel.org>
3387 M:      Salah Triki <salah.triki@gmail.com>
3388 S:      Maintained
3389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3390 F:      Documentation/filesystems/befs.rst
3391 F:      fs/befs/
3392
3393 BFQ I/O SCHEDULER
3394 M:      Paolo Valente <paolo.valente@linaro.org>
3395 M:      Jens Axboe <axboe@kernel.dk>
3396 L:      linux-block@vger.kernel.org
3397 S:      Maintained
3398 F:      Documentation/block/bfq-iosched.rst
3399 F:      block/bfq-*
3400
3401 BFS FILE SYSTEM
3402 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3403 S:      Maintained
3404 F:      Documentation/filesystems/bfs.rst
3405 F:      fs/bfs/
3406 F:      include/uapi/linux/bfs_fs.h
3407
3408 BITMAP API
3409 M:      Yury Norov <yury.norov@gmail.com>
3410 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3411 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3412 S:      Maintained
3413 F:      include/asm-generic/bitops/find.h
3414 F:      include/linux/bitmap.h
3415 F:      lib/bitmap.c
3416 F:      lib/find_bit.c
3417 F:      lib/find_bit_benchmark.c
3418 F:      lib/test_bitmap.c
3419 F:      tools/include/asm-generic/bitops/find.h
3420 F:      tools/include/linux/bitmap.h
3421 F:      tools/lib/bitmap.c
3422 F:      tools/lib/find_bit.c
3423
3424 BLINKM RGB LED DRIVER
3425 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3426 S:      Maintained
3427 F:      drivers/leds/leds-blinkm.c
3428
3429 BLOCK LAYER
3430 M:      Jens Axboe <axboe@kernel.dk>
3431 L:      linux-block@vger.kernel.org
3432 S:      Maintained
3433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3434 F:      Documentation/ABI/stable/sysfs-block
3435 F:      Documentation/block/
3436 F:      block/
3437 F:      drivers/block/
3438 F:      include/linux/blk*
3439 F:      kernel/trace/blktrace.c
3440 F:      lib/sbitmap.c
3441
3442 BLOCK2MTD DRIVER
3443 M:      Joern Engel <joern@lazybastard.org>
3444 L:      linux-mtd@lists.infradead.org
3445 S:      Maintained
3446 F:      drivers/mtd/devices/block2mtd.c
3447
3448 BLUETOOTH DRIVERS
3449 M:      Marcel Holtmann <marcel@holtmann.org>
3450 M:      Johan Hedberg <johan.hedberg@gmail.com>
3451 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3452 L:      linux-bluetooth@vger.kernel.org
3453 S:      Supported
3454 W:      http://www.bluez.org/
3455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3457 F:      drivers/bluetooth/
3458
3459 BLUETOOTH SUBSYSTEM
3460 M:      Marcel Holtmann <marcel@holtmann.org>
3461 M:      Johan Hedberg <johan.hedberg@gmail.com>
3462 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3463 L:      linux-bluetooth@vger.kernel.org
3464 S:      Supported
3465 W:      http://www.bluez.org/
3466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3468 F:      include/net/bluetooth/
3469 F:      net/bluetooth/
3470
3471 BONDING DRIVER
3472 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3473 M:      Veaceslav Falico <vfalico@gmail.com>
3474 M:      Andy Gospodarek <andy@greyhouse.net>
3475 L:      netdev@vger.kernel.org
3476 S:      Supported
3477 W:      http://sourceforge.net/projects/bonding/
3478 F:      drivers/net/bonding/
3479 F:      include/net/bonding.h
3480 F:      include/uapi/linux/if_bonding.h
3481
3482 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3483 M:      Dan Robertson <dan@dlrobertson.com>
3484 L:      linux-iio@vger.kernel.org
3485 S:      Maintained
3486 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3487 F:      drivers/iio/accel/bma400*
3488
3489 BPF (Safe dynamic programs and tools)
3490 M:      Alexei Starovoitov <ast@kernel.org>
3491 M:      Daniel Borkmann <daniel@iogearbox.net>
3492 M:      Andrii Nakryiko <andrii@kernel.org>
3493 R:      Martin KaFai Lau <kafai@fb.com>
3494 R:      Song Liu <songliubraving@fb.com>
3495 R:      Yonghong Song <yhs@fb.com>
3496 R:      John Fastabend <john.fastabend@gmail.com>
3497 R:      KP Singh <kpsingh@kernel.org>
3498 L:      netdev@vger.kernel.org
3499 L:      bpf@vger.kernel.org
3500 S:      Supported
3501 W:      https://bpf.io/
3502 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3505 F:      Documentation/bpf/
3506 F:      Documentation/networking/filter.rst
3507 F:      Documentation/userspace-api/ebpf/
3508 F:      arch/*/net/*
3509 F:      include/linux/bpf*
3510 F:      include/linux/btf*
3511 F:      include/linux/filter.h
3512 F:      include/trace/events/xdp.h
3513 F:      include/uapi/linux/bpf*
3514 F:      include/uapi/linux/btf*
3515 F:      include/uapi/linux/filter.h
3516 F:      kernel/bpf/
3517 F:      kernel/trace/bpf_trace.c
3518 F:      lib/test_bpf.c
3519 F:      net/bpf/
3520 F:      net/core/filter.c
3521 F:      net/sched/act_bpf.c
3522 F:      net/sched/cls_bpf.c
3523 F:      samples/bpf/
3524 F:      scripts/bpf_doc.py
3525 F:      tools/bpf/
3526 F:      tools/lib/bpf/
3527 F:      tools/testing/selftests/bpf/
3528 N:      bpf
3529 K:      bpf
3530
3531 BPF JIT for ARM
3532 M:      Shubham Bansal <illusionist.neo@gmail.com>
3533 L:      netdev@vger.kernel.org
3534 L:      bpf@vger.kernel.org
3535 S:      Maintained
3536 F:      arch/arm/net/
3537
3538 BPF JIT for ARM64
3539 M:      Daniel Borkmann <daniel@iogearbox.net>
3540 M:      Alexei Starovoitov <ast@kernel.org>
3541 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3542 L:      netdev@vger.kernel.org
3543 L:      bpf@vger.kernel.org
3544 S:      Supported
3545 F:      arch/arm64/net/
3546
3547 BPF JIT for MIPS (32-BIT AND 64-BIT)
3548 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3549 M:      Paul Burton <paulburton@kernel.org>
3550 L:      netdev@vger.kernel.org
3551 L:      bpf@vger.kernel.org
3552 S:      Maintained
3553 F:      arch/mips/net/
3554
3555 BPF JIT for NFP NICs
3556 M:      Jakub Kicinski <kuba@kernel.org>
3557 L:      netdev@vger.kernel.org
3558 L:      bpf@vger.kernel.org
3559 S:      Supported
3560 F:      drivers/net/ethernet/netronome/nfp/bpf/
3561
3562 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3563 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3564 L:      netdev@vger.kernel.org
3565 L:      bpf@vger.kernel.org
3566 S:      Maintained
3567 F:      arch/powerpc/net/
3568
3569 BPF JIT for RISC-V (32-bit)
3570 M:      Luke Nelson <luke.r.nels@gmail.com>
3571 M:      Xi Wang <xi.wang@gmail.com>
3572 L:      netdev@vger.kernel.org
3573 L:      bpf@vger.kernel.org
3574 S:      Maintained
3575 F:      arch/riscv/net/
3576 X:      arch/riscv/net/bpf_jit_comp64.c
3577
3578 BPF JIT for RISC-V (64-bit)
3579 M:      Björn Töpel <bjorn@kernel.org>
3580 L:      netdev@vger.kernel.org
3581 L:      bpf@vger.kernel.org
3582 S:      Maintained
3583 F:      arch/riscv/net/
3584 X:      arch/riscv/net/bpf_jit_comp32.c
3585
3586 BPF JIT for S390
3587 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3588 M:      Heiko Carstens <hca@linux.ibm.com>
3589 M:      Vasily Gorbik <gor@linux.ibm.com>
3590 L:      netdev@vger.kernel.org
3591 L:      bpf@vger.kernel.org
3592 S:      Maintained
3593 F:      arch/s390/net/
3594 X:      arch/s390/net/pnet.c
3595
3596 BPF JIT for SPARC (32-BIT AND 64-BIT)
3597 M:      David S. Miller <davem@davemloft.net>
3598 L:      netdev@vger.kernel.org
3599 L:      bpf@vger.kernel.org
3600 S:      Maintained
3601 F:      arch/sparc/net/
3602
3603 BPF JIT for X86 32-BIT
3604 M:      Wang YanQing <udknight@gmail.com>
3605 L:      netdev@vger.kernel.org
3606 L:      bpf@vger.kernel.org
3607 S:      Maintained
3608 F:      arch/x86/net/bpf_jit_comp32.c
3609
3610 BPF JIT for X86 64-BIT
3611 M:      Alexei Starovoitov <ast@kernel.org>
3612 M:      Daniel Borkmann <daniel@iogearbox.net>
3613 L:      netdev@vger.kernel.org
3614 L:      bpf@vger.kernel.org
3615 S:      Supported
3616 F:      arch/x86/net/
3617 X:      arch/x86/net/bpf_jit_comp32.c
3618
3619 BPF LSM (Security Audit and Enforcement using BPF)
3620 M:      KP Singh <kpsingh@kernel.org>
3621 R:      Florent Revest <revest@chromium.org>
3622 R:      Brendan Jackman <jackmanb@chromium.org>
3623 L:      bpf@vger.kernel.org
3624 S:      Maintained
3625 F:      Documentation/bpf/prog_lsm.rst
3626 F:      include/linux/bpf_lsm.h
3627 F:      kernel/bpf/bpf_lsm.c
3628 F:      security/bpf/
3629
3630 BROADCOM B44 10/100 ETHERNET DRIVER
3631 M:      Michael Chan <michael.chan@broadcom.com>
3632 L:      netdev@vger.kernel.org
3633 S:      Supported
3634 F:      drivers/net/ethernet/broadcom/b44.*
3635
3636 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
3637 M:      Florian Fainelli <f.fainelli@gmail.com>
3638 L:      netdev@vger.kernel.org
3639 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3640 S:      Supported
3641 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3642 F:      drivers/net/dsa/b53/*
3643 F:      drivers/net/dsa/bcm_sf2*
3644 F:      include/linux/dsa/brcm.h
3645 F:      include/linux/platform_data/b53.h
3646
3647 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3648 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3649 L:      bcm-kernel-feedback-list@broadcom.com
3650 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3651 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3652 S:      Maintained
3653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3654 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3655 F:      drivers/pci/controller/pcie-brcmstb.c
3656 F:      drivers/staging/vc04_services
3657 N:      bcm2711
3658 N:      bcm283*
3659
3660 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3661 M:      Florian Fainelli <f.fainelli@gmail.com>
3662 M:      Ray Jui <rjui@broadcom.com>
3663 M:      Scott Branden <sbranden@broadcom.com>
3664 M:      bcm-kernel-feedback-list@broadcom.com
3665 S:      Maintained
3666 T:      git git://github.com/broadcom/mach-bcm
3667 F:      arch/arm/mach-bcm/
3668 N:      bcm281*
3669 N:      bcm113*
3670 N:      bcm216*
3671 N:      kona
3672
3673 BROADCOM BCM47XX MIPS ARCHITECTURE
3674 M:      Hauke Mehrtens <hauke@hauke-m.de>
3675 M:      Rafał Miłecki <zajec5@gmail.com>
3676 L:      linux-mips@vger.kernel.org
3677 S:      Maintained
3678 F:      Documentation/devicetree/bindings/mips/brcm/
3679 F:      arch/mips/bcm47xx/*
3680 F:      arch/mips/include/asm/mach-bcm47xx/*
3681
3682 BROADCOM BCM4908 ETHERNET DRIVER
3683 M:      Rafał Miłecki <rafal@milecki.pl>
3684 M:      bcm-kernel-feedback-list@broadcom.com
3685 L:      netdev@vger.kernel.org
3686 S:      Maintained
3687 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3688 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3689 F:      drivers/net/ethernet/broadcom/unimac.h
3690
3691 BROADCOM BCM5301X ARM ARCHITECTURE
3692 M:      Florian Fainelli <f.fainelli@gmail.com>
3693 M:      Hauke Mehrtens <hauke@hauke-m.de>
3694 M:      Rafał Miłecki <zajec5@gmail.com>
3695 M:      bcm-kernel-feedback-list@broadcom.com
3696 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3697 S:      Maintained
3698 F:      arch/arm/boot/dts/bcm470*
3699 F:      arch/arm/boot/dts/bcm5301*
3700 F:      arch/arm/boot/dts/bcm953012*
3701 F:      arch/arm/mach-bcm/bcm_5301x.c
3702
3703 BROADCOM BCM53573 ARM ARCHITECTURE
3704 M:      Florian Fainelli <f.fainelli@gmail.com>
3705 M:      Rafał Miłecki <rafal@milecki.pl>
3706 L:      bcm-kernel-feedback-list@broadcom.com
3707 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3708 S:      Maintained
3709 F:      arch/arm/boot/dts/bcm47189*
3710 F:      arch/arm/boot/dts/bcm53573*
3711
3712 BROADCOM BCM63XX ARM ARCHITECTURE
3713 M:      Florian Fainelli <f.fainelli@gmail.com>
3714 M:      bcm-kernel-feedback-list@broadcom.com
3715 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3716 S:      Maintained
3717 T:      git git://github.com/broadcom/stblinux.git
3718 N:      bcm63xx
3719
3720 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3721 M:      Kevin Cernekee <cernekee@gmail.com>
3722 L:      linux-usb@vger.kernel.org
3723 S:      Maintained
3724 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3725
3726 BROADCOM BCM7XXX ARM ARCHITECTURE
3727 M:      Florian Fainelli <f.fainelli@gmail.com>
3728 M:      bcm-kernel-feedback-list@broadcom.com
3729 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3730 S:      Maintained
3731 T:      git git://github.com/broadcom/stblinux.git
3732 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3733 F:      arch/arm/boot/dts/bcm7*.dts*
3734 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3735 F:      arch/arm/mach-bcm/*brcmstb*
3736 F:      arch/arm/mm/cache-b15-rac.c
3737 F:      drivers/bus/brcmstb_gisb.c
3738 F:      drivers/pci/controller/pcie-brcmstb.c
3739 N:      brcmstb
3740 N:      bcm7038
3741 N:      bcm7120
3742
3743 BROADCOM BDC DRIVER
3744 M:      Al Cooper <alcooperx@gmail.com>
3745 L:      linux-usb@vger.kernel.org
3746 L:      bcm-kernel-feedback-list@broadcom.com
3747 S:      Maintained
3748 F:      Documentation/devicetree/bindings/usb/brcm,bdc.yaml
3749 F:      drivers/usb/gadget/udc/bdc/
3750
3751 BROADCOM BMIPS CPUFREQ DRIVER
3752 M:      Markus Mayer <mmayer@broadcom.com>
3753 M:      bcm-kernel-feedback-list@broadcom.com
3754 L:      linux-pm@vger.kernel.org
3755 S:      Maintained
3756 F:      drivers/cpufreq/bmips-cpufreq.c
3757
3758 BROADCOM BMIPS MIPS ARCHITECTURE
3759 M:      Florian Fainelli <f.fainelli@gmail.com>
3760 L:      bcm-kernel-feedback-list@broadcom.com
3761 L:      linux-mips@vger.kernel.org
3762 S:      Maintained
3763 T:      git git://github.com/broadcom/stblinux.git
3764 F:      arch/mips/bmips/*
3765 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3766 F:      arch/mips/include/asm/mach-bmips/*
3767 F:      arch/mips/kernel/*bmips*
3768 F:      drivers/soc/bcm/bcm63xx
3769 F:      drivers/irqchip/irq-bcm63*
3770 F:      drivers/irqchip/irq-bcm7*
3771 F:      drivers/irqchip/irq-brcmstb*
3772 F:      include/linux/bcm963xx_nvram.h
3773 F:      include/linux/bcm963xx_tag.h
3774
3775 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3776 M:      Rasesh Mody <rmody@marvell.com>
3777 M:      GR-Linux-NIC-Dev@marvell.com
3778 L:      netdev@vger.kernel.org
3779 S:      Supported
3780 F:      drivers/net/ethernet/broadcom/bnx2.*
3781 F:      drivers/net/ethernet/broadcom/bnx2_*
3782
3783 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3784 M:      Saurav Kashyap <skashyap@marvell.com>
3785 M:      Javed Hasan <jhasan@marvell.com>
3786 M:      GR-QLogic-Storage-Upstream@marvell.com
3787 L:      linux-scsi@vger.kernel.org
3788 S:      Supported
3789 F:      drivers/scsi/bnx2fc/
3790
3791 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3792 M:      Nilesh Javali <njavali@marvell.com>
3793 M:      Manish Rangankar <mrangankar@marvell.com>
3794 M:      GR-QLogic-Storage-Upstream@marvell.com
3795 L:      linux-scsi@vger.kernel.org
3796 S:      Supported
3797 F:      drivers/scsi/bnx2i/
3798
3799 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3800 M:      Ariel Elior <aelior@marvell.com>
3801 M:      Sudarsana Kalluru <skalluru@marvell.com>
3802 M:      Manish Chopra <manishc@marvell.com>
3803 L:      netdev@vger.kernel.org
3804 S:      Supported
3805 F:      drivers/net/ethernet/broadcom/bnx2x/
3806
3807 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3808 M:      Michael Chan <michael.chan@broadcom.com>
3809 L:      netdev@vger.kernel.org
3810 S:      Supported
3811 F:      drivers/net/ethernet/broadcom/bnxt/
3812
3813 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3814 M:      Arend van Spriel <aspriel@gmail.com>
3815 M:      Franky Lin <franky.lin@broadcom.com>
3816 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3817 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3818 M:      Wright Feng <wright.feng@infineon.com>
3819 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3820 L:      linux-wireless@vger.kernel.org
3821 L:      brcm80211-dev-list.pdl@broadcom.com
3822 L:      SHA-cyfmac-dev-list@infineon.com
3823 S:      Supported
3824 F:      drivers/net/wireless/broadcom/brcm80211/
3825
3826 BROADCOM BRCMSTB GPIO DRIVER
3827 M:      Doug Berger <opendmb@gmail.com>
3828 M:      Florian Fainelli <f.fainelli@gmail.com>
3829 L:      bcm-kernel-feedback-list@broadcom.com
3830 S:      Supported
3831 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
3832 F:      drivers/gpio/gpio-brcmstb.c
3833
3834 BROADCOM BRCMSTB I2C DRIVER
3835 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3836 L:      linux-i2c@vger.kernel.org
3837 L:      bcm-kernel-feedback-list@broadcom.com
3838 S:      Supported
3839 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3840 F:      drivers/i2c/busses/i2c-brcmstb.c
3841
3842 BROADCOM BRCMSTB UART DRIVER
3843 M:      Al Cooper <alcooperx@gmail.com>
3844 L:      linux-serial@vger.kernel.org
3845 L:      bcm-kernel-feedback-list@broadcom.com
3846 S:      Maintained
3847 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3848 F:      drivers/tty/serial/8250/8250_bcm7271.c
3849
3850 BROADCOM BRCMSTB USB EHCI DRIVER
3851 M:      Al Cooper <alcooperx@gmail.com>
3852 L:      linux-usb@vger.kernel.org
3853 L:      bcm-kernel-feedback-list@broadcom.com
3854 S:      Maintained
3855 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3856 F:      drivers/usb/host/ehci-brcm.*
3857
3858 BROADCOM BRCMSTB USB PIN MAP DRIVER
3859 M:      Al Cooper <alcooperx@gmail.com>
3860 L:      linux-usb@vger.kernel.org
3861 L:      bcm-kernel-feedback-list@broadcom.com
3862 S:      Maintained
3863 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3864 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3865
3866 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3867 M:      Al Cooper <alcooperx@gmail.com>
3868 L:      linux-kernel@vger.kernel.org
3869 L:      bcm-kernel-feedback-list@broadcom.com
3870 S:      Maintained
3871 F:      drivers/phy/broadcom/phy-brcm-usb*
3872
3873 BROADCOM ETHERNET PHY DRIVERS
3874 M:      Florian Fainelli <f.fainelli@gmail.com>
3875 L:      bcm-kernel-feedback-list@broadcom.com
3876 L:      netdev@vger.kernel.org
3877 S:      Supported
3878 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3879 F:      drivers/net/phy/bcm*.[ch]
3880 F:      drivers/net/phy/broadcom.c
3881 F:      include/linux/brcmphy.h
3882
3883 BROADCOM GENET ETHERNET DRIVER
3884 M:      Doug Berger <opendmb@gmail.com>
3885 M:      Florian Fainelli <f.fainelli@gmail.com>
3886 L:      bcm-kernel-feedback-list@broadcom.com
3887 L:      netdev@vger.kernel.org
3888 S:      Supported
3889 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
3890 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
3891 F:      drivers/net/ethernet/broadcom/genet/
3892 F:      drivers/net/ethernet/broadcom/unimac.h
3893 F:      drivers/net/mdio/mdio-bcm-unimac.c
3894 F:      include/linux/platform_data/bcmgenet.h
3895 F:      include/linux/platform_data/mdio-bcm-unimac.h
3896
3897 BROADCOM IPROC ARM ARCHITECTURE
3898 M:      Ray Jui <rjui@broadcom.com>
3899 M:      Scott Branden <sbranden@broadcom.com>
3900 M:      bcm-kernel-feedback-list@broadcom.com
3901 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3902 S:      Maintained
3903 T:      git git://github.com/broadcom/cygnus-linux.git
3904 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3905 F:      arch/arm64/boot/dts/broadcom/stingray/*
3906 F:      drivers/clk/bcm/clk-ns*
3907 F:      drivers/clk/bcm/clk-sr*
3908 F:      drivers/pinctrl/bcm/pinctrl-ns*
3909 F:      include/dt-bindings/clock/bcm-sr*
3910 N:      iproc
3911 N:      cygnus
3912 N:      bcm[-_]nsp
3913 N:      bcm9113*
3914 N:      bcm9583*
3915 N:      bcm9585*
3916 N:      bcm9586*
3917 N:      bcm988312
3918 N:      bcm113*
3919 N:      bcm583*
3920 N:      bcm585*
3921 N:      bcm586*
3922 N:      bcm88312
3923 N:      hr2
3924 N:      stingray
3925
3926 BROADCOM IPROC GBIT ETHERNET DRIVER
3927 M:      Rafał Miłecki <rafal@milecki.pl>
3928 M:      bcm-kernel-feedback-list@broadcom.com
3929 L:      netdev@vger.kernel.org
3930 S:      Maintained
3931 F:      Documentation/devicetree/bindings/net/brcm,amac.yaml
3932 F:      drivers/net/ethernet/broadcom/bgmac*
3933 F:      drivers/net/ethernet/broadcom/unimac.h
3934
3935 BROADCOM KONA GPIO DRIVER
3936 M:      Ray Jui <rjui@broadcom.com>
3937 L:      bcm-kernel-feedback-list@broadcom.com
3938 S:      Supported
3939 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3940 F:      drivers/gpio/gpio-bcm-kona.c
3941
3942 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
3943 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
3944 M:      Kashyap Desai <kashyap.desai@broadcom.com>
3945 M:      Sumit Saxena <sumit.saxena@broadcom.com>
3946 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
3947 L:      mpi3mr-linuxdrv.pdl@broadcom.com
3948 L:      linux-scsi@vger.kernel.org
3949 S:      Supported
3950 W:      https://www.broadcom.com/support/storage
3951 F:      drivers/scsi/mpi3mr/
3952
3953 BROADCOM NETXTREME-E ROCE DRIVER
3954 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3955 L:      linux-rdma@vger.kernel.org
3956 S:      Supported
3957 W:      http://www.broadcom.com
3958 F:      drivers/infiniband/hw/bnxt_re/
3959 F:      include/uapi/rdma/bnxt_re-abi.h
3960
3961 BROADCOM NVRAM DRIVER
3962 M:      Rafał Miłecki <zajec5@gmail.com>
3963 L:      linux-mips@vger.kernel.org
3964 S:      Maintained
3965 F:      drivers/firmware/broadcom/*
3966
3967 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3968 M:      Rafał Miłecki <rafal@milecki.pl>
3969 M:      Florian Fainelli <f.fainelli@gmail.com>
3970 M:      bcm-kernel-feedback-list@broadcom.com
3971 L:      linux-pm@vger.kernel.org
3972 S:      Maintained
3973 T:      git git://github.com/broadcom/stblinux.git
3974 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
3975 F:      include/dt-bindings/soc/bcm-pmb.h
3976
3977 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3978 M:      Rafał Miłecki <zajec5@gmail.com>
3979 L:      linux-wireless@vger.kernel.org
3980 S:      Maintained
3981 F:      drivers/bcma/
3982 F:      include/linux/bcma/
3983
3984 BROADCOM SPI DRIVER
3985 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3986 M:      bcm-kernel-feedback-list@broadcom.com
3987 S:      Maintained
3988 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
3989 F:      drivers/spi/spi-bcm-qspi.*
3990 F:      drivers/spi/spi-brcmstb-qspi.c
3991 F:      drivers/spi/spi-iproc-qspi.c
3992
3993 BROADCOM STB AVS CPUFREQ DRIVER
3994 M:      Markus Mayer <mmayer@broadcom.com>
3995 M:      bcm-kernel-feedback-list@broadcom.com
3996 L:      linux-pm@vger.kernel.org
3997 S:      Maintained
3998 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3999 F:      drivers/cpufreq/brcmstb*
4000
4001 BROADCOM STB AVS TMON DRIVER
4002 M:      Markus Mayer <mmayer@broadcom.com>
4003 M:      bcm-kernel-feedback-list@broadcom.com
4004 L:      linux-pm@vger.kernel.org
4005 S:      Maintained
4006 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4007 F:      drivers/thermal/broadcom/brcmstb*
4008
4009 BROADCOM STB DPFE DRIVER
4010 M:      Markus Mayer <mmayer@broadcom.com>
4011 M:      bcm-kernel-feedback-list@broadcom.com
4012 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4013 S:      Maintained
4014 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4015 F:      drivers/memory/brcmstb_dpfe.c
4016
4017 BROADCOM STB NAND FLASH DRIVER
4018 M:      Brian Norris <computersforpeace@gmail.com>
4019 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4020 L:      linux-mtd@lists.infradead.org
4021 L:      bcm-kernel-feedback-list@broadcom.com
4022 S:      Maintained
4023 F:      drivers/mtd/nand/raw/brcmnand/
4024
4025 BROADCOM STB PCIE DRIVER
4026 M:      Jim Quinlan <jim2101024@gmail.com>
4027 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
4028 M:      Florian Fainelli <f.fainelli@gmail.com>
4029 M:      bcm-kernel-feedback-list@broadcom.com
4030 L:      linux-pci@vger.kernel.org
4031 S:      Maintained
4032 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4033 F:      drivers/pci/controller/pcie-brcmstb.c
4034
4035 BROADCOM SYSTEMPORT ETHERNET DRIVER
4036 M:      Florian Fainelli <f.fainelli@gmail.com>
4037 L:      bcm-kernel-feedback-list@broadcom.com
4038 L:      netdev@vger.kernel.org
4039 S:      Supported
4040 F:      drivers/net/ethernet/broadcom/bcmsysport.*
4041 F:      drivers/net/ethernet/broadcom/unimac.h
4042 F:      Documentation/devicetree/bindings/net/brcm,systemport.yaml
4043
4044 BROADCOM TG3 GIGABIT ETHERNET DRIVER
4045 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
4046 M:      Prashant Sreedharan <prashant@broadcom.com>
4047 M:      Michael Chan <mchan@broadcom.com>
4048 L:      netdev@vger.kernel.org
4049 S:      Supported
4050 F:      drivers/net/ethernet/broadcom/tg3.*
4051
4052 BROADCOM VK DRIVER
4053 M:      Scott Branden <scott.branden@broadcom.com>
4054 L:      bcm-kernel-feedback-list@broadcom.com
4055 S:      Supported
4056 F:      drivers/misc/bcm-vk/
4057 F:      include/uapi/linux/misc/bcm_vk.h
4058
4059 BROCADE BFA FC SCSI DRIVER
4060 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
4061 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
4062 L:      linux-scsi@vger.kernel.org
4063 S:      Supported
4064 F:      drivers/scsi/bfa/
4065
4066 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4067 M:      Rasesh Mody <rmody@marvell.com>
4068 M:      Sudarsana Kalluru <skalluru@marvell.com>
4069 M:      GR-Linux-NIC-Dev@marvell.com
4070 L:      netdev@vger.kernel.org
4071 S:      Supported
4072 F:      drivers/net/ethernet/brocade/bna/
4073
4074 BSG (block layer generic sg v4 driver)
4075 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4076 L:      linux-scsi@vger.kernel.org
4077 S:      Supported
4078 F:      block/bsg.c
4079 F:      include/linux/bsg.h
4080 F:      include/uapi/linux/bsg.h
4081
4082 BT87X AUDIO DRIVER
4083 M:      Clemens Ladisch <clemens@ladisch.de>
4084 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4085 S:      Maintained
4086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4087 F:      Documentation/sound/cards/bt87x.rst
4088 F:      sound/pci/bt87x.c
4089
4090 BT8XXGPIO DRIVER
4091 M:      Michael Buesch <m@bues.ch>
4092 S:      Maintained
4093 W:      http://bu3sch.de/btgpio.php
4094 F:      drivers/gpio/gpio-bt8xx.c
4095
4096 BTRFS FILE SYSTEM
4097 M:      Chris Mason <clm@fb.com>
4098 M:      Josef Bacik <josef@toxicpanda.com>
4099 M:      David Sterba <dsterba@suse.com>
4100 L:      linux-btrfs@vger.kernel.org
4101 S:      Maintained
4102 W:      http://btrfs.wiki.kernel.org/
4103 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
4104 C:      irc://irc.libera.chat/btrfs
4105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4106 F:      Documentation/filesystems/btrfs.rst
4107 F:      fs/btrfs/
4108 F:      include/linux/btrfs*
4109 F:      include/uapi/linux/btrfs*
4110
4111 BTTV VIDEO4LINUX DRIVER
4112 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4113 L:      linux-media@vger.kernel.org
4114 S:      Odd fixes
4115 W:      https://linuxtv.org
4116 T:      git git://linuxtv.org/media_tree.git
4117 F:      Documentation/driver-api/media/drivers/bttv*
4118 F:      drivers/media/pci/bt8xx/bttv*
4119
4120 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4121 M:      Chanwoo Choi <cw00.choi@samsung.com>
4122 L:      linux-pm@vger.kernel.org
4123 L:      linux-samsung-soc@vger.kernel.org
4124 S:      Maintained
4125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4126 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4127 F:      drivers/devfreq/exynos-bus.c
4128
4129 BUSLOGIC SCSI DRIVER
4130 M:      Khalid Aziz <khalid@gonehiking.org>
4131 L:      linux-scsi@vger.kernel.org
4132 S:      Maintained
4133 F:      drivers/scsi/BusLogic.*
4134 F:      drivers/scsi/FlashPoint.*
4135
4136 C-MEDIA CMI8788 DRIVER
4137 M:      Clemens Ladisch <clemens@ladisch.de>
4138 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4139 S:      Maintained
4140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4141 F:      sound/pci/oxygen/
4142
4143 C-SKY ARCHITECTURE
4144 M:      Guo Ren <guoren@kernel.org>
4145 L:      linux-csky@vger.kernel.org
4146 S:      Supported
4147 T:      git https://github.com/c-sky/csky-linux.git
4148 F:      Documentation/devicetree/bindings/csky/
4149 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4150 F:      Documentation/devicetree/bindings/timer/csky,*
4151 F:      arch/csky/
4152 F:      drivers/clocksource/timer-gx6605s.c
4153 F:      drivers/clocksource/timer-mp-csky.c
4154 F:      drivers/irqchip/irq-csky-*
4155 N:      csky
4156 K:      csky
4157
4158 CA8210 IEEE-802.15.4 RADIO DRIVER
4159 M:      Harry Morris <h.morris@cascoda.com>
4160 L:      linux-wpan@vger.kernel.org
4161 S:      Maintained
4162 W:      https://github.com/Cascoda/ca8210-linux.git
4163 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4164 F:      drivers/net/ieee802154/ca8210.c
4165
4166 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4167 M:      Damien Le Moal <damien.lemoal@wdc.com>
4168 L:      linux-riscv@lists.infradead.org
4169 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4170 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4171 F:      drivers/pinctrl/pinctrl-k210.c
4172
4173 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4174 M:      Damien Le Moal <damien.lemoal@wdc.com>
4175 L:      linux-kernel@vger.kernel.org
4176 L:      linux-riscv@lists.infradead.org
4177 S:      Maintained
4178 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4179 F:      drivers/reset/reset-k210.c
4180
4181 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4182 M:      Damien Le Moal <damien.lemoal@wdc.com>
4183 L:      linux-riscv@lists.infradead.org
4184 S:      Maintained
4185 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4186 F:      drivers/soc/canaan/
4187 F:      include/soc/canaan/
4188
4189 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4190 M:      David Howells <dhowells@redhat.com>
4191 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4192 S:      Supported
4193 F:      Documentation/filesystems/caching/cachefiles.rst
4194 F:      fs/cachefiles/
4195
4196 CADENCE MIPI-CSI2 BRIDGES
4197 M:      Maxime Ripard <mripard@kernel.org>
4198 L:      linux-media@vger.kernel.org
4199 S:      Maintained
4200 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4201 F:      drivers/media/platform/cadence/cdns-csi2*
4202
4203 CADENCE NAND DRIVER
4204 L:      linux-mtd@lists.infradead.org
4205 S:      Orphan
4206 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4207 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4208
4209 CADENCE USB3 DRD IP DRIVER
4210 M:      Peter Chen <peter.chen@kernel.org>
4211 M:      Pawel Laszczak <pawell@cadence.com>
4212 R:      Roger Quadros <rogerq@kernel.org>
4213 R:      Aswath Govindraju <a-govindraju@ti.com>
4214 L:      linux-usb@vger.kernel.org
4215 S:      Maintained
4216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4217 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4218 F:      drivers/usb/cdns3/
4219 X:      drivers/usb/cdns3/cdnsp*
4220
4221 CADENCE USBSSP DRD IP DRIVER
4222 M:      Pawel Laszczak <pawell@cadence.com>
4223 L:      linux-usb@vger.kernel.org
4224 S:      Maintained
4225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4226 F:      drivers/usb/cdns3/
4227 X:      drivers/usb/cdns3/cdns3*
4228
4229 CADET FM/AM RADIO RECEIVER DRIVER
4230 M:      Hans Verkuil <hverkuil@xs4all.nl>
4231 L:      linux-media@vger.kernel.org
4232 S:      Maintained
4233 W:      https://linuxtv.org
4234 T:      git git://linuxtv.org/media_tree.git
4235 F:      drivers/media/radio/radio-cadet*
4236
4237 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4238 L:      linux-media@vger.kernel.org
4239 S:      Orphan
4240 T:      git git://linuxtv.org/media_tree.git
4241 F:      Documentation/admin-guide/media/cafe_ccic*
4242 F:      drivers/media/platform/marvell-ccic/
4243
4244 CAIF NETWORK LAYER
4245 L:      netdev@vger.kernel.org
4246 S:      Orphan
4247 F:      Documentation/networking/caif/
4248 F:      drivers/net/caif/
4249 F:      include/net/caif/
4250 F:      include/uapi/linux/caif/
4251 F:      net/caif/
4252
4253 CAKE QDISC
4254 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4255 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4256 S:      Maintained
4257 F:      net/sched/sch_cake.c
4258
4259 CAN NETWORK DRIVERS
4260 M:      Wolfgang Grandegger <wg@grandegger.com>
4261 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4262 L:      linux-can@vger.kernel.org
4263 S:      Maintained
4264 W:      https://github.com/linux-can
4265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4267 F:      Documentation/devicetree/bindings/net/can/
4268 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4269 F:      drivers/net/can/
4270 F:      drivers/phy/phy-can-transceiver.c
4271 F:      include/linux/can/bittiming.h
4272 F:      include/linux/can/dev.h
4273 F:      include/linux/can/led.h
4274 F:      include/linux/can/length.h
4275 F:      include/linux/can/platform/
4276 F:      include/linux/can/rx-offload.h
4277 F:      include/uapi/linux/can/error.h
4278 F:      include/uapi/linux/can/netlink.h
4279 F:      include/uapi/linux/can/vxcan.h
4280
4281 CAN NETWORK LAYER
4282 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4283 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4284 L:      linux-can@vger.kernel.org
4285 S:      Maintained
4286 W:      https://github.com/linux-can
4287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4289 F:      Documentation/networking/can.rst
4290 F:      include/linux/can/can-ml.h
4291 F:      include/linux/can/core.h
4292 F:      include/linux/can/skb.h
4293 F:      include/net/netns/can.h
4294 F:      include/uapi/linux/can.h
4295 F:      include/uapi/linux/can/bcm.h
4296 F:      include/uapi/linux/can/gw.h
4297 F:      include/uapi/linux/can/isotp.h
4298 F:      include/uapi/linux/can/raw.h
4299 F:      net/can/
4300
4301 CAN-J1939 NETWORK LAYER
4302 M:      Robin van der Gracht <robin@protonic.nl>
4303 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4304 R:      kernel@pengutronix.de
4305 L:      linux-can@vger.kernel.org
4306 S:      Maintained
4307 F:      Documentation/networking/j1939.rst
4308 F:      include/uapi/linux/can/j1939.h
4309 F:      net/can/j1939/
4310
4311 CAPABILITIES
4312 M:      Serge Hallyn <serge@hallyn.com>
4313 L:      linux-security-module@vger.kernel.org
4314 S:      Supported
4315 F:      include/linux/capability.h
4316 F:      include/uapi/linux/capability.h
4317 F:      kernel/capability.c
4318 F:      security/commoncap.c
4319
4320 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4321 M:      Kevin Tsai <ktsai@capellamicro.com>
4322 S:      Maintained
4323 F:      drivers/iio/light/cm*
4324
4325 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4326 M:      Christian Lamparter <chunkeey@googlemail.com>
4327 L:      linux-wireless@vger.kernel.org
4328 S:      Maintained
4329 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4330 F:      drivers/net/wireless/ath/carl9170/
4331
4332 CAVIUM I2C DRIVER
4333 M:      Robert Richter <rric@kernel.org>
4334 S:      Odd Fixes
4335 W:      http://www.marvell.com
4336 F:      drivers/i2c/busses/i2c-octeon*
4337 F:      drivers/i2c/busses/i2c-thunderx*
4338
4339 CAVIUM LIQUIDIO NETWORK DRIVER
4340 M:      Derek Chickles <dchickles@marvell.com>
4341 M:      Satanand Burla <sburla@marvell.com>
4342 M:      Felix Manlunas <fmanlunas@marvell.com>
4343 L:      netdev@vger.kernel.org
4344 S:      Supported
4345 W:      http://www.marvell.com
4346 F:      drivers/net/ethernet/cavium/liquidio/
4347
4348 CAVIUM MMC DRIVER
4349 M:      Robert Richter <rric@kernel.org>
4350 S:      Odd Fixes
4351 W:      http://www.marvell.com
4352 F:      drivers/mmc/host/cavium*
4353
4354 CAVIUM OCTEON-TX CRYPTO DRIVER
4355 M:      George Cherian <gcherian@marvell.com>
4356 L:      linux-crypto@vger.kernel.org
4357 S:      Supported
4358 W:      http://www.marvell.com
4359 F:      drivers/crypto/cavium/cpt/
4360
4361 CAVIUM THUNDERX2 ARM64 SOC
4362 M:      Robert Richter <rric@kernel.org>
4363 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4364 S:      Odd Fixes
4365 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4366 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4367
4368 CBS/ETF/TAPRIO QDISCS
4369 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4370 S:      Maintained
4371 L:      netdev@vger.kernel.org
4372 F:      net/sched/sch_cbs.c
4373 F:      net/sched/sch_etf.c
4374 F:      net/sched/sch_taprio.c
4375
4376 CC2520 IEEE-802.15.4 RADIO DRIVER
4377 M:      Varka Bhadram <varkabhadram@gmail.com>
4378 L:      linux-wpan@vger.kernel.org
4379 S:      Maintained
4380 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4381 F:      drivers/net/ieee802154/cc2520.c
4382 F:      include/linux/spi/cc2520.h
4383
4384 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4385 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4386 L:      linux-crypto@vger.kernel.org
4387 S:      Supported
4388 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4389 F:      drivers/crypto/ccree/
4390
4391 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4392 M:      Hadar Gat <hadar.gat@arm.com>
4393 L:      linux-crypto@vger.kernel.org
4394 S:      Supported
4395 F:      drivers/char/hw_random/cctrng.c
4396 F:      drivers/char/hw_random/cctrng.h
4397 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4398 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4399
4400 CEC FRAMEWORK
4401 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4402 L:      linux-media@vger.kernel.org
4403 S:      Supported
4404 W:      http://linuxtv.org
4405 T:      git git://linuxtv.org/media_tree.git
4406 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4407 F:      Documentation/devicetree/bindings/media/cec.txt
4408 F:      Documentation/driver-api/media/cec-core.rst
4409 F:      Documentation/userspace-api/media/cec
4410 F:      drivers/media/cec/
4411 F:      drivers/media/rc/keymaps/rc-cec.c
4412 F:      include/media/cec-notifier.h
4413 F:      include/media/cec.h
4414 F:      include/uapi/linux/cec-funcs.h
4415 F:      include/uapi/linux/cec.h
4416
4417 CEC GPIO DRIVER
4418 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4419 L:      linux-media@vger.kernel.org
4420 S:      Supported
4421 W:      http://linuxtv.org
4422 T:      git git://linuxtv.org/media_tree.git
4423 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4424 F:      drivers/media/cec/platform/cec-gpio/
4425
4426 CELL BROADBAND ENGINE ARCHITECTURE
4427 M:      Arnd Bergmann <arnd@arndb.de>
4428 L:      linuxppc-dev@lists.ozlabs.org
4429 S:      Supported
4430 W:      http://www.ibm.com/developerworks/power/cell/
4431 F:      arch/powerpc/include/asm/cell*.h
4432 F:      arch/powerpc/include/asm/spu*.h
4433 F:      arch/powerpc/include/uapi/asm/spu*.h
4434 F:      arch/powerpc/platforms/cell/
4435
4436 CELLWISE CW2015 BATTERY DRIVER
4437 M:      Tobias Schrammm <t.schramm@manjaro.org>
4438 S:      Maintained
4439 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4440 F:      drivers/power/supply/cw2015_battery.c
4441
4442 CEPH COMMON CODE (LIBCEPH)
4443 M:      Ilya Dryomov <idryomov@gmail.com>
4444 M:      Jeff Layton <jlayton@kernel.org>
4445 L:      ceph-devel@vger.kernel.org
4446 S:      Supported
4447 W:      http://ceph.com/
4448 T:      git git://github.com/ceph/ceph-client.git
4449 F:      include/linux/ceph/
4450 F:      include/linux/crush/
4451 F:      net/ceph/
4452
4453 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4454 M:      Jeff Layton <jlayton@kernel.org>
4455 M:      Ilya Dryomov <idryomov@gmail.com>
4456 L:      ceph-devel@vger.kernel.org
4457 S:      Supported
4458 W:      http://ceph.com/
4459 T:      git git://github.com/ceph/ceph-client.git
4460 F:      Documentation/filesystems/ceph.rst
4461 F:      fs/ceph/
4462
4463 CERTIFICATE HANDLING
4464 M:      David Howells <dhowells@redhat.com>
4465 M:      David Woodhouse <dwmw2@infradead.org>
4466 L:      keyrings@vger.kernel.org
4467 S:      Maintained
4468 F:      Documentation/admin-guide/module-signing.rst
4469 F:      certs/
4470 F:      scripts/extract-cert.c
4471 F:      scripts/sign-file.c
4472
4473 CFAG12864B LCD DRIVER
4474 M:      Miguel Ojeda <ojeda@kernel.org>
4475 S:      Maintained
4476 F:      drivers/auxdisplay/cfag12864b.c
4477 F:      include/linux/cfag12864b.h
4478
4479 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4480 M:      Miguel Ojeda <ojeda@kernel.org>
4481 S:      Maintained
4482 F:      drivers/auxdisplay/cfag12864bfb.c
4483 F:      include/linux/cfag12864b.h
4484
4485 CHAR and MISC DRIVERS
4486 M:      Arnd Bergmann <arnd@arndb.de>
4487 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4488 S:      Supported
4489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4490 F:      drivers/char/
4491 F:      drivers/misc/
4492 F:      include/linux/miscdevice.h
4493 X:      drivers/char/agp/
4494 X:      drivers/char/hw_random/
4495 X:      drivers/char/ipmi/
4496 X:      drivers/char/random.c
4497 X:      drivers/char/tpm/
4498
4499 CHECKPATCH
4500 M:      Andy Whitcroft <apw@canonical.com>
4501 M:      Joe Perches <joe@perches.com>
4502 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4503 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4504 S:      Maintained
4505 F:      scripts/checkpatch.pl
4506
4507 CHECKPATCH DOCUMENTATION
4508 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4509 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4510 R:      Joe Perches <joe@perches.com>
4511 S:      Maintained
4512 F:      Documentation/dev-tools/checkpatch.rst
4513
4514 CHINESE DOCUMENTATION
4515 M:      Alex Shi <alexs@kernel.org>
4516 S:      Maintained
4517 F:      Documentation/translations/zh_CN/
4518
4519 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4520 M:      Peter Chen <peter.chen@kernel.org>
4521 L:      linux-usb@vger.kernel.org
4522 S:      Maintained
4523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4524 F:      drivers/usb/chipidea/
4525
4526 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4527 M:      Hans de Goede <hdegoede@redhat.com>
4528 L:      linux-input@vger.kernel.org
4529 S:      Maintained
4530 F:      Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4531 F:      drivers/input/touchscreen/chipone_icn8318.c
4532
4533 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4534 M:      Hans de Goede <hdegoede@redhat.com>
4535 L:      linux-input@vger.kernel.org
4536 S:      Maintained
4537 F:      drivers/input/touchscreen/chipone_icn8505.c
4538
4539 CHROME HARDWARE PLATFORM SUPPORT
4540 M:      Benson Leung <bleung@chromium.org>
4541 S:      Maintained
4542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4543 F:      drivers/platform/chrome/
4544
4545 CHROMEOS EC CODEC DRIVER
4546 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4547 R:      Guenter Roeck <groeck@chromium.org>
4548 S:      Maintained
4549 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4550 F:      sound/soc/codecs/cros_ec_codec.*
4551
4552 CHROMEOS EC SUBDRIVERS
4553 M:      Benson Leung <bleung@chromium.org>
4554 R:      Guenter Roeck <groeck@chromium.org>
4555 S:      Maintained
4556 F:      drivers/power/supply/cros_usbpd-charger.c
4557 N:      cros_ec
4558 N:      cros-ec
4559
4560 CHROMEOS EC USB TYPE-C DRIVER
4561 M:      Prashant Malani <pmalani@chromium.org>
4562 S:      Maintained
4563 F:      drivers/platform/chrome/cros_ec_typec.c
4564
4565 CHROMEOS EC USB PD NOTIFY DRIVER
4566 M:      Prashant Malani <pmalani@chromium.org>
4567 S:      Maintained
4568 F:      drivers/platform/chrome/cros_usbpd_notify.c
4569 F:      include/linux/platform_data/cros_usbpd_notify.h
4570
4571 CHRONTEL CH7322 CEC DRIVER
4572 M:      Joe Tessler <jrt@google.com>
4573 L:      linux-media@vger.kernel.org
4574 S:      Maintained
4575 T:      git git://linuxtv.org/media_tree.git
4576 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4577 F:      drivers/media/cec/i2c/ch7322.c
4578
4579 CIRRUS LOGIC AUDIO CODEC DRIVERS
4580 M:      James Schulman <james.schulman@cirrus.com>
4581 M:      David Rhodes <david.rhodes@cirrus.com>
4582 M:      Lucas Tanure <tanureal@opensource.cirrus.com>
4583 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4584 L:      patches@opensource.cirrus.com
4585 S:      Maintained
4586 F:      Documentation/devicetree/bindings/sound/cirrus,cs*
4587 F:      sound/pci/hda/cs*
4588 F:      sound/soc/codecs/cs*
4589
4590 CIRRUS LOGIC DSP FIRMWARE DRIVER
4591 M:      Simon Trimmer <simont@opensource.cirrus.com>
4592 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4593 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4594 L:      patches@opensource.cirrus.com
4595 S:      Supported
4596 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4597 T:      git https://github.com/CirrusLogic/linux-drivers.git
4598 F:      drivers/firmware/cirrus/*
4599 F:      include/linux/firmware/cirrus/*
4600
4601 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4602 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4603 L:      netdev@vger.kernel.org
4604 S:      Maintained
4605 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4606
4607 CIRRUS LOGIC LOCHNAGAR DRIVER
4608 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4609 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4610 L:      patches@opensource.cirrus.com
4611 S:      Supported
4612 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4613 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4614 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4615 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4616 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4617 F:      Documentation/hwmon/lochnagar.rst
4618 F:      drivers/clk/clk-lochnagar.c
4619 F:      drivers/hwmon/lochnagar-hwmon.c
4620 F:      drivers/mfd/lochnagar-i2c.c
4621 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4622 F:      drivers/regulator/lochnagar-regulator.c
4623 F:      include/dt-bindings/clk/lochnagar.h
4624 F:      include/dt-bindings/pinctrl/lochnagar.h
4625 F:      include/linux/mfd/lochnagar*
4626 F:      sound/soc/codecs/lochnagar-sc.c
4627
4628 CIRRUS LOGIC MADERA CODEC DRIVERS
4629 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4630 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4631 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4632 L:      patches@opensource.cirrus.com
4633 S:      Supported
4634 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4635 T:      git https://github.com/CirrusLogic/linux-drivers.git
4636 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4637 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4638 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4639 F:      drivers/gpio/gpio-madera*
4640 F:      drivers/irqchip/irq-madera*
4641 F:      drivers/mfd/cs47l*
4642 F:      drivers/mfd/madera*
4643 F:      drivers/pinctrl/cirrus/*
4644 F:      include/dt-bindings/sound/madera*
4645 F:      include/linux/irqchip/irq-madera*
4646 F:      include/linux/mfd/madera/*
4647 F:      include/sound/madera*
4648 F:      sound/soc/codecs/cs47l*
4649 F:      sound/soc/codecs/madera*
4650
4651 CISCO FCOE HBA DRIVER
4652 M:      Satish Kharat <satishkh@cisco.com>
4653 M:      Sesidhar Baddela <sebaddel@cisco.com>
4654 M:      Karan Tilak Kumar <kartilak@cisco.com>
4655 L:      linux-scsi@vger.kernel.org
4656 S:      Supported
4657 F:      drivers/scsi/fnic/
4658
4659 CISCO SCSI HBA DRIVER
4660 M:      Karan Tilak Kumar <kartilak@cisco.com>
4661 M:      Sesidhar Baddela <sebaddel@cisco.com>
4662 L:      linux-scsi@vger.kernel.org
4663 S:      Supported
4664 F:      drivers/scsi/snic/
4665
4666 CISCO VIC ETHERNET NIC DRIVER
4667 M:      Christian Benvenuti <benve@cisco.com>
4668 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4669 S:      Supported
4670 F:      drivers/net/ethernet/cisco/enic/
4671
4672 CISCO VIC LOW LATENCY NIC DRIVER
4673 M:      Christian Benvenuti <benve@cisco.com>
4674 M:      Nelson Escobar <neescoba@cisco.com>
4675 S:      Supported
4676 F:      drivers/infiniband/hw/usnic/
4677
4678 CLANG-FORMAT FILE
4679 M:      Miguel Ojeda <ojeda@kernel.org>
4680 S:      Maintained
4681 F:      .clang-format
4682
4683 CLANG/LLVM BUILD SUPPORT
4684 M:      Nathan Chancellor <nathan@kernel.org>
4685 M:      Nick Desaulniers <ndesaulniers@google.com>
4686 L:      llvm@lists.linux.dev
4687 S:      Supported
4688 W:      https://clangbuiltlinux.github.io/
4689 B:      https://github.com/ClangBuiltLinux/linux/issues
4690 C:      irc://irc.libera.chat/clangbuiltlinux
4691 F:      Documentation/kbuild/llvm.rst
4692 F:      include/linux/compiler-clang.h
4693 F:      scripts/Makefile.clang
4694 F:      scripts/clang-tools/
4695 K:      \b(?i:clang|llvm)\b
4696
4697 CLANG CONTROL FLOW INTEGRITY SUPPORT
4698 M:      Sami Tolvanen <samitolvanen@google.com>
4699 M:      Kees Cook <keescook@chromium.org>
4700 R:      Nathan Chancellor <nathan@kernel.org>
4701 R:      Nick Desaulniers <ndesaulniers@google.com>
4702 L:      llvm@lists.linux.dev
4703 S:      Supported
4704 B:      https://github.com/ClangBuiltLinux/linux/issues
4705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4706 F:      include/linux/cfi.h
4707 F:      kernel/cfi.c
4708
4709 CLEANCACHE API
4710 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4711 L:      linux-kernel@vger.kernel.org
4712 S:      Maintained
4713 F:      include/linux/cleancache.h
4714 F:      mm/cleancache.c
4715
4716 CLK API
4717 M:      Russell King <linux@armlinux.org.uk>
4718 L:      linux-clk@vger.kernel.org
4719 S:      Maintained
4720 F:      include/linux/clk.h
4721
4722 CLOCKSOURCE, CLOCKEVENT DRIVERS
4723 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4724 M:      Thomas Gleixner <tglx@linutronix.de>
4725 L:      linux-kernel@vger.kernel.org
4726 S:      Supported
4727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4728 F:      Documentation/devicetree/bindings/timer/
4729 F:      drivers/clocksource/
4730
4731 CMPC ACPI DRIVER
4732 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4733 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4734 L:      platform-driver-x86@vger.kernel.org
4735 S:      Supported
4736 F:      drivers/platform/x86/classmate-laptop.c
4737
4738 COBALT MEDIA DRIVER
4739 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4740 L:      linux-media@vger.kernel.org
4741 S:      Supported
4742 W:      https://linuxtv.org
4743 T:      git git://linuxtv.org/media_tree.git
4744 F:      drivers/media/pci/cobalt/
4745
4746 COCCINELLE/Semantic Patches (SmPL)
4747 M:      Julia Lawall <Julia.Lawall@inria.fr>
4748 M:      Gilles Muller <Gilles.Muller@inria.fr>
4749 M:      Nicolas Palix <nicolas.palix@imag.fr>
4750 L:      cocci@inria.fr (moderated for non-subscribers)
4751 S:      Supported
4752 W:      https://coccinelle.gitlabpages.inria.fr/website/
4753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
4754 F:      Documentation/dev-tools/coccinelle.rst
4755 F:      scripts/coccicheck
4756 F:      scripts/coccinelle/
4757
4758 CODA FILE SYSTEM
4759 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4760 M:      coda@cs.cmu.edu
4761 L:      codalist@coda.cs.cmu.edu
4762 S:      Maintained
4763 W:      http://www.coda.cs.cmu.edu/
4764 F:      Documentation/filesystems/coda.rst
4765 F:      fs/coda/
4766 F:      include/linux/coda*.h
4767 F:      include/uapi/linux/coda*.h
4768
4769 CODA V4L2 MEM2MEM DRIVER
4770 M:      Philipp Zabel <p.zabel@pengutronix.de>
4771 L:      linux-media@vger.kernel.org
4772 S:      Maintained
4773 F:      Documentation/devicetree/bindings/media/coda.yaml
4774 F:      drivers/media/platform/coda/
4775
4776 CODE OF CONDUCT
4777 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4778 S:      Supported
4779 F:      Documentation/process/code-of-conduct-interpretation.rst
4780 F:      Documentation/process/code-of-conduct.rst
4781
4782 COMEDI DRIVERS
4783 M:      Ian Abbott <abbotti@mev.co.uk>
4784 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4785 S:      Odd Fixes
4786 F:      drivers/comedi/
4787 F:      include/linux/comedi/
4788 F:      include/uapi/linux/comedi.h
4789
4790 COMMON CLK FRAMEWORK
4791 M:      Michael Turquette <mturquette@baylibre.com>
4792 M:      Stephen Boyd <sboyd@kernel.org>
4793 L:      linux-clk@vger.kernel.org
4794 S:      Maintained
4795 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4797 F:      Documentation/devicetree/bindings/clock/
4798 F:      drivers/clk/
4799 F:      include/linux/clk-pr*
4800 F:      include/linux/clk/
4801 F:      include/linux/of_clk.h
4802 X:      drivers/clk/clkdev.c
4803
4804 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4805 M:      Steve French <sfrench@samba.org>
4806 L:      linux-cifs@vger.kernel.org
4807 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4808 S:      Supported
4809 W:      http://linux-cifs.samba.org/
4810 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4811 F:      Documentation/admin-guide/cifs/
4812 F:      fs/cifs/
4813 F:      fs/smbfs_common/
4814
4815 COMPACTPCI HOTPLUG CORE
4816 M:      Scott Murray <scott@spiteful.org>
4817 L:      linux-pci@vger.kernel.org
4818 S:      Maintained
4819 F:      drivers/pci/hotplug/cpci_hotplug*
4820
4821 COMPACTPCI HOTPLUG GENERIC DRIVER
4822 M:      Scott Murray <scott@spiteful.org>
4823 L:      linux-pci@vger.kernel.org
4824 S:      Maintained
4825 F:      drivers/pci/hotplug/cpcihp_generic.c
4826
4827 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4828 M:      Scott Murray <scott@spiteful.org>
4829 L:      linux-pci@vger.kernel.org
4830 S:      Maintained
4831 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4832
4833 COMPAL LAPTOP SUPPORT
4834 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4835 L:      platform-driver-x86@vger.kernel.org
4836 S:      Maintained
4837 F:      drivers/platform/x86/compal-laptop.c
4838
4839 COMPILER ATTRIBUTES
4840 M:      Miguel Ojeda <ojeda@kernel.org>
4841 R:      Nick Desaulniers <ndesaulniers@google.com>
4842 S:      Maintained
4843 F:      include/linux/compiler_attributes.h
4844
4845 COMPUTE EXPRESS LINK (CXL)
4846 M:      Alison Schofield <alison.schofield@intel.com>
4847 M:      Vishal Verma <vishal.l.verma@intel.com>
4848 M:      Ira Weiny <ira.weiny@intel.com>
4849 M:      Ben Widawsky <ben.widawsky@intel.com>
4850 M:      Dan Williams <dan.j.williams@intel.com>
4851 L:      linux-cxl@vger.kernel.org
4852 S:      Maintained
4853 F:      drivers/cxl/
4854 F:      include/uapi/linux/cxl_mem.h
4855
4856 CONEXANT ACCESSRUNNER USB DRIVER
4857 L:      accessrunner-general@lists.sourceforge.net
4858 S:      Orphan
4859 W:      http://accessrunner.sourceforge.net/
4860 F:      drivers/usb/atm/cxacru.c
4861
4862 CONFIGFS
4863 M:      Joel Becker <jlbec@evilplan.org>
4864 M:      Christoph Hellwig <hch@lst.de>
4865 S:      Supported
4866 T:      git git://git.infradead.org/users/hch/configfs.git
4867 F:      fs/configfs/
4868 F:      include/linux/configfs.h
4869 F:      samples/configfs/
4870
4871 CONSOLE SUBSYSTEM
4872 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4873 S:      Supported
4874 F:      drivers/video/console/
4875 F:      include/linux/console*
4876
4877 CONTEXT TRACKING
4878 M:      Frederic Weisbecker <frederic@kernel.org>
4879 S:      Maintained
4880 F:      kernel/context_tracking.c
4881 F:      include/linux/context_tracking*
4882
4883 CONTROL GROUP (CGROUP)
4884 M:      Tejun Heo <tj@kernel.org>
4885 M:      Zefan Li <lizefan.x@bytedance.com>
4886 M:      Johannes Weiner <hannes@cmpxchg.org>
4887 L:      cgroups@vger.kernel.org
4888 S:      Maintained
4889 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4890 F:      Documentation/admin-guide/cgroup-v1/
4891 F:      Documentation/admin-guide/cgroup-v2.rst
4892 F:      include/linux/cgroup*
4893 F:      kernel/cgroup/
4894
4895 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4896 M:      Tejun Heo <tj@kernel.org>
4897 M:      Jens Axboe <axboe@kernel.dk>
4898 L:      cgroups@vger.kernel.org
4899 L:      linux-block@vger.kernel.org
4900 T:      git git://git.kernel.dk/linux-block
4901 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4902 F:      block/bfq-cgroup.c
4903 F:      block/blk-cgroup.c
4904 F:      block/blk-iolatency.c
4905 F:      block/blk-throttle.c
4906 F:      include/linux/blk-cgroup.h
4907
4908 CONTROL GROUP - CPUSET
4909 M:      Zefan Li <lizefan.x@bytedance.com>
4910 L:      cgroups@vger.kernel.org
4911 S:      Maintained
4912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4913 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4914 F:      include/linux/cpuset.h
4915 F:      kernel/cgroup/cpuset.c
4916
4917 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4918 M:      Johannes Weiner <hannes@cmpxchg.org>
4919 M:      Michal Hocko <mhocko@kernel.org>
4920 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4921 L:      cgroups@vger.kernel.org
4922 L:      linux-mm@kvack.org
4923 S:      Maintained
4924 F:      mm/memcontrol.c
4925 F:      mm/swap_cgroup.c
4926
4927 CORETEMP HARDWARE MONITORING DRIVER
4928 M:      Fenghua Yu <fenghua.yu@intel.com>
4929 L:      linux-hwmon@vger.kernel.org
4930 S:      Maintained
4931 F:      Documentation/hwmon/coretemp.rst
4932 F:      drivers/hwmon/coretemp.c
4933
4934 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4935 M:      Marius Zachmann <mail@mariuszachmann.de>
4936 L:      linux-hwmon@vger.kernel.org
4937 S:      Maintained
4938 F:      drivers/hwmon/corsair-cpro.c
4939
4940 CORSAIR-PSU HARDWARE MONITOR DRIVER
4941 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4942 L:      linux-hwmon@vger.kernel.org
4943 S:      Maintained
4944 F:      Documentation/hwmon/corsair-psu.rst
4945 F:      drivers/hwmon/corsair-psu.c
4946
4947 COSA/SRP SYNC SERIAL DRIVER
4948 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4949 S:      Maintained
4950 W:      http://www.fi.muni.cz/~kas/cosa/
4951 F:      drivers/net/wan/cosa*
4952
4953 COUNTER SUBSYSTEM
4954 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4955 L:      linux-iio@vger.kernel.org
4956 S:      Maintained
4957 F:      Documentation/ABI/testing/sysfs-bus-counter
4958 F:      Documentation/driver-api/generic-counter.rst
4959 F:      drivers/counter/
4960 F:      include/linux/counter.h
4961 F:      include/uapi/linux/counter.h
4962 F:      tools/counter/
4963
4964 CP2615 I2C DRIVER
4965 M:      Bence Csókás <bence98@sch.bme.hu>
4966 S:      Maintained
4967 F:      drivers/i2c/busses/i2c-cp2615.c
4968
4969 CPMAC ETHERNET DRIVER
4970 M:      Florian Fainelli <f.fainelli@gmail.com>
4971 L:      netdev@vger.kernel.org
4972 S:      Maintained
4973 F:      drivers/net/ethernet/ti/cpmac.c
4974
4975 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4976 M:      Viresh Kumar <viresh.kumar@linaro.org>
4977 M:      Sudeep Holla <sudeep.holla@arm.com>
4978 L:      linux-pm@vger.kernel.org
4979 S:      Maintained
4980 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4981 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4982
4983 CPU FREQUENCY SCALING FRAMEWORK
4984 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4985 M:      Viresh Kumar <viresh.kumar@linaro.org>
4986 L:      linux-pm@vger.kernel.org
4987 S:      Maintained
4988 B:      https://bugzilla.kernel.org
4989 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4990 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4991 F:      Documentation/admin-guide/pm/cpufreq.rst
4992 F:      Documentation/admin-guide/pm/intel_pstate.rst
4993 F:      Documentation/cpu-freq/
4994 F:      Documentation/devicetree/bindings/cpufreq/
4995 F:      drivers/cpufreq/
4996 F:      include/linux/cpufreq.h
4997 F:      include/linux/sched/cpufreq.h
4998 F:      kernel/sched/cpufreq*.c
4999 F:      tools/testing/selftests/cpufreq/
5000
5001 CPU IDLE TIME MANAGEMENT FRAMEWORK
5002 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5003 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5004 L:      linux-pm@vger.kernel.org
5005 S:      Maintained
5006 B:      https://bugzilla.kernel.org
5007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5008 F:      Documentation/admin-guide/pm/cpuidle.rst
5009 F:      Documentation/driver-api/pm/cpuidle.rst
5010 F:      drivers/cpuidle/
5011 F:      include/linux/cpuidle.h
5012
5013 CPU POWER MONITORING SUBSYSTEM
5014 M:      Thomas Renninger <trenn@suse.com>
5015 M:      Shuah Khan <shuah@kernel.org>
5016 M:      Shuah Khan <skhan@linuxfoundation.org>
5017 L:      linux-pm@vger.kernel.org
5018 S:      Maintained
5019 F:      tools/power/cpupower/
5020
5021 CPUID/MSR DRIVER
5022 M:      "H. Peter Anvin" <hpa@zytor.com>
5023 S:      Maintained
5024 F:      arch/x86/kernel/cpuid.c
5025 F:      arch/x86/kernel/msr.c
5026
5027 CPUIDLE DRIVER - ARM BIG LITTLE
5028 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
5029 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5030 L:      linux-pm@vger.kernel.org
5031 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5032 S:      Maintained
5033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5034 F:      drivers/cpuidle/cpuidle-big_little.c
5035
5036 CPUIDLE DRIVER - ARM EXYNOS
5037 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5038 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5039 M:      Kukjin Kim <kgene@kernel.org>
5040 L:      linux-pm@vger.kernel.org
5041 L:      linux-samsung-soc@vger.kernel.org
5042 S:      Supported
5043 F:      arch/arm/mach-exynos/pm.c
5044 F:      drivers/cpuidle/cpuidle-exynos.c
5045 F:      include/linux/platform_data/cpuidle-exynos.h
5046
5047 CPUIDLE DRIVER - ARM PSCI
5048 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
5049 M:      Sudeep Holla <sudeep.holla@arm.com>
5050 L:      linux-pm@vger.kernel.org
5051 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5052 S:      Supported
5053 F:      drivers/cpuidle/cpuidle-psci.c
5054
5055 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5056 M:      Ulf Hansson <ulf.hansson@linaro.org>
5057 L:      linux-pm@vger.kernel.org
5058 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5059 S:      Supported
5060 F:      drivers/cpuidle/cpuidle-psci.h
5061 F:      drivers/cpuidle/cpuidle-psci-domain.c
5062
5063 CRAMFS FILESYSTEM
5064 M:      Nicolas Pitre <nico@fluxnic.net>
5065 S:      Maintained
5066 F:      Documentation/filesystems/cramfs.rst
5067 F:      fs/cramfs/
5068
5069 CREATIVE SB0540
5070 M:      Bastien Nocera <hadess@hadess.net>
5071 L:      linux-input@vger.kernel.org
5072 S:      Maintained
5073 F:      drivers/hid/hid-creative-sb0540.c
5074
5075 CRYPTO API
5076 M:      Herbert Xu <herbert@gondor.apana.org.au>
5077 M:      "David S. Miller" <davem@davemloft.net>
5078 L:      linux-crypto@vger.kernel.org
5079 S:      Maintained
5080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5082 F:      Documentation/crypto/
5083 F:      Documentation/devicetree/bindings/crypto/
5084 F:      arch/*/crypto/
5085 F:      crypto/
5086 F:      drivers/crypto/
5087 F:      include/crypto/
5088 F:      include/linux/crypto*
5089 F:      lib/crypto/
5090
5091 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5092 M:      Neil Horman <nhorman@tuxdriver.com>
5093 L:      linux-crypto@vger.kernel.org
5094 S:      Maintained
5095 F:      crypto/ansi_cprng.c
5096 F:      crypto/rng.c
5097
5098 CS3308 MEDIA DRIVER
5099 M:      Hans Verkuil <hverkuil@xs4all.nl>
5100 L:      linux-media@vger.kernel.org
5101 S:      Odd Fixes
5102 W:      http://linuxtv.org
5103 T:      git git://linuxtv.org/media_tree.git
5104 F:      drivers/media/i2c/cs3308.c
5105
5106 CS5535 Audio ALSA driver
5107 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5108 S:      Maintained
5109 F:      sound/pci/cs5535audio/
5110
5111 CSI DRIVERS FOR ALLWINNER V3s
5112 M:      Yong Deng <yong.deng@magewell.com>
5113 L:      linux-media@vger.kernel.org
5114 S:      Maintained
5115 T:      git git://linuxtv.org/media_tree.git
5116 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5117 F:      drivers/media/platform/sunxi/sun6i-csi/
5118
5119 CW1200 WLAN driver
5120 M:      Solomon Peachy <pizza@shaftnet.org>
5121 S:      Maintained
5122 F:      drivers/net/wireless/st/cw1200/
5123
5124 CX18 VIDEO4LINUX DRIVER
5125 M:      Andy Walls <awalls@md.metrocast.net>
5126 L:      linux-media@vger.kernel.org
5127 S:      Maintained
5128 W:      https://linuxtv.org
5129 T:      git git://linuxtv.org/media_tree.git
5130 F:      drivers/media/pci/cx18/
5131 F:      include/uapi/linux/ivtv*
5132
5133 CX2341X MPEG ENCODER HELPER MODULE
5134 M:      Hans Verkuil <hverkuil@xs4all.nl>
5135 L:      linux-media@vger.kernel.org
5136 S:      Maintained
5137 W:      https://linuxtv.org
5138 T:      git git://linuxtv.org/media_tree.git
5139 F:      drivers/media/common/cx2341x*
5140 F:      include/media/drv-intf/cx2341x.h
5141
5142 CX24120 MEDIA DRIVER
5143 M:      Jemma Denson <jdenson@gmail.com>
5144 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5145 L:      linux-media@vger.kernel.org
5146 S:      Maintained
5147 W:      https://linuxtv.org
5148 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5149 F:      drivers/media/dvb-frontends/cx24120*
5150
5151 CX88 VIDEO4LINUX DRIVER
5152 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5153 L:      linux-media@vger.kernel.org
5154 S:      Odd fixes
5155 W:      https://linuxtv.org
5156 T:      git git://linuxtv.org/media_tree.git
5157 F:      Documentation/driver-api/media/drivers/cx88*
5158 F:      drivers/media/pci/cx88/
5159
5160 CXD2820R MEDIA DRIVER
5161 M:      Antti Palosaari <crope@iki.fi>
5162 L:      linux-media@vger.kernel.org
5163 S:      Maintained
5164 W:      https://linuxtv.org
5165 W:      http://palosaari.fi/linux/
5166 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5167 T:      git git://linuxtv.org/anttip/media_tree.git
5168 F:      drivers/media/dvb-frontends/cxd2820r*
5169
5170 CXGB3 ETHERNET DRIVER (CXGB3)
5171 M:      Raju Rangoju <rajur@chelsio.com>
5172 L:      netdev@vger.kernel.org
5173 S:      Supported
5174 W:      http://www.chelsio.com
5175 F:      drivers/net/ethernet/chelsio/cxgb3/
5176
5177 CXGB3 ISCSI DRIVER (CXGB3I)
5178 M:      Karen Xie <kxie@chelsio.com>
5179 L:      linux-scsi@vger.kernel.org
5180 S:      Supported
5181 W:      http://www.chelsio.com
5182 F:      drivers/scsi/cxgbi/cxgb3i
5183
5184 CXGB4 CRYPTO DRIVER (chcr)
5185 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5186 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5187 M:      Rohit Maheshwari <rohitm@chelsio.com>
5188 L:      linux-crypto@vger.kernel.org
5189 S:      Supported
5190 W:      http://www.chelsio.com
5191 F:      drivers/crypto/chelsio
5192
5193 CXGB4 INLINE CRYPTO DRIVER
5194 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5195 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5196 M:      Rohit Maheshwari <rohitm@chelsio.com>
5197 L:      netdev@vger.kernel.org
5198 S:      Supported
5199 W:      http://www.chelsio.com
5200 F:      drivers/net/ethernet/chelsio/inline_crypto/
5201
5202 CXGB4 ETHERNET DRIVER (CXGB4)
5203 M:      Raju Rangoju <rajur@chelsio.com>
5204 L:      netdev@vger.kernel.org
5205 S:      Supported
5206 W:      http://www.chelsio.com
5207 F:      drivers/net/ethernet/chelsio/cxgb4/
5208
5209 CXGB4 ISCSI DRIVER (CXGB4I)
5210 M:      Karen Xie <kxie@chelsio.com>
5211 L:      linux-scsi@vger.kernel.org
5212 S:      Supported
5213 W:      http://www.chelsio.com
5214 F:      drivers/scsi/cxgbi/cxgb4i
5215
5216 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5217 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5218 L:      linux-rdma@vger.kernel.org
5219 S:      Supported
5220 W:      http://www.openfabrics.org
5221 F:      drivers/infiniband/hw/cxgb4/
5222 F:      include/uapi/rdma/cxgb4-abi.h
5223
5224 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5225 M:      Raju Rangoju <rajur@chelsio.com>
5226 L:      netdev@vger.kernel.org
5227 S:      Supported
5228 W:      http://www.chelsio.com
5229 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5230
5231 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5232 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5233 M:      Andrew Donnellan <ajd@linux.ibm.com>
5234 L:      linuxppc-dev@lists.ozlabs.org
5235 S:      Supported
5236 F:      Documentation/ABI/testing/sysfs-class-cxl
5237 F:      Documentation/powerpc/cxl.rst
5238 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5239 F:      drivers/misc/cxl/
5240 F:      include/misc/cxl*
5241 F:      include/uapi/misc/cxl.h
5242
5243 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5244 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5245 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5246 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5247 L:      linux-scsi@vger.kernel.org
5248 S:      Supported
5249 F:      Documentation/powerpc/cxlflash.rst
5250 F:      drivers/scsi/cxlflash/
5251 F:      include/uapi/scsi/cxlflash_ioctl.h
5252
5253 CYBERPRO FB DRIVER
5254 M:      Russell King <linux@armlinux.org.uk>
5255 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5256 S:      Maintained
5257 W:      http://www.armlinux.org.uk/
5258 F:      drivers/video/fbdev/cyber2000fb.*
5259
5260 CYCLADES PC300 DRIVER
5261 S:      Orphan
5262 F:      drivers/net/wan/pc300*
5263
5264 CYPRESS_FIRMWARE MEDIA DRIVER
5265 M:      Antti Palosaari <crope@iki.fi>
5266 L:      linux-media@vger.kernel.org
5267 S:      Maintained
5268 W:      https://linuxtv.org
5269 W:      http://palosaari.fi/linux/
5270 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5271 T:      git git://linuxtv.org/anttip/media_tree.git
5272 F:      drivers/media/common/cypress_firmware*
5273
5274 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5275 M:      Linus Walleij <linus.walleij@linaro.org>
5276 L:      linux-input@vger.kernel.org
5277 S:      Maintained
5278 F:      drivers/input/touchscreen/cy8ctma140.c
5279
5280 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5281 M:      Yassine Oudjana <y.oudjana@protonmail.com>
5282 L:      linux-input@vger.kernel.org
5283 S:      Maintained
5284 F:      Documentation/devicetree/bindings/input/cypress-sf.yaml
5285 F:      drivers/input/keyboard/cypress-sf.c
5286
5287 CYTTSP TOUCHSCREEN DRIVER
5288 M:      Linus Walleij <linus.walleij@linaro.org>
5289 L:      linux-input@vger.kernel.org
5290 S:      Maintained
5291 F:      drivers/input/touchscreen/cyttsp*
5292
5293 D-LINK DIR-685 TOUCHKEYS DRIVER
5294 M:      Linus Walleij <linus.walleij@linaro.org>
5295 L:      linux-input@vger.kernel.org
5296 S:      Supported
5297 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5298
5299 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5300 M:      Joshua Kinard <kumba@gentoo.org>
5301 S:      Maintained
5302 F:      drivers/rtc/rtc-ds1685.c
5303 F:      include/linux/rtc/ds1685.h
5304
5305 DAMA SLAVE for AX.25
5306 M:      Joerg Reuter <jreuter@yaina.de>
5307 L:      linux-hams@vger.kernel.org
5308 S:      Maintained
5309 W:      http://yaina.de/jreuter/
5310 W:      http://www.qsl.net/dl1bke/
5311 F:      net/ax25/af_ax25.c
5312 F:      net/ax25/ax25_dev.c
5313 F:      net/ax25/ax25_ds_*
5314 F:      net/ax25/ax25_in.c
5315 F:      net/ax25/ax25_out.c
5316 F:      net/ax25/ax25_timer.c
5317 F:      net/ax25/sysctl_net_ax25.c
5318
5319 DATA ACCESS MONITOR
5320 M:      SeongJae Park <sj@kernel.org>
5321 L:      linux-mm@kvack.org
5322 S:      Maintained
5323 F:      Documentation/admin-guide/mm/damon/
5324 F:      Documentation/vm/damon/
5325 F:      include/linux/damon.h
5326 F:      include/trace/events/damon.h
5327 F:      mm/damon/
5328 F:      tools/testing/selftests/damon/
5329
5330 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5331 L:      netdev@vger.kernel.org
5332 S:      Orphan
5333 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5334 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5335
5336 DC390/AM53C974 SCSI driver
5337 M:      Hannes Reinecke <hare@suse.com>
5338 L:      linux-scsi@vger.kernel.org
5339 S:      Maintained
5340 F:      drivers/scsi/am53c974.c
5341
5342 DC395x SCSI driver
5343 M:      Oliver Neukum <oliver@neukum.org>
5344 M:      Ali Akcaagac <aliakc@web.de>
5345 M:      Jamie Lenehan <lenehan@twibble.org>
5346 L:      dc395x@twibble.org
5347 S:      Maintained
5348 W:      http://twibble.org/dist/dc395x/
5349 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5350 F:      Documentation/scsi/dc395x.rst
5351 F:      drivers/scsi/dc395x.*
5352
5353 DCCP PROTOCOL
5354 L:      dccp@vger.kernel.org
5355 S:      Orphan
5356 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5357 F:      include/linux/dccp.h
5358 F:      include/linux/tfrc.h
5359 F:      include/uapi/linux/dccp.h
5360 F:      net/dccp/
5361
5362 DECnet NETWORK LAYER
5363 L:      linux-decnet-user@lists.sourceforge.net
5364 S:      Orphan
5365 W:      http://linux-decnet.sourceforge.net
5366 F:      Documentation/networking/decnet.rst
5367 F:      net/decnet/
5368
5369 DECSTATION PLATFORM SUPPORT
5370 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5371 L:      linux-mips@vger.kernel.org
5372 S:      Maintained
5373 W:      http://www.linux-mips.org/wiki/DECstation
5374 F:      arch/mips/dec/
5375 F:      arch/mips/include/asm/dec/
5376 F:      arch/mips/include/asm/mach-dec/
5377
5378 DEFXX FDDI NETWORK DRIVER
5379 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5380 S:      Maintained
5381 F:      drivers/net/fddi/defxx.*
5382
5383 DEFZA FDDI NETWORK DRIVER
5384 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5385 S:      Maintained
5386 F:      drivers/net/fddi/defza.*
5387
5388 DEINTERLACE DRIVERS FOR ALLWINNER H3
5389 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5390 L:      linux-media@vger.kernel.org
5391 S:      Maintained
5392 T:      git git://linuxtv.org/media_tree.git
5393 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5394 F:      drivers/media/platform/sunxi/sun8i-di/
5395
5396 DELL LAPTOP DRIVER
5397 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5398 M:      Pali Rohár <pali@kernel.org>
5399 L:      platform-driver-x86@vger.kernel.org
5400 S:      Maintained
5401 F:      drivers/platform/x86/dell/dell-laptop.c
5402
5403 DELL LAPTOP FREEFALL DRIVER
5404 M:      Pali Rohár <pali@kernel.org>
5405 S:      Maintained
5406 F:      drivers/platform/x86/dell/dell-smo8800.c
5407
5408 DELL LAPTOP RBTN DRIVER
5409 M:      Pali Rohár <pali@kernel.org>
5410 S:      Maintained
5411 F:      drivers/platform/x86/dell/dell-rbtn.*
5412
5413 DELL LAPTOP SMM DRIVER
5414 M:      Pali Rohár <pali@kernel.org>
5415 S:      Maintained
5416 F:      drivers/hwmon/dell-smm-hwmon.c
5417 F:      include/uapi/linux/i8k.h
5418
5419 DELL REMOTE BIOS UPDATE DRIVER
5420 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5421 L:      platform-driver-x86@vger.kernel.org
5422 S:      Maintained
5423 F:      drivers/platform/x86/dell/dell_rbu.c
5424
5425 DELL SMBIOS DRIVER
5426 M:      Pali Rohár <pali@kernel.org>
5427 L:      Dell.Client.Kernel@dell.com
5428 L:      platform-driver-x86@vger.kernel.org
5429 S:      Maintained
5430 F:      drivers/platform/x86/dell/dell-smbios.*
5431
5432 DELL SMBIOS SMM DRIVER
5433 L:      Dell.Client.Kernel@dell.com
5434 L:      platform-driver-x86@vger.kernel.org
5435 S:      Maintained
5436 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5437
5438 DELL SMBIOS WMI DRIVER
5439 L:      Dell.Client.Kernel@dell.com
5440 L:      platform-driver-x86@vger.kernel.org
5441 S:      Maintained
5442 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5443 F:      tools/wmi/dell-smbios-example.c
5444
5445 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5446 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5447 L:      platform-driver-x86@vger.kernel.org
5448 S:      Maintained
5449 F:      Documentation/driver-api/dcdbas.rst
5450 F:      drivers/platform/x86/dell/dcdbas.*
5451
5452 DELL WMI DESCRIPTOR DRIVER
5453 L:      Dell.Client.Kernel@dell.com
5454 S:      Maintained
5455 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5456
5457 DELL WMI SYSMAN DRIVER
5458 M:      Divya Bharathi <divya.bharathi@dell.com>
5459 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5460 L:      Dell.Client.Kernel@dell.com
5461 L:      platform-driver-x86@vger.kernel.org
5462 S:      Maintained
5463 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5464 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5465
5466 DELL WMI NOTIFICATIONS DRIVER
5467 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5468 M:      Pali Rohár <pali@kernel.org>
5469 S:      Maintained
5470 F:      drivers/platform/x86/dell/dell-wmi-base.c
5471
5472 DELL WMI HARDWARE PRIVACY SUPPORT
5473 M:      Perry Yuan <Perry.Yuan@dell.com>
5474 L:      Dell.Client.Kernel@dell.com
5475 L:      platform-driver-x86@vger.kernel.org
5476 S:      Maintained
5477 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5478
5479 DELTA ST MEDIA DRIVER
5480 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5481 L:      linux-media@vger.kernel.org
5482 S:      Supported
5483 W:      https://linuxtv.org
5484 T:      git git://linuxtv.org/media_tree.git
5485 F:      drivers/media/platform/sti/delta
5486
5487 DELTA AHE-50DC FAN CONTROL MODULE DRIVER
5488 M:      Zev Weiss <zev@bewilderbeest.net>
5489 L:      linux-hwmon@vger.kernel.org
5490 S:      Maintained
5491 F:      drivers/hwmon/pmbus/delta-ahe50dc-fan.c
5492
5493 DELTA DPS920AB PSU DRIVER
5494 M:      Robert Marko <robert.marko@sartura.hr>
5495 L:      linux-hwmon@vger.kernel.org
5496 S:      Maintained
5497 F:      Documentation/hwmon/dps920ab.rst
5498 F:      drivers/hwmon/pmbus/dps920ab.c
5499
5500 DENALI NAND DRIVER
5501 L:      linux-mtd@lists.infradead.org
5502 S:      Orphan
5503 F:      drivers/mtd/nand/raw/denali*
5504
5505 DESIGNWARE EDMA CORE IP DRIVER
5506 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5507 L:      dmaengine@vger.kernel.org
5508 S:      Maintained
5509 F:      drivers/dma/dw-edma/
5510 F:      include/linux/dma/edma.h
5511
5512 DESIGNWARE XDATA IP DRIVER
5513 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5514 L:      linux-pci@vger.kernel.org
5515 S:      Maintained
5516 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5517 F:      drivers/misc/dw-xdata-pcie.c
5518
5519 DESIGNWARE USB2 DRD IP DRIVER
5520 M:      Minas Harutyunyan <hminas@synopsys.com>
5521 L:      linux-usb@vger.kernel.org
5522 S:      Maintained
5523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5524 F:      drivers/usb/dwc2/
5525
5526 DESIGNWARE USB3 DRD IP DRIVER
5527 M:      Felipe Balbi <balbi@kernel.org>
5528 L:      linux-usb@vger.kernel.org
5529 S:      Maintained
5530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5531 F:      drivers/usb/dwc3/
5532
5533 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5534 M:      Andreas Klinger <ak@it-klinger.de>
5535 L:      linux-iio@vger.kernel.org
5536 S:      Maintained
5537 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5538 F:      drivers/iio/proximity/srf*.c
5539
5540 DEVICE COREDUMP (DEV_COREDUMP)
5541 M:      Johannes Berg <johannes@sipsolutions.net>
5542 L:      linux-kernel@vger.kernel.org
5543 S:      Maintained
5544 F:      drivers/base/devcoredump.c
5545 F:      include/linux/devcoredump.h
5546
5547 DEVICE DEPENDENCY HELPER SCRIPT
5548 M:      Saravana Kannan <saravanak@google.com>
5549 L:      linux-kernel@vger.kernel.org
5550 S:      Maintained
5551 F:      scripts/dev-needs.sh
5552
5553 DEVICE DIRECT ACCESS (DAX)
5554 M:      Dan Williams <dan.j.williams@intel.com>
5555 M:      Vishal Verma <vishal.l.verma@intel.com>
5556 M:      Dave Jiang <dave.jiang@intel.com>
5557 L:      nvdimm@lists.linux.dev
5558 S:      Supported
5559 F:      drivers/dax/
5560
5561 DEVICE FREQUENCY (DEVFREQ)
5562 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5563 M:      Kyungmin Park <kyungmin.park@samsung.com>
5564 M:      Chanwoo Choi <cw00.choi@samsung.com>
5565 L:      linux-pm@vger.kernel.org
5566 S:      Maintained
5567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5568 F:      Documentation/devicetree/bindings/devfreq/
5569 F:      drivers/devfreq/
5570 F:      include/linux/devfreq.h
5571 F:      include/trace/events/devfreq.h
5572
5573 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5574 M:      Chanwoo Choi <cw00.choi@samsung.com>
5575 L:      linux-pm@vger.kernel.org
5576 S:      Supported
5577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5578 F:      Documentation/devicetree/bindings/devfreq/event/
5579 F:      drivers/devfreq/devfreq-event.c
5580 F:      drivers/devfreq/event/
5581 F:      include/dt-bindings/pmu/exynos_ppmu.h
5582 F:      include/linux/devfreq-event.h
5583
5584 DEVICE NUMBER REGISTRY
5585 M:      Torben Mathiasen <device@lanana.org>
5586 S:      Maintained
5587 W:      http://lanana.org/docs/device-list/index.html
5588
5589 DEVICE RESOURCE MANAGEMENT HELPERS
5590 M:      Hans de Goede <hdegoede@redhat.com>
5591 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5592 S:      Maintained
5593 F:      include/linux/devm-helpers.h
5594
5595 DEVICE-MAPPER  (LVM)
5596 M:      Alasdair Kergon <agk@redhat.com>
5597 M:      Mike Snitzer <snitzer@redhat.com>
5598 M:      dm-devel@redhat.com
5599 L:      dm-devel@redhat.com
5600 S:      Maintained
5601 W:      http://sources.redhat.com/dm
5602 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5604 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5605 F:      Documentation/admin-guide/device-mapper/
5606 F:      drivers/md/Kconfig
5607 F:      drivers/md/Makefile
5608 F:      drivers/md/dm*
5609 F:      drivers/md/persistent-data/
5610 F:      include/linux/device-mapper.h
5611 F:      include/linux/dm-*.h
5612 F:      include/uapi/linux/dm-*.h
5613
5614 DEVLINK
5615 M:      Jiri Pirko <jiri@nvidia.com>
5616 L:      netdev@vger.kernel.org
5617 S:      Supported
5618 F:      Documentation/networking/devlink
5619 F:      include/net/devlink.h
5620 F:      include/uapi/linux/devlink.h
5621 F:      net/core/devlink.c
5622
5623 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5624 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5625 L:      kernel@dh-electronics.com
5626 S:      Maintained
5627 F:      arch/arm/boot/dts/imx6*-dhcom-*
5628
5629 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5630 M:      Marek Vasut <marex@denx.de>
5631 L:      kernel@dh-electronics.com
5632 S:      Maintained
5633 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5634 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5635
5636 DIALOG SEMICONDUCTOR DRIVERS
5637 M:      Support Opensource <support.opensource@diasemi.com>
5638 S:      Supported
5639 W:      http://www.dialog-semiconductor.com/products
5640 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5641 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5642 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5643 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5644 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5645 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5646 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5647 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5648 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5649 F:      Documentation/hwmon/da90??.rst
5650 F:      drivers/gpio/gpio-da90??.c
5651 F:      drivers/hwmon/da90??-hwmon.c
5652 F:      drivers/iio/adc/da91??-*.c
5653 F:      drivers/input/misc/da72??.[ch]
5654 F:      drivers/input/misc/da90??_onkey.c
5655 F:      drivers/input/touchscreen/da9052_tsi.c
5656 F:      drivers/leds/leds-da90??.c
5657 F:      drivers/mfd/da903x.c
5658 F:      drivers/mfd/da90??-*.c
5659 F:      drivers/mfd/da91??-*.c
5660 F:      drivers/pinctrl/pinctrl-da90??.c
5661 F:      drivers/power/supply/da9052-battery.c
5662 F:      drivers/power/supply/da91??-*.c
5663 F:      drivers/regulator/da9???-regulator.[ch]
5664 F:      drivers/regulator/slg51000-regulator.[ch]
5665 F:      drivers/rtc/rtc-da90??.c
5666 F:      drivers/thermal/da90??-thermal.c
5667 F:      drivers/video/backlight/da90??_bl.c
5668 F:      drivers/watchdog/da90??_wdt.c
5669 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5670 F:      include/linux/mfd/da903x.h
5671 F:      include/linux/mfd/da9052/
5672 F:      include/linux/mfd/da9055/
5673 F:      include/linux/mfd/da9062/
5674 F:      include/linux/mfd/da9063/
5675 F:      include/linux/mfd/da9150/
5676 F:      include/linux/regulator/da9211.h
5677 F:      include/sound/da[79]*.h
5678 F:      sound/soc/codecs/da[79]*.[ch]
5679
5680 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5681 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5682 L:      linux-gpio@vger.kernel.org
5683 S:      Maintained
5684 F:      drivers/gpio/gpio-gpio-mm.c
5685
5686 DIOLAN U2C-12 I2C DRIVER
5687 M:      Guenter Roeck <linux@roeck-us.net>
5688 L:      linux-i2c@vger.kernel.org
5689 S:      Maintained
5690 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5691
5692 DIRECTORY NOTIFICATION (DNOTIFY)
5693 M:      Jan Kara <jack@suse.cz>
5694 R:      Amir Goldstein <amir73il@gmail.com>
5695 L:      linux-fsdevel@vger.kernel.org
5696 S:      Maintained
5697 F:      Documentation/filesystems/dnotify.rst
5698 F:      fs/notify/dnotify/
5699 F:      include/linux/dnotify.h
5700
5701 DISK GEOMETRY AND PARTITION HANDLING
5702 M:      Andries Brouwer <aeb@cwi.nl>
5703 S:      Maintained
5704 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5705 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5706 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5707
5708 DISKQUOTA
5709 M:      Jan Kara <jack@suse.com>
5710 S:      Maintained
5711 F:      Documentation/filesystems/quota.rst
5712 F:      fs/quota/
5713 F:      include/linux/quota*.h
5714 F:      include/uapi/linux/quota*.h
5715
5716 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5717 M:      Bernie Thompson <bernie@plugable.com>
5718 L:      linux-fbdev@vger.kernel.org
5719 S:      Maintained
5720 W:      http://plugable.com/category/projects/udlfb/
5721 F:      Documentation/fb/udlfb.rst
5722 F:      drivers/video/fbdev/udlfb.c
5723 F:      include/video/udlfb.h
5724
5725 DISTRIBUTED LOCK MANAGER (DLM)
5726 M:      Christine Caulfield <ccaulfie@redhat.com>
5727 M:      David Teigland <teigland@redhat.com>
5728 L:      cluster-devel@redhat.com
5729 S:      Supported
5730 W:      http://sources.redhat.com/cluster/
5731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5732 F:      fs/dlm/
5733
5734 DMA BUFFER SHARING FRAMEWORK
5735 M:      Sumit Semwal <sumit.semwal@linaro.org>
5736 M:      Christian König <christian.koenig@amd.com>
5737 L:      linux-media@vger.kernel.org
5738 L:      dri-devel@lists.freedesktop.org
5739 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5740 S:      Maintained
5741 T:      git git://anongit.freedesktop.org/drm/drm-misc
5742 F:      Documentation/driver-api/dma-buf.rst
5743 F:      drivers/dma-buf/
5744 F:      include/linux/*fence.h
5745 F:      include/linux/dma-buf*
5746 F:      include/linux/dma-resv.h
5747 K:      \bdma_(?:buf|fence|resv)\b
5748
5749 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5750 M:      Vinod Koul <vkoul@kernel.org>
5751 L:      dmaengine@vger.kernel.org
5752 S:      Maintained
5753 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5755 F:      Documentation/devicetree/bindings/dma/
5756 F:      Documentation/driver-api/dmaengine/
5757 F:      drivers/dma/
5758 F:      include/linux/dma/
5759 F:      include/linux/dmaengine.h
5760 F:      include/linux/of_dma.h
5761
5762 DMA MAPPING HELPERS
5763 M:      Christoph Hellwig <hch@lst.de>
5764 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5765 R:      Robin Murphy <robin.murphy@arm.com>
5766 L:      iommu@lists.linux-foundation.org
5767 S:      Supported
5768 W:      http://git.infradead.org/users/hch/dma-mapping.git
5769 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5770 F:      include/asm-generic/dma-mapping.h
5771 F:      include/linux/dma-direct.h
5772 F:      include/linux/dma-mapping.h
5773 F:      include/linux/dma-map-ops.h
5774 F:      kernel/dma/
5775
5776 DMA MAPPING BENCHMARK
5777 M:      Barry Song <song.bao.hua@hisilicon.com>
5778 L:      iommu@lists.linux-foundation.org
5779 F:      kernel/dma/map_benchmark.c
5780 F:      tools/testing/selftests/dma/
5781
5782 DMA-BUF HEAPS FRAMEWORK
5783 M:      Sumit Semwal <sumit.semwal@linaro.org>
5784 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5785 R:      Liam Mark <lmark@codeaurora.org>
5786 R:      Laura Abbott <labbott@redhat.com>
5787 R:      Brian Starkey <Brian.Starkey@arm.com>
5788 R:      John Stultz <john.stultz@linaro.org>
5789 L:      linux-media@vger.kernel.org
5790 L:      dri-devel@lists.freedesktop.org
5791 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5792 S:      Maintained
5793 T:      git git://anongit.freedesktop.org/drm/drm-misc
5794 F:      drivers/dma-buf/dma-heap.c
5795 F:      drivers/dma-buf/heaps/*
5796 F:      include/linux/dma-heap.h
5797 F:      include/uapi/linux/dma-heap.h
5798
5799 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5800 M:      Lukasz Luba <lukasz.luba@arm.com>
5801 L:      linux-pm@vger.kernel.org
5802 L:      linux-samsung-soc@vger.kernel.org
5803 S:      Maintained
5804 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
5805 F:      drivers/memory/samsung/exynos5422-dmc.c
5806
5807 DME1737 HARDWARE MONITOR DRIVER
5808 M:      Juerg Haefliger <juergh@gmail.com>
5809 L:      linux-hwmon@vger.kernel.org
5810 S:      Maintained
5811 F:      Documentation/hwmon/dme1737.rst
5812 F:      drivers/hwmon/dme1737.c
5813
5814 DMI/SMBIOS SUPPORT
5815 M:      Jean Delvare <jdelvare@suse.com>
5816 S:      Maintained
5817 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5818 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5819 F:      drivers/firmware/dmi-id.c
5820 F:      drivers/firmware/dmi_scan.c
5821 F:      include/linux/dmi.h
5822
5823 DOCUMENTATION
5824 M:      Jonathan Corbet <corbet@lwn.net>
5825 L:      linux-doc@vger.kernel.org
5826 S:      Maintained
5827 P:      Documentation/doc-guide/maintainer-profile.rst
5828 T:      git git://git.lwn.net/linux.git docs-next
5829 F:      Documentation/
5830 F:      scripts/documentation-file-ref-check
5831 F:      scripts/kernel-doc
5832 F:      scripts/sphinx-pre-install
5833 X:      Documentation/ABI/
5834 X:      Documentation/admin-guide/media/
5835 X:      Documentation/devicetree/
5836 X:      Documentation/driver-api/media/
5837 X:      Documentation/firmware-guide/acpi/
5838 X:      Documentation/i2c/
5839 X:      Documentation/power/
5840 X:      Documentation/spi/
5841 X:      Documentation/userspace-api/media/
5842
5843 DOCUMENTATION REPORTING ISSUES
5844 M:      Thorsten Leemhuis <linux@leemhuis.info>
5845 L:      linux-doc@vger.kernel.org
5846 S:      Maintained
5847 F:      Documentation/admin-guide/reporting-issues.rst
5848
5849 DOCUMENTATION SCRIPTS
5850 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5851 L:      linux-doc@vger.kernel.org
5852 S:      Maintained
5853 F:      Documentation/sphinx/parse-headers.pl
5854 F:      scripts/documentation-file-ref-check
5855 F:      scripts/sphinx-pre-install
5856
5857 DOCUMENTATION/ITALIAN
5858 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5859 L:      linux-doc@vger.kernel.org
5860 S:      Maintained
5861 F:      Documentation/translations/it_IT
5862
5863 DONGWOON DW9714 LENS VOICE COIL DRIVER
5864 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5865 L:      linux-media@vger.kernel.org
5866 S:      Maintained
5867 T:      git git://linuxtv.org/media_tree.git
5868 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5869 F:      drivers/media/i2c/dw9714.c
5870
5871 DONGWOON DW9768 LENS VOICE COIL DRIVER
5872 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5873 L:      linux-media@vger.kernel.org
5874 S:      Maintained
5875 T:      git git://linuxtv.org/media_tree.git
5876 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5877 F:      drivers/media/i2c/dw9768.c
5878
5879 DONGWOON DW9807 LENS VOICE COIL DRIVER
5880 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5881 L:      linux-media@vger.kernel.org
5882 S:      Maintained
5883 T:      git git://linuxtv.org/media_tree.git
5884 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5885 F:      drivers/media/i2c/dw9807-vcm.c
5886
5887 DOUBLETALK DRIVER
5888 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5889 L:      blinux-list@redhat.com
5890 S:      Maintained
5891 F:      drivers/char/dtlk.c
5892 F:      include/linux/dtlk.h
5893
5894 DPAA2 DATAPATH I/O (DPIO) DRIVER
5895 M:      Roy Pledge <Roy.Pledge@nxp.com>
5896 L:      linux-kernel@vger.kernel.org
5897 S:      Maintained
5898 F:      drivers/soc/fsl/dpio
5899
5900 DPAA2 ETHERNET DRIVER
5901 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5902 L:      netdev@vger.kernel.org
5903 S:      Maintained
5904 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5905 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5906 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5907 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5908 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5909 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5910 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5911 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5912 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5913
5914 DPAA2 ETHERNET SWITCH DRIVER
5915 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5916 L:      netdev@vger.kernel.org
5917 S:      Maintained
5918 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
5919 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5920 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
5921
5922 DPT_I2O SCSI RAID DRIVER
5923 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5924 L:      linux-scsi@vger.kernel.org
5925 S:      Maintained
5926 W:      http://www.adaptec.com/
5927 F:      drivers/scsi/dpt*
5928 F:      drivers/scsi/dpt/
5929
5930 DRBD DRIVER
5931 M:      Philipp Reisner <philipp.reisner@linbit.com>
5932 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5933 L:      drbd-dev@lists.linbit.com
5934 S:      Supported
5935 W:      http://www.drbd.org
5936 T:      git git://git.linbit.com/linux-drbd.git
5937 T:      git git://git.linbit.com/drbd-8.4.git
5938 F:      Documentation/admin-guide/blockdev/
5939 F:      drivers/block/drbd/
5940 F:      lib/lru_cache.c
5941
5942 DRIVER COMPONENT FRAMEWORK
5943 L:      dri-devel@lists.freedesktop.org
5944 F:      drivers/base/component.c
5945 F:      include/linux/component.h
5946
5947 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5948 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5949 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5950 S:      Supported
5951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5952 F:      Documentation/core-api/kobject.rst
5953 F:      drivers/base/
5954 F:      fs/debugfs/
5955 F:      fs/sysfs/
5956 F:      include/linux/debugfs.h
5957 F:      include/linux/kobj*
5958 F:      lib/kobj*
5959
5960 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5961 M:      Nishanth Menon <nm@ti.com>
5962 L:      linux-pm@vger.kernel.org
5963 S:      Maintained
5964 F:      drivers/soc/ti/smartreflex.c
5965 F:      include/linux/power/smartreflex.h
5966
5967 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5968 M:      Maxime Ripard <mripard@kernel.org>
5969 M:      Chen-Yu Tsai <wens@csie.org>
5970 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
5971 L:      dri-devel@lists.freedesktop.org
5972 S:      Supported
5973 T:      git git://anongit.freedesktop.org/drm/drm-misc
5974 F:      drivers/gpu/drm/sun4i/sun8i*
5975
5976 DRM DRIVER FOR ARM PL111 CLCD
5977 M:      Emma Anholt <emma@anholt.net>
5978 S:      Supported
5979 T:      git git://anongit.freedesktop.org/drm/drm-misc
5980 F:      drivers/gpu/drm/pl111/
5981
5982 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5983 M:      Linus Walleij <linus.walleij@linaro.org>
5984 S:      Maintained
5985 T:      git git://anongit.freedesktop.org/drm/drm-misc
5986 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5987 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5988
5989 DRM DRIVER FOR ASPEED BMC GFX
5990 M:      Joel Stanley <joel@jms.id.au>
5991 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5992 S:      Supported
5993 T:      git git://anongit.freedesktop.org/drm/drm-misc
5994 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5995 F:      drivers/gpu/drm/aspeed/
5996
5997 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5998 M:      Dave Airlie <airlied@redhat.com>
5999 R:      Thomas Zimmermann <tzimmermann@suse.de>
6000 L:      dri-devel@lists.freedesktop.org
6001 S:      Supported
6002 T:      git git://anongit.freedesktop.org/drm/drm-misc
6003 F:      drivers/gpu/drm/ast/
6004
6005 DRM DRIVER FOR BOCHS VIRTUAL GPU
6006 M:      Gerd Hoffmann <kraxel@redhat.com>
6007 L:      virtualization@lists.linux-foundation.org
6008 S:      Maintained
6009 T:      git git://anongit.freedesktop.org/drm/drm-misc
6010 F:      drivers/gpu/drm/tiny/bochs.c
6011
6012 DRM DRIVER FOR BOE HIMAX8279D PANELS
6013 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
6014 S:      Maintained
6015 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6016 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
6017
6018 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6019 M:      Jagan Teki <jagan@amarulasolutions.com>
6020 S:      Maintained
6021 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6022 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
6023
6024 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6025 M:      Linus Walleij <linus.walleij@linaro.org>
6026 S:      Maintained
6027 T:      git git://anongit.freedesktop.org/drm/drm-misc
6028 F:      drivers/gpu/drm/tve200/
6029
6030 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6031 M:      Icenowy Zheng <icenowy@aosc.io>
6032 S:      Maintained
6033 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6034 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6035
6036 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6037 M:      Jagan Teki <jagan@amarulasolutions.com>
6038 S:      Maintained
6039 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6040 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6041
6042 DRM DRIVER FOR GENERIC USB DISPLAY
6043 M:      Noralf Trønnes <noralf@tronnes.org>
6044 S:      Maintained
6045 W:      https://github.com/notro/gud/wiki
6046 T:      git git://anongit.freedesktop.org/drm/drm-misc
6047 F:      drivers/gpu/drm/gud/
6048 F:      include/drm/gud.h
6049
6050 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
6051 M:      Hans de Goede <hdegoede@redhat.com>
6052 S:      Maintained
6053 T:      git git://anongit.freedesktop.org/drm/drm-misc
6054 F:      drivers/gpu/drm/tiny/gm12u320.c
6055
6056 DRM DRIVER FOR HX8357D PANELS
6057 M:      Emma Anholt <emma@anholt.net>
6058 S:      Maintained
6059 T:      git git://anongit.freedesktop.org/drm/drm-misc
6060 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
6061 F:      drivers/gpu/drm/tiny/hx8357d.c
6062
6063 DRM DRIVER FOR ILITEK ILI9225 PANELS
6064 M:      David Lechner <david@lechnology.com>
6065 S:      Maintained
6066 T:      git git://anongit.freedesktop.org/drm/drm-misc
6067 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6068 F:      drivers/gpu/drm/tiny/ili9225.c
6069
6070 DRM DRIVER FOR ILITEK ILI9486 PANELS
6071 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
6072 S:      Maintained
6073 T:      git git://anongit.freedesktop.org/drm/drm-misc
6074 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6075 F:      drivers/gpu/drm/tiny/ili9486.c
6076
6077 DRM DRIVER FOR INTEL I810 VIDEO CARDS
6078 S:      Orphan / Obsolete
6079 F:      drivers/gpu/drm/i810/
6080 F:      include/uapi/drm/i810_drm.h
6081
6082 DRM DRIVER FOR LVDS PANELS
6083 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6084 L:      dri-devel@lists.freedesktop.org
6085 T:      git git://anongit.freedesktop.org/drm/drm-misc
6086 S:      Maintained
6087 F:      drivers/gpu/drm/panel/panel-lvds.c
6088 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
6089
6090 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6091 M:      Guido Günther <agx@sigxcpu.org>
6092 R:      Purism Kernel Team <kernel@puri.sm>
6093 S:      Maintained
6094 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6095 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6096
6097 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
6098 S:      Orphan / Obsolete
6099 F:      drivers/gpu/drm/mga/
6100 F:      include/uapi/drm/mga_drm.h
6101
6102 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6103 M:      Dave Airlie <airlied@redhat.com>
6104 R:      Thomas Zimmermann <tzimmermann@suse.de>
6105 L:      dri-devel@lists.freedesktop.org
6106 S:      Supported
6107 T:      git git://anongit.freedesktop.org/drm/drm-misc
6108 F:      drivers/gpu/drm/mgag200/
6109
6110 DRM DRIVER FOR MI0283QT
6111 M:      Noralf Trønnes <noralf@tronnes.org>
6112 S:      Maintained
6113 T:      git git://anongit.freedesktop.org/drm/drm-misc
6114 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6115 F:      drivers/gpu/drm/tiny/mi0283qt.c
6116
6117 DRM DRIVER FOR MSM ADRENO GPU
6118 M:      Rob Clark <robdclark@gmail.com>
6119 M:      Sean Paul <sean@poorly.run>
6120 R:      Abhinav Kumar <quic_abhinavk@quicinc.com>
6121 L:      linux-arm-msm@vger.kernel.org
6122 L:      dri-devel@lists.freedesktop.org
6123 L:      freedreno@lists.freedesktop.org
6124 S:      Maintained
6125 T:      git https://gitlab.freedesktop.org/drm/msm.git
6126 F:      Documentation/devicetree/bindings/display/msm/
6127 F:      drivers/gpu/drm/msm/
6128 F:      include/uapi/drm/msm_drm.h
6129
6130 DRM DRIVER FOR NOVATEK NT35510 PANELS
6131 M:      Linus Walleij <linus.walleij@linaro.org>
6132 S:      Maintained
6133 T:      git git://anongit.freedesktop.org/drm/drm-misc
6134 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6135 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6136
6137 DRM DRIVER FOR NOVATEK NT36672A PANELS
6138 M:      Sumit Semwal <sumit.semwal@linaro.org>
6139 S:      Maintained
6140 T:      git git://anongit.freedesktop.org/drm/drm-misc
6141 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6142 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6143
6144 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6145 M:      Ben Skeggs <bskeggs@redhat.com>
6146 M:      Karol Herbst <kherbst@redhat.com>
6147 M:      Lyude Paul <lyude@redhat.com>
6148 L:      dri-devel@lists.freedesktop.org
6149 L:      nouveau@lists.freedesktop.org
6150 S:      Supported
6151 W:      https://nouveau.freedesktop.org/
6152 Q:      https://patchwork.freedesktop.org/project/nouveau/
6153 Q:      https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6154 B:      https://gitlab.freedesktop.org/drm/nouveau/-/issues
6155 C:      irc://irc.oftc.net/nouveau
6156 T:      git https://gitlab.freedesktop.org/drm/nouveau.git
6157 F:      drivers/gpu/drm/nouveau/
6158 F:      include/uapi/drm/nouveau_drm.h
6159
6160 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6161 M:      Stefan Mavrodiev <stefan@olimex.com>
6162 S:      Maintained
6163 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6164 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6165
6166 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6167 M:      Noralf Trønnes <noralf@tronnes.org>
6168 S:      Maintained
6169 T:      git git://anongit.freedesktop.org/drm/drm-misc
6170 F:      Documentation/devicetree/bindings/display/repaper.txt
6171 F:      drivers/gpu/drm/tiny/repaper.c
6172
6173 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6174 M:      Dave Airlie <airlied@redhat.com>
6175 M:      Gerd Hoffmann <kraxel@redhat.com>
6176 L:      virtualization@lists.linux-foundation.org
6177 S:      Obsolete
6178 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6179 T:      git git://anongit.freedesktop.org/drm/drm-misc
6180 F:      drivers/gpu/drm/tiny/cirrus.c
6181
6182 DRM DRIVER FOR QXL VIRTUAL GPU
6183 M:      Dave Airlie <airlied@redhat.com>
6184 M:      Gerd Hoffmann <kraxel@redhat.com>
6185 L:      virtualization@lists.linux-foundation.org
6186 L:      spice-devel@lists.freedesktop.org
6187 S:      Maintained
6188 T:      git git://anongit.freedesktop.org/drm/drm-misc
6189 F:      drivers/gpu/drm/qxl/
6190 F:      include/uapi/drm/qxl_drm.h
6191
6192 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6193 S:      Orphan / Obsolete
6194 F:      drivers/gpu/drm/r128/
6195 F:      include/uapi/drm/r128_drm.h
6196
6197 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6198 M:      Robert Chiras <robert.chiras@nxp.com>
6199 S:      Maintained
6200 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6201 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6202
6203 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6204 M:      Linus Walleij <linus.walleij@linaro.org>
6205 S:      Maintained
6206 T:      git git://anongit.freedesktop.org/drm/drm-misc
6207 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6208 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6209
6210 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6211 M:      Markuss Broks <markuss.broks@gmail.com>
6212 S:      Maintained
6213 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6214 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6215
6216 DRM DRIVER FOR SITRONIX ST7703 PANELS
6217 M:      Guido Günther <agx@sigxcpu.org>
6218 R:      Purism Kernel Team <kernel@puri.sm>
6219 R:      Ondrej Jirman <megous@megous.com>
6220 S:      Maintained
6221 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6222 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6223
6224 DRM DRIVER FOR SAVAGE VIDEO CARDS
6225 S:      Orphan / Obsolete
6226 F:      drivers/gpu/drm/savage/
6227 F:      include/uapi/drm/savage_drm.h
6228
6229 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6230 M:      Thomas Zimmermann <tzimmermann@suse.de>
6231 L:      dri-devel@lists.freedesktop.org
6232 S:      Maintained
6233 T:      git git://anongit.freedesktop.org/drm/drm-misc
6234 F:      drivers/gpu/drm/tiny/simpledrm.c
6235
6236 DRM DRIVER FOR SIS VIDEO CARDS
6237 S:      Orphan / Obsolete
6238 F:      drivers/gpu/drm/sis/
6239 F:      include/uapi/drm/sis_drm.h
6240
6241 DRM DRIVER FOR SITRONIX ST7586 PANELS
6242 M:      David Lechner <david@lechnology.com>
6243 S:      Maintained
6244 T:      git git://anongit.freedesktop.org/drm/drm-misc
6245 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6246 F:      drivers/gpu/drm/tiny/st7586.c
6247
6248 DRM DRIVER FOR SITRONIX ST7701 PANELS
6249 M:      Jagan Teki <jagan@amarulasolutions.com>
6250 S:      Maintained
6251 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6252 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6253
6254 DRM DRIVER FOR SITRONIX ST7735R PANELS
6255 M:      David Lechner <david@lechnology.com>
6256 S:      Maintained
6257 T:      git git://anongit.freedesktop.org/drm/drm-misc
6258 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6259 F:      drivers/gpu/drm/tiny/st7735r.c
6260
6261 DRM DRIVER FOR SONY ACX424AKP PANELS
6262 M:      Linus Walleij <linus.walleij@linaro.org>
6263 S:      Maintained
6264 T:      git git://anongit.freedesktop.org/drm/drm-misc
6265 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
6266
6267 DRM DRIVER FOR ST-ERICSSON MCDE
6268 M:      Linus Walleij <linus.walleij@linaro.org>
6269 S:      Maintained
6270 T:      git git://anongit.freedesktop.org/drm/drm-misc
6271 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6272 F:      drivers/gpu/drm/mcde/
6273
6274 DRM DRIVER FOR TDFX VIDEO CARDS
6275 S:      Orphan / Obsolete
6276 F:      drivers/gpu/drm/tdfx/
6277
6278 DRM DRIVER FOR TPO TPG110 PANELS
6279 M:      Linus Walleij <linus.walleij@linaro.org>
6280 S:      Maintained
6281 T:      git git://anongit.freedesktop.org/drm/drm-misc
6282 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6283 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6284
6285 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6286 M:      Dave Airlie <airlied@redhat.com>
6287 R:      Sean Paul <sean@poorly.run>
6288 R:      Thomas Zimmermann <tzimmermann@suse.de>
6289 L:      dri-devel@lists.freedesktop.org
6290 S:      Supported
6291 T:      git git://anongit.freedesktop.org/drm/drm-misc
6292 F:      drivers/gpu/drm/udl/
6293
6294 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6295 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6296 M:      Melissa Wen <melissa.srw@gmail.com>
6297 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6298 R:      Daniel Vetter <daniel@ffwll.ch>
6299 L:      dri-devel@lists.freedesktop.org
6300 S:      Maintained
6301 T:      git git://anongit.freedesktop.org/drm/drm-misc
6302 F:      Documentation/gpu/vkms.rst
6303 F:      drivers/gpu/drm/vkms/
6304
6305 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6306 M:      Hans de Goede <hdegoede@redhat.com>
6307 L:      dri-devel@lists.freedesktop.org
6308 S:      Maintained
6309 T:      git git://anongit.freedesktop.org/drm/drm-misc
6310 F:      drivers/gpu/drm/vboxvideo/
6311
6312 DRM DRIVER FOR VMWARE VIRTUAL GPU
6313 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
6314 M:      Zack Rusin <zackr@vmware.com>
6315 L:      dri-devel@lists.freedesktop.org
6316 S:      Supported
6317 T:      git git://anongit.freedesktop.org/drm/drm-misc
6318 F:      drivers/gpu/drm/vmwgfx/
6319 F:      include/uapi/drm/vmwgfx_drm.h
6320
6321 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6322 M:      Linus Walleij <linus.walleij@linaro.org>
6323 S:      Maintained
6324 T:      git git://anongit.freedesktop.org/drm/drm-misc
6325 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6326 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6327
6328 DRM DRIVERS
6329 M:      David Airlie <airlied@linux.ie>
6330 M:      Daniel Vetter <daniel@ffwll.ch>
6331 L:      dri-devel@lists.freedesktop.org
6332 S:      Maintained
6333 B:      https://gitlab.freedesktop.org/drm
6334 C:      irc://irc.oftc.net/dri-devel
6335 T:      git git://anongit.freedesktop.org/drm/drm
6336 F:      Documentation/devicetree/bindings/display/
6337 F:      Documentation/devicetree/bindings/gpu/
6338 F:      Documentation/gpu/
6339 F:      drivers/gpu/
6340 F:      include/drm/
6341 F:      include/linux/vga*
6342 F:      include/uapi/drm/
6343
6344 DRM DRIVERS AND MISC GPU PATCHES
6345 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6346 M:      Maxime Ripard <mripard@kernel.org>
6347 M:      Thomas Zimmermann <tzimmermann@suse.de>
6348 S:      Maintained
6349 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6350 T:      git git://anongit.freedesktop.org/drm/drm-misc
6351 F:      Documentation/gpu/
6352 F:      drivers/gpu/drm/*
6353 F:      drivers/gpu/vga/
6354 F:      include/drm/drm*
6355 F:      include/linux/vga*
6356 F:      include/uapi/drm/drm*
6357
6358 DRM DRIVERS FOR ALLWINNER A10
6359 M:      Maxime Ripard <mripard@kernel.org>
6360 M:      Chen-Yu Tsai <wens@csie.org>
6361 L:      dri-devel@lists.freedesktop.org
6362 S:      Supported
6363 T:      git git://anongit.freedesktop.org/drm/drm-misc
6364 F:      Documentation/devicetree/bindings/display/allwinner*
6365 F:      drivers/gpu/drm/sun4i/
6366
6367 DRM DRIVERS FOR AMLOGIC SOCS
6368 M:      Neil Armstrong <narmstrong@baylibre.com>
6369 L:      dri-devel@lists.freedesktop.org
6370 L:      linux-amlogic@lists.infradead.org
6371 S:      Supported
6372 W:      http://linux-meson.com/
6373 T:      git git://anongit.freedesktop.org/drm/drm-misc
6374 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6375 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6376 F:      Documentation/gpu/meson.rst
6377 F:      drivers/gpu/drm/meson/
6378
6379 DRM DRIVERS FOR ATMEL HLCDC
6380 M:      Sam Ravnborg <sam@ravnborg.org>
6381 M:      Boris Brezillon <bbrezillon@kernel.org>
6382 L:      dri-devel@lists.freedesktop.org
6383 S:      Supported
6384 T:      git git://anongit.freedesktop.org/drm/drm-misc
6385 F:      Documentation/devicetree/bindings/display/atmel/
6386 F:      drivers/gpu/drm/atmel-hlcdc/
6387
6388 DRM DRIVERS FOR BRIDGE CHIPS
6389 M:      Andrzej Hajda <andrzej.hajda@intel.com>
6390 M:      Neil Armstrong <narmstrong@baylibre.com>
6391 M:      Robert Foss <robert.foss@linaro.org>
6392 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6393 R:      Jonas Karlman <jonas@kwiboo.se>
6394 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6395 S:      Maintained
6396 T:      git git://anongit.freedesktop.org/drm/drm-misc
6397 F:      drivers/gpu/drm/bridge/
6398
6399 DRM DRIVERS FOR EXYNOS
6400 M:      Inki Dae <inki.dae@samsung.com>
6401 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6402 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6403 M:      Kyungmin Park <kyungmin.park@samsung.com>
6404 L:      dri-devel@lists.freedesktop.org
6405 S:      Supported
6406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6407 F:      Documentation/devicetree/bindings/display/exynos/
6408 F:      drivers/gpu/drm/exynos/
6409 F:      include/uapi/drm/exynos_drm.h
6410
6411 DRM DRIVERS FOR FREESCALE DCU
6412 M:      Stefan Agner <stefan@agner.ch>
6413 M:      Alison Wang <alison.wang@nxp.com>
6414 L:      dri-devel@lists.freedesktop.org
6415 S:      Supported
6416 T:      git git://anongit.freedesktop.org/drm/drm-misc
6417 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6418 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6419 F:      drivers/gpu/drm/fsl-dcu/
6420
6421 DRM DRIVERS FOR FREESCALE IMX
6422 M:      Philipp Zabel <p.zabel@pengutronix.de>
6423 L:      dri-devel@lists.freedesktop.org
6424 S:      Maintained
6425 F:      Documentation/devicetree/bindings/display/imx/
6426 F:      drivers/gpu/drm/imx/
6427 F:      drivers/gpu/ipu-v3/
6428
6429 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6430 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6431 L:      dri-devel@lists.freedesktop.org
6432 S:      Maintained
6433 T:      git git://github.com/patjak/drm-gma500
6434 F:      drivers/gpu/drm/gma500/
6435
6436 DRM DRIVERS FOR HISILICON
6437 M:      Xinliang Liu <xinliang.liu@linaro.org>
6438 M:      Tian Tao  <tiantao6@hisilicon.com>
6439 R:      John Stultz <john.stultz@linaro.org>
6440 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6441 R:      Chen Feng <puck.chen@hisilicon.com>
6442 L:      dri-devel@lists.freedesktop.org
6443 S:      Maintained
6444 T:      git git://anongit.freedesktop.org/drm/drm-misc
6445 F:      Documentation/devicetree/bindings/display/hisilicon/
6446 F:      drivers/gpu/drm/hisilicon/
6447
6448 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6449 M:      Deepak Rawat <drawat.floss@gmail.com>
6450 L:      linux-hyperv@vger.kernel.org
6451 L:      dri-devel@lists.freedesktop.org
6452 S:      Maintained
6453 T:      git git://anongit.freedesktop.org/drm/drm-misc
6454 F:      drivers/gpu/drm/hyperv
6455
6456 DRM DRIVERS FOR LIMA
6457 M:      Qiang Yu <yuq825@gmail.com>
6458 L:      dri-devel@lists.freedesktop.org
6459 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6460 S:      Maintained
6461 T:      git git://anongit.freedesktop.org/drm/drm-misc
6462 F:      drivers/gpu/drm/lima/
6463 F:      include/uapi/drm/lima_drm.h
6464
6465 DRM DRIVERS FOR MEDIATEK
6466 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6467 M:      Philipp Zabel <p.zabel@pengutronix.de>
6468 L:      dri-devel@lists.freedesktop.org
6469 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6470 S:      Supported
6471 F:      Documentation/devicetree/bindings/display/mediatek/
6472 F:      drivers/gpu/drm/mediatek/
6473 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6474 F:      drivers/phy/mediatek/phy-mtk-mipi*
6475
6476 DRM DRIVERS FOR NVIDIA TEGRA
6477 M:      Thierry Reding <thierry.reding@gmail.com>
6478 L:      dri-devel@lists.freedesktop.org
6479 L:      linux-tegra@vger.kernel.org
6480 S:      Supported
6481 T:      git git://anongit.freedesktop.org/tegra/linux.git
6482 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6483 F:      Documentation/devicetree/bindings/gpu/host1x/
6484 F:      drivers/gpu/drm/tegra/
6485 F:      drivers/gpu/host1x/
6486 F:      include/linux/host1x.h
6487 F:      include/uapi/drm/tegra_drm.h
6488
6489 DRM DRIVERS FOR RENESAS
6490 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6491 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6492 L:      dri-devel@lists.freedesktop.org
6493 L:      linux-renesas-soc@vger.kernel.org
6494 S:      Supported
6495 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6496 F:      Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
6497 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6498 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6499 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6500 F:      drivers/gpu/drm/rcar-du/
6501 F:      drivers/gpu/drm/shmobile/
6502 F:      include/linux/platform_data/shmob_drm.h
6503
6504 DRM DRIVERS FOR ROCKCHIP
6505 M:      Sandy Huang <hjc@rock-chips.com>
6506 M:      Heiko Stübner <heiko@sntech.de>
6507 L:      dri-devel@lists.freedesktop.org
6508 S:      Maintained
6509 T:      git git://anongit.freedesktop.org/drm/drm-misc
6510 F:      Documentation/devicetree/bindings/display/rockchip/
6511 F:      drivers/gpu/drm/rockchip/
6512
6513 DRM DRIVERS FOR STI
6514 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6515 L:      dri-devel@lists.freedesktop.org
6516 S:      Maintained
6517 T:      git git://anongit.freedesktop.org/drm/drm-misc
6518 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6519 F:      drivers/gpu/drm/sti
6520
6521 DRM DRIVERS FOR STM
6522 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6523 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6524 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6525 L:      dri-devel@lists.freedesktop.org
6526 S:      Maintained
6527 T:      git git://anongit.freedesktop.org/drm/drm-misc
6528 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6529 F:      drivers/gpu/drm/stm
6530
6531 DRM DRIVERS FOR TI KEYSTONE
6532 M:      Jyri Sarha <jyri.sarha@iki.fi>
6533 M:      Tomi Valkeinen <tomba@kernel.org>
6534 L:      dri-devel@lists.freedesktop.org
6535 S:      Maintained
6536 T:      git git://anongit.freedesktop.org/drm/drm-misc
6537 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6538 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6539 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6540 F:      drivers/gpu/drm/tidss/
6541
6542 DRM DRIVERS FOR TI LCDC
6543 M:      Jyri Sarha <jyri.sarha@iki.fi>
6544 R:      Tomi Valkeinen <tomba@kernel.org>
6545 L:      dri-devel@lists.freedesktop.org
6546 S:      Maintained
6547 F:      Documentation/devicetree/bindings/display/tilcdc/
6548 F:      drivers/gpu/drm/tilcdc/
6549
6550 DRM DRIVERS FOR TI OMAP
6551 M:      Tomi Valkeinen <tomba@kernel.org>
6552 L:      dri-devel@lists.freedesktop.org
6553 S:      Maintained
6554 F:      Documentation/devicetree/bindings/display/ti/
6555 F:      drivers/gpu/drm/omapdrm/
6556
6557 DRM DRIVERS FOR V3D
6558 M:      Emma Anholt <emma@anholt.net>
6559 S:      Supported
6560 T:      git git://anongit.freedesktop.org/drm/drm-misc
6561 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6562 F:      drivers/gpu/drm/v3d/
6563 F:      include/uapi/drm/v3d_drm.h
6564
6565 DRM DRIVERS FOR VC4
6566 M:      Emma Anholt <emma@anholt.net>
6567 M:      Maxime Ripard <mripard@kernel.org>
6568 S:      Supported
6569 T:      git git://github.com/anholt/linux
6570 T:      git git://anongit.freedesktop.org/drm/drm-misc
6571 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6572 F:      drivers/gpu/drm/vc4/
6573 F:      include/uapi/drm/vc4_drm.h
6574
6575 DRM DRIVERS FOR VIVANTE GPU IP
6576 M:      Lucas Stach <l.stach@pengutronix.de>
6577 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6578 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6579 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6580 L:      dri-devel@lists.freedesktop.org
6581 S:      Maintained
6582 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6583 F:      drivers/gpu/drm/etnaviv/
6584 F:      include/uapi/drm/etnaviv_drm.h
6585
6586 DRM DRIVERS FOR XEN
6587 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6588 L:      dri-devel@lists.freedesktop.org
6589 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6590 S:      Supported
6591 T:      git git://anongit.freedesktop.org/drm/drm-misc
6592 F:      Documentation/gpu/xen-front.rst
6593 F:      drivers/gpu/drm/xen/
6594
6595 DRM DRIVERS FOR XILINX
6596 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6597 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6598 L:      dri-devel@lists.freedesktop.org
6599 S:      Maintained
6600 T:      git git://anongit.freedesktop.org/drm/drm-misc
6601 F:      Documentation/devicetree/bindings/display/xlnx/
6602 F:      drivers/gpu/drm/xlnx/
6603
6604 DRM PANEL DRIVERS
6605 M:      Thierry Reding <thierry.reding@gmail.com>
6606 R:      Sam Ravnborg <sam@ravnborg.org>
6607 L:      dri-devel@lists.freedesktop.org
6608 S:      Maintained
6609 T:      git git://anongit.freedesktop.org/drm/drm-misc
6610 F:      Documentation/devicetree/bindings/display/panel/
6611 F:      drivers/gpu/drm/drm_panel.c
6612 F:      drivers/gpu/drm/panel/
6613 F:      include/drm/drm_panel.h
6614
6615 DRM PRIVACY-SCREEN CLASS
6616 M:      Hans de Goede <hdegoede@redhat.com>
6617 L:      dri-devel@lists.freedesktop.org
6618 S:      Maintained
6619 T:      git git://anongit.freedesktop.org/drm/drm-misc
6620 F:      drivers/gpu/drm/drm_privacy_screen*
6621 F:      include/drm/drm_privacy_screen*
6622
6623 DRM TTM SUBSYSTEM
6624 M:      Christian Koenig <christian.koenig@amd.com>
6625 M:      Huang Rui <ray.huang@amd.com>
6626 L:      dri-devel@lists.freedesktop.org
6627 S:      Maintained
6628 T:      git git://anongit.freedesktop.org/drm/drm-misc
6629 F:      drivers/gpu/drm/ttm/
6630 F:      include/drm/ttm/
6631
6632 DRM GPU SCHEDULER
6633 M:      Andrey Grodzovsky <andrey.grodzovsky@amd.com>
6634 L:      dri-devel@lists.freedesktop.org
6635 S:      Maintained
6636 T:      git git://anongit.freedesktop.org/drm/drm-misc
6637 F:      drivers/gpu/drm/scheduler/
6638 F:      include/drm/gpu_scheduler.h
6639
6640 DSBR100 USB FM RADIO DRIVER
6641 M:      Alexey Klimov <klimov.linux@gmail.com>
6642 L:      linux-media@vger.kernel.org
6643 S:      Maintained
6644 T:      git git://linuxtv.org/media_tree.git
6645 F:      drivers/media/radio/dsbr100.c
6646
6647 DT3155 MEDIA DRIVER
6648 M:      Hans Verkuil <hverkuil@xs4all.nl>
6649 L:      linux-media@vger.kernel.org
6650 S:      Odd Fixes
6651 W:      https://linuxtv.org
6652 T:      git git://linuxtv.org/media_tree.git
6653 F:      drivers/media/pci/dt3155/
6654
6655 DVB_USB_AF9015 MEDIA DRIVER
6656 M:      Antti Palosaari <crope@iki.fi>
6657 L:      linux-media@vger.kernel.org
6658 S:      Maintained
6659 W:      https://linuxtv.org
6660 W:      http://palosaari.fi/linux/
6661 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6662 T:      git git://linuxtv.org/anttip/media_tree.git
6663 F:      drivers/media/usb/dvb-usb-v2/af9015*
6664
6665 DVB_USB_AF9035 MEDIA DRIVER
6666 M:      Antti Palosaari <crope@iki.fi>
6667 L:      linux-media@vger.kernel.org
6668 S:      Maintained
6669 W:      https://linuxtv.org
6670 W:      http://palosaari.fi/linux/
6671 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6672 T:      git git://linuxtv.org/anttip/media_tree.git
6673 F:      drivers/media/usb/dvb-usb-v2/af9035*
6674
6675 DVB_USB_ANYSEE MEDIA DRIVER
6676 M:      Antti Palosaari <crope@iki.fi>
6677 L:      linux-media@vger.kernel.org
6678 S:      Maintained
6679 W:      https://linuxtv.org
6680 W:      http://palosaari.fi/linux/
6681 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6682 T:      git git://linuxtv.org/anttip/media_tree.git
6683 F:      drivers/media/usb/dvb-usb-v2/anysee*
6684
6685 DVB_USB_AU6610 MEDIA DRIVER
6686 M:      Antti Palosaari <crope@iki.fi>
6687 L:      linux-media@vger.kernel.org
6688 S:      Maintained
6689 W:      https://linuxtv.org
6690 W:      http://palosaari.fi/linux/
6691 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6692 T:      git git://linuxtv.org/anttip/media_tree.git
6693 F:      drivers/media/usb/dvb-usb-v2/au6610*
6694
6695 DVB_USB_CE6230 MEDIA DRIVER
6696 M:      Antti Palosaari <crope@iki.fi>
6697 L:      linux-media@vger.kernel.org
6698 S:      Maintained
6699 W:      https://linuxtv.org
6700 W:      http://palosaari.fi/linux/
6701 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6702 T:      git git://linuxtv.org/anttip/media_tree.git
6703 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6704
6705 DVB_USB_CXUSB MEDIA DRIVER
6706 M:      Michael Krufky <mkrufky@linuxtv.org>
6707 L:      linux-media@vger.kernel.org
6708 S:      Maintained
6709 W:      https://linuxtv.org
6710 W:      http://github.com/mkrufky
6711 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6712 T:      git git://linuxtv.org/media_tree.git
6713 F:      drivers/media/usb/dvb-usb/cxusb*
6714
6715 DVB_USB_EC168 MEDIA DRIVER
6716 M:      Antti Palosaari <crope@iki.fi>
6717 L:      linux-media@vger.kernel.org
6718 S:      Maintained
6719 W:      https://linuxtv.org
6720 W:      http://palosaari.fi/linux/
6721 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6722 T:      git git://linuxtv.org/anttip/media_tree.git
6723 F:      drivers/media/usb/dvb-usb-v2/ec168*
6724
6725 DVB_USB_GL861 MEDIA DRIVER
6726 M:      Antti Palosaari <crope@iki.fi>
6727 L:      linux-media@vger.kernel.org
6728 S:      Maintained
6729 W:      https://linuxtv.org
6730 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6731 T:      git git://linuxtv.org/anttip/media_tree.git
6732 F:      drivers/media/usb/dvb-usb-v2/gl861*
6733
6734 DVB_USB_MXL111SF MEDIA DRIVER
6735 M:      Michael Krufky <mkrufky@linuxtv.org>
6736 L:      linux-media@vger.kernel.org
6737 S:      Maintained
6738 W:      https://linuxtv.org
6739 W:      http://github.com/mkrufky
6740 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6741 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6742 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6743
6744 DVB_USB_RTL28XXU MEDIA DRIVER
6745 M:      Antti Palosaari <crope@iki.fi>
6746 L:      linux-media@vger.kernel.org
6747 S:      Maintained
6748 W:      https://linuxtv.org
6749 W:      http://palosaari.fi/linux/
6750 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6751 T:      git git://linuxtv.org/anttip/media_tree.git
6752 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6753
6754 DVB_USB_V2 MEDIA DRIVER
6755 M:      Antti Palosaari <crope@iki.fi>
6756 L:      linux-media@vger.kernel.org
6757 S:      Maintained
6758 W:      https://linuxtv.org
6759 W:      http://palosaari.fi/linux/
6760 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6761 T:      git git://linuxtv.org/anttip/media_tree.git
6762 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6763 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6764
6765 DYNAMIC DEBUG
6766 M:      Jason Baron <jbaron@akamai.com>
6767 S:      Maintained
6768 F:      include/linux/dynamic_debug.h
6769 F:      lib/dynamic_debug.c
6770
6771 DYNAMIC INTERRUPT MODERATION
6772 M:      Tal Gilboa <talgi@nvidia.com>
6773 S:      Maintained
6774 F:      Documentation/networking/net_dim.rst
6775 F:      include/linux/dim.h
6776 F:      lib/dim/
6777
6778 DZ DECSTATION DZ11 SERIAL DRIVER
6779 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6780 S:      Maintained
6781 F:      drivers/tty/serial/dz.*
6782
6783 E3X0 POWER BUTTON DRIVER
6784 M:      Moritz Fischer <moritz.fischer@ettus.com>
6785 L:      usrp-users@lists.ettus.com
6786 S:      Supported
6787 W:      http://www.ettus.com
6788 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6789 F:      drivers/input/misc/e3x0-button.c
6790
6791 E4000 MEDIA DRIVER
6792 M:      Antti Palosaari <crope@iki.fi>
6793 L:      linux-media@vger.kernel.org
6794 S:      Maintained
6795 W:      https://linuxtv.org
6796 W:      http://palosaari.fi/linux/
6797 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6798 T:      git git://linuxtv.org/anttip/media_tree.git
6799 F:      drivers/media/tuners/e4000*
6800
6801 EARTH_PT1 MEDIA DRIVER
6802 M:      Akihiro Tsukada <tskd08@gmail.com>
6803 L:      linux-media@vger.kernel.org
6804 S:      Odd Fixes
6805 F:      drivers/media/pci/pt1/
6806
6807 EARTH_PT3 MEDIA DRIVER
6808 M:      Akihiro Tsukada <tskd08@gmail.com>
6809 L:      linux-media@vger.kernel.org
6810 S:      Odd Fixes
6811 F:      drivers/media/pci/pt3/
6812
6813 EC100 MEDIA DRIVER
6814 M:      Antti Palosaari <crope@iki.fi>
6815 L:      linux-media@vger.kernel.org
6816 S:      Maintained
6817 W:      https://linuxtv.org
6818 W:      http://palosaari.fi/linux/
6819 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6820 T:      git git://linuxtv.org/anttip/media_tree.git
6821 F:      drivers/media/dvb-frontends/ec100*
6822
6823 ECRYPT FILE SYSTEM
6824 M:      Tyler Hicks <code@tyhicks.com>
6825 L:      ecryptfs@vger.kernel.org
6826 S:      Odd Fixes
6827 W:      http://ecryptfs.org
6828 W:      https://launchpad.net/ecryptfs
6829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6830 F:      Documentation/filesystems/ecryptfs.rst
6831 F:      fs/ecryptfs/
6832
6833 EDAC-AMD64
6834 M:      Yazen Ghannam <yazen.ghannam@amd.com>
6835 L:      linux-edac@vger.kernel.org
6836 S:      Supported
6837 F:      drivers/edac/amd64_edac*
6838 F:      drivers/edac/mce_amd*
6839
6840 EDAC-ARMADA
6841 M:      Jan Luebbe <jlu@pengutronix.de>
6842 L:      linux-edac@vger.kernel.org
6843 S:      Maintained
6844 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
6845 F:      drivers/edac/armada_xp_*
6846
6847 EDAC-AST2500
6848 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6849 S:      Supported
6850 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6851 F:      drivers/edac/aspeed_edac.c
6852
6853 EDAC-BLUEFIELD
6854 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6855 S:      Supported
6856 F:      drivers/edac/bluefield_edac.c
6857
6858 EDAC-CALXEDA
6859 M:      Andre Przywara <andre.przywara@arm.com>
6860 L:      linux-edac@vger.kernel.org
6861 S:      Maintained
6862 F:      drivers/edac/highbank*
6863
6864 EDAC-CAVIUM OCTEON
6865 M:      Ralf Baechle <ralf@linux-mips.org>
6866 L:      linux-edac@vger.kernel.org
6867 L:      linux-mips@vger.kernel.org
6868 S:      Supported
6869 F:      drivers/edac/octeon_edac*
6870
6871 EDAC-CAVIUM THUNDERX
6872 M:      Robert Richter <rric@kernel.org>
6873 L:      linux-edac@vger.kernel.org
6874 S:      Odd Fixes
6875 F:      drivers/edac/thunderx_edac*
6876
6877 EDAC-CORE
6878 M:      Borislav Petkov <bp@alien8.de>
6879 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6880 M:      Tony Luck <tony.luck@intel.com>
6881 R:      James Morse <james.morse@arm.com>
6882 R:      Robert Richter <rric@kernel.org>
6883 L:      linux-edac@vger.kernel.org
6884 S:      Supported
6885 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6886 F:      Documentation/admin-guide/ras.rst
6887 F:      Documentation/driver-api/edac.rst
6888 F:      drivers/edac/
6889 F:      include/linux/edac.h
6890
6891 EDAC-DMC520
6892 M:      Lei Wang <lewan@microsoft.com>
6893 L:      linux-edac@vger.kernel.org
6894 S:      Supported
6895 F:      drivers/edac/dmc520_edac.c
6896
6897 EDAC-E752X
6898 M:      Mark Gross <markgross@kernel.org>
6899 L:      linux-edac@vger.kernel.org
6900 S:      Maintained
6901 F:      drivers/edac/e752x_edac.c
6902
6903 EDAC-E7XXX
6904 L:      linux-edac@vger.kernel.org
6905 S:      Maintained
6906 F:      drivers/edac/e7xxx_edac.c
6907
6908 EDAC-FSL_DDR
6909 M:      York Sun <york.sun@nxp.com>
6910 L:      linux-edac@vger.kernel.org
6911 S:      Maintained
6912 F:      drivers/edac/fsl_ddr_edac.*
6913
6914 EDAC-GHES
6915 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6916 L:      linux-edac@vger.kernel.org
6917 S:      Maintained
6918 F:      drivers/edac/ghes_edac.c
6919
6920 EDAC-I10NM
6921 M:      Tony Luck <tony.luck@intel.com>
6922 L:      linux-edac@vger.kernel.org
6923 S:      Maintained
6924 F:      drivers/edac/i10nm_base.c
6925
6926 EDAC-I3000
6927 L:      linux-edac@vger.kernel.org
6928 S:      Orphan
6929 F:      drivers/edac/i3000_edac.c
6930
6931 EDAC-I5000
6932 L:      linux-edac@vger.kernel.org
6933 S:      Maintained
6934 F:      drivers/edac/i5000_edac.c
6935
6936 EDAC-I5400
6937 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6938 L:      linux-edac@vger.kernel.org
6939 S:      Maintained
6940 F:      drivers/edac/i5400_edac.c
6941
6942 EDAC-I7300
6943 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6944 L:      linux-edac@vger.kernel.org
6945 S:      Maintained
6946 F:      drivers/edac/i7300_edac.c
6947
6948 EDAC-I7CORE
6949 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6950 L:      linux-edac@vger.kernel.org
6951 S:      Maintained
6952 F:      drivers/edac/i7core_edac.c
6953
6954 EDAC-I82443BXGX
6955 M:      Tim Small <tim@buttersideup.com>
6956 L:      linux-edac@vger.kernel.org
6957 S:      Maintained
6958 F:      drivers/edac/i82443bxgx_edac.c
6959
6960 EDAC-I82975X
6961 M:      "Arvind R." <arvino55@gmail.com>
6962 L:      linux-edac@vger.kernel.org
6963 S:      Maintained
6964 F:      drivers/edac/i82975x_edac.c
6965
6966 EDAC-IE31200
6967 M:      Jason Baron <jbaron@akamai.com>
6968 L:      linux-edac@vger.kernel.org
6969 S:      Maintained
6970 F:      drivers/edac/ie31200_edac.c
6971
6972 EDAC-IGEN6
6973 M:      Tony Luck <tony.luck@intel.com>
6974 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6975 L:      linux-edac@vger.kernel.org
6976 S:      Maintained
6977 F:      drivers/edac/igen6_edac.c
6978
6979 EDAC-MPC85XX
6980 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6981 L:      linux-edac@vger.kernel.org
6982 S:      Maintained
6983 F:      drivers/edac/mpc85xx_edac.[ch]
6984
6985 EDAC-PASEMI
6986 M:      Egor Martovetsky <egor@pasemi.com>
6987 L:      linux-edac@vger.kernel.org
6988 S:      Maintained
6989 F:      drivers/edac/pasemi_edac.c
6990
6991 EDAC-PND2
6992 M:      Tony Luck <tony.luck@intel.com>
6993 L:      linux-edac@vger.kernel.org
6994 S:      Maintained
6995 F:      drivers/edac/pnd2_edac.[ch]
6996
6997 EDAC-QCOM
6998 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6999 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
7000 L:      linux-arm-msm@vger.kernel.org
7001 L:      linux-edac@vger.kernel.org
7002 S:      Maintained
7003 F:      drivers/edac/qcom_edac.c
7004
7005 EDAC-R82600
7006 M:      Tim Small <tim@buttersideup.com>
7007 L:      linux-edac@vger.kernel.org
7008 S:      Maintained
7009 F:      drivers/edac/r82600_edac.c
7010
7011 EDAC-SBRIDGE
7012 M:      Tony Luck <tony.luck@intel.com>
7013 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7014 L:      linux-edac@vger.kernel.org
7015 S:      Maintained
7016 F:      drivers/edac/sb_edac.c
7017
7018 EDAC-SIFIVE
7019 M:      Yash Shah <yash.shah@sifive.com>
7020 L:      linux-edac@vger.kernel.org
7021 S:      Supported
7022 F:      drivers/edac/sifive_edac.c
7023
7024 EDAC-SKYLAKE
7025 M:      Tony Luck <tony.luck@intel.com>
7026 L:      linux-edac@vger.kernel.org
7027 S:      Maintained
7028 F:      drivers/edac/skx_*.[ch]
7029
7030 EDAC-TI
7031 M:      Tero Kristo <kristo@kernel.org>
7032 L:      linux-edac@vger.kernel.org
7033 S:      Odd Fixes
7034 F:      drivers/edac/ti_edac.c
7035
7036 EDIROL UA-101/UA-1000 DRIVER
7037 M:      Clemens Ladisch <clemens@ladisch.de>
7038 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7039 S:      Maintained
7040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7041 F:      sound/usb/misc/ua101.c
7042
7043 EFI TEST DRIVER
7044 M:      Ivan Hu <ivan.hu@canonical.com>
7045 M:      Ard Biesheuvel <ardb@kernel.org>
7046 L:      linux-efi@vger.kernel.org
7047 S:      Maintained
7048 F:      drivers/firmware/efi/test/
7049
7050 EFI VARIABLE FILESYSTEM
7051 M:      Matthew Garrett <matthew.garrett@nebula.com>
7052 M:      Jeremy Kerr <jk@ozlabs.org>
7053 M:      Ard Biesheuvel <ardb@kernel.org>
7054 L:      linux-efi@vger.kernel.org
7055 S:      Maintained
7056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7057 F:      fs/efivarfs/
7058
7059 EFIFB FRAMEBUFFER DRIVER
7060 M:      Peter Jones <pjones@redhat.com>
7061 L:      linux-fbdev@vger.kernel.org
7062 S:      Maintained
7063 F:      drivers/video/fbdev/efifb.c
7064
7065 EFS FILESYSTEM
7066 S:      Orphan
7067 W:      http://aeschi.ch.eu.org/efs/
7068 F:      fs/efs/
7069
7070 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7071 M:      Douglas Miller <dougmill@linux.ibm.com>
7072 L:      netdev@vger.kernel.org
7073 S:      Maintained
7074 F:      drivers/net/ethernet/ibm/ehea/
7075
7076 EM28XX VIDEO4LINUX DRIVER
7077 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7078 L:      linux-media@vger.kernel.org
7079 S:      Maintained
7080 W:      https://linuxtv.org
7081 T:      git git://linuxtv.org/media_tree.git
7082 F:      Documentation/admin-guide/media/em28xx*
7083 F:      drivers/media/usb/em28xx/
7084
7085 EMBEDDED LINUX
7086 M:      Matt Mackall <mpm@selenic.com>
7087 M:      David Woodhouse <dwmw2@infradead.org>
7088 L:      linux-embedded@vger.kernel.org
7089 S:      Maintained
7090
7091 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7092 M:      Adrian Hunter <adrian.hunter@intel.com>
7093 M:      Ritesh Harjani <riteshh@codeaurora.org>
7094 M:      Asutosh Das <asutoshd@codeaurora.org>
7095 L:      linux-mmc@vger.kernel.org
7096 S:      Maintained
7097 F:      drivers/mmc/host/cqhci*
7098
7099 EMULEX 10Gbps iSCSI - OneConnect DRIVER
7100 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
7101 L:      linux-scsi@vger.kernel.org
7102 S:      Supported
7103 W:      http://www.broadcom.com
7104 F:      drivers/scsi/be2iscsi/
7105
7106 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7107 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
7108 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
7109 M:      Somnath Kotur <somnath.kotur@broadcom.com>
7110 L:      netdev@vger.kernel.org
7111 S:      Supported
7112 W:      http://www.emulex.com
7113 F:      drivers/net/ethernet/emulex/benet/
7114
7115 EMULEX ONECONNECT ROCE DRIVER
7116 M:      Selvin Xavier <selvin.xavier@broadcom.com>
7117 L:      linux-rdma@vger.kernel.org
7118 S:      Odd Fixes
7119 W:      http://www.broadcom.com
7120 F:      drivers/infiniband/hw/ocrdma/
7121 F:      include/uapi/rdma/ocrdma-abi.h
7122
7123 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7124 M:      James Smart <james.smart@broadcom.com>
7125 M:      Dick Kennedy <dick.kennedy@broadcom.com>
7126 L:      linux-scsi@vger.kernel.org
7127 S:      Supported
7128 W:      http://www.broadcom.com
7129 F:      drivers/scsi/lpfc/
7130
7131 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7132 M:      James Smart <james.smart@broadcom.com>
7133 M:      Ram Vegesna <ram.vegesna@broadcom.com>
7134 L:      linux-scsi@vger.kernel.org
7135 L:      target-devel@vger.kernel.org
7136 S:      Supported
7137 W:      http://www.broadcom.com
7138 F:      drivers/scsi/elx/
7139
7140 ENE CB710 FLASH CARD READER DRIVER
7141 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7142 S:      Maintained
7143 F:      drivers/misc/cb710/
7144 F:      drivers/mmc/host/cb710-mmc.*
7145 F:      include/linux/cb710.h
7146
7147 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7148 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7149 S:      Maintained
7150 F:      drivers/media/rc/ene_ir.*
7151
7152 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7153 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7154 L:      linuxppc-dev@lists.ozlabs.org
7155 S:      Maintained
7156 F:      drivers/tty/ehv_bytechan.c
7157
7158 EPSON S1D13XXX FRAMEBUFFER DRIVER
7159 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7160 S:      Maintained
7161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7162 F:      drivers/video/fbdev/s1d13xxxfb.c
7163 F:      include/video/s1d13xxxfb.h
7164
7165 EROFS FILE SYSTEM
7166 M:      Gao Xiang <xiang@kernel.org>
7167 M:      Chao Yu <chao@kernel.org>
7168 L:      linux-erofs@lists.ozlabs.org
7169 S:      Maintained
7170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7171 F:      Documentation/filesystems/erofs.rst
7172 F:      fs/erofs/
7173 F:      include/trace/events/erofs.h
7174
7175 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7176 M:      Jeff Layton <jlayton@kernel.org>
7177 S:      Maintained
7178 F:      include/linux/errseq.h
7179 F:      lib/errseq.c
7180
7181 ET131X NETWORK DRIVER
7182 M:      Mark Einon <mark.einon@gmail.com>
7183 S:      Odd Fixes
7184 F:      drivers/net/ethernet/agere/
7185
7186 ETAS ES58X CAN/USB DRIVER
7187 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7188 L:      linux-can@vger.kernel.org
7189 S:      Maintained
7190 F:      drivers/net/can/usb/etas_es58x/
7191
7192 ETHERNET BRIDGE
7193 M:      Roopa Prabhu <roopa@nvidia.com>
7194 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
7195 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7196 L:      netdev@vger.kernel.org
7197 S:      Maintained
7198 W:      http://www.linuxfoundation.org/en/Net:Bridge
7199 F:      include/linux/netfilter_bridge/
7200 F:      net/bridge/
7201
7202 ETHERNET PHY LIBRARY
7203 M:      Andrew Lunn <andrew@lunn.ch>
7204 M:      Heiner Kallweit <hkallweit1@gmail.com>
7205 R:      Russell King <linux@armlinux.org.uk>
7206 L:      netdev@vger.kernel.org
7207 S:      Maintained
7208 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7209 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7210 F:      Documentation/devicetree/bindings/net/mdio*
7211 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7212 F:      Documentation/networking/phy.rst
7213 F:      drivers/net/mdio/
7214 F:      drivers/net/mdio/acpi_mdio.c
7215 F:      drivers/net/mdio/fwnode_mdio.c
7216 F:      drivers/net/mdio/of_mdio.c
7217 F:      drivers/net/pcs/
7218 F:      drivers/net/phy/
7219 F:      include/dt-bindings/net/qca-ar803x.h
7220 F:      include/linux/*mdio*.h
7221 F:      include/linux/mdio/*.h
7222 F:      include/linux/of_net.h
7223 F:      include/linux/phy.h
7224 F:      include/linux/phy_fixed.h
7225 F:      include/linux/platform_data/mdio-bcm-unimac.h
7226 F:      include/linux/platform_data/mdio-gpio.h
7227 F:      include/trace/events/mdio.h
7228 F:      include/uapi/linux/mdio.h
7229 F:      include/uapi/linux/mii.h
7230 F:      net/core/of_net.c
7231
7232 EXEC & BINFMT API
7233 R:      Eric Biederman <ebiederm@xmission.com>
7234 R:      Kees Cook <keescook@chromium.org>
7235 F:      arch/alpha/kernel/binfmt_loader.c
7236 F:      arch/x86/ia32/ia32_aout.c
7237 F:      fs/*binfmt_*.c
7238 F:      fs/exec.c
7239 F:      include/linux/binfmts.h
7240 F:      include/linux/elf.h
7241 F:      include/uapi/linux/binfmts.h
7242 F:      tools/testing/selftests/exec/
7243 N:      asm/elf.h
7244 N:      binfmt
7245
7246 EXFAT FILE SYSTEM
7247 M:      Namjae Jeon <linkinjeon@kernel.org>
7248 M:      Sungjong Seo <sj1557.seo@samsung.com>
7249 L:      linux-fsdevel@vger.kernel.org
7250 S:      Maintained
7251 F:      fs/exfat/
7252
7253 EXT2 FILE SYSTEM
7254 M:      Jan Kara <jack@suse.com>
7255 L:      linux-ext4@vger.kernel.org
7256 S:      Maintained
7257 F:      Documentation/filesystems/ext2.rst
7258 F:      fs/ext2/
7259 F:      include/linux/ext2*
7260
7261 EXT4 FILE SYSTEM
7262 M:      "Theodore Ts'o" <tytso@mit.edu>
7263 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7264 L:      linux-ext4@vger.kernel.org
7265 S:      Maintained
7266 W:      http://ext4.wiki.kernel.org
7267 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7269 F:      Documentation/filesystems/ext4/
7270 F:      fs/ext4/
7271 F:      include/trace/events/ext4.h
7272
7273 Extended Verification Module (EVM)
7274 M:      Mimi Zohar <zohar@linux.ibm.com>
7275 L:      linux-integrity@vger.kernel.org
7276 S:      Supported
7277 F:      security/integrity/evm/
7278
7279 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7280 M:      Ard Biesheuvel <ardb@kernel.org>
7281 L:      linux-efi@vger.kernel.org
7282 S:      Maintained
7283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7284 F:      Documentation/admin-guide/efi-stub.rst
7285 F:      arch/*/include/asm/efi.h
7286 F:      arch/*/kernel/efi.c
7287 F:      arch/arm/boot/compressed/efi-header.S
7288 F:      arch/arm64/kernel/efi-entry.S
7289 F:      arch/x86/platform/efi/
7290 F:      drivers/firmware/efi/
7291 F:      include/linux/efi*.h
7292
7293 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7294 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7295 M:      Chanwoo Choi <cw00.choi@samsung.com>
7296 L:      linux-kernel@vger.kernel.org
7297 S:      Maintained
7298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7299 F:      Documentation/devicetree/bindings/extcon/
7300 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7301 F:      drivers/extcon/
7302 F:      include/linux/extcon.h
7303 F:      include/linux/extcon/
7304
7305 EXTRA BOOT CONFIG
7306 M:      Masami Hiramatsu <mhiramat@kernel.org>
7307 S:      Maintained
7308 F:      Documentation/admin-guide/bootconfig.rst
7309 F:      fs/proc/bootconfig.c
7310 F:      include/linux/bootconfig.h
7311 F:      lib/bootconfig.c
7312 F:      tools/bootconfig/*
7313 F:      tools/bootconfig/scripts/*
7314
7315 EXYNOS DP DRIVER
7316 M:      Jingoo Han <jingoohan1@gmail.com>
7317 L:      dri-devel@lists.freedesktop.org
7318 S:      Maintained
7319 F:      drivers/gpu/drm/exynos/exynos_dp*
7320
7321 EXYNOS SYSMMU (IOMMU) driver
7322 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7323 L:      iommu@lists.linux-foundation.org
7324 S:      Maintained
7325 F:      drivers/iommu/exynos-iommu.c
7326
7327 F2FS FILE SYSTEM
7328 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7329 M:      Chao Yu <chao@kernel.org>
7330 L:      linux-f2fs-devel@lists.sourceforge.net
7331 S:      Maintained
7332 W:      https://f2fs.wiki.kernel.org/
7333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7334 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7335 F:      Documentation/filesystems/f2fs.rst
7336 F:      fs/f2fs/
7337 F:      include/linux/f2fs_fs.h
7338 F:      include/trace/events/f2fs.h
7339 F:      include/uapi/linux/f2fs.h
7340
7341 F71805F HARDWARE MONITORING DRIVER
7342 M:      Jean Delvare <jdelvare@suse.com>
7343 L:      linux-hwmon@vger.kernel.org
7344 S:      Maintained
7345 F:      Documentation/hwmon/f71805f.rst
7346 F:      drivers/hwmon/f71805f.c
7347
7348 FADDR2LINE
7349 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7350 S:      Maintained
7351 F:      scripts/faddr2line
7352
7353 FAILOVER MODULE
7354 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7355 L:      netdev@vger.kernel.org
7356 S:      Supported
7357 F:      Documentation/networking/failover.rst
7358 F:      include/net/failover.h
7359 F:      net/core/failover.c
7360
7361 FANOTIFY
7362 M:      Jan Kara <jack@suse.cz>
7363 R:      Amir Goldstein <amir73il@gmail.com>
7364 R:      Matthew Bobrowski <repnop@google.com>
7365 L:      linux-fsdevel@vger.kernel.org
7366 S:      Maintained
7367 F:      fs/notify/fanotify/
7368 F:      include/linux/fanotify.h
7369 F:      include/uapi/linux/fanotify.h
7370
7371 FARSYNC SYNCHRONOUS DRIVER
7372 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7373 S:      Supported
7374 W:      http://www.farsite.co.uk/
7375 F:      drivers/net/wan/farsync.*
7376
7377 FAULT INJECTION SUPPORT
7378 M:      Akinobu Mita <akinobu.mita@gmail.com>
7379 S:      Supported
7380 F:      Documentation/fault-injection/
7381 F:      lib/fault-inject.c
7382
7383 FBTFT Framebuffer drivers
7384 L:      dri-devel@lists.freedesktop.org
7385 L:      linux-fbdev@vger.kernel.org
7386 S:      Orphan
7387 F:      drivers/staging/fbtft/
7388
7389 FC0011 TUNER DRIVER
7390 M:      Michael Buesch <m@bues.ch>
7391 L:      linux-media@vger.kernel.org
7392 S:      Maintained
7393 F:      drivers/media/tuners/fc0011.c
7394 F:      drivers/media/tuners/fc0011.h
7395
7396 FC2580 MEDIA DRIVER
7397 M:      Antti Palosaari <crope@iki.fi>
7398 L:      linux-media@vger.kernel.org
7399 S:      Maintained
7400 W:      https://linuxtv.org
7401 W:      http://palosaari.fi/linux/
7402 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7403 T:      git git://linuxtv.org/anttip/media_tree.git
7404 F:      drivers/media/tuners/fc2580*
7405
7406 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7407 M:      Hannes Reinecke <hare@suse.de>
7408 L:      linux-scsi@vger.kernel.org
7409 S:      Supported
7410 W:      www.Open-FCoE.org
7411 F:      drivers/scsi/fcoe/
7412 F:      drivers/scsi/libfc/
7413 F:      include/scsi/fc/
7414 F:      include/scsi/libfc.h
7415 F:      include/scsi/libfcoe.h
7416 F:      include/uapi/scsi/fc/
7417
7418 FILE LOCKING (flock() and fcntl()/lockf())
7419 M:      Jeff Layton <jlayton@kernel.org>
7420 L:      linux-fsdevel@vger.kernel.org
7421 S:      Maintained
7422 F:      fs/fcntl.c
7423 F:      fs/locks.c
7424 F:      include/linux/fcntl.h
7425 F:      include/uapi/linux/fcntl.h
7426
7427 FILESYSTEM DIRECT ACCESS (DAX)
7428 M:      Dan Williams <dan.j.williams@intel.com>
7429 R:      Matthew Wilcox <willy@infradead.org>
7430 R:      Jan Kara <jack@suse.cz>
7431 L:      linux-fsdevel@vger.kernel.org
7432 L:      nvdimm@lists.linux.dev
7433 S:      Supported
7434 F:      fs/dax.c
7435 F:      include/linux/dax.h
7436 F:      include/trace/events/fs_dax.h
7437
7438 FILESYSTEMS (VFS and infrastructure)
7439 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7440 L:      linux-fsdevel@vger.kernel.org
7441 S:      Maintained
7442 F:      fs/*
7443 F:      include/linux/fs.h
7444 F:      include/linux/fs_types.h
7445 F:      include/uapi/linux/fs.h
7446 F:      include/uapi/linux/openat2.h
7447 X:      fs/io-wq.c
7448 X:      fs/io-wq.h
7449 X:      fs/io_uring.c
7450
7451 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7452 M:      Riku Voipio <riku.voipio@iki.fi>
7453 L:      linux-hwmon@vger.kernel.org
7454 S:      Maintained
7455 F:      drivers/hwmon/f75375s.c
7456 F:      include/linux/f75375s.h
7457
7458 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7459 M:      Clemens Ladisch <clemens@ladisch.de>
7460 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7461 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7462 S:      Maintained
7463 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7464 F:      include/uapi/sound/firewire.h
7465 F:      sound/firewire/
7466
7467 FIREWIRE MEDIA DRIVERS (firedtv)
7468 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7469 L:      linux-media@vger.kernel.org
7470 L:      linux1394-devel@lists.sourceforge.net
7471 S:      Maintained
7472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7473 F:      drivers/media/firewire/
7474
7475 FIREWIRE SBP-2 TARGET
7476 M:      Chris Boot <bootc@bootc.net>
7477 L:      linux-scsi@vger.kernel.org
7478 L:      target-devel@vger.kernel.org
7479 L:      linux1394-devel@lists.sourceforge.net
7480 S:      Maintained
7481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7482 F:      drivers/target/sbp/
7483
7484 FIREWIRE SUBSYSTEM
7485 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7486 L:      linux1394-devel@lists.sourceforge.net
7487 S:      Maintained
7488 W:      http://ieee1394.wiki.kernel.org/
7489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7490 F:      drivers/firewire/
7491 F:      include/linux/firewire.h
7492 F:      include/uapi/linux/firewire*.h
7493 F:      tools/firewire/
7494
7495 FIRMWARE FRAMEWORK FOR ARMV8-A
7496 M:      Sudeep Holla <sudeep.holla@arm.com>
7497 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7498 S:      Maintained
7499 F:      drivers/firmware/arm_ffa/
7500 F:      include/linux/arm_ffa.h
7501
7502 FIRMWARE LOADER (request_firmware)
7503 M:      Luis Chamberlain <mcgrof@kernel.org>
7504 L:      linux-kernel@vger.kernel.org
7505 S:      Maintained
7506 F:      Documentation/firmware_class/
7507 F:      drivers/base/firmware_loader/
7508 F:      include/linux/firmware.h
7509
7510 FLEXTIMER FTM-QUADDEC DRIVER
7511 M:      Patrick Havelange <patrick.havelange@essensium.com>
7512 L:      linux-iio@vger.kernel.org
7513 S:      Maintained
7514 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7515 F:      drivers/counter/ftm-quaddec.c
7516
7517 FLOPPY DRIVER
7518 M:      Denis Efremov <efremov@linux.com>
7519 L:      linux-block@vger.kernel.org
7520 S:      Odd Fixes
7521 F:      drivers/block/floppy.c
7522
7523 FLYSKY FSIA6B RC RECEIVER
7524 M:      Markus Koch <markus@notsyncing.net>
7525 L:      linux-input@vger.kernel.org
7526 S:      Maintained
7527 F:      drivers/input/joystick/fsia6b.c
7528
7529 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7530 M:      Geoffrey D. Bennett <g@b4.vu>
7531 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7532 S:      Maintained
7533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7534 F:      sound/usb/mixer_scarlett_gen2.c
7535
7536 FORCEDETH GIGABIT ETHERNET DRIVER
7537 M:      Rain River <rain.1986.08.12@gmail.com>
7538 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7539 L:      netdev@vger.kernel.org
7540 S:      Maintained
7541 F:      drivers/net/ethernet/nvidia/*
7542
7543 FORTIFY_SOURCE
7544 M:      Kees Cook <keescook@chromium.org>
7545 L:      linux-hardening@vger.kernel.org
7546 S:      Supported
7547 F:      include/linux/fortify-string.h
7548 F:      lib/test_fortify/*
7549 F:      scripts/test_fortify.sh
7550 K:      \b__NO_FORTIFY\b
7551
7552 FPGA DFL DRIVERS
7553 M:      Wu Hao <hao.wu@intel.com>
7554 R:      Tom Rix <trix@redhat.com>
7555 L:      linux-fpga@vger.kernel.org
7556 S:      Maintained
7557 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7558 F:      Documentation/fpga/dfl.rst
7559 F:      drivers/fpga/dfl*
7560 F:      drivers/uio/uio_dfl.c
7561 F:      include/linux/dfl.h
7562 F:      include/uapi/linux/fpga-dfl.h
7563
7564 FPGA MANAGER FRAMEWORK
7565 M:      Moritz Fischer <mdf@kernel.org>
7566 M:      Wu Hao <hao.wu@intel.com>
7567 M:      Xu Yilun <yilun.xu@intel.com>
7568 R:      Tom Rix <trix@redhat.com>
7569 L:      linux-fpga@vger.kernel.org
7570 S:      Maintained
7571 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7573 F:      Documentation/devicetree/bindings/fpga/
7574 F:      Documentation/driver-api/fpga/
7575 F:      Documentation/fpga/
7576 F:      drivers/fpga/
7577 F:      include/linux/fpga/
7578
7579 FPU EMULATOR
7580 M:      Bill Metzenthen <billm@melbpc.org.au>
7581 S:      Maintained
7582 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7583 F:      arch/x86/math-emu/
7584
7585 FRAMEBUFFER LAYER
7586 L:      dri-devel@lists.freedesktop.org
7587 L:      linux-fbdev@vger.kernel.org
7588 S:      Orphan
7589 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7590 T:      git git://anongit.freedesktop.org/drm/drm-misc
7591 F:      Documentation/fb/
7592 F:      drivers/video/
7593 F:      include/linux/fb.h
7594 F:      include/uapi/linux/fb.h
7595 F:      include/uapi/video/
7596 F:      include/video/
7597
7598 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7599 M:      Horia Geantă <horia.geanta@nxp.com>
7600 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7601 M:      Gaurav Jain <gaurav.jain@nxp.com>
7602 L:      linux-crypto@vger.kernel.org
7603 S:      Maintained
7604 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7605 F:      drivers/crypto/caam/
7606
7607 FREESCALE COLDFIRE M5441X MMC DRIVER
7608 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7609 L:      linux-mmc@vger.kernel.org
7610 S:      Maintained
7611 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7612 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7613
7614 FREESCALE DIU FRAMEBUFFER DRIVER
7615 M:      Timur Tabi <timur@kernel.org>
7616 L:      linux-fbdev@vger.kernel.org
7617 S:      Maintained
7618 F:      drivers/video/fbdev/fsl-diu-fb.*
7619
7620 FREESCALE DMA DRIVER
7621 M:      Li Yang <leoyang.li@nxp.com>
7622 M:      Zhang Wei <zw@zh-kernel.org>
7623 L:      linuxppc-dev@lists.ozlabs.org
7624 S:      Maintained
7625 F:      drivers/dma/fsldma.*
7626
7627 FREESCALE DSPI DRIVER
7628 M:      Vladimir Oltean <olteanv@gmail.com>
7629 L:      linux-spi@vger.kernel.org
7630 S:      Maintained
7631 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7632 F:      drivers/spi/spi-fsl-dspi.c
7633 F:      include/linux/spi/spi-fsl-dspi.h
7634
7635 FREESCALE ENETC ETHERNET DRIVERS
7636 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7637 L:      netdev@vger.kernel.org
7638 S:      Maintained
7639 F:      drivers/net/ethernet/freescale/enetc/
7640
7641 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7642 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7643 L:      netdev@vger.kernel.org
7644 S:      Maintained
7645 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7646 F:      drivers/net/ethernet/freescale/gianfar*
7647
7648 FREESCALE GPMI NAND DRIVER
7649 M:      Han Xu <han.xu@nxp.com>
7650 L:      linux-mtd@lists.infradead.org
7651 S:      Maintained
7652 F:      drivers/mtd/nand/raw/gpmi-nand/*
7653
7654 FREESCALE I2C CPM DRIVER
7655 M:      Jochen Friedrich <jochen@scram.de>
7656 L:      linuxppc-dev@lists.ozlabs.org
7657 L:      linux-i2c@vger.kernel.org
7658 S:      Maintained
7659 F:      drivers/i2c/busses/i2c-cpm.c
7660
7661 FREESCALE IMX / MXC FEC DRIVER
7662 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7663 L:      netdev@vger.kernel.org
7664 S:      Maintained
7665 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
7666 F:      drivers/net/ethernet/freescale/fec.h
7667 F:      drivers/net/ethernet/freescale/fec_main.c
7668 F:      drivers/net/ethernet/freescale/fec_ptp.c
7669
7670 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7671 M:      Sascha Hauer <s.hauer@pengutronix.de>
7672 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7673 L:      linux-fbdev@vger.kernel.org
7674 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7675 S:      Maintained
7676 F:      drivers/video/fbdev/imxfb.c
7677 F:      include/linux/platform_data/video-imxfb.h
7678
7679 FREESCALE IMX DDR PMU DRIVER
7680 M:      Frank Li <Frank.li@nxp.com>
7681 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7682 S:      Maintained
7683 F:      Documentation/admin-guide/perf/imx-ddr.rst
7684 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7685 F:      drivers/perf/fsl_imx8_ddr_perf.c
7686
7687 FREESCALE IMX I2C DRIVER
7688 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7689 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7690 L:      linux-i2c@vger.kernel.org
7691 S:      Maintained
7692 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7693 F:      drivers/i2c/busses/i2c-imx.c
7694
7695 FREESCALE IMX LPI2C DRIVER
7696 M:      Dong Aisheng <aisheng.dong@nxp.com>
7697 L:      linux-i2c@vger.kernel.org
7698 L:      linux-imx@nxp.com
7699 S:      Maintained
7700 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7701 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7702
7703 FREESCALE MPC I2C DRIVER
7704 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7705 L:      linux-i2c@vger.kernel.org
7706 S:      Maintained
7707 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7708 F:      drivers/i2c/busses/i2c-mpc.c
7709
7710 FREESCALE QORIQ DPAA ETHERNET DRIVER
7711 M:      Madalin Bucur <madalin.bucur@nxp.com>
7712 L:      netdev@vger.kernel.org
7713 S:      Maintained
7714 F:      drivers/net/ethernet/freescale/dpaa
7715
7716 FREESCALE QORIQ DPAA FMAN DRIVER
7717 M:      Madalin Bucur <madalin.bucur@nxp.com>
7718 L:      netdev@vger.kernel.org
7719 S:      Maintained
7720 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7721 F:      drivers/net/ethernet/freescale/fman
7722
7723 FREESCALE QORIQ PTP CLOCK DRIVER
7724 M:      Yangbo Lu <yangbo.lu@nxp.com>
7725 L:      netdev@vger.kernel.org
7726 S:      Maintained
7727 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7728 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7729 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7730 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7731 F:      drivers/ptp/ptp_qoriq.c
7732 F:      drivers/ptp/ptp_qoriq_debugfs.c
7733 F:      include/linux/fsl/ptp_qoriq.h
7734
7735 FREESCALE QUAD SPI DRIVER
7736 M:      Han Xu <han.xu@nxp.com>
7737 L:      linux-spi@vger.kernel.org
7738 S:      Maintained
7739 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7740 F:      drivers/spi/spi-fsl-qspi.c
7741
7742 FREESCALE QUICC ENGINE LIBRARY
7743 M:      Qiang Zhao <qiang.zhao@nxp.com>
7744 L:      linuxppc-dev@lists.ozlabs.org
7745 S:      Maintained
7746 F:      drivers/soc/fsl/qe/
7747 F:      include/soc/fsl/*qe*.h
7748 F:      include/soc/fsl/*ucc*.h
7749
7750 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7751 M:      Li Yang <leoyang.li@nxp.com>
7752 L:      netdev@vger.kernel.org
7753 L:      linuxppc-dev@lists.ozlabs.org
7754 S:      Maintained
7755 F:      drivers/net/ethernet/freescale/ucc_geth*
7756
7757 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7758 M:      Zhao Qiang <qiang.zhao@nxp.com>
7759 L:      netdev@vger.kernel.org
7760 L:      linuxppc-dev@lists.ozlabs.org
7761 S:      Maintained
7762 F:      drivers/net/wan/fsl_ucc_hdlc*
7763
7764 FREESCALE QUICC ENGINE UCC UART DRIVER
7765 M:      Timur Tabi <timur@kernel.org>
7766 L:      linuxppc-dev@lists.ozlabs.org
7767 S:      Maintained
7768 F:      drivers/tty/serial/ucc_uart.c
7769
7770 FREESCALE SOC DRIVERS
7771 M:      Li Yang <leoyang.li@nxp.com>
7772 L:      linuxppc-dev@lists.ozlabs.org
7773 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7774 S:      Maintained
7775 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7776 F:      Documentation/devicetree/bindings/soc/fsl/
7777 F:      drivers/soc/fsl/
7778 F:      include/linux/fsl/
7779
7780 FREESCALE SOC FS_ENET DRIVER
7781 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7782 L:      linuxppc-dev@lists.ozlabs.org
7783 L:      netdev@vger.kernel.org
7784 S:      Maintained
7785 F:      drivers/net/ethernet/freescale/fs_enet/
7786 F:      include/linux/fs_enet_pd.h
7787
7788 FREESCALE SOC SOUND DRIVERS
7789 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7790 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7791 R:      Fabio Estevam <festevam@gmail.com>
7792 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7793 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7794 L:      linuxppc-dev@lists.ozlabs.org
7795 S:      Maintained
7796 F:      sound/soc/fsl/fsl*
7797 F:      sound/soc/fsl/imx*
7798 F:      sound/soc/fsl/mpc8610_hpcd.c
7799
7800 FREESCALE USB PERIPHERAL DRIVERS
7801 M:      Li Yang <leoyang.li@nxp.com>
7802 L:      linux-usb@vger.kernel.org
7803 L:      linuxppc-dev@lists.ozlabs.org
7804 S:      Maintained
7805 F:      drivers/usb/gadget/udc/fsl*
7806
7807 FREESCALE USB PHY DRIVER
7808 M:      Ran Wang <ran.wang_1@nxp.com>
7809 L:      linux-usb@vger.kernel.org
7810 L:      linuxppc-dev@lists.ozlabs.org
7811 S:      Maintained
7812 F:      drivers/usb/phy/phy-fsl-usb*
7813
7814 FREEVXFS FILESYSTEM
7815 M:      Christoph Hellwig <hch@infradead.org>
7816 S:      Maintained
7817 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7818 F:      fs/freevxfs/
7819
7820 FREEZER
7821 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7822 M:      Pavel Machek <pavel@ucw.cz>
7823 L:      linux-pm@vger.kernel.org
7824 S:      Supported
7825 F:      Documentation/power/freezing-of-tasks.rst
7826 F:      include/linux/freezer.h
7827 F:      kernel/freezer.c
7828
7829 FRONTSWAP API
7830 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7831 L:      linux-kernel@vger.kernel.org
7832 S:      Maintained
7833 F:      include/linux/frontswap.h
7834 F:      mm/frontswap.c
7835
7836 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7837 M:      David Howells <dhowells@redhat.com>
7838 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7839 S:      Supported
7840 F:      Documentation/filesystems/caching/
7841 F:      fs/fscache/
7842 F:      include/linux/fscache*.h
7843
7844 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7845 M:      Theodore Y. Ts'o <tytso@mit.edu>
7846 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7847 M:      Eric Biggers <ebiggers@kernel.org>
7848 L:      linux-fscrypt@vger.kernel.org
7849 S:      Supported
7850 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7851 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7852 F:      Documentation/filesystems/fscrypt.rst
7853 F:      fs/crypto/
7854 F:      include/linux/fscrypt*.h
7855 F:      include/uapi/linux/fscrypt.h
7856
7857 FSI SUBSYSTEM
7858 M:      Jeremy Kerr <jk@ozlabs.org>
7859 M:      Joel Stanley <joel@jms.id.au>
7860 R:      Alistar Popple <alistair@popple.id.au>
7861 R:      Eddie James <eajames@linux.ibm.com>
7862 L:      linux-fsi@lists.ozlabs.org
7863 S:      Supported
7864 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7866 F:      drivers/fsi/
7867 F:      include/linux/fsi*.h
7868 F:      include/trace/events/fsi*.h
7869
7870 FSI-ATTACHED I2C DRIVER
7871 M:      Eddie James <eajames@linux.ibm.com>
7872 L:      linux-i2c@vger.kernel.org
7873 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7874 S:      Maintained
7875 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7876 F:      drivers/i2c/busses/i2c-fsi.c
7877
7878 FSI-ATTACHED SPI DRIVER
7879 M:      Eddie James <eajames@linux.ibm.com>
7880 L:      linux-spi@vger.kernel.org
7881 S:      Maintained
7882 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7883 F:      drivers/spi/spi-fsi.c
7884
7885 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7886 M:      Jan Kara <jack@suse.cz>
7887 R:      Amir Goldstein <amir73il@gmail.com>
7888 L:      linux-fsdevel@vger.kernel.org
7889 S:      Maintained
7890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7891 F:      fs/notify/
7892 F:      include/linux/fsnotify*.h
7893
7894 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7895 M:      Eric Biggers <ebiggers@kernel.org>
7896 M:      Theodore Y. Ts'o <tytso@mit.edu>
7897 L:      linux-fscrypt@vger.kernel.org
7898 S:      Supported
7899 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7900 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7901 F:      Documentation/filesystems/fsverity.rst
7902 F:      fs/verity/
7903 F:      include/linux/fsverity.h
7904 F:      include/uapi/linux/fsverity.h
7905
7906 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7907 M:      Michael Zaidman <michael.zaidman@gmail.com>
7908 L:      linux-i2c@vger.kernel.org
7909 L:      linux-input@vger.kernel.org
7910 S:      Maintained
7911 F:      drivers/hid/hid-ft260.c
7912
7913 FUJITSU LAPTOP EXTRAS
7914 M:      Jonathan Woithe <jwoithe@just42.net>
7915 L:      platform-driver-x86@vger.kernel.org
7916 S:      Maintained
7917 F:      drivers/platform/x86/fujitsu-laptop.c
7918
7919 FUJITSU M-5MO LS CAMERA ISP DRIVER
7920 M:      Kyungmin Park <kyungmin.park@samsung.com>
7921 M:      Heungjun Kim <riverful.kim@samsung.com>
7922 L:      linux-media@vger.kernel.org
7923 S:      Maintained
7924 F:      drivers/media/i2c/m5mols/
7925 F:      include/media/i2c/m5mols.h
7926
7927 FUJITSU TABLET EXTRAS
7928 M:      Robert Gerlach <khnz@gmx.de>
7929 L:      platform-driver-x86@vger.kernel.org
7930 S:      Maintained
7931 F:      drivers/platform/x86/fujitsu-tablet.c
7932
7933 FUSE: FILESYSTEM IN USERSPACE
7934 M:      Miklos Szeredi <miklos@szeredi.hu>
7935 L:      linux-fsdevel@vger.kernel.org
7936 S:      Maintained
7937 W:      https://github.com/libfuse/
7938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7939 F:      Documentation/filesystems/fuse.rst
7940 F:      fs/fuse/
7941 F:      include/uapi/linux/fuse.h
7942
7943 FUTEX SUBSYSTEM
7944 M:      Thomas Gleixner <tglx@linutronix.de>
7945 M:      Ingo Molnar <mingo@redhat.com>
7946 R:      Peter Zijlstra <peterz@infradead.org>
7947 R:      Darren Hart <dvhart@infradead.org>
7948 R:      Davidlohr Bueso <dave@stgolabs.net>
7949 R:      André Almeida <andrealmeid@collabora.com>
7950 L:      linux-kernel@vger.kernel.org
7951 S:      Maintained
7952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7953 F:      Documentation/locking/*futex*
7954 F:      include/asm-generic/futex.h
7955 F:      include/linux/futex.h
7956 F:      include/uapi/linux/futex.h
7957 F:      kernel/futex/*
7958 F:      tools/perf/bench/futex*
7959 F:      tools/testing/selftests/futex/
7960
7961 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7962 M:      Tim Harvey <tharvey@gateworks.com>
7963 M:      Robert Jones <rjones@gateworks.com>
7964 S:      Maintained
7965 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7966 F:      drivers/mfd/gateworks-gsc.c
7967 F:      include/linux/mfd/gsc.h
7968 F:      Documentation/hwmon/gsc-hwmon.rst
7969 F:      drivers/hwmon/gsc-hwmon.c
7970 F:      include/linux/platform_data/gsc_hwmon.h
7971
7972 GCC PLUGINS
7973 M:      Kees Cook <keescook@chromium.org>
7974 L:      linux-hardening@vger.kernel.org
7975 S:      Maintained
7976 F:      Documentation/kbuild/gcc-plugins.rst
7977 F:      scripts/Makefile.gcc-plugins
7978 F:      scripts/gcc-plugins/
7979
7980 GCOV BASED KERNEL PROFILING
7981 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7982 S:      Maintained
7983 F:      Documentation/dev-tools/gcov.rst
7984 F:      kernel/gcov/
7985
7986 GDB KERNEL DEBUGGING HELPER SCRIPTS
7987 M:      Jan Kiszka <jan.kiszka@siemens.com>
7988 M:      Kieran Bingham <kbingham@kernel.org>
7989 S:      Supported
7990 F:      scripts/gdb/
7991
7992 GEMINI CRYPTO DRIVER
7993 M:      Corentin Labbe <clabbe@baylibre.com>
7994 L:      linux-crypto@vger.kernel.org
7995 S:      Maintained
7996 F:      drivers/crypto/gemini/
7997
7998 GEMTEK FM RADIO RECEIVER DRIVER
7999 M:      Hans Verkuil <hverkuil@xs4all.nl>
8000 L:      linux-media@vger.kernel.org
8001 S:      Maintained
8002 W:      https://linuxtv.org
8003 T:      git git://linuxtv.org/media_tree.git
8004 F:      drivers/media/radio/radio-gemtek*
8005
8006 GENERIC ARCHITECTURE TOPOLOGY
8007 M:      Sudeep Holla <sudeep.holla@arm.com>
8008 L:      linux-kernel@vger.kernel.org
8009 S:      Maintained
8010 F:      drivers/base/arch_topology.c
8011 F:      include/linux/arch_topology.h
8012
8013 GENERIC ENTRY CODE
8014 M:      Thomas Gleixner <tglx@linutronix.de>
8015 M:      Peter Zijlstra <peterz@infradead.org>
8016 M:      Andy Lutomirski <luto@kernel.org>
8017 L:      linux-kernel@vger.kernel.org
8018 S:      Maintained
8019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
8020 F:      include/linux/entry-common.h
8021 F:      include/linux/entry-kvm.h
8022 F:      kernel/entry/
8023
8024 GENERIC GPIO I2C DRIVER
8025 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8026 S:      Supported
8027 F:      drivers/i2c/busses/i2c-gpio.c
8028 F:      include/linux/platform_data/i2c-gpio.h
8029
8030 GENERIC GPIO I2C MULTIPLEXER DRIVER
8031 M:      Peter Korsgaard <peter.korsgaard@barco.com>
8032 L:      linux-i2c@vger.kernel.org
8033 S:      Supported
8034 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
8035 F:      drivers/i2c/muxes/i2c-mux-gpio.c
8036 F:      include/linux/platform_data/i2c-mux-gpio.h
8037
8038 GENERIC HDLC (WAN) DRIVERS
8039 M:      Krzysztof Halasa <khc@pm.waw.pl>
8040 S:      Maintained
8041 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
8042 F:      drivers/net/wan/c101.c
8043 F:      drivers/net/wan/hd6457*
8044 F:      drivers/net/wan/hdlc*
8045 F:      drivers/net/wan/n2.c
8046 F:      drivers/net/wan/pc300too.c
8047 F:      drivers/net/wan/pci200syn.c
8048 F:      drivers/net/wan/wanxl*
8049
8050 GENERIC INCLUDE/ASM HEADER FILES
8051 M:      Arnd Bergmann <arnd@arndb.de>
8052 L:      linux-arch@vger.kernel.org
8053 S:      Maintained
8054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8055 F:      include/asm-generic/
8056 F:      include/uapi/asm-generic/
8057
8058 GENERIC PHY FRAMEWORK
8059 M:      Kishon Vijay Abraham I <kishon@ti.com>
8060 M:      Vinod Koul <vkoul@kernel.org>
8061 L:      linux-phy@lists.infradead.org
8062 S:      Supported
8063 Q:      https://patchwork.kernel.org/project/linux-phy/list/
8064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8065 F:      Documentation/devicetree/bindings/phy/
8066 F:      drivers/phy/
8067 F:      include/linux/phy/
8068
8069 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8070 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8071 S:      Supported
8072 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
8073
8074 GENERIC PM DOMAINS
8075 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8076 M:      Kevin Hilman <khilman@kernel.org>
8077 M:      Ulf Hansson <ulf.hansson@linaro.org>
8078 L:      linux-pm@vger.kernel.org
8079 S:      Supported
8080 F:      Documentation/devicetree/bindings/power/power?domain*
8081 F:      drivers/base/power/domain*.c
8082 F:      include/linux/pm_domain.h
8083
8084 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8085 M:      Eugen Hristev <eugen.hristev@microchip.com>
8086 L:      linux-input@vger.kernel.org
8087 S:      Maintained
8088 F:      drivers/input/touchscreen/resistive-adc-touch.c
8089
8090 GENERIC STRING LIBRARY
8091 R:      Andy Shevchenko <andy@kernel.org>
8092 S:      Maintained
8093 F:      lib/string.c
8094 F:      lib/string_helpers.c
8095 F:      lib/test_string.c
8096 F:      lib/test-string_helpers.c
8097
8098 GENERIC UIO DRIVER FOR PCI DEVICES
8099 M:      "Michael S. Tsirkin" <mst@redhat.com>
8100 L:      kvm@vger.kernel.org
8101 S:      Supported
8102 F:      drivers/uio/uio_pci_generic.c
8103
8104 GENERIC VDSO LIBRARY
8105 M:      Andy Lutomirski <luto@kernel.org>
8106 M:      Thomas Gleixner <tglx@linutronix.de>
8107 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
8108 L:      linux-kernel@vger.kernel.org
8109 S:      Maintained
8110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8111 F:      include/asm-generic/vdso/vsyscall.h
8112 F:      include/vdso/
8113 F:      kernel/time/vsyscall.c
8114 F:      lib/vdso/
8115
8116 GENWQE (IBM Generic Workqueue Card)
8117 M:      Frank Haverkamp <haver@linux.ibm.com>
8118 S:      Supported
8119 F:      drivers/misc/genwqe/
8120
8121 GET_MAINTAINER SCRIPT
8122 M:      Joe Perches <joe@perches.com>
8123 S:      Maintained
8124 F:      scripts/get_maintainer.pl
8125
8126 GFS2 FILE SYSTEM
8127 M:      Bob Peterson <rpeterso@redhat.com>
8128 M:      Andreas Gruenbacher <agruenba@redhat.com>
8129 L:      cluster-devel@redhat.com
8130 S:      Supported
8131 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8133 F:      Documentation/filesystems/gfs2*
8134 F:      fs/gfs2/
8135 F:      include/uapi/linux/gfs2_ondisk.h
8136
8137 GIGABYTE WMI DRIVER
8138 M:      Thomas Weißschuh <thomas@weissschuh.net>
8139 L:      platform-driver-x86@vger.kernel.org
8140 S:      Maintained
8141 F:      drivers/platform/x86/gigabyte-wmi.c
8142
8143 GNSS SUBSYSTEM
8144 M:      Johan Hovold <johan@kernel.org>
8145 S:      Maintained
8146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8147 F:      Documentation/ABI/testing/sysfs-class-gnss
8148 F:      Documentation/devicetree/bindings/gnss/
8149 F:      drivers/gnss/
8150 F:      include/linux/gnss.h
8151
8152 GO7007 MPEG CODEC
8153 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8154 L:      linux-media@vger.kernel.org
8155 S:      Maintained
8156 F:      drivers/media/usb/go7007/
8157
8158 GOODIX TOUCHSCREEN
8159 M:      Bastien Nocera <hadess@hadess.net>
8160 M:      Hans de Goede <hdegoede@redhat.com>
8161 L:      linux-input@vger.kernel.org
8162 S:      Maintained
8163 F:      drivers/input/touchscreen/goodix*
8164
8165 GOOGLE ETHERNET DRIVERS
8166 M:      Jeroen de Borst <jeroendb@google.com>
8167 R:      Catherine Sullivan <csully@google.com>
8168 R:      David Awogbemila <awogbemila@google.com>
8169 L:      netdev@vger.kernel.org
8170 S:      Supported
8171 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8172 F:      drivers/net/ethernet/google
8173
8174 GPD POCKET FAN DRIVER
8175 M:      Hans de Goede <hdegoede@redhat.com>
8176 L:      platform-driver-x86@vger.kernel.org
8177 S:      Maintained
8178 F:      drivers/platform/x86/gpd-pocket-fan.c
8179
8180 GPIO ACPI SUPPORT
8181 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8182 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8183 L:      linux-gpio@vger.kernel.org
8184 L:      linux-acpi@vger.kernel.org
8185 S:      Maintained
8186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8187 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8188 F:      drivers/gpio/gpiolib-acpi.c
8189 F:      drivers/gpio/gpiolib-acpi.h
8190
8191 GPIO AGGREGATOR
8192 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8193 L:      linux-gpio@vger.kernel.org
8194 S:      Supported
8195 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8196 F:      drivers/gpio/gpio-aggregator.c
8197
8198 GPIO IR Transmitter
8199 M:      Sean Young <sean@mess.org>
8200 L:      linux-media@vger.kernel.org
8201 S:      Maintained
8202 F:      drivers/media/rc/gpio-ir-tx.c
8203
8204 GPIO MOCKUP DRIVER
8205 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8206 L:      linux-gpio@vger.kernel.org
8207 S:      Maintained
8208 F:      drivers/gpio/gpio-mockup.c
8209 F:      tools/testing/selftests/gpio/
8210
8211 GPIO REGMAP
8212 R:      Michael Walle <michael@walle.cc>
8213 S:      Maintained
8214 F:      drivers/gpio/gpio-regmap.c
8215 F:      include/linux/gpio/regmap.h
8216
8217 GPIO SUBSYSTEM
8218 M:      Linus Walleij <linus.walleij@linaro.org>
8219 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8220 L:      linux-gpio@vger.kernel.org
8221 S:      Maintained
8222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
8223 F:      Documentation/ABI/obsolete/sysfs-gpio
8224 F:      Documentation/ABI/testing/gpio-cdev
8225 F:      Documentation/admin-guide/gpio/
8226 F:      Documentation/devicetree/bindings/gpio/
8227 F:      Documentation/driver-api/gpio/
8228 F:      drivers/gpio/
8229 F:      include/asm-generic/gpio.h
8230 F:      include/linux/gpio.h
8231 F:      include/linux/gpio/
8232 F:      include/linux/of_gpio.h
8233 F:      include/uapi/linux/gpio.h
8234 F:      tools/gpio/
8235
8236 GRE DEMULTIPLEXER DRIVER
8237 M:      Dmitry Kozlov <xeb@mail.ru>
8238 L:      netdev@vger.kernel.org
8239 S:      Maintained
8240 F:      include/net/gre.h
8241 F:      net/ipv4/gre_demux.c
8242 F:      net/ipv4/gre_offload.c
8243
8244 GRETH 10/100/1G Ethernet MAC device driver
8245 M:      Andreas Larsson <andreas@gaisler.com>
8246 L:      netdev@vger.kernel.org
8247 S:      Maintained
8248 F:      drivers/net/ethernet/aeroflex/
8249
8250 GREYBUS AUDIO PROTOCOLS DRIVERS
8251 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8252 M:      Mark Greer <mgreer@animalcreek.com>
8253 S:      Maintained
8254 F:      drivers/staging/greybus/audio_apbridgea.c
8255 F:      drivers/staging/greybus/audio_apbridgea.h
8256 F:      drivers/staging/greybus/audio_codec.c
8257 F:      drivers/staging/greybus/audio_codec.h
8258 F:      drivers/staging/greybus/audio_gb.c
8259 F:      drivers/staging/greybus/audio_manager.c
8260 F:      drivers/staging/greybus/audio_manager.h
8261 F:      drivers/staging/greybus/audio_manager_module.c
8262 F:      drivers/staging/greybus/audio_manager_private.h
8263 F:      drivers/staging/greybus/audio_manager_sysfs.c
8264 F:      drivers/staging/greybus/audio_module.c
8265 F:      drivers/staging/greybus/audio_topology.c
8266
8267 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8268 M:      Viresh Kumar <vireshk@kernel.org>
8269 S:      Maintained
8270 F:      drivers/staging/greybus/authentication.c
8271 F:      drivers/staging/greybus/bootrom.c
8272 F:      drivers/staging/greybus/firmware.h
8273 F:      drivers/staging/greybus/fw-core.c
8274 F:      drivers/staging/greybus/fw-download.c
8275 F:      drivers/staging/greybus/fw-management.c
8276 F:      drivers/staging/greybus/greybus_authentication.h
8277 F:      drivers/staging/greybus/greybus_firmware.h
8278 F:      drivers/staging/greybus/hid.c
8279 F:      drivers/staging/greybus/i2c.c
8280 F:      drivers/staging/greybus/spi.c
8281 F:      drivers/staging/greybus/spilib.c
8282 F:      drivers/staging/greybus/spilib.h
8283
8284 GREYBUS LOOPBACK DRIVER
8285 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8286 S:      Maintained
8287 F:      drivers/staging/greybus/loopback.c
8288
8289 GREYBUS PLATFORM DRIVERS
8290 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8291 S:      Maintained
8292 F:      drivers/staging/greybus/arche-apb-ctrl.c
8293 F:      drivers/staging/greybus/arche-platform.c
8294 F:      drivers/staging/greybus/arche_platform.h
8295
8296 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8297 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8298 S:      Maintained
8299 F:      drivers/staging/greybus/gpio.c
8300 F:      drivers/staging/greybus/light.c
8301 F:      drivers/staging/greybus/power_supply.c
8302 F:      drivers/staging/greybus/sdio.c
8303 F:      drivers/staging/greybus/spi.c
8304 F:      drivers/staging/greybus/spilib.c
8305
8306 GREYBUS SUBSYSTEM
8307 M:      Johan Hovold <johan@kernel.org>
8308 M:      Alex Elder <elder@kernel.org>
8309 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8310 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8311 S:      Maintained
8312 F:      drivers/greybus/
8313 F:      drivers/staging/greybus/
8314 F:      include/linux/greybus.h
8315 F:      include/linux/greybus/
8316
8317 GREYBUS UART PROTOCOLS DRIVERS
8318 M:      David Lin <dtwlin@gmail.com>
8319 S:      Maintained
8320 F:      drivers/staging/greybus/log.c
8321 F:      drivers/staging/greybus/uart.c
8322
8323 GS1662 VIDEO SERIALIZER
8324 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8325 L:      linux-media@vger.kernel.org
8326 S:      Maintained
8327 T:      git git://linuxtv.org/media_tree.git
8328 F:      drivers/media/spi/gs1662.c
8329
8330 GSPCA FINEPIX SUBDRIVER
8331 M:      Frank Zago <frank@zago.net>
8332 L:      linux-media@vger.kernel.org
8333 S:      Maintained
8334 T:      git git://linuxtv.org/media_tree.git
8335 F:      drivers/media/usb/gspca/finepix.c
8336
8337 GSPCA GL860 SUBDRIVER
8338 M:      Olivier Lorin <o.lorin@laposte.net>
8339 L:      linux-media@vger.kernel.org
8340 S:      Maintained
8341 T:      git git://linuxtv.org/media_tree.git
8342 F:      drivers/media/usb/gspca/gl860/
8343
8344 GSPCA M5602 SUBDRIVER
8345 M:      Erik Andren <erik.andren@gmail.com>
8346 L:      linux-media@vger.kernel.org
8347 S:      Maintained
8348 T:      git git://linuxtv.org/media_tree.git
8349 F:      drivers/media/usb/gspca/m5602/
8350
8351 GSPCA PAC207 SONIXB SUBDRIVER
8352 M:      Hans Verkuil <hverkuil@xs4all.nl>
8353 L:      linux-media@vger.kernel.org
8354 S:      Odd Fixes
8355 T:      git git://linuxtv.org/media_tree.git
8356 F:      drivers/media/usb/gspca/pac207.c
8357
8358 GSPCA SN9C20X SUBDRIVER
8359 M:      Brian Johnson <brijohn@gmail.com>
8360 L:      linux-media@vger.kernel.org
8361 S:      Maintained
8362 T:      git git://linuxtv.org/media_tree.git
8363 F:      drivers/media/usb/gspca/sn9c20x.c
8364
8365 GSPCA T613 SUBDRIVER
8366 M:      Leandro Costantino <lcostantino@gmail.com>
8367 L:      linux-media@vger.kernel.org
8368 S:      Maintained
8369 T:      git git://linuxtv.org/media_tree.git
8370 F:      drivers/media/usb/gspca/t613.c
8371
8372 GSPCA USB WEBCAM DRIVER
8373 M:      Hans Verkuil <hverkuil@xs4all.nl>
8374 L:      linux-media@vger.kernel.org
8375 S:      Odd Fixes
8376 T:      git git://linuxtv.org/media_tree.git
8377 F:      drivers/media/usb/gspca/
8378
8379 GTP (GPRS Tunneling Protocol)
8380 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8381 M:      Harald Welte <laforge@gnumonks.org>
8382 L:      osmocom-net-gprs@lists.osmocom.org
8383 S:      Maintained
8384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8385 F:      drivers/net/gtp.c
8386
8387 GUID PARTITION TABLE (GPT)
8388 M:      Davidlohr Bueso <dave@stgolabs.net>
8389 L:      linux-efi@vger.kernel.org
8390 S:      Maintained
8391 F:      block/partitions/efi.*
8392
8393 H8/300 ARCHITECTURE
8394 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
8395 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8396 S:      Maintained
8397 W:      http://uclinux-h8.sourceforge.jp
8398 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8399 F:      arch/h8300/
8400 F:      drivers/clk/h8300/
8401 F:      drivers/clocksource/h8300_*.c
8402 F:      drivers/irqchip/irq-renesas-h8*.c
8403
8404 HABANALABS PCI DRIVER
8405 M:      Oded Gabbay <ogabbay@kernel.org>
8406 S:      Supported
8407 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8408 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8409 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8410 F:      drivers/misc/habanalabs/
8411 F:      include/uapi/misc/habanalabs.h
8412
8413 HACKRF MEDIA DRIVER
8414 M:      Antti Palosaari <crope@iki.fi>
8415 L:      linux-media@vger.kernel.org
8416 S:      Maintained
8417 W:      https://linuxtv.org
8418 W:      http://palosaari.fi/linux/
8419 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8420 T:      git git://linuxtv.org/anttip/media_tree.git
8421 F:      drivers/media/usb/hackrf/
8422
8423 HANTRO VPU CODEC DRIVER
8424 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8425 M:      Philipp Zabel <p.zabel@pengutronix.de>
8426 L:      linux-media@vger.kernel.org
8427 L:      linux-rockchip@lists.infradead.org
8428 S:      Maintained
8429 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8430 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8431 F:      drivers/staging/media/hantro/
8432
8433 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8434 M:      Frank Seidel <frank@f-seidel.de>
8435 L:      platform-driver-x86@vger.kernel.org
8436 S:      Maintained
8437 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8438 F:      drivers/platform/x86/hdaps.c
8439
8440 HARDWARE MONITORING
8441 M:      Jean Delvare <jdelvare@suse.com>
8442 M:      Guenter Roeck <linux@roeck-us.net>
8443 L:      linux-hwmon@vger.kernel.org
8444 S:      Maintained
8445 W:      http://hwmon.wiki.kernel.org/
8446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8447 F:      Documentation/ABI/testing/sysfs-class-hwmon
8448 F:      Documentation/devicetree/bindings/hwmon/
8449 F:      Documentation/hwmon/
8450 F:      drivers/hwmon/
8451 F:      include/linux/hwmon*.h
8452 F:      include/trace/events/hwmon*.h
8453 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8454
8455 HARDWARE RANDOM NUMBER GENERATOR CORE
8456 M:      Matt Mackall <mpm@selenic.com>
8457 M:      Herbert Xu <herbert@gondor.apana.org.au>
8458 L:      linux-crypto@vger.kernel.org
8459 S:      Odd fixes
8460 F:      Documentation/admin-guide/hw_random.rst
8461 F:      Documentation/devicetree/bindings/rng/
8462 F:      drivers/char/hw_random/
8463 F:      include/linux/hw_random.h
8464
8465 HARDWARE SPINLOCK CORE
8466 M:      Ohad Ben-Cohen <ohad@wizery.com>
8467 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8468 R:      Baolin Wang <baolin.wang7@gmail.com>
8469 L:      linux-remoteproc@vger.kernel.org
8470 S:      Maintained
8471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8472 F:      Documentation/devicetree/bindings/hwlock/
8473 F:      Documentation/locking/hwspinlock.rst
8474 F:      drivers/hwspinlock/
8475 F:      include/linux/hwspinlock.h
8476
8477 HARDWARE TRACING FACILITIES
8478 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8479 S:      Maintained
8480 F:      drivers/hwtracing/
8481
8482 HARMONY SOUND DRIVER
8483 L:      linux-parisc@vger.kernel.org
8484 S:      Maintained
8485 F:      sound/parisc/harmony.*
8486
8487 HDPVR USB VIDEO ENCODER DRIVER
8488 M:      Hans Verkuil <hverkuil@xs4all.nl>
8489 L:      linux-media@vger.kernel.org
8490 S:      Odd Fixes
8491 W:      https://linuxtv.org
8492 T:      git git://linuxtv.org/media_tree.git
8493 F:      drivers/media/usb/hdpvr/
8494
8495 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8496 M:      Matt Hsiao <matt.hsiao@hpe.com>
8497 S:      Supported
8498 F:      drivers/misc/hpilo.[ch]
8499
8500 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8501 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8502 S:      Supported
8503 F:      Documentation/watchdog/hpwdt.rst
8504 F:      drivers/watchdog/hpwdt.c
8505
8506 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8507 M:      Don Brace <don.brace@microchip.com>
8508 L:      storagedev@microchip.com
8509 L:      linux-scsi@vger.kernel.org
8510 S:      Supported
8511 F:      Documentation/scsi/hpsa.rst
8512 F:      drivers/scsi/hpsa*.[ch]
8513 F:      include/linux/cciss*.h
8514 F:      include/uapi/linux/cciss*.h
8515
8516 HFI1 DRIVER
8517 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8518 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8519 L:      linux-rdma@vger.kernel.org
8520 S:      Supported
8521 F:      drivers/infiniband/hw/hfi1
8522
8523 HFS FILESYSTEM
8524 L:      linux-fsdevel@vger.kernel.org
8525 S:      Orphan
8526 F:      Documentation/filesystems/hfs.rst
8527 F:      fs/hfs/
8528
8529 HFSPLUS FILESYSTEM
8530 L:      linux-fsdevel@vger.kernel.org
8531 S:      Orphan
8532 F:      Documentation/filesystems/hfsplus.rst
8533 F:      fs/hfsplus/
8534
8535 HGA FRAMEBUFFER DRIVER
8536 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8537 L:      linux-nvidia@lists.surfsouth.com
8538 S:      Maintained
8539 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8540 F:      drivers/video/fbdev/hgafb.c
8541
8542 HIBERNATION (aka Software Suspend, aka swsusp)
8543 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8544 M:      Pavel Machek <pavel@ucw.cz>
8545 L:      linux-pm@vger.kernel.org
8546 S:      Supported
8547 B:      https://bugzilla.kernel.org
8548 F:      arch/*/include/asm/suspend*.h
8549 F:      arch/x86/power/
8550 F:      drivers/base/power/
8551 F:      include/linux/freezer.h
8552 F:      include/linux/pm.h
8553 F:      include/linux/suspend.h
8554 F:      kernel/power/
8555
8556 HID CORE LAYER
8557 M:      Jiri Kosina <jikos@kernel.org>
8558 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8559 L:      linux-input@vger.kernel.org
8560 S:      Maintained
8561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8562 F:      drivers/hid/
8563 F:      include/linux/hid*
8564 F:      include/uapi/linux/hid*
8565
8566 HID LOGITECH DRIVERS
8567 R:      Filipe Laíns <lains@riseup.net>
8568 L:      linux-input@vger.kernel.org
8569 S:      Maintained
8570 F:      drivers/hid/hid-logitech-*
8571
8572 HID PLAYSTATION DRIVER
8573 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8574 L:      linux-input@vger.kernel.org
8575 S:      Supported
8576 F:      drivers/hid/hid-playstation.c
8577
8578 HID SENSOR HUB DRIVERS
8579 M:      Jiri Kosina <jikos@kernel.org>
8580 M:      Jonathan Cameron <jic23@kernel.org>
8581 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8582 L:      linux-input@vger.kernel.org
8583 L:      linux-iio@vger.kernel.org
8584 S:      Maintained
8585 F:      Documentation/hid/hid-sensor*
8586 F:      drivers/hid/hid-sensor-*
8587 F:      drivers/iio/*/hid-*
8588 F:      include/linux/hid-sensor-*
8589
8590 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8591 M:      Thomas Gleixner <tglx@linutronix.de>
8592 L:      linux-kernel@vger.kernel.org
8593 S:      Maintained
8594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8595 F:      Documentation/timers/
8596 F:      include/linux/clockchips.h
8597 F:      include/linux/hrtimer.h
8598 F:      kernel/time/clockevents.c
8599 F:      kernel/time/hrtimer.c
8600 F:      kernel/time/timer_*.c
8601
8602 HIGH-SPEED SCC DRIVER FOR AX.25
8603 L:      linux-hams@vger.kernel.org
8604 S:      Orphan
8605 F:      drivers/net/hamradio/dmascc.c
8606 F:      drivers/net/hamradio/scc.c
8607
8608 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8609 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8610 S:      Supported
8611 W:      http://www.highpoint-tech.com
8612 F:      Documentation/scsi/hptiop.rst
8613 F:      drivers/scsi/hptiop.c
8614
8615 HIPPI
8616 M:      Jes Sorensen <jes@trained-monkey.org>
8617 L:      linux-hippi@sunsite.dk
8618 S:      Maintained
8619 F:      drivers/net/hippi/
8620 F:      include/linux/hippidevice.h
8621 F:      include/uapi/linux/if_hippi.h
8622 F:      net/802/hippi.c
8623
8624 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8625 M:      Kurt Kanzenbach <kurt@linutronix.de>
8626 L:      netdev@vger.kernel.org
8627 S:      Maintained
8628 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8629 F:      drivers/net/dsa/hirschmann/*
8630 F:      include/linux/platform_data/hirschmann-hellcreek.h
8631 F:      net/dsa/tag_hellcreek.c
8632
8633 HISILICON DMA DRIVER
8634 M:      Zhou Wang <wangzhou1@hisilicon.com>
8635 L:      dmaengine@vger.kernel.org
8636 S:      Maintained
8637 F:      drivers/dma/hisi_dma.c
8638
8639 HISILICON GPIO DRIVER
8640 M:      Luo Jiaxing <luojiaxing@huawei.com>
8641 L:      linux-gpio@vger.kernel.org
8642 S:      Maintained
8643 F:      drivers/gpio/gpio-hisi.c
8644
8645 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8646 M:      Zaibo Xu <xuzaibo@huawei.com>
8647 L:      linux-crypto@vger.kernel.org
8648 S:      Maintained
8649 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8650 F:      drivers/crypto/hisilicon/hpre/hpre.h
8651 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8652 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8653
8654 HISILICON I2C CONTROLLER DRIVER
8655 M:      Yicong Yang <yangyicong@hisilicon.com>
8656 L:      linux-i2c@vger.kernel.org
8657 S:      Maintained
8658 W:      https://www.hisilicon.com
8659 F:      drivers/i2c/busses/i2c-hisi.c
8660
8661 HISILICON LPC BUS DRIVER
8662 M:      john.garry@huawei.com
8663 S:      Maintained
8664 W:      http://www.hisilicon.com
8665 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8666 F:      drivers/bus/hisi_lpc.c
8667
8668 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8669 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8670 M:      Salil Mehta <salil.mehta@huawei.com>
8671 L:      netdev@vger.kernel.org
8672 S:      Maintained
8673 W:      http://www.hisilicon.com
8674 F:      drivers/net/ethernet/hisilicon/hns3/
8675
8676 HISILICON NETWORK SUBSYSTEM DRIVER
8677 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8678 M:      Salil Mehta <salil.mehta@huawei.com>
8679 L:      netdev@vger.kernel.org
8680 S:      Maintained
8681 W:      http://www.hisilicon.com
8682 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8683 F:      drivers/net/ethernet/hisilicon/
8684
8685 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8686 M:      John Stultz <john.stultz@linaro.org>
8687 L:      linux-kernel@vger.kernel.org
8688 S:      Maintained
8689 F:      drivers/misc/hisi_hikey_usb.c
8690
8691 HISILICON PMU DRIVER
8692 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8693 M:      Qi Liu <liuqi115@huawei.com>
8694 S:      Supported
8695 W:      http://www.hisilicon.com
8696 F:      Documentation/admin-guide/perf/hisi-pcie-pmu.rst
8697 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8698 F:      drivers/perf/hisilicon
8699
8700 HISILICON QM AND ZIP Controller DRIVER
8701 M:      Zhou Wang <wangzhou1@hisilicon.com>
8702 L:      linux-crypto@vger.kernel.org
8703 S:      Maintained
8704 F:      Documentation/ABI/testing/debugfs-hisi-zip
8705 F:      drivers/crypto/hisilicon/qm.c
8706 F:      drivers/crypto/hisilicon/qm.h
8707 F:      drivers/crypto/hisilicon/sgl.c
8708 F:      drivers/crypto/hisilicon/zip/
8709
8710 HISILICON ROCE DRIVER
8711 M:      Wenpeng Liang <liangwenpeng@huawei.com>
8712 M:      Weihang Li <liweihang@huawei.com>
8713 L:      linux-rdma@vger.kernel.org
8714 S:      Maintained
8715 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8716 F:      drivers/infiniband/hw/hns/
8717
8718 HISILICON SAS Controller
8719 M:      John Garry <john.garry@huawei.com>
8720 S:      Supported
8721 W:      http://www.hisilicon.com
8722 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8723 F:      drivers/scsi/hisi_sas/
8724
8725 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8726 M:      Zaibo Xu <xuzaibo@huawei.com>
8727 M:      Kai Ye <yekai13@huawei.com>
8728 L:      linux-crypto@vger.kernel.org
8729 S:      Maintained
8730 F:      Documentation/ABI/testing/debugfs-hisi-sec
8731 F:      drivers/crypto/hisilicon/sec2/sec.h
8732 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8733 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8734 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8735
8736 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8737 M:      Jay Fang <f.fangjian@huawei.com>
8738 L:      linux-spi@vger.kernel.org
8739 S:      Maintained
8740 W:      http://www.hisilicon.com
8741 F:      drivers/spi/spi-hisi-kunpeng.c
8742
8743 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8744 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8745 L:      linux-kernel@vger.kernel.org
8746 S:      Maintained
8747 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8748 F:      drivers/spmi/hisi-spmi-controller.c
8749
8750 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8751 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8752 L:      linux-kernel@vger.kernel.org
8753 S:      Maintained
8754 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8755 F:      drivers/mfd/hi6421-spmi-pmic.c
8756
8757 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8758 M:      Zaibo Xu <xuzaibo@huawei.com>
8759 S:      Maintained
8760 F:      drivers/crypto/hisilicon/trng/trng.c
8761
8762 HISILICON V3XX SPI NOR FLASH Controller Driver
8763 M:      John Garry <john.garry@huawei.com>
8764 S:      Maintained
8765 W:      http://www.hisilicon.com
8766 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8767
8768 HMM - Heterogeneous Memory Management
8769 M:      Jérôme Glisse <jglisse@redhat.com>
8770 L:      linux-mm@kvack.org
8771 S:      Maintained
8772 F:      Documentation/vm/hmm.rst
8773 F:      include/linux/hmm*
8774 F:      lib/test_hmm*
8775 F:      mm/hmm*
8776 F:      tools/testing/selftests/vm/*hmm*
8777
8778 HOST AP DRIVER
8779 M:      Jouni Malinen <j@w1.fi>
8780 L:      linux-wireless@vger.kernel.org
8781 S:      Obsolete
8782 W:      http://w1.fi/hostap-driver.html
8783 F:      drivers/net/wireless/intersil/hostap/
8784
8785 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8786 L:      platform-driver-x86@vger.kernel.org
8787 S:      Orphan
8788 F:      drivers/platform/x86/tc1100-wmi.c
8789
8790 HPET:   High Precision Event Timers driver
8791 M:      Clemens Ladisch <clemens@ladisch.de>
8792 S:      Maintained
8793 F:      Documentation/timers/hpet.rst
8794 F:      drivers/char/hpet.c
8795 F:      include/linux/hpet.h
8796 F:      include/uapi/linux/hpet.h
8797
8798 HPET:   x86
8799 S:      Orphan
8800 F:      arch/x86/include/asm/hpet.h
8801 F:      arch/x86/kernel/hpet.c
8802
8803 HPFS FILESYSTEM
8804 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8805 S:      Maintained
8806 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8807 F:      fs/hpfs/
8808
8809 HSI SUBSYSTEM
8810 M:      Sebastian Reichel <sre@kernel.org>
8811 S:      Maintained
8812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8813 F:      Documentation/ABI/testing/sysfs-bus-hsi
8814 F:      Documentation/driver-api/hsi.rst
8815 F:      drivers/hsi/
8816 F:      include/linux/hsi/
8817 F:      include/uapi/linux/hsi/
8818
8819 HSO 3G MODEM DRIVER
8820 L:      linux-usb@vger.kernel.org
8821 S:      Orphan
8822 F:      drivers/net/usb/hso.c
8823
8824 HSR NETWORK PROTOCOL
8825 L:      netdev@vger.kernel.org
8826 S:      Orphan
8827 F:      net/hsr/
8828
8829 HT16K33 LED CONTROLLER DRIVER
8830 M:      Robin van der Gracht <robin@protonic.nl>
8831 S:      Maintained
8832 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8833 F:      drivers/auxdisplay/ht16k33.c
8834
8835 HTCPEN TOUCHSCREEN DRIVER
8836 M:      Pau Oliva Fora <pof@eslack.org>
8837 L:      linux-input@vger.kernel.org
8838 S:      Maintained
8839 F:      drivers/input/touchscreen/htcpen.c
8840
8841 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8842 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8843 L:      linux-iio@vger.kernel.org
8844 S:      Maintained
8845 W:      http://www.st.com/
8846 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8847 F:      drivers/iio/humidity/hts221*
8848
8849 HUAWEI ETHERNET DRIVER
8850 L:      netdev@vger.kernel.org
8851 S:      Orphan
8852 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8853 F:      drivers/net/ethernet/huawei/hinic/
8854
8855 HUGETLB FILESYSTEM
8856 M:      Mike Kravetz <mike.kravetz@oracle.com>
8857 L:      linux-mm@kvack.org
8858 S:      Maintained
8859 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8860 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8861 F:      Documentation/vm/hugetlbfs_reserv.rst
8862 F:      fs/hugetlbfs/
8863 F:      include/linux/hugetlb.h
8864 F:      mm/hugetlb.c
8865
8866 HVA ST MEDIA DRIVER
8867 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8868 L:      linux-media@vger.kernel.org
8869 S:      Supported
8870 W:      https://linuxtv.org
8871 T:      git git://linuxtv.org/media_tree.git
8872 F:      drivers/media/platform/sti/hva
8873
8874 HWPOISON MEMORY FAILURE HANDLING
8875 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8876 L:      linux-mm@kvack.org
8877 S:      Maintained
8878 F:      mm/hwpoison-inject.c
8879 F:      mm/memory-failure.c
8880
8881 HYCON HY46XX TOUCHSCREEN SUPPORT
8882 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
8883 L:      linux-input@vger.kernel.org
8884 S:      Maintained
8885 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
8886 F:      drivers/input/touchscreen/hycon-hy46xx.c
8887
8888 HYGON PROCESSOR SUPPORT
8889 M:      Pu Wen <puwen@hygon.cn>
8890 L:      linux-kernel@vger.kernel.org
8891 S:      Maintained
8892 F:      arch/x86/kernel/cpu/hygon.c
8893
8894 HYNIX HI556 SENSOR DRIVER
8895 M:      Shawn Tu <shawnx.tu@intel.com>
8896 L:      linux-media@vger.kernel.org
8897 S:      Maintained
8898 T:      git git://linuxtv.org/media_tree.git
8899 F:      drivers/media/i2c/hi556.c
8900
8901 HYNIX HI846 SENSOR DRIVER
8902 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
8903 L:      linux-media@vger.kernel.org
8904 S:      Maintained
8905 F:      drivers/media/i2c/hi846.c
8906
8907 Hyper-V/Azure CORE AND DRIVERS
8908 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8909 M:      Haiyang Zhang <haiyangz@microsoft.com>
8910 M:      Stephen Hemminger <sthemmin@microsoft.com>
8911 M:      Wei Liu <wei.liu@kernel.org>
8912 M:      Dexuan Cui <decui@microsoft.com>
8913 L:      linux-hyperv@vger.kernel.org
8914 S:      Supported
8915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8916 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8917 F:      Documentation/ABI/testing/debugfs-hyperv
8918 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8919 F:      arch/arm64/hyperv
8920 F:      arch/arm64/include/asm/hyperv-tlfs.h
8921 F:      arch/arm64/include/asm/mshyperv.h
8922 F:      arch/x86/hyperv
8923 F:      arch/x86/include/asm/hyperv-tlfs.h
8924 F:      arch/x86/include/asm/mshyperv.h
8925 F:      arch/x86/include/asm/trace/hyperv.h
8926 F:      arch/x86/kernel/cpu/mshyperv.c
8927 F:      drivers/clocksource/hyperv_timer.c
8928 F:      drivers/hid/hid-hyperv.c
8929 F:      drivers/hv/
8930 F:      drivers/input/serio/hyperv-keyboard.c
8931 F:      drivers/iommu/hyperv-iommu.c
8932 F:      drivers/net/ethernet/microsoft/
8933 F:      drivers/net/hyperv/
8934 F:      drivers/pci/controller/pci-hyperv-intf.c
8935 F:      drivers/pci/controller/pci-hyperv.c
8936 F:      drivers/scsi/storvsc_drv.c
8937 F:      drivers/uio/uio_hv_generic.c
8938 F:      drivers/video/fbdev/hyperv_fb.c
8939 F:      include/asm-generic/hyperv-tlfs.h
8940 F:      include/asm-generic/mshyperv.h
8941 F:      include/clocksource/hyperv_timer.h
8942 F:      include/linux/hyperv.h
8943 F:      include/uapi/linux/hyperv.h
8944 F:      net/vmw_vsock/hyperv_transport.c
8945 F:      tools/hv/
8946
8947 HYPERBUS SUPPORT
8948 M:      Vignesh Raghavendra <vigneshr@ti.com>
8949 L:      linux-mtd@lists.infradead.org
8950 S:      Supported
8951 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8952 C:      irc://irc.oftc.net/mtd
8953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8954 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
8955 F:      drivers/mtd/hyperbus/
8956 F:      include/linux/mtd/hyperbus.h
8957
8958 HYPERVISOR VIRTUAL CONSOLE DRIVER
8959 L:      linuxppc-dev@lists.ozlabs.org
8960 S:      Odd Fixes
8961 F:      drivers/tty/hvc/
8962
8963 I2C ACPI SUPPORT
8964 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8965 L:      linux-i2c@vger.kernel.org
8966 L:      linux-acpi@vger.kernel.org
8967 S:      Maintained
8968 F:      drivers/i2c/i2c-core-acpi.c
8969
8970 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8971 M:      Ajay Gupta <ajayg@nvidia.com>
8972 L:      linux-i2c@vger.kernel.org
8973 S:      Maintained
8974 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8975 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8976
8977 I2C MUXES
8978 M:      Peter Rosin <peda@axentia.se>
8979 L:      linux-i2c@vger.kernel.org
8980 S:      Maintained
8981 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8982 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8983 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8984 F:      Documentation/i2c/i2c-topology.rst
8985 F:      Documentation/i2c/muxes/
8986 F:      drivers/i2c/i2c-mux.c
8987 F:      drivers/i2c/muxes/
8988 F:      include/linux/i2c-mux.h
8989
8990 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8991 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8992 L:      linux-i2c@vger.kernel.org
8993 S:      Maintained
8994 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8995 F:      drivers/i2c/busses/i2c-mv64xxx.c
8996
8997 I2C OVER PARALLEL PORT
8998 M:      Jean Delvare <jdelvare@suse.com>
8999 L:      linux-i2c@vger.kernel.org
9000 S:      Maintained
9001 F:      Documentation/i2c/busses/i2c-parport.rst
9002 F:      drivers/i2c/busses/i2c-parport.c
9003
9004 I2C SUBSYSTEM
9005 M:      Wolfram Sang <wsa@kernel.org>
9006 L:      linux-i2c@vger.kernel.org
9007 S:      Maintained
9008 W:      https://i2c.wiki.kernel.org/
9009 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9011 F:      Documentation/devicetree/bindings/i2c/i2c.txt
9012 F:      Documentation/i2c/
9013 F:      drivers/i2c/*
9014 F:      include/linux/i2c-dev.h
9015 F:      include/linux/i2c-smbus.h
9016 F:      include/linux/i2c.h
9017 F:      include/uapi/linux/i2c-*.h
9018 F:      include/uapi/linux/i2c.h
9019
9020 I2C SUBSYSTEM HOST DRIVERS
9021 L:      linux-i2c@vger.kernel.org
9022 S:      Odd Fixes
9023 W:      https://i2c.wiki.kernel.org/
9024 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9026 F:      Documentation/devicetree/bindings/i2c/
9027 F:      drivers/i2c/algos/
9028 F:      drivers/i2c/busses/
9029
9030 I2C-TAOS-EVM DRIVER
9031 M:      Jean Delvare <jdelvare@suse.com>
9032 L:      linux-i2c@vger.kernel.org
9033 S:      Maintained
9034 F:      Documentation/i2c/busses/i2c-taos-evm.rst
9035 F:      drivers/i2c/busses/i2c-taos-evm.c
9036
9037 I2C-TINY-USB DRIVER
9038 M:      Till Harbaum <till@harbaum.org>
9039 L:      linux-i2c@vger.kernel.org
9040 S:      Maintained
9041 W:      http://www.harbaum.org/till/i2c_tiny_usb
9042 F:      drivers/i2c/busses/i2c-tiny-usb.c
9043
9044 I2C/SMBUS CONTROLLER DRIVERS FOR PC
9045 M:      Jean Delvare <jdelvare@suse.com>
9046 L:      linux-i2c@vger.kernel.org
9047 S:      Maintained
9048 F:      Documentation/i2c/busses/i2c-ali1535.rst
9049 F:      Documentation/i2c/busses/i2c-ali1563.rst
9050 F:      Documentation/i2c/busses/i2c-ali15x3.rst
9051 F:      Documentation/i2c/busses/i2c-amd756.rst
9052 F:      Documentation/i2c/busses/i2c-amd8111.rst
9053 F:      Documentation/i2c/busses/i2c-i801.rst
9054 F:      Documentation/i2c/busses/i2c-nforce2.rst
9055 F:      Documentation/i2c/busses/i2c-piix4.rst
9056 F:      Documentation/i2c/busses/i2c-sis5595.rst
9057 F:      Documentation/i2c/busses/i2c-sis630.rst
9058 F:      Documentation/i2c/busses/i2c-sis96x.rst
9059 F:      Documentation/i2c/busses/i2c-via.rst
9060 F:      Documentation/i2c/busses/i2c-viapro.rst
9061 F:      drivers/i2c/busses/i2c-ali1535.c
9062 F:      drivers/i2c/busses/i2c-ali1563.c
9063 F:      drivers/i2c/busses/i2c-ali15x3.c
9064 F:      drivers/i2c/busses/i2c-amd756-s4882.c
9065 F:      drivers/i2c/busses/i2c-amd756.c
9066 F:      drivers/i2c/busses/i2c-amd8111.c
9067 F:      drivers/i2c/busses/i2c-i801.c
9068 F:      drivers/i2c/busses/i2c-isch.c
9069 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
9070 F:      drivers/i2c/busses/i2c-nforce2.c
9071 F:      drivers/i2c/busses/i2c-piix4.c
9072 F:      drivers/i2c/busses/i2c-sis5595.c
9073 F:      drivers/i2c/busses/i2c-sis630.c
9074 F:      drivers/i2c/busses/i2c-sis96x.c
9075 F:      drivers/i2c/busses/i2c-via.c
9076 F:      drivers/i2c/busses/i2c-viapro.c
9077
9078 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9079 M:      Hans de Goede <hdegoede@redhat.com>
9080 L:      linux-i2c@vger.kernel.org
9081 S:      Maintained
9082 F:      drivers/i2c/busses/i2c-cht-wc.c
9083
9084 I2C/SMBUS ISMT DRIVER
9085 M:      Seth Heasley <seth.heasley@intel.com>
9086 M:      Neil Horman <nhorman@tuxdriver.com>
9087 L:      linux-i2c@vger.kernel.org
9088 F:      Documentation/i2c/busses/i2c-ismt.rst
9089 F:      drivers/i2c/busses/i2c-ismt.c
9090
9091 I2C/SMBUS STUB DRIVER
9092 M:      Jean Delvare <jdelvare@suse.com>
9093 L:      linux-i2c@vger.kernel.org
9094 S:      Maintained
9095 F:      drivers/i2c/i2c-stub.c
9096
9097 I3C DRIVER FOR CADENCE I3C MASTER IP
9098 M:      Przemysław Gaj <pgaj@cadence.com>
9099 S:      Maintained
9100 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
9101 F:      drivers/i3c/master/i3c-master-cdns.c
9102
9103 I3C DRIVER FOR SYNOPSYS DESIGNWARE
9104 M:      Vitor Soares <vitor.soares@synopsys.com>
9105 S:      Maintained
9106 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
9107 F:      drivers/i3c/master/dw*
9108
9109 I3C SUBSYSTEM
9110 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
9111 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
9112 S:      Maintained
9113 C:      irc://chat.freenode.net/linux-i3c
9114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9115 F:      Documentation/ABI/testing/sysfs-bus-i3c
9116 F:      Documentation/devicetree/bindings/i3c/
9117 F:      Documentation/driver-api/i3c
9118 F:      drivers/i3c/
9119 F:      include/linux/i3c/
9120
9121 IA64 (Itanium) PLATFORM
9122 L:      linux-ia64@vger.kernel.org
9123 S:      Orphan
9124 F:      Documentation/ia64/
9125 F:      arch/ia64/
9126
9127 IBM Power 842 compression accelerator
9128 M:      Haren Myneni <haren@us.ibm.com>
9129 S:      Supported
9130 F:      crypto/842.c
9131 F:      drivers/crypto/nx/Kconfig
9132 F:      drivers/crypto/nx/Makefile
9133 F:      drivers/crypto/nx/nx-842*
9134 F:      include/linux/sw842.h
9135 F:      lib/842/
9136
9137 IBM Power in-Nest Crypto Acceleration
9138 M:      Breno Leitão <leitao@debian.org>
9139 M:      Nayna Jain <nayna@linux.ibm.com>
9140 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9141 L:      linux-crypto@vger.kernel.org
9142 S:      Supported
9143 F:      drivers/crypto/nx/Kconfig
9144 F:      drivers/crypto/nx/Makefile
9145 F:      drivers/crypto/nx/nx-aes*
9146 F:      drivers/crypto/nx/nx-sha*
9147 F:      drivers/crypto/nx/nx.*
9148 F:      drivers/crypto/nx/nx_csbcpb.h
9149 F:      drivers/crypto/nx/nx_debugfs.c
9150
9151 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9152 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9153 L:      linux-pci@vger.kernel.org
9154 L:      linuxppc-dev@lists.ozlabs.org
9155 S:      Supported
9156 F:      drivers/pci/hotplug/rpadlpar*
9157
9158 IBM Power Linux RAID adapter
9159 M:      Brian King <brking@us.ibm.com>
9160 S:      Supported
9161 F:      drivers/scsi/ipr.*
9162
9163 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9164 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9165 L:      linux-pci@vger.kernel.org
9166 L:      linuxppc-dev@lists.ozlabs.org
9167 S:      Supported
9168 F:      drivers/pci/hotplug/rpaphp*
9169
9170 IBM Power SRIOV Virtual NIC Device Driver
9171 M:      Dany Madden <drt@linux.ibm.com>
9172 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9173 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9174 L:      netdev@vger.kernel.org
9175 S:      Supported
9176 F:      drivers/net/ethernet/ibm/ibmvnic.*
9177
9178 IBM Power Virtual Accelerator Switchboard
9179 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9180 L:      linuxppc-dev@lists.ozlabs.org
9181 S:      Supported
9182 F:      arch/powerpc/include/asm/vas.h
9183 F:      arch/powerpc/platforms/powernv/copy-paste.h
9184 F:      arch/powerpc/platforms/powernv/vas*
9185
9186 IBM Power Virtual Ethernet Device Driver
9187 M:      Cristobal Forno <cforno12@linux.ibm.com>
9188 L:      netdev@vger.kernel.org
9189 S:      Supported
9190 F:      drivers/net/ethernet/ibm/ibmveth.*
9191
9192 IBM Power Virtual FC Device Drivers
9193 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9194 L:      linux-scsi@vger.kernel.org
9195 S:      Supported
9196 F:      drivers/scsi/ibmvscsi/ibmvfc*
9197
9198 IBM Power Virtual Management Channel Driver
9199 M:      Brad Warrum <bwarrum@linux.ibm.com>
9200 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9201 S:      Supported
9202 F:      drivers/misc/ibmvmc.*
9203
9204 IBM Power Virtual SCSI Device Drivers
9205 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9206 L:      linux-scsi@vger.kernel.org
9207 S:      Supported
9208 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9209 F:      include/scsi/viosrp.h
9210
9211 IBM Power Virtual SCSI Device Target Driver
9212 M:      Michael Cyr <mikecyr@linux.ibm.com>
9213 L:      linux-scsi@vger.kernel.org
9214 L:      target-devel@vger.kernel.org
9215 S:      Supported
9216 F:      drivers/scsi/ibmvscsi_tgt/
9217
9218 IBM Power VMX Cryptographic instructions
9219 M:      Breno Leitão <leitao@debian.org>
9220 M:      Nayna Jain <nayna@linux.ibm.com>
9221 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9222 L:      linux-crypto@vger.kernel.org
9223 S:      Supported
9224 F:      drivers/crypto/vmx/Kconfig
9225 F:      drivers/crypto/vmx/Makefile
9226 F:      drivers/crypto/vmx/aes*
9227 F:      drivers/crypto/vmx/ghash*
9228 F:      drivers/crypto/vmx/ppc-xlate.pl
9229 F:      drivers/crypto/vmx/vmx.c
9230
9231 IBM ServeRAID RAID DRIVER
9232 S:      Orphan
9233 F:      drivers/scsi/ips.*
9234
9235 ICH LPC AND GPIO DRIVER
9236 M:      Peter Tyser <ptyser@xes-inc.com>
9237 S:      Maintained
9238 F:      drivers/gpio/gpio-ich.c
9239 F:      drivers/mfd/lpc_ich.c
9240
9241 ICY I2C DRIVER
9242 M:      Max Staudt <max@enpas.org>
9243 L:      linux-i2c@vger.kernel.org
9244 S:      Maintained
9245 F:      drivers/i2c/busses/i2c-icy.c
9246
9247 IDEAPAD LAPTOP EXTRAS DRIVER
9248 M:      Ike Panhc <ike.pan@canonical.com>
9249 L:      platform-driver-x86@vger.kernel.org
9250 S:      Maintained
9251 W:      http://launchpad.net/ideapad-laptop
9252 F:      drivers/platform/x86/ideapad-laptop.c
9253
9254 IDEAPAD LAPTOP SLIDEBAR DRIVER
9255 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9256 L:      linux-input@vger.kernel.org
9257 S:      Maintained
9258 W:      https://github.com/o2genum/ideapad-slidebar
9259 F:      drivers/input/misc/ideapad_slidebar.c
9260
9261 IDT VersaClock 5 CLOCK DRIVER
9262 M:      Luca Ceresoli <luca@lucaceresoli.net>
9263 S:      Maintained
9264 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9265 F:      drivers/clk/clk-versaclock5.c
9266
9267 IEEE 802.15.4 SUBSYSTEM
9268 M:      Alexander Aring <alex.aring@gmail.com>
9269 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9270 L:      linux-wpan@vger.kernel.org
9271 S:      Maintained
9272 W:      https://linux-wpan.org/
9273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9275 F:      Documentation/networking/ieee802154.rst
9276 F:      drivers/net/ieee802154/
9277 F:      include/linux/ieee802154.h
9278 F:      include/linux/nl802154.h
9279 F:      include/net/af_ieee802154.h
9280 F:      include/net/cfg802154.h
9281 F:      include/net/ieee802154_netdev.h
9282 F:      include/net/mac802154.h
9283 F:      include/net/nl802154.h
9284 F:      net/ieee802154/
9285 F:      net/mac802154/
9286
9287 IFE PROTOCOL
9288 M:      Yotam Gigi <yotam.gi@gmail.com>
9289 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9290 F:      include/net/ife.h
9291 F:      include/uapi/linux/ife.h
9292 F:      net/ife
9293
9294 IGORPLUG-USB IR RECEIVER
9295 M:      Sean Young <sean@mess.org>
9296 L:      linux-media@vger.kernel.org
9297 S:      Maintained
9298 F:      drivers/media/rc/igorplugusb.c
9299
9300 IGUANAWORKS USB IR TRANSCEIVER
9301 M:      Sean Young <sean@mess.org>
9302 L:      linux-media@vger.kernel.org
9303 S:      Maintained
9304 F:      drivers/media/rc/iguanair.c
9305
9306 IIO DIGITAL POTENTIOMETER DAC
9307 M:      Peter Rosin <peda@axentia.se>
9308 L:      linux-iio@vger.kernel.org
9309 S:      Maintained
9310 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9311 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9312 F:      drivers/iio/dac/dpot-dac.c
9313
9314 IIO ENVELOPE DETECTOR
9315 M:      Peter Rosin <peda@axentia.se>
9316 L:      linux-iio@vger.kernel.org
9317 S:      Maintained
9318 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9319 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9320 F:      drivers/iio/adc/envelope-detector.c
9321
9322 IIO MULTIPLEXER
9323 M:      Peter Rosin <peda@axentia.se>
9324 L:      linux-iio@vger.kernel.org
9325 S:      Maintained
9326 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9327 F:      drivers/iio/multiplexer/iio-mux.c
9328
9329 IIO SCMI BASED DRIVER
9330 M:      Jyoti Bhayana <jbhayana@google.com>
9331 L:      linux-iio@vger.kernel.org
9332 S:      Maintained
9333 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9334
9335 IIO SUBSYSTEM AND DRIVERS
9336 M:      Jonathan Cameron <jic23@kernel.org>
9337 R:      Lars-Peter Clausen <lars@metafoo.de>
9338 L:      linux-iio@vger.kernel.org
9339 S:      Maintained
9340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9341 F:      Documentation/ABI/testing/configfs-iio*
9342 F:      Documentation/ABI/testing/sysfs-bus-iio*
9343 F:      Documentation/devicetree/bindings/iio/
9344 F:      drivers/iio/
9345 F:      drivers/staging/iio/
9346 F:      include/linux/iio/
9347 F:      tools/iio/
9348
9349 IIO UNIT CONVERTER
9350 M:      Peter Rosin <peda@axentia.se>
9351 L:      linux-iio@vger.kernel.org
9352 S:      Maintained
9353 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9354 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9355 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9356 F:      drivers/iio/afe/iio-rescale.c
9357
9358 IKANOS/ADI EAGLE ADSL USB DRIVER
9359 M:      Matthieu Castet <castet.matthieu@free.fr>
9360 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9361 S:      Maintained
9362 F:      drivers/usb/atm/ueagle-atm.c
9363
9364 IMGTEC ASCII LCD DRIVER
9365 M:      Paul Burton <paulburton@kernel.org>
9366 S:      Maintained
9367 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9368 F:      drivers/auxdisplay/img-ascii-lcd.c
9369
9370 IMGTEC IR DECODER DRIVER
9371 S:      Orphan
9372 F:      drivers/media/rc/img-ir/
9373
9374 IMON SOUNDGRAPH USB IR RECEIVER
9375 M:      Sean Young <sean@mess.org>
9376 L:      linux-media@vger.kernel.org
9377 S:      Maintained
9378 F:      drivers/media/rc/imon.c
9379 F:      drivers/media/rc/imon_raw.c
9380
9381 IMS TWINTURBO FRAMEBUFFER DRIVER
9382 L:      linux-fbdev@vger.kernel.org
9383 S:      Orphan
9384 F:      drivers/video/fbdev/imsttfb.c
9385
9386 INA209 HARDWARE MONITOR DRIVER
9387 M:      Guenter Roeck <linux@roeck-us.net>
9388 L:      linux-hwmon@vger.kernel.org
9389 S:      Maintained
9390 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9391 F:      Documentation/hwmon/ina209.rst
9392 F:      drivers/hwmon/ina209.c
9393
9394 INA2XX HARDWARE MONITOR DRIVER
9395 M:      Guenter Roeck <linux@roeck-us.net>
9396 L:      linux-hwmon@vger.kernel.org
9397 S:      Maintained
9398 F:      Documentation/hwmon/ina2xx.rst
9399 F:      drivers/hwmon/ina2xx.c
9400 F:      include/linux/platform_data/ina2xx.h
9401
9402 INDUSTRY PACK SUBSYSTEM (IPACK)
9403 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9404 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9405 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9406 L:      industrypack-devel@lists.sourceforge.net
9407 S:      Maintained
9408 W:      http://industrypack.sourceforge.net
9409 F:      drivers/ipack/
9410
9411 INFINEON DPS310 Driver
9412 M:      Eddie James <eajames@linux.ibm.com>
9413 L:      linux-iio@vger.kernel.org
9414 S:      Maintained
9415 F:      drivers/iio/pressure/dps310.c
9416
9417 INFINIBAND SUBSYSTEM
9418 M:      Jason Gunthorpe <jgg@nvidia.com>
9419 L:      linux-rdma@vger.kernel.org
9420 S:      Supported
9421 W:      https://github.com/linux-rdma/rdma-core
9422 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9424 F:      Documentation/devicetree/bindings/infiniband/
9425 F:      Documentation/infiniband/
9426 F:      drivers/infiniband/
9427 F:      include/rdma/
9428 F:      include/trace/events/ib_mad.h
9429 F:      include/trace/events/ib_umad.h
9430 F:      include/uapi/linux/if_infiniband.h
9431 F:      include/uapi/rdma/
9432 F:      samples/bpf/ibumad_kern.c
9433 F:      samples/bpf/ibumad_user.c
9434
9435 INGENIC JZ4780 NAND DRIVER
9436 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9437 L:      linux-mtd@lists.infradead.org
9438 L:      linux-mips@vger.kernel.org
9439 S:      Maintained
9440 F:      drivers/mtd/nand/raw/ingenic/
9441
9442 INGENIC JZ47xx SoCs
9443 M:      Paul Cercueil <paul@crapouillou.net>
9444 L:      linux-mips@vger.kernel.org
9445 S:      Maintained
9446 F:      arch/mips/boot/dts/ingenic/
9447 F:      arch/mips/generic/board-ingenic.c
9448 F:      arch/mips/include/asm/mach-ingenic/
9449 F:      arch/mips/ingenic/Kconfig
9450 F:      drivers/clk/ingenic/
9451 F:      drivers/dma/dma-jz4780.c
9452 F:      drivers/gpu/drm/ingenic/
9453 F:      drivers/i2c/busses/i2c-jz4780.c
9454 F:      drivers/iio/adc/ingenic-adc.c
9455 F:      drivers/irqchip/irq-ingenic.c
9456 F:      drivers/memory/jz4780-nemc.c
9457 F:      drivers/mmc/host/jz4740_mmc.c
9458 F:      drivers/mtd/nand/raw/ingenic/
9459 F:      drivers/pinctrl/pinctrl-ingenic.c
9460 F:      drivers/power/supply/ingenic-battery.c
9461 F:      drivers/pwm/pwm-jz4740.c
9462 F:      drivers/remoteproc/ingenic_rproc.c
9463 F:      drivers/rtc/rtc-jz4740.c
9464 F:      drivers/tty/serial/8250/8250_ingenic.c
9465 F:      drivers/usb/musb/jz4740.c
9466 F:      drivers/watchdog/jz4740_wdt.c
9467 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9468 F:      include/linux/mfd/ingenic-tcu.h
9469 F:      sound/soc/codecs/jz47*
9470 F:      sound/soc/jz4740/
9471
9472 INOTIFY
9473 M:      Jan Kara <jack@suse.cz>
9474 R:      Amir Goldstein <amir73il@gmail.com>
9475 L:      linux-fsdevel@vger.kernel.org
9476 S:      Maintained
9477 F:      Documentation/filesystems/inotify.rst
9478 F:      fs/notify/inotify/
9479 F:      include/linux/inotify.h
9480 F:      include/uapi/linux/inotify.h
9481
9482 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9483 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9484 L:      linux-input@vger.kernel.org
9485 S:      Maintained
9486 Q:      http://patchwork.kernel.org/project/linux-input/list/
9487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9488 F:      Documentation/devicetree/bindings/input/
9489 F:      Documentation/devicetree/bindings/serio/
9490 F:      Documentation/input/
9491 F:      drivers/input/
9492 F:      include/linux/input.h
9493 F:      include/linux/input/
9494 F:      include/uapi/linux/input-event-codes.h
9495 F:      include/uapi/linux/input.h
9496
9497 INPUT MULTITOUCH (MT) PROTOCOL
9498 M:      Henrik Rydberg <rydberg@bitmath.org>
9499 L:      linux-input@vger.kernel.org
9500 S:      Odd fixes
9501 F:      Documentation/input/multi-touch-protocol.rst
9502 F:      drivers/input/input-mt.c
9503 K:      \b(ABS|SYN)_MT_
9504
9505 INSIDE SECURE CRYPTO DRIVER
9506 M:      Antoine Tenart <atenart@kernel.org>
9507 L:      linux-crypto@vger.kernel.org
9508 S:      Maintained
9509 F:      drivers/crypto/inside-secure/
9510
9511 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9512 M:      Mimi Zohar <zohar@linux.ibm.com>
9513 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9514 L:      linux-integrity@vger.kernel.org
9515 S:      Supported
9516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9517 F:      security/integrity/ima/
9518
9519 INTEL 810/815 FRAMEBUFFER DRIVER
9520 M:      Antonino Daplas <adaplas@gmail.com>
9521 L:      linux-fbdev@vger.kernel.org
9522 S:      Maintained
9523 F:      drivers/video/fbdev/i810/
9524
9525 INTEL ASoC DRIVERS
9526 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9527 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9528 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9529 M:      Jie Yang <yang.jie@linux.intel.com>
9530 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9531 S:      Supported
9532 F:      sound/soc/intel/
9533
9534 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9535 M:      Hans de Goede <hdegoede@redhat.com>
9536 L:      platform-driver-x86@vger.kernel.org
9537 S:      Maintained
9538 F:      drivers/platform/x86/intel/atomisp2/pm.c
9539
9540 INTEL ATOMISP2 LED DRIVER
9541 M:      Hans de Goede <hdegoede@redhat.com>
9542 L:      platform-driver-x86@vger.kernel.org
9543 S:      Maintained
9544 F:      drivers/platform/x86/intel/atomisp2/led.c
9545
9546 INTEL BIOS SAR INT1092 DRIVER
9547 M:      Shravan Sudhakar <s.shravan@intel.com>
9548 M:      Intel Corporation <linuxwwan@intel.com>
9549 L:      platform-driver-x86@vger.kernel.org
9550 S:      Maintained
9551 F:      drivers/platform/x86/intel/int1092/
9552
9553 INTEL BROXTON PMC DRIVER
9554 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9555 M:      Zha Qipeng <qipeng.zha@intel.com>
9556 S:      Maintained
9557 F:      drivers/mfd/intel_pmc_bxt.c
9558 F:      include/linux/mfd/intel_pmc_bxt.h
9559
9560 INTEL C600 SERIES SAS CONTROLLER DRIVER
9561 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9562 L:      linux-scsi@vger.kernel.org
9563 S:      Supported
9564 T:      git git://git.code.sf.net/p/intel-sas/isci
9565 F:      drivers/scsi/isci/
9566
9567 INTEL CPU family model numbers
9568 M:      Tony Luck <tony.luck@intel.com>
9569 M:      x86@kernel.org
9570 L:      linux-kernel@vger.kernel.org
9571 S:      Supported
9572 F:      arch/x86/include/asm/intel-family.h
9573
9574 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9575 M:      Jani Nikula <jani.nikula@linux.intel.com>
9576 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9577 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9578 M:      Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
9579 L:      intel-gfx@lists.freedesktop.org
9580 S:      Supported
9581 W:      https://01.org/linuxgraphics/
9582 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9583 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9584 C:      irc://irc.oftc.net/intel-gfx
9585 T:      git git://anongit.freedesktop.org/drm-intel
9586 F:      Documentation/gpu/i915.rst
9587 F:      drivers/gpu/drm/i915/
9588 F:      include/drm/i915*
9589 F:      include/uapi/drm/i915_drm.h
9590
9591 INTEL ETHERNET DRIVERS
9592 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9593 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9594 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9595 S:      Supported
9596 W:      http://www.intel.com/support/feedback.htm
9597 W:      http://e1000.sourceforge.net/
9598 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9601 F:      Documentation/networking/device_drivers/ethernet/intel/
9602 F:      drivers/net/ethernet/intel/
9603 F:      drivers/net/ethernet/intel/*/
9604 F:      include/linux/avf/virtchnl.h
9605 F:      include/linux/net/intel/iidc.h
9606
9607 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9608 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9609 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9610 L:      linux-rdma@vger.kernel.org
9611 S:      Supported
9612 F:      drivers/infiniband/hw/irdma/
9613 F:      include/uapi/rdma/irdma-abi.h
9614
9615 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9616 M:      Maik Broemme <mbroemme@libmpq.org>
9617 L:      linux-fbdev@vger.kernel.org
9618 S:      Maintained
9619 F:      Documentation/fb/intelfb.rst
9620 F:      drivers/video/fbdev/intelfb/
9621
9622 INTEL GPIO DRIVERS
9623 M:      Andy Shevchenko <andy@kernel.org>
9624 L:      linux-gpio@vger.kernel.org
9625 S:      Maintained
9626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9627 F:      drivers/gpio/gpio-ich.c
9628 F:      drivers/gpio/gpio-merrifield.c
9629 F:      drivers/gpio/gpio-ml-ioh.c
9630 F:      drivers/gpio/gpio-pch.c
9631 F:      drivers/gpio/gpio-sch.c
9632 F:      drivers/gpio/gpio-sodaville.c
9633
9634 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9635 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9636 M:      Zhi Wang <zhi.a.wang@intel.com>
9637 L:      intel-gvt-dev@lists.freedesktop.org
9638 L:      intel-gfx@lists.freedesktop.org
9639 S:      Supported
9640 W:      https://01.org/igvt-g
9641 T:      git https://github.com/intel/gvt-linux.git
9642 F:      drivers/gpu/drm/i915/gvt/
9643
9644 INTEL HID EVENT DRIVER
9645 M:      Alex Hung <alex.hung@canonical.com>
9646 L:      platform-driver-x86@vger.kernel.org
9647 S:      Maintained
9648 F:      drivers/platform/x86/intel/hid.c
9649
9650 INTEL I/OAT DMA DRIVER
9651 M:      Dave Jiang <dave.jiang@intel.com>
9652 R:      Dan Williams <dan.j.williams@intel.com>
9653 L:      dmaengine@vger.kernel.org
9654 S:      Supported
9655 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9656 F:      drivers/dma/ioat*
9657
9658 INTEL IADX DRIVER
9659 M:      Dave Jiang <dave.jiang@intel.com>
9660 L:      dmaengine@vger.kernel.org
9661 S:      Supported
9662 F:      drivers/dma/idxd/*
9663 F:      include/uapi/linux/idxd.h
9664
9665 INTEL IDLE DRIVER
9666 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9667 M:      Len Brown <lenb@kernel.org>
9668 L:      linux-pm@vger.kernel.org
9669 S:      Supported
9670 B:      https://bugzilla.kernel.org
9671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9672 F:      drivers/idle/intel_idle.c
9673
9674 INTEL INTEGRATED SENSOR HUB DRIVER
9675 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9676 M:      Jiri Kosina <jikos@kernel.org>
9677 L:      linux-input@vger.kernel.org
9678 S:      Maintained
9679 F:      drivers/hid/intel-ish-hid/
9680
9681 INTEL IOMMU (VT-d)
9682 M:      David Woodhouse <dwmw2@infradead.org>
9683 M:      Lu Baolu <baolu.lu@linux.intel.com>
9684 L:      iommu@lists.linux-foundation.org
9685 S:      Supported
9686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9687 F:      drivers/iommu/intel/
9688 F:      include/linux/intel-iommu.h
9689 F:      include/linux/intel-svm.h
9690
9691 INTEL IOP-ADMA DMA DRIVER
9692 R:      Dan Williams <dan.j.williams@intel.com>
9693 S:      Odd fixes
9694 F:      drivers/dma/iop-adma.c
9695
9696 INTEL IPU3 CSI-2 CIO2 DRIVER
9697 M:      Yong Zhi <yong.zhi@intel.com>
9698 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9699 M:      Bingbu Cao <bingbu.cao@intel.com>
9700 M:      Dan Scally <djrscally@gmail.com>
9701 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9702 L:      linux-media@vger.kernel.org
9703 S:      Maintained
9704 T:      git git://linuxtv.org/media_tree.git
9705 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9706 F:      drivers/media/pci/intel/ipu3/
9707
9708 INTEL IPU3 CSI-2 IMGU DRIVER
9709 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9710 R:      Bingbu Cao <bingbu.cao@intel.com>
9711 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9712 L:      linux-media@vger.kernel.org
9713 S:      Maintained
9714 F:      Documentation/admin-guide/media/ipu3.rst
9715 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9716 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9717 F:      drivers/staging/media/ipu3/
9718
9719 INTEL IXP4XX CRYPTO SUPPORT
9720 M:      Corentin Labbe <clabbe@baylibre.com>
9721 L:      linux-crypto@vger.kernel.org
9722 S:      Maintained
9723 F:      drivers/crypto/ixp4xx_crypto.c
9724
9725 INTEL ISHTP ECLITE DRIVER
9726 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
9727 L:      platform-driver-x86@vger.kernel.org
9728 S:      Supported
9729 F:      drivers/platform/x86/intel/ishtp_eclite.c
9730
9731 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9732 M:      Krzysztof Halasa <khalasa@piap.pl>
9733 S:      Maintained
9734 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9735 F:      drivers/net/wan/ixp4xx_hss.c
9736 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9737 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9738 F:      include/linux/soc/ixp4xx/npe.h
9739 F:      include/linux/soc/ixp4xx/qmgr.h
9740
9741 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9742 M:      Deepak Saxena <dsaxena@plexity.net>
9743 S:      Maintained
9744 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
9745 F:      drivers/char/hw_random/ixp4xx-rng.c
9746
9747 INTEL KEEM BAY DRM DRIVER
9748 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9749 M:      Edmund Dea <edmund.j.dea@intel.com>
9750 S:      Maintained
9751 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
9752 F:      drivers/gpu/drm/kmb/
9753
9754 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9755 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9756 S:      Maintained
9757 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9758 F:      drivers/crypto/keembay/Kconfig
9759 F:      drivers/crypto/keembay/Makefile
9760 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9761 F:      drivers/crypto/keembay/ocs-aes.c
9762 F:      drivers/crypto/keembay/ocs-aes.h
9763
9764 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
9765 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9766 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
9767 M:      Mark Gross <mgross@linux.intel.com>
9768 S:      Maintained
9769 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
9770 F:      drivers/crypto/keembay/Kconfig
9771 F:      drivers/crypto/keembay/Makefile
9772 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
9773
9774 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9775 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9776 M:      Declan Murphy <declan.murphy@intel.com>
9777 S:      Maintained
9778 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9779 F:      drivers/crypto/keembay/Kconfig
9780 F:      drivers/crypto/keembay/Makefile
9781 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9782 F:      drivers/crypto/keembay/ocs-hcu.c
9783 F:      drivers/crypto/keembay/ocs-hcu.h
9784
9785 INTEL THUNDER BAY EMMC PHY DRIVER
9786 M:      Nandhini Srikandan <nandhini.srikandan@intel.com>
9787 M:      Rashmi A <rashmi.a@intel.com>
9788 S:      Maintained
9789 F:      Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml
9790 F:      drivers/phy/intel/phy-intel-thunderbay-emmc.c
9791
9792 INTEL MANAGEMENT ENGINE (mei)
9793 M:      Tomas Winkler <tomas.winkler@intel.com>
9794 L:      linux-kernel@vger.kernel.org
9795 S:      Supported
9796 F:      Documentation/driver-api/mei/*
9797 F:      drivers/misc/mei/
9798 F:      drivers/watchdog/mei_wdt.c
9799 F:      include/linux/mei_cl_bus.h
9800 F:      include/uapi/linux/mei.h
9801 F:      samples/mei/*
9802
9803 INTEL MAX 10 BMC MFD DRIVER
9804 M:      Xu Yilun <yilun.xu@intel.com>
9805 R:      Tom Rix <trix@redhat.com>
9806 S:      Maintained
9807 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9808 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9809 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9810 F:      drivers/mfd/intel-m10-bmc.c
9811 F:      include/linux/mfd/intel-m10-bmc.h
9812
9813 INTEL MENLOW THERMAL DRIVER
9814 M:      Sujith Thomas <sujith.thomas@intel.com>
9815 L:      linux-pm@vger.kernel.org
9816 S:      Supported
9817 W:      https://01.org/linux-acpi
9818 F:      drivers/thermal/intel/intel_menlow.c
9819
9820 INTEL P-Unit IPC DRIVER
9821 M:      Zha Qipeng <qipeng.zha@intel.com>
9822 L:      platform-driver-x86@vger.kernel.org
9823 S:      Maintained
9824 F:      arch/x86/include/asm/intel_punit_ipc.h
9825 F:      drivers/platform/x86/intel/punit_ipc.c
9826
9827 INTEL PMC CORE DRIVER
9828 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9829 M:      David E Box <david.e.box@intel.com>
9830 L:      platform-driver-x86@vger.kernel.org
9831 S:      Maintained
9832 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
9833 F:      drivers/platform/x86/intel/pmc/
9834
9835 INTEL PMIC GPIO DRIVERS
9836 M:      Andy Shevchenko <andy@kernel.org>
9837 S:      Maintained
9838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9839 F:      drivers/gpio/gpio-*cove.c
9840
9841 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9842 M:      Andy Shevchenko <andy@kernel.org>
9843 S:      Maintained
9844 F:      drivers/mfd/intel_soc_pmic*
9845 F:      include/linux/mfd/intel_soc_pmic*
9846
9847 INTEL PMT DRIVERS
9848 M:      David E. Box <david.e.box@linux.intel.com>
9849 S:      Supported
9850 F:      drivers/platform/x86/intel/pmt/
9851
9852 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9853 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9854 L:      linux-wireless@vger.kernel.org
9855 S:      Maintained
9856 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9857 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9858 F:      drivers/net/wireless/intel/ipw2x00/
9859
9860 INTEL PSTATE DRIVER
9861 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9862 M:      Len Brown <lenb@kernel.org>
9863 L:      linux-pm@vger.kernel.org
9864 S:      Supported
9865 F:      drivers/cpufreq/intel_pstate.c
9866
9867 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
9868 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9869 L:      linux-iio@vger.kernel.org
9870 F:      drivers/counter/intel-qep.c
9871
9872 INTEL SCU DRIVERS
9873 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9874 S:      Maintained
9875 F:      arch/x86/include/asm/intel_scu_ipc.h
9876 F:      drivers/platform/x86/intel_scu_*
9877
9878 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
9879 M:      Daniel Scally <djrscally@gmail.com>
9880 S:      Maintained
9881 F:      drivers/platform/x86/intel/int3472/
9882
9883 INTEL SPEED SELECT TECHNOLOGY
9884 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9885 L:      platform-driver-x86@vger.kernel.org
9886 S:      Maintained
9887 F:      drivers/platform/x86/intel/speed_select_if/
9888 F:      include/uapi/linux/isst_if.h
9889 F:      tools/power/x86/intel-speed-select/
9890
9891 INTEL STRATIX10 FIRMWARE DRIVERS
9892 M:      Dinh Nguyen <dinguyen@kernel.org>
9893 L:      linux-kernel@vger.kernel.org
9894 S:      Maintained
9895 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9896 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9897 F:      drivers/firmware/stratix10-rsu.c
9898 F:      drivers/firmware/stratix10-svc.c
9899 F:      include/linux/firmware/intel/stratix10-smc.h
9900 F:      include/linux/firmware/intel/stratix10-svc-client.h
9901
9902 INTEL TELEMETRY DRIVER
9903 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9904 M:      "David E. Box" <david.e.box@linux.intel.com>
9905 L:      platform-driver-x86@vger.kernel.org
9906 S:      Maintained
9907 F:      arch/x86/include/asm/intel_telemetry.h
9908 F:      drivers/platform/x86/intel/telemetry/
9909
9910 INTEL UNCORE FREQUENCY CONTROL
9911 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9912 L:      platform-driver-x86@vger.kernel.org
9913 S:      Maintained
9914 F:      drivers/platform/x86/intel/uncore-frequency.c
9915
9916 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
9917 M:      David E. Box <david.e.box@linux.intel.com>
9918 S:      Supported
9919 F:      drivers/platform/x86/intel/vsec.*
9920
9921 INTEL VIRTUAL BUTTON DRIVER
9922 M:      AceLan Kao <acelan.kao@canonical.com>
9923 L:      platform-driver-x86@vger.kernel.org
9924 S:      Maintained
9925 F:      drivers/platform/x86/intel/vbtn.c
9926
9927 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9928 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9929 L:      linux-wireless@vger.kernel.org
9930 S:      Supported
9931 F:      drivers/net/wireless/intel/iwlegacy/
9932
9933 INTEL WIRELESS WIFI LINK (iwlwifi)
9934 M:      Luca Coelho <luciano.coelho@intel.com>
9935 L:      linux-wireless@vger.kernel.org
9936 S:      Supported
9937 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9939 F:      drivers/net/wireless/intel/iwlwifi/
9940
9941 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9942 M:      Jithu Joseph <jithu.joseph@intel.com>
9943 R:      Maurice Ma <maurice.ma@intel.com>
9944 S:      Maintained
9945 W:      https://slimbootloader.github.io/security/firmware-update.html
9946 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
9947
9948 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9949 L:      Dell.Client.Kernel@dell.com
9950 S:      Maintained
9951 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
9952
9953 INTEL WWAN IOSM DRIVER
9954 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
9955 M:      Intel Corporation <linuxwwan@intel.com>
9956 L:      netdev@vger.kernel.org
9957 S:      Maintained
9958 F:      drivers/net/wwan/iosm/
9959
9960 INTEL(R) TRACE HUB
9961 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9962 S:      Supported
9963 F:      Documentation/trace/intel_th.rst
9964 F:      drivers/hwtracing/intel_th/
9965 F:      include/linux/intel_th.h
9966
9967 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9968 M:      Ning Sun <ning.sun@intel.com>
9969 L:      tboot-devel@lists.sourceforge.net
9970 S:      Supported
9971 W:      http://tboot.sourceforge.net
9972 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9973 F:      Documentation/x86/intel_txt.rst
9974 F:      arch/x86/kernel/tboot.c
9975 F:      include/linux/tboot.h
9976
9977 INTEL SGX
9978 M:      Jarkko Sakkinen <jarkko@kernel.org>
9979 R:      Dave Hansen <dave.hansen@linux.intel.com>
9980 L:      linux-sgx@vger.kernel.org
9981 S:      Supported
9982 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9984 F:      Documentation/x86/sgx.rst
9985 F:      arch/x86/entry/vdso/vsgx.S
9986 F:      arch/x86/include/asm/sgx.h
9987 F:      arch/x86/include/uapi/asm/sgx.h
9988 F:      arch/x86/kernel/cpu/sgx/*
9989 F:      tools/testing/selftests/sgx/*
9990 K:      \bSGX_
9991
9992 INTERCONNECT API
9993 M:      Georgi Djakov <djakov@kernel.org>
9994 L:      linux-pm@vger.kernel.org
9995 S:      Maintained
9996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
9997 F:      Documentation/devicetree/bindings/interconnect/
9998 F:      Documentation/driver-api/interconnect.rst
9999 F:      drivers/interconnect/
10000 F:      include/dt-bindings/interconnect/
10001 F:      include/linux/interconnect-provider.h
10002 F:      include/linux/interconnect.h
10003
10004 INTERRUPT COUNTER DRIVER
10005 M:      Oleksij Rempel <o.rempel@pengutronix.de>
10006 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10007 L:      linux-iio@vger.kernel.org
10008 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
10009 F:      drivers/counter/interrupt-cnt.c
10010
10011 INVENSENSE ICM-426xx IMU DRIVER
10012 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
10013 L:      linux-iio@vger.kernel.org
10014 S:      Maintained
10015 W:      https://invensense.tdk.com/
10016 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
10017 F:      drivers/iio/imu/inv_icm42600/
10018
10019 INVENSENSE MPU-3050 GYROSCOPE DRIVER
10020 M:      Linus Walleij <linus.walleij@linaro.org>
10021 L:      linux-iio@vger.kernel.org
10022 S:      Maintained
10023 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
10024 F:      drivers/iio/gyro/mpu3050*
10025
10026 IOC3 ETHERNET DRIVER
10027 M:      Ralf Baechle <ralf@linux-mips.org>
10028 L:      linux-mips@vger.kernel.org
10029 S:      Maintained
10030 F:      drivers/net/ethernet/sgi/ioc3-eth.c
10031
10032 IOMAP FILESYSTEM LIBRARY
10033 M:      Christoph Hellwig <hch@infradead.org>
10034 M:      Darrick J. Wong <djwong@kernel.org>
10035 M:      linux-xfs@vger.kernel.org
10036 M:      linux-fsdevel@vger.kernel.org
10037 L:      linux-xfs@vger.kernel.org
10038 L:      linux-fsdevel@vger.kernel.org
10039 S:      Supported
10040 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
10041 F:      fs/iomap/
10042 F:      include/linux/iomap.h
10043
10044 IOMMU DRIVERS
10045 M:      Joerg Roedel <joro@8bytes.org>
10046 M:      Will Deacon <will@kernel.org>
10047 L:      iommu@lists.linux-foundation.org
10048 S:      Maintained
10049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10050 F:      Documentation/devicetree/bindings/iommu/
10051 F:      Documentation/userspace-api/iommu.rst
10052 F:      drivers/iommu/
10053 F:      include/linux/iommu.h
10054 F:      include/linux/iova.h
10055 F:      include/linux/of_iommu.h
10056 F:      include/uapi/linux/iommu.h
10057
10058 IO_URING
10059 M:      Jens Axboe <axboe@kernel.dk>
10060 R:      Pavel Begunkov <asml.silence@gmail.com>
10061 L:      io-uring@vger.kernel.org
10062 S:      Maintained
10063 T:      git git://git.kernel.dk/linux-block
10064 T:      git git://git.kernel.dk/liburing
10065 F:      fs/io-wq.c
10066 F:      fs/io-wq.h
10067 F:      fs/io_uring.c
10068 F:      include/linux/io_uring.h
10069 F:      include/uapi/linux/io_uring.h
10070 F:      tools/io_uring/
10071
10072 IPMI SUBSYSTEM
10073 M:      Corey Minyard <minyard@acm.org>
10074 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
10075 S:      Supported
10076 W:      http://openipmi.sourceforge.net/
10077 F:      Documentation/driver-api/ipmi.rst
10078 F:      Documentation/devicetree/bindings/ipmi/
10079 F:      drivers/char/ipmi/
10080 F:      include/linux/ipmi*
10081 F:      include/uapi/linux/ipmi*
10082
10083 IPS SCSI RAID DRIVER
10084 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
10085 L:      linux-scsi@vger.kernel.org
10086 S:      Maintained
10087 W:      http://www.adaptec.com/
10088 F:      drivers/scsi/ips*
10089
10090 IPVS
10091 M:      Simon Horman <horms@verge.net.au>
10092 M:      Julian Anastasov <ja@ssi.bg>
10093 L:      netdev@vger.kernel.org
10094 L:      lvs-devel@vger.kernel.org
10095 S:      Maintained
10096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10098 F:      Documentation/networking/ipvs-sysctl.rst
10099 F:      include/net/ip_vs.h
10100 F:      include/uapi/linux/ip_vs.h
10101 F:      net/netfilter/ipvs/
10102
10103 IPWIRELESS DRIVER
10104 M:      Jiri Kosina <jikos@kernel.org>
10105 M:      David Sterba <dsterba@suse.com>
10106 S:      Odd Fixes
10107 F:      drivers/tty/ipwireless/
10108
10109 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10110 M:      Marc Zyngier <maz@kernel.org>
10111 S:      Maintained
10112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10113 F:      Documentation/core-api/irq/irq-domain.rst
10114 F:      include/linux/irqdomain.h
10115 F:      kernel/irq/irqdomain.c
10116 F:      kernel/irq/msi.c
10117
10118 IRQ SUBSYSTEM
10119 M:      Thomas Gleixner <tglx@linutronix.de>
10120 L:      linux-kernel@vger.kernel.org
10121 S:      Maintained
10122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10123 F:      kernel/irq/
10124
10125 IRQCHIP DRIVERS
10126 M:      Thomas Gleixner <tglx@linutronix.de>
10127 M:      Marc Zyngier <maz@kernel.org>
10128 L:      linux-kernel@vger.kernel.org
10129 S:      Maintained
10130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10131 F:      Documentation/devicetree/bindings/interrupt-controller/
10132 F:      drivers/irqchip/
10133
10134 ISA
10135 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10136 S:      Maintained
10137 F:      Documentation/driver-api/isa.rst
10138 F:      drivers/base/isa.c
10139 F:      include/linux/isa.h
10140
10141 ISA RADIO MODULE
10142 M:      Hans Verkuil <hverkuil@xs4all.nl>
10143 L:      linux-media@vger.kernel.org
10144 S:      Maintained
10145 W:      https://linuxtv.org
10146 T:      git git://linuxtv.org/media_tree.git
10147 F:      drivers/media/radio/radio-isa*
10148
10149 ISAPNP
10150 M:      Jaroslav Kysela <perex@perex.cz>
10151 S:      Maintained
10152 F:      Documentation/driver-api/isapnp.rst
10153 F:      drivers/pnp/isapnp/
10154 F:      include/linux/isapnp.h
10155
10156 ISCSI
10157 M:      Lee Duncan <lduncan@suse.com>
10158 M:      Chris Leech <cleech@redhat.com>
10159 L:      open-iscsi@googlegroups.com
10160 L:      linux-scsi@vger.kernel.org
10161 S:      Maintained
10162 W:      www.open-iscsi.com
10163 F:      drivers/scsi/*iscsi*
10164 F:      include/scsi/*iscsi*
10165
10166 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10167 M:      Peter Jones <pjones@redhat.com>
10168 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10169 S:      Maintained
10170 F:      drivers/firmware/iscsi_ibft*
10171
10172 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10173 M:      Sagi Grimberg <sagi@grimberg.me>
10174 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10175 L:      linux-rdma@vger.kernel.org
10176 S:      Supported
10177 W:      http://www.openfabrics.org
10178 W:      www.open-iscsi.org
10179 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10180 F:      drivers/infiniband/ulp/iser/
10181
10182 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10183 M:      Sagi Grimberg <sagi@grimberg.me>
10184 L:      linux-rdma@vger.kernel.org
10185 L:      target-devel@vger.kernel.org
10186 S:      Supported
10187 W:      http://www.linux-iscsi.org
10188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10189 F:      drivers/infiniband/ulp/isert
10190
10191 ISDN/CMTP OVER BLUETOOTH
10192 M:      Karsten Keil <isdn@linux-pingi.de>
10193 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10194 L:      netdev@vger.kernel.org
10195 S:      Odd Fixes
10196 W:      http://www.isdn4linux.de
10197 F:      Documentation/isdn/
10198 F:      drivers/isdn/capi/
10199 F:      include/linux/isdn/
10200 F:      include/uapi/linux/isdn/
10201 F:      net/bluetooth/cmtp/
10202
10203 ISDN/mISDN SUBSYSTEM
10204 M:      Karsten Keil <isdn@linux-pingi.de>
10205 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10206 L:      netdev@vger.kernel.org
10207 S:      Maintained
10208 W:      http://www.isdn4linux.de
10209 F:      drivers/isdn/Kconfig
10210 F:      drivers/isdn/Makefile
10211 F:      drivers/isdn/hardware/
10212 F:      drivers/isdn/mISDN/
10213
10214 IT87 HARDWARE MONITORING DRIVER
10215 M:      Jean Delvare <jdelvare@suse.com>
10216 L:      linux-hwmon@vger.kernel.org
10217 S:      Maintained
10218 F:      Documentation/hwmon/it87.rst
10219 F:      drivers/hwmon/it87.c
10220
10221 IT913X MEDIA DRIVER
10222 M:      Antti Palosaari <crope@iki.fi>
10223 L:      linux-media@vger.kernel.org
10224 S:      Maintained
10225 W:      https://linuxtv.org
10226 W:      http://palosaari.fi/linux/
10227 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10228 T:      git git://linuxtv.org/anttip/media_tree.git
10229 F:      drivers/media/tuners/it913x*
10230
10231 ITE IT66121 HDMI BRIDGE DRIVER
10232 M:      Phong LE <ple@baylibre.com>
10233 M:      Neil Armstrong <narmstrong@baylibre.com>
10234 S:      Maintained
10235 T:      git git://anongit.freedesktop.org/drm/drm-misc
10236 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10237 F:      drivers/gpu/drm/bridge/ite-it66121.c
10238
10239 IVTV VIDEO4LINUX DRIVER
10240 M:      Andy Walls <awalls@md.metrocast.net>
10241 L:      linux-media@vger.kernel.org
10242 S:      Maintained
10243 W:      https://linuxtv.org
10244 T:      git git://linuxtv.org/media_tree.git
10245 F:      Documentation/admin-guide/media/ivtv*
10246 F:      drivers/media/pci/ivtv/
10247 F:      include/uapi/linux/ivtv*
10248
10249 IX2505V MEDIA DRIVER
10250 M:      Malcolm Priestley <tvboxspy@gmail.com>
10251 L:      linux-media@vger.kernel.org
10252 S:      Maintained
10253 W:      https://linuxtv.org
10254 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10255 F:      drivers/media/dvb-frontends/ix2505v*
10256
10257 JAILHOUSE HYPERVISOR INTERFACE
10258 M:      Jan Kiszka <jan.kiszka@siemens.com>
10259 L:      jailhouse-dev@googlegroups.com
10260 S:      Maintained
10261 F:      arch/x86/include/asm/jailhouse_para.h
10262 F:      arch/x86/kernel/jailhouse.c
10263
10264 JC42.4 TEMPERATURE SENSOR DRIVER
10265 M:      Guenter Roeck <linux@roeck-us.net>
10266 L:      linux-hwmon@vger.kernel.org
10267 S:      Maintained
10268 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10269 F:      Documentation/hwmon/jc42.rst
10270 F:      drivers/hwmon/jc42.c
10271
10272 JFS FILESYSTEM
10273 M:      Dave Kleikamp <shaggy@kernel.org>
10274 L:      jfs-discussion@lists.sourceforge.net
10275 S:      Maintained
10276 W:      http://jfs.sourceforge.net/
10277 T:      git git://github.com/kleikamp/linux-shaggy.git
10278 F:      Documentation/admin-guide/jfs.rst
10279 F:      fs/jfs/
10280
10281 JME NETWORK DRIVER
10282 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10283 L:      netdev@vger.kernel.org
10284 S:      Maintained
10285 F:      drivers/net/ethernet/jme.*
10286
10287 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10288 M:      David Woodhouse <dwmw2@infradead.org>
10289 M:      Richard Weinberger <richard@nod.at>
10290 L:      linux-mtd@lists.infradead.org
10291 S:      Odd Fixes
10292 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10293 T:      git git://git.infradead.org/ubifs-2.6.git
10294 F:      fs/jffs2/
10295 F:      include/uapi/linux/jffs2.h
10296
10297 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10298 M:      "Theodore Ts'o" <tytso@mit.edu>
10299 M:      Jan Kara <jack@suse.com>
10300 L:      linux-ext4@vger.kernel.org
10301 S:      Maintained
10302 F:      fs/jbd2/
10303 F:      include/linux/jbd2.h
10304
10305 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10306 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10307 L:      linux-media@vger.kernel.org
10308 L:      linux-renesas-soc@vger.kernel.org
10309 S:      Maintained
10310 F:      drivers/media/platform/rcar_jpu.c
10311
10312 JSM Neo PCI based serial card
10313 L:      linux-serial@vger.kernel.org
10314 S:      Orphan
10315 F:      drivers/tty/serial/jsm/
10316
10317 K10TEMP HARDWARE MONITORING DRIVER
10318 M:      Clemens Ladisch <clemens@ladisch.de>
10319 L:      linux-hwmon@vger.kernel.org
10320 S:      Maintained
10321 F:      Documentation/hwmon/k10temp.rst
10322 F:      drivers/hwmon/k10temp.c
10323
10324 K8TEMP HARDWARE MONITORING DRIVER
10325 M:      Rudolf Marek <r.marek@assembler.cz>
10326 L:      linux-hwmon@vger.kernel.org
10327 S:      Maintained
10328 F:      Documentation/hwmon/k8temp.rst
10329 F:      drivers/hwmon/k8temp.c
10330
10331 KASAN
10332 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10333 R:      Alexander Potapenko <glider@google.com>
10334 R:      Andrey Konovalov <andreyknvl@gmail.com>
10335 R:      Dmitry Vyukov <dvyukov@google.com>
10336 L:      kasan-dev@googlegroups.com
10337 S:      Maintained
10338 F:      Documentation/dev-tools/kasan.rst
10339 F:      arch/*/include/asm/*kasan.h
10340 F:      arch/*/mm/kasan_init*
10341 F:      include/linux/kasan*.h
10342 F:      lib/Kconfig.kasan
10343 F:      lib/test_kasan*.c
10344 F:      mm/kasan/
10345 F:      scripts/Makefile.kasan
10346
10347 KCONFIG
10348 M:      Masahiro Yamada <masahiroy@kernel.org>
10349 L:      linux-kbuild@vger.kernel.org
10350 S:      Maintained
10351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10352 F:      Documentation/kbuild/kconfig*
10353 F:      scripts/Kconfig.include
10354 F:      scripts/kconfig/
10355
10356 KCOV
10357 R:      Dmitry Vyukov <dvyukov@google.com>
10358 R:      Andrey Konovalov <andreyknvl@gmail.com>
10359 L:      kasan-dev@googlegroups.com
10360 S:      Maintained
10361 F:      Documentation/dev-tools/kcov.rst
10362 F:      include/linux/kcov.h
10363 F:      include/uapi/linux/kcov.h
10364 F:      kernel/kcov.c
10365 F:      scripts/Makefile.kcov
10366
10367 KCSAN
10368 M:      Marco Elver <elver@google.com>
10369 R:      Dmitry Vyukov <dvyukov@google.com>
10370 L:      kasan-dev@googlegroups.com
10371 S:      Maintained
10372 F:      Documentation/dev-tools/kcsan.rst
10373 F:      include/linux/kcsan*.h
10374 F:      kernel/kcsan/
10375 F:      lib/Kconfig.kcsan
10376 F:      scripts/Makefile.kcsan
10377
10378 KDUMP
10379 M:      Baoquan He <bhe@redhat.com>
10380 R:      Vivek Goyal <vgoyal@redhat.com>
10381 R:      Dave Young <dyoung@redhat.com>
10382 L:      kexec@lists.infradead.org
10383 S:      Maintained
10384 W:      http://lse.sourceforge.net/kdump/
10385 F:      Documentation/admin-guide/kdump/
10386 F:      fs/proc/vmcore.c
10387 F:      include/linux/crash_core.h
10388 F:      include/linux/crash_dump.h
10389 F:      include/uapi/linux/vmcore.h
10390 F:      kernel/crash_*.c
10391
10392 KEENE FM RADIO TRANSMITTER DRIVER
10393 M:      Hans Verkuil <hverkuil@xs4all.nl>
10394 L:      linux-media@vger.kernel.org
10395 S:      Maintained
10396 W:      https://linuxtv.org
10397 T:      git git://linuxtv.org/media_tree.git
10398 F:      drivers/media/radio/radio-keene*
10399
10400 KERNEL AUTOMOUNTER
10401 M:      Ian Kent <raven@themaw.net>
10402 L:      autofs@vger.kernel.org
10403 S:      Maintained
10404 F:      fs/autofs/
10405
10406 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10407 M:      Masahiro Yamada <masahiroy@kernel.org>
10408 M:      Michal Marek <michal.lkml@markovi.net>
10409 R:      Nick Desaulniers <ndesaulniers@google.com>
10410 L:      linux-kbuild@vger.kernel.org
10411 S:      Maintained
10412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10413 F:      Documentation/kbuild/
10414 F:      Makefile
10415 F:      scripts/*vmlinux*
10416 F:      scripts/Kbuild*
10417 F:      scripts/Makefile*
10418 F:      scripts/basic/
10419 F:      scripts/dummy-tools/
10420 F:      scripts/mk*
10421 F:      scripts/mod/
10422 F:      scripts/package/
10423
10424 KERNEL JANITORS
10425 L:      kernel-janitors@vger.kernel.org
10426 S:      Odd Fixes
10427 W:      http://kernelnewbies.org/KernelJanitors
10428
10429 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10430 M:      Chuck Lever <chuck.lever@oracle.com>
10431 L:      linux-nfs@vger.kernel.org
10432 S:      Supported
10433 W:      http://nfs.sourceforge.net/
10434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
10435 F:      fs/lockd/
10436 F:      fs/nfs_common/
10437 F:      fs/nfsd/
10438 F:      include/linux/lockd/
10439 F:      include/linux/sunrpc/
10440 F:      include/uapi/linux/nfsd/
10441 F:      include/uapi/linux/sunrpc/
10442 F:      net/sunrpc/
10443 F:      Documentation/filesystems/nfs/
10444
10445 KERNEL REGRESSIONS
10446 M:      Thorsten Leemhuis <linux@leemhuis.info>
10447 L:      regressions@lists.linux.dev
10448 S:      Supported
10449
10450 KERNEL SELFTEST FRAMEWORK
10451 M:      Shuah Khan <shuah@kernel.org>
10452 M:      Shuah Khan <skhan@linuxfoundation.org>
10453 L:      linux-kselftest@vger.kernel.org
10454 S:      Maintained
10455 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10457 F:      Documentation/dev-tools/kselftest*
10458 F:      tools/testing/selftests/
10459
10460 KERNEL SMB3 SERVER (KSMBD)
10461 M:      Namjae Jeon <linkinjeon@kernel.org>
10462 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
10463 M:      Steve French <sfrench@samba.org>
10464 M:      Hyunchul Lee <hyc.lee@gmail.com>
10465 L:      linux-cifs@vger.kernel.org
10466 S:      Maintained
10467 T:      git git://git.samba.org/ksmbd.git
10468 F:      fs/ksmbd/
10469 F:      fs/smbfs_common/
10470
10471 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10472 M:      Brendan Higgins <brendanhiggins@google.com>
10473 L:      linux-kselftest@vger.kernel.org
10474 L:      kunit-dev@googlegroups.com
10475 S:      Maintained
10476 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10477 F:      Documentation/dev-tools/kunit/
10478 F:      include/kunit/
10479 F:      lib/kunit/
10480 F:      tools/testing/kunit/
10481
10482 KERNEL USERMODE HELPER
10483 M:      Luis Chamberlain <mcgrof@kernel.org>
10484 L:      linux-kernel@vger.kernel.org
10485 S:      Maintained
10486 F:      include/linux/umh.h
10487 F:      kernel/umh.c
10488
10489 KERNEL VIRTUAL MACHINE (KVM)
10490 M:      Paolo Bonzini <pbonzini@redhat.com>
10491 L:      kvm@vger.kernel.org
10492 S:      Supported
10493 W:      http://www.linux-kvm.org
10494 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10495 F:      Documentation/virt/kvm/
10496 F:      include/asm-generic/kvm*
10497 F:      include/kvm/iodev.h
10498 F:      include/linux/kvm*
10499 F:      include/trace/events/kvm.h
10500 F:      include/uapi/asm-generic/kvm*
10501 F:      include/uapi/linux/kvm*
10502 F:      tools/kvm/
10503 F:      tools/testing/selftests/kvm/
10504 F:      virt/kvm/*
10505
10506 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10507 M:      Marc Zyngier <maz@kernel.org>
10508 R:      James Morse <james.morse@arm.com>
10509 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10510 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10511 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10512 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10513 S:      Maintained
10514 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10515 F:      arch/arm64/include/asm/kvm*
10516 F:      arch/arm64/include/uapi/asm/kvm*
10517 F:      arch/arm64/kvm/
10518 F:      include/kvm/arm_*
10519 F:      tools/testing/selftests/kvm/*/aarch64/
10520 F:      tools/testing/selftests/kvm/aarch64/
10521
10522 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10523 M:      Huacai Chen <chenhuacai@kernel.org>
10524 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10525 L:      linux-mips@vger.kernel.org
10526 L:      kvm@vger.kernel.org
10527 S:      Maintained
10528 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10529 F:      arch/mips/include/asm/kvm*
10530 F:      arch/mips/include/uapi/asm/kvm*
10531 F:      arch/mips/kvm/
10532
10533 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10534 L:      linuxppc-dev@lists.ozlabs.org
10535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
10536 F:      arch/powerpc/include/asm/kvm*
10537 F:      arch/powerpc/include/uapi/asm/kvm*
10538 F:      arch/powerpc/kernel/kvm*
10539 F:      arch/powerpc/kvm/
10540
10541 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
10542 M:      Anup Patel <anup.patel@wdc.com>
10543 R:      Atish Patra <atish.patra@wdc.com>
10544 L:      kvm@vger.kernel.org
10545 L:      kvm-riscv@lists.infradead.org
10546 L:      linux-riscv@lists.infradead.org
10547 S:      Maintained
10548 T:      git git://github.com/kvm-riscv/linux.git
10549 F:      arch/riscv/include/asm/kvm*
10550 F:      arch/riscv/include/uapi/asm/kvm*
10551 F:      arch/riscv/kvm/
10552
10553 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10554 M:      Christian Borntraeger <borntraeger@linux.ibm.com>
10555 M:      Janosch Frank <frankja@linux.ibm.com>
10556 R:      David Hildenbrand <david@redhat.com>
10557 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10558 L:      kvm@vger.kernel.org
10559 S:      Supported
10560 W:      http://www.ibm.com/developerworks/linux/linux390/
10561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10562 F:      Documentation/virt/kvm/s390*
10563 F:      arch/s390/include/asm/gmap.h
10564 F:      arch/s390/include/asm/kvm*
10565 F:      arch/s390/include/uapi/asm/kvm*
10566 F:      arch/s390/kernel/uv.c
10567 F:      arch/s390/kvm/
10568 F:      arch/s390/mm/gmap.c
10569 F:      tools/testing/selftests/kvm/*/s390x/
10570 F:      tools/testing/selftests/kvm/s390x/
10571
10572 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10573 M:      Paolo Bonzini <pbonzini@redhat.com>
10574 R:      Sean Christopherson <seanjc@google.com>
10575 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10576 R:      Wanpeng Li <wanpengli@tencent.com>
10577 R:      Jim Mattson <jmattson@google.com>
10578 R:      Joerg Roedel <joro@8bytes.org>
10579 L:      kvm@vger.kernel.org
10580 S:      Supported
10581 W:      http://www.linux-kvm.org
10582 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10583 F:      arch/x86/include/asm/kvm*
10584 F:      arch/x86/include/asm/pvclock-abi.h
10585 F:      arch/x86/include/asm/svm.h
10586 F:      arch/x86/include/asm/vmx*.h
10587 F:      arch/x86/include/uapi/asm/kvm*
10588 F:      arch/x86/include/uapi/asm/svm.h
10589 F:      arch/x86/include/uapi/asm/vmx.h
10590 F:      arch/x86/kernel/kvm.c
10591 F:      arch/x86/kernel/kvmclock.c
10592 F:      arch/x86/kvm/
10593 F:      arch/x86/kvm/*/
10594
10595 KERNFS
10596 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10597 M:      Tejun Heo <tj@kernel.org>
10598 S:      Supported
10599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10600 F:      fs/kernfs/
10601 F:      include/linux/kernfs.h
10602
10603 KEXEC
10604 M:      Eric Biederman <ebiederm@xmission.com>
10605 L:      kexec@lists.infradead.org
10606 S:      Maintained
10607 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10608 F:      include/linux/kexec.h
10609 F:      include/uapi/linux/kexec.h
10610 F:      kernel/kexec*
10611
10612 KEYS-ENCRYPTED
10613 M:      Mimi Zohar <zohar@linux.ibm.com>
10614 L:      linux-integrity@vger.kernel.org
10615 L:      keyrings@vger.kernel.org
10616 S:      Supported
10617 F:      Documentation/security/keys/trusted-encrypted.rst
10618 F:      include/keys/encrypted-type.h
10619 F:      security/keys/encrypted-keys/
10620
10621 KEYS-TRUSTED
10622 M:      James Bottomley <jejb@linux.ibm.com>
10623 M:      Jarkko Sakkinen <jarkko@kernel.org>
10624 M:      Mimi Zohar <zohar@linux.ibm.com>
10625 L:      linux-integrity@vger.kernel.org
10626 L:      keyrings@vger.kernel.org
10627 S:      Supported
10628 F:      Documentation/security/keys/trusted-encrypted.rst
10629 F:      include/keys/trusted-type.h
10630 F:      include/keys/trusted_tpm.h
10631 F:      security/keys/trusted-keys/
10632
10633 KEYS-TRUSTED-TEE
10634 M:      Sumit Garg <sumit.garg@linaro.org>
10635 L:      linux-integrity@vger.kernel.org
10636 L:      keyrings@vger.kernel.org
10637 S:      Supported
10638 F:      include/keys/trusted_tee.h
10639 F:      security/keys/trusted-keys/trusted_tee.c
10640
10641 KEYS/KEYRINGS
10642 M:      David Howells <dhowells@redhat.com>
10643 M:      Jarkko Sakkinen <jarkko@kernel.org>
10644 L:      keyrings@vger.kernel.org
10645 S:      Maintained
10646 F:      Documentation/security/keys/core.rst
10647 F:      include/keys/
10648 F:      include/linux/key-type.h
10649 F:      include/linux/key.h
10650 F:      include/linux/keyctl.h
10651 F:      include/uapi/linux/keyctl.h
10652 F:      security/keys/
10653
10654 KFENCE
10655 M:      Alexander Potapenko <glider@google.com>
10656 M:      Marco Elver <elver@google.com>
10657 R:      Dmitry Vyukov <dvyukov@google.com>
10658 L:      kasan-dev@googlegroups.com
10659 S:      Maintained
10660 F:      Documentation/dev-tools/kfence.rst
10661 F:      arch/*/include/asm/kfence.h
10662 F:      include/linux/kfence.h
10663 F:      lib/Kconfig.kfence
10664 F:      mm/kfence/
10665
10666 KFIFO
10667 M:      Stefani Seibold <stefani@seibold.net>
10668 S:      Maintained
10669 F:      include/linux/kfifo.h
10670 F:      lib/kfifo.c
10671 F:      samples/kfifo/
10672
10673 KGDB / KDB /debug_core
10674 M:      Jason Wessel <jason.wessel@windriver.com>
10675 M:      Daniel Thompson <daniel.thompson@linaro.org>
10676 R:      Douglas Anderson <dianders@chromium.org>
10677 L:      kgdb-bugreport@lists.sourceforge.net
10678 S:      Maintained
10679 W:      http://kgdb.wiki.kernel.org/
10680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10681 F:      Documentation/dev-tools/kgdb.rst
10682 F:      drivers/misc/kgdbts.c
10683 F:      drivers/tty/serial/kgdboc.c
10684 F:      include/linux/kdb.h
10685 F:      include/linux/kgdb.h
10686 F:      kernel/debug/
10687
10688 KHADAS MCU MFD DRIVER
10689 M:      Neil Armstrong <narmstrong@baylibre.com>
10690 L:      linux-amlogic@lists.infradead.org
10691 S:      Maintained
10692 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10693 F:      drivers/mfd/khadas-mcu.c
10694 F:      include/linux/mfd/khadas-mcu.h
10695 F:      drivers/thermal/khadas_mcu_fan.c
10696
10697 KMEMLEAK
10698 M:      Catalin Marinas <catalin.marinas@arm.com>
10699 S:      Maintained
10700 F:      Documentation/dev-tools/kmemleak.rst
10701 F:      include/linux/kmemleak.h
10702 F:      mm/kmemleak.c
10703 F:      samples/kmemleak/kmemleak-test.c
10704
10705 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10706 M:      Luis Chamberlain <mcgrof@kernel.org>
10707 L:      linux-kernel@vger.kernel.org
10708 S:      Maintained
10709 F:      include/linux/kmod.h
10710 F:      kernel/kmod.c
10711 F:      lib/test_kmod.c
10712 F:      tools/testing/selftests/kmod/
10713
10714 KPROBES
10715 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10716 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10717 M:      "David S. Miller" <davem@davemloft.net>
10718 M:      Masami Hiramatsu <mhiramat@kernel.org>
10719 S:      Maintained
10720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
10721 F:      Documentation/trace/kprobes.rst
10722 F:      include/asm-generic/kprobes.h
10723 F:      include/linux/kprobes.h
10724 F:      kernel/kprobes.c
10725 F:      lib/test_kprobes.c
10726 F:      samples/kprobes
10727
10728 KS0108 LCD CONTROLLER DRIVER
10729 M:      Miguel Ojeda <ojeda@kernel.org>
10730 S:      Maintained
10731 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10732 F:      drivers/auxdisplay/ks0108.c
10733 F:      include/linux/ks0108.h
10734
10735 KTD253 BACKLIGHT DRIVER
10736 M:      Linus Walleij <linus.walleij@linaro.org>
10737 S:      Maintained
10738 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10739 F:      drivers/video/backlight/ktd253-backlight.c
10740
10741 KTEST
10742 M:      Steven Rostedt <rostedt@goodmis.org>
10743 M:      John Hawley <warthog9@eaglescrag.net>
10744 S:      Maintained
10745 F:      tools/testing/ktest
10746
10747 L3MDEV
10748 M:      David Ahern <dsahern@kernel.org>
10749 L:      netdev@vger.kernel.org
10750 S:      Maintained
10751 F:      include/net/l3mdev.h
10752 F:      net/l3mdev
10753
10754 L7 BPF FRAMEWORK
10755 M:      John Fastabend <john.fastabend@gmail.com>
10756 M:      Daniel Borkmann <daniel@iogearbox.net>
10757 M:      Jakub Sitnicki <jakub@cloudflare.com>
10758 M:      Lorenz Bauer <lmb@cloudflare.com>
10759 L:      netdev@vger.kernel.org
10760 L:      bpf@vger.kernel.org
10761 S:      Maintained
10762 F:      include/linux/skmsg.h
10763 F:      net/core/skmsg.c
10764 F:      net/core/sock_map.c
10765 F:      net/ipv4/tcp_bpf.c
10766 F:      net/ipv4/udp_bpf.c
10767 F:      net/unix/unix_bpf.c
10768
10769 LANDLOCK SECURITY MODULE
10770 M:      Mickaël Salaün <mic@digikod.net>
10771 L:      linux-security-module@vger.kernel.org
10772 S:      Supported
10773 W:      https://landlock.io
10774 T:      git https://github.com/landlock-lsm/linux.git
10775 F:      Documentation/security/landlock.rst
10776 F:      Documentation/userspace-api/landlock.rst
10777 F:      include/uapi/linux/landlock.h
10778 F:      samples/landlock/
10779 F:      security/landlock/
10780 F:      tools/testing/selftests/landlock/
10781 K:      landlock
10782 K:      LANDLOCK
10783
10784 LANTIQ / INTEL Ethernet drivers
10785 M:      Hauke Mehrtens <hauke@hauke-m.de>
10786 L:      netdev@vger.kernel.org
10787 S:      Maintained
10788 F:      drivers/net/dsa/lantiq_gswip.c
10789 F:      drivers/net/dsa/lantiq_pce.h
10790 F:      drivers/net/ethernet/lantiq_xrx200.c
10791 F:      net/dsa/tag_gswip.c
10792
10793 LANTIQ MIPS ARCHITECTURE
10794 M:      John Crispin <john@phrozen.org>
10795 L:      linux-mips@vger.kernel.org
10796 S:      Maintained
10797 F:      arch/mips/lantiq
10798 F:      drivers/soc/lantiq
10799
10800 LASI 53c700 driver for PARISC
10801 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10802 L:      linux-scsi@vger.kernel.org
10803 S:      Maintained
10804 F:      Documentation/scsi/53c700.rst
10805 F:      drivers/scsi/53c700*
10806
10807 LEAKING_ADDRESSES
10808 M:      Tobin C. Harding <me@tobin.cc>
10809 M:      Tycho Andersen <tycho@tycho.pizza>
10810 L:      linux-hardening@vger.kernel.org
10811 S:      Maintained
10812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10813 F:      scripts/leaking_addresses.pl
10814
10815 LED SUBSYSTEM
10816 M:      Pavel Machek <pavel@ucw.cz>
10817 L:      linux-leds@vger.kernel.org
10818 S:      Maintained
10819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10820 F:      Documentation/devicetree/bindings/leds/
10821 F:      drivers/leds/
10822 F:      include/linux/leds.h
10823
10824 LEGACY EEPROM DRIVER
10825 M:      Jean Delvare <jdelvare@suse.com>
10826 S:      Maintained
10827 F:      Documentation/misc-devices/eeprom.rst
10828 F:      drivers/misc/eeprom/eeprom.c
10829
10830 LEGO MINDSTORMS EV3
10831 R:      David Lechner <david@lechnology.com>
10832 S:      Maintained
10833 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10834 F:      arch/arm/boot/dts/da850-lego-ev3.dts
10835 F:      drivers/power/supply/lego_ev3_battery.c
10836
10837 LEGO USB Tower driver
10838 M:      Juergen Stuber <starblue@users.sourceforge.net>
10839 L:      legousb-devel@lists.sourceforge.net
10840 S:      Maintained
10841 W:      http://legousb.sourceforge.net/
10842 F:      drivers/usb/misc/legousbtower.c
10843
10844 LETSKETCH HID TABLET DRIVER
10845 M:      Hans de Goede <hdegoede@redhat.com>
10846 L:      linux-input@vger.kernel.org
10847 S:      Maintained
10848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10849 F:      drivers/hid/hid-letsketch.c
10850
10851 LG LAPTOP EXTRAS
10852 M:      Matan Ziv-Av <matan@svgalib.org>
10853 L:      platform-driver-x86@vger.kernel.org
10854 S:      Maintained
10855 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
10856 F:      Documentation/admin-guide/laptops/lg-laptop.rst
10857 F:      drivers/platform/x86/lg-laptop.c
10858
10859 LG2160 MEDIA DRIVER
10860 M:      Michael Krufky <mkrufky@linuxtv.org>
10861 L:      linux-media@vger.kernel.org
10862 S:      Maintained
10863 W:      https://linuxtv.org
10864 W:      http://github.com/mkrufky
10865 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10866 T:      git git://linuxtv.org/mkrufky/tuners.git
10867 F:      drivers/media/dvb-frontends/lg2160.*
10868
10869 LGDT3305 MEDIA DRIVER
10870 M:      Michael Krufky <mkrufky@linuxtv.org>
10871 L:      linux-media@vger.kernel.org
10872 S:      Maintained
10873 W:      https://linuxtv.org
10874 W:      http://github.com/mkrufky
10875 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10876 T:      git git://linuxtv.org/mkrufky/tuners.git
10877 F:      drivers/media/dvb-frontends/lgdt3305.*
10878
10879 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10880 M:      Viresh Kumar <vireshk@kernel.org>
10881 L:      linux-ide@vger.kernel.org
10882 S:      Maintained
10883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10884 F:      drivers/ata/pata_arasan_cf.c
10885 F:      include/linux/pata_arasan_cf_data.h
10886
10887 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10888 M:      Linus Walleij <linus.walleij@linaro.org>
10889 L:      linux-ide@vger.kernel.org
10890 S:      Maintained
10891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10892 F:      drivers/ata/pata_ftide010.c
10893 F:      drivers/ata/sata_gemini.c
10894 F:      drivers/ata/sata_gemini.h
10895
10896 LIBATA SATA AHCI PLATFORM devices support
10897 M:      Hans de Goede <hdegoede@redhat.com>
10898 M:      Jens Axboe <axboe@kernel.dk>
10899 L:      linux-ide@vger.kernel.org
10900 S:      Maintained
10901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10902 F:      drivers/ata/ahci_platform.c
10903 F:      drivers/ata/libahci_platform.c
10904 F:      include/linux/ahci_platform.h
10905
10906 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10907 M:      Mikael Pettersson <mikpelinux@gmail.com>
10908 L:      linux-ide@vger.kernel.org
10909 S:      Maintained
10910 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10911 F:      drivers/ata/sata_promise.*
10912
10913 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10914 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
10915 L:      linux-ide@vger.kernel.org
10916 S:      Maintained
10917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
10918 F:      Documentation/devicetree/bindings/ata/
10919 F:      drivers/ata/
10920 F:      include/linux/ata.h
10921 F:      include/linux/libata.h
10922
10923 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10924 M:      Dan Williams <dan.j.williams@intel.com>
10925 M:      Vishal Verma <vishal.l.verma@intel.com>
10926 M:      Dave Jiang <dave.jiang@intel.com>
10927 L:      nvdimm@lists.linux.dev
10928 S:      Supported
10929 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10930 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10931 F:      drivers/nvdimm/blk.c
10932 F:      drivers/nvdimm/region_devs.c
10933
10934 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10935 M:      Vishal Verma <vishal.l.verma@intel.com>
10936 M:      Dan Williams <dan.j.williams@intel.com>
10937 M:      Dave Jiang <dave.jiang@intel.com>
10938 L:      nvdimm@lists.linux.dev
10939 S:      Supported
10940 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10941 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10942 F:      drivers/nvdimm/btt*
10943
10944 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10945 M:      Dan Williams <dan.j.williams@intel.com>
10946 M:      Vishal Verma <vishal.l.verma@intel.com>
10947 M:      Dave Jiang <dave.jiang@intel.com>
10948 L:      nvdimm@lists.linux.dev
10949 S:      Supported
10950 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10951 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10952 F:      drivers/nvdimm/pmem*
10953
10954 LIBNVDIMM: DEVICETREE BINDINGS
10955 M:      Oliver O'Halloran <oohall@gmail.com>
10956 L:      nvdimm@lists.linux.dev
10957 S:      Supported
10958 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10959 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10960 F:      drivers/nvdimm/of_pmem.c
10961
10962 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10963 M:      Dan Williams <dan.j.williams@intel.com>
10964 M:      Vishal Verma <vishal.l.verma@intel.com>
10965 M:      Dave Jiang <dave.jiang@intel.com>
10966 M:      Ira Weiny <ira.weiny@intel.com>
10967 L:      nvdimm@lists.linux.dev
10968 S:      Supported
10969 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10970 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10972 F:      drivers/acpi/nfit/*
10973 F:      drivers/nvdimm/*
10974 F:      include/linux/libnvdimm.h
10975 F:      include/linux/nd.h
10976 F:      include/uapi/linux/ndctl.h
10977 F:      tools/testing/nvdimm/
10978
10979 LICENSES and SPDX stuff
10980 M:      Thomas Gleixner <tglx@linutronix.de>
10981 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10982 L:      linux-spdx@vger.kernel.org
10983 S:      Maintained
10984 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10985 F:      COPYING
10986 F:      Documentation/process/license-rules.rst
10987 F:      LICENSES/
10988 F:      scripts/spdxcheck-test.sh
10989 F:      scripts/spdxcheck.py
10990
10991 LINEAR RANGES HELPERS
10992 M:      Mark Brown <broonie@kernel.org>
10993 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10994 F:      lib/linear_ranges.c
10995 F:      lib/test_linear_ranges.c
10996 F:      include/linux/linear_range.h
10997
10998 LINUX FOR POWER MACINTOSH
10999 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11000 L:      linuxppc-dev@lists.ozlabs.org
11001 S:      Odd Fixes
11002 F:      arch/powerpc/platforms/powermac/
11003 F:      drivers/macintosh/
11004
11005 LINUX FOR POWERPC (32-BIT AND 64-BIT)
11006 M:      Michael Ellerman <mpe@ellerman.id.au>
11007 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11008 R:      Paul Mackerras <paulus@samba.org>
11009 L:      linuxppc-dev@lists.ozlabs.org
11010 S:      Supported
11011 W:      https://github.com/linuxppc/wiki/wiki
11012 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11014 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
11015 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
11016 F:      Documentation/devicetree/bindings/powerpc/
11017 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
11018 F:      Documentation/powerpc/
11019 F:      arch/powerpc/
11020 F:      drivers/*/*/*pasemi*
11021 F:      drivers/*/*pasemi*
11022 F:      drivers/char/tpm/tpm_ibmvtpm*
11023 F:      drivers/crypto/nx/
11024 F:      drivers/crypto/vmx/
11025 F:      drivers/i2c/busses/i2c-opal.c
11026 F:      drivers/net/ethernet/ibm/ibmveth.*
11027 F:      drivers/net/ethernet/ibm/ibmvnic.*
11028 F:      drivers/pci/hotplug/pnv_php.c
11029 F:      drivers/pci/hotplug/rpa*
11030 F:      drivers/rtc/rtc-opal.c
11031 F:      drivers/scsi/ibmvscsi/
11032 F:      drivers/tty/hvc/hvc_opal.c
11033 F:      drivers/watchdog/wdrtas.c
11034 F:      tools/testing/selftests/powerpc
11035 N:      /pmac
11036 N:      powermac
11037 N:      powernv
11038 N:      [^a-z0-9]ps3
11039 N:      pseries
11040
11041 LINUX FOR POWERPC EMBEDDED MPC5XXX
11042 M:      Anatolij Gustschin <agust@denx.de>
11043 L:      linuxppc-dev@lists.ozlabs.org
11044 S:      Odd Fixes
11045 F:      arch/powerpc/platforms/512x/
11046 F:      arch/powerpc/platforms/52xx/
11047
11048 LINUX FOR POWERPC EMBEDDED PPC4XX
11049 L:      linuxppc-dev@lists.ozlabs.org
11050 S:      Orphan
11051 F:      arch/powerpc/platforms/40x/
11052 F:      arch/powerpc/platforms/44x/
11053
11054 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11055 M:      Scott Wood <oss@buserror.net>
11056 L:      linuxppc-dev@lists.ozlabs.org
11057 S:      Odd fixes
11058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11059 F:      Documentation/devicetree/bindings/powerpc/fsl/
11060 F:      arch/powerpc/platforms/83xx/
11061 F:      arch/powerpc/platforms/85xx/
11062
11063 LINUX FOR POWERPC EMBEDDED PPC8XX
11064 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
11065 L:      linuxppc-dev@lists.ozlabs.org
11066 S:      Maintained
11067 F:      arch/powerpc/platforms/8xx/
11068
11069 LINUX KERNEL DUMP TEST MODULE (LKDTM)
11070 M:      Kees Cook <keescook@chromium.org>
11071 S:      Maintained
11072 F:      drivers/misc/lkdtm/*
11073 F:      tools/testing/selftests/lkdtm/*
11074
11075 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11076 M:      Alan Stern <stern@rowland.harvard.edu>
11077 M:      Andrea Parri <parri.andrea@gmail.com>
11078 M:      Will Deacon <will@kernel.org>
11079 M:      Peter Zijlstra <peterz@infradead.org>
11080 M:      Boqun Feng <boqun.feng@gmail.com>
11081 M:      Nicholas Piggin <npiggin@gmail.com>
11082 M:      David Howells <dhowells@redhat.com>
11083 M:      Jade Alglave <j.alglave@ucl.ac.uk>
11084 M:      Luc Maranget <luc.maranget@inria.fr>
11085 M:      "Paul E. McKenney" <paulmck@kernel.org>
11086 R:      Akira Yokosawa <akiyks@gmail.com>
11087 R:      Daniel Lustig <dlustig@nvidia.com>
11088 R:      Joel Fernandes <joel@joelfernandes.org>
11089 L:      linux-kernel@vger.kernel.org
11090 L:      linux-arch@vger.kernel.org
11091 S:      Supported
11092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11093 F:      Documentation/atomic_bitops.txt
11094 F:      Documentation/atomic_t.txt
11095 F:      Documentation/core-api/refcount-vs-atomic.rst
11096 F:      Documentation/litmus-tests/
11097 F:      Documentation/memory-barriers.txt
11098 F:      tools/memory-model/
11099
11100 LIS3LV02D ACCELEROMETER DRIVER
11101 M:      Eric Piel <eric.piel@tremplin-utc.net>
11102 S:      Maintained
11103 F:      Documentation/misc-devices/lis3lv02d.rst
11104 F:      drivers/misc/lis3lv02d/
11105 F:      drivers/platform/x86/hp_accel.c
11106
11107 LIST KUNIT TEST
11108 M:      David Gow <davidgow@google.com>
11109 L:      linux-kselftest@vger.kernel.org
11110 L:      kunit-dev@googlegroups.com
11111 S:      Maintained
11112 F:      lib/list-test.c
11113
11114 LITEX PLATFORM
11115 M:      Karol Gugala <kgugala@antmicro.com>
11116 M:      Mateusz Holenko <mholenko@antmicro.com>
11117 S:      Maintained
11118 F:      Documentation/devicetree/bindings/*/litex,*.yaml
11119 F:      arch/openrisc/boot/dts/or1klitex.dts
11120 F:      drivers/soc/litex/litex_soc_ctrl.c
11121 F:      drivers/tty/serial/liteuart.c
11122 F:      include/linux/litex.h
11123
11124 LIVE PATCHING
11125 M:      Josh Poimboeuf <jpoimboe@redhat.com>
11126 M:      Jiri Kosina <jikos@kernel.org>
11127 M:      Miroslav Benes <mbenes@suse.cz>
11128 M:      Petr Mladek <pmladek@suse.com>
11129 R:      Joe Lawrence <joe.lawrence@redhat.com>
11130 L:      live-patching@vger.kernel.org
11131 S:      Maintained
11132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
11133 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
11134 F:      Documentation/livepatch/
11135 F:      arch/powerpc/include/asm/livepatch.h
11136 F:      arch/s390/include/asm/livepatch.h
11137 F:      arch/x86/include/asm/livepatch.h
11138 F:      include/linux/livepatch.h
11139 F:      kernel/livepatch/
11140 F:      lib/livepatch/
11141 F:      samples/livepatch/
11142 F:      tools/testing/selftests/livepatch/
11143
11144 LLC (802.2)
11145 L:      netdev@vger.kernel.org
11146 S:      Odd fixes
11147 F:      include/linux/llc.h
11148 F:      include/net/llc*
11149 F:      include/uapi/linux/llc.h
11150 F:      net/llc/
11151
11152 LM73 HARDWARE MONITOR DRIVER
11153 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
11154 L:      linux-hwmon@vger.kernel.org
11155 S:      Maintained
11156 F:      drivers/hwmon/lm73.c
11157
11158 LM78 HARDWARE MONITOR DRIVER
11159 M:      Jean Delvare <jdelvare@suse.com>
11160 L:      linux-hwmon@vger.kernel.org
11161 S:      Maintained
11162 F:      Documentation/hwmon/lm78.rst
11163 F:      drivers/hwmon/lm78.c
11164
11165 LM83 HARDWARE MONITOR DRIVER
11166 M:      Jean Delvare <jdelvare@suse.com>
11167 L:      linux-hwmon@vger.kernel.org
11168 S:      Maintained
11169 F:      Documentation/hwmon/lm83.rst
11170 F:      drivers/hwmon/lm83.c
11171
11172 LM90 HARDWARE MONITOR DRIVER
11173 M:      Jean Delvare <jdelvare@suse.com>
11174 L:      linux-hwmon@vger.kernel.org
11175 S:      Maintained
11176 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11177 F:      Documentation/hwmon/lm90.rst
11178 F:      drivers/hwmon/lm90.c
11179 F:      include/dt-bindings/thermal/lm90.h
11180
11181 LM95234 HARDWARE MONITOR DRIVER
11182 M:      Guenter Roeck <linux@roeck-us.net>
11183 L:      linux-hwmon@vger.kernel.org
11184 S:      Maintained
11185 F:      Documentation/hwmon/lm95234.rst
11186 F:      drivers/hwmon/lm95234.c
11187
11188 LME2510 MEDIA DRIVER
11189 M:      Malcolm Priestley <tvboxspy@gmail.com>
11190 L:      linux-media@vger.kernel.org
11191 S:      Maintained
11192 W:      https://linuxtv.org
11193 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11194 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11195
11196 LOADPIN SECURITY MODULE
11197 M:      Kees Cook <keescook@chromium.org>
11198 S:      Supported
11199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
11200 F:      Documentation/admin-guide/LSM/LoadPin.rst
11201 F:      security/loadpin/
11202
11203 LOCKING PRIMITIVES
11204 M:      Peter Zijlstra <peterz@infradead.org>
11205 M:      Ingo Molnar <mingo@redhat.com>
11206 M:      Will Deacon <will@kernel.org>
11207 R:      Waiman Long <longman@redhat.com>
11208 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
11209 L:      linux-kernel@vger.kernel.org
11210 S:      Maintained
11211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11212 F:      Documentation/locking/
11213 F:      arch/*/include/asm/spinlock*.h
11214 F:      include/linux/lockdep.h
11215 F:      include/linux/mutex*.h
11216 F:      include/linux/rwlock*.h
11217 F:      include/linux/rwsem*.h
11218 F:      include/linux/seqlock.h
11219 F:      include/linux/spinlock*.h
11220 F:      kernel/locking/
11221 F:      lib/locking*.[ch]
11222 X:      kernel/locking/locktorture.c
11223
11224 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11225 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11226 L:      linux-ntfs-dev@lists.sourceforge.net
11227 S:      Maintained
11228 W:      http://www.linux-ntfs.org/content/view/19/37/
11229 F:      Documentation/admin-guide/ldm.rst
11230 F:      block/partitions/ldm.*
11231
11232 LOGITECH HID GAMING KEYBOARDS
11233 M:      Hans de Goede <hdegoede@redhat.com>
11234 L:      linux-input@vger.kernel.org
11235 S:      Maintained
11236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11237 F:      drivers/hid/hid-lg-g15.c
11238
11239 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11240 M:      Adrien Grassein <adrien.grassein@gmail.com>
11241 S:      Maintained
11242 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11243 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11244
11245 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11246 M:      Sathya Prakash <sathya.prakash@broadcom.com>
11247 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11248 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11249 L:      MPT-FusionLinux.pdl@broadcom.com
11250 L:      linux-scsi@vger.kernel.org
11251 S:      Supported
11252 W:      http://www.avagotech.com/support/
11253 F:      drivers/message/fusion/
11254 F:      drivers/scsi/mpt3sas/
11255
11256 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11257 M:      Matthew Wilcox <willy@infradead.org>
11258 L:      linux-scsi@vger.kernel.org
11259 S:      Maintained
11260 F:      drivers/scsi/sym53c8xx_2/
11261
11262 LTC1660 DAC DRIVER
11263 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11264 L:      linux-iio@vger.kernel.org
11265 S:      Maintained
11266 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11267 F:      drivers/iio/dac/ltc1660.c
11268
11269 LTC2947 HARDWARE MONITOR DRIVER
11270 M:      Nuno Sá <nuno.sa@analog.com>
11271 L:      linux-hwmon@vger.kernel.org
11272 S:      Supported
11273 W:      http://ez.analog.com/community/linux-device-drivers
11274 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11275 F:      drivers/hwmon/ltc2947-core.c
11276 F:      drivers/hwmon/ltc2947-i2c.c
11277 F:      drivers/hwmon/ltc2947-spi.c
11278 F:      drivers/hwmon/ltc2947.h
11279
11280 LTC2983 IIO TEMPERATURE DRIVER
11281 M:      Nuno Sá <nuno.sa@analog.com>
11282 L:      linux-iio@vger.kernel.org
11283 S:      Supported
11284 W:      http://ez.analog.com/community/linux-device-drivers
11285 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11286 F:      drivers/iio/temperature/ltc2983.c
11287
11288 LTC4261 HARDWARE MONITOR DRIVER
11289 M:      Guenter Roeck <linux@roeck-us.net>
11290 L:      linux-hwmon@vger.kernel.org
11291 S:      Maintained
11292 F:      Documentation/hwmon/ltc4261.rst
11293 F:      drivers/hwmon/ltc4261.c
11294
11295 LTC4306 I2C MULTIPLEXER DRIVER
11296 M:      Michael Hennerich <michael.hennerich@analog.com>
11297 L:      linux-i2c@vger.kernel.org
11298 S:      Supported
11299 W:      http://ez.analog.com/community/linux-device-drivers
11300 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11301 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11302
11303 LTP (Linux Test Project)
11304 M:      Mike Frysinger <vapier@gentoo.org>
11305 M:      Cyril Hrubis <chrubis@suse.cz>
11306 M:      Wanlong Gao <wanlong.gao@gmail.com>
11307 M:      Jan Stancek <jstancek@redhat.com>
11308 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11309 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11310 L:      ltp@lists.linux.it (subscribers-only)
11311 S:      Maintained
11312 W:      http://linux-test-project.github.io/
11313 T:      git git://github.com/linux-test-project/ltp.git
11314
11315 LYNX PCS MODULE
11316 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11317 L:      netdev@vger.kernel.org
11318 S:      Supported
11319 F:      drivers/net/pcs/pcs-lynx.c
11320 F:      include/linux/pcs-lynx.h
11321
11322 M68K ARCHITECTURE
11323 M:      Geert Uytterhoeven <geert@linux-m68k.org>
11324 L:      linux-m68k@lists.linux-m68k.org
11325 S:      Maintained
11326 W:      http://www.linux-m68k.org/
11327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11328 F:      arch/m68k/
11329 F:      drivers/zorro/
11330
11331 M68K ON APPLE MACINTOSH
11332 M:      Joshua Thompson <funaho@jurai.org>
11333 L:      linux-m68k@lists.linux-m68k.org
11334 S:      Maintained
11335 W:      http://www.mac.linux-m68k.org/
11336 F:      arch/m68k/mac/
11337 F:      drivers/macintosh/adb-iop.c
11338 F:      drivers/macintosh/via-macii.c
11339
11340 M68K ON HP9000/300
11341 M:      Philip Blundell <philb@gnu.org>
11342 S:      Maintained
11343 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11344 F:      arch/m68k/hp300/
11345
11346 M88DS3103 MEDIA DRIVER
11347 M:      Antti Palosaari <crope@iki.fi>
11348 L:      linux-media@vger.kernel.org
11349 S:      Maintained
11350 W:      https://linuxtv.org
11351 W:      http://palosaari.fi/linux/
11352 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11353 T:      git git://linuxtv.org/anttip/media_tree.git
11354 F:      drivers/media/dvb-frontends/m88ds3103*
11355
11356 M88RS2000 MEDIA DRIVER
11357 M:      Malcolm Priestley <tvboxspy@gmail.com>
11358 L:      linux-media@vger.kernel.org
11359 S:      Maintained
11360 W:      https://linuxtv.org
11361 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11362 F:      drivers/media/dvb-frontends/m88rs2000*
11363
11364 MA901 MASTERKIT USB FM RADIO DRIVER
11365 M:      Alexey Klimov <klimov.linux@gmail.com>
11366 L:      linux-media@vger.kernel.org
11367 S:      Maintained
11368 T:      git git://linuxtv.org/media_tree.git
11369 F:      drivers/media/radio/radio-ma901.c
11370
11371 MAC80211
11372 M:      Johannes Berg <johannes@sipsolutions.net>
11373 L:      linux-wireless@vger.kernel.org
11374 S:      Maintained
11375 W:      https://wireless.wiki.kernel.org/
11376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11378 F:      Documentation/networking/mac80211-injection.rst
11379 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11380 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11381 F:      include/net/mac80211.h
11382 F:      net/mac80211/
11383
11384 MAILBOX API
11385 M:      Jassi Brar <jassisinghbrar@gmail.com>
11386 L:      linux-kernel@vger.kernel.org
11387 S:      Maintained
11388 F:      drivers/mailbox/
11389 F:      include/linux/mailbox_client.h
11390 F:      include/linux/mailbox_controller.h
11391 F:      include/dt-bindings/mailbox/
11392 F:      Documentation/devicetree/bindings/mailbox/
11393
11394 MAILBOX ARM MHUv2
11395 M:      Viresh Kumar <viresh.kumar@linaro.org>
11396 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11397 L:      linux-kernel@vger.kernel.org
11398 S:      Maintained
11399 F:      drivers/mailbox/arm_mhuv2.c
11400 F:      include/linux/mailbox/arm_mhuv2_message.h
11401 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11402
11403 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11404 M:      Jeremy Kerr <jk@codeconstruct.com.au>
11405 M:      Matt Johnston <matt@codeconstruct.com.au>
11406 L:      netdev@vger.kernel.org
11407 S:      Maintained
11408 F:      Documentation/networking/mctp.rst
11409 F:      drivers/net/mctp/
11410 F:      include/net/mctp.h
11411 F:      include/net/mctpdevice.h
11412 F:      include/net/netns/mctp.h
11413 F:      net/mctp/
11414
11415 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11416 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11417 L:      linux-man@vger.kernel.org
11418 S:      Maintained
11419 W:      http://www.kernel.org/doc/man-pages
11420
11421 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11422 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11423 L:      linux-mips@vger.kernel.org
11424 S:      Maintained
11425 F:      arch/mips/boot/dts/img/pistachio*
11426
11427 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11428 M:      Andrew Lunn <andrew@lunn.ch>
11429 M:      Vivien Didelot <vivien.didelot@gmail.com>
11430 L:      netdev@vger.kernel.org
11431 S:      Maintained
11432 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11433 F:      Documentation/networking/devlink/mv88e6xxx.rst
11434 F:      drivers/net/dsa/mv88e6xxx/
11435 F:      include/linux/dsa/mv88e6xxx.h
11436 F:      include/linux/platform_data/mv88e6xxx.h
11437
11438 MARVELL ARMADA 3700 PHY DRIVERS
11439 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11440 S:      Maintained
11441 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11442 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11443 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11444 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11445
11446 MARVELL ARMADA DRM SUPPORT
11447 M:      Russell King <linux@armlinux.org.uk>
11448 S:      Maintained
11449 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11450 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11451 F:      Documentation/devicetree/bindings/display/armada/
11452 F:      drivers/gpu/drm/armada/
11453 F:      include/uapi/drm/armada_drm.h
11454
11455 MARVELL CRYPTO DRIVER
11456 M:      Boris Brezillon <bbrezillon@kernel.org>
11457 M:      Arnaud Ebalard <arno@natisbad.org>
11458 M:      Srujana Challa <schalla@marvell.com>
11459 L:      linux-crypto@vger.kernel.org
11460 S:      Maintained
11461 F:      drivers/crypto/marvell/
11462 F:      include/linux/soc/marvell/octeontx2/
11463
11464 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11465 M:      Mirko Lindner <mlindner@marvell.com>
11466 M:      Stephen Hemminger <stephen@networkplumber.org>
11467 L:      netdev@vger.kernel.org
11468 S:      Maintained
11469 F:      drivers/net/ethernet/marvell/sk*
11470
11471 MARVELL LIBERTAS WIRELESS DRIVER
11472 L:      libertas-dev@lists.infradead.org
11473 S:      Orphan
11474 F:      drivers/net/wireless/marvell/libertas/
11475
11476 MARVELL MACCHIATOBIN SUPPORT
11477 M:      Russell King <linux@armlinux.org.uk>
11478 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11479 S:      Maintained
11480 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11481
11482 MARVELL MV643XX ETHERNET DRIVER
11483 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11484 L:      netdev@vger.kernel.org
11485 S:      Maintained
11486 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11487 F:      include/linux/mv643xx.h
11488
11489 MARVELL MV88X3310 PHY DRIVER
11490 M:      Russell King <linux@armlinux.org.uk>
11491 M:      Marek Behún <kabel@kernel.org>
11492 L:      netdev@vger.kernel.org
11493 S:      Maintained
11494 F:      drivers/net/phy/marvell10g.c
11495
11496 MARVELL MVEBU THERMAL DRIVER
11497 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11498 S:      Maintained
11499 F:      drivers/thermal/armada_thermal.c
11500
11501 MARVELL MVNETA ETHERNET DRIVER
11502 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11503 L:      netdev@vger.kernel.org
11504 S:      Maintained
11505 F:      drivers/net/ethernet/marvell/mvneta.*
11506
11507 MARVELL MVPP2 ETHERNET DRIVER
11508 M:      Marcin Wojtas <mw@semihalf.com>
11509 M:      Russell King <linux@armlinux.org.uk>
11510 L:      netdev@vger.kernel.org
11511 S:      Maintained
11512 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11513 F:      drivers/net/ethernet/marvell/mvpp2/
11514
11515 MARVELL MWIFIEX WIRELESS DRIVER
11516 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11517 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11518 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11519 M:      Xinming Hu <huxinming820@gmail.com>
11520 L:      linux-wireless@vger.kernel.org
11521 S:      Maintained
11522 F:      drivers/net/wireless/marvell/mwifiex/
11523
11524 MARVELL MWL8K WIRELESS DRIVER
11525 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11526 L:      linux-wireless@vger.kernel.org
11527 S:      Odd Fixes
11528 F:      drivers/net/wireless/marvell/mwl8k.c
11529
11530 MARVELL NAND CONTROLLER DRIVER
11531 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11532 L:      linux-mtd@lists.infradead.org
11533 S:      Maintained
11534 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11535 F:      drivers/mtd/nand/raw/marvell_nand.c
11536
11537 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11538 M:      Sunil Goutham <sgoutham@marvell.com>
11539 M:      Geetha sowjanya <gakula@marvell.com>
11540 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11541 M:      hariprasad <hkelam@marvell.com>
11542 L:      netdev@vger.kernel.org
11543 S:      Supported
11544 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11545 F:      include/linux/soc/marvell/octeontx2/
11546
11547 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11548 M:      Sunil Goutham <sgoutham@marvell.com>
11549 M:      Linu Cherian <lcherian@marvell.com>
11550 M:      Geetha sowjanya <gakula@marvell.com>
11551 M:      Jerin Jacob <jerinj@marvell.com>
11552 M:      hariprasad <hkelam@marvell.com>
11553 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11554 L:      netdev@vger.kernel.org
11555 S:      Supported
11556 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11557 F:      drivers/net/ethernet/marvell/octeontx2/af/
11558
11559 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11560 M:      Taras Chornyi <tchornyi@marvell.com>
11561 S:      Supported
11562 W:      https://github.com/Marvell-switching/switchdev-prestera
11563 F:      drivers/net/ethernet/marvell/prestera/
11564
11565 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11566 M:      Nicolas Pitre <nico@fluxnic.net>
11567 S:      Odd Fixes
11568 F:      drivers/mmc/host/mvsdio.*
11569
11570 MARVELL USB MDIO CONTROLLER DRIVER
11571 M:      Tobias Waldekranz <tobias@waldekranz.com>
11572 L:      netdev@vger.kernel.org
11573 S:      Maintained
11574 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11575 F:      drivers/net/mdio/mdio-mvusb.c
11576
11577 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11578 M:      Hu Ziji <huziji@marvell.com>
11579 L:      linux-mmc@vger.kernel.org
11580 S:      Supported
11581 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11582 F:      drivers/mmc/host/sdhci-xenon*
11583
11584 MATROX FRAMEBUFFER DRIVER
11585 L:      linux-fbdev@vger.kernel.org
11586 S:      Orphan
11587 F:      drivers/video/fbdev/matrox/matroxfb_*
11588 F:      include/uapi/linux/matroxfb.h
11589
11590 MAX15301 DRIVER
11591 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11592 L:      linux-hwmon@vger.kernel.org
11593 S:      Maintained
11594 F:      Documentation/hwmon/max15301.rst
11595 F:      drivers/hwmon/pmbus/max15301.c
11596
11597 MAX16065 HARDWARE MONITOR DRIVER
11598 M:      Guenter Roeck <linux@roeck-us.net>
11599 L:      linux-hwmon@vger.kernel.org
11600 S:      Maintained
11601 F:      Documentation/hwmon/max16065.rst
11602 F:      drivers/hwmon/max16065.c
11603
11604 MAX2175 SDR TUNER DRIVER
11605 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11606 L:      linux-media@vger.kernel.org
11607 S:      Maintained
11608 T:      git git://linuxtv.org/media_tree.git
11609 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11610 F:      Documentation/userspace-api/media/drivers/max2175.rst
11611 F:      drivers/media/i2c/max2175*
11612 F:      include/uapi/linux/max2175.h
11613
11614 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11615 L:      linux-hwmon@vger.kernel.org
11616 S:      Orphan
11617 F:      Documentation/hwmon/max6650.rst
11618 F:      drivers/hwmon/max6650.c
11619
11620 MAX6697 HARDWARE MONITOR DRIVER
11621 M:      Guenter Roeck <linux@roeck-us.net>
11622 L:      linux-hwmon@vger.kernel.org
11623 S:      Maintained
11624 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11625 F:      Documentation/hwmon/max6697.rst
11626 F:      drivers/hwmon/max6697.c
11627 F:      include/linux/platform_data/max6697.h
11628
11629 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11630 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
11631 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11632 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11633 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11634 L:      linux-media@vger.kernel.org
11635 S:      Maintained
11636 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11637 F:      drivers/media/i2c/max9286.c
11638
11639 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
11640 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11641 L:      linux-media@vger.kernel.org
11642 S:      Maintained
11643 F:      drivers/staging/media/max96712/max96712.c
11644
11645 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11646 M:      Peter Rosin <peda@axentia.se>
11647 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11648 S:      Maintained
11649 F:      Documentation/devicetree/bindings/sound/max9860.txt
11650 F:      sound/soc/codecs/max9860.*
11651
11652 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11653 M:      Andreas Klinger <ak@it-klinger.de>
11654 L:      linux-iio@vger.kernel.org
11655 S:      Maintained
11656 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11657 F:      drivers/iio/proximity/mb1232.c
11658
11659 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
11660 R:      Iskren Chernev <iskren.chernev@gmail.com>
11661 R:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11662 R:      Marek Szyprowski <m.szyprowski@samsung.com>
11663 R:      Matheus Castello <matheus@castello.eng.br>
11664 L:      linux-pm@vger.kernel.org
11665 S:      Maintained
11666 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
11667 F:      drivers/power/supply/max17040_battery.c
11668
11669 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
11670 R:      Hans de Goede <hdegoede@redhat.com>
11671 R:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11672 R:      Marek Szyprowski <m.szyprowski@samsung.com>
11673 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
11674 R:      Purism Kernel Team <kernel@puri.sm>
11675 L:      linux-pm@vger.kernel.org
11676 S:      Maintained
11677 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
11678 F:      drivers/power/supply/max17042_battery.c
11679
11680 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
11681 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11682 L:      linux-kernel@vger.kernel.org
11683 S:      Maintained
11684 F:      Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
11685 F:      drivers/regulator/max20086-regulator.c
11686
11687 MAXIM MAX77650 PMIC MFD DRIVER
11688 M:      Bartosz Golaszewski <brgl@bgdev.pl>
11689 L:      linux-kernel@vger.kernel.org
11690 S:      Maintained
11691 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11692 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11693 F:      drivers/gpio/gpio-max77650.c
11694 F:      drivers/input/misc/max77650-onkey.c
11695 F:      drivers/leds/leds-max77650.c
11696 F:      drivers/mfd/max77650.c
11697 F:      drivers/power/supply/max77650-charger.c
11698 F:      drivers/regulator/max77650-regulator.c
11699 F:      include/linux/mfd/max77650.h
11700
11701 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11702 M:      Javier Martinez Canillas <javier@dowhile0.org>
11703 L:      linux-kernel@vger.kernel.org
11704 S:      Supported
11705 F:      Documentation/devicetree/bindings/*/*max77802.txt
11706 F:      drivers/regulator/max77802-regulator.c
11707 F:      include/dt-bindings/*/*max77802.h
11708
11709 MAXIM MAX77976 BATTERY CHARGER
11710 M:      Luca Ceresoli <luca@lucaceresoli.net>
11711 S:      Supported
11712 F:      Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
11713 F:      drivers/power/supply/max77976_charger.c
11714
11715 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11716 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11717 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11718 L:      linux-pm@vger.kernel.org
11719 S:      Supported
11720 F:      drivers/power/supply/max14577_charger.c
11721 F:      drivers/power/supply/max77693_charger.c
11722
11723 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11724 M:      Chanwoo Choi <cw00.choi@samsung.com>
11725 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11726 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11727 L:      linux-kernel@vger.kernel.org
11728 S:      Supported
11729 F:      Documentation/devicetree/bindings/*/maxim,max77686.yaml
11730 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
11731 F:      Documentation/devicetree/bindings/mfd/max14577.txt
11732 F:      Documentation/devicetree/bindings/mfd/max77693.txt
11733 F:      drivers/*/max14577*.c
11734 F:      drivers/*/max77686*.c
11735 F:      drivers/*/max77693*.c
11736 F:      drivers/clk/clk-max77686.c
11737 F:      drivers/extcon/extcon-max14577.c
11738 F:      drivers/extcon/extcon-max77693.c
11739 F:      drivers/rtc/rtc-max77686.c
11740 F:      include/linux/mfd/max14577*.h
11741 F:      include/linux/mfd/max77686*.h
11742 F:      include/linux/mfd/max77693*.h
11743
11744 MAXIRADIO FM RADIO RECEIVER DRIVER
11745 M:      Hans Verkuil <hverkuil@xs4all.nl>
11746 L:      linux-media@vger.kernel.org
11747 S:      Maintained
11748 W:      https://linuxtv.org
11749 T:      git git://linuxtv.org/media_tree.git
11750 F:      drivers/media/radio/radio-maxiradio*
11751
11752 MAXLINEAR ETHERNET PHY DRIVER
11753 M:      Xu Liang <lxu@maxlinear.com>
11754 L:      netdev@vger.kernel.org
11755 S:      Supported
11756 F:      drivers/net/phy/mxl-gpy.c
11757
11758 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
11759 R:      Yasushi SHOJI <yashi@spacecubics.com>
11760 L:      linux-can@vger.kernel.org
11761 S:      Maintained
11762 F:      drivers/net/can/usb/mcba_usb.c
11763
11764 MCAN MMIO DEVICE DRIVER
11765 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11766 L:      linux-can@vger.kernel.org
11767 S:      Maintained
11768 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11769 F:      drivers/net/can/m_can/m_can.c
11770 F:      drivers/net/can/m_can/m_can.h
11771 F:      drivers/net/can/m_can/m_can_platform.c
11772
11773 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11774 M:      Rishi Gupta <gupt21@gmail.com>
11775 L:      linux-i2c@vger.kernel.org
11776 L:      linux-input@vger.kernel.org
11777 S:      Maintained
11778 F:      drivers/hid/hid-mcp2221.c
11779
11780 MCP251XFD SPI-CAN NETWORK DRIVER
11781 M:      Marc Kleine-Budde <mkl@pengutronix.de>
11782 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11783 R:      Thomas Kopp <thomas.kopp@microchip.com>
11784 L:      linux-can@vger.kernel.org
11785 S:      Maintained
11786 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11787 F:      drivers/net/can/spi/mcp251xfd/
11788
11789 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11790 M:      Peter Rosin <peda@axentia.se>
11791 L:      linux-iio@vger.kernel.org
11792 S:      Maintained
11793 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11794 F:      drivers/iio/potentiometer/mcp4018.c
11795 F:      drivers/iio/potentiometer/mcp4531.c
11796
11797 MCR20A IEEE-802.15.4 RADIO DRIVER
11798 M:      Xue Liu <liuxuenetmail@gmail.com>
11799 L:      linux-wpan@vger.kernel.org
11800 S:      Maintained
11801 W:      https://github.com/xueliu/mcr20a-linux
11802 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11803 F:      drivers/net/ieee802154/mcr20a.c
11804 F:      drivers/net/ieee802154/mcr20a.h
11805
11806 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11807 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
11808 L:      linux-iio@vger.kernel.org
11809 S:      Maintained
11810 F:      drivers/iio/dac/cio-dac.c
11811
11812 MEDIA CONTROLLER FRAMEWORK
11813 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11814 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11815 L:      linux-media@vger.kernel.org
11816 S:      Supported
11817 W:      https://www.linuxtv.org
11818 T:      git git://linuxtv.org/media_tree.git
11819 F:      drivers/media/mc/
11820 F:      include/media/media-*.h
11821 F:      include/uapi/linux/media.h
11822
11823 MEDIA DRIVER FOR FREESCALE IMX PXP
11824 M:      Philipp Zabel <p.zabel@pengutronix.de>
11825 L:      linux-media@vger.kernel.org
11826 S:      Maintained
11827 T:      git git://linuxtv.org/media_tree.git
11828 F:      drivers/media/platform/imx-pxp.[ch]
11829
11830 MEDIA DRIVERS FOR ASCOT2E
11831 M:      Sergey Kozlov <serjk@netup.ru>
11832 M:      Abylay Ospan <aospan@netup.ru>
11833 L:      linux-media@vger.kernel.org
11834 S:      Supported
11835 W:      https://linuxtv.org
11836 W:      http://netup.tv/
11837 T:      git git://linuxtv.org/media_tree.git
11838 F:      drivers/media/dvb-frontends/ascot2e*
11839
11840 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11841 M:      Jasmin Jessich <jasmin@anw.at>
11842 L:      linux-media@vger.kernel.org
11843 S:      Maintained
11844 W:      https://linuxtv.org
11845 T:      git git://linuxtv.org/media_tree.git
11846 F:      drivers/media/dvb-frontends/cxd2099*
11847
11848 MEDIA DRIVERS FOR CXD2841ER
11849 M:      Sergey Kozlov <serjk@netup.ru>
11850 M:      Abylay Ospan <aospan@netup.ru>
11851 L:      linux-media@vger.kernel.org
11852 S:      Supported
11853 W:      https://linuxtv.org
11854 W:      http://netup.tv/
11855 T:      git git://linuxtv.org/media_tree.git
11856 F:      drivers/media/dvb-frontends/cxd2841er*
11857
11858 MEDIA DRIVERS FOR CXD2880
11859 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
11860 L:      linux-media@vger.kernel.org
11861 S:      Supported
11862 W:      http://linuxtv.org/
11863 T:      git git://linuxtv.org/media_tree.git
11864 F:      drivers/media/dvb-frontends/cxd2880/*
11865 F:      drivers/media/spi/cxd2880*
11866
11867 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11868 L:      linux-media@vger.kernel.org
11869 S:      Orphan
11870 W:      https://linuxtv.org
11871 T:      git git://linuxtv.org/media_tree.git
11872 F:      drivers/media/pci/ddbridge/*
11873
11874 MEDIA DRIVERS FOR FREESCALE IMX
11875 M:      Steve Longerbeam <slongerbeam@gmail.com>
11876 M:      Philipp Zabel <p.zabel@pengutronix.de>
11877 L:      linux-media@vger.kernel.org
11878 S:      Maintained
11879 T:      git git://linuxtv.org/media_tree.git
11880 F:      Documentation/admin-guide/media/imx.rst
11881 F:      Documentation/devicetree/bindings/media/imx.txt
11882 F:      drivers/staging/media/imx/
11883 F:      include/linux/imx-media.h
11884 F:      include/media/imx.h
11885
11886 MEDIA DRIVERS FOR FREESCALE IMX7
11887 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11888 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11889 L:      linux-media@vger.kernel.org
11890 S:      Maintained
11891 T:      git git://linuxtv.org/media_tree.git
11892 F:      Documentation/admin-guide/media/imx7.rst
11893 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11894 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11895 F:      drivers/staging/media/imx/imx7-media-csi.c
11896 F:      drivers/staging/media/imx/imx7-mipi-csis.c
11897
11898 MEDIA DRIVERS FOR HELENE
11899 M:      Abylay Ospan <aospan@netup.ru>
11900 L:      linux-media@vger.kernel.org
11901 S:      Supported
11902 W:      https://linuxtv.org
11903 W:      http://netup.tv/
11904 T:      git git://linuxtv.org/media_tree.git
11905 F:      drivers/media/dvb-frontends/helene*
11906
11907 MEDIA DRIVERS FOR HORUS3A
11908 M:      Sergey Kozlov <serjk@netup.ru>
11909 M:      Abylay Ospan <aospan@netup.ru>
11910 L:      linux-media@vger.kernel.org
11911 S:      Supported
11912 W:      https://linuxtv.org
11913 W:      http://netup.tv/
11914 T:      git git://linuxtv.org/media_tree.git
11915 F:      drivers/media/dvb-frontends/horus3a*
11916
11917 MEDIA DRIVERS FOR LNBH25
11918 M:      Sergey Kozlov <serjk@netup.ru>
11919 M:      Abylay Ospan <aospan@netup.ru>
11920 L:      linux-media@vger.kernel.org
11921 S:      Supported
11922 W:      https://linuxtv.org
11923 W:      http://netup.tv/
11924 T:      git git://linuxtv.org/media_tree.git
11925 F:      drivers/media/dvb-frontends/lnbh25*
11926
11927 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11928 L:      linux-media@vger.kernel.org
11929 S:      Orphan
11930 W:      https://linuxtv.org
11931 T:      git git://linuxtv.org/media_tree.git
11932 F:      drivers/media/dvb-frontends/mxl5xx*
11933
11934 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11935 M:      Sergey Kozlov <serjk@netup.ru>
11936 M:      Abylay Ospan <aospan@netup.ru>
11937 L:      linux-media@vger.kernel.org
11938 S:      Supported
11939 W:      https://linuxtv.org
11940 W:      http://netup.tv/
11941 T:      git git://linuxtv.org/media_tree.git
11942 F:      drivers/media/pci/netup_unidvb/*
11943
11944 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11945 M:      Dmitry Osipenko <digetx@gmail.com>
11946 L:      linux-media@vger.kernel.org
11947 L:      linux-tegra@vger.kernel.org
11948 S:      Maintained
11949 T:      git git://linuxtv.org/media_tree.git
11950 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11951 F:      drivers/staging/media/tegra-vde/
11952
11953 MEDIA DRIVERS FOR RENESAS - CEU
11954 M:      Jacopo Mondi <jacopo@jmondi.org>
11955 L:      linux-media@vger.kernel.org
11956 L:      linux-renesas-soc@vger.kernel.org
11957 S:      Supported
11958 T:      git git://linuxtv.org/media_tree.git
11959 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
11960 F:      drivers/media/platform/renesas-ceu.c
11961 F:      include/media/drv-intf/renesas-ceu.h
11962
11963 MEDIA DRIVERS FOR RENESAS - DRIF
11964 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
11965 L:      linux-media@vger.kernel.org
11966 L:      linux-renesas-soc@vger.kernel.org
11967 S:      Supported
11968 T:      git git://linuxtv.org/media_tree.git
11969 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
11970 F:      drivers/media/platform/rcar_drif.c
11971
11972 MEDIA DRIVERS FOR RENESAS - FCP
11973 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11974 L:      linux-media@vger.kernel.org
11975 L:      linux-renesas-soc@vger.kernel.org
11976 S:      Supported
11977 T:      git git://linuxtv.org/media_tree.git
11978 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11979 F:      drivers/media/platform/rcar-fcp.c
11980 F:      include/media/rcar-fcp.h
11981
11982 MEDIA DRIVERS FOR RENESAS - FDP1
11983 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11984 L:      linux-media@vger.kernel.org
11985 L:      linux-renesas-soc@vger.kernel.org
11986 S:      Supported
11987 T:      git git://linuxtv.org/media_tree.git
11988 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11989 F:      drivers/media/platform/rcar_fdp1.c
11990
11991 MEDIA DRIVERS FOR RENESAS - VIN
11992 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11993 L:      linux-media@vger.kernel.org
11994 L:      linux-renesas-soc@vger.kernel.org
11995 S:      Supported
11996 T:      git git://linuxtv.org/media_tree.git
11997 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11998 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
11999 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
12000 F:      drivers/media/platform/rcar-isp.c
12001 F:      drivers/media/platform/rcar-vin/
12002
12003 MEDIA DRIVERS FOR RENESAS - VSP1
12004 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12005 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12006 L:      linux-media@vger.kernel.org
12007 L:      linux-renesas-soc@vger.kernel.org
12008 S:      Supported
12009 T:      git git://linuxtv.org/media_tree.git
12010 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
12011 F:      drivers/media/platform/vsp1/
12012
12013 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
12014 L:      linux-media@vger.kernel.org
12015 S:      Orphan
12016 W:      https://linuxtv.org
12017 T:      git git://linuxtv.org/media_tree.git
12018 F:      drivers/media/dvb-frontends/stv0910*
12019
12020 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
12021 L:      linux-media@vger.kernel.org
12022 S:      Orphan
12023 W:      https://linuxtv.org
12024 T:      git git://linuxtv.org/media_tree.git
12025 F:      drivers/media/dvb-frontends/stv6111*
12026
12027 MEDIA DRIVERS FOR STM32 - DCMI
12028 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
12029 L:      linux-media@vger.kernel.org
12030 S:      Supported
12031 T:      git git://linuxtv.org/media_tree.git
12032 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
12033 F:      drivers/media/platform/stm32/stm32-dcmi.c
12034
12035 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
12036 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12037 L:      linux-media@vger.kernel.org
12038 S:      Maintained
12039 W:      https://linuxtv.org
12040 Q:      http://patchwork.kernel.org/project/linux-media/list/
12041 T:      git git://linuxtv.org/media_tree.git
12042 F:      Documentation/admin-guide/media/
12043 F:      Documentation/devicetree/bindings/media/
12044 F:      Documentation/driver-api/media/
12045 F:      Documentation/userspace-api/media/
12046 F:      drivers/media/
12047 F:      drivers/staging/media/
12048 F:      include/linux/platform_data/media/
12049 F:      include/media/
12050 F:      include/uapi/linux/dvb/
12051 F:      include/uapi/linux/ivtv*
12052 F:      include/uapi/linux/media.h
12053 F:      include/uapi/linux/meye.h
12054 F:      include/uapi/linux/uvcvideo.h
12055 F:      include/uapi/linux/v4l2-*
12056 F:      include/uapi/linux/videodev2.h
12057
12058 MEDIATEK BLUETOOTH DRIVER
12059 M:      Sean Wang <sean.wang@mediatek.com>
12060 L:      linux-bluetooth@vger.kernel.org
12061 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12062 S:      Maintained
12063 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
12064 F:      drivers/bluetooth/btmtkuart.c
12065
12066 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
12067 M:      Sean Wang <sean.wang@mediatek.com>
12068 L:      linux-pm@vger.kernel.org
12069 S:      Maintained
12070 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
12071 F:      drivers/power/reset/mt6323-poweroff.c
12072
12073 MEDIATEK CIR DRIVER
12074 M:      Sean Wang <sean.wang@mediatek.com>
12075 S:      Maintained
12076 F:      drivers/media/rc/mtk-cir.c
12077
12078 MEDIATEK DMA DRIVER
12079 M:      Sean Wang <sean.wang@mediatek.com>
12080 L:      dmaengine@vger.kernel.org
12081 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12082 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12083 S:      Maintained
12084 F:      Documentation/devicetree/bindings/dma/mtk-*
12085 F:      drivers/dma/mediatek/
12086
12087 MEDIATEK ETHERNET DRIVER
12088 M:      Felix Fietkau <nbd@nbd.name>
12089 M:      John Crispin <john@phrozen.org>
12090 M:      Sean Wang <sean.wang@mediatek.com>
12091 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
12092 L:      netdev@vger.kernel.org
12093 S:      Maintained
12094 F:      drivers/net/ethernet/mediatek/
12095
12096 MEDIATEK I2C CONTROLLER DRIVER
12097 M:      Qii Wang <qii.wang@mediatek.com>
12098 L:      linux-i2c@vger.kernel.org
12099 S:      Maintained
12100 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
12101 F:      drivers/i2c/busses/i2c-mt65xx.c
12102
12103 MEDIATEK IOMMU DRIVER
12104 M:      Yong Wu <yong.wu@mediatek.com>
12105 L:      iommu@lists.linux-foundation.org
12106 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12107 S:      Supported
12108 F:      Documentation/devicetree/bindings/iommu/mediatek*
12109 F:      drivers/iommu/mtk_iommu*
12110 F:      include/dt-bindings/memory/mt*-port.h
12111
12112 MEDIATEK JPEG DRIVER
12113 M:      Rick Chang <rick.chang@mediatek.com>
12114 M:      Bin Liu <bin.liu@mediatek.com>
12115 S:      Supported
12116 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
12117 F:      drivers/media/platform/mtk-jpeg/
12118
12119 MEDIATEK MDP DRIVER
12120 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
12121 M:      Houlong Wei <houlong.wei@mediatek.com>
12122 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12123 S:      Supported
12124 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
12125 F:      drivers/media/platform/mtk-mdp/
12126 F:      drivers/media/platform/mtk-vpu/
12127
12128 MEDIATEK MEDIA DRIVER
12129 M:      Tiffany Lin <tiffany.lin@mediatek.com>
12130 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12131 S:      Supported
12132 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
12133 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
12134 F:      drivers/media/platform/mtk-vcodec/
12135 F:      drivers/media/platform/mtk-vpu/
12136
12137 MEDIATEK MMC/SD/SDIO DRIVER
12138 M:      Chaotian Jing <chaotian.jing@mediatek.com>
12139 S:      Maintained
12140 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
12141 F:      drivers/mmc/host/mtk-sd.c
12142
12143 MEDIATEK MT76 WIRELESS LAN DRIVER
12144 M:      Felix Fietkau <nbd@nbd.name>
12145 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
12146 M:      Ryder Lee <ryder.lee@mediatek.com>
12147 R:      Shayne Chen <shayne.chen@mediatek.com>
12148 R:      Sean Wang <sean.wang@mediatek.com>
12149 L:      linux-wireless@vger.kernel.org
12150 S:      Maintained
12151 F:      drivers/net/wireless/mediatek/mt76/
12152
12153 MEDIATEK MT7601U WIRELESS LAN DRIVER
12154 M:      Jakub Kicinski <kubakici@wp.pl>
12155 L:      linux-wireless@vger.kernel.org
12156 S:      Maintained
12157 F:      drivers/net/wireless/mediatek/mt7601u/
12158
12159 MEDIATEK MT7621 CLOCK DRIVER
12160 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12161 S:      Maintained
12162 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
12163 F:      drivers/clk/ralink/clk-mt7621.c
12164
12165 MEDIATEK MT7621/28/88 I2C DRIVER
12166 M:      Stefan Roese <sr@denx.de>
12167 L:      linux-i2c@vger.kernel.org
12168 S:      Maintained
12169 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
12170 F:      drivers/i2c/busses/i2c-mt7621.c
12171
12172 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
12173 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12174 S:      Maintained
12175 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
12176 F:      drivers/pci/controller/pcie-mt7621.c
12177
12178 MEDIATEK MT7621 PHY PCI DRIVER
12179 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12180 S:      Maintained
12181 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
12182 F:      drivers/phy/ralink/phy-mt7621-pci.c
12183
12184 MEDIATEK NAND CONTROLLER DRIVER
12185 L:      linux-mtd@lists.infradead.org
12186 S:      Orphan
12187 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
12188 F:      drivers/mtd/nand/raw/mtk_*
12189
12190 MEDIATEK PMIC LED DRIVER
12191 M:      Sean Wang <sean.wang@mediatek.com>
12192 S:      Maintained
12193 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
12194 F:      drivers/leds/leds-mt6323.c
12195
12196 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
12197 M:      Sean Wang <sean.wang@mediatek.com>
12198 S:      Maintained
12199 F:      drivers/char/hw_random/mtk-rng.c
12200
12201 MEDIATEK SMI DRIVER
12202 M:      Yong Wu <yong.wu@mediatek.com>
12203 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12204 S:      Supported
12205 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
12206 F:      drivers/memory/mtk-smi.c
12207 F:      include/soc/mediatek/smi.h
12208
12209 MEDIATEK SWITCH DRIVER
12210 M:      Sean Wang <sean.wang@mediatek.com>
12211 M:      Landen Chao <Landen.Chao@mediatek.com>
12212 M:      DENG Qingfang <dqfext@gmail.com>
12213 L:      netdev@vger.kernel.org
12214 S:      Maintained
12215 F:      drivers/net/dsa/mt7530.*
12216 F:      net/dsa/tag_mtk.c
12217
12218 MEDIATEK USB3 DRD IP DRIVER
12219 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
12220 L:      linux-usb@vger.kernel.org
12221 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12222 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12223 S:      Maintained
12224 F:      Documentation/devicetree/bindings/usb/mediatek,*
12225 F:      drivers/usb/host/xhci-mtk*
12226 F:      drivers/usb/mtu3/
12227
12228 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
12229 M:      Peter Senna Tschudin <peter.senna@gmail.com>
12230 M:      Martin Donnelly <martin.donnelly@ge.com>
12231 M:      Martyn Welch <martyn.welch@collabora.co.uk>
12232 S:      Maintained
12233 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
12234 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
12235
12236 MEGARAID SCSI/SAS DRIVERS
12237 M:      Kashyap Desai <kashyap.desai@broadcom.com>
12238 M:      Sumit Saxena <sumit.saxena@broadcom.com>
12239 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
12240 L:      megaraidlinux.pdl@broadcom.com
12241 L:      linux-scsi@vger.kernel.org
12242 S:      Maintained
12243 W:      http://www.avagotech.com/support/
12244 F:      Documentation/scsi/megaraid.rst
12245 F:      drivers/scsi/megaraid.*
12246 F:      drivers/scsi/megaraid/
12247
12248 MELEXIS MLX90614 DRIVER
12249 M:      Crt Mori <cmo@melexis.com>
12250 L:      linux-iio@vger.kernel.org
12251 S:      Supported
12252 W:      http://www.melexis.com
12253 F:      drivers/iio/temperature/mlx90614.c
12254
12255 MELEXIS MLX90632 DRIVER
12256 M:      Crt Mori <cmo@melexis.com>
12257 L:      linux-iio@vger.kernel.org
12258 S:      Supported
12259 W:      http://www.melexis.com
12260 F:      drivers/iio/temperature/mlx90632.c
12261
12262 MELFAS MIP4 TOUCHSCREEN DRIVER
12263 M:      Sangwon Jee <jeesw@melfas.com>
12264 S:      Supported
12265 W:      http://www.melfas.com
12266 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
12267 F:      drivers/input/touchscreen/melfas_mip4.c
12268
12269 MELLANOX BLUEFIELD I2C DRIVER
12270 M:      Khalil Blaiech <kblaiech@nvidia.com>
12271 L:      linux-i2c@vger.kernel.org
12272 S:      Supported
12273 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
12274 F:      drivers/i2c/busses/i2c-mlxbf.c
12275
12276 MELLANOX ETHERNET DRIVER (mlx4_en)
12277 M:      Tariq Toukan <tariqt@nvidia.com>
12278 L:      netdev@vger.kernel.org
12279 S:      Supported
12280 W:      http://www.mellanox.com
12281 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12282 F:      drivers/net/ethernet/mellanox/mlx4/en_*
12283
12284 MELLANOX ETHERNET DRIVER (mlx5e)
12285 M:      Saeed Mahameed <saeedm@nvidia.com>
12286 L:      netdev@vger.kernel.org
12287 S:      Supported
12288 W:      http://www.mellanox.com
12289 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12290 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
12291
12292 MELLANOX ETHERNET INNOVA DRIVERS
12293 R:      Boris Pismenny <borisp@nvidia.com>
12294 L:      netdev@vger.kernel.org
12295 S:      Supported
12296 W:      http://www.mellanox.com
12297 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12298 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
12299 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12300 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12301 F:      include/linux/mlx5/mlx5_ifc_fpga.h
12302
12303 MELLANOX ETHERNET SWITCH DRIVERS
12304 M:      Ido Schimmel <idosch@nvidia.com>
12305 M:      Petr Machata <petrm@nvidia.com>
12306 L:      netdev@vger.kernel.org
12307 S:      Supported
12308 W:      http://www.mellanox.com
12309 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12310 F:      drivers/net/ethernet/mellanox/mlxsw/
12311 F:      tools/testing/selftests/drivers/net/mlxsw/
12312
12313 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12314 M:      mlxsw@nvidia.com
12315 L:      netdev@vger.kernel.org
12316 S:      Supported
12317 W:      http://www.mellanox.com
12318 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12319 F:      drivers/net/ethernet/mellanox/mlxfw/
12320
12321 MELLANOX HARDWARE PLATFORM SUPPORT
12322 M:      Hans de Goede <hdegoede@redhat.com>
12323 M:      Mark Gross <markgross@kernel.org>
12324 M:      Vadim Pasternak <vadimp@nvidia.com>
12325 L:      platform-driver-x86@vger.kernel.org
12326 S:      Supported
12327 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12328 F:      drivers/platform/mellanox/
12329 F:      include/linux/platform_data/mlxreg.h
12330
12331 MELLANOX MLX4 core VPI driver
12332 M:      Tariq Toukan <tariqt@nvidia.com>
12333 L:      netdev@vger.kernel.org
12334 L:      linux-rdma@vger.kernel.org
12335 S:      Supported
12336 W:      http://www.mellanox.com
12337 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12338 F:      drivers/net/ethernet/mellanox/mlx4/
12339 F:      include/linux/mlx4/
12340
12341 MELLANOX MLX4 IB driver
12342 M:      Yishai Hadas <yishaih@nvidia.com>
12343 L:      linux-rdma@vger.kernel.org
12344 S:      Supported
12345 W:      http://www.mellanox.com
12346 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12347 F:      drivers/infiniband/hw/mlx4/
12348 F:      include/linux/mlx4/
12349 F:      include/uapi/rdma/mlx4-abi.h
12350
12351 MELLANOX MLX5 core VPI driver
12352 M:      Saeed Mahameed <saeedm@nvidia.com>
12353 M:      Leon Romanovsky <leonro@nvidia.com>
12354 L:      netdev@vger.kernel.org
12355 L:      linux-rdma@vger.kernel.org
12356 S:      Supported
12357 W:      http://www.mellanox.com
12358 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12359 F:      Documentation/networking/device_drivers/ethernet/mellanox/
12360 F:      drivers/net/ethernet/mellanox/mlx5/core/
12361 F:      include/linux/mlx5/
12362
12363 MELLANOX MLX5 IB driver
12364 M:      Leon Romanovsky <leonro@nvidia.com>
12365 L:      linux-rdma@vger.kernel.org
12366 S:      Supported
12367 W:      http://www.mellanox.com
12368 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12369 F:      drivers/infiniband/hw/mlx5/
12370 F:      include/linux/mlx5/
12371 F:      include/uapi/rdma/mlx5-abi.h
12372
12373 MELLANOX MLXCPLD I2C AND MUX DRIVER
12374 M:      Vadim Pasternak <vadimp@nvidia.com>
12375 M:      Michael Shych <michaelsh@nvidia.com>
12376 L:      linux-i2c@vger.kernel.org
12377 S:      Supported
12378 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
12379 F:      drivers/i2c/busses/i2c-mlxcpld.c
12380 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
12381
12382 MELLANOX MLXCPLD LED DRIVER
12383 M:      Vadim Pasternak <vadimp@nvidia.com>
12384 L:      linux-leds@vger.kernel.org
12385 S:      Supported
12386 F:      Documentation/leds/leds-mlxcpld.rst
12387 F:      drivers/leds/leds-mlxcpld.c
12388 F:      drivers/leds/leds-mlxreg.c
12389
12390 MELLANOX PLATFORM DRIVER
12391 M:      Vadim Pasternak <vadimp@nvidia.com>
12392 L:      platform-driver-x86@vger.kernel.org
12393 S:      Supported
12394 F:      drivers/platform/x86/mlx-platform.c
12395
12396 MEMBARRIER SUPPORT
12397 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12398 M:      "Paul E. McKenney" <paulmck@kernel.org>
12399 L:      linux-kernel@vger.kernel.org
12400 S:      Supported
12401 F:      arch/powerpc/include/asm/membarrier.h
12402 F:      include/uapi/linux/membarrier.h
12403 F:      kernel/sched/membarrier.c
12404
12405 MEMBLOCK
12406 M:      Mike Rapoport <rppt@linux.ibm.com>
12407 L:      linux-mm@kvack.org
12408 S:      Maintained
12409 F:      Documentation/core-api/boot-time-mm.rst
12410 F:      include/linux/memblock.h
12411 F:      mm/memblock.c
12412
12413 MEMORY CONTROLLER DRIVERS
12414 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
12415 L:      linux-kernel@vger.kernel.org
12416 S:      Maintained
12417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12418 F:      Documentation/devicetree/bindings/memory-controllers/
12419 F:      drivers/memory/
12420 F:      include/dt-bindings/memory/
12421 F:      include/memory/
12422
12423 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12424 M:      Dmitry Osipenko <digetx@gmail.com>
12425 L:      linux-pm@vger.kernel.org
12426 L:      linux-tegra@vger.kernel.org
12427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12428 S:      Maintained
12429 F:      drivers/devfreq/tegra30-devfreq.c
12430
12431 MEMORY MANAGEMENT
12432 M:      Andrew Morton <akpm@linux-foundation.org>
12433 L:      linux-mm@kvack.org
12434 S:      Maintained
12435 W:      http://www.linux-mm.org
12436 T:      quilt https://ozlabs.org/~akpm/mmotm/
12437 T:      quilt https://ozlabs.org/~akpm/mmots/
12438 T:      git git://github.com/hnaz/linux-mm.git
12439 F:      include/linux/gfp.h
12440 F:      include/linux/memory_hotplug.h
12441 F:      include/linux/mm.h
12442 F:      include/linux/mmzone.h
12443 F:      include/linux/pagewalk.h
12444 F:      include/linux/vmalloc.h
12445 F:      mm/
12446 F:      tools/testing/selftests/vm/
12447
12448 MEMORY TECHNOLOGY DEVICES (MTD)
12449 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12450 M:      Richard Weinberger <richard@nod.at>
12451 M:      Vignesh Raghavendra <vigneshr@ti.com>
12452 L:      linux-mtd@lists.infradead.org
12453 S:      Maintained
12454 W:      http://www.linux-mtd.infradead.org/
12455 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12456 C:      irc://irc.oftc.net/mtd
12457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12459 F:      Documentation/devicetree/bindings/mtd/
12460 F:      drivers/mtd/
12461 F:      include/linux/mtd/
12462 F:      include/uapi/mtd/
12463
12464 MEN A21 WATCHDOG DRIVER
12465 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12466 L:      linux-watchdog@vger.kernel.org
12467 S:      Maintained
12468 F:      drivers/watchdog/mena21_wdt.c
12469
12470 MEN CHAMELEON BUS (mcb)
12471 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12472 S:      Maintained
12473 F:      Documentation/driver-api/men-chameleon-bus.rst
12474 F:      drivers/mcb/
12475 F:      include/linux/mcb.h
12476
12477 MEN F21BMC (Board Management Controller)
12478 M:      Andreas Werner <andreas.werner@men.de>
12479 S:      Supported
12480 F:      Documentation/hwmon/menf21bmc.rst
12481 F:      drivers/hwmon/menf21bmc_hwmon.c
12482 F:      drivers/leds/leds-menf21bmc.c
12483 F:      drivers/mfd/menf21bmc.c
12484 F:      drivers/watchdog/menf21bmc_wdt.c
12485
12486 MEN Z069 WATCHDOG DRIVER
12487 M:      Johannes Thumshirn <jth@kernel.org>
12488 L:      linux-watchdog@vger.kernel.org
12489 S:      Maintained
12490 F:      drivers/watchdog/menz69_wdt.c
12491
12492 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12493 M:      Neil Armstrong <narmstrong@baylibre.com>
12494 L:      linux-media@vger.kernel.org
12495 L:      linux-amlogic@lists.infradead.org
12496 S:      Supported
12497 W:      http://linux-meson.com/
12498 T:      git git://linuxtv.org/media_tree.git
12499 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12500 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12501 F:      drivers/media/cec/platform/meson/ao-cec.c
12502
12503 MESON GE2D DRIVER FOR AMLOGIC SOCS
12504 M:      Neil Armstrong <narmstrong@baylibre.com>
12505 L:      linux-media@vger.kernel.org
12506 L:      linux-amlogic@lists.infradead.org
12507 S:      Supported
12508 T:      git git://linuxtv.org/media_tree.git
12509 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12510 F:      drivers/media/platform/meson/ge2d/
12511
12512 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12513 M:      Liang Yang <liang.yang@amlogic.com>
12514 L:      linux-mtd@lists.infradead.org
12515 S:      Maintained
12516 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12517 F:      drivers/mtd/nand/raw/meson_*
12518
12519 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12520 M:      Neil Armstrong <narmstrong@baylibre.com>
12521 L:      linux-media@vger.kernel.org
12522 L:      linux-amlogic@lists.infradead.org
12523 S:      Supported
12524 T:      git git://linuxtv.org/media_tree.git
12525 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12526 F:      drivers/staging/media/meson/vdec/
12527
12528 METHODE UDPU SUPPORT
12529 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12530 S:      Maintained
12531 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12532
12533 MHI BUS
12534 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12535 R:      Hemant Kumar <hemantk@codeaurora.org>
12536 L:      mhi@lists.linux.dev
12537 L:      linux-arm-msm@vger.kernel.org
12538 S:      Maintained
12539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12540 F:      Documentation/ABI/stable/sysfs-bus-mhi
12541 F:      Documentation/mhi/
12542 F:      drivers/bus/mhi/
12543 F:      include/linux/mhi.h
12544
12545 MICROBLAZE ARCHITECTURE
12546 M:      Michal Simek <monstr@monstr.eu>
12547 S:      Supported
12548 W:      http://www.monstr.eu/fdt/
12549 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12550 F:      arch/microblaze/
12551
12552 MICROCHIP AT91 DMA DRIVERS
12553 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12554 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12555 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12556 L:      dmaengine@vger.kernel.org
12557 S:      Supported
12558 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12559 F:      drivers/dma/at_hdmac.c
12560 F:      drivers/dma/at_hdmac_regs.h
12561 F:      drivers/dma/at_xdmac.c
12562 F:      include/dt-bindings/dma/at91.h
12563
12564 MICROCHIP AT91 SERIAL DRIVER
12565 M:      Richard Genoud <richard.genoud@gmail.com>
12566 S:      Maintained
12567 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12568 F:      drivers/tty/serial/atmel_serial.c
12569 F:      drivers/tty/serial/atmel_serial.h
12570
12571 MICROCHIP AT91 USART MFD DRIVER
12572 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12573 L:      linux-kernel@vger.kernel.org
12574 S:      Supported
12575 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12576 F:      drivers/mfd/at91-usart.c
12577 F:      include/dt-bindings/mfd/at91-usart.h
12578
12579 MICROCHIP AT91 USART SPI DRIVER
12580 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12581 L:      linux-spi@vger.kernel.org
12582 S:      Supported
12583 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12584 F:      drivers/spi/spi-at91-usart.c
12585
12586 MICROCHIP AUDIO ASOC DRIVERS
12587 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12588 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12589 S:      Supported
12590 F:      sound/soc/atmel
12591
12592 MICROCHIP ECC DRIVER
12593 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12594 L:      linux-crypto@vger.kernel.org
12595 S:      Maintained
12596 F:      drivers/crypto/atmel-ecc.*
12597
12598 MICROCHIP EIC DRIVER
12599 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12600 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12601 S:      Supported
12602 F:      drivers/irqchip/irq-mchp-eic.c
12603
12604 MICROCHIP I2C DRIVER
12605 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12606 L:      linux-i2c@vger.kernel.org
12607 S:      Supported
12608 F:      drivers/i2c/busses/i2c-at91-*.c
12609 F:      drivers/i2c/busses/i2c-at91.h
12610
12611 MICROCHIP ISC DRIVER
12612 M:      Eugen Hristev <eugen.hristev@microchip.com>
12613 L:      linux-media@vger.kernel.org
12614 S:      Supported
12615 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
12616 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
12617 F:      drivers/media/platform/atmel/atmel-isc-base.c
12618 F:      drivers/media/platform/atmel/atmel-isc-regs.h
12619 F:      drivers/media/platform/atmel/atmel-isc.h
12620 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
12621 F:      drivers/media/platform/atmel/atmel-sama7g5-isc.c
12622 F:      include/linux/atmel-isc-media.h
12623
12624 MICROCHIP ISI DRIVER
12625 M:      Eugen Hristev <eugen.hristev@microchip.com>
12626 L:      linux-media@vger.kernel.org
12627 S:      Supported
12628 F:      drivers/media/platform/atmel/atmel-isi.c
12629 F:      drivers/media/platform/atmel/atmel-isi.h
12630
12631 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12632 M:      Woojung Huh <woojung.huh@microchip.com>
12633 M:      UNGLinuxDriver@microchip.com
12634 L:      netdev@vger.kernel.org
12635 S:      Maintained
12636 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12637 F:      drivers/net/dsa/microchip/*
12638 F:      include/linux/platform_data/microchip-ksz.h
12639 F:      net/dsa/tag_ksz.c
12640
12641 MICROCHIP LAN743X ETHERNET DRIVER
12642 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
12643 M:      UNGLinuxDriver@microchip.com
12644 L:      netdev@vger.kernel.org
12645 S:      Maintained
12646 F:      drivers/net/ethernet/microchip/lan743x_*
12647
12648 MICROCHIP LAN966X ETHERNET DRIVER
12649 M:      Horatiu Vultur <horatiu.vultur@microchip.com>
12650 M:      UNGLinuxDriver@microchip.com
12651 L:      netdev@vger.kernel.org
12652 S:      Maintained
12653 F:      drivers/net/ethernet/microchip/lan966x/*
12654
12655 MICROCHIP LCDFB DRIVER
12656 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
12657 L:      linux-fbdev@vger.kernel.org
12658 S:      Maintained
12659 F:      drivers/video/fbdev/atmel_lcdfb.c
12660 F:      include/video/atmel_lcdc.h
12661
12662 MICROCHIP MCP16502 PMIC DRIVER
12663 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12664 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12665 S:      Supported
12666 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12667 F:      drivers/regulator/mcp16502.c
12668
12669 MICROCHIP MCP3911 ADC DRIVER
12670 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12671 M:      Kent Gustavsson <kent@minoris.se>
12672 L:      linux-iio@vger.kernel.org
12673 S:      Supported
12674 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12675 F:      drivers/iio/adc/mcp3911.c
12676
12677 MICROCHIP MMC/SD/SDIO MCI DRIVER
12678 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12679 S:      Maintained
12680 F:      drivers/mmc/host/atmel-mci.c
12681
12682 MICROCHIP NAND DRIVER
12683 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12684 L:      linux-mtd@lists.infradead.org
12685 S:      Supported
12686 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
12687 F:      drivers/mtd/nand/raw/atmel/*
12688
12689 MICROCHIP PWM DRIVER
12690 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12691 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12692 L:      linux-pwm@vger.kernel.org
12693 S:      Supported
12694 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12695 F:      drivers/pwm/pwm-atmel.c
12696
12697 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12698 M:      Eugen Hristev <eugen.hristev@microchip.com>
12699 L:      linux-iio@vger.kernel.org
12700 S:      Supported
12701 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12702 F:      drivers/iio/adc/at91-sama5d2_adc.c
12703 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12704
12705 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12706 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12707 S:      Supported
12708 F:      drivers/power/reset/at91-sama5d2_shdwc.c
12709
12710 MICROCHIP SPI DRIVER
12711 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12712 S:      Supported
12713 F:      drivers/spi/spi-atmel.*
12714
12715 MICROCHIP SSC DRIVER
12716 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12717 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12718 S:      Supported
12719 F:      drivers/misc/atmel-ssc.c
12720 F:      include/linux/atmel-ssc.h
12721
12722 MICROCHIP USB251XB DRIVER
12723 M:      Richard Leitner <richard.leitner@skidata.com>
12724 L:      linux-usb@vger.kernel.org
12725 S:      Maintained
12726 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
12727 F:      drivers/usb/misc/usb251xb.c
12728
12729 MICROCHIP USBA UDC DRIVER
12730 M:      Cristian Birsan <cristian.birsan@microchip.com>
12731 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12732 S:      Supported
12733 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
12734
12735 MICROCHIP WILC1000 WIFI DRIVER
12736 M:      Ajay Singh <ajay.kathat@microchip.com>
12737 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12738 L:      linux-wireless@vger.kernel.org
12739 S:      Supported
12740 F:      drivers/net/wireless/microchip/wilc1000/
12741
12742 MICROSEMI MIPS SOCS
12743 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12744 M:      UNGLinuxDriver@microchip.com
12745 L:      linux-mips@vger.kernel.org
12746 S:      Supported
12747 F:      Documentation/devicetree/bindings/mips/mscc.txt
12748 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12749 F:      arch/mips/boot/dts/mscc/
12750 F:      arch/mips/configs/generic/board-ocelot.config
12751 F:      arch/mips/generic/board-ocelot.c
12752
12753 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12754 M:      Don Brace <don.brace@microchip.com>
12755 L:      storagedev@microchip.com
12756 L:      linux-scsi@vger.kernel.org
12757 S:      Supported
12758 F:      Documentation/scsi/smartpqi.rst
12759 F:      drivers/scsi/smartpqi/Kconfig
12760 F:      drivers/scsi/smartpqi/Makefile
12761 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
12762 F:      include/linux/cciss*.h
12763 F:      include/uapi/linux/cciss*.h
12764
12765 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12766 M:      Maximilian Luz <luzmaximilian@gmail.com>
12767 L:      linux-pm@vger.kernel.org
12768 L:      platform-driver-x86@vger.kernel.org
12769 S:      Maintained
12770 F:      drivers/power/supply/surface_battery.c
12771 F:      drivers/power/supply/surface_charger.c
12772
12773 MICROSOFT SURFACE DTX DRIVER
12774 M:      Maximilian Luz <luzmaximilian@gmail.com>
12775 L:      platform-driver-x86@vger.kernel.org
12776 S:      Maintained
12777 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
12778 F:      drivers/platform/surface/surface_dtx.c
12779 F:      include/uapi/linux/surface_aggregator/dtx.h
12780
12781 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12782 M:      Maximilian Luz <luzmaximilian@gmail.com>
12783 L:      platform-driver-x86@vger.kernel.org
12784 S:      Maintained
12785 F:      drivers/platform/surface/surface_gpe.c
12786
12787 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12788 M:      Hans de Goede <hdegoede@redhat.com>
12789 M:      Mark Gross <markgross@kernel.org>
12790 M:      Maximilian Luz <luzmaximilian@gmail.com>
12791 L:      platform-driver-x86@vger.kernel.org
12792 S:      Maintained
12793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12794 F:      drivers/platform/surface/
12795
12796 MICROSOFT SURFACE HID TRANSPORT DRIVER
12797 M:      Maximilian Luz <luzmaximilian@gmail.com>
12798 L:      linux-input@vger.kernel.org
12799 L:      platform-driver-x86@vger.kernel.org
12800 S:      Maintained
12801 F:      drivers/hid/surface-hid/
12802
12803 MICROSOFT SURFACE HOT-PLUG DRIVER
12804 M:      Maximilian Luz <luzmaximilian@gmail.com>
12805 L:      platform-driver-x86@vger.kernel.org
12806 S:      Maintained
12807 F:      drivers/platform/surface/surface_hotplug.c
12808
12809 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12810 M:      Maximilian Luz <luzmaximilian@gmail.com>
12811 L:      platform-driver-x86@vger.kernel.org
12812 S:      Maintained
12813 F:      drivers/platform/surface/surface_platform_profile.c
12814
12815 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12816 M:      Chen Yu <yu.c.chen@intel.com>
12817 L:      platform-driver-x86@vger.kernel.org
12818 S:      Supported
12819 F:      drivers/platform/surface/surfacepro3_button.c
12820
12821 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12822 M:      Maximilian Luz <luzmaximilian@gmail.com>
12823 L:      platform-driver-x86@vger.kernel.org
12824 S:      Maintained
12825 W:      https://github.com/linux-surface/surface-aggregator-module
12826 C:      irc://irc.libera.chat/linux-surface
12827 F:      Documentation/driver-api/surface_aggregator/
12828 F:      drivers/platform/surface/aggregator/
12829 F:      drivers/platform/surface/surface_acpi_notify.c
12830 F:      drivers/platform/surface/surface_aggregator_cdev.c
12831 F:      drivers/platform/surface/surface_aggregator_registry.c
12832 F:      include/linux/surface_acpi_notify.h
12833 F:      include/linux/surface_aggregator/
12834 F:      include/uapi/linux/surface_aggregator/
12835
12836 MICROTEK X6 SCANNER
12837 M:      Oliver Neukum <oliver@neukum.org>
12838 S:      Maintained
12839 F:      drivers/usb/image/microtek.*
12840
12841 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12842 M:      Luka Kovacic <luka.kovacic@sartura.hr>
12843 M:      Luka Perkov <luka.perkov@sartura.hr>
12844 S:      Maintained
12845 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12846 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12847 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12848 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12849 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12850 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12851
12852 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12853 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12854 L:      linux-media@vger.kernel.org
12855 S:      Maintained
12856 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12857 F:      Documentation/driver-api/media/drivers/ccs/
12858 F:      Documentation/userspace-api/media/drivers/ccs.rst
12859 F:      drivers/media/i2c/ccs-pll.c
12860 F:      drivers/media/i2c/ccs-pll.h
12861 F:      drivers/media/i2c/ccs/
12862 F:      include/uapi/linux/ccs.h
12863 F:      include/uapi/linux/smiapp.h
12864
12865 MIPS
12866 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12867 L:      linux-mips@vger.kernel.org
12868 S:      Maintained
12869 W:      http://www.linux-mips.org/
12870 Q:      https://patchwork.kernel.org/project/linux-mips/list/
12871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12872 F:      Documentation/devicetree/bindings/mips/
12873 F:      Documentation/mips/
12874 F:      arch/mips/
12875 F:      drivers/platform/mips/
12876
12877 MIPS BOSTON DEVELOPMENT BOARD
12878 M:      Paul Burton <paulburton@kernel.org>
12879 L:      linux-mips@vger.kernel.org
12880 S:      Maintained
12881 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
12882 F:      arch/mips/boot/dts/img/boston.dts
12883 F:      arch/mips/configs/generic/board-boston.config
12884 F:      drivers/clk/imgtec/clk-boston.c
12885 F:      include/dt-bindings/clock/boston-clock.h
12886
12887 MIPS CORE DRIVERS
12888 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12889 M:      Serge Semin <fancer.lancer@gmail.com>
12890 L:      linux-mips@vger.kernel.org
12891 S:      Supported
12892 F:      drivers/bus/mips_cdmm.c
12893 F:      drivers/clocksource/mips-gic-timer.c
12894 F:      drivers/cpuidle/cpuidle-cps.c
12895 F:      drivers/irqchip/irq-mips-cpu.c
12896 F:      drivers/irqchip/irq-mips-gic.c
12897
12898 MIPS GENERIC PLATFORM
12899 M:      Paul Burton <paulburton@kernel.org>
12900 L:      linux-mips@vger.kernel.org
12901 S:      Supported
12902 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12903 F:      arch/mips/generic/
12904 F:      arch/mips/tools/generic-board-config.sh
12905
12906 MIPS RINT INSTRUCTION EMULATION
12907 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
12908 L:      linux-mips@vger.kernel.org
12909 S:      Supported
12910 F:      arch/mips/math-emu/dp_rint.c
12911 F:      arch/mips/math-emu/sp_rint.c
12912
12913 MIPS/LOONGSON1 ARCHITECTURE
12914 M:      Keguang Zhang <keguang.zhang@gmail.com>
12915 L:      linux-mips@vger.kernel.org
12916 S:      Maintained
12917 F:      arch/mips/include/asm/mach-loongson32/
12918 F:      arch/mips/loongson32/
12919 F:      drivers/*/*/*loongson1*
12920 F:      drivers/*/*loongson1*
12921
12922 MIPS/LOONGSON2EF ARCHITECTURE
12923 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12924 L:      linux-mips@vger.kernel.org
12925 S:      Maintained
12926 F:      arch/mips/include/asm/mach-loongson2ef/
12927 F:      arch/mips/loongson2ef/
12928 F:      drivers/cpufreq/loongson2_cpufreq.c
12929
12930 MIPS/LOONGSON64 ARCHITECTURE
12931 M:      Huacai Chen <chenhuacai@kernel.org>
12932 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12933 L:      linux-mips@vger.kernel.org
12934 S:      Maintained
12935 F:      arch/mips/include/asm/mach-loongson64/
12936 F:      arch/mips/loongson64/
12937 F:      drivers/irqchip/irq-loongson*
12938 F:      drivers/platform/mips/cpu_hwmon.c
12939
12940 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12941 M:      Hans Verkuil <hverkuil@xs4all.nl>
12942 L:      linux-media@vger.kernel.org
12943 S:      Odd Fixes
12944 W:      https://linuxtv.org
12945 T:      git git://linuxtv.org/media_tree.git
12946 F:      drivers/media/radio/radio-miropcm20*
12947
12948 MMP SUPPORT
12949 R:      Lubomir Rintel <lkundrak@v3.sk>
12950 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12951 S:      Odd Fixes
12952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12953 F:      arch/arm/boot/dts/mmp*
12954 F:      arch/arm/mach-mmp/
12955 F:      include/linux/soc/mmp/
12956
12957 MMP USB PHY DRIVERS
12958 R:      Lubomir Rintel <lkundrak@v3.sk>
12959 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12960 S:      Maintained
12961 F:      drivers/phy/marvell/phy-mmp3-usb.c
12962 F:      drivers/phy/marvell/phy-pxa-usb.c
12963
12964 MMU GATHER AND TLB INVALIDATION
12965 M:      Will Deacon <will@kernel.org>
12966 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
12967 M:      Andrew Morton <akpm@linux-foundation.org>
12968 M:      Nick Piggin <npiggin@gmail.com>
12969 M:      Peter Zijlstra <peterz@infradead.org>
12970 L:      linux-arch@vger.kernel.org
12971 L:      linux-mm@kvack.org
12972 S:      Maintained
12973 F:      arch/*/include/asm/tlb.h
12974 F:      include/asm-generic/tlb.h
12975 F:      mm/mmu_gather.c
12976
12977 MN88472 MEDIA DRIVER
12978 M:      Antti Palosaari <crope@iki.fi>
12979 L:      linux-media@vger.kernel.org
12980 S:      Maintained
12981 W:      https://linuxtv.org
12982 W:      http://palosaari.fi/linux/
12983 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12984 F:      drivers/media/dvb-frontends/mn88472*
12985
12986 MN88473 MEDIA DRIVER
12987 M:      Antti Palosaari <crope@iki.fi>
12988 L:      linux-media@vger.kernel.org
12989 S:      Maintained
12990 W:      https://linuxtv.org
12991 W:      http://palosaari.fi/linux/
12992 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12993 F:      drivers/media/dvb-frontends/mn88473*
12994
12995 MODULE SUPPORT
12996 M:      Luis Chamberlain <mcgrof@kernel.org>
12997 M:      Jessica Yu <jeyu@kernel.org>
12998 S:      Maintained
12999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
13000 F:      include/linux/module.h
13001 F:      kernel/module.c
13002
13003 MONOLITHIC POWER SYSTEM PMIC DRIVER
13004 M:      Saravanan Sekar <sravanhome@gmail.com>
13005 S:      Maintained
13006 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
13007 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
13008 F:      drivers/iio/adc/mp2629_adc.c
13009 F:      drivers/mfd/mp2629.c
13010 F:      drivers/power/supply/mp2629_charger.c
13011 F:      drivers/regulator/mp5416.c
13012 F:      drivers/regulator/mpq7920.c
13013 F:      drivers/regulator/mpq7920.h
13014 F:      include/linux/mfd/mp2629.h
13015
13016 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
13017 S:      Orphan
13018 W:      http://popies.net/meye/
13019 F:      Documentation/userspace-api/media/drivers/meye*
13020 F:      drivers/media/pci/meye/
13021 F:      include/uapi/linux/meye.h
13022
13023 MOTORCOMM PHY DRIVER
13024 M:      Peter Geis <pgwipeout@gmail.com>
13025 L:      netdev@vger.kernel.org
13026 S:      Maintained
13027 F:      drivers/net/phy/motorcomm.c
13028
13029 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
13030 M:      Jiri Slaby <jirislaby@kernel.org>
13031 S:      Maintained
13032 F:      Documentation/driver-api/serial/moxa-smartio.rst
13033 F:      drivers/tty/mxser.*
13034
13035 MR800 AVERMEDIA USB FM RADIO DRIVER
13036 M:      Alexey Klimov <klimov.linux@gmail.com>
13037 L:      linux-media@vger.kernel.org
13038 S:      Maintained
13039 T:      git git://linuxtv.org/media_tree.git
13040 F:      drivers/media/radio/radio-mr800.c
13041
13042 MRF24J40 IEEE 802.15.4 RADIO DRIVER
13043 M:      Alan Ott <alan@signal11.us>
13044 L:      linux-wpan@vger.kernel.org
13045 S:      Maintained
13046 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
13047 F:      drivers/net/ieee802154/mrf24j40.c
13048
13049 MSI LAPTOP SUPPORT
13050 M:      "Lee, Chun-Yi" <jlee@suse.com>
13051 L:      platform-driver-x86@vger.kernel.org
13052 S:      Maintained
13053 F:      drivers/platform/x86/msi-laptop.c
13054
13055 MSI WMI SUPPORT
13056 L:      platform-driver-x86@vger.kernel.org
13057 S:      Orphan
13058 F:      drivers/platform/x86/msi-wmi.c
13059
13060 MSI001 MEDIA DRIVER
13061 M:      Antti Palosaari <crope@iki.fi>
13062 L:      linux-media@vger.kernel.org
13063 S:      Maintained
13064 W:      https://linuxtv.org
13065 W:      http://palosaari.fi/linux/
13066 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13067 T:      git git://linuxtv.org/anttip/media_tree.git
13068 F:      drivers/media/tuners/msi001*
13069
13070 MSI2500 MEDIA DRIVER
13071 M:      Antti Palosaari <crope@iki.fi>
13072 L:      linux-media@vger.kernel.org
13073 S:      Maintained
13074 W:      https://linuxtv.org
13075 W:      http://palosaari.fi/linux/
13076 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13077 T:      git git://linuxtv.org/anttip/media_tree.git
13078 F:      drivers/media/usb/msi2500/
13079
13080 MSTAR INTERRUPT CONTROLLER DRIVER
13081 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
13082 M:      Daniel Palmer <daniel@thingy.jp>
13083 S:      Maintained
13084 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
13085 F:      drivers/irqchip/irq-mst-intc.c
13086
13087 MSYSTEMS DISKONCHIP G3 MTD DRIVER
13088 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13089 L:      linux-mtd@lists.infradead.org
13090 S:      Maintained
13091 F:      drivers/mtd/devices/docg3*
13092
13093 MT9M032 APTINA SENSOR DRIVER
13094 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13095 L:      linux-media@vger.kernel.org
13096 S:      Maintained
13097 T:      git git://linuxtv.org/media_tree.git
13098 F:      drivers/media/i2c/mt9m032.c
13099 F:      include/media/i2c/mt9m032.h
13100
13101 MT9P031 APTINA CAMERA SENSOR
13102 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13103 L:      linux-media@vger.kernel.org
13104 S:      Maintained
13105 T:      git git://linuxtv.org/media_tree.git
13106 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
13107 F:      drivers/media/i2c/mt9p031.c
13108 F:      include/media/i2c/mt9p031.h
13109
13110 MT9T001 APTINA CAMERA SENSOR
13111 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13112 L:      linux-media@vger.kernel.org
13113 S:      Maintained
13114 T:      git git://linuxtv.org/media_tree.git
13115 F:      drivers/media/i2c/mt9t001.c
13116 F:      include/media/i2c/mt9t001.h
13117
13118 MT9T112 APTINA CAMERA SENSOR
13119 M:      Jacopo Mondi <jacopo@jmondi.org>
13120 L:      linux-media@vger.kernel.org
13121 S:      Odd Fixes
13122 T:      git git://linuxtv.org/media_tree.git
13123 F:      drivers/media/i2c/mt9t112.c
13124 F:      include/media/i2c/mt9t112.h
13125
13126 MT9V032 APTINA CAMERA SENSOR
13127 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13128 L:      linux-media@vger.kernel.org
13129 S:      Maintained
13130 T:      git git://linuxtv.org/media_tree.git
13131 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
13132 F:      drivers/media/i2c/mt9v032.c
13133 F:      include/media/i2c/mt9v032.h
13134
13135 MT9V111 APTINA CAMERA SENSOR
13136 M:      Jacopo Mondi <jacopo@jmondi.org>
13137 L:      linux-media@vger.kernel.org
13138 S:      Maintained
13139 T:      git git://linuxtv.org/media_tree.git
13140 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
13141 F:      drivers/media/i2c/mt9v111.c
13142
13143 MULTIFUNCTION DEVICES (MFD)
13144 M:      Lee Jones <lee.jones@linaro.org>
13145 S:      Supported
13146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
13147 F:      Documentation/devicetree/bindings/mfd/
13148 F:      drivers/mfd/
13149 F:      include/dt-bindings/mfd/
13150 F:      include/linux/mfd/
13151
13152 MULTIMEDIA CARD (MMC) ETC. OVER SPI
13153 S:      Orphan
13154 F:      drivers/mmc/host/mmc_spi.c
13155 F:      include/linux/spi/mmc_spi.h
13156
13157 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
13158 M:      Ulf Hansson <ulf.hansson@linaro.org>
13159 L:      linux-mmc@vger.kernel.org
13160 S:      Maintained
13161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
13162 F:      Documentation/devicetree/bindings/mmc/
13163 F:      drivers/mmc/
13164 F:      include/linux/mmc/
13165 F:      include/uapi/linux/mmc/
13166
13167 MULTIPLEXER SUBSYSTEM
13168 M:      Peter Rosin <peda@axentia.se>
13169 S:      Maintained
13170 F:      Documentation/ABI/testing/sysfs-class-mux*
13171 F:      Documentation/devicetree/bindings/mux/
13172 F:      drivers/mux/
13173 F:      include/dt-bindings/mux/
13174 F:      include/linux/mux/
13175
13176 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
13177 M:      Bin Liu <b-liu@ti.com>
13178 L:      linux-usb@vger.kernel.org
13179 S:      Maintained
13180 F:      drivers/usb/musb/
13181
13182 MXL301RF MEDIA DRIVER
13183 M:      Akihiro Tsukada <tskd08@gmail.com>
13184 L:      linux-media@vger.kernel.org
13185 S:      Odd Fixes
13186 F:      drivers/media/tuners/mxl301rf*
13187
13188 MXL5007T MEDIA DRIVER
13189 M:      Michael Krufky <mkrufky@linuxtv.org>
13190 L:      linux-media@vger.kernel.org
13191 S:      Maintained
13192 W:      https://linuxtv.org
13193 W:      http://github.com/mkrufky
13194 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13195 T:      git git://linuxtv.org/mkrufky/tuners.git
13196 F:      drivers/media/tuners/mxl5007t.*
13197
13198 MXSFB DRM DRIVER
13199 M:      Marek Vasut <marex@denx.de>
13200 M:      Stefan Agner <stefan@agner.ch>
13201 L:      dri-devel@lists.freedesktop.org
13202 S:      Supported
13203 T:      git git://anongit.freedesktop.org/drm/drm-misc
13204 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
13205 F:      drivers/gpu/drm/mxsfb/
13206
13207 MYLEX DAC960 PCI RAID Controller
13208 M:      Hannes Reinecke <hare@kernel.org>
13209 L:      linux-scsi@vger.kernel.org
13210 S:      Supported
13211 F:      drivers/scsi/myrb.*
13212 F:      drivers/scsi/myrs.*
13213
13214 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
13215 M:      Chris Lee <christopher.lee@cspi.com>
13216 L:      netdev@vger.kernel.org
13217 S:      Supported
13218 W:      https://www.cspi.com/ethernet-products/support/downloads/
13219 F:      drivers/net/ethernet/myricom/myri10ge/
13220
13221 NAND FLASH SUBSYSTEM
13222 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13223 R:      Richard Weinberger <richard@nod.at>
13224 L:      linux-mtd@lists.infradead.org
13225 S:      Maintained
13226 W:      http://www.linux-mtd.infradead.org/
13227 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13228 C:      irc://irc.oftc.net/mtd
13229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
13230 F:      drivers/mtd/nand/
13231 F:      include/linux/mtd/*nand*.h
13232
13233 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
13234 M:      Daniel Mack <zonque@gmail.com>
13235 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13236 S:      Maintained
13237 W:      http://www.native-instruments.com
13238 F:      sound/usb/caiaq/
13239
13240 NATSEMI ETHERNET DRIVER (DP8381x)
13241 S:      Orphan
13242 F:      drivers/net/ethernet/natsemi/natsemi.c
13243
13244 NCR 5380 SCSI DRIVERS
13245 M:      Finn Thain <fthain@linux-m68k.org>
13246 M:      Michael Schmitz <schmitzmic@gmail.com>
13247 L:      linux-scsi@vger.kernel.org
13248 S:      Maintained
13249 F:      Documentation/scsi/g_NCR5380.rst
13250 F:      drivers/scsi/NCR5380.*
13251 F:      drivers/scsi/arm/cumana_1.c
13252 F:      drivers/scsi/arm/oak.c
13253 F:      drivers/scsi/atari_scsi.*
13254 F:      drivers/scsi/dmx3191d.c
13255 F:      drivers/scsi/g_NCR5380.*
13256 F:      drivers/scsi/mac_scsi.*
13257 F:      drivers/scsi/sun3_scsi.*
13258 F:      drivers/scsi/sun3_scsi_vme.c
13259
13260 NCSI LIBRARY
13261 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
13262 S:      Maintained
13263 F:      net/ncsi/
13264
13265 NCT6775 HARDWARE MONITOR DRIVER
13266 M:      Guenter Roeck <linux@roeck-us.net>
13267 L:      linux-hwmon@vger.kernel.org
13268 S:      Maintained
13269 F:      Documentation/hwmon/nct6775.rst
13270 F:      drivers/hwmon/nct6775.c
13271
13272 NETDEVSIM
13273 M:      Jakub Kicinski <kuba@kernel.org>
13274 S:      Maintained
13275 F:      drivers/net/netdevsim/*
13276
13277 NETEM NETWORK EMULATOR
13278 M:      Stephen Hemminger <stephen@networkplumber.org>
13279 L:      netdev@vger.kernel.org
13280 S:      Maintained
13281 F:      net/sched/sch_netem.c
13282
13283 NETERION 10GbE DRIVERS (s2io/vxge)
13284 M:      Jon Mason <jdmason@kudzu.us>
13285 L:      netdev@vger.kernel.org
13286 S:      Supported
13287 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
13288 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
13289 F:      drivers/net/ethernet/neterion/
13290
13291 NETFILTER
13292 M:      Pablo Neira Ayuso <pablo@netfilter.org>
13293 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
13294 M:      Florian Westphal <fw@strlen.de>
13295 L:      netfilter-devel@vger.kernel.org
13296 L:      coreteam@netfilter.org
13297 S:      Maintained
13298 W:      http://www.netfilter.org/
13299 W:      http://www.iptables.org/
13300 W:      http://www.nftables.org/
13301 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
13302 C:      irc://irc.libera.chat/netfilter
13303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
13304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
13305 F:      include/linux/netfilter*
13306 F:      include/linux/netfilter/
13307 F:      include/net/netfilter/
13308 F:      include/uapi/linux/netfilter*
13309 F:      include/uapi/linux/netfilter/
13310 F:      net/*/netfilter.c
13311 F:      net/*/netfilter/
13312 F:      net/bridge/br_netfilter*.c
13313 F:      net/netfilter/
13314
13315 NETROM NETWORK LAYER
13316 M:      Ralf Baechle <ralf@linux-mips.org>
13317 L:      linux-hams@vger.kernel.org
13318 S:      Maintained
13319 W:      http://www.linux-ax25.org/
13320 F:      include/net/netrom.h
13321 F:      include/uapi/linux/netrom.h
13322 F:      net/netrom/
13323
13324 NETRONIX EMBEDDED CONTROLLER
13325 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13326 S:      Maintained
13327 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13328 F:      drivers/mfd/ntxec.c
13329 F:      drivers/pwm/pwm-ntxec.c
13330 F:      drivers/rtc/rtc-ntxec.c
13331 F:      include/linux/mfd/ntxec.h
13332
13333 NETRONOME ETHERNET DRIVERS
13334 M:      Simon Horman <simon.horman@corigine.com>
13335 R:      Jakub Kicinski <kuba@kernel.org>
13336 L:      oss-drivers@corigine.com
13337 S:      Maintained
13338 F:      drivers/net/ethernet/netronome/
13339
13340 NETWORK BLOCK DEVICE (NBD)
13341 M:      Josef Bacik <josef@toxicpanda.com>
13342 L:      linux-block@vger.kernel.org
13343 L:      nbd@other.debian.org
13344 S:      Maintained
13345 F:      Documentation/admin-guide/blockdev/nbd.rst
13346 F:      drivers/block/nbd.c
13347 F:      include/trace/events/nbd.h
13348 F:      include/uapi/linux/nbd.h
13349
13350 NETWORK DROP MONITOR
13351 M:      Neil Horman <nhorman@tuxdriver.com>
13352 L:      netdev@vger.kernel.org
13353 S:      Maintained
13354 W:      https://fedorahosted.org/dropwatch/
13355 F:      include/uapi/linux/net_dropmon.h
13356 F:      net/core/drop_monitor.c
13357
13358 NETWORKING DRIVERS
13359 M:      "David S. Miller" <davem@davemloft.net>
13360 M:      Jakub Kicinski <kuba@kernel.org>
13361 L:      netdev@vger.kernel.org
13362 S:      Maintained
13363 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13364 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13366 F:      Documentation/devicetree/bindings/net/
13367 F:      drivers/connector/
13368 F:      drivers/net/
13369 F:      include/linux/etherdevice.h
13370 F:      include/linux/fcdevice.h
13371 F:      include/linux/fddidevice.h
13372 F:      include/linux/hippidevice.h
13373 F:      include/linux/if_*
13374 F:      include/linux/inetdevice.h
13375 F:      include/linux/netdevice.h
13376 F:      include/uapi/linux/if_*
13377 F:      include/uapi/linux/netdevice.h
13378
13379 NETWORKING DRIVERS (WIRELESS)
13380 M:      Kalle Valo <kvalo@kernel.org>
13381 L:      linux-wireless@vger.kernel.org
13382 S:      Maintained
13383 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
13385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
13386 F:      Documentation/devicetree/bindings/net/wireless/
13387 F:      drivers/net/wireless/
13388
13389 NETWORKING [DSA]
13390 M:      Andrew Lunn <andrew@lunn.ch>
13391 M:      Vivien Didelot <vivien.didelot@gmail.com>
13392 M:      Florian Fainelli <f.fainelli@gmail.com>
13393 M:      Vladimir Oltean <olteanv@gmail.com>
13394 S:      Maintained
13395 F:      Documentation/devicetree/bindings/net/dsa/
13396 F:      drivers/net/dsa/
13397 F:      include/linux/dsa/
13398 F:      include/linux/platform_data/dsa.h
13399 F:      include/net/dsa.h
13400 F:      net/dsa/
13401 F:      tools/testing/selftests/drivers/net/dsa/
13402
13403 NETWORKING [GENERAL]
13404 M:      "David S. Miller" <davem@davemloft.net>
13405 M:      Jakub Kicinski <kuba@kernel.org>
13406 L:      netdev@vger.kernel.org
13407 S:      Maintained
13408 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13409 B:      mailto:netdev@vger.kernel.org
13410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13412 F:      Documentation/networking/
13413 F:      include/linux/in.h
13414 F:      include/linux/net.h
13415 F:      include/linux/netdevice.h
13416 F:      include/net/
13417 F:      include/uapi/linux/in.h
13418 F:      include/uapi/linux/net.h
13419 F:      include/uapi/linux/net_namespace.h
13420 F:      include/uapi/linux/netdevice.h
13421 F:      lib/net_utils.c
13422 F:      lib/random32.c
13423 F:      net/
13424 F:      tools/testing/selftests/net/
13425
13426 NETWORKING [IPSEC]
13427 M:      Steffen Klassert <steffen.klassert@secunet.com>
13428 M:      Herbert Xu <herbert@gondor.apana.org.au>
13429 M:      "David S. Miller" <davem@davemloft.net>
13430 L:      netdev@vger.kernel.org
13431 S:      Maintained
13432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13434 F:      include/net/xfrm.h
13435 F:      include/uapi/linux/xfrm.h
13436 F:      net/ipv4/ah4.c
13437 F:      net/ipv4/esp4*
13438 F:      net/ipv4/ip_vti.c
13439 F:      net/ipv4/ipcomp.c
13440 F:      net/ipv4/xfrm*
13441 F:      net/ipv6/ah6.c
13442 F:      net/ipv6/esp6*
13443 F:      net/ipv6/ip6_vti.c
13444 F:      net/ipv6/ipcomp6.c
13445 F:      net/ipv6/xfrm*
13446 F:      net/key/
13447 F:      net/xfrm/
13448 F:      tools/testing/selftests/net/ipsec.c
13449
13450 NETWORKING [IPv4/IPv6]
13451 M:      "David S. Miller" <davem@davemloft.net>
13452 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13453 M:      David Ahern <dsahern@kernel.org>
13454 L:      netdev@vger.kernel.org
13455 S:      Maintained
13456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13457 F:      arch/x86/net/*
13458 F:      include/net/ip*
13459 F:      net/ipv4/
13460 F:      net/ipv6/
13461
13462 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13463 M:      Paul Moore <paul@paul-moore.com>
13464 L:      netdev@vger.kernel.org
13465 L:      linux-security-module@vger.kernel.org
13466 S:      Maintained
13467 W:      https://github.com/netlabel
13468 F:      Documentation/netlabel/
13469 F:      include/net/calipso.h
13470 F:      include/net/cipso_ipv4.h
13471 F:      include/net/netlabel.h
13472 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13473 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13474 F:      net/ipv4/cipso_ipv4.c
13475 F:      net/ipv6/calipso.c
13476 F:      net/netfilter/xt_CONNSECMARK.c
13477 F:      net/netfilter/xt_SECMARK.c
13478 F:      net/netlabel/
13479
13480 NETWORKING [MPTCP]
13481 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
13482 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
13483 L:      netdev@vger.kernel.org
13484 L:      mptcp@lists.linux.dev
13485 S:      Maintained
13486 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13487 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13488 F:      Documentation/networking/mptcp-sysctl.rst
13489 F:      include/net/mptcp.h
13490 F:      include/trace/events/mptcp.h
13491 F:      include/uapi/linux/mptcp.h
13492 F:      net/mptcp/
13493 F:      tools/testing/selftests/net/mptcp/
13494
13495 NETWORKING [TCP]
13496 M:      Eric Dumazet <edumazet@google.com>
13497 L:      netdev@vger.kernel.org
13498 S:      Maintained
13499 F:      include/linux/tcp.h
13500 F:      include/net/tcp.h
13501 F:      include/trace/events/tcp.h
13502 F:      include/uapi/linux/tcp.h
13503 F:      net/ipv4/syncookies.c
13504 F:      net/ipv4/tcp*.c
13505 F:      net/ipv6/syncookies.c
13506 F:      net/ipv6/tcp*.c
13507
13508 NETWORKING [TLS]
13509 M:      Boris Pismenny <borisp@nvidia.com>
13510 M:      John Fastabend <john.fastabend@gmail.com>
13511 M:      Daniel Borkmann <daniel@iogearbox.net>
13512 M:      Jakub Kicinski <kuba@kernel.org>
13513 L:      netdev@vger.kernel.org
13514 S:      Maintained
13515 F:      include/net/tls.h
13516 F:      include/uapi/linux/tls.h
13517 F:      net/tls/*
13518
13519 NETWORKING [WIRELESS]
13520 L:      linux-wireless@vger.kernel.org
13521 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13522
13523 NETXEN (1/10) GbE SUPPORT
13524 M:      Manish Chopra <manishc@marvell.com>
13525 M:      Rahul Verma <rahulv@marvell.com>
13526 M:      GR-Linux-NIC-Dev@marvell.com
13527 L:      netdev@vger.kernel.org
13528 S:      Supported
13529 F:      drivers/net/ethernet/qlogic/netxen/
13530
13531 NET_FAILOVER MODULE
13532 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13533 L:      netdev@vger.kernel.org
13534 S:      Supported
13535 F:      Documentation/networking/net_failover.rst
13536 F:      drivers/net/net_failover.c
13537 F:      include/net/net_failover.h
13538
13539 NEXTHOP
13540 M:      David Ahern <dsahern@kernel.org>
13541 L:      netdev@vger.kernel.org
13542 S:      Maintained
13543 F:      include/net/netns/nexthop.h
13544 F:      include/net/nexthop.h
13545 F:      include/uapi/linux/nexthop.h
13546 F:      net/ipv4/nexthop.c
13547
13548 NFC SUBSYSTEM
13549 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13550 L:      linux-nfc@lists.01.org (subscribers-only)
13551 L:      netdev@vger.kernel.org
13552 S:      Maintained
13553 F:      Documentation/devicetree/bindings/net/nfc/
13554 F:      drivers/nfc/
13555 F:      include/linux/platform_data/nfcmrvl.h
13556 F:      include/net/nfc/
13557 F:      include/uapi/linux/nfc.h
13558 F:      net/nfc/
13559
13560 NFC VIRTUAL NCI DEVICE DRIVER
13561 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
13562 L:      netdev@vger.kernel.org
13563 L:      linux-nfc@lists.01.org (subscribers-only)
13564 S:      Supported
13565 F:      drivers/nfc/virtual_ncidev.c
13566 F:      tools/testing/selftests/nci/
13567
13568 NFS, SUNRPC, AND LOCKD CLIENTS
13569 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
13570 M:      Anna Schumaker <anna.schumaker@netapp.com>
13571 L:      linux-nfs@vger.kernel.org
13572 S:      Maintained
13573 W:      http://client.linux-nfs.org
13574 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13575 F:      fs/lockd/
13576 F:      fs/nfs/
13577 F:      fs/nfs_common/
13578 F:      include/linux/lockd/
13579 F:      include/linux/nfs*
13580 F:      include/linux/sunrpc/
13581 F:      include/uapi/linux/nfs*
13582 F:      include/uapi/linux/sunrpc/
13583 F:      net/sunrpc/
13584 F:      Documentation/filesystems/nfs/
13585
13586 NILFS2 FILESYSTEM
13587 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
13588 L:      linux-nilfs@vger.kernel.org
13589 S:      Supported
13590 W:      https://nilfs.sourceforge.io/
13591 W:      https://nilfs.osdn.jp/
13592 T:      git git://github.com/konis/nilfs2.git
13593 F:      Documentation/filesystems/nilfs2.rst
13594 F:      fs/nilfs2/
13595 F:      include/trace/events/nilfs2.h
13596 F:      include/uapi/linux/nilfs2_api.h
13597 F:      include/uapi/linux/nilfs2_ondisk.h
13598
13599 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13600 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13601 S:      Maintained
13602 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13603 F:      Documentation/scsi/NinjaSCSI.rst
13604 F:      drivers/scsi/pcmcia/nsp_*
13605
13606 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13607 M:      GOTO Masanori <gotom@debian.or.jp>
13608 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13609 S:      Maintained
13610 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13611 F:      Documentation/scsi/NinjaSCSI.rst
13612 F:      drivers/scsi/nsp32*
13613
13614 NINTENDO HID DRIVER
13615 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
13616 L:      linux-input@vger.kernel.org
13617 S:      Maintained
13618 F:      drivers/hid/hid-nintendo*
13619
13620 NIOS2 ARCHITECTURE
13621 M:      Dinh Nguyen <dinguyen@kernel.org>
13622 S:      Maintained
13623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
13624 F:      arch/nios2/
13625
13626 NITRO ENCLAVES (NE)
13627 M:      Andra Paraschiv <andraprs@amazon.com>
13628 M:      Alexandru Vasile <lexnv@amazon.com>
13629 M:      Alexandru Ciobotaru <alcioa@amazon.com>
13630 L:      linux-kernel@vger.kernel.org
13631 S:      Supported
13632 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13633 F:      Documentation/virt/ne_overview.rst
13634 F:      drivers/virt/nitro_enclaves/
13635 F:      include/linux/nitro_enclaves.h
13636 F:      include/uapi/linux/nitro_enclaves.h
13637 F:      samples/nitro_enclaves/
13638
13639 NOHZ, DYNTICKS SUPPORT
13640 M:      Frederic Weisbecker <fweisbec@gmail.com>
13641 M:      Thomas Gleixner <tglx@linutronix.de>
13642 M:      Ingo Molnar <mingo@kernel.org>
13643 L:      linux-kernel@vger.kernel.org
13644 S:      Maintained
13645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13646 F:      include/linux/sched/nohz.h
13647 F:      include/linux/tick.h
13648 F:      kernel/time/tick*.*
13649
13650 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13651 M:      Pavel Machek <pavel@ucw.cz>
13652 M:      Sakari Ailus <sakari.ailus@iki.fi>
13653 L:      linux-media@vger.kernel.org
13654 S:      Maintained
13655 F:      drivers/media/i2c/ad5820.c
13656 F:      drivers/media/i2c/et8ek8
13657
13658 NOKIA N900 POWER SUPPLY DRIVERS
13659 R:      Pali Rohár <pali@kernel.org>
13660 F:      drivers/power/supply/bq2415x_charger.c
13661 F:      drivers/power/supply/bq27xxx_battery.c
13662 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13663 F:      drivers/power/supply/isp1704_charger.c
13664 F:      drivers/power/supply/rx51_battery.c
13665 F:      include/linux/power/bq2415x_charger.h
13666 F:      include/linux/power/bq27xxx_battery.h
13667
13668 NOLIBC HEADER FILE
13669 M:      Willy Tarreau <w@1wt.eu>
13670 S:      Maintained
13671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13672 F:      tools/include/nolibc/
13673
13674 NSDEPS
13675 M:      Matthias Maennich <maennich@google.com>
13676 S:      Maintained
13677 F:      Documentation/core-api/symbol-namespaces.rst
13678 F:      scripts/nsdeps
13679
13680 NTB AMD DRIVER
13681 M:      Sanjay R Mehta <sanju.mehta@amd.com>
13682 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13683 L:      linux-ntb@googlegroups.com
13684 S:      Supported
13685 F:      drivers/ntb/hw/amd/
13686
13687 NTB DRIVER CORE
13688 M:      Jon Mason <jdmason@kudzu.us>
13689 M:      Dave Jiang <dave.jiang@intel.com>
13690 M:      Allen Hubbe <allenbh@gmail.com>
13691 L:      linux-ntb@googlegroups.com
13692 S:      Supported
13693 W:      https://github.com/jonmason/ntb/wiki
13694 T:      git git://github.com/jonmason/ntb.git
13695 F:      drivers/net/ntb_netdev.c
13696 F:      drivers/ntb/
13697 F:      include/linux/ntb.h
13698 F:      include/linux/ntb_transport.h
13699 F:      tools/testing/selftests/ntb/
13700
13701 NTB IDT DRIVER
13702 M:      Serge Semin <fancer.lancer@gmail.com>
13703 L:      linux-ntb@googlegroups.com
13704 S:      Supported
13705 F:      drivers/ntb/hw/idt/
13706
13707 NTB INTEL DRIVER
13708 M:      Dave Jiang <dave.jiang@intel.com>
13709 L:      linux-ntb@googlegroups.com
13710 S:      Supported
13711 W:      https://github.com/davejiang/linux/wiki
13712 T:      git https://github.com/davejiang/linux.git
13713 F:      drivers/ntb/hw/intel/
13714
13715 NTFS FILESYSTEM
13716 M:      Anton Altaparmakov <anton@tuxera.com>
13717 L:      linux-ntfs-dev@lists.sourceforge.net
13718 S:      Supported
13719 W:      http://www.tuxera.com/
13720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13721 F:      Documentation/filesystems/ntfs.rst
13722 F:      fs/ntfs/
13723
13724 NTFS3 FILESYSTEM
13725 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
13726 L:      ntfs3@lists.linux.dev
13727 S:      Supported
13728 W:      http://www.paragon-software.com/
13729 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
13730 F:      Documentation/filesystems/ntfs3.rst
13731 F:      fs/ntfs3/
13732
13733 NUBUS SUBSYSTEM
13734 M:      Finn Thain <fthain@linux-m68k.org>
13735 L:      linux-m68k@lists.linux-m68k.org
13736 S:      Maintained
13737 F:      arch/*/include/asm/nubus.h
13738 F:      drivers/nubus/
13739 F:      include/linux/nubus.h
13740 F:      include/uapi/linux/nubus.h
13741
13742 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13743 M:      Antonino Daplas <adaplas@gmail.com>
13744 L:      linux-fbdev@vger.kernel.org
13745 S:      Maintained
13746 F:      drivers/video/fbdev/nvidia/
13747 F:      drivers/video/fbdev/riva/
13748
13749 NVIDIA WMI EC BACKLIGHT DRIVER
13750 M:      Daniel Dadap <ddadap@nvidia.com>
13751 L:      platform-driver-x86@vger.kernel.org
13752 S:      Supported
13753 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
13754
13755 NVM EXPRESS DRIVER
13756 M:      Keith Busch <kbusch@kernel.org>
13757 M:      Jens Axboe <axboe@fb.com>
13758 M:      Christoph Hellwig <hch@lst.de>
13759 M:      Sagi Grimberg <sagi@grimberg.me>
13760 L:      linux-nvme@lists.infradead.org
13761 S:      Supported
13762 W:      http://git.infradead.org/nvme.git
13763 T:      git://git.infradead.org/nvme.git
13764 F:      drivers/nvme/host/
13765 F:      include/linux/nvme.h
13766 F:      include/uapi/linux/nvme_ioctl.h
13767
13768 NVM EXPRESS FC TRANSPORT DRIVERS
13769 M:      James Smart <james.smart@broadcom.com>
13770 L:      linux-nvme@lists.infradead.org
13771 S:      Supported
13772 F:      drivers/nvme/host/fc.c
13773 F:      drivers/nvme/target/fc.c
13774 F:      drivers/nvme/target/fcloop.c
13775 F:      include/linux/nvme-fc-driver.h
13776 F:      include/linux/nvme-fc.h
13777
13778 NVM EXPRESS TARGET DRIVER
13779 M:      Christoph Hellwig <hch@lst.de>
13780 M:      Sagi Grimberg <sagi@grimberg.me>
13781 M:      Chaitanya Kulkarni <kch@nvidia.com>
13782 L:      linux-nvme@lists.infradead.org
13783 S:      Supported
13784 W:      http://git.infradead.org/nvme.git
13785 T:      git://git.infradead.org/nvme.git
13786 F:      drivers/nvme/target/
13787
13788 NVMEM FRAMEWORK
13789 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13790 S:      Maintained
13791 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13792 F:      Documentation/ABI/stable/sysfs-bus-nvmem
13793 F:      Documentation/devicetree/bindings/nvmem/
13794 F:      drivers/nvmem/
13795 F:      include/linux/nvmem-consumer.h
13796 F:      include/linux/nvmem-provider.h
13797
13798 NXP C45 TJA11XX PHY DRIVER
13799 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13800 L:      netdev@vger.kernel.org
13801 S:      Maintained
13802 F:      drivers/net/phy/nxp-c45-tja11xx.c
13803
13804 NXP FSPI DRIVER
13805 M:      Ashish Kumar <ashish.kumar@nxp.com>
13806 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
13807 L:      linux-spi@vger.kernel.org
13808 S:      Maintained
13809 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
13810 F:      drivers/spi/spi-nxp-fspi.c
13811
13812 NXP FXAS21002C DRIVER
13813 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13814 L:      linux-iio@vger.kernel.org
13815 S:      Maintained
13816 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13817 F:      drivers/iio/gyro/fxas21002c.h
13818 F:      drivers/iio/gyro/fxas21002c_core.c
13819 F:      drivers/iio/gyro/fxas21002c_i2c.c
13820 F:      drivers/iio/gyro/fxas21002c_spi.c
13821
13822 NXP i.MX CLOCK DRIVERS
13823 M:      Abel Vesa <abel.vesa@nxp.com>
13824 L:      linux-clk@vger.kernel.org
13825 L:      linux-imx@nxp.com
13826 S:      Maintained
13827 F:      drivers/clk/imx/
13828
13829 NXP i.MX 8MQ DCSS DRIVER
13830 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13831 R:      Lucas Stach <l.stach@pengutronix.de>
13832 L:      dri-devel@lists.freedesktop.org
13833 S:      Maintained
13834 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13835 F:      drivers/gpu/drm/imx/dcss/
13836
13837 NXP i.MX 8QXP ADC DRIVER
13838 M:      Cai Huoqing <cai.huoqing@linux.dev>
13839 M:      Haibo Chen <haibo.chen@nxp.com>
13840 L:      linux-imx@nxp.com
13841 L:      linux-iio@vger.kernel.org
13842 S:      Maintained
13843 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
13844 F:      drivers/iio/adc/imx8qxp-adc.c
13845
13846 NXP i.MX 7D/6SX/6UL AND VF610 ADC DRIVER
13847 M:      Haibo Chen <haibo.chen@nxp.com>
13848 L:      linux-iio@vger.kernel.org
13849 L:      linux-imx@nxp.com
13850 S:      Maintained
13851 F:      Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
13852 F:      Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
13853 F:      drivers/iio/adc/imx7d_adc.c
13854 F:      drivers/iio/adc/vf610_adc.c
13855
13856 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13857 M:      Jagan Teki <jagan@amarulasolutions.com>
13858 S:      Maintained
13859 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13860 F:      drivers/regulator/pf8x00-regulator.c
13861
13862 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13863 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13864 L:      linux-kernel@vger.kernel.org
13865 S:      Maintained
13866 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13867 F:      drivers/extcon/extcon-ptn5150.c
13868
13869 NXP SGTL5000 DRIVER
13870 M:      Fabio Estevam <festevam@gmail.com>
13871 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13872 S:      Maintained
13873 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
13874 F:      sound/soc/codecs/sgtl5000*
13875
13876 NXP SJA1105 ETHERNET SWITCH DRIVER
13877 M:      Vladimir Oltean <olteanv@gmail.com>
13878 L:      linux-kernel@vger.kernel.org
13879 S:      Maintained
13880 F:      drivers/net/dsa/sja1105
13881 F:      drivers/net/pcs/pcs-xpcs-nxp.c
13882
13883 NXP TDA998X DRM DRIVER
13884 M:      Russell King <linux@armlinux.org.uk>
13885 S:      Maintained
13886 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13887 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13888 F:      drivers/gpu/drm/i2c/tda998x_drv.c
13889 F:      include/drm/i2c/tda998x.h
13890 F:      include/dt-bindings/display/tda998x.h
13891 K:      "nxp,tda998x"
13892
13893 NXP TFA9879 DRIVER
13894 M:      Peter Rosin <peda@axentia.se>
13895 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13896 S:      Maintained
13897 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
13898 F:      sound/soc/codecs/tfa9879*
13899
13900 NXP/Goodix TFA989X (TFA1) DRIVER
13901 M:      Stephan Gerhold <stephan@gerhold.net>
13902 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13903 S:      Maintained
13904 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
13905 F:      sound/soc/codecs/tfa989x.c
13906
13907 NXP-NCI NFC DRIVER
13908 R:      Charles Gorand <charles.gorand@effinnov.com>
13909 L:      linux-nfc@lists.01.org (subscribers-only)
13910 S:      Supported
13911 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
13912 F:      drivers/nfc/nxp-nci
13913
13914 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13915 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
13916 R:      NXP Linux Team <linux-imx@nxp.com>
13917 L:      linux-media@vger.kernel.org
13918 S:      Maintained
13919 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
13920 F:      drivers/media/platform/imx-jpeg
13921
13922 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13923 M:      Jonas Malaco <jonas@protocubo.io>
13924 L:      linux-hwmon@vger.kernel.org
13925 S:      Maintained
13926 F:      Documentation/hwmon/nzxt-kraken2.rst
13927 F:      drivers/hwmon/nzxt-kraken2.c
13928
13929 NZXT-SMART2 HARDWARE MONITORING DRIVER
13930 M:      Aleksandr Mezin <mezin.alexander@gmail.com>
13931 L:      linux-hwmon@vger.kernel.org
13932 S:      Maintained
13933 F:      Documentation/hwmon/nzxt-smart2.rst
13934 F:      drivers/hwmon/nzxt-smart2.c
13935
13936 OBJAGG
13937 M:      Jiri Pirko <jiri@nvidia.com>
13938 L:      netdev@vger.kernel.org
13939 S:      Supported
13940 F:      include/linux/objagg.h
13941 F:      lib/objagg.c
13942 F:      lib/test_objagg.c
13943
13944 OBJTOOL
13945 M:      Josh Poimboeuf <jpoimboe@redhat.com>
13946 M:      Peter Zijlstra <peterz@infradead.org>
13947 S:      Supported
13948 F:      tools/objtool/
13949 F:      include/linux/objtool.h
13950
13951 OCELOT ETHERNET SWITCH DRIVER
13952 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
13953 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
13954 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13955 M:      UNGLinuxDriver@microchip.com
13956 L:      netdev@vger.kernel.org
13957 S:      Supported
13958 F:      drivers/net/dsa/ocelot/*
13959 F:      drivers/net/ethernet/mscc/
13960 F:      include/soc/mscc/ocelot*
13961 F:      net/dsa/tag_ocelot.c
13962 F:      net/dsa/tag_ocelot_8021q.c
13963 F:      tools/testing/selftests/drivers/net/ocelot/*
13964
13965 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13966 M:      Frederic Barrat <fbarrat@linux.ibm.com>
13967 M:      Andrew Donnellan <ajd@linux.ibm.com>
13968 L:      linuxppc-dev@lists.ozlabs.org
13969 S:      Supported
13970 F:      Documentation/userspace-api/accelerators/ocxl.rst
13971 F:      arch/powerpc/include/asm/pnv-ocxl.h
13972 F:      arch/powerpc/platforms/powernv/ocxl.c
13973 F:      drivers/misc/ocxl/
13974 F:      include/misc/ocxl*
13975 F:      include/uapi/misc/ocxl.h
13976
13977 OMAP AUDIO SUPPORT
13978 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
13979 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
13980 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13981 L:      linux-omap@vger.kernel.org
13982 S:      Maintained
13983 F:      sound/soc/ti/n810.c
13984 F:      sound/soc/ti/omap*
13985 F:      sound/soc/ti/rx51.c
13986 F:      sound/soc/ti/sdma-pcm.*
13987
13988 OMAP CLOCK FRAMEWORK SUPPORT
13989 M:      Paul Walmsley <paul@pwsan.com>
13990 L:      linux-omap@vger.kernel.org
13991 S:      Maintained
13992 F:      arch/arm/*omap*/*clock*
13993
13994 OMAP DEVICE TREE SUPPORT
13995 M:      Benoît Cousson <bcousson@baylibre.com>
13996 M:      Tony Lindgren <tony@atomide.com>
13997 L:      linux-omap@vger.kernel.org
13998 L:      devicetree@vger.kernel.org
13999 S:      Maintained
14000 F:      arch/arm/boot/dts/*am3*
14001 F:      arch/arm/boot/dts/*am4*
14002 F:      arch/arm/boot/dts/*am5*
14003 F:      arch/arm/boot/dts/*dra7*
14004 F:      arch/arm/boot/dts/*omap*
14005 F:      arch/arm/boot/dts/logicpd-som-lv*
14006 F:      arch/arm/boot/dts/logicpd-torpedo*
14007
14008 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
14009 L:      linux-omap@vger.kernel.org
14010 L:      linux-fbdev@vger.kernel.org
14011 S:      Orphan
14012 F:      Documentation/arm/omap/dss.rst
14013 F:      drivers/video/fbdev/omap2/
14014
14015 OMAP FRAMEBUFFER SUPPORT
14016 L:      linux-fbdev@vger.kernel.org
14017 L:      linux-omap@vger.kernel.org
14018 S:      Orphan
14019 F:      drivers/video/fbdev/omap/
14020
14021 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
14022 M:      Roger Quadros <rogerq@kernel.org>
14023 M:      Tony Lindgren <tony@atomide.com>
14024 L:      linux-omap@vger.kernel.org
14025 S:      Maintained
14026 F:      arch/arm/mach-omap2/*gpmc*
14027 F:      drivers/memory/omap-gpmc.c
14028
14029 OMAP GPIO DRIVER
14030 M:      Grygorii Strashko <grygorii.strashko@ti.com>
14031 M:      Santosh Shilimkar <ssantosh@kernel.org>
14032 M:      Kevin Hilman <khilman@kernel.org>
14033 L:      linux-omap@vger.kernel.org
14034 S:      Maintained
14035 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
14036 F:      drivers/gpio/gpio-omap.c
14037
14038 OMAP HARDWARE SPINLOCK SUPPORT
14039 M:      Ohad Ben-Cohen <ohad@wizery.com>
14040 L:      linux-omap@vger.kernel.org
14041 S:      Maintained
14042 F:      drivers/hwspinlock/omap_hwspinlock.c
14043
14044 OMAP HS MMC SUPPORT
14045 L:      linux-mmc@vger.kernel.org
14046 L:      linux-omap@vger.kernel.org
14047 S:      Orphan
14048 F:      drivers/mmc/host/omap_hsmmc.c
14049
14050 OMAP HWMOD DATA
14051 M:      Paul Walmsley <paul@pwsan.com>
14052 L:      linux-omap@vger.kernel.org
14053 S:      Maintained
14054 F:      arch/arm/mach-omap2/omap_hwmod*data*
14055
14056 OMAP HWMOD SUPPORT
14057 M:      Benoît Cousson <bcousson@baylibre.com>
14058 M:      Paul Walmsley <paul@pwsan.com>
14059 L:      linux-omap@vger.kernel.org
14060 S:      Maintained
14061 F:      arch/arm/mach-omap2/omap_hwmod.*
14062
14063 OMAP I2C DRIVER
14064 M:      Vignesh R <vigneshr@ti.com>
14065 L:      linux-omap@vger.kernel.org
14066 L:      linux-i2c@vger.kernel.org
14067 S:      Maintained
14068 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
14069 F:      drivers/i2c/busses/i2c-omap.c
14070
14071 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
14072 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14073 L:      linux-media@vger.kernel.org
14074 S:      Maintained
14075 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
14076 F:      drivers/media/platform/omap3isp/
14077 F:      drivers/staging/media/omap4iss/
14078
14079 OMAP MMC SUPPORT
14080 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14081 L:      linux-omap@vger.kernel.org
14082 S:      Odd Fixes
14083 F:      drivers/mmc/host/omap.c
14084
14085 OMAP POWER MANAGEMENT SUPPORT
14086 M:      Kevin Hilman <khilman@kernel.org>
14087 L:      linux-omap@vger.kernel.org
14088 S:      Maintained
14089 F:      arch/arm/*omap*/*pm*
14090 F:      drivers/cpufreq/omap-cpufreq.c
14091
14092 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
14093 M:      Rajendra Nayak <rnayak@codeaurora.org>
14094 M:      Paul Walmsley <paul@pwsan.com>
14095 L:      linux-omap@vger.kernel.org
14096 S:      Maintained
14097 F:      arch/arm/mach-omap2/prm*
14098
14099 OMAP RANDOM NUMBER GENERATOR SUPPORT
14100 M:      Deepak Saxena <dsaxena@plexity.net>
14101 S:      Maintained
14102 F:      drivers/char/hw_random/omap-rng.c
14103
14104 OMAP USB SUPPORT
14105 L:      linux-usb@vger.kernel.org
14106 L:      linux-omap@vger.kernel.org
14107 S:      Orphan
14108 F:      arch/arm/*omap*/usb*
14109 F:      drivers/usb/*/*omap*
14110
14111 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
14112 M:      Mark Jackson <mpfj@newflow.co.uk>
14113 L:      linux-omap@vger.kernel.org
14114 S:      Maintained
14115 F:      arch/arm/boot/dts/am335x-nano.dts
14116
14117 OMAP1 SUPPORT
14118 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14119 M:      Tony Lindgren <tony@atomide.com>
14120 L:      linux-omap@vger.kernel.org
14121 S:      Maintained
14122 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14124 F:      arch/arm/configs/omap1_defconfig
14125 F:      arch/arm/mach-omap1/
14126 F:      arch/arm/plat-omap/
14127 F:      drivers/i2c/busses/i2c-omap.c
14128 F:      include/linux/platform_data/ams-delta-fiq.h
14129 F:      include/linux/platform_data/i2c-omap.h
14130
14131 OMAP2+ SUPPORT
14132 M:      Tony Lindgren <tony@atomide.com>
14133 L:      linux-omap@vger.kernel.org
14134 S:      Maintained
14135 W:      http://www.muru.com/linux/omap/
14136 W:      http://linux.omap.com/
14137 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14138 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14139 F:      arch/arm/configs/omap2plus_defconfig
14140 F:      arch/arm/mach-omap2/
14141 F:      arch/arm/plat-omap/
14142 F:      drivers/bus/ti-sysc.c
14143 F:      drivers/i2c/busses/i2c-omap.c
14144 F:      drivers/irqchip/irq-omap-intc.c
14145 F:      drivers/mfd/*omap*.c
14146 F:      drivers/mfd/menelaus.c
14147 F:      drivers/mfd/palmas.c
14148 F:      drivers/mfd/tps65217.c
14149 F:      drivers/mfd/tps65218.c
14150 F:      drivers/mfd/tps65910.c
14151 F:      drivers/mfd/twl-core.[ch]
14152 F:      drivers/mfd/twl4030*.c
14153 F:      drivers/mfd/twl6030*.c
14154 F:      drivers/mfd/twl6040*.c
14155 F:      drivers/regulator/palmas-regulator*.c
14156 F:      drivers/regulator/pbias-regulator.c
14157 F:      drivers/regulator/tps65217-regulator.c
14158 F:      drivers/regulator/tps65218-regulator.c
14159 F:      drivers/regulator/tps65910-regulator.c
14160 F:      drivers/regulator/twl-regulator.c
14161 F:      drivers/regulator/twl6030-regulator.c
14162 F:      include/linux/platform_data/i2c-omap.h
14163 F:      include/linux/platform_data/ti-sysc.h
14164
14165 OMFS FILESYSTEM
14166 M:      Bob Copeland <me@bobcopeland.com>
14167 L:      linux-karma-devel@lists.sourceforge.net
14168 S:      Maintained
14169 F:      Documentation/filesystems/omfs.rst
14170 F:      fs/omfs/
14171
14172 OMNIKEY CARDMAN 4000 DRIVER
14173 M:      Harald Welte <laforge@gnumonks.org>
14174 S:      Maintained
14175 F:      drivers/char/pcmcia/cm4000_cs.c
14176 F:      include/linux/cm4000_cs.h
14177 F:      include/uapi/linux/cm4000_cs.h
14178
14179 OMNIKEY CARDMAN 4040 DRIVER
14180 M:      Harald Welte <laforge@gnumonks.org>
14181 S:      Maintained
14182 F:      drivers/char/pcmcia/cm4040_cs.*
14183
14184 OMNIVISION OV02A10 SENSOR DRIVER
14185 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14186 L:      linux-media@vger.kernel.org
14187 S:      Maintained
14188 T:      git git://linuxtv.org/media_tree.git
14189 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
14190 F:      drivers/media/i2c/ov02a10.c
14191
14192 OMNIVISION OV13858 SENSOR DRIVER
14193 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14194 L:      linux-media@vger.kernel.org
14195 S:      Maintained
14196 T:      git git://linuxtv.org/media_tree.git
14197 F:      drivers/media/i2c/ov13858.c
14198
14199 OMNIVISION OV13B10 SENSOR DRIVER
14200 M:      Arec Kao <arec.kao@intel.com>
14201 L:      linux-media@vger.kernel.org
14202 S:      Maintained
14203 T:      git git://linuxtv.org/media_tree.git
14204 F:      drivers/media/i2c/ov13b10.c
14205
14206 OMNIVISION OV2680 SENSOR DRIVER
14207 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14208 L:      linux-media@vger.kernel.org
14209 S:      Maintained
14210 T:      git git://linuxtv.org/media_tree.git
14211 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
14212 F:      drivers/media/i2c/ov2680.c
14213
14214 OMNIVISION OV2685 SENSOR DRIVER
14215 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14216 L:      linux-media@vger.kernel.org
14217 S:      Maintained
14218 T:      git git://linuxtv.org/media_tree.git
14219 F:      drivers/media/i2c/ov2685.c
14220
14221 OMNIVISION OV2740 SENSOR DRIVER
14222 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14223 R:      Shawn Tu <shawnx.tu@intel.com>
14224 R:      Bingbu Cao <bingbu.cao@intel.com>
14225 L:      linux-media@vger.kernel.org
14226 S:      Maintained
14227 T:      git git://linuxtv.org/media_tree.git
14228 F:      drivers/media/i2c/ov2740.c
14229
14230 OMNIVISION OV5640 SENSOR DRIVER
14231 M:      Steve Longerbeam <slongerbeam@gmail.com>
14232 L:      linux-media@vger.kernel.org
14233 S:      Maintained
14234 T:      git git://linuxtv.org/media_tree.git
14235 F:      drivers/media/i2c/ov5640.c
14236
14237 OMNIVISION OV5647 SENSOR DRIVER
14238 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
14239 M:      Jacopo Mondi <jacopo@jmondi.org>
14240 L:      linux-media@vger.kernel.org
14241 S:      Maintained
14242 T:      git git://linuxtv.org/media_tree.git
14243 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
14244 F:      drivers/media/i2c/ov5647.c
14245
14246 OMNIVISION OV5670 SENSOR DRIVER
14247 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
14248 L:      linux-media@vger.kernel.org
14249 S:      Maintained
14250 T:      git git://linuxtv.org/media_tree.git
14251 F:      drivers/media/i2c/ov5670.c
14252
14253 OMNIVISION OV5675 SENSOR DRIVER
14254 M:      Shawn Tu <shawnx.tu@intel.com>
14255 L:      linux-media@vger.kernel.org
14256 S:      Maintained
14257 T:      git git://linuxtv.org/media_tree.git
14258 F:      drivers/media/i2c/ov5675.c
14259
14260 OMNIVISION OV5693 SENSOR DRIVER
14261 M:      Daniel Scally <djrscally@gmail.com>
14262 L:      linux-media@vger.kernel.org
14263 S:      Maintained
14264 T:      git git://linuxtv.org/media_tree.git
14265 F:      drivers/media/i2c/ov5693.c
14266
14267 OMNIVISION OV5695 SENSOR DRIVER
14268 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14269 L:      linux-media@vger.kernel.org
14270 S:      Maintained
14271 T:      git git://linuxtv.org/media_tree.git
14272 F:      drivers/media/i2c/ov5695.c
14273
14274 OMNIVISION OV7670 SENSOR DRIVER
14275 L:      linux-media@vger.kernel.org
14276 S:      Orphan
14277 T:      git git://linuxtv.org/media_tree.git
14278 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
14279 F:      drivers/media/i2c/ov7670.c
14280
14281 OMNIVISION OV772x SENSOR DRIVER
14282 M:      Jacopo Mondi <jacopo@jmondi.org>
14283 L:      linux-media@vger.kernel.org
14284 S:      Odd fixes
14285 T:      git git://linuxtv.org/media_tree.git
14286 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
14287 F:      drivers/media/i2c/ov772x.c
14288 F:      include/media/i2c/ov772x.h
14289
14290 OMNIVISION OV7740 SENSOR DRIVER
14291 M:      Wenyou Yang <wenyou.yang@microchip.com>
14292 L:      linux-media@vger.kernel.org
14293 S:      Maintained
14294 T:      git git://linuxtv.org/media_tree.git
14295 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
14296 F:      drivers/media/i2c/ov7740.c
14297
14298 OMNIVISION OV8856 SENSOR DRIVER
14299 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14300 L:      linux-media@vger.kernel.org
14301 S:      Maintained
14302 T:      git git://linuxtv.org/media_tree.git
14303 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
14304 F:      drivers/media/i2c/ov8856.c
14305
14306 OMNIVISION OV9282 SENSOR DRIVER
14307 M:      Paul J. Murphy <paul.j.murphy@intel.com>
14308 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
14309 L:      linux-media@vger.kernel.org
14310 S:      Maintained
14311 T:      git git://linuxtv.org/media_tree.git
14312 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
14313 F:      drivers/media/i2c/ov9282.c
14314
14315 OMNIVISION OV9640 SENSOR DRIVER
14316 M:      Petr Cvek <petrcvekcz@gmail.com>
14317 L:      linux-media@vger.kernel.org
14318 S:      Maintained
14319 F:      drivers/media/i2c/ov9640.*
14320
14321 OMNIVISION OV9650 SENSOR DRIVER
14322 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14323 R:      Akinobu Mita <akinobu.mita@gmail.com>
14324 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14325 L:      linux-media@vger.kernel.org
14326 S:      Maintained
14327 T:      git git://linuxtv.org/media_tree.git
14328 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
14329 F:      drivers/media/i2c/ov9650.c
14330
14331 OMNIVISION OV9734 SENSOR DRIVER
14332 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14333 R:      Bingbu Cao <bingbu.cao@intel.com>
14334 L:      linux-media@vger.kernel.org
14335 S:      Maintained
14336 T:      git git://linuxtv.org/media_tree.git
14337 F:      drivers/media/i2c/ov9734.c
14338
14339 ONENAND FLASH DRIVER
14340 M:      Kyungmin Park <kyungmin.park@samsung.com>
14341 L:      linux-mtd@lists.infradead.org
14342 S:      Maintained
14343 F:      drivers/mtd/nand/onenand/
14344 F:      include/linux/mtd/onenand*.h
14345
14346 ONION OMEGA2+ BOARD
14347 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
14348 L:      linux-mips@vger.kernel.org
14349 S:      Maintained
14350 F:      arch/mips/boot/dts/ralink/omega2p.dts
14351
14352 OP-TEE DRIVER
14353 M:      Jens Wiklander <jens.wiklander@linaro.org>
14354 L:      op-tee@lists.trustedfirmware.org
14355 S:      Maintained
14356 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
14357 F:      drivers/tee/optee/
14358
14359 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14360 M:      Sumit Garg <sumit.garg@linaro.org>
14361 L:      op-tee@lists.trustedfirmware.org
14362 S:      Maintained
14363 F:      drivers/char/hw_random/optee-rng.c
14364
14365 OPA-VNIC DRIVER
14366 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14367 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14368 L:      linux-rdma@vger.kernel.org
14369 S:      Supported
14370 F:      drivers/infiniband/ulp/opa_vnic
14371
14372 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14373 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
14374 M:      Frank Rowand <frowand.list@gmail.com>
14375 L:      devicetree@vger.kernel.org
14376 S:      Maintained
14377 F:      Documentation/devicetree/dynamic-resolution-notes.rst
14378 F:      Documentation/devicetree/overlay-notes.rst
14379 F:      drivers/of/overlay.c
14380 F:      drivers/of/resolver.c
14381 K:      of_overlay_notifier_
14382
14383 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14384 M:      Rob Herring <robh+dt@kernel.org>
14385 M:      Frank Rowand <frowand.list@gmail.com>
14386 L:      devicetree@vger.kernel.org
14387 S:      Maintained
14388 W:      http://www.devicetree.org/
14389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14390 F:      Documentation/ABI/testing/sysfs-firmware-ofw
14391 F:      drivers/of/
14392 F:      include/linux/of*.h
14393 F:      scripts/dtc/
14394
14395 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14396 M:      Rob Herring <robh+dt@kernel.org>
14397 L:      devicetree@vger.kernel.org
14398 S:      Maintained
14399 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14401 F:      Documentation/devicetree/
14402 F:      arch/*/boot/dts/
14403 F:      include/dt-bindings/
14404
14405 OPENCOMPUTE PTP CLOCK DRIVER
14406 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
14407 L:      netdev@vger.kernel.org
14408 S:      Maintained
14409 F:      drivers/ptp/ptp_ocp.c
14410
14411 OPENCORES I2C BUS DRIVER
14412 M:      Peter Korsgaard <peter@korsgaard.com>
14413 M:      Andrew Lunn <andrew@lunn.ch>
14414 L:      linux-i2c@vger.kernel.org
14415 S:      Maintained
14416 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14417 F:      Documentation/i2c/busses/i2c-ocores.rst
14418 F:      drivers/i2c/busses/i2c-ocores.c
14419 F:      include/linux/platform_data/i2c-ocores.h
14420
14421 OPENRISC ARCHITECTURE
14422 M:      Jonas Bonn <jonas@southpole.se>
14423 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14424 M:      Stafford Horne <shorne@gmail.com>
14425 L:      openrisc@lists.librecores.org
14426 S:      Maintained
14427 W:      http://openrisc.io
14428 T:      git git://github.com/openrisc/linux.git
14429 F:      Documentation/devicetree/bindings/openrisc/
14430 F:      Documentation/openrisc/
14431 F:      arch/openrisc/
14432 F:      drivers/irqchip/irq-ompic.c
14433 F:      drivers/irqchip/irq-or1k-*
14434
14435 OPENVSWITCH
14436 M:      Pravin B Shelar <pshelar@ovn.org>
14437 L:      netdev@vger.kernel.org
14438 L:      dev@openvswitch.org
14439 S:      Maintained
14440 W:      http://openvswitch.org
14441 F:      include/uapi/linux/openvswitch.h
14442 F:      net/openvswitch/
14443
14444 OPERATING PERFORMANCE POINTS (OPP)
14445 M:      Viresh Kumar <vireshk@kernel.org>
14446 M:      Nishanth Menon <nm@ti.com>
14447 M:      Stephen Boyd <sboyd@kernel.org>
14448 L:      linux-pm@vger.kernel.org
14449 S:      Maintained
14450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14451 F:      Documentation/devicetree/bindings/opp/
14452 F:      Documentation/power/opp.rst
14453 F:      drivers/opp/
14454 F:      include/linux/pm_opp.h
14455
14456 OPL4 DRIVER
14457 M:      Clemens Ladisch <clemens@ladisch.de>
14458 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14459 S:      Maintained
14460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14461 F:      sound/drivers/opl4/
14462
14463 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14464 M:      Mark Fasheh <mark@fasheh.com>
14465 M:      Joel Becker <jlbec@evilplan.org>
14466 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
14467 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14468 S:      Supported
14469 W:      http://ocfs2.wiki.kernel.org
14470 F:      Documentation/filesystems/dlmfs.rst
14471 F:      Documentation/filesystems/ocfs2.rst
14472 F:      fs/ocfs2/
14473
14474 ORANGEFS FILESYSTEM
14475 M:      Mike Marshall <hubcap@omnibond.com>
14476 R:      Martin Brandenburg <martin@omnibond.com>
14477 L:      devel@lists.orangefs.org
14478 S:      Supported
14479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14480 F:      Documentation/filesystems/orangefs.rst
14481 F:      fs/orangefs/
14482
14483 ORINOCO DRIVER
14484 L:      linux-wireless@vger.kernel.org
14485 S:      Orphan
14486 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14487 W:      http://www.nongnu.org/orinoco/
14488 F:      drivers/net/wireless/intersil/orinoco/
14489
14490 OV2659 OMNIVISION SENSOR DRIVER
14491 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14492 L:      linux-media@vger.kernel.org
14493 S:      Maintained
14494 W:      https://linuxtv.org
14495 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14496 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14497 F:      drivers/media/i2c/ov2659.c
14498 F:      include/media/i2c/ov2659.h
14499
14500 OVERLAY FILESYSTEM
14501 M:      Miklos Szeredi <miklos@szeredi.hu>
14502 L:      linux-unionfs@vger.kernel.org
14503 S:      Supported
14504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14505 F:      Documentation/filesystems/overlayfs.rst
14506 F:      fs/overlayfs/
14507
14508 P54 WIRELESS DRIVER
14509 M:      Christian Lamparter <chunkeey@googlemail.com>
14510 L:      linux-wireless@vger.kernel.org
14511 S:      Maintained
14512 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14513 F:      drivers/net/wireless/intersil/p54/
14514
14515 PACKING
14516 M:      Vladimir Oltean <olteanv@gmail.com>
14517 L:      netdev@vger.kernel.org
14518 S:      Supported
14519 F:      Documentation/core-api/packing.rst
14520 F:      include/linux/packing.h
14521 F:      lib/packing.c
14522
14523 PADATA PARALLEL EXECUTION MECHANISM
14524 M:      Steffen Klassert <steffen.klassert@secunet.com>
14525 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
14526 L:      linux-crypto@vger.kernel.org
14527 L:      linux-kernel@vger.kernel.org
14528 S:      Maintained
14529 F:      Documentation/core-api/padata.rst
14530 F:      include/linux/padata.h
14531 F:      kernel/padata.c
14532
14533 PAGE POOL
14534 M:      Jesper Dangaard Brouer <hawk@kernel.org>
14535 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
14536 L:      netdev@vger.kernel.org
14537 S:      Supported
14538 F:      Documentation/networking/page_pool.rst
14539 F:      include/net/page_pool.h
14540 F:      include/trace/events/page_pool.h
14541 F:      net/core/page_pool.c
14542
14543 PAGE TABLE CHECK
14544 M:      Pasha Tatashin <pasha.tatashin@soleen.com>
14545 M:      Andrew Morton <akpm@linux-foundation.org>
14546 L:      linux-mm@kvack.org
14547 S:      Maintained
14548 F:      Documentation/vm/page_table_check.rst
14549 F:      include/linux/page_table_check.h
14550 F:      mm/page_table_check.c
14551
14552 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14553 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
14554 L:      platform-driver-x86@vger.kernel.org
14555 S:      Maintained
14556 F:      drivers/platform/x86/panasonic-laptop.c
14557
14558 PARALLAX PING IIO SENSOR DRIVER
14559 M:      Andreas Klinger <ak@it-klinger.de>
14560 L:      linux-iio@vger.kernel.org
14561 S:      Maintained
14562 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14563 F:      drivers/iio/proximity/ping.c
14564
14565 PARALLEL LCD/KEYPAD PANEL DRIVER
14566 M:      Willy Tarreau <willy@haproxy.com>
14567 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14568 S:      Odd Fixes
14569 F:      Documentation/admin-guide/lcd-panel-cgram.rst
14570 F:      drivers/auxdisplay/panel.c
14571
14572 PARALLEL PORT SUBSYSTEM
14573 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14574 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14575 L:      linux-parport@lists.infradead.org (subscribers-only)
14576 S:      Maintained
14577 F:      Documentation/driver-api/parport*.rst
14578 F:      drivers/char/ppdev.c
14579 F:      drivers/parport/
14580 F:      include/linux/parport*.h
14581 F:      include/uapi/linux/ppdev.h
14582
14583 PARAVIRT_OPS INTERFACE
14584 M:      Juergen Gross <jgross@suse.com>
14585 M:      Deep Shah <sdeep@vmware.com>
14586 M:      "VMware, Inc." <pv-drivers@vmware.com>
14587 L:      virtualization@lists.linux-foundation.org
14588 L:      x86@kernel.org
14589 S:      Supported
14590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
14591 F:      Documentation/virt/paravirt_ops.rst
14592 F:      arch/*/include/asm/paravirt*.h
14593 F:      arch/*/kernel/paravirt*
14594 F:      include/linux/hypervisor.h
14595
14596 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14597 M:      Tim Waugh <tim@cyberelk.net>
14598 L:      linux-parport@lists.infradead.org (subscribers-only)
14599 S:      Maintained
14600 F:      Documentation/admin-guide/blockdev/paride.rst
14601 F:      drivers/block/paride/
14602
14603 PARISC ARCHITECTURE
14604 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14605 M:      Helge Deller <deller@gmx.de>
14606 L:      linux-parisc@vger.kernel.org
14607 S:      Maintained
14608 W:      https://parisc.wiki.kernel.org
14609 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
14610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14612 F:      Documentation/parisc/
14613 F:      arch/parisc/
14614 F:      drivers/char/agp/parisc-agp.c
14615 F:      drivers/input/misc/hp_sdc_rtc.c
14616 F:      drivers/input/serio/gscps2.c
14617 F:      drivers/input/serio/hp_sdc*
14618 F:      drivers/parisc/
14619 F:      drivers/parport/parport_gsc.*
14620 F:      drivers/tty/serial/8250/8250_gsc.c
14621 F:      drivers/video/console/sti*
14622 F:      drivers/video/fbdev/sti*
14623 F:      drivers/video/logo/logo_parisc*
14624 F:      include/linux/hp_sdc.h
14625
14626 PARMAN
14627 M:      Jiri Pirko <jiri@nvidia.com>
14628 L:      netdev@vger.kernel.org
14629 S:      Supported
14630 F:      include/linux/parman.h
14631 F:      lib/parman.c
14632 F:      lib/test_parman.c
14633
14634 PC ENGINES APU BOARD DRIVER
14635 M:      Enrico Weigelt, metux IT consult <info@metux.net>
14636 S:      Maintained
14637 F:      drivers/platform/x86/pcengines-apuv2.c
14638
14639 PC87360 HARDWARE MONITORING DRIVER
14640 M:      Jim Cromie <jim.cromie@gmail.com>
14641 L:      linux-hwmon@vger.kernel.org
14642 S:      Maintained
14643 F:      Documentation/hwmon/pc87360.rst
14644 F:      drivers/hwmon/pc87360.c
14645
14646 PC8736x GPIO DRIVER
14647 M:      Jim Cromie <jim.cromie@gmail.com>
14648 S:      Maintained
14649 F:      drivers/char/pc8736x_gpio.c
14650
14651 PC87427 HARDWARE MONITORING DRIVER
14652 M:      Jean Delvare <jdelvare@suse.com>
14653 L:      linux-hwmon@vger.kernel.org
14654 S:      Maintained
14655 F:      Documentation/hwmon/pc87427.rst
14656 F:      drivers/hwmon/pc87427.c
14657
14658 PCA9532 LED DRIVER
14659 M:      Riku Voipio <riku.voipio@iki.fi>
14660 S:      Maintained
14661 F:      drivers/leds/leds-pca9532.c
14662 F:      include/linux/leds-pca9532.h
14663
14664 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14665 M:      Guenter Roeck <linux@roeck-us.net>
14666 L:      linux-i2c@vger.kernel.org
14667 S:      Maintained
14668 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
14669
14670 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14671 M:      Khalid Aziz <khalid@gonehiking.org>
14672 S:      Maintained
14673 F:      drivers/firmware/pcdp.*
14674
14675 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14676 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14677 M:      Pali Rohár <pali@kernel.org>
14678 L:      linux-pci@vger.kernel.org
14679 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14680 S:      Maintained
14681 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
14682 F:      drivers/pci/controller/pci-aardvark.c
14683
14684 PCI DRIVER FOR ALTERA PCIE IP
14685 M:      Joyce Ooi <joyce.ooi@intel.com>
14686 L:      linux-pci@vger.kernel.org
14687 S:      Supported
14688 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
14689 F:      drivers/pci/controller/pcie-altera.c
14690
14691 PCI DRIVER FOR APPLIEDMICRO XGENE
14692 M:      Toan Le <toan@os.amperecomputing.com>
14693 L:      linux-pci@vger.kernel.org
14694 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14695 S:      Maintained
14696 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
14697 F:      drivers/pci/controller/pci-xgene.c
14698
14699 PCI DRIVER FOR ARM VERSATILE PLATFORM
14700 M:      Rob Herring <robh@kernel.org>
14701 L:      linux-pci@vger.kernel.org
14702 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14703 S:      Maintained
14704 F:      Documentation/devicetree/bindings/pci/versatile.yaml
14705 F:      drivers/pci/controller/pci-versatile.c
14706
14707 PCI DRIVER FOR ARMADA 8K
14708 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14709 L:      linux-pci@vger.kernel.org
14710 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14711 S:      Maintained
14712 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
14713 F:      drivers/pci/controller/dwc/pcie-armada8k.c
14714
14715 PCI DRIVER FOR CADENCE PCIE IP
14716 M:      Tom Joseph <tjoseph@cadence.com>
14717 L:      linux-pci@vger.kernel.org
14718 S:      Maintained
14719 F:      Documentation/devicetree/bindings/pci/cdns,*
14720 F:      drivers/pci/controller/cadence/
14721
14722 PCI DRIVER FOR FREESCALE LAYERSCAPE
14723 M:      Minghuan Lian <minghuan.Lian@nxp.com>
14724 M:      Mingkai Hu <mingkai.hu@nxp.com>
14725 M:      Roy Zang <roy.zang@nxp.com>
14726 L:      linuxppc-dev@lists.ozlabs.org
14727 L:      linux-pci@vger.kernel.org
14728 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14729 S:      Maintained
14730 F:      drivers/pci/controller/dwc/*layerscape*
14731
14732 PCI DRIVER FOR GENERIC OF HOSTS
14733 M:      Will Deacon <will@kernel.org>
14734 L:      linux-pci@vger.kernel.org
14735 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14736 S:      Maintained
14737 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
14738 F:      drivers/pci/controller/pci-host-common.c
14739 F:      drivers/pci/controller/pci-host-generic.c
14740
14741 PCI DRIVER FOR IMX6
14742 M:      Richard Zhu <hongxing.zhu@nxp.com>
14743 M:      Lucas Stach <l.stach@pengutronix.de>
14744 L:      linux-pci@vger.kernel.org
14745 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14746 S:      Maintained
14747 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
14748 F:      drivers/pci/controller/dwc/*imx6*
14749
14750 PCI DRIVER FOR FU740
14751 M:      Paul Walmsley <paul.walmsley@sifive.com>
14752 M:      Greentime Hu <greentime.hu@sifive.com>
14753 L:      linux-pci@vger.kernel.org
14754 S:      Maintained
14755 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
14756 F:      drivers/pci/controller/dwc/pcie-fu740.c
14757
14758 PCI DRIVER FOR INTEL IXP4XX
14759 M:      Linus Walleij <linus.walleij@linaro.org>
14760 S:      Maintained
14761 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
14762 F:      drivers/pci/controller/pci-ixp4xx.c
14763
14764 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
14765 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
14766 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
14767 L:      linux-pci@vger.kernel.org
14768 S:      Supported
14769 F:      drivers/pci/controller/vmd.c
14770
14771 PCI DRIVER FOR MICROSEMI SWITCHTEC
14772 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
14773 M:      Logan Gunthorpe <logang@deltatee.com>
14774 L:      linux-pci@vger.kernel.org
14775 S:      Maintained
14776 F:      Documentation/ABI/testing/sysfs-class-switchtec
14777 F:      Documentation/driver-api/switchtec.rst
14778 F:      drivers/ntb/hw/mscc/
14779 F:      drivers/pci/switch/switchtec*
14780 F:      include/linux/switchtec.h
14781 F:      include/uapi/linux/switchtec_ioctl.h
14782
14783 PCI DRIVER FOR MOBIVEIL PCIE IP
14784 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
14785 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14786 L:      linux-pci@vger.kernel.org
14787 S:      Supported
14788 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14789 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
14790
14791 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14792 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14793 L:      linux-pci@vger.kernel.org
14794 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14795 S:      Maintained
14796 F:      drivers/pci/controller/*mvebu*
14797
14798 PCI DRIVER FOR NVIDIA TEGRA
14799 M:      Thierry Reding <thierry.reding@gmail.com>
14800 L:      linux-tegra@vger.kernel.org
14801 L:      linux-pci@vger.kernel.org
14802 S:      Supported
14803 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14804 F:      drivers/pci/controller/pci-tegra.c
14805
14806 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14807 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14808 L:      linux-pci@vger.kernel.org
14809 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14810 S:      Maintained
14811 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14812 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14813
14814 PCI DRIVER FOR RENESAS R-CAR
14815 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14816 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14817 L:      linux-pci@vger.kernel.org
14818 L:      linux-renesas-soc@vger.kernel.org
14819 S:      Maintained
14820 F:      Documentation/devicetree/bindings/pci/*rcar*
14821 F:      drivers/pci/controller/*rcar*
14822
14823 PCI DRIVER FOR SAMSUNG EXYNOS
14824 M:      Jingoo Han <jingoohan1@gmail.com>
14825 L:      linux-pci@vger.kernel.org
14826 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14827 L:      linux-samsung-soc@vger.kernel.org
14828 S:      Maintained
14829 F:      drivers/pci/controller/dwc/pci-exynos.c
14830
14831 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14832 M:      Jingoo Han <jingoohan1@gmail.com>
14833 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
14834 L:      linux-pci@vger.kernel.org
14835 S:      Maintained
14836 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
14837 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
14838 F:      drivers/pci/controller/dwc/*designware*
14839
14840 PCI DRIVER FOR TI DRA7XX/J721E
14841 M:      Kishon Vijay Abraham I <kishon@ti.com>
14842 L:      linux-omap@vger.kernel.org
14843 L:      linux-pci@vger.kernel.org
14844 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14845 S:      Supported
14846 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
14847 F:      drivers/pci/controller/cadence/pci-j721e.c
14848 F:      drivers/pci/controller/dwc/pci-dra7xx.c
14849
14850 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14851 M:      Linus Walleij <linus.walleij@linaro.org>
14852 L:      linux-pci@vger.kernel.org
14853 S:      Maintained
14854 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14855 F:      drivers/pci/controller/pci-v3-semi.c
14856
14857 PCI ENDPOINT SUBSYSTEM
14858 M:      Kishon Vijay Abraham I <kishon@ti.com>
14859 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14860 R:      Krzysztof Wilczyński <kw@linux.com>
14861 L:      linux-pci@vger.kernel.org
14862 S:      Supported
14863 Q:      https://patchwork.kernel.org/project/linux-pci/list/
14864 B:      https://bugzilla.kernel.org
14865 C:      irc://irc.oftc.net/linux-pci
14866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
14867 F:      Documentation/PCI/endpoint/*
14868 F:      Documentation/misc-devices/pci-endpoint-test.rst
14869 F:      drivers/misc/pci_endpoint_test.c
14870 F:      drivers/pci/endpoint/
14871 F:      tools/pci/
14872
14873 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14874 M:      Russell Currey <ruscur@russell.cc>
14875 M:      Oliver O'Halloran <oohall@gmail.com>
14876 L:      linuxppc-dev@lists.ozlabs.org
14877 S:      Supported
14878 F:      Documentation/PCI/pci-error-recovery.rst
14879 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
14880 F:      arch/powerpc/include/*/eeh*.h
14881 F:      arch/powerpc/kernel/eeh*.c
14882 F:      arch/powerpc/platforms/*/eeh*.c
14883 F:      drivers/pci/pcie/aer.c
14884 F:      drivers/pci/pcie/dpc.c
14885 F:      drivers/pci/pcie/err.c
14886
14887 PCI ERROR RECOVERY
14888 M:      Linas Vepstas <linasvepstas@gmail.com>
14889 L:      linux-pci@vger.kernel.org
14890 S:      Supported
14891 F:      Documentation/PCI/pci-error-recovery.rst
14892
14893 PCI PEER-TO-PEER DMA (P2PDMA)
14894 M:      Bjorn Helgaas <bhelgaas@google.com>
14895 M:      Logan Gunthorpe <logang@deltatee.com>
14896 L:      linux-pci@vger.kernel.org
14897 S:      Supported
14898 Q:      https://patchwork.kernel.org/project/linux-pci/list/
14899 B:      https://bugzilla.kernel.org
14900 C:      irc://irc.oftc.net/linux-pci
14901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14902 F:      Documentation/driver-api/pci/p2pdma.rst
14903 F:      drivers/pci/p2pdma.c
14904 F:      include/linux/pci-p2pdma.h
14905
14906 PCI MSI DRIVER FOR ALTERA MSI IP
14907 M:      Joyce Ooi <joyce.ooi@intel.com>
14908 L:      linux-pci@vger.kernel.org
14909 S:      Supported
14910 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14911 F:      drivers/pci/controller/pcie-altera-msi.c
14912
14913 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14914 M:      Toan Le <toan@os.amperecomputing.com>
14915 L:      linux-pci@vger.kernel.org
14916 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14917 S:      Maintained
14918 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14919 F:      drivers/pci/controller/pci-xgene-msi.c
14920
14921 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14922 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14923 R:      Rob Herring <robh@kernel.org>
14924 R:      Krzysztof Wilczyński <kw@linux.com>
14925 L:      linux-pci@vger.kernel.org
14926 S:      Supported
14927 Q:      https://patchwork.kernel.org/project/linux-pci/list/
14928 B:      https://bugzilla.kernel.org
14929 C:      irc://irc.oftc.net/linux-pci
14930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
14931 F:      drivers/pci/controller/
14932 F:      drivers/pci/pci-bridge-emul.c
14933 F:      drivers/pci/pci-bridge-emul.h
14934
14935 PCI SUBSYSTEM
14936 M:      Bjorn Helgaas <bhelgaas@google.com>
14937 L:      linux-pci@vger.kernel.org
14938 S:      Supported
14939 Q:      https://patchwork.kernel.org/project/linux-pci/list/
14940 B:      https://bugzilla.kernel.org
14941 C:      irc://irc.oftc.net/linux-pci
14942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14943 F:      Documentation/PCI/
14944 F:      Documentation/devicetree/bindings/pci/
14945 F:      arch/x86/kernel/early-quirks.c
14946 F:      arch/x86/kernel/quirks.c
14947 F:      arch/x86/pci/
14948 F:      drivers/acpi/pci*
14949 F:      drivers/pci/
14950 F:      include/asm-generic/pci*
14951 F:      include/linux/of_pci.h
14952 F:      include/linux/pci*
14953 F:      include/uapi/linux/pci*
14954 F:      lib/pci*
14955
14956 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14957 M:      Jonathan Chocron <jonnyc@amazon.com>
14958 L:      linux-pci@vger.kernel.org
14959 S:      Maintained
14960 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
14961 F:      drivers/pci/controller/dwc/pcie-al.c
14962
14963 PCIE DRIVER FOR AMLOGIC MESON
14964 M:      Yue Wang <yue.wang@Amlogic.com>
14965 L:      linux-pci@vger.kernel.org
14966 L:      linux-amlogic@lists.infradead.org
14967 S:      Maintained
14968 F:      drivers/pci/controller/dwc/pci-meson.c
14969
14970 PCIE DRIVER FOR AXIS ARTPEC
14971 M:      Jesper Nilsson <jesper.nilsson@axis.com>
14972 L:      linux-arm-kernel@axis.com
14973 L:      linux-pci@vger.kernel.org
14974 S:      Maintained
14975 F:      Documentation/devicetree/bindings/pci/axis,artpec*
14976 F:      drivers/pci/controller/dwc/*artpec*
14977
14978 PCIE DRIVER FOR CAVIUM THUNDERX
14979 M:      Robert Richter <rric@kernel.org>
14980 L:      linux-pci@vger.kernel.org
14981 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14982 S:      Odd Fixes
14983 F:      drivers/pci/controller/pci-thunder-*
14984
14985 PCIE DRIVER FOR HISILICON
14986 M:      Zhou Wang <wangzhou1@hisilicon.com>
14987 L:      linux-pci@vger.kernel.org
14988 S:      Maintained
14989 F:      drivers/pci/controller/dwc/pcie-hisi.c
14990
14991 PCIE DRIVER FOR HISILICON KIRIN
14992 M:      Xiaowei Song <songxiaowei@hisilicon.com>
14993 M:      Binghui Wang <wangbinghui@hisilicon.com>
14994 L:      linux-pci@vger.kernel.org
14995 S:      Maintained
14996 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
14997 F:      drivers/pci/controller/dwc/pcie-kirin.c
14998
14999 PCIE DRIVER FOR HISILICON STB
15000 M:      Shawn Guo <shawn.guo@linaro.org>
15001 L:      linux-pci@vger.kernel.org
15002 S:      Maintained
15003 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
15004 F:      drivers/pci/controller/dwc/pcie-histb.c
15005
15006 PCIE DRIVER FOR INTEL KEEM BAY
15007 M:      Srikanth Thokala <srikanth.thokala@intel.com>
15008 L:      linux-pci@vger.kernel.org
15009 S:      Supported
15010 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
15011 F:      drivers/pci/controller/dwc/pcie-keembay.c
15012
15013 PCIE DRIVER FOR INTEL LGM GW SOC
15014 M:      Rahul Tanwar <rtanwar@maxlinear.com>
15015 L:      linux-pci@vger.kernel.org
15016 S:      Maintained
15017 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
15018 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
15019
15020 PCIE DRIVER FOR MEDIATEK
15021 M:      Ryder Lee <ryder.lee@mediatek.com>
15022 M:      Jianjun Wang <jianjun.wang@mediatek.com>
15023 L:      linux-pci@vger.kernel.org
15024 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15025 S:      Supported
15026 F:      Documentation/devicetree/bindings/pci/mediatek*
15027 F:      drivers/pci/controller/*mediatek*
15028
15029 PCIE DRIVER FOR MICROCHIP
15030 M:      Daire McNamara <daire.mcnamara@microchip.com>
15031 L:      linux-pci@vger.kernel.org
15032 S:      Supported
15033 F:      Documentation/devicetree/bindings/pci/microchip*
15034 F:      drivers/pci/controller/*microchip*
15035
15036 PCIE DRIVER FOR QUALCOMM MSM
15037 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
15038 L:      linux-pci@vger.kernel.org
15039 L:      linux-arm-msm@vger.kernel.org
15040 S:      Maintained
15041 F:      drivers/pci/controller/dwc/pcie-qcom.c
15042
15043 PCIE ENDPOINT DRIVER FOR QUALCOMM
15044 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15045 L:      linux-pci@vger.kernel.org
15046 L:      linux-arm-msm@vger.kernel.org
15047 S:      Maintained
15048 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
15049 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
15050
15051 PCIE DRIVER FOR ROCKCHIP
15052 M:      Shawn Lin <shawn.lin@rock-chips.com>
15053 L:      linux-pci@vger.kernel.org
15054 L:      linux-rockchip@lists.infradead.org
15055 S:      Maintained
15056 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
15057 F:      drivers/pci/controller/pcie-rockchip*
15058
15059 PCIE DRIVER FOR SOCIONEXT UNIPHIER
15060 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15061 L:      linux-pci@vger.kernel.org
15062 S:      Maintained
15063 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
15064 F:      drivers/pci/controller/dwc/pcie-uniphier*
15065
15066 PCIE DRIVER FOR ST SPEAR13XX
15067 M:      Pratyush Anand <pratyush.anand@gmail.com>
15068 L:      linux-pci@vger.kernel.org
15069 S:      Maintained
15070 F:      drivers/pci/controller/dwc/*spear*
15071
15072 PCMCIA SUBSYSTEM
15073 M:      Dominik Brodowski <linux@dominikbrodowski.net>
15074 S:      Odd Fixes
15075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
15076 F:      Documentation/pcmcia/
15077 F:      drivers/pcmcia/
15078 F:      include/pcmcia/
15079 F:      tools/pcmcia/
15080
15081 PCNET32 NETWORK DRIVER
15082 M:      Don Fry <pcnet32@frontier.com>
15083 L:      netdev@vger.kernel.org
15084 S:      Maintained
15085 F:      drivers/net/ethernet/amd/pcnet32.c
15086
15087 PCRYPT PARALLEL CRYPTO ENGINE
15088 M:      Steffen Klassert <steffen.klassert@secunet.com>
15089 L:      linux-crypto@vger.kernel.org
15090 S:      Maintained
15091 F:      crypto/pcrypt.c
15092 F:      include/crypto/pcrypt.h
15093
15094 PEAQ WMI HOTKEYS DRIVER
15095 M:      Hans de Goede <hdegoede@redhat.com>
15096 L:      platform-driver-x86@vger.kernel.org
15097 S:      Maintained
15098 F:      drivers/platform/x86/peaq-wmi.c
15099
15100 PENSANDO ETHERNET DRIVERS
15101 M:      Shannon Nelson <snelson@pensando.io>
15102 M:      drivers@pensando.io
15103 L:      netdev@vger.kernel.org
15104 S:      Supported
15105 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
15106 F:      drivers/net/ethernet/pensando/
15107
15108 PER-CPU MEMORY ALLOCATOR
15109 M:      Dennis Zhou <dennis@kernel.org>
15110 M:      Tejun Heo <tj@kernel.org>
15111 M:      Christoph Lameter <cl@linux.com>
15112 L:      linux-mm@kvack.org
15113 S:      Maintained
15114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
15115 F:      arch/*/include/asm/percpu.h
15116 F:      include/linux/percpu*.h
15117 F:      lib/percpu*.c
15118 F:      mm/percpu*.c
15119
15120 PER-TASK DELAY ACCOUNTING
15121 M:      Balbir Singh <bsingharora@gmail.com>
15122 S:      Maintained
15123 F:      include/linux/delayacct.h
15124 F:      kernel/delayacct.c
15125
15126 PERFORMANCE EVENTS SUBSYSTEM
15127 M:      Peter Zijlstra <peterz@infradead.org>
15128 M:      Ingo Molnar <mingo@redhat.com>
15129 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
15130 R:      Mark Rutland <mark.rutland@arm.com>
15131 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
15132 R:      Jiri Olsa <jolsa@redhat.com>
15133 R:      Namhyung Kim <namhyung@kernel.org>
15134 L:      linux-perf-users@vger.kernel.org
15135 L:      linux-kernel@vger.kernel.org
15136 S:      Supported
15137 W:      https://perf.wiki.kernel.org/
15138 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
15139 F:      arch/*/events/*
15140 F:      arch/*/events/*/*
15141 F:      arch/*/include/asm/perf_event.h
15142 F:      arch/*/kernel/*/*/perf_event*.c
15143 F:      arch/*/kernel/*/perf_event*.c
15144 F:      arch/*/kernel/perf_callchain.c
15145 F:      arch/*/kernel/perf_event*.c
15146 F:      include/linux/perf_event.h
15147 F:      include/uapi/linux/perf_event.h
15148 F:      kernel/events/*
15149 F:      tools/lib/perf/
15150 F:      tools/perf/
15151
15152 PERFORMANCE EVENTS TOOLING ARM64
15153 R:      John Garry <john.garry@huawei.com>
15154 R:      Will Deacon <will@kernel.org>
15155 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
15156 R:      Leo Yan <leo.yan@linaro.org>
15157 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15158 S:      Supported
15159 F:      tools/build/feature/test-libopencsd.c
15160 F:      tools/perf/arch/arm*/
15161 F:      tools/perf/pmu-events/arch/arm64/
15162 F:      tools/perf/util/arm-spe*
15163 F:      tools/perf/util/cs-etm*
15164
15165 PERSONALITY HANDLING
15166 M:      Christoph Hellwig <hch@infradead.org>
15167 L:      linux-abi-devel@lists.sourceforge.net
15168 S:      Maintained
15169 F:      include/linux/personality.h
15170 F:      include/uapi/linux/personality.h
15171
15172 PHOENIX RC FLIGHT CONTROLLER ADAPTER
15173 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
15174 L:      linux-input@vger.kernel.org
15175 S:      Maintained
15176 F:      Documentation/input/devices/pxrc.rst
15177 F:      drivers/input/joystick/pxrc.c
15178
15179 PHONET PROTOCOL
15180 M:      Remi Denis-Courmont <courmisch@gmail.com>
15181 S:      Supported
15182 F:      Documentation/networking/phonet.rst
15183 F:      include/linux/phonet.h
15184 F:      include/net/phonet/
15185 F:      include/uapi/linux/phonet.h
15186 F:      net/phonet/
15187
15188 PHRAM MTD DRIVER
15189 M:      Joern Engel <joern@lazybastard.org>
15190 L:      linux-mtd@lists.infradead.org
15191 S:      Maintained
15192 F:      drivers/mtd/devices/phram.c
15193
15194 PICOLCD HID DRIVER
15195 M:      Bruno Prémont <bonbons@linux-vserver.org>
15196 L:      linux-input@vger.kernel.org
15197 S:      Maintained
15198 F:      drivers/hid/hid-picolcd*
15199
15200 PIDFD API
15201 M:      Christian Brauner <christian@brauner.io>
15202 L:      linux-kernel@vger.kernel.org
15203 S:      Maintained
15204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
15205 F:      samples/pidfd/
15206 F:      tools/testing/selftests/clone3/
15207 F:      tools/testing/selftests/pid_namespace/
15208 F:      tools/testing/selftests/pidfd/
15209 K:      (?i)pidfd
15210 K:      (?i)clone3
15211 K:      \b(clone_args|kernel_clone_args)\b
15212
15213 PIN CONTROL SUBSYSTEM
15214 M:      Linus Walleij <linus.walleij@linaro.org>
15215 L:      linux-gpio@vger.kernel.org
15216 S:      Maintained
15217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
15218 F:      Documentation/devicetree/bindings/pinctrl/
15219 F:      Documentation/driver-api/pin-control.rst
15220 F:      drivers/pinctrl/
15221 F:      include/linux/pinctrl/
15222
15223 PIN CONTROLLER - AMD
15224 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
15225 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
15226 S:      Maintained
15227 F:      drivers/pinctrl/pinctrl-amd.c
15228
15229 PIN CONTROLLER - FREESCALE
15230 M:      Dong Aisheng <aisheng.dong@nxp.com>
15231 M:      Fabio Estevam <festevam@gmail.com>
15232 M:      Shawn Guo <shawnguo@kernel.org>
15233 M:      Stefan Agner <stefan@agner.ch>
15234 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15235 L:      linux-gpio@vger.kernel.org
15236 S:      Maintained
15237 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
15238 F:      drivers/pinctrl/freescale/
15239
15240 PIN CONTROLLER - INTEL
15241 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
15242 M:      Andy Shevchenko <andy@kernel.org>
15243 S:      Maintained
15244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
15245 F:      drivers/pinctrl/intel/
15246
15247 PIN CONTROLLER - KEEMBAY
15248 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15249 S:      Supported
15250 F:      drivers/pinctrl/pinctrl-keembay*
15251
15252 PIN CONTROLLER - MEDIATEK
15253 M:      Sean Wang <sean.wang@kernel.org>
15254 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15255 S:      Maintained
15256 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
15257 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
15258 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
15259 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
15260 F:      drivers/pinctrl/mediatek/
15261
15262 PIN CONTROLLER - MICROCHIP AT91
15263 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
15264 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15265 L:      linux-gpio@vger.kernel.org
15266 S:      Supported
15267 F:      drivers/gpio/gpio-sama5d2-piobu.c
15268 F:      drivers/pinctrl/pinctrl-at91*
15269
15270 PIN CONTROLLER - QUALCOMM
15271 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15272 L:      linux-arm-msm@vger.kernel.org
15273 S:      Maintained
15274 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
15275 F:      drivers/pinctrl/qcom/
15276
15277 PIN CONTROLLER - RENESAS
15278 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15279 L:      linux-renesas-soc@vger.kernel.org
15280 S:      Supported
15281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
15282 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
15283 F:      drivers/pinctrl/renesas/
15284
15285 PIN CONTROLLER - SAMSUNG
15286 M:      Tomasz Figa <tomasz.figa@gmail.com>
15287 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
15288 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15289 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15290 L:      linux-samsung-soc@vger.kernel.org
15291 S:      Maintained
15292 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
15293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
15294 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
15295 F:      drivers/pinctrl/samsung/
15296 F:      include/dt-bindings/pinctrl/samsung.h
15297
15298 PIN CONTROLLER - SINGLE
15299 M:      Tony Lindgren <tony@atomide.com>
15300 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
15301 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15302 L:      linux-omap@vger.kernel.org
15303 S:      Maintained
15304 F:      drivers/pinctrl/pinctrl-single.c
15305
15306 PIN CONTROLLER - THUNDERBAY
15307 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15308 S:      Supported
15309 F:      drivers/pinctrl/pinctrl-thunderbay.c
15310
15311 PKTCDVD DRIVER
15312 M:      linux-block@vger.kernel.org
15313 S:      Orphan
15314 F:      drivers/block/pktcdvd.c
15315 F:      include/linux/pktcdvd.h
15316 F:      include/uapi/linux/pktcdvd.h
15317
15318 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
15319 M:      Tomasz Duszynski <tduszyns@gmail.com>
15320 S:      Maintained
15321 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
15322 F:      drivers/iio/chemical/pms7003.c
15323
15324 PLDMFW LIBRARY
15325 M:      Jacob Keller <jacob.e.keller@intel.com>
15326 S:      Maintained
15327 F:      Documentation/driver-api/pldmfw/
15328 F:      include/linux/pldmfw.h
15329 F:      lib/pldmfw/
15330
15331 PLX DMA DRIVER
15332 M:      Logan Gunthorpe <logang@deltatee.com>
15333 S:      Maintained
15334 F:      drivers/dma/plx_dma.c
15335
15336 PM6764TR DRIVER
15337 M:      Charles Hsu     <hsu.yungteng@gmail.com>
15338 L:      linux-hwmon@vger.kernel.org
15339 S:      Maintained
15340 F:      Documentation/hwmon/pm6764tr.rst
15341 F:      drivers/hwmon/pmbus/pm6764tr.c
15342
15343 PM-GRAPH UTILITY
15344 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
15345 L:      linux-pm@vger.kernel.org
15346 S:      Supported
15347 W:      https://01.org/pm-graph
15348 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
15349 T:      git git://github.com/intel/pm-graph
15350 F:      tools/power/pm-graph
15351
15352 PMBUS HARDWARE MONITORING DRIVERS
15353 M:      Guenter Roeck <linux@roeck-us.net>
15354 L:      linux-hwmon@vger.kernel.org
15355 S:      Maintained
15356 W:      http://hwmon.wiki.kernel.org/
15357 W:      http://www.roeck-us.net/linux/drivers/
15358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
15359 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
15360 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
15361 F:      Documentation/hwmon/adm1275.rst
15362 F:      Documentation/hwmon/ibm-cffps.rst
15363 F:      Documentation/hwmon/ir35221.rst
15364 F:      Documentation/hwmon/lm25066.rst
15365 F:      Documentation/hwmon/ltc2978.rst
15366 F:      Documentation/hwmon/ltc3815.rst
15367 F:      Documentation/hwmon/max16064.rst
15368 F:      Documentation/hwmon/max20751.rst
15369 F:      Documentation/hwmon/max31785.rst
15370 F:      Documentation/hwmon/max34440.rst
15371 F:      Documentation/hwmon/max8688.rst
15372 F:      Documentation/hwmon/pmbus-core.rst
15373 F:      Documentation/hwmon/pmbus.rst
15374 F:      Documentation/hwmon/tps40422.rst
15375 F:      Documentation/hwmon/ucd9000.rst
15376 F:      Documentation/hwmon/ucd9200.rst
15377 F:      Documentation/hwmon/zl6100.rst
15378 F:      drivers/hwmon/pmbus/
15379 F:      include/linux/pmbus.h
15380
15381 PMC SIERRA MaxRAID DRIVER
15382 L:      linux-scsi@vger.kernel.org
15383 S:      Orphan
15384 W:      http://www.pmc-sierra.com/
15385 F:      drivers/scsi/pmcraid.*
15386
15387 PMC SIERRA PM8001 DRIVER
15388 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15389 L:      linux-scsi@vger.kernel.org
15390 S:      Supported
15391 F:      drivers/scsi/pm8001/
15392
15393 PNI RM3100 IIO DRIVER
15394 M:      Song Qiang <songqiang1304521@gmail.com>
15395 L:      linux-iio@vger.kernel.org
15396 S:      Maintained
15397 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
15398 F:      drivers/iio/magnetometer/rm3100*
15399
15400 PNP SUPPORT
15401 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
15402 L:      linux-acpi@vger.kernel.org
15403 S:      Maintained
15404 F:      drivers/pnp/
15405 F:      include/linux/pnp.h
15406
15407 POSIX CLOCKS and TIMERS
15408 M:      Thomas Gleixner <tglx@linutronix.de>
15409 L:      linux-kernel@vger.kernel.org
15410 S:      Maintained
15411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15412 F:      fs/timerfd.c
15413 F:      include/linux/time_namespace.h
15414 F:      include/linux/timer*
15415 F:      kernel/time/*timer*
15416 F:      kernel/time/namespace.c
15417
15418 POWER MANAGEMENT CORE
15419 M:      "Rafael J. Wysocki" <rafael@kernel.org>
15420 L:      linux-pm@vger.kernel.org
15421 S:      Supported
15422 B:      https://bugzilla.kernel.org
15423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15424 F:      drivers/base/power/
15425 F:      drivers/powercap/
15426 F:      include/linux/intel_rapl.h
15427 F:      include/linux/pm.h
15428 F:      include/linux/pm_*
15429 F:      include/linux/powercap.h
15430 F:      kernel/configs/nopm.config
15431
15432 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15433 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
15434 L:      linux-pm@vger.kernel.org
15435 S:      Supported
15436 B:      https://bugzilla.kernel.org
15437 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15438 F:      drivers/powercap/dtpm*
15439 F:      include/linux/dtpm.h
15440
15441 POWER STATE COORDINATION INTERFACE (PSCI)
15442 M:      Mark Rutland <mark.rutland@arm.com>
15443 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15444 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15445 S:      Maintained
15446 F:      drivers/firmware/psci/
15447 F:      include/linux/psci.h
15448 F:      include/uapi/linux/psci.h
15449
15450 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15451 M:      Sebastian Reichel <sre@kernel.org>
15452 L:      linux-pm@vger.kernel.org
15453 S:      Maintained
15454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15455 F:      Documentation/ABI/testing/sysfs-class-power
15456 F:      Documentation/devicetree/bindings/power/supply/
15457 F:      drivers/power/supply/
15458 F:      include/linux/power/
15459 F:      include/linux/power_supply.h
15460
15461 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15462 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15463 L:      linuxppc-dev@lists.ozlabs.org
15464 S:      Maintained
15465 F:      drivers/char/powernv-op-panel.c
15466
15467 PPP OVER ATM (RFC 2364)
15468 M:      Mitchell Blank Jr <mitch@sfgoth.com>
15469 S:      Maintained
15470 F:      include/uapi/linux/atmppp.h
15471 F:      net/atm/pppoatm.c
15472
15473 PPP OVER ETHERNET
15474 M:      Michal Ostrowski <mostrows@earthlink.net>
15475 S:      Maintained
15476 F:      drivers/net/ppp/pppoe.c
15477 F:      drivers/net/ppp/pppox.c
15478
15479 PPP OVER L2TP
15480 M:      James Chapman <jchapman@katalix.com>
15481 S:      Maintained
15482 F:      include/linux/if_pppol2tp.h
15483 F:      include/uapi/linux/if_pppol2tp.h
15484 F:      net/l2tp/l2tp_ppp.c
15485
15486 PPP PROTOCOL DRIVERS AND COMPRESSORS
15487 M:      Paul Mackerras <paulus@samba.org>
15488 L:      linux-ppp@vger.kernel.org
15489 S:      Maintained
15490 F:      drivers/net/ppp/ppp_*
15491
15492 PPS SUPPORT
15493 M:      Rodolfo Giometti <giometti@enneenne.com>
15494 L:      linuxpps@ml.enneenne.com (subscribers-only)
15495 S:      Maintained
15496 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
15497 F:      Documentation/ABI/testing/sysfs-pps
15498 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
15499 F:      Documentation/driver-api/pps.rst
15500 F:      drivers/pps/
15501 F:      include/linux/pps*.h
15502 F:      include/uapi/linux/pps.h
15503
15504 PPTP DRIVER
15505 M:      Dmitry Kozlov <xeb@mail.ru>
15506 L:      netdev@vger.kernel.org
15507 S:      Maintained
15508 W:      http://sourceforge.net/projects/accel-pptp
15509 F:      drivers/net/ppp/pptp.c
15510
15511 PRESSURE STALL INFORMATION (PSI)
15512 M:      Johannes Weiner <hannes@cmpxchg.org>
15513 S:      Maintained
15514 F:      include/linux/psi*
15515 F:      kernel/sched/psi.c
15516
15517 PRINTK
15518 M:      Petr Mladek <pmladek@suse.com>
15519 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
15520 R:      Steven Rostedt <rostedt@goodmis.org>
15521 R:      John Ogness <john.ogness@linutronix.de>
15522 S:      Maintained
15523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
15524 F:      include/linux/printk.h
15525 F:      kernel/printk/
15526
15527 PRINTK INDEXING
15528 R:      Chris Down <chris@chrisdown.name>
15529 S:      Maintained
15530 F:      kernel/printk/index.c
15531
15532 PROC FILESYSTEM
15533 L:      linux-kernel@vger.kernel.org
15534 L:      linux-fsdevel@vger.kernel.org
15535 S:      Maintained
15536 F:      Documentation/filesystems/proc.rst
15537 F:      fs/proc/
15538 F:      include/linux/proc_fs.h
15539 F:      tools/testing/selftests/proc/
15540
15541 PROC SYSCTL
15542 M:      Luis Chamberlain <mcgrof@kernel.org>
15543 M:      Kees Cook <keescook@chromium.org>
15544 M:      Iurii Zaikin <yzaikin@google.com>
15545 L:      linux-kernel@vger.kernel.org
15546 L:      linux-fsdevel@vger.kernel.org
15547 S:      Maintained
15548 F:      fs/proc/proc_sysctl.c
15549 F:      include/linux/sysctl.h
15550 F:      kernel/sysctl-test.c
15551 F:      kernel/sysctl.c
15552 F:      tools/testing/selftests/sysctl/
15553
15554 PS3 NETWORK SUPPORT
15555 M:      Geoff Levand <geoff@infradead.org>
15556 L:      netdev@vger.kernel.org
15557 L:      linuxppc-dev@lists.ozlabs.org
15558 S:      Maintained
15559 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
15560
15561 PS3 PLATFORM SUPPORT
15562 M:      Geoff Levand <geoff@infradead.org>
15563 L:      linuxppc-dev@lists.ozlabs.org
15564 S:      Maintained
15565 F:      arch/powerpc/boot/ps3*
15566 F:      arch/powerpc/include/asm/lv1call.h
15567 F:      arch/powerpc/include/asm/ps3*.h
15568 F:      arch/powerpc/platforms/ps3/
15569 F:      drivers/*/ps3*
15570 F:      drivers/ps3/
15571 F:      drivers/rtc/rtc-ps3.c
15572 F:      drivers/usb/host/*ps3.c
15573 F:      sound/ppc/snd_ps3*
15574
15575 PS3VRAM DRIVER
15576 M:      Jim Paris <jim@jtan.com>
15577 M:      Geoff Levand <geoff@infradead.org>
15578 L:      linuxppc-dev@lists.ozlabs.org
15579 S:      Maintained
15580 F:      drivers/block/ps3vram.c
15581
15582 PSAMPLE PACKET SAMPLING SUPPORT
15583 M:      Yotam Gigi <yotam.gi@gmail.com>
15584 S:      Maintained
15585 F:      include/net/psample.h
15586 F:      include/uapi/linux/psample.h
15587 F:      net/psample
15588
15589 PSTORE FILESYSTEM
15590 M:      Kees Cook <keescook@chromium.org>
15591 M:      Anton Vorontsov <anton@enomsg.org>
15592 M:      Colin Cross <ccross@android.com>
15593 M:      Tony Luck <tony.luck@intel.com>
15594 S:      Maintained
15595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15596 F:      Documentation/admin-guide/ramoops.rst
15597 F:      Documentation/admin-guide/pstore-blk.rst
15598 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
15599 F:      drivers/acpi/apei/erst.c
15600 F:      drivers/firmware/efi/efi-pstore.c
15601 F:      fs/pstore/
15602 F:      include/linux/pstore*
15603 K:      \b(pstore|ramoops)
15604
15605 PTP HARDWARE CLOCK SUPPORT
15606 M:      Richard Cochran <richardcochran@gmail.com>
15607 L:      netdev@vger.kernel.org
15608 S:      Maintained
15609 W:      http://linuxptp.sourceforge.net/
15610 F:      Documentation/ABI/testing/sysfs-ptp
15611 F:      Documentation/driver-api/ptp.rst
15612 F:      drivers/net/phy/dp83640*
15613 F:      drivers/ptp/*
15614 F:      include/linux/ptp_cl*
15615
15616 PTP VIRTUAL CLOCK SUPPORT
15617 M:      Yangbo Lu <yangbo.lu@nxp.com>
15618 L:      netdev@vger.kernel.org
15619 S:      Maintained
15620 F:      drivers/ptp/ptp_vclock.c
15621 F:      net/ethtool/phc_vclocks.c
15622
15623 PTRACE SUPPORT
15624 M:      Oleg Nesterov <oleg@redhat.com>
15625 S:      Maintained
15626 F:      arch/*/*/ptrace*.c
15627 F:      arch/*/include/asm/ptrace*.h
15628 F:      arch/*/ptrace*.c
15629 F:      include/asm-generic/syscall.h
15630 F:      include/linux/ptrace.h
15631 F:      include/linux/regset.h
15632 F:      include/linux/tracehook.h
15633 F:      include/uapi/linux/ptrace.h
15634 F:      include/uapi/linux/ptrace.h
15635 F:      kernel/ptrace.c
15636
15637 PULSE8-CEC DRIVER
15638 M:      Hans Verkuil <hverkuil@xs4all.nl>
15639 L:      linux-media@vger.kernel.org
15640 S:      Maintained
15641 T:      git git://linuxtv.org/media_tree.git
15642 F:      Documentation/admin-guide/media/pulse8-cec.rst
15643 F:      drivers/media/cec/usb/pulse8/
15644
15645 PVRUSB2 VIDEO4LINUX DRIVER
15646 M:      Mike Isely <isely@pobox.com>
15647 L:      pvrusb2@isely.net       (subscribers-only)
15648 L:      linux-media@vger.kernel.org
15649 S:      Maintained
15650 W:      http://www.isely.net/pvrusb2/
15651 T:      git git://linuxtv.org/media_tree.git
15652 F:      Documentation/driver-api/media/drivers/pvrusb2*
15653 F:      drivers/media/usb/pvrusb2/
15654
15655 PWC WEBCAM DRIVER
15656 M:      Hans Verkuil <hverkuil@xs4all.nl>
15657 L:      linux-media@vger.kernel.org
15658 S:      Odd Fixes
15659 T:      git git://linuxtv.org/media_tree.git
15660 F:      drivers/media/usb/pwc/*
15661 F:      include/trace/events/pwc.h
15662
15663 PWM FAN DRIVER
15664 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15665 L:      linux-hwmon@vger.kernel.org
15666 S:      Supported
15667 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15668 F:      Documentation/hwmon/pwm-fan.rst
15669 F:      drivers/hwmon/pwm-fan.c
15670
15671 PWM IR Transmitter
15672 M:      Sean Young <sean@mess.org>
15673 L:      linux-media@vger.kernel.org
15674 S:      Maintained
15675 F:      drivers/media/rc/pwm-ir-tx.c
15676
15677 PWM SUBSYSTEM
15678 M:      Thierry Reding <thierry.reding@gmail.com>
15679 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15680 M:      Lee Jones <lee.jones@linaro.org>
15681 L:      linux-pwm@vger.kernel.org
15682 S:      Maintained
15683 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
15684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15685 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15686 F:      Documentation/devicetree/bindings/pwm/
15687 F:      Documentation/driver-api/pwm.rst
15688 F:      drivers/gpio/gpio-mvebu.c
15689 F:      drivers/pwm/
15690 F:      drivers/video/backlight/pwm_bl.c
15691 F:      include/linux/pwm.h
15692 F:      include/linux/pwm_backlight.h
15693 K:      pwm_(config|apply_state|ops)
15694
15695 PXA GPIO DRIVER
15696 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15697 L:      linux-gpio@vger.kernel.org
15698 S:      Maintained
15699 F:      drivers/gpio/gpio-pxa.c
15700
15701 PXA MMCI DRIVER
15702 S:      Orphan
15703
15704 PXA RTC DRIVER
15705 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15706 L:      linux-rtc@vger.kernel.org
15707 S:      Maintained
15708
15709 PXA2xx/PXA3xx SUPPORT
15710 M:      Daniel Mack <daniel@zonque.org>
15711 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
15712 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15713 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15714 S:      Maintained
15715 T:      git git://github.com/hzhuang1/linux.git
15716 T:      git git://github.com/rjarzmik/linux.git
15717 F:      arch/arm/boot/dts/pxa*
15718 F:      arch/arm/mach-pxa/
15719 F:      drivers/dma/pxa*
15720 F:      drivers/pcmcia/pxa2xx*
15721 F:      drivers/pinctrl/pxa/
15722 F:      drivers/spi/spi-pxa2xx*
15723 F:      drivers/usb/gadget/udc/pxa2*
15724 F:      include/sound/pxa2xx-lib.h
15725 F:      sound/arm/pxa*
15726 F:      sound/soc/pxa/
15727
15728 QAT DRIVER
15729 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
15730 L:      qat-linux@intel.com
15731 S:      Supported
15732 F:      drivers/crypto/qat/
15733
15734 QCOM AUDIO (ASoC) DRIVERS
15735 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15736 M:      Banajit Goswami <bgoswami@codeaurora.org>
15737 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15738 S:      Supported
15739 F:      sound/soc/codecs/lpass-va-macro.c
15740 F:      sound/soc/codecs/lpass-wsa-macro.*
15741 F:      sound/soc/codecs/msm8916-wcd-analog.c
15742 F:      sound/soc/codecs/msm8916-wcd-digital.c
15743 F:      sound/soc/codecs/wcd9335.*
15744 F:      sound/soc/codecs/wcd934x.c
15745 F:      sound/soc/codecs/wcd-clsh-v2.*
15746 F:      sound/soc/codecs/wsa881x.c
15747 F:      sound/soc/qcom/
15748
15749 QCOM IPA DRIVER
15750 M:      Alex Elder <elder@kernel.org>
15751 L:      netdev@vger.kernel.org
15752 S:      Supported
15753 F:      drivers/net/ipa/
15754
15755 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
15756 M:      Gabriel Somlo <somlo@cmu.edu>
15757 M:      "Michael S. Tsirkin" <mst@redhat.com>
15758 L:      qemu-devel@nongnu.org
15759 S:      Maintained
15760 F:      drivers/firmware/qemu_fw_cfg.c
15761 F:      include/uapi/linux/qemu_fw_cfg.h
15762
15763 QIB DRIVER
15764 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15765 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15766 L:      linux-rdma@vger.kernel.org
15767 S:      Supported
15768 F:      drivers/infiniband/hw/qib/
15769
15770 QLOGIC QL41xxx FCOE DRIVER
15771 M:      Saurav Kashyap <skashyap@marvell.com>
15772 M:      Javed Hasan <jhasan@marvell.com>
15773 M:      GR-QLogic-Storage-Upstream@marvell.com
15774 L:      linux-scsi@vger.kernel.org
15775 S:      Supported
15776 F:      drivers/scsi/qedf/
15777
15778 QLOGIC QL41xxx ISCSI DRIVER
15779 M:      Nilesh Javali <njavali@marvell.com>
15780 M:      Manish Rangankar <mrangankar@marvell.com>
15781 M:      GR-QLogic-Storage-Upstream@marvell.com
15782 L:      linux-scsi@vger.kernel.org
15783 S:      Supported
15784 F:      drivers/scsi/qedi/
15785
15786 QLOGIC QL4xxx ETHERNET DRIVER
15787 M:      Ariel Elior <aelior@marvell.com>
15788 M:      Manish Chopra <manishc@marvell.com>
15789 L:      netdev@vger.kernel.org
15790 S:      Supported
15791 F:      drivers/net/ethernet/qlogic/qed/
15792 F:      drivers/net/ethernet/qlogic/qede/
15793 F:      include/linux/qed/
15794
15795 QLOGIC QL4xxx RDMA DRIVER
15796 M:      Michal Kalderon <mkalderon@marvell.com>
15797 M:      Ariel Elior <aelior@marvell.com>
15798 L:      linux-rdma@vger.kernel.org
15799 S:      Supported
15800 F:      drivers/infiniband/hw/qedr/
15801 F:      include/uapi/rdma/qedr-abi.h
15802
15803 QLOGIC QLA1280 SCSI DRIVER
15804 M:      Michael Reed <mdr@sgi.com>
15805 L:      linux-scsi@vger.kernel.org
15806 S:      Maintained
15807 F:      drivers/scsi/qla1280.[ch]
15808
15809 QLOGIC QLA2XXX FC-SCSI DRIVER
15810 M:      Nilesh Javali <njavali@marvell.com>
15811 M:      GR-QLogic-Storage-Upstream@marvell.com
15812 L:      linux-scsi@vger.kernel.org
15813 S:      Supported
15814 F:      drivers/scsi/qla2xxx/
15815
15816 QLOGIC QLA3XXX NETWORK DRIVER
15817 M:      GR-Linux-NIC-Dev@marvell.com
15818 L:      netdev@vger.kernel.org
15819 S:      Supported
15820 F:      drivers/net/ethernet/qlogic/qla3xxx.*
15821
15822 QLOGIC QLA4XXX iSCSI DRIVER
15823 M:      Nilesh Javali <njavali@marvell.com>
15824 M:      Manish Rangankar <mrangankar@marvell.com>
15825 M:      GR-QLogic-Storage-Upstream@marvell.com
15826 L:      linux-scsi@vger.kernel.org
15827 S:      Supported
15828 F:      drivers/scsi/qla4xxx/
15829
15830 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
15831 M:      Shahed Shaikh <shshaikh@marvell.com>
15832 M:      Manish Chopra <manishc@marvell.com>
15833 M:      GR-Linux-NIC-Dev@marvell.com
15834 L:      netdev@vger.kernel.org
15835 S:      Supported
15836 F:      drivers/net/ethernet/qlogic/qlcnic/
15837
15838 QLOGIC QLGE 10Gb ETHERNET DRIVER
15839 M:      Manish Chopra <manishc@marvell.com>
15840 M:      GR-Linux-NIC-Dev@marvell.com
15841 M:      Coiby Xu <coiby.xu@gmail.com>
15842 L:      netdev@vger.kernel.org
15843 S:      Supported
15844 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
15845 F:      drivers/staging/qlge/
15846
15847 QM1D1B0004 MEDIA DRIVER
15848 M:      Akihiro Tsukada <tskd08@gmail.com>
15849 L:      linux-media@vger.kernel.org
15850 S:      Odd Fixes
15851 F:      drivers/media/tuners/qm1d1b0004*
15852
15853 QM1D1C0042 MEDIA DRIVER
15854 M:      Akihiro Tsukada <tskd08@gmail.com>
15855 L:      linux-media@vger.kernel.org
15856 S:      Odd Fixes
15857 F:      drivers/media/tuners/qm1d1c0042*
15858
15859 QNX4 FILESYSTEM
15860 M:      Anders Larsen <al@alarsen.net>
15861 S:      Maintained
15862 W:      http://www.alarsen.net/linux/qnx4fs/
15863 F:      fs/qnx4/
15864 F:      include/uapi/linux/qnx4_fs.h
15865 F:      include/uapi/linux/qnxtypes.h
15866
15867 QORIQ DPAA2 FSL-MC BUS DRIVER
15868 M:      Stuart Yoder <stuyoder@gmail.com>
15869 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
15870 L:      linux-kernel@vger.kernel.org
15871 S:      Maintained
15872 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
15873 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15874 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15875 F:      drivers/bus/fsl-mc/
15876 F:      include/uapi/linux/fsl_mc.h
15877
15878 QT1010 MEDIA DRIVER
15879 M:      Antti Palosaari <crope@iki.fi>
15880 L:      linux-media@vger.kernel.org
15881 S:      Maintained
15882 W:      https://linuxtv.org
15883 W:      http://palosaari.fi/linux/
15884 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15885 T:      git git://linuxtv.org/anttip/media_tree.git
15886 F:      drivers/media/tuners/qt1010*
15887
15888 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15889 M:      Kalle Valo <kvalo@kernel.org>
15890 L:      ath10k@lists.infradead.org
15891 S:      Supported
15892 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15894 F:      drivers/net/wireless/ath/ath10k/
15895
15896 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15897 M:      Kalle Valo <kvalo@kernel.org>
15898 L:      ath11k@lists.infradead.org
15899 S:      Supported
15900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15901 F:      drivers/net/wireless/ath/ath11k/
15902
15903 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15904 M:      ath9k-devel@qca.qualcomm.com
15905 L:      linux-wireless@vger.kernel.org
15906 S:      Supported
15907 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15908 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
15909 F:      drivers/net/wireless/ath/ath9k/
15910
15911 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
15912 M:      Stephan Gerhold <stephan@gerhold.net>
15913 L:      netdev@vger.kernel.org
15914 L:      linux-arm-msm@vger.kernel.org
15915 S:      Maintained
15916 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
15917 F:      drivers/net/wwan/qcom_bam_dmux.c
15918
15919 QUALCOMM CAMERA SUBSYSTEM DRIVER
15920 M:      Robert Foss <robert.foss@linaro.org>
15921 M:      Todor Tomov <todor.too@gmail.com>
15922 L:      linux-media@vger.kernel.org
15923 S:      Maintained
15924 F:      Documentation/admin-guide/media/qcom_camss.rst
15925 F:      Documentation/devicetree/bindings/media/*camss*
15926 F:      drivers/media/platform/qcom/camss/
15927
15928 QUALCOMM CLOCK DRIVERS
15929 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15930 L:      linux-arm-msm@vger.kernel.org
15931 S:      Supported
15932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
15933 F:      Documentation/devicetree/bindings/clock/qcom,*
15934 F:      drivers/clk/qcom/
15935 F:      include/dt-bindings/clock/qcom,*
15936
15937 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15938 M:      Niklas Cassel <nks@flawful.org>
15939 L:      linux-pm@vger.kernel.org
15940 L:      linux-arm-msm@vger.kernel.org
15941 S:      Maintained
15942 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15943 F:      drivers/soc/qcom/cpr.c
15944
15945 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15946 M:      Ilia Lin <ilia.lin@kernel.org>
15947 L:      linux-pm@vger.kernel.org
15948 S:      Maintained
15949 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15950 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
15951
15952 QUALCOMM CRYPTO DRIVERS
15953 M:      Thara Gopinath <thara.gopinath@linaro.org>
15954 L:      linux-crypto@vger.kernel.org
15955 L:      linux-arm-msm@vger.kernel.org
15956 S:      Maintained
15957 F:      drivers/crypto/qce/
15958
15959 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15960 M:      Timur Tabi <timur@kernel.org>
15961 L:      netdev@vger.kernel.org
15962 S:      Maintained
15963 F:      drivers/net/ethernet/qualcomm/emac/
15964
15965 QUALCOMM ETHQOS ETHERNET DRIVER
15966 M:      Vinod Koul <vkoul@kernel.org>
15967 L:      netdev@vger.kernel.org
15968 S:      Maintained
15969 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
15970 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15971
15972 QUALCOMM FASTRPC DRIVER
15973 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15974 M:      Amol Maheshwari <amahesh@qti.qualcomm.com>
15975 L:      linux-arm-msm@vger.kernel.org
15976 S:      Maintained
15977 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.txt
15978 F:      drivers/misc/fastrpc.c
15979 F:      include/uapi/misc/fastrpc.h
15980
15981 QUALCOMM GENERIC INTERFACE I2C DRIVER
15982 M:      Akash Asthana <akashast@codeaurora.org>
15983 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
15984 L:      linux-i2c@vger.kernel.org
15985 L:      linux-arm-msm@vger.kernel.org
15986 S:      Supported
15987 F:      drivers/i2c/busses/i2c-qcom-geni.c
15988
15989 QUALCOMM HEXAGON ARCHITECTURE
15990 M:      Brian Cain <bcain@codeaurora.org>
15991 L:      linux-hexagon@vger.kernel.org
15992 S:      Supported
15993 F:      arch/hexagon/
15994
15995 QUALCOMM HIDMA DRIVER
15996 M:      Sinan Kaya <okaya@kernel.org>
15997 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15998 L:      linux-arm-msm@vger.kernel.org
15999 L:      dmaengine@vger.kernel.org
16000 S:      Supported
16001 F:      drivers/dma/qcom/hidma*
16002
16003 QUALCOMM I2C CCI DRIVER
16004 M:      Loic Poulain <loic.poulain@linaro.org>
16005 M:      Robert Foss <robert.foss@linaro.org>
16006 L:      linux-i2c@vger.kernel.org
16007 L:      linux-arm-msm@vger.kernel.org
16008 S:      Maintained
16009 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
16010 F:      drivers/i2c/busses/i2c-qcom-cci.c
16011
16012 QUALCOMM IOMMU
16013 M:      Rob Clark <robdclark@gmail.com>
16014 L:      iommu@lists.linux-foundation.org
16015 L:      linux-arm-msm@vger.kernel.org
16016 S:      Maintained
16017 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
16018
16019 QUALCOMM IPC ROUTER (QRTR) DRIVER
16020 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16021 L:      linux-arm-msm@vger.kernel.org
16022 S:      Maintained
16023 F:      include/trace/events/qrtr.h
16024 F:      include/uapi/linux/qrtr.h
16025 F:      net/qrtr/
16026
16027 QUALCOMM IPCC MAILBOX DRIVER
16028 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16029 L:      linux-arm-msm@vger.kernel.org
16030 S:      Supported
16031 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
16032 F:      drivers/mailbox/qcom-ipcc.c
16033 F:      include/dt-bindings/mailbox/qcom-ipcc.h
16034
16035 QUALCOMM IPQ4019 USB PHY DRIVER
16036 M:      Robert Marko <robert.marko@sartura.hr>
16037 M:      Luka Perkov <luka.perkov@sartura.hr>
16038 L:      linux-arm-msm@vger.kernel.org
16039 S:      Maintained
16040 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
16041 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
16042
16043 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
16044 M:      Robert Marko <robert.marko@sartura.hr>
16045 M:      Luka Perkov <luka.perkov@sartura.hr>
16046 L:      linux-arm-msm@vger.kernel.org
16047 S:      Maintained
16048 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
16049 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
16050
16051 QUALCOMM NAND CONTROLLER DRIVER
16052 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16053 L:      linux-mtd@lists.infradead.org
16054 L:      linux-arm-msm@vger.kernel.org
16055 S:      Maintained
16056 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
16057 F:      drivers/mtd/nand/raw/qcom_nandc.c
16058
16059 QUALCOMM RMNET DRIVER
16060 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
16061 M:      Sean Tranchetti <stranche@codeaurora.org>
16062 L:      netdev@vger.kernel.org
16063 S:      Maintained
16064 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
16065 F:      drivers/net/ethernet/qualcomm/rmnet/
16066 F:      include/linux/if_rmnet.h
16067
16068 QUALCOMM TSENS THERMAL DRIVER
16069 M:      Amit Kucheria <amitk@kernel.org>
16070 M:      Thara Gopinath <thara.gopinath@linaro.org>
16071 L:      linux-pm@vger.kernel.org
16072 L:      linux-arm-msm@vger.kernel.org
16073 S:      Maintained
16074 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
16075 F:      drivers/thermal/qcom/
16076
16077 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
16078 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
16079 L:      linux-media@vger.kernel.org
16080 L:      linux-arm-msm@vger.kernel.org
16081 S:      Maintained
16082 T:      git git://linuxtv.org/media_tree.git
16083 F:      Documentation/devicetree/bindings/media/*venus*
16084 F:      drivers/media/platform/qcom/venus/
16085
16086 QUALCOMM WCN36XX WIRELESS DRIVER
16087 M:      Kalle Valo <kvalo@kernel.org>
16088 L:      wcn36xx@lists.infradead.org
16089 S:      Supported
16090 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
16091 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
16092 F:      drivers/net/wireless/ath/wcn36xx/
16093
16094 QUANTENNA QTNFMAC WIRELESS DRIVER
16095 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
16096 R:      Sergey Matyukevich <geomatsi@gmail.com>
16097 L:      linux-wireless@vger.kernel.org
16098 S:      Maintained
16099 F:      drivers/net/wireless/quantenna
16100
16101 RADEON and AMDGPU DRM DRIVERS
16102 M:      Alex Deucher <alexander.deucher@amd.com>
16103 M:      Christian König <christian.koenig@amd.com>
16104 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
16105 L:      amd-gfx@lists.freedesktop.org
16106 S:      Supported
16107 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
16108 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
16109 C:      irc://irc.oftc.net/radeon
16110 F:      drivers/gpu/drm/amd/
16111 F:      drivers/gpu/drm/radeon/
16112 F:      include/uapi/drm/amdgpu_drm.h
16113 F:      include/uapi/drm/radeon_drm.h
16114
16115 RADEON FRAMEBUFFER DISPLAY DRIVER
16116 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
16117 L:      linux-fbdev@vger.kernel.org
16118 S:      Maintained
16119 F:      drivers/video/fbdev/aty/radeon*
16120 F:      include/uapi/linux/radeonfb.h
16121
16122 RADIOSHARK RADIO DRIVER
16123 M:      Hans Verkuil <hverkuil@xs4all.nl>
16124 L:      linux-media@vger.kernel.org
16125 S:      Maintained
16126 T:      git git://linuxtv.org/media_tree.git
16127 F:      drivers/media/radio/radio-shark.c
16128
16129 RADIOSHARK2 RADIO DRIVER
16130 M:      Hans Verkuil <hverkuil@xs4all.nl>
16131 L:      linux-media@vger.kernel.org
16132 S:      Maintained
16133 T:      git git://linuxtv.org/media_tree.git
16134 F:      drivers/media/radio/radio-shark2.c
16135 F:      drivers/media/radio/radio-tea5777.c
16136
16137 RADOS BLOCK DEVICE (RBD)
16138 M:      Ilya Dryomov <idryomov@gmail.com>
16139 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
16140 L:      ceph-devel@vger.kernel.org
16141 S:      Supported
16142 W:      http://ceph.com/
16143 T:      git git://github.com/ceph/ceph-client.git
16144 F:      Documentation/ABI/testing/sysfs-bus-rbd
16145 F:      drivers/block/rbd.c
16146 F:      drivers/block/rbd_types.h
16147
16148 RAGE128 FRAMEBUFFER DISPLAY DRIVER
16149 M:      Paul Mackerras <paulus@samba.org>
16150 L:      linux-fbdev@vger.kernel.org
16151 S:      Maintained
16152 F:      drivers/video/fbdev/aty/aty128fb.c
16153
16154 RAINSHADOW-CEC DRIVER
16155 M:      Hans Verkuil <hverkuil@xs4all.nl>
16156 L:      linux-media@vger.kernel.org
16157 S:      Maintained
16158 T:      git git://linuxtv.org/media_tree.git
16159 F:      drivers/media/cec/usb/rainshadow/
16160
16161 RALINK MIPS ARCHITECTURE
16162 M:      John Crispin <john@phrozen.org>
16163 L:      linux-mips@vger.kernel.org
16164 S:      Maintained
16165 F:      arch/mips/ralink
16166
16167 RALINK RT2X00 WIRELESS LAN DRIVER
16168 M:      Stanislaw Gruszka <stf_xl@wp.pl>
16169 M:      Helmut Schaa <helmut.schaa@googlemail.com>
16170 L:      linux-wireless@vger.kernel.org
16171 S:      Maintained
16172 F:      drivers/net/wireless/ralink/rt2x00/
16173
16174 RAMDISK RAM BLOCK DEVICE DRIVER
16175 M:      Jens Axboe <axboe@kernel.dk>
16176 S:      Maintained
16177 F:      Documentation/admin-guide/blockdev/ramdisk.rst
16178 F:      drivers/block/brd.c
16179
16180 RANCHU VIRTUAL BOARD FOR MIPS
16181 M:      Miodrag Dinic <miodrag.dinic@mips.com>
16182 L:      linux-mips@vger.kernel.org
16183 S:      Supported
16184 F:      arch/mips/configs/generic/board-ranchu.config
16185 F:      arch/mips/generic/board-ranchu.c
16186
16187 RANDOM NUMBER DRIVER
16188 M:      "Theodore Ts'o" <tytso@mit.edu>
16189 M:      Jason A. Donenfeld <Jason@zx2c4.com>
16190 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
16191 S:      Maintained
16192 F:      drivers/char/random.c
16193
16194 RAPIDIO SUBSYSTEM
16195 M:      Matt Porter <mporter@kernel.crashing.org>
16196 M:      Alexandre Bounine <alex.bou9@gmail.com>
16197 S:      Maintained
16198 F:      drivers/rapidio/
16199
16200 RAS INFRASTRUCTURE
16201 M:      Tony Luck <tony.luck@intel.com>
16202 M:      Borislav Petkov <bp@alien8.de>
16203 L:      linux-edac@vger.kernel.org
16204 S:      Maintained
16205 F:      Documentation/admin-guide/ras.rst
16206 F:      drivers/ras/
16207 F:      include/linux/ras.h
16208 F:      include/ras/ras_event.h
16209
16210 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
16211 L:      linux-wireless@vger.kernel.org
16212 S:      Orphan
16213 F:      drivers/net/wireless/ray*
16214
16215 RC-CORE / LIRC FRAMEWORK
16216 M:      Sean Young <sean@mess.org>
16217 L:      linux-media@vger.kernel.org
16218 S:      Maintained
16219 W:      http://linuxtv.org
16220 T:      git git://linuxtv.org/media_tree.git
16221 F:      Documentation/driver-api/media/rc-core.rst
16222 F:      Documentation/userspace-api/media/rc/
16223 F:      drivers/media/rc/
16224 F:      include/media/rc-map.h
16225 F:      include/media/rc-core.h
16226 F:      include/uapi/linux/lirc.h
16227
16228 RCMM REMOTE CONTROLS DECODER
16229 M:      Patrick Lerda <patrick9876@free.fr>
16230 S:      Maintained
16231 F:      drivers/media/rc/ir-rcmm-decoder.c
16232
16233 RCUTORTURE TEST FRAMEWORK
16234 M:      "Paul E. McKenney" <paulmck@kernel.org>
16235 M:      Josh Triplett <josh@joshtriplett.org>
16236 R:      Steven Rostedt <rostedt@goodmis.org>
16237 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16238 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16239 L:      rcu@vger.kernel.org
16240 S:      Supported
16241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16242 F:      tools/testing/selftests/rcutorture
16243
16244 RDACM20 Camera Sensor
16245 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16246 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16247 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16248 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16249 L:      linux-media@vger.kernel.org
16250 S:      Maintained
16251 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16252 F:      drivers/media/i2c/max9271.c
16253 F:      drivers/media/i2c/max9271.h
16254 F:      drivers/media/i2c/rdacm20.c
16255
16256 RDACM21 Camera Sensor
16257 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16258 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16259 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16260 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16261 L:      linux-media@vger.kernel.org
16262 S:      Maintained
16263 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16264 F:      drivers/media/i2c/max9271.c
16265 F:      drivers/media/i2c/max9271.h
16266 F:      drivers/media/i2c/rdacm21.c
16267
16268 RDC R-321X SoC
16269 M:      Florian Fainelli <florian@openwrt.org>
16270 S:      Maintained
16271
16272 RDC R6040 FAST ETHERNET DRIVER
16273 M:      Florian Fainelli <f.fainelli@gmail.com>
16274 L:      netdev@vger.kernel.org
16275 S:      Maintained
16276 F:      drivers/net/ethernet/rdc/r6040.c
16277
16278 RDMAVT - RDMA verbs software
16279 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16280 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
16281 L:      linux-rdma@vger.kernel.org
16282 S:      Supported
16283 F:      drivers/infiniband/sw/rdmavt
16284
16285 RDS - RELIABLE DATAGRAM SOCKETS
16286 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
16287 L:      netdev@vger.kernel.org
16288 L:      linux-rdma@vger.kernel.org
16289 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
16290 S:      Supported
16291 W:      https://oss.oracle.com/projects/rds/
16292 F:      Documentation/networking/rds.rst
16293 F:      net/rds/
16294
16295 RDT - RESOURCE ALLOCATION
16296 M:      Fenghua Yu <fenghua.yu@intel.com>
16297 M:      Reinette Chatre <reinette.chatre@intel.com>
16298 L:      linux-kernel@vger.kernel.org
16299 S:      Supported
16300 F:      Documentation/x86/resctrl*
16301 F:      arch/x86/include/asm/resctrl.h
16302 F:      arch/x86/kernel/cpu/resctrl/
16303 F:      tools/testing/selftests/resctrl/
16304
16305 READ-COPY UPDATE (RCU)
16306 M:      "Paul E. McKenney" <paulmck@kernel.org>
16307 M:      Josh Triplett <josh@joshtriplett.org>
16308 R:      Steven Rostedt <rostedt@goodmis.org>
16309 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16310 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16311 R:      Joel Fernandes <joel@joelfernandes.org>
16312 L:      rcu@vger.kernel.org
16313 S:      Supported
16314 W:      http://www.rdrop.com/users/paulmck/RCU/
16315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16316 F:      Documentation/RCU/
16317 F:      include/linux/rcu*
16318 F:      kernel/rcu/
16319 X:      Documentation/RCU/torture.rst
16320 X:      include/linux/srcu*.h
16321 X:      kernel/rcu/srcu*.c
16322
16323 REAL TIME CLOCK (RTC) SUBSYSTEM
16324 M:      Alessandro Zummo <a.zummo@towertech.it>
16325 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
16326 L:      linux-rtc@vger.kernel.org
16327 S:      Maintained
16328 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
16329 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
16330 F:      Documentation/admin-guide/rtc.rst
16331 F:      Documentation/devicetree/bindings/rtc/
16332 F:      drivers/rtc/
16333 F:      include/linux/platform_data/rtc-*
16334 F:      include/linux/rtc.h
16335 F:      include/linux/rtc/
16336 F:      include/uapi/linux/rtc.h
16337 F:      tools/testing/selftests/rtc/
16338
16339 REALTEK AUDIO CODECS
16340 M:      Oder Chiou <oder_chiou@realtek.com>
16341 S:      Maintained
16342 F:      include/sound/rt*.h
16343 F:      sound/soc/codecs/rt*
16344
16345 REALTEK RTL83xx SMI DSA ROUTER CHIPS
16346 M:      Linus Walleij <linus.walleij@linaro.org>
16347 S:      Maintained
16348 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
16349 F:      drivers/net/dsa/realtek-smi*
16350 F:      drivers/net/dsa/rtl83*
16351
16352 REALTEK WIRELESS DRIVER (rtlwifi family)
16353 M:      Ping-Ke Shih <pkshih@realtek.com>
16354 L:      linux-wireless@vger.kernel.org
16355 S:      Maintained
16356 W:      https://wireless.wiki.kernel.org/
16357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16358 F:      drivers/net/wireless/realtek/rtlwifi/
16359
16360 REALTEK WIRELESS DRIVER (rtw88)
16361 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
16362 L:      linux-wireless@vger.kernel.org
16363 S:      Maintained
16364 F:      drivers/net/wireless/realtek/rtw88/
16365
16366 REALTEK WIRELESS DRIVER (rtw89)
16367 M:      Ping-Ke Shih <pkshih@realtek.com>
16368 L:      linux-wireless@vger.kernel.org
16369 S:      Maintained
16370 F:      drivers/net/wireless/realtek/rtw89/
16371
16372 REDPINE WIRELESS DRIVER
16373 M:      Amitkumar Karwar <amitkarwar@gmail.com>
16374 M:      Siva Rebbagondla <siva8118@gmail.com>
16375 L:      linux-wireless@vger.kernel.org
16376 S:      Maintained
16377 F:      drivers/net/wireless/rsi/
16378
16379 REGISTER MAP ABSTRACTION
16380 M:      Mark Brown <broonie@kernel.org>
16381 L:      linux-kernel@vger.kernel.org
16382 S:      Supported
16383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
16384 F:      Documentation/devicetree/bindings/regmap/
16385 F:      drivers/base/regmap/
16386 F:      include/linux/regmap.h
16387
16388 REISERFS FILE SYSTEM
16389 L:      reiserfs-devel@vger.kernel.org
16390 S:      Supported
16391 F:      fs/reiserfs/
16392
16393 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
16394 M:      Ohad Ben-Cohen <ohad@wizery.com>
16395 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16396 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16397 L:      linux-remoteproc@vger.kernel.org
16398 S:      Maintained
16399 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
16400 F:      Documentation/ABI/testing/sysfs-class-remoteproc
16401 F:      Documentation/devicetree/bindings/remoteproc/
16402 F:      Documentation/staging/remoteproc.rst
16403 F:      drivers/remoteproc/
16404 F:      include/linux/remoteproc.h
16405 F:      include/linux/remoteproc/
16406
16407 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
16408 M:      Ohad Ben-Cohen <ohad@wizery.com>
16409 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16410 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16411 L:      linux-remoteproc@vger.kernel.org
16412 S:      Maintained
16413 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
16414 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
16415 F:      Documentation/staging/rpmsg.rst
16416 F:      drivers/rpmsg/
16417 F:      include/linux/rpmsg.h
16418 F:      include/linux/rpmsg/
16419 F:      include/uapi/linux/rpmsg.h
16420 F:      samples/rpmsg/
16421
16422 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
16423 M:      Stephan Gerhold <stephan@gerhold.net>
16424 L:      netdev@vger.kernel.org
16425 L:      linux-remoteproc@vger.kernel.org
16426 S:      Maintained
16427 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
16428
16429 RENESAS CLOCK DRIVERS
16430 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16431 L:      linux-renesas-soc@vger.kernel.org
16432 S:      Supported
16433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
16434 F:      Documentation/devicetree/bindings/clock/renesas,*
16435 F:      drivers/clk/renesas/
16436
16437 RENESAS EMEV2 I2C DRIVER
16438 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16439 L:      linux-renesas-soc@vger.kernel.org
16440 S:      Supported
16441 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
16442 F:      drivers/i2c/busses/i2c-emev2.c
16443
16444 RENESAS ETHERNET DRIVERS
16445 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
16446 L:      netdev@vger.kernel.org
16447 L:      linux-renesas-soc@vger.kernel.org
16448 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
16449 F:      drivers/net/ethernet/renesas/
16450 F:      include/linux/sh_eth.h
16451
16452 RENESAS R-CAR GYROADC DRIVER
16453 M:      Marek Vasut <marek.vasut@gmail.com>
16454 L:      linux-iio@vger.kernel.org
16455 S:      Supported
16456 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
16457 F:      drivers/iio/adc/rcar-gyroadc.c
16458
16459 RENESAS R-CAR I2C DRIVERS
16460 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16461 L:      linux-renesas-soc@vger.kernel.org
16462 S:      Supported
16463 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
16464 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
16465 F:      drivers/i2c/busses/i2c-rcar.c
16466 F:      drivers/i2c/busses/i2c-sh_mobile.c
16467
16468 RENESAS R-CAR THERMAL DRIVERS
16469 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
16470 L:      linux-renesas-soc@vger.kernel.org
16471 S:      Supported
16472 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
16473 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
16474 F:      drivers/thermal/rcar_gen3_thermal.c
16475 F:      drivers/thermal/rcar_thermal.c
16476
16477 RENESAS RIIC DRIVER
16478 M:      Chris Brandt <chris.brandt@renesas.com>
16479 L:      linux-renesas-soc@vger.kernel.org
16480 S:      Supported
16481 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
16482 F:      drivers/i2c/busses/i2c-riic.c
16483
16484 RENESAS USB PHY DRIVER
16485 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16486 L:      linux-renesas-soc@vger.kernel.org
16487 S:      Maintained
16488 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
16489
16490 RENESAS RZ/G2L A/D DRIVER
16491 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
16492 L:      linux-iio@vger.kernel.org
16493 L:      linux-renesas-soc@vger.kernel.org
16494 S:      Supported
16495 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
16496 F:      drivers/iio/adc/rzg2l_adc.c
16497
16498 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
16499 M:      Miquel Raynal <miquel.raynal@bootlin.com>
16500 L:      linux-mtd@lists.infradead.org
16501 L:      linux-renesas-soc@vger.kernel.org
16502 S:      Maintained
16503 F:      Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
16504 F:      drivers/mtd/nand/raw/renesas-nand-controller.c
16505
16506 RESET CONTROLLER FRAMEWORK
16507 M:      Philipp Zabel <p.zabel@pengutronix.de>
16508 S:      Maintained
16509 T:      git git://git.pengutronix.de/git/pza/linux
16510 F:      Documentation/devicetree/bindings/reset/
16511 F:      Documentation/driver-api/reset.rst
16512 F:      drivers/reset/
16513 F:      include/dt-bindings/reset/
16514 F:      include/linux/reset-controller.h
16515 F:      include/linux/reset.h
16516 F:      include/linux/reset/
16517 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
16518
16519 RESTARTABLE SEQUENCES SUPPORT
16520 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16521 M:      Peter Zijlstra <peterz@infradead.org>
16522 M:      "Paul E. McKenney" <paulmck@kernel.org>
16523 M:      Boqun Feng <boqun.feng@gmail.com>
16524 L:      linux-kernel@vger.kernel.org
16525 S:      Supported
16526 F:      include/trace/events/rseq.h
16527 F:      include/uapi/linux/rseq.h
16528 F:      kernel/rseq.c
16529 F:      tools/testing/selftests/rseq/
16530
16531 RFKILL
16532 M:      Johannes Berg <johannes@sipsolutions.net>
16533 L:      linux-wireless@vger.kernel.org
16534 S:      Maintained
16535 W:      https://wireless.wiki.kernel.org/
16536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
16537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
16538 F:      Documentation/ABI/stable/sysfs-class-rfkill
16539 F:      Documentation/driver-api/rfkill.rst
16540 F:      include/linux/rfkill.h
16541 F:      include/uapi/linux/rfkill.h
16542 F:      net/rfkill/
16543
16544 RHASHTABLE
16545 M:      Thomas Graf <tgraf@suug.ch>
16546 M:      Herbert Xu <herbert@gondor.apana.org.au>
16547 L:      netdev@vger.kernel.org
16548 S:      Maintained
16549 F:      include/linux/rhashtable-types.h
16550 F:      include/linux/rhashtable.h
16551 F:      lib/rhashtable.c
16552 F:      lib/test_rhashtable.c
16553
16554 RICOH R5C592 MEMORYSTICK DRIVER
16555 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16556 S:      Maintained
16557 F:      drivers/memstick/host/r592.*
16558
16559 RICOH SMARTMEDIA/XD DRIVER
16560 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16561 S:      Maintained
16562 F:      drivers/mtd/nand/raw/r852.c
16563 F:      drivers/mtd/nand/raw/r852.h
16564
16565 RISC-V ARCHITECTURE
16566 M:      Paul Walmsley <paul.walmsley@sifive.com>
16567 M:      Palmer Dabbelt <palmer@dabbelt.com>
16568 M:      Albert Ou <aou@eecs.berkeley.edu>
16569 L:      linux-riscv@lists.infradead.org
16570 S:      Supported
16571 P:      Documentation/riscv/patch-acceptance.rst
16572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
16573 F:      arch/riscv/
16574 N:      riscv
16575 K:      riscv
16576
16577 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
16578 M:      Lewis Hanly <lewis.hanly@microchip.com>
16579 L:      linux-riscv@lists.infradead.org
16580 S:      Supported
16581 F:      drivers/mailbox/mailbox-mpfs.c
16582 F:      drivers/soc/microchip/
16583 F:      include/soc/microchip/mpfs.h
16584
16585 RNBD BLOCK DRIVERS
16586 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16587 M:      Jack Wang <jinpu.wang@ionos.com>
16588 L:      linux-block@vger.kernel.org
16589 S:      Maintained
16590 F:      drivers/block/rnbd/
16591
16592 ROCCAT DRIVERS
16593 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
16594 S:      Maintained
16595 W:      http://sourceforge.net/projects/roccat/
16596 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
16597 F:      drivers/hid/hid-roccat*
16598 F:      include/linux/hid-roccat*
16599
16600 ROCKCHIP I2S TDM DRIVER
16601 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
16602 L:      linux-rockchip@lists.infradead.org
16603 S:      Maintained
16604 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
16605 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
16606
16607 ROCKCHIP ISP V1 DRIVER
16608 M:      Helen Koike <helen.koike@collabora.com>
16609 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
16610 L:      linux-media@vger.kernel.org
16611 L:      linux-rockchip@lists.infradead.org
16612 S:      Maintained
16613 F:      Documentation/admin-guide/media/rkisp1.rst
16614 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
16615 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
16616 F:      drivers/media/platform/rockchip/rkisp1
16617 F:      include/uapi/linux/rkisp1-config.h
16618
16619 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
16620 M:      Jacob Chen <jacob-chen@iotwrt.com>
16621 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16622 L:      linux-media@vger.kernel.org
16623 L:      linux-rockchip@lists.infradead.org
16624 S:      Maintained
16625 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
16626 F:      drivers/media/platform/rockchip/rga/
16627
16628 ROCKCHIP VIDEO DECODER DRIVER
16629 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16630 L:      linux-media@vger.kernel.org
16631 L:      linux-rockchip@lists.infradead.org
16632 S:      Maintained
16633 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
16634 F:      drivers/staging/media/rkvdec/
16635
16636 ROCKER DRIVER
16637 M:      Jiri Pirko <jiri@resnulli.us>
16638 L:      netdev@vger.kernel.org
16639 S:      Supported
16640 F:      drivers/net/ethernet/rocker/
16641
16642 ROCKETPORT EXPRESS/INFINITY DRIVER
16643 M:      Kevin Cernekee <cernekee@gmail.com>
16644 L:      linux-serial@vger.kernel.org
16645 S:      Odd Fixes
16646 F:      drivers/tty/serial/rp2.*
16647
16648 ROHM BD99954 CHARGER IC
16649 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16650 L:      linux-power@fi.rohmeurope.com
16651 S:      Supported
16652 F:      drivers/power/supply/bd99954-charger.c
16653 F:      drivers/power/supply/bd99954-charger.h
16654
16655 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
16656 M:      Tomasz Duszynski <tduszyns@gmail.com>
16657 S:      Maintained
16658 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
16659 F:      drivers/iio/light/bh1750.c
16660
16661 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
16662 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
16663 L:      linux-kernel@vger.kernel.org
16664 L:      linux-renesas-soc@vger.kernel.org
16665 S:      Supported
16666 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
16667 F:      drivers/gpio/gpio-bd9571mwv.c
16668 F:      drivers/mfd/bd9571mwv.c
16669 F:      drivers/regulator/bd9571mwv-regulator.c
16670 F:      include/linux/mfd/bd9571mwv.h
16671
16672 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
16673 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16674 L:      linux-power@fi.rohmeurope.com
16675 S:      Supported
16676 F:      drivers/clk/clk-bd718x7.c
16677 F:      drivers/gpio/gpio-bd71815.c
16678 F:      drivers/gpio/gpio-bd71828.c
16679 F:      drivers/mfd/rohm-bd71828.c
16680 F:      drivers/mfd/rohm-bd718x7.c
16681 F:      drivers/mfd/rohm-bd9576.c
16682 F:      drivers/regulator/bd71815-regulator.c
16683 F:      drivers/regulator/bd71828-regulator.c
16684 F:      drivers/regulator/bd718x7-regulator.c
16685 F:      drivers/regulator/bd9576-regulator.c
16686 F:      drivers/regulator/rohm-regulator.c
16687 F:      drivers/rtc/rtc-bd70528.c
16688 F:      drivers/watchdog/bd9576_wdt.c
16689 F:      include/linux/mfd/rohm-bd71815.h
16690 F:      include/linux/mfd/rohm-bd71828.h
16691 F:      include/linux/mfd/rohm-bd718x7.h
16692 F:      include/linux/mfd/rohm-bd957x.h
16693 F:      include/linux/mfd/rohm-generic.h
16694 F:      include/linux/mfd/rohm-shared.h
16695
16696 ROSE NETWORK LAYER
16697 M:      Ralf Baechle <ralf@linux-mips.org>
16698 L:      linux-hams@vger.kernel.org
16699 S:      Maintained
16700 W:      http://www.linux-ax25.org/
16701 F:      include/net/rose.h
16702 F:      include/uapi/linux/rose.h
16703 F:      net/rose/
16704
16705 ROTATION DRIVER FOR ALLWINNER A83T
16706 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
16707 L:      linux-media@vger.kernel.org
16708 S:      Maintained
16709 T:      git git://linuxtv.org/media_tree.git
16710 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
16711 F:      drivers/media/platform/sunxi/sun8i-rotate/
16712
16713 RPMSG TTY DRIVER
16714 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
16715 L:      linux-remoteproc@vger.kernel.org
16716 S:      Maintained
16717 F:      drivers/tty/rpmsg_tty.c
16718
16719 RTL2830 MEDIA DRIVER
16720 M:      Antti Palosaari <crope@iki.fi>
16721 L:      linux-media@vger.kernel.org
16722 S:      Maintained
16723 W:      https://linuxtv.org
16724 W:      http://palosaari.fi/linux/
16725 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16726 T:      git git://linuxtv.org/anttip/media_tree.git
16727 F:      drivers/media/dvb-frontends/rtl2830*
16728
16729 RTL2832 MEDIA DRIVER
16730 M:      Antti Palosaari <crope@iki.fi>
16731 L:      linux-media@vger.kernel.org
16732 S:      Maintained
16733 W:      https://linuxtv.org
16734 W:      http://palosaari.fi/linux/
16735 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16736 T:      git git://linuxtv.org/anttip/media_tree.git
16737 F:      drivers/media/dvb-frontends/rtl2832*
16738
16739 RTL2832_SDR MEDIA DRIVER
16740 M:      Antti Palosaari <crope@iki.fi>
16741 L:      linux-media@vger.kernel.org
16742 S:      Maintained
16743 W:      https://linuxtv.org
16744 W:      http://palosaari.fi/linux/
16745 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16746 T:      git git://linuxtv.org/anttip/media_tree.git
16747 F:      drivers/media/dvb-frontends/rtl2832_sdr*
16748
16749 RTL8180 WIRELESS DRIVER
16750 L:      linux-wireless@vger.kernel.org
16751 S:      Orphan
16752 W:      https://wireless.wiki.kernel.org/
16753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16754 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
16755
16756 RTL8187 WIRELESS DRIVER
16757 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
16758 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
16759 M:      Larry Finger <Larry.Finger@lwfinger.net>
16760 L:      linux-wireless@vger.kernel.org
16761 S:      Maintained
16762 W:      https://wireless.wiki.kernel.org/
16763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16764 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
16765
16766 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
16767 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
16768 L:      linux-wireless@vger.kernel.org
16769 S:      Maintained
16770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
16771 F:      drivers/net/wireless/realtek/rtl8xxxu/
16772
16773 RTRS TRANSPORT DRIVERS
16774 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16775 M:      Jack Wang <jinpu.wang@ionos.com>
16776 L:      linux-rdma@vger.kernel.org
16777 S:      Maintained
16778 F:      drivers/infiniband/ulp/rtrs/
16779
16780 RXRPC SOCKETS (AF_RXRPC)
16781 M:      David Howells <dhowells@redhat.com>
16782 M:      Marc Dionne <marc.dionne@auristor.com>
16783 L:      linux-afs@lists.infradead.org
16784 S:      Supported
16785 W:      https://www.infradead.org/~dhowells/kafs/
16786 F:      Documentation/networking/rxrpc.rst
16787 F:      include/keys/rxrpc-type.h
16788 F:      include/net/af_rxrpc.h
16789 F:      include/trace/events/rxrpc.h
16790 F:      include/uapi/linux/rxrpc.h
16791 F:      net/rxrpc/
16792
16793 S3 SAVAGE FRAMEBUFFER DRIVER
16794 M:      Antonino Daplas <adaplas@gmail.com>
16795 L:      linux-fbdev@vger.kernel.org
16796 S:      Maintained
16797 F:      drivers/video/fbdev/savage/
16798
16799 S390
16800 M:      Heiko Carstens <hca@linux.ibm.com>
16801 M:      Vasily Gorbik <gor@linux.ibm.com>
16802 M:      Christian Borntraeger <borntraeger@linux.ibm.com>
16803 R:      Alexander Gordeev <agordeev@linux.ibm.com>
16804 L:      linux-s390@vger.kernel.org
16805 S:      Supported
16806 W:      http://www.ibm.com/developerworks/linux/linux390/
16807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
16808 F:      Documentation/driver-api/s390-drivers.rst
16809 F:      Documentation/s390/
16810 F:      arch/s390/
16811 F:      drivers/s390/
16812
16813 S390 COMMON I/O LAYER
16814 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
16815 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
16816 L:      linux-s390@vger.kernel.org
16817 S:      Supported
16818 W:      http://www.ibm.com/developerworks/linux/linux390/
16819 F:      drivers/s390/cio/
16820
16821 S390 DASD DRIVER
16822 M:      Stefan Haberland <sth@linux.ibm.com>
16823 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
16824 L:      linux-s390@vger.kernel.org
16825 S:      Supported
16826 W:      http://www.ibm.com/developerworks/linux/linux390/
16827 F:      block/partitions/ibm.c
16828 F:      drivers/s390/block/dasd*
16829 F:      include/linux/dasd_mod.h
16830
16831 S390 IOMMU (PCI)
16832 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16833 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16834 L:      linux-s390@vger.kernel.org
16835 S:      Supported
16836 W:      http://www.ibm.com/developerworks/linux/linux390/
16837 F:      drivers/iommu/s390-iommu.c
16838
16839 S390 IUCV NETWORK LAYER
16840 M:      Alexandra Winter <wintera@linux.ibm.com>
16841 M:      Wenjia Zhang <wenjia@linux.ibm.com>
16842 L:      linux-s390@vger.kernel.org
16843 L:      netdev@vger.kernel.org
16844 S:      Supported
16845 W:      http://www.ibm.com/developerworks/linux/linux390/
16846 F:      drivers/s390/net/*iucv*
16847 F:      include/net/iucv/
16848 F:      net/iucv/
16849
16850 S390 NETWORK DRIVERS
16851 M:      Alexandra Winter <wintera@linux.ibm.com>
16852 M:      Wenjia Zhang <wenjia@linux.ibm.com>
16853 L:      linux-s390@vger.kernel.org
16854 L:      netdev@vger.kernel.org
16855 S:      Supported
16856 W:      http://www.ibm.com/developerworks/linux/linux390/
16857 F:      drivers/s390/net/
16858
16859 S390 PCI SUBSYSTEM
16860 M:      Niklas Schnelle <schnelle@linux.ibm.com>
16861 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16862 L:      linux-s390@vger.kernel.org
16863 S:      Supported
16864 W:      http://www.ibm.com/developerworks/linux/linux390/
16865 F:      arch/s390/pci/
16866 F:      drivers/pci/hotplug/s390_pci_hpc.c
16867 F:      Documentation/s390/pci.rst
16868
16869 S390 VFIO AP DRIVER
16870 M:      Tony Krowiak <akrowiak@linux.ibm.com>
16871 M:      Halil Pasic <pasic@linux.ibm.com>
16872 M:      Jason Herne <jjherne@linux.ibm.com>
16873 L:      linux-s390@vger.kernel.org
16874 S:      Supported
16875 W:      http://www.ibm.com/developerworks/linux/linux390/
16876 F:      Documentation/s390/vfio-ap.rst
16877 F:      drivers/s390/crypto/vfio_ap_drv.c
16878 F:      drivers/s390/crypto/vfio_ap_ops.c
16879 F:      drivers/s390/crypto/vfio_ap_private.h
16880
16881 S390 VFIO-CCW DRIVER
16882 M:      Eric Farman <farman@linux.ibm.com>
16883 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16884 R:      Halil Pasic <pasic@linux.ibm.com>
16885 L:      linux-s390@vger.kernel.org
16886 L:      kvm@vger.kernel.org
16887 S:      Supported
16888 F:      Documentation/s390/vfio-ccw.rst
16889 F:      drivers/s390/cio/vfio_ccw*
16890 F:      include/uapi/linux/vfio_ccw.h
16891
16892 S390 VFIO-PCI DRIVER
16893 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16894 M:      Eric Farman <farman@linux.ibm.com>
16895 L:      linux-s390@vger.kernel.org
16896 L:      kvm@vger.kernel.org
16897 S:      Supported
16898 F:      drivers/vfio/pci/vfio_pci_zdev.c
16899 F:      include/uapi/linux/vfio_zdev.h
16900
16901 S390 ZCRYPT DRIVER
16902 M:      Harald Freudenberger <freude@linux.ibm.com>
16903 L:      linux-s390@vger.kernel.org
16904 S:      Supported
16905 W:      http://www.ibm.com/developerworks/linux/linux390/
16906 F:      drivers/s390/crypto/
16907
16908 S390 ZFCP DRIVER
16909 M:      Steffen Maier <maier@linux.ibm.com>
16910 M:      Benjamin Block <bblock@linux.ibm.com>
16911 L:      linux-s390@vger.kernel.org
16912 S:      Supported
16913 W:      http://www.ibm.com/developerworks/linux/linux390/
16914 F:      drivers/s390/scsi/zfcp_*
16915
16916 S3C ADC BATTERY DRIVER
16917 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16918 L:      linux-samsung-soc@vger.kernel.org
16919 S:      Odd Fixes
16920 F:      drivers/power/supply/s3c_adc_battery.c
16921 F:      include/linux/s3c_adc_battery.h
16922
16923 S3C24XX SD/MMC Driver
16924 M:      Ben Dooks <ben-linux@fluff.org>
16925 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16926 S:      Supported
16927 F:      drivers/mmc/host/s3cmci.*
16928
16929 SAA6588 RDS RECEIVER DRIVER
16930 M:      Hans Verkuil <hverkuil@xs4all.nl>
16931 L:      linux-media@vger.kernel.org
16932 S:      Odd Fixes
16933 W:      https://linuxtv.org
16934 T:      git git://linuxtv.org/media_tree.git
16935 F:      drivers/media/i2c/saa6588*
16936
16937 SAA7134 VIDEO4LINUX DRIVER
16938 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16939 L:      linux-media@vger.kernel.org
16940 S:      Odd fixes
16941 W:      https://linuxtv.org
16942 T:      git git://linuxtv.org/media_tree.git
16943 F:      Documentation/driver-api/media/drivers/saa7134*
16944 F:      drivers/media/pci/saa7134/
16945
16946 SAA7146 VIDEO4LINUX-2 DRIVER
16947 M:      Hans Verkuil <hverkuil@xs4all.nl>
16948 L:      linux-media@vger.kernel.org
16949 S:      Maintained
16950 T:      git git://linuxtv.org/media_tree.git
16951 F:      drivers/media/common/saa7146/
16952 F:      drivers/media/pci/saa7146/
16953 F:      include/media/drv-intf/saa7146*
16954
16955 SAFESETID SECURITY MODULE
16956 M:      Micah Morton <mortonm@chromium.org>
16957 S:      Supported
16958 F:      Documentation/admin-guide/LSM/SafeSetID.rst
16959 F:      security/safesetid/
16960
16961 SAMSUNG AUDIO (ASoC) DRIVERS
16962 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16963 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16964 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16965 S:      Supported
16966 F:      Documentation/devicetree/bindings/sound/samsung*
16967 F:      sound/soc/samsung/
16968
16969 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
16970 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16971 L:      linux-crypto@vger.kernel.org
16972 L:      linux-samsung-soc@vger.kernel.org
16973 S:      Maintained
16974 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
16975 F:      drivers/crypto/exynos-rng.c
16976
16977 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
16978 M:      Łukasz Stelmach <l.stelmach@samsung.com>
16979 L:      linux-samsung-soc@vger.kernel.org
16980 S:      Maintained
16981 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
16982 F:      drivers/char/hw_random/exynos-trng.c
16983
16984 SAMSUNG FRAMEBUFFER DRIVER
16985 M:      Jingoo Han <jingoohan1@gmail.com>
16986 L:      linux-fbdev@vger.kernel.org
16987 S:      Maintained
16988 F:      drivers/video/fbdev/s3c-fb.c
16989
16990 SAMSUNG INTERCONNECT DRIVERS
16991 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16992 M:      Artur Świgoń <a.swigon@samsung.com>
16993 L:      linux-pm@vger.kernel.org
16994 L:      linux-samsung-soc@vger.kernel.org
16995 S:      Supported
16996 F:      drivers/interconnect/samsung/
16997
16998 SAMSUNG LAPTOP DRIVER
16999 M:      Corentin Chary <corentin.chary@gmail.com>
17000 L:      platform-driver-x86@vger.kernel.org
17001 S:      Maintained
17002 F:      drivers/platform/x86/samsung-laptop.c
17003
17004 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
17005 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
17006 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
17007 L:      linux-kernel@vger.kernel.org
17008 L:      linux-samsung-soc@vger.kernel.org
17009 S:      Supported
17010 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
17011 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
17012 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
17013 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
17014 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
17015 F:      drivers/clk/clk-s2mps11.c
17016 F:      drivers/mfd/sec*.c
17017 F:      drivers/regulator/s2m*.c
17018 F:      drivers/regulator/s5m*.c
17019 F:      drivers/rtc/rtc-s5m.c
17020 F:      include/linux/mfd/samsung/
17021
17022 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
17023 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
17024 L:      linux-media@vger.kernel.org
17025 L:      linux-samsung-soc@vger.kernel.org
17026 S:      Maintained
17027 F:      drivers/media/platform/s3c-camif/
17028 F:      include/media/drv-intf/s3c_camif.h
17029
17030 SAMSUNG S3FWRN5 NFC DRIVER
17031 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
17032 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
17033 L:      linux-nfc@lists.01.org (subscribers-only)
17034 S:      Maintained
17035 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
17036 F:      drivers/nfc/s3fwrn5
17037
17038 SAMSUNG S5C73M3 CAMERA DRIVER
17039 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17040 M:      Andrzej Hajda <andrzej.hajda@intel.com>
17041 L:      linux-media@vger.kernel.org
17042 S:      Supported
17043 F:      drivers/media/i2c/s5c73m3/*
17044
17045 SAMSUNG S5K5BAF CAMERA DRIVER
17046 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17047 M:      Andrzej Hajda <andrzej.hajda@intel.com>
17048 L:      linux-media@vger.kernel.org
17049 S:      Supported
17050 F:      drivers/media/i2c/s5k5baf.c
17051
17052 SAMSUNG S5P Security SubSystem (SSS) DRIVER
17053 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
17054 M:      Vladimir Zapolskiy <vz@mleia.com>
17055 L:      linux-crypto@vger.kernel.org
17056 L:      linux-samsung-soc@vger.kernel.org
17057 S:      Maintained
17058 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
17059 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
17060 F:      drivers/crypto/s5p-sss.c
17061
17062 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
17063 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17064 L:      linux-media@vger.kernel.org
17065 S:      Supported
17066 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
17067 F:      drivers/media/platform/exynos4-is/
17068
17069 SAMSUNG SOC CLOCK DRIVERS
17070 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17071 M:      Tomasz Figa <tomasz.figa@gmail.com>
17072 M:      Chanwoo Choi <cw00.choi@samsung.com>
17073 L:      linux-samsung-soc@vger.kernel.org
17074 S:      Supported
17075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
17076 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
17077 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
17078 F:      drivers/clk/samsung/
17079 F:      include/dt-bindings/clock/exynos*.h
17080 F:      include/dt-bindings/clock/s3c*.h
17081 F:      include/dt-bindings/clock/s5p*.h
17082 F:      include/dt-bindings/clock/samsung,*.h
17083 F:      include/linux/clk/samsung.h
17084 F:      include/linux/platform_data/clk-s3c2410.h
17085
17086 SAMSUNG SPI DRIVERS
17087 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
17088 M:      Andi Shyti <andi@etezian.org>
17089 L:      linux-spi@vger.kernel.org
17090 L:      linux-samsung-soc@vger.kernel.org
17091 S:      Maintained
17092 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
17093 F:      drivers/spi/spi-s3c*
17094 F:      include/linux/platform_data/spi-s3c64xx.h
17095 F:      include/linux/spi/s3c24xx-fiq.h
17096
17097 SAMSUNG SXGBE DRIVERS
17098 M:      Byungho An <bh74.an@samsung.com>
17099 L:      netdev@vger.kernel.org
17100 S:      Supported
17101 F:      drivers/net/ethernet/samsung/sxgbe/
17102
17103 SAMSUNG THERMAL DRIVER
17104 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
17105 L:      linux-pm@vger.kernel.org
17106 L:      linux-samsung-soc@vger.kernel.org
17107 S:      Supported
17108 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
17109 F:      drivers/thermal/samsung/
17110
17111 SAMSUNG USB2 PHY DRIVER
17112 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17113 L:      linux-kernel@vger.kernel.org
17114 S:      Supported
17115 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
17116 F:      Documentation/driver-api/phy/samsung-usb2.rst
17117 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
17118 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
17119 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
17120 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
17121 F:      drivers/phy/samsung/phy-samsung-usb2.c
17122 F:      drivers/phy/samsung/phy-samsung-usb2.h
17123
17124 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
17125 M:      Paul Barker <paul.barker@sancloud.com>
17126 R:      Marc Murphy <marc.murphy@sancloud.com>
17127 S:      Supported
17128 F:      arch/arm/boot/dts/am335x-sancloud*
17129
17130 SC1200 WDT DRIVER
17131 M:      Zwane Mwaikambo <zwanem@gmail.com>
17132 S:      Maintained
17133 F:      drivers/watchdog/sc1200wdt.c
17134
17135 SCHEDULER
17136 M:      Ingo Molnar <mingo@redhat.com>
17137 M:      Peter Zijlstra <peterz@infradead.org>
17138 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
17139 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
17140 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
17141 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
17142 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
17143 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
17144 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
17145 L:      linux-kernel@vger.kernel.org
17146 S:      Maintained
17147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
17148 F:      include/linux/preempt.h
17149 F:      include/linux/sched.h
17150 F:      include/linux/wait.h
17151 F:      include/uapi/linux/sched.h
17152 F:      kernel/sched/
17153
17154 SCR24X CHIP CARD INTERFACE DRIVER
17155 M:      Lubomir Rintel <lkundrak@v3.sk>
17156 S:      Supported
17157 F:      drivers/char/pcmcia/scr24x_cs.c
17158
17159 SCSI RDMA PROTOCOL (SRP) INITIATOR
17160 M:      Bart Van Assche <bvanassche@acm.org>
17161 L:      linux-rdma@vger.kernel.org
17162 S:      Supported
17163 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17164 F:      drivers/infiniband/ulp/srp/
17165 F:      include/scsi/srp.h
17166
17167 SCSI RDMA PROTOCOL (SRP) TARGET
17168 M:      Bart Van Assche <bvanassche@acm.org>
17169 L:      linux-rdma@vger.kernel.org
17170 L:      target-devel@vger.kernel.org
17171 S:      Supported
17172 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17173 F:      drivers/infiniband/ulp/srpt/
17174
17175 SCSI SG DRIVER
17176 M:      Doug Gilbert <dgilbert@interlog.com>
17177 L:      linux-scsi@vger.kernel.org
17178 S:      Maintained
17179 W:      http://sg.danny.cz/sg
17180 F:      Documentation/scsi/scsi-generic.rst
17181 F:      drivers/scsi/sg.c
17182 F:      include/scsi/sg.h
17183
17184 SCSI SUBSYSTEM
17185 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
17186 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
17187 L:      linux-scsi@vger.kernel.org
17188 S:      Maintained
17189 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
17190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
17191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
17192 F:      Documentation/devicetree/bindings/scsi/
17193 F:      drivers/scsi/
17194 F:      include/scsi/
17195
17196 SCSI TAPE DRIVER
17197 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
17198 L:      linux-scsi@vger.kernel.org
17199 S:      Maintained
17200 F:      Documentation/scsi/st.rst
17201 F:      drivers/scsi/st.*
17202 F:      drivers/scsi/st_*.h
17203
17204 SCSI TARGET CORE USER DRIVER
17205 M:      Bodo Stroesser <bostroesser@gmail.com>
17206 L:      linux-scsi@vger.kernel.org
17207 L:      target-devel@vger.kernel.org
17208 S:      Supported
17209 F:      Documentation/target/tcmu-design.rst
17210 F:      drivers/target/target_core_user.c
17211 F:      include/uapi/linux/target_core_user.h
17212
17213 SCSI TARGET SUBSYSTEM
17214 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
17215 L:      linux-scsi@vger.kernel.org
17216 L:      target-devel@vger.kernel.org
17217 S:      Supported
17218 W:      http://www.linux-iscsi.org
17219 Q:      https://patchwork.kernel.org/project/target-devel/list/
17220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
17221 F:      Documentation/target/
17222 F:      drivers/target/
17223 F:      include/target/
17224
17225 SCTP PROTOCOL
17226 M:      Vlad Yasevich <vyasevich@gmail.com>
17227 M:      Neil Horman <nhorman@tuxdriver.com>
17228 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
17229 L:      linux-sctp@vger.kernel.org
17230 S:      Maintained
17231 W:      http://lksctp.sourceforge.net
17232 F:      Documentation/networking/sctp.rst
17233 F:      include/linux/sctp.h
17234 F:      include/net/sctp/
17235 F:      include/uapi/linux/sctp.h
17236 F:      net/sctp/
17237
17238 SCx200 CPU SUPPORT
17239 M:      Jim Cromie <jim.cromie@gmail.com>
17240 S:      Odd Fixes
17241 F:      Documentation/i2c/busses/scx200_acb.rst
17242 F:      arch/x86/platform/scx200/
17243 F:      drivers/i2c/busses/scx200*
17244 F:      drivers/mtd/maps/scx200_docflash.c
17245 F:      drivers/watchdog/scx200_wdt.c
17246 F:      include/linux/scx200.h
17247
17248 SCx200 GPIO DRIVER
17249 M:      Jim Cromie <jim.cromie@gmail.com>
17250 S:      Maintained
17251 F:      drivers/char/scx200_gpio.c
17252 F:      include/linux/scx200_gpio.h
17253
17254 SCx200 HRT CLOCKSOURCE DRIVER
17255 M:      Jim Cromie <jim.cromie@gmail.com>
17256 S:      Maintained
17257 F:      drivers/clocksource/scx200_hrt.c
17258
17259 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
17260 M:      Sascha Sommer <saschasommer@freenet.de>
17261 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
17262 S:      Maintained
17263 F:      drivers/mmc/host/sdricoh_cs.c
17264
17265 SECO BOARDS CEC DRIVER
17266 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
17267 S:      Maintained
17268 F:      drivers/media/cec/platform/seco/seco-cec.c
17269 F:      drivers/media/cec/platform/seco/seco-cec.h
17270
17271 SECURE COMPUTING
17272 M:      Kees Cook <keescook@chromium.org>
17273 R:      Andy Lutomirski <luto@amacapital.net>
17274 R:      Will Drewry <wad@chromium.org>
17275 S:      Supported
17276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
17277 F:      Documentation/userspace-api/seccomp_filter.rst
17278 F:      include/linux/seccomp.h
17279 F:      include/uapi/linux/seccomp.h
17280 F:      kernel/seccomp.c
17281 F:      tools/testing/selftests/kselftest_harness.h
17282 F:      tools/testing/selftests/seccomp/*
17283 K:      \bsecure_computing
17284 K:      \bTIF_SECCOMP\b
17285
17286 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
17287 M:      Al Cooper <alcooperx@gmail.com>
17288 L:      linux-mmc@vger.kernel.org
17289 L:      bcm-kernel-feedback-list@broadcom.com
17290 S:      Maintained
17291 F:      drivers/mmc/host/sdhci-brcmstb*
17292
17293 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
17294 M:      Adrian Hunter <adrian.hunter@intel.com>
17295 L:      linux-mmc@vger.kernel.org
17296 S:      Maintained
17297 F:      drivers/mmc/host/sdhci*
17298
17299 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
17300 M:      Eugen Hristev <eugen.hristev@microchip.com>
17301 L:      linux-mmc@vger.kernel.org
17302 S:      Supported
17303 F:      drivers/mmc/host/sdhci-of-at91.c
17304
17305 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
17306 M:      Ben Dooks <ben-linux@fluff.org>
17307 M:      Jaehoon Chung <jh80.chung@samsung.com>
17308 L:      linux-mmc@vger.kernel.org
17309 S:      Maintained
17310 F:      drivers/mmc/host/sdhci-s3c*
17311
17312 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
17313 M:      Viresh Kumar <vireshk@kernel.org>
17314 L:      linux-mmc@vger.kernel.org
17315 S:      Maintained
17316 F:      drivers/mmc/host/sdhci-spear.c
17317
17318 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
17319 M:      Kishon Vijay Abraham I <kishon@ti.com>
17320 L:      linux-mmc@vger.kernel.org
17321 S:      Maintained
17322 F:      drivers/mmc/host/sdhci-omap.c
17323
17324 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
17325 M:      Haibo Chen <haibo.chen@nxp.com>
17326 L:      linux-imx@nxp.com
17327 L:      linux-mmc@vger.kernel.org
17328 S:      Maintained
17329 F:      drivers/mmc/host/sdhci-esdhc-imx.c
17330
17331 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
17332 M:      Jonathan Derrick <jonathan.derrick@intel.com>
17333 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
17334 L:      linux-block@vger.kernel.org
17335 S:      Supported
17336 F:      block/opal_proto.h
17337 F:      block/sed*
17338 F:      include/linux/sed*
17339 F:      include/uapi/linux/sed*
17340
17341 SECURITY CONTACT
17342 M:      Security Officers <security@kernel.org>
17343 S:      Supported
17344 F:      Documentation/admin-guide/security-bugs.rst
17345
17346 SECURITY SUBSYSTEM
17347 M:      James Morris <jmorris@namei.org>
17348 M:      "Serge E. Hallyn" <serge@hallyn.com>
17349 L:      linux-security-module@vger.kernel.org (suggested Cc:)
17350 S:      Supported
17351 W:      http://kernsec.org/
17352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
17353 F:      security/
17354 X:      security/selinux/
17355
17356 SELINUX SECURITY MODULE
17357 M:      Paul Moore <paul@paul-moore.com>
17358 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
17359 M:      Eric Paris <eparis@parisplace.org>
17360 L:      selinux@vger.kernel.org
17361 S:      Supported
17362 W:      https://selinuxproject.org
17363 W:      https://github.com/SELinuxProject
17364 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
17365 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
17366 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
17367 F:      Documentation/admin-guide/LSM/SELinux.rst
17368 F:      include/trace/events/avc.h
17369 F:      include/uapi/linux/selinux_netlink.h
17370 F:      scripts/selinux/
17371 F:      security/selinux/
17372
17373 SENSABLE PHANTOM
17374 M:      Jiri Slaby <jirislaby@kernel.org>
17375 S:      Maintained
17376 F:      drivers/misc/phantom.c
17377 F:      include/uapi/linux/phantom.h
17378
17379 SENSEAIR SUNRISE 006-0-0007
17380 M:      Jacopo Mondi <jacopo@jmondi.org>
17381 S:      Maintained
17382 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
17383 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
17384 F:      drivers/iio/chemical/sunrise_co2.c
17385
17386 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
17387 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
17388 S:      Maintained
17389 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
17390 F:      drivers/iio/chemical/scd30.h
17391 F:      drivers/iio/chemical/scd30_core.c
17392 F:      drivers/iio/chemical/scd30_i2c.c
17393 F:      drivers/iio/chemical/scd30_serial.c
17394
17395 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
17396 M:      Roan van Dijk <roan@protonic.nl>
17397 S:      Maintained
17398 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
17399 F:      drivers/iio/chemical/scd4x.c
17400
17401 SENSIRION SGP40 GAS SENSOR DRIVER
17402 M:      Andreas Klinger <ak@it-klinger.de>
17403 S:      Maintained
17404 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
17405 F:      drivers/iio/chemical/sgp40.c
17406
17407 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
17408 M:      Tomasz Duszynski <tduszyns@gmail.com>
17409 S:      Maintained
17410 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
17411 F:      drivers/iio/chemical/sps30.c
17412 F:      drivers/iio/chemical/sps30_i2c.c
17413 F:      drivers/iio/chemical/sps30_serial.c
17414
17415 SERIAL DEVICE BUS
17416 M:      Rob Herring <robh@kernel.org>
17417 L:      linux-serial@vger.kernel.org
17418 S:      Maintained
17419 F:      Documentation/devicetree/bindings/serial/serial.yaml
17420 F:      drivers/tty/serdev/
17421 F:      include/linux/serdev.h
17422
17423 SERIAL DRIVERS
17424 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17425 L:      linux-serial@vger.kernel.org
17426 S:      Maintained
17427 F:      Documentation/devicetree/bindings/serial/
17428 F:      drivers/tty/serial/
17429
17430 SERIAL IR RECEIVER
17431 M:      Sean Young <sean@mess.org>
17432 L:      linux-media@vger.kernel.org
17433 S:      Maintained
17434 F:      drivers/media/rc/serial_ir.c
17435
17436 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
17437 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17438 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17439 S:      Maintained
17440 F:      Documentation/devicetree/bindings/slimbus/
17441 F:      drivers/slimbus/
17442 F:      include/linux/slimbus.h
17443
17444 SFC NETWORK DRIVER
17445 M:      Edward Cree <ecree.xilinx@gmail.com>
17446 M:      Martin Habets <habetsm.xilinx@gmail.com>
17447 L:      netdev@vger.kernel.org
17448 S:      Supported
17449 F:      drivers/net/ethernet/sfc/
17450
17451 SFF/SFP/SFP+ MODULE SUPPORT
17452 M:      Russell King <linux@armlinux.org.uk>
17453 L:      netdev@vger.kernel.org
17454 S:      Maintained
17455 F:      drivers/net/phy/phylink.c
17456 F:      drivers/net/phy/sfp*
17457 F:      include/linux/mdio/mdio-i2c.h
17458 F:      include/linux/phylink.h
17459 F:      include/linux/sfp.h
17460 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)
17461
17462 SGI GRU DRIVER
17463 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
17464 S:      Maintained
17465 F:      drivers/misc/sgi-gru/
17466
17467 SGI XP/XPC/XPNET DRIVER
17468 M:      Robin Holt <robinmholt@gmail.com>
17469 M:      Steve Wahl <steve.wahl@hpe.com>
17470 R:      Mike Travis <mike.travis@hpe.com>
17471 S:      Maintained
17472 F:      drivers/misc/sgi-xp/
17473
17474 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
17475 M:      Karsten Graul <kgraul@linux.ibm.com>
17476 L:      linux-s390@vger.kernel.org
17477 S:      Supported
17478 W:      http://www.ibm.com/developerworks/linux/linux390/
17479 F:      net/smc/
17480
17481 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
17482 M:      Linus Walleij <linus.walleij@linaro.org>
17483 L:      linux-iio@vger.kernel.org
17484 S:      Maintained
17485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
17486 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
17487 F:      drivers/iio/light/gp2ap002.c
17488
17489 SHARP RJ54N1CB0C SENSOR DRIVER
17490 M:      Jacopo Mondi <jacopo@jmondi.org>
17491 L:      linux-media@vger.kernel.org
17492 S:      Odd fixes
17493 T:      git git://linuxtv.org/media_tree.git
17494 F:      drivers/media/i2c/rj54n1cb0c.c
17495 F:      include/media/i2c/rj54n1cb0c.h
17496
17497 SH_VOU V4L2 OUTPUT DRIVER
17498 L:      linux-media@vger.kernel.org
17499 S:      Orphan
17500 F:      drivers/media/platform/sh_vou.c
17501 F:      include/media/drv-intf/sh_vou.h
17502
17503 SI2157 MEDIA DRIVER
17504 M:      Antti Palosaari <crope@iki.fi>
17505 L:      linux-media@vger.kernel.org
17506 S:      Maintained
17507 W:      https://linuxtv.org
17508 W:      http://palosaari.fi/linux/
17509 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17510 T:      git git://linuxtv.org/anttip/media_tree.git
17511 F:      drivers/media/tuners/si2157*
17512
17513 SI2165 MEDIA DRIVER
17514 M:      Matthias Schwarzott <zzam@gentoo.org>
17515 L:      linux-media@vger.kernel.org
17516 S:      Maintained
17517 W:      https://linuxtv.org
17518 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17519 F:      drivers/media/dvb-frontends/si2165*
17520
17521 SI2168 MEDIA DRIVER
17522 M:      Antti Palosaari <crope@iki.fi>
17523 L:      linux-media@vger.kernel.org
17524 S:      Maintained
17525 W:      https://linuxtv.org
17526 W:      http://palosaari.fi/linux/
17527 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17528 T:      git git://linuxtv.org/anttip/media_tree.git
17529 F:      drivers/media/dvb-frontends/si2168*
17530
17531 SI470X FM RADIO RECEIVER I2C DRIVER
17532 M:      Hans Verkuil <hverkuil@xs4all.nl>
17533 L:      linux-media@vger.kernel.org
17534 S:      Odd Fixes
17535 W:      https://linuxtv.org
17536 T:      git git://linuxtv.org/media_tree.git
17537 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
17538
17539 SI470X FM RADIO RECEIVER USB DRIVER
17540 M:      Hans Verkuil <hverkuil@xs4all.nl>
17541 L:      linux-media@vger.kernel.org
17542 S:      Maintained
17543 W:      https://linuxtv.org
17544 T:      git git://linuxtv.org/media_tree.git
17545 F:      drivers/media/radio/si470x/radio-si470x-common.c
17546 F:      drivers/media/radio/si470x/radio-si470x-usb.c
17547 F:      drivers/media/radio/si470x/radio-si470x.h
17548
17549 SI4713 FM RADIO TRANSMITTER I2C DRIVER
17550 M:      Eduardo Valentin <edubezval@gmail.com>
17551 L:      linux-media@vger.kernel.org
17552 S:      Odd Fixes
17553 W:      https://linuxtv.org
17554 T:      git git://linuxtv.org/media_tree.git
17555 F:      drivers/media/radio/si4713/si4713.?
17556
17557 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
17558 M:      Eduardo Valentin <edubezval@gmail.com>
17559 L:      linux-media@vger.kernel.org
17560 S:      Odd Fixes
17561 W:      https://linuxtv.org
17562 T:      git git://linuxtv.org/media_tree.git
17563 F:      drivers/media/radio/si4713/radio-platform-si4713.c
17564
17565 SI4713 FM RADIO TRANSMITTER USB DRIVER
17566 M:      Hans Verkuil <hverkuil@xs4all.nl>
17567 L:      linux-media@vger.kernel.org
17568 S:      Maintained
17569 W:      https://linuxtv.org
17570 T:      git git://linuxtv.org/media_tree.git
17571 F:      drivers/media/radio/si4713/radio-usb-si4713.c
17572
17573 SIANO DVB DRIVER
17574 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17575 L:      linux-media@vger.kernel.org
17576 S:      Odd fixes
17577 W:      https://linuxtv.org
17578 T:      git git://linuxtv.org/media_tree.git
17579 F:      drivers/media/common/siano/
17580 F:      drivers/media/mmc/siano/
17581 F:      drivers/media/usb/siano/
17582 F:      drivers/media/usb/siano/
17583
17584 SIFIVE DRIVERS
17585 M:      Palmer Dabbelt <palmer@dabbelt.com>
17586 M:      Paul Walmsley <paul.walmsley@sifive.com>
17587 L:      linux-riscv@lists.infradead.org
17588 S:      Supported
17589 T:      git git://github.com/sifive/riscv-linux.git
17590 N:      sifive
17591 K:      [^@]sifive
17592
17593 SIFIVE FU540 SYSTEM-ON-CHIP
17594 M:      Paul Walmsley <paul.walmsley@sifive.com>
17595 M:      Palmer Dabbelt <palmer@dabbelt.com>
17596 L:      linux-riscv@lists.infradead.org
17597 S:      Supported
17598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
17599 N:      fu540
17600 K:      fu540
17601
17602 SIFIVE PDMA DRIVER
17603 M:      Green Wan <green.wan@sifive.com>
17604 S:      Maintained
17605 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
17606 F:      drivers/dma/sf-pdma/
17607
17608 SILEAD TOUCHSCREEN DRIVER
17609 M:      Hans de Goede <hdegoede@redhat.com>
17610 L:      linux-input@vger.kernel.org
17611 L:      platform-driver-x86@vger.kernel.org
17612 S:      Maintained
17613 F:      drivers/input/touchscreen/silead.c
17614 F:      drivers/platform/x86/touchscreen_dmi.c
17615
17616 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
17617 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
17618 S:      Supported
17619 F:      drivers/staging/wfx/
17620
17621 SILICON MOTION SM712 FRAME BUFFER DRIVER
17622 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17623 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17624 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17625 L:      linux-fbdev@vger.kernel.org
17626 S:      Maintained
17627 F:      Documentation/fb/sm712fb.rst
17628 F:      drivers/video/fbdev/sm712*
17629
17630 SILVACO I3C DUAL-ROLE MASTER
17631 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17632 M:      Conor Culhane <conor.culhane@silvaco.com>
17633 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
17634 S:      Maintained
17635 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
17636 F:      drivers/i3c/master/svc-i3c-master.c
17637
17638 SIMPLEFB FB DRIVER
17639 M:      Hans de Goede <hdegoede@redhat.com>
17640 L:      linux-fbdev@vger.kernel.org
17641 S:      Maintained
17642 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
17643 F:      drivers/video/fbdev/simplefb.c
17644 F:      include/linux/platform_data/simplefb.h
17645
17646 SIMTEC EB110ATX (Chalice CATS)
17647 M:      Simtec Linux Team <linux@simtec.co.uk>
17648 S:      Supported
17649 W:      http://www.simtec.co.uk/products/EB110ATX/
17650
17651 SIMTEC EB2410ITX (BAST)
17652 M:      Simtec Linux Team <linux@simtec.co.uk>
17653 S:      Supported
17654 W:      http://www.simtec.co.uk/products/EB2410ITX/
17655 F:      arch/arm/mach-s3c/bast-ide.c
17656 F:      arch/arm/mach-s3c/bast-irq.c
17657 F:      arch/arm/mach-s3c/mach-bast.c
17658
17659 SIOX
17660 M:      Thorsten Scherer <t.scherer@eckelmann.de>
17661 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17662 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
17663 S:      Supported
17664 F:      drivers/gpio/gpio-siox.c
17665 F:      drivers/siox/*
17666 F:      include/trace/events/siox.h
17667
17668 SIPHASH PRF ROUTINES
17669 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17670 S:      Maintained
17671 F:      include/linux/siphash.h
17672 F:      lib/siphash.c
17673 F:      lib/test_siphash.c
17674
17675 SIS 190 ETHERNET DRIVER
17676 M:      Francois Romieu <romieu@fr.zoreil.com>
17677 L:      netdev@vger.kernel.org
17678 S:      Maintained
17679 F:      drivers/net/ethernet/sis/sis190.c
17680
17681 SIS 900/7016 FAST ETHERNET DRIVER
17682 M:      Daniele Venzano <venza@brownhat.org>
17683 L:      netdev@vger.kernel.org
17684 S:      Maintained
17685 W:      http://www.brownhat.org/sis900.html
17686 F:      drivers/net/ethernet/sis/sis900.*
17687
17688 SIS FRAMEBUFFER DRIVER
17689 M:      Thomas Winischhofer <thomas@winischhofer.net>
17690 S:      Maintained
17691 W:      http://www.winischhofer.net/linuxsisvga.shtml
17692 F:      Documentation/fb/sisfb.rst
17693 F:      drivers/video/fbdev/sis/
17694 F:      include/video/sisfb.h
17695
17696 SIS I2C TOUCHSCREEN DRIVER
17697 M:      Mika Penttilä <mika.penttila@nextfour.com>
17698 L:      linux-input@vger.kernel.org
17699 S:      Maintained
17700 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
17701 F:      drivers/input/touchscreen/sis_i2c.c
17702
17703 SIS USB2VGA DRIVER
17704 M:      Thomas Winischhofer <thomas@winischhofer.net>
17705 S:      Maintained
17706 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
17707 F:      drivers/usb/misc/sisusbvga/
17708
17709 SLAB ALLOCATOR
17710 M:      Christoph Lameter <cl@linux.com>
17711 M:      Pekka Enberg <penberg@kernel.org>
17712 M:      David Rientjes <rientjes@google.com>
17713 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
17714 M:      Andrew Morton <akpm@linux-foundation.org>
17715 M:      Vlastimil Babka <vbabka@suse.cz>
17716 L:      linux-mm@kvack.org
17717 S:      Maintained
17718 F:      include/linux/sl?b*.h
17719 F:      mm/sl?b*
17720
17721 SLEEPABLE READ-COPY UPDATE (SRCU)
17722 M:      Lai Jiangshan <jiangshanlai@gmail.com>
17723 M:      "Paul E. McKenney" <paulmck@kernel.org>
17724 M:      Josh Triplett <josh@joshtriplett.org>
17725 R:      Steven Rostedt <rostedt@goodmis.org>
17726 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17727 L:      rcu@vger.kernel.org
17728 S:      Supported
17729 W:      http://www.rdrop.com/users/paulmck/RCU/
17730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17731 F:      include/linux/srcu*.h
17732 F:      kernel/rcu/srcu*.c
17733
17734 SMACK SECURITY MODULE
17735 M:      Casey Schaufler <casey@schaufler-ca.com>
17736 L:      linux-security-module@vger.kernel.org
17737 S:      Maintained
17738 W:      http://schaufler-ca.com
17739 T:      git git://github.com/cschaufler/smack-next
17740 F:      Documentation/admin-guide/LSM/Smack.rst
17741 F:      security/smack/
17742
17743 SMC91x ETHERNET DRIVER
17744 M:      Nicolas Pitre <nico@fluxnic.net>
17745 S:      Odd Fixes
17746 F:      drivers/net/ethernet/smsc/smc91x.*
17747
17748 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
17749 M:      Mark Rutland <mark.rutland@arm.com>
17750 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
17751 M:      Sudeep Holla <sudeep.holla@arm.com>
17752 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17753 S:      Maintained
17754 F:      drivers/firmware/smccc/
17755 F:      include/linux/arm-smccc.h
17756
17757 SMM665 HARDWARE MONITOR DRIVER
17758 M:      Guenter Roeck <linux@roeck-us.net>
17759 L:      linux-hwmon@vger.kernel.org
17760 S:      Maintained
17761 F:      Documentation/hwmon/smm665.rst
17762 F:      drivers/hwmon/smm665.c
17763
17764 SMSC EMC2103 HARDWARE MONITOR DRIVER
17765 M:      Steve Glendinning <steve.glendinning@shawell.net>
17766 L:      linux-hwmon@vger.kernel.org
17767 S:      Maintained
17768 F:      Documentation/hwmon/emc2103.rst
17769 F:      drivers/hwmon/emc2103.c
17770
17771 SMSC SCH5627 HARDWARE MONITOR DRIVER
17772 M:      Hans de Goede <hdegoede@redhat.com>
17773 L:      linux-hwmon@vger.kernel.org
17774 S:      Supported
17775 F:      Documentation/hwmon/sch5627.rst
17776 F:      drivers/hwmon/sch5627.c
17777
17778 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
17779 M:      Steve Glendinning <steve.glendinning@shawell.net>
17780 L:      linux-fbdev@vger.kernel.org
17781 S:      Maintained
17782 F:      drivers/video/fbdev/smscufx.c
17783
17784 SMSC47B397 HARDWARE MONITOR DRIVER
17785 M:      Jean Delvare <jdelvare@suse.com>
17786 L:      linux-hwmon@vger.kernel.org
17787 S:      Maintained
17788 F:      Documentation/hwmon/smsc47b397.rst
17789 F:      drivers/hwmon/smsc47b397.c
17790
17791 SMSC911x ETHERNET DRIVER
17792 M:      Steve Glendinning <steve.glendinning@shawell.net>
17793 L:      netdev@vger.kernel.org
17794 S:      Maintained
17795 F:      drivers/net/ethernet/smsc/smsc911x.*
17796 F:      include/linux/smsc911x.h
17797
17798 SMSC9420 PCI ETHERNET DRIVER
17799 M:      Steve Glendinning <steve.glendinning@shawell.net>
17800 L:      netdev@vger.kernel.org
17801 S:      Maintained
17802 F:      drivers/net/ethernet/smsc/smsc9420.*
17803
17804 SOCIONEXT (SNI) AVE NETWORK DRIVER
17805 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
17806 L:      netdev@vger.kernel.org
17807 S:      Maintained
17808 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
17809 F:      drivers/net/ethernet/socionext/sni_ave.c
17810
17811 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
17812 M:      Jassi Brar <jaswinder.singh@linaro.org>
17813 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
17814 L:      netdev@vger.kernel.org
17815 S:      Maintained
17816 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
17817 F:      drivers/net/ethernet/socionext/netsec.c
17818
17819 SOCIONEXT (SNI) Synquacer SPI DRIVER
17820 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
17821 M:      Jassi Brar <jaswinder.singh@linaro.org>
17822 L:      linux-spi@vger.kernel.org
17823 S:      Maintained
17824 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
17825 F:      drivers/spi/spi-synquacer.c
17826
17827 SOCIONEXT SYNQUACER I2C DRIVER
17828 M:      Ard Biesheuvel <ardb@kernel.org>
17829 L:      linux-i2c@vger.kernel.org
17830 S:      Maintained
17831 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
17832 F:      drivers/i2c/busses/i2c-synquacer.c
17833
17834 SOCIONEXT UNIPHIER SOUND DRIVER
17835 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17836 S:      Orphan
17837 F:      sound/soc/uniphier/
17838
17839 SOEKRIS NET48XX LED SUPPORT
17840 M:      Chris Boot <bootc@bootc.net>
17841 S:      Maintained
17842 F:      drivers/leds/leds-net48xx.c
17843
17844 SOFT-IWARP DRIVER (siw)
17845 M:      Bernard Metzler <bmt@zurich.ibm.com>
17846 L:      linux-rdma@vger.kernel.org
17847 S:      Supported
17848 F:      drivers/infiniband/sw/siw/
17849 F:      include/uapi/rdma/siw-abi.h
17850
17851 SOFT-ROCE DRIVER (rxe)
17852 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
17853 L:      linux-rdma@vger.kernel.org
17854 S:      Supported
17855 F:      drivers/infiniband/sw/rxe/
17856 F:      include/uapi/rdma/rdma_user_rxe.h
17857
17858 SOFTLOGIC 6x10 MPEG CODEC
17859 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17860 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17861 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17862 M:      Ismael Luceno <ismael@iodev.co.uk>
17863 L:      linux-media@vger.kernel.org
17864 S:      Supported
17865 F:      drivers/media/pci/solo6x10/
17866
17867 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
17868 M:      James Morse <james.morse@arm.com>
17869 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17870 S:      Maintained
17871 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
17872 F:      drivers/firmware/arm_sdei.c
17873 F:      include/linux/arm_sdei.h
17874 F:      include/uapi/linux/arm_sdei.h
17875
17876 SOFTWARE NODES AND DEVICE PROPERTIES
17877 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17878 R:      Daniel Scally <djrscally@gmail.com>
17879 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17880 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
17881 L:      linux-acpi@vger.kernel.org
17882 S:      Maintained
17883 F:      drivers/base/property.c
17884 F:      drivers/base/swnode.c
17885 F:      include/linux/fwnode.h
17886 F:      include/linux/property.h
17887
17888 SOFTWARE RAID (Multiple Disks) SUPPORT
17889 M:      Song Liu <song@kernel.org>
17890 L:      linux-raid@vger.kernel.org
17891 S:      Supported
17892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
17893 F:      drivers/md/Kconfig
17894 F:      drivers/md/Makefile
17895 F:      drivers/md/md*
17896 F:      drivers/md/raid*
17897 F:      include/linux/raid/
17898 F:      include/uapi/linux/raid/
17899
17900 SOLIDRUN CLEARFOG SUPPORT
17901 M:      Russell King <linux@armlinux.org.uk>
17902 S:      Maintained
17903 F:      arch/arm/boot/dts/armada-388-clearfog*
17904 F:      arch/arm/boot/dts/armada-38x-solidrun-*
17905
17906 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
17907 M:      Russell King <linux@armlinux.org.uk>
17908 S:      Maintained
17909 F:      arch/arm/boot/dts/imx6*-cubox-i*
17910 F:      arch/arm/boot/dts/imx6*-hummingboard*
17911 F:      arch/arm/boot/dts/imx6*-sr-*
17912
17913 SONIC NETWORK DRIVER
17914 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
17915 L:      netdev@vger.kernel.org
17916 S:      Maintained
17917 F:      drivers/net/ethernet/natsemi/sonic.*
17918
17919 SONICS SILICON BACKPLANE DRIVER (SSB)
17920 M:      Michael Buesch <m@bues.ch>
17921 L:      linux-wireless@vger.kernel.org
17922 S:      Maintained
17923 F:      drivers/ssb/
17924 F:      include/linux/ssb/
17925
17926 SONY IMX208 SENSOR DRIVER
17927 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17928 L:      linux-media@vger.kernel.org
17929 S:      Maintained
17930 T:      git git://linuxtv.org/media_tree.git
17931 F:      drivers/media/i2c/imx208.c
17932
17933 SONY IMX214 SENSOR DRIVER
17934 M:      Ricardo Ribalda <ribalda@kernel.org>
17935 L:      linux-media@vger.kernel.org
17936 S:      Maintained
17937 T:      git git://linuxtv.org/media_tree.git
17938 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
17939 F:      drivers/media/i2c/imx214.c
17940
17941 SONY IMX219 SENSOR DRIVER
17942 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
17943 L:      linux-media@vger.kernel.org
17944 S:      Maintained
17945 T:      git git://linuxtv.org/media_tree.git
17946 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
17947 F:      drivers/media/i2c/imx219.c
17948
17949 SONY IMX258 SENSOR DRIVER
17950 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17951 L:      linux-media@vger.kernel.org
17952 S:      Maintained
17953 T:      git git://linuxtv.org/media_tree.git
17954 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
17955 F:      drivers/media/i2c/imx258.c
17956
17957 SONY IMX274 SENSOR DRIVER
17958 M:      Leon Luo <leonl@leopardimaging.com>
17959 L:      linux-media@vger.kernel.org
17960 S:      Maintained
17961 T:      git git://linuxtv.org/media_tree.git
17962 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
17963 F:      drivers/media/i2c/imx274.c
17964
17965 SONY IMX290 SENSOR DRIVER
17966 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17967 L:      linux-media@vger.kernel.org
17968 S:      Maintained
17969 T:      git git://linuxtv.org/media_tree.git
17970 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
17971 F:      drivers/media/i2c/imx290.c
17972
17973 SONY IMX319 SENSOR DRIVER
17974 M:      Bingbu Cao <bingbu.cao@intel.com>
17975 L:      linux-media@vger.kernel.org
17976 S:      Maintained
17977 T:      git git://linuxtv.org/media_tree.git
17978 F:      drivers/media/i2c/imx319.c
17979
17980 SONY IMX334 SENSOR DRIVER
17981 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17982 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17983 L:      linux-media@vger.kernel.org
17984 S:      Maintained
17985 T:      git git://linuxtv.org/media_tree.git
17986 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
17987 F:      drivers/media/i2c/imx334.c
17988
17989 SONY IMX335 SENSOR DRIVER
17990 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17991 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17992 L:      linux-media@vger.kernel.org
17993 S:      Maintained
17994 T:      git git://linuxtv.org/media_tree.git
17995 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
17996 F:      drivers/media/i2c/imx335.c
17997
17998 SONY IMX355 SENSOR DRIVER
17999 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
18000 L:      linux-media@vger.kernel.org
18001 S:      Maintained
18002 T:      git git://linuxtv.org/media_tree.git
18003 F:      drivers/media/i2c/imx355.c
18004
18005 SONY IMX412 SENSOR DRIVER
18006 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18007 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18008 L:      linux-media@vger.kernel.org
18009 S:      Maintained
18010 T:      git git://linuxtv.org/media_tree.git
18011 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
18012 F:      drivers/media/i2c/imx412.c
18013
18014 SONY MEMORYSTICK SUBSYSTEM
18015 M:      Maxim Levitsky <maximlevitsky@gmail.com>
18016 M:      Alex Dubov <oakad@yahoo.com>
18017 M:      Ulf Hansson <ulf.hansson@linaro.org>
18018 L:      linux-mmc@vger.kernel.org
18019 S:      Maintained
18020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
18021 F:      drivers/memstick/
18022 F:      include/linux/memstick.h
18023
18024 SONY VAIO CONTROL DEVICE DRIVER
18025 M:      Mattia Dongili <malattia@linux.it>
18026 L:      platform-driver-x86@vger.kernel.org
18027 S:      Maintained
18028 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
18029 F:      Documentation/admin-guide/laptops/sony-laptop.rst
18030 F:      drivers/char/sonypi.c
18031 F:      drivers/platform/x86/sony-laptop.c
18032 F:      include/linux/sony-laptop.h
18033
18034 SOUND
18035 M:      Jaroslav Kysela <perex@perex.cz>
18036 M:      Takashi Iwai <tiwai@suse.com>
18037 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18038 S:      Maintained
18039 W:      http://www.alsa-project.org/
18040 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
18041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18042 F:      Documentation/sound/
18043 F:      include/sound/
18044 F:      include/uapi/sound/
18045 F:      sound/
18046 F:      tools/testing/selftests/alsa
18047
18048 SOUND - COMPRESSED AUDIO
18049 M:      Vinod Koul <vkoul@kernel.org>
18050 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18051 S:      Supported
18052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18053 F:      Documentation/sound/designs/compress-offload.rst
18054 F:      include/sound/compress_driver.h
18055 F:      include/uapi/sound/compress_*
18056 F:      sound/core/compress_offload.c
18057 F:      sound/soc/soc-compress.c
18058
18059 SOUND - DMAENGINE HELPERS
18060 M:      Lars-Peter Clausen <lars@metafoo.de>
18061 S:      Supported
18062 F:      include/sound/dmaengine_pcm.h
18063 F:      sound/core/pcm_dmaengine.c
18064 F:      sound/soc/soc-generic-dmaengine-pcm.c
18065
18066 SOUND - ALSA SELFTESTS
18067 M:      Mark Brown <broonie@kernel.org>
18068 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18069 L:      linux-kselftest@vger.kernel.org
18070 S:      Supported
18071 F:      tools/testing/selftests/alsa
18072
18073 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
18074 M:      Liam Girdwood <lgirdwood@gmail.com>
18075 M:      Mark Brown <broonie@kernel.org>
18076 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18077 S:      Supported
18078 W:      http://alsa-project.org/main/index.php/ASoC
18079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
18080 F:      Documentation/devicetree/bindings/sound/
18081 F:      Documentation/sound/soc/
18082 F:      include/dt-bindings/sound/
18083 F:      include/sound/soc*
18084 F:      sound/soc/
18085
18086 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
18087 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
18088 M:      Liam Girdwood <lgirdwood@gmail.com>
18089 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
18090 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
18091 M:      Daniel Baluta <daniel.baluta@nxp.com>
18092 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
18093 S:      Supported
18094 W:      https://github.com/thesofproject/linux/
18095 F:      sound/soc/sof/
18096
18097 SOUNDWIRE SUBSYSTEM
18098 M:      Vinod Koul <vkoul@kernel.org>
18099 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
18100 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
18101 R:      Sanyog Kale <sanyog.r.kale@intel.com>
18102 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18103 S:      Supported
18104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
18105 F:      Documentation/driver-api/soundwire/
18106 F:      drivers/soundwire/
18107 F:      include/linux/soundwire/
18108
18109 SP2 MEDIA DRIVER
18110 M:      Olli Salonen <olli.salonen@iki.fi>
18111 L:      linux-media@vger.kernel.org
18112 S:      Maintained
18113 W:      https://linuxtv.org
18114 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18115 F:      drivers/media/dvb-frontends/sp2*
18116
18117 SPARC + UltraSPARC (sparc/sparc64)
18118 M:      "David S. Miller" <davem@davemloft.net>
18119 L:      sparclinux@vger.kernel.org
18120 S:      Maintained
18121 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
18122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
18123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
18124 F:      arch/sparc/
18125 F:      drivers/sbus/
18126
18127 SPARC SERIAL DRIVERS
18128 M:      "David S. Miller" <davem@davemloft.net>
18129 L:      sparclinux@vger.kernel.org
18130 S:      Maintained
18131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
18132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
18133 F:      drivers/tty/serial/suncore.c
18134 F:      drivers/tty/serial/sunhv.c
18135 F:      drivers/tty/serial/sunsab.c
18136 F:      drivers/tty/serial/sunsab.h
18137 F:      drivers/tty/serial/sunsu.c
18138 F:      drivers/tty/serial/sunzilog.c
18139 F:      drivers/tty/serial/sunzilog.h
18140 F:      drivers/tty/vcc.c
18141 F:      include/linux/sunserialcore.h
18142
18143 SPARSE CHECKER
18144 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
18145 L:      linux-sparse@vger.kernel.org
18146 S:      Maintained
18147 W:      https://sparse.docs.kernel.org/
18148 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
18149 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
18150 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
18151 F:      include/linux/compiler.h
18152
18153 SPEAKUP CONSOLE SPEECH DRIVER
18154 M:      William Hubbs <w.d.hubbs@gmail.com>
18155 M:      Chris Brannon <chris@the-brannons.com>
18156 M:      Kirk Reiser <kirk@reisers.ca>
18157 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
18158 L:      speakup@linux-speakup.org
18159 S:      Odd Fixes
18160 W:      http://www.linux-speakup.org/
18161 W:      https://github.com/linux-speakup/speakup
18162 B:      https://github.com/linux-speakup/speakup/issues
18163 F:      drivers/accessibility/speakup/
18164
18165 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
18166 M:      Viresh Kumar <vireshk@kernel.org>
18167 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
18168 M:      soc@kernel.org
18169 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18170 S:      Maintained
18171 W:      http://www.st.com/spear
18172 F:      arch/arm/boot/dts/spear*
18173 F:      arch/arm/mach-spear/
18174 F:      drivers/clk/spear/
18175 F:      drivers/pinctrl/spear/
18176
18177 SPI NOR SUBSYSTEM
18178 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
18179 M:      Pratyush Yadav <p.yadav@ti.com>
18180 R:      Michael Walle <michael@walle.cc>
18181 L:      linux-mtd@lists.infradead.org
18182 S:      Maintained
18183 W:      http://www.linux-mtd.infradead.org/
18184 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
18185 C:      irc://irc.oftc.net/mtd
18186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
18187 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
18188 F:      drivers/mtd/spi-nor/
18189 F:      include/linux/mtd/spi-nor.h
18190
18191 SPI SUBSYSTEM
18192 M:      Mark Brown <broonie@kernel.org>
18193 L:      linux-spi@vger.kernel.org
18194 S:      Maintained
18195 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
18196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
18197 F:      Documentation/devicetree/bindings/spi/
18198 F:      Documentation/spi/
18199 F:      drivers/spi/
18200 F:      include/linux/spi/
18201 F:      include/uapi/linux/spi/
18202 F:      tools/spi/
18203
18204 SPIDERNET NETWORK DRIVER for CELL
18205 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
18206 M:      Geoff Levand <geoff@infradead.org>
18207 L:      netdev@vger.kernel.org
18208 L:      linuxppc-dev@lists.ozlabs.org
18209 S:      Maintained
18210 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
18211 F:      drivers/net/ethernet/toshiba/spider_net*
18212
18213 SPMI SUBSYSTEM
18214 M:      Stephen Boyd <sboyd@kernel.org>
18215 L:      linux-kernel@vger.kernel.org
18216 S:      Maintained
18217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
18218 F:      Documentation/devicetree/bindings/spmi/
18219 F:      drivers/spmi/
18220 F:      include/dt-bindings/spmi/spmi.h
18221 F:      include/linux/spmi.h
18222 F:      include/trace/events/spmi.h
18223
18224 SPU FILE SYSTEM
18225 M:      Jeremy Kerr <jk@ozlabs.org>
18226 L:      linuxppc-dev@lists.ozlabs.org
18227 S:      Supported
18228 W:      http://www.ibm.com/developerworks/power/cell/
18229 F:      Documentation/filesystems/spufs/spufs.rst
18230 F:      arch/powerpc/platforms/cell/spufs/
18231
18232 SQUASHFS FILE SYSTEM
18233 M:      Phillip Lougher <phillip@squashfs.org.uk>
18234 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
18235 S:      Maintained
18236 W:      http://squashfs.org.uk
18237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
18238 F:      Documentation/filesystems/squashfs.rst
18239 F:      fs/squashfs/
18240
18241 SRM (Alpha) environment access
18242 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
18243 S:      Maintained
18244 F:      arch/alpha/kernel/srm_env.c
18245
18246 ST LSM6DSx IMU IIO DRIVER
18247 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
18248 L:      linux-iio@vger.kernel.org
18249 S:      Maintained
18250 W:      http://www.st.com/
18251 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
18252 F:      drivers/iio/imu/st_lsm6dsx/
18253
18254 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
18255 M:      Mickael Guene <mickael.guene@st.com>
18256 L:      linux-media@vger.kernel.org
18257 S:      Maintained
18258 T:      git git://linuxtv.org/media_tree.git
18259 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
18260 F:      drivers/media/i2c/st-mipid02.c
18261
18262 ST STM32 I2C/SMBUS DRIVER
18263 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
18264 M:      Alain Volmat <alain.volmat@foss.st.com>
18265 L:      linux-i2c@vger.kernel.org
18266 S:      Maintained
18267 F:      drivers/i2c/busses/i2c-stm32*
18268
18269 ST STM32 SPI DRIVER
18270 M:      Alain Volmat <alain.volmat@foss.st.com>
18271 L:      linux-spi@vger.kernel.org
18272 S:      Maintained
18273 F:      drivers/spi/spi-stm32.c
18274
18275 ST STPDDC60 DRIVER
18276 M:      Daniel Nilsson <daniel.nilsson@flex.com>
18277 L:      linux-hwmon@vger.kernel.org
18278 S:      Maintained
18279 F:      Documentation/hwmon/stpddc60.rst
18280 F:      drivers/hwmon/pmbus/stpddc60.c
18281
18282 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
18283 M:      Song Qiang <songqiang1304521@gmail.com>
18284 L:      linux-iio@vger.kernel.org
18285 S:      Maintained
18286 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
18287 F:      drivers/iio/proximity/vl53l0x-i2c.c
18288
18289 STABLE BRANCH
18290 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18291 M:      Sasha Levin <sashal@kernel.org>
18292 L:      stable@vger.kernel.org
18293 S:      Supported
18294 F:      Documentation/process/stable-kernel-rules.rst
18295
18296 STAGING - ATOMISP DRIVER
18297 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18298 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18299 L:      linux-media@vger.kernel.org
18300 S:      Maintained
18301 F:      drivers/staging/media/atomisp/
18302
18303 STAGING - FIELDBUS SUBSYSTEM
18304 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18305 S:      Maintained
18306 F:      drivers/staging/fieldbus/*
18307 F:      drivers/staging/fieldbus/Documentation/
18308
18309 STAGING - HMS ANYBUS-S BUS
18310 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18311 S:      Maintained
18312 F:      drivers/staging/fieldbus/anybuss/
18313
18314 STAGING - INDUSTRIAL IO
18315 M:      Jonathan Cameron <jic23@kernel.org>
18316 L:      linux-iio@vger.kernel.org
18317 S:      Odd Fixes
18318 F:      Documentation/devicetree/bindings/staging/iio/
18319 F:      drivers/staging/iio/
18320
18321 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
18322 M:      Marc Dietrich <marvin24@gmx.de>
18323 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
18324 L:      linux-tegra@vger.kernel.org
18325 S:      Maintained
18326 F:      drivers/staging/nvec/
18327
18328 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
18329 M:      Jens Frederich <jfrederich@gmail.com>
18330 M:      Jon Nettleton <jon.nettleton@gmail.com>
18331 S:      Maintained
18332 W:      http://wiki.laptop.org/go/DCON
18333 F:      drivers/staging/olpc_dcon/
18334
18335 STAGING - REALTEK RTL8188EU DRIVERS
18336 M:      Larry Finger <Larry.Finger@lwfinger.net>
18337 M:      Phillip Potter <phil@philpotter.co.uk>
18338 S:      Supported
18339 F:      drivers/staging/r8188eu/
18340
18341 STAGING - REALTEK RTL8712U DRIVERS
18342 M:      Larry Finger <Larry.Finger@lwfinger.net>
18343 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
18344 S:      Odd Fixes
18345 F:      drivers/staging/rtl8712/
18346
18347 STAGING - SEPS525 LCD CONTROLLER DRIVERS
18348 M:      Michael Hennerich <michael.hennerich@analog.com>
18349 L:      linux-fbdev@vger.kernel.org
18350 S:      Supported
18351 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
18352 F:      drivers/staging/fbtft/fb_seps525.c
18353
18354 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
18355 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18356 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18357 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18358 L:      linux-fbdev@vger.kernel.org
18359 S:      Maintained
18360 F:      drivers/staging/sm750fb/
18361
18362 STAGING - VIA VT665X DRIVERS
18363 M:      Forest Bond <forest@alittletooquiet.net>
18364 S:      Odd Fixes
18365 F:      drivers/staging/vt665?/
18366
18367 STAGING SUBSYSTEM
18368 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18369 L:      linux-staging@lists.linux.dev
18370 S:      Supported
18371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
18372 F:      drivers/staging/
18373
18374 STARFIRE/DURALAN NETWORK DRIVER
18375 M:      Ion Badulescu <ionut@badula.org>
18376 S:      Odd Fixes
18377 F:      drivers/net/ethernet/adaptec/starfire*
18378
18379 STARFIVE JH7100 CLOCK DRIVER
18380 M:      Emil Renner Berthing <kernel@esmil.dk>
18381 S:      Maintained
18382 F:      Documentation/devicetree/bindings/clock/starfive,jh7100-clkgen.yaml
18383 F:      drivers/clk/starfive/clk-starfive-jh7100.c
18384 F:      include/dt-bindings/clock/starfive-jh7100.h
18385
18386 STARFIVE JH7100 PINCTRL DRIVER
18387 M:      Emil Renner Berthing <kernel@esmil.dk>
18388 L:      linux-gpio@vger.kernel.org
18389 S:      Maintained
18390 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh7100-pinctrl.yaml
18391 F:      drivers/pinctrl/pinctrl-starfive.c
18392 F:      include/dt-bindings/pinctrl/pinctrl-starfive.h
18393
18394 STARFIVE JH7100 RESET CONTROLLER DRIVER
18395 M:      Emil Renner Berthing <kernel@esmil.dk>
18396 S:      Maintained
18397 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
18398 F:      drivers/reset/reset-starfive-jh7100.c
18399 F:      include/dt-bindings/reset/starfive-jh7100.h
18400
18401 STATIC BRANCH/CALL
18402 M:      Peter Zijlstra <peterz@infradead.org>
18403 M:      Josh Poimboeuf <jpoimboe@redhat.com>
18404 M:      Jason Baron <jbaron@akamai.com>
18405 R:      Steven Rostedt <rostedt@goodmis.org>
18406 R:      Ard Biesheuvel <ardb@kernel.org>
18407 S:      Supported
18408 F:      arch/*/include/asm/jump_label*.h
18409 F:      arch/*/include/asm/static_call*.h
18410 F:      arch/*/kernel/jump_label.c
18411 F:      arch/*/kernel/static_call.c
18412 F:      include/linux/jump_label*.h
18413 F:      include/linux/static_call*.h
18414 F:      kernel/jump_label.c
18415 F:      kernel/static_call.c
18416
18417 STI AUDIO (ASoC) DRIVERS
18418 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18419 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18420 S:      Maintained
18421 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
18422 F:      sound/soc/sti/
18423
18424 STI CEC DRIVER
18425 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
18426 S:      Maintained
18427 F:      Documentation/devicetree/bindings/media/stih-cec.txt
18428 F:      drivers/media/cec/platform/sti/
18429
18430 STK1160 USB VIDEO CAPTURE DRIVER
18431 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18432 L:      linux-media@vger.kernel.org
18433 S:      Maintained
18434 T:      git git://linuxtv.org/media_tree.git
18435 F:      drivers/media/usb/stk1160/
18436
18437 STM32 AUDIO (ASoC) DRIVERS
18438 M:      Olivier Moysan <olivier.moysan@foss.st.com>
18439 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18440 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18441 S:      Maintained
18442 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
18443 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
18444 F:      sound/soc/stm/
18445
18446 STM32 TIMER/LPTIMER DRIVERS
18447 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
18448 S:      Maintained
18449 F:      Documentation/ABI/testing/*timer-stm32
18450 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
18451 F:      drivers/*/stm32-*timer*
18452 F:      drivers/pwm/pwm-stm32*
18453 F:      include/linux/*/stm32-*tim*
18454
18455 STMMAC ETHERNET DRIVER
18456 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
18457 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
18458 M:      Jose Abreu <joabreu@synopsys.com>
18459 L:      netdev@vger.kernel.org
18460 S:      Supported
18461 W:      http://www.stlinux.com
18462 F:      Documentation/networking/device_drivers/ethernet/stmicro/
18463 F:      drivers/net/ethernet/stmicro/stmmac/
18464
18465 SUN3/3X
18466 M:      Sam Creasey <sammy@sammy.net>
18467 S:      Maintained
18468 W:      http://sammy.net/sun3/
18469 F:      arch/m68k/include/asm/sun3*
18470 F:      arch/m68k/kernel/*sun3*
18471 F:      arch/m68k/sun3*/
18472 F:      drivers/net/ethernet/i825xx/sun3*
18473
18474 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
18475 M:      Hans de Goede <hdegoede@redhat.com>
18476 L:      linux-input@vger.kernel.org
18477 S:      Maintained
18478 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
18479 F:      drivers/input/keyboard/sun4i-lradc-keys.c
18480
18481 SUNDANCE NETWORK DRIVER
18482 M:      Denis Kirjanov <kda@linux-powerpc.org>
18483 L:      netdev@vger.kernel.org
18484 S:      Maintained
18485 F:      drivers/net/ethernet/dlink/sundance.c
18486
18487 SUPERH
18488 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
18489 M:      Rich Felker <dalias@libc.org>
18490 L:      linux-sh@vger.kernel.org
18491 S:      Maintained
18492 Q:      http://patchwork.kernel.org/project/linux-sh/list/
18493 F:      Documentation/sh/
18494 F:      arch/sh/
18495 F:      drivers/sh/
18496
18497 SUSPEND TO RAM
18498 M:      "Rafael J. Wysocki" <rafael@kernel.org>
18499 M:      Len Brown <len.brown@intel.com>
18500 M:      Pavel Machek <pavel@ucw.cz>
18501 L:      linux-pm@vger.kernel.org
18502 S:      Supported
18503 B:      https://bugzilla.kernel.org
18504 F:      Documentation/power/
18505 F:      arch/x86/kernel/acpi/
18506 F:      drivers/base/power/
18507 F:      include/linux/freezer.h
18508 F:      include/linux/pm.h
18509 F:      include/linux/suspend.h
18510 F:      kernel/power/
18511
18512 SVGA HANDLING
18513 M:      Martin Mares <mj@ucw.cz>
18514 L:      linux-video@atrey.karlin.mff.cuni.cz
18515 S:      Maintained
18516 F:      Documentation/admin-guide/svga.rst
18517 F:      arch/x86/boot/video*
18518
18519 SWIOTLB SUBSYSTEM
18520 M:      Christoph Hellwig <hch@infradead.org>
18521 L:      iommu@lists.linux-foundation.org
18522 S:      Supported
18523 W:      http://git.infradead.org/users/hch/dma-mapping.git
18524 T:      git git://git.infradead.org/users/hch/dma-mapping.git
18525 F:      arch/*/kernel/pci-swiotlb.c
18526 F:      include/linux/swiotlb.h
18527 F:      kernel/dma/swiotlb.c
18528
18529 SWITCHDEV
18530 M:      Jiri Pirko <jiri@resnulli.us>
18531 M:      Ivan Vecera <ivecera@redhat.com>
18532 L:      netdev@vger.kernel.org
18533 S:      Supported
18534 F:      include/net/switchdev.h
18535 F:      net/switchdev/
18536
18537 SY8106A REGULATOR DRIVER
18538 M:      Icenowy Zheng <icenowy@aosc.io>
18539 S:      Maintained
18540 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
18541 F:      drivers/regulator/sy8106a-regulator.c
18542
18543 SYNC FILE FRAMEWORK
18544 M:      Sumit Semwal <sumit.semwal@linaro.org>
18545 R:      Gustavo Padovan <gustavo@padovan.org>
18546 L:      linux-media@vger.kernel.org
18547 L:      dri-devel@lists.freedesktop.org
18548 S:      Maintained
18549 T:      git git://anongit.freedesktop.org/drm/drm-misc
18550 F:      Documentation/driver-api/sync_file.rst
18551 F:      drivers/dma-buf/dma-fence*
18552 F:      drivers/dma-buf/sw_sync.c
18553 F:      drivers/dma-buf/sync_*
18554 F:      include/linux/sync_file.h
18555 F:      include/uapi/linux/sync_file.h
18556
18557 SYNOPSYS ARC ARCHITECTURE
18558 M:      Vineet Gupta <vgupta@kernel.org>
18559 L:      linux-snps-arc@lists.infradead.org
18560 S:      Supported
18561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
18562 F:      Documentation/arc/
18563 F:      Documentation/devicetree/bindings/arc/*
18564 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
18565 F:      arch/arc/
18566 F:      drivers/clocksource/arc_timer.c
18567 F:      drivers/tty/serial/arc_uart.c
18568
18569 SYNOPSYS ARC HSDK SDP pll clock driver
18570 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18571 S:      Supported
18572 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
18573 F:      drivers/clk/clk-hsdk-pll.c
18574
18575 SYNOPSYS ARC SDP clock driver
18576 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18577 S:      Supported
18578 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
18579 F:      drivers/clk/axs10x/*
18580
18581 SYNOPSYS ARC SDP platform support
18582 M:      Alexey Brodkin <abrodkin@synopsys.com>
18583 S:      Supported
18584 F:      Documentation/devicetree/bindings/arc/axs10*
18585 F:      arch/arc/boot/dts/ax*
18586 F:      arch/arc/plat-axs10x
18587
18588 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
18589 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18590 S:      Supported
18591 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
18592 F:      drivers/reset/reset-axs10x.c
18593
18594 SYNOPSYS CREG GPIO DRIVER
18595 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18596 S:      Maintained
18597 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
18598 F:      drivers/gpio/gpio-creg-snps.c
18599
18600 SYNOPSYS DESIGNWARE 8250 UART DRIVER
18601 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18602 S:      Maintained
18603 F:      drivers/tty/serial/8250/8250_dw.c
18604 F:      drivers/tty/serial/8250/8250_dwlib.*
18605 F:      drivers/tty/serial/8250/8250_lpss.c
18606
18607 SYNOPSYS DESIGNWARE APB GPIO DRIVER
18608 M:      Hoan Tran <hoan@os.amperecomputing.com>
18609 M:      Serge Semin <fancer.lancer@gmail.com>
18610 L:      linux-gpio@vger.kernel.org
18611 S:      Maintained
18612 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
18613 F:      drivers/gpio/gpio-dwapb.c
18614
18615 SYNOPSYS DESIGNWARE APB SSI DRIVER
18616 M:      Serge Semin <fancer.lancer@gmail.com>
18617 L:      linux-spi@vger.kernel.org
18618 S:      Supported
18619 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
18620 F:      drivers/spi/spi-dw*
18621
18622 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
18623 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18624 S:      Maintained
18625 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
18626 F:      drivers/dma/dw-axi-dmac/
18627
18628 SYNOPSYS DESIGNWARE DMAC DRIVER
18629 M:      Viresh Kumar <vireshk@kernel.org>
18630 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18631 S:      Maintained
18632 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
18633 F:      drivers/dma/dw/
18634 F:      include/dt-bindings/dma/dw-dmac.h
18635 F:      include/linux/dma/dw.h
18636 F:      include/linux/platform_data/dma-dw.h
18637
18638 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
18639 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18640 L:      netdev@vger.kernel.org
18641 S:      Supported
18642 F:      drivers/net/ethernet/synopsys/
18643
18644 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
18645 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18646 L:      netdev@vger.kernel.org
18647 S:      Supported
18648 F:      drivers/net/pcs/pcs-xpcs.c
18649 F:      drivers/net/pcs/pcs-xpcs.h
18650 F:      include/linux/pcs/pcs-xpcs.h
18651
18652 SYNOPSYS DESIGNWARE I2C DRIVER
18653 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
18654 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18655 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
18656 L:      linux-i2c@vger.kernel.org
18657 S:      Maintained
18658 F:      drivers/i2c/busses/i2c-designware-*
18659
18660 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
18661 M:      Jaehoon Chung <jh80.chung@samsung.com>
18662 L:      linux-mmc@vger.kernel.org
18663 S:      Maintained
18664 F:      drivers/mmc/host/dw_mmc*
18665
18666 SYNOPSYS HSDK RESET CONTROLLER DRIVER
18667 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18668 S:      Supported
18669 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
18670 F:      drivers/reset/reset-hsdk.c
18671 F:      include/dt-bindings/reset/snps,hsdk-reset.h
18672
18673 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
18674 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
18675 M:      Manjunath M B <manjumb@synopsys.com>
18676 L:      linux-mmc@vger.kernel.org
18677 S:      Maintained
18678 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
18679
18680 SYSTEM CONFIGURATION (SYSCON)
18681 M:      Lee Jones <lee.jones@linaro.org>
18682 M:      Arnd Bergmann <arnd@arndb.de>
18683 S:      Supported
18684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
18685 F:      drivers/mfd/syscon.c
18686
18687 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
18688 M:      Sudeep Holla <sudeep.holla@arm.com>
18689 R:      Cristian Marussi <cristian.marussi@arm.com>
18690 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18691 S:      Maintained
18692 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
18693 F:      drivers/clk/clk-sc[mp]i.c
18694 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
18695 F:      drivers/firmware/arm_scmi/
18696 F:      drivers/firmware/arm_scpi.c
18697 F:      drivers/regulator/scmi-regulator.c
18698 F:      drivers/reset/reset-scmi.c
18699 F:      include/linux/sc[mp]i_protocol.h
18700 F:      include/trace/events/scmi.h
18701 F:      include/uapi/linux/virtio_scmi.h
18702
18703 SYSTEM RESET/SHUTDOWN DRIVERS
18704 M:      Sebastian Reichel <sre@kernel.org>
18705 L:      linux-pm@vger.kernel.org
18706 S:      Maintained
18707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
18708 F:      Documentation/devicetree/bindings/power/reset/
18709 F:      drivers/power/reset/
18710
18711 SYSTEM TRACE MODULE CLASS
18712 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
18713 S:      Maintained
18714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
18715 F:      Documentation/trace/stm.rst
18716 F:      drivers/hwtracing/stm/
18717 F:      include/linux/stm.h
18718 F:      include/uapi/linux/stm.h
18719
18720 SYSTEM76 ACPI DRIVER
18721 M:      Jeremy Soller <jeremy@system76.com>
18722 M:      System76 Product Development <productdev@system76.com>
18723 L:      platform-driver-x86@vger.kernel.org
18724 S:      Maintained
18725 F:      drivers/platform/x86/system76_acpi.c
18726
18727 SYSV FILESYSTEM
18728 M:      Christoph Hellwig <hch@infradead.org>
18729 S:      Maintained
18730 F:      Documentation/filesystems/sysv-fs.rst
18731 F:      fs/sysv/
18732 F:      include/linux/sysv_fs.h
18733
18734 TASKSTATS STATISTICS INTERFACE
18735 M:      Balbir Singh <bsingharora@gmail.com>
18736 S:      Maintained
18737 F:      Documentation/accounting/taskstats*
18738 F:      include/linux/taskstats*
18739 F:      kernel/taskstats.c
18740
18741 TC subsystem
18742 M:      Jamal Hadi Salim <jhs@mojatatu.com>
18743 M:      Cong Wang <xiyou.wangcong@gmail.com>
18744 M:      Jiri Pirko <jiri@resnulli.us>
18745 L:      netdev@vger.kernel.org
18746 S:      Maintained
18747 F:      include/net/pkt_cls.h
18748 F:      include/net/pkt_sched.h
18749 F:      include/net/tc_act/
18750 F:      include/uapi/linux/pkt_cls.h
18751 F:      include/uapi/linux/pkt_sched.h
18752 F:      include/uapi/linux/tc_act/
18753 F:      include/uapi/linux/tc_ematch/
18754 F:      net/sched/
18755 F:      tools/testing/selftests/tc-testing
18756
18757 TC90522 MEDIA DRIVER
18758 M:      Akihiro Tsukada <tskd08@gmail.com>
18759 L:      linux-media@vger.kernel.org
18760 S:      Odd Fixes
18761 F:      drivers/media/dvb-frontends/tc90522*
18762
18763 TCP LOW PRIORITY MODULE
18764 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
18765 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
18766 S:      Maintained
18767 W:      http://tcp-lp-mod.sourceforge.net/
18768 F:      net/ipv4/tcp_lp.c
18769
18770 TDA10071 MEDIA DRIVER
18771 M:      Antti Palosaari <crope@iki.fi>
18772 L:      linux-media@vger.kernel.org
18773 S:      Maintained
18774 W:      https://linuxtv.org
18775 W:      http://palosaari.fi/linux/
18776 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18777 T:      git git://linuxtv.org/anttip/media_tree.git
18778 F:      drivers/media/dvb-frontends/tda10071*
18779
18780 TDA18212 MEDIA DRIVER
18781 M:      Antti Palosaari <crope@iki.fi>
18782 L:      linux-media@vger.kernel.org
18783 S:      Maintained
18784 W:      https://linuxtv.org
18785 W:      http://palosaari.fi/linux/
18786 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18787 T:      git git://linuxtv.org/anttip/media_tree.git
18788 F:      drivers/media/tuners/tda18212*
18789
18790 TDA18218 MEDIA DRIVER
18791 M:      Antti Palosaari <crope@iki.fi>
18792 L:      linux-media@vger.kernel.org
18793 S:      Maintained
18794 W:      https://linuxtv.org
18795 W:      http://palosaari.fi/linux/
18796 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18797 T:      git git://linuxtv.org/anttip/media_tree.git
18798 F:      drivers/media/tuners/tda18218*
18799
18800 TDA18250 MEDIA DRIVER
18801 M:      Olli Salonen <olli.salonen@iki.fi>
18802 L:      linux-media@vger.kernel.org
18803 S:      Maintained
18804 W:      https://linuxtv.org
18805 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18806 T:      git git://linuxtv.org/media_tree.git
18807 F:      drivers/media/tuners/tda18250*
18808
18809 TDA18271 MEDIA DRIVER
18810 M:      Michael Krufky <mkrufky@linuxtv.org>
18811 L:      linux-media@vger.kernel.org
18812 S:      Maintained
18813 W:      https://linuxtv.org
18814 W:      http://github.com/mkrufky
18815 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18816 T:      git git://linuxtv.org/mkrufky/tuners.git
18817 F:      drivers/media/tuners/tda18271*
18818
18819 TDA1997x MEDIA DRIVER
18820 M:      Tim Harvey <tharvey@gateworks.com>
18821 L:      linux-media@vger.kernel.org
18822 S:      Maintained
18823 W:      https://linuxtv.org
18824 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18825 F:      drivers/media/i2c/tda1997x.*
18826
18827 TDA827x MEDIA DRIVER
18828 M:      Michael Krufky <mkrufky@linuxtv.org>
18829 L:      linux-media@vger.kernel.org
18830 S:      Maintained
18831 W:      https://linuxtv.org
18832 W:      http://github.com/mkrufky
18833 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18834 T:      git git://linuxtv.org/mkrufky/tuners.git
18835 F:      drivers/media/tuners/tda8290.*
18836
18837 TDA8290 MEDIA DRIVER
18838 M:      Michael Krufky <mkrufky@linuxtv.org>
18839 L:      linux-media@vger.kernel.org
18840 S:      Maintained
18841 W:      https://linuxtv.org
18842 W:      http://github.com/mkrufky
18843 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18844 T:      git git://linuxtv.org/mkrufky/tuners.git
18845 F:      drivers/media/tuners/tda8290.*
18846
18847 TDA9840 MEDIA DRIVER
18848 M:      Hans Verkuil <hverkuil@xs4all.nl>
18849 L:      linux-media@vger.kernel.org
18850 S:      Maintained
18851 W:      https://linuxtv.org
18852 T:      git git://linuxtv.org/media_tree.git
18853 F:      drivers/media/i2c/tda9840*
18854
18855 TEA5761 TUNER DRIVER
18856 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18857 L:      linux-media@vger.kernel.org
18858 S:      Odd fixes
18859 W:      https://linuxtv.org
18860 T:      git git://linuxtv.org/media_tree.git
18861 F:      drivers/media/tuners/tea5761.*
18862
18863 TEA5767 TUNER DRIVER
18864 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18865 L:      linux-media@vger.kernel.org
18866 S:      Maintained
18867 W:      https://linuxtv.org
18868 T:      git git://linuxtv.org/media_tree.git
18869 F:      drivers/media/tuners/tea5767.*
18870
18871 TEA6415C MEDIA DRIVER
18872 M:      Hans Verkuil <hverkuil@xs4all.nl>
18873 L:      linux-media@vger.kernel.org
18874 S:      Maintained
18875 W:      https://linuxtv.org
18876 T:      git git://linuxtv.org/media_tree.git
18877 F:      drivers/media/i2c/tea6415c*
18878
18879 TEA6420 MEDIA DRIVER
18880 M:      Hans Verkuil <hverkuil@xs4all.nl>
18881 L:      linux-media@vger.kernel.org
18882 S:      Maintained
18883 W:      https://linuxtv.org
18884 T:      git git://linuxtv.org/media_tree.git
18885 F:      drivers/media/i2c/tea6420*
18886
18887 TEAM DRIVER
18888 M:      Jiri Pirko <jiri@resnulli.us>
18889 L:      netdev@vger.kernel.org
18890 S:      Supported
18891 F:      drivers/net/team/
18892 F:      include/linux/if_team.h
18893 F:      include/uapi/linux/if_team.h
18894
18895 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
18896 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
18897 S:      Maintained
18898 F:      arch/x86/platform/ts5500/
18899
18900 TECHNOTREND USB IR RECEIVER
18901 M:      Sean Young <sean@mess.org>
18902 L:      linux-media@vger.kernel.org
18903 S:      Maintained
18904 F:      drivers/media/rc/ttusbir.c
18905
18906 TECHWELL TW9910 VIDEO DECODER
18907 L:      linux-media@vger.kernel.org
18908 S:      Orphan
18909 F:      drivers/media/i2c/tw9910.c
18910 F:      include/media/i2c/tw9910.h
18911
18912 TEE SUBSYSTEM
18913 M:      Jens Wiklander <jens.wiklander@linaro.org>
18914 R:      Sumit Garg <sumit.garg@linaro.org>
18915 L:      op-tee@lists.trustedfirmware.org
18916 S:      Maintained
18917 F:      Documentation/staging/tee.rst
18918 F:      drivers/tee/
18919 F:      include/linux/tee_drv.h
18920 F:      include/uapi/linux/tee.h
18921
18922 TEGRA ARCHITECTURE SUPPORT
18923 M:      Thierry Reding <thierry.reding@gmail.com>
18924 M:      Jonathan Hunter <jonathanh@nvidia.com>
18925 L:      linux-tegra@vger.kernel.org
18926 S:      Supported
18927 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
18928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
18929 N:      [^a-z]tegra
18930
18931 TEGRA CLOCK DRIVER
18932 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
18933 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
18934 S:      Supported
18935 F:      drivers/clk/tegra/
18936
18937 TEGRA DMA DRIVERS
18938 M:      Laxman Dewangan <ldewangan@nvidia.com>
18939 M:      Jon Hunter <jonathanh@nvidia.com>
18940 S:      Supported
18941 F:      drivers/dma/tegra*
18942
18943 TEGRA I2C DRIVER
18944 M:      Laxman Dewangan <ldewangan@nvidia.com>
18945 R:      Dmitry Osipenko <digetx@gmail.com>
18946 S:      Supported
18947 F:      drivers/i2c/busses/i2c-tegra.c
18948
18949 TEGRA IOMMU DRIVERS
18950 M:      Thierry Reding <thierry.reding@gmail.com>
18951 R:      Krishna Reddy <vdumpa@nvidia.com>
18952 L:      linux-tegra@vger.kernel.org
18953 S:      Supported
18954 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
18955 F:      drivers/iommu/tegra*
18956
18957 TEGRA KBC DRIVER
18958 M:      Laxman Dewangan <ldewangan@nvidia.com>
18959 S:      Supported
18960 F:      drivers/input/keyboard/tegra-kbc.c
18961
18962 TEGRA NAND DRIVER
18963 M:      Stefan Agner <stefan@agner.ch>
18964 M:      Lucas Stach <dev@lynxeye.de>
18965 S:      Maintained
18966 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
18967 F:      drivers/mtd/nand/raw/tegra_nand.c
18968
18969 TEGRA PWM DRIVER
18970 M:      Thierry Reding <thierry.reding@gmail.com>
18971 S:      Supported
18972 F:      drivers/pwm/pwm-tegra.c
18973
18974 TEGRA SERIAL DRIVER
18975 M:      Laxman Dewangan <ldewangan@nvidia.com>
18976 S:      Supported
18977 F:      drivers/tty/serial/serial-tegra.c
18978
18979 TEGRA SPI DRIVER
18980 M:      Laxman Dewangan <ldewangan@nvidia.com>
18981 S:      Supported
18982 F:      drivers/spi/spi-tegra*
18983
18984 TEGRA QUAD SPI DRIVER
18985 M:      Thierry Reding <thierry.reding@gmail.com>
18986 M:      Jonathan Hunter <jonathanh@nvidia.com>
18987 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18988 L:      linux-tegra@vger.kernel.org
18989 S:      Maintained
18990 F:      drivers/spi/spi-tegra210-quad.c
18991
18992 TEGRA VIDEO DRIVER
18993 M:      Thierry Reding <thierry.reding@gmail.com>
18994 M:      Jonathan Hunter <jonathanh@nvidia.com>
18995 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18996 L:      linux-media@vger.kernel.org
18997 L:      linux-tegra@vger.kernel.org
18998 S:      Maintained
18999 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
19000 F:      drivers/staging/media/tegra-video/
19001
19002 TEGRA XUSB PADCTL DRIVER
19003 M:      JC Kuo <jckuo@nvidia.com>
19004 S:      Supported
19005 F:      drivers/phy/tegra/xusb*
19006
19007 TEHUTI ETHERNET DRIVER
19008 M:      Andy Gospodarek <andy@greyhouse.net>
19009 L:      netdev@vger.kernel.org
19010 S:      Supported
19011 F:      drivers/net/ethernet/tehuti/*
19012
19013 TELECOM CLOCK DRIVER FOR MCPL0010
19014 M:      Mark Gross <markgross@kernel.org>
19015 S:      Supported
19016 F:      drivers/char/tlclk.c
19017
19018 TEMPO SEMICONDUCTOR DRIVERS
19019 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
19020 S:      Maintained
19021 F:      Documentation/devicetree/bindings/sound/tscs*.txt
19022 F:      sound/soc/codecs/tscs*.c
19023 F:      sound/soc/codecs/tscs*.h
19024
19025 TENSILICA XTENSA PORT (xtensa)
19026 M:      Chris Zankel <chris@zankel.net>
19027 M:      Max Filippov <jcmvbkbc@gmail.com>
19028 L:      linux-xtensa@linux-xtensa.org
19029 S:      Maintained
19030 T:      git git://github.com/czankel/xtensa-linux.git
19031 F:      arch/xtensa/
19032 F:      drivers/irqchip/irq-xtensa-*
19033
19034 TEXAS INSTRUMENTS ASoC DRIVERS
19035 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19036 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19037 S:      Maintained
19038 F:      sound/soc/ti/
19039
19040 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
19041 M:      Ricardo Ribalda <ribalda@kernel.org>
19042 L:      linux-iio@vger.kernel.org
19043 S:      Supported
19044 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
19045 F:      drivers/iio/dac/ti-dac7612.c
19046
19047 TEXAS INSTRUMENTS DMA DRIVERS
19048 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19049 L:      dmaengine@vger.kernel.org
19050 S:      Maintained
19051 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
19052 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
19053 F:      Documentation/devicetree/bindings/dma/ti/
19054 F:      drivers/dma/ti/
19055 X:      drivers/dma/ti/cppi41.c
19056 F:      include/linux/dma/k3-udma-glue.h
19057 F:      include/linux/dma/ti-cppi5.h
19058 F:      include/linux/dma/k3-psil.h
19059
19060 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
19061 M:      Nishanth Menon <nm@ti.com>
19062 M:      Tero Kristo <kristo@kernel.org>
19063 M:      Santosh Shilimkar <ssantosh@kernel.org>
19064 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19065 S:      Maintained
19066 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
19067 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
19068 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
19069 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
19070 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
19071 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
19072 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
19073 F:      drivers/clk/keystone/sci-clk.c
19074 F:      drivers/firmware/ti_sci*
19075 F:      drivers/irqchip/irq-ti-sci-inta.c
19076 F:      drivers/irqchip/irq-ti-sci-intr.c
19077 F:      drivers/reset/reset-ti-sci.c
19078 F:      drivers/soc/ti/ti_sci_inta_msi.c
19079 F:      drivers/soc/ti/ti_sci_pm_domains.c
19080 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
19081 F:      include/linux/soc/ti/ti_sci_inta_msi.h
19082 F:      include/linux/soc/ti/ti_sci_protocol.h
19083
19084 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
19085 M:      Robert Marko <robert.marko@sartura.hr>
19086 M:      Luka Perkov <luka.perkov@sartura.hr>
19087 L:      linux-hwmon@vger.kernel.org
19088 S:      Maintained
19089 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
19090 F:      Documentation/hwmon/tps23861.rst
19091 F:      drivers/hwmon/tps23861.c
19092
19093 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
19094 M:      Puranjay Mohan <puranjay12@gmail.com>
19095 L:      linux-iio@vger.kernel.org
19096 S:      Supported
19097 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
19098 F:      drivers/iio/temperature/tmp117.c
19099
19100 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
19101 M:      Hans Verkuil <hverkuil@xs4all.nl>
19102 L:      linux-media@vger.kernel.org
19103 S:      Maintained
19104 W:      https://linuxtv.org
19105 T:      git git://linuxtv.org/media_tree.git
19106 F:      drivers/media/radio/radio-raremono.c
19107
19108 THERMAL
19109 M:      Rafael J. Wysocki <rafael@kernel.org>
19110 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
19111 R:      Amit Kucheria <amitk@kernel.org>
19112 R:      Zhang Rui <rui.zhang@intel.com>
19113 L:      linux-pm@vger.kernel.org
19114 S:      Supported
19115 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
19117 F:      Documentation/ABI/testing/sysfs-class-thermal
19118 F:      Documentation/devicetree/bindings/thermal/
19119 F:      Documentation/driver-api/thermal/
19120 F:      drivers/thermal/
19121 F:      include/linux/cpu_cooling.h
19122 F:      include/linux/thermal.h
19123 F:      include/uapi/linux/thermal.h
19124 F:      tools/thermal/
19125
19126 THERMAL DRIVER FOR AMLOGIC SOCS
19127 M:      Guillaume La Roque <glaroque@baylibre.com>
19128 L:      linux-pm@vger.kernel.org
19129 L:      linux-amlogic@lists.infradead.org
19130 S:      Supported
19131 W:      http://linux-meson.com/
19132 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
19133 F:      drivers/thermal/amlogic_thermal.c
19134
19135 THERMAL/CPU_COOLING
19136 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
19137 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
19138 M:      Viresh Kumar <viresh.kumar@linaro.org>
19139 R:      Lukasz Luba <lukasz.luba@arm.com>
19140 L:      linux-pm@vger.kernel.org
19141 S:      Supported
19142 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
19143 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
19144 F:      drivers/thermal/cpufreq_cooling.c
19145 F:      drivers/thermal/cpuidle_cooling.c
19146 F:      include/linux/cpu_cooling.h
19147
19148 THERMAL/POWER_ALLOCATOR
19149 M:      Lukasz Luba <lukasz.luba@arm.com>
19150 L:      linux-pm@vger.kernel.org
19151 S:      Maintained
19152 F:      Documentation/driver-api/thermal/power_allocator.rst
19153 F:      drivers/thermal/gov_power_allocator.c
19154 F:      include/trace/events/thermal_power_allocator.h
19155
19156 THINKPAD ACPI EXTRAS DRIVER
19157 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
19158 L:      ibm-acpi-devel@lists.sourceforge.net
19159 L:      platform-driver-x86@vger.kernel.org
19160 S:      Maintained
19161 W:      http://ibm-acpi.sourceforge.net
19162 W:      http://thinkwiki.org/wiki/Ibm-acpi
19163 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
19164 F:      drivers/platform/x86/thinkpad_acpi.c
19165
19166 THINKPAD LMI DRIVER
19167 M:      Mark Pearson <markpearson@lenovo.com>
19168 L:      platform-driver-x86@vger.kernel.org
19169 S:      Maintained
19170 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
19171 F:      drivers/platform/x86/think-lmi.?
19172
19173 THUNDERBOLT DMA TRAFFIC TEST DRIVER
19174 M:      Isaac Hazan <isaac.hazan@intel.com>
19175 L:      linux-usb@vger.kernel.org
19176 S:      Maintained
19177 F:      drivers/thunderbolt/dma_test.c
19178
19179 THUNDERBOLT DRIVER
19180 M:      Andreas Noever <andreas.noever@gmail.com>
19181 M:      Michael Jamet <michael.jamet@intel.com>
19182 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
19183 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
19184 L:      linux-usb@vger.kernel.org
19185 S:      Maintained
19186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
19187 F:      Documentation/admin-guide/thunderbolt.rst
19188 F:      drivers/thunderbolt/
19189 F:      include/linux/thunderbolt.h
19190
19191 THUNDERBOLT NETWORK DRIVER
19192 M:      Michael Jamet <michael.jamet@intel.com>
19193 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
19194 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
19195 L:      netdev@vger.kernel.org
19196 S:      Maintained
19197 F:      drivers/net/thunderbolt.c
19198
19199 THUNDERX GPIO DRIVER
19200 M:      Robert Richter <rric@kernel.org>
19201 S:      Odd Fixes
19202 F:      drivers/gpio/gpio-thunderx.c
19203
19204 TI ADS131E0X ADC SERIES DRIVER
19205 M:      Tomislav Denis <tomislav.denis@avl.com>
19206 L:      linux-iio@vger.kernel.org
19207 S:      Maintained
19208 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
19209 F:      drivers/iio/adc/ti-ads131e08.c
19210
19211 TI AM437X VPFE DRIVER
19212 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
19213 L:      linux-media@vger.kernel.org
19214 S:      Maintained
19215 W:      https://linuxtv.org
19216 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19217 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
19218 F:      drivers/media/platform/am437x/
19219
19220 TI BANDGAP AND THERMAL DRIVER
19221 M:      Eduardo Valentin <edubezval@gmail.com>
19222 M:      Keerthy <j-keerthy@ti.com>
19223 L:      linux-pm@vger.kernel.org
19224 L:      linux-omap@vger.kernel.org
19225 S:      Maintained
19226 F:      drivers/thermal/ti-soc-thermal/
19227
19228 TI BQ27XXX POWER SUPPLY DRIVER
19229 F:      drivers/power/supply/bq27xxx_battery.c
19230 F:      drivers/power/supply/bq27xxx_battery_i2c.c
19231 F:      include/linux/power/bq27xxx_battery.h
19232
19233 TI CDCE706 CLOCK DRIVER
19234 M:      Max Filippov <jcmvbkbc@gmail.com>
19235 S:      Maintained
19236 F:      drivers/clk/clk-cdce706.c
19237
19238 TI CLOCK DRIVER
19239 M:      Tero Kristo <kristo@kernel.org>
19240 L:      linux-omap@vger.kernel.org
19241 S:      Odd Fixes
19242 F:      drivers/clk/ti/
19243 F:      include/linux/clk/ti.h
19244
19245 TI DAVINCI MACHINE SUPPORT
19246 M:      Sekhar Nori <nsekhar@ti.com>
19247 R:      Bartosz Golaszewski <brgl@bgdev.pl>
19248 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19249 S:      Supported
19250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
19251 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
19252 F:      arch/arm/boot/dts/da850*
19253 F:      arch/arm/mach-davinci/
19254 F:      drivers/i2c/busses/i2c-davinci.c
19255
19256 TI DAVINCI SERIES CLOCK DRIVER
19257 M:      David Lechner <david@lechnology.com>
19258 R:      Sekhar Nori <nsekhar@ti.com>
19259 S:      Maintained
19260 F:      Documentation/devicetree/bindings/clock/ti/davinci/
19261 F:      drivers/clk/davinci/
19262
19263 TI DAVINCI SERIES GPIO DRIVER
19264 M:      Keerthy <j-keerthy@ti.com>
19265 L:      linux-gpio@vger.kernel.org
19266 S:      Maintained
19267 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
19268 F:      drivers/gpio/gpio-davinci.c
19269
19270 TI DAVINCI SERIES MEDIA DRIVER
19271 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
19272 L:      linux-media@vger.kernel.org
19273 S:      Maintained
19274 W:      https://linuxtv.org
19275 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19276 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
19277 F:      drivers/media/platform/davinci/
19278 F:      include/media/davinci/
19279
19280 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
19281 R:      David Lechner <david@lechnology.com>
19282 L:      linux-iio@vger.kernel.org
19283 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
19284 F:      drivers/counter/ti-eqep.c
19285
19286 TI ETHERNET SWITCH DRIVER (CPSW)
19287 R:      Grygorii Strashko <grygorii.strashko@ti.com>
19288 L:      linux-omap@vger.kernel.org
19289 L:      netdev@vger.kernel.org
19290 S:      Maintained
19291 F:      drivers/net/ethernet/ti/cpsw*
19292 F:      drivers/net/ethernet/ti/davinci*
19293
19294 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
19295 M:      Alex Dubov <oakad@yahoo.com>
19296 S:      Maintained
19297 W:      http://tifmxx.berlios.de/
19298 F:      drivers/memstick/host/tifm_ms.c
19299 F:      drivers/misc/tifm*
19300 F:      drivers/mmc/host/tifm_sd.c
19301 F:      include/linux/tifm.h
19302
19303 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
19304 M:      Nishanth Menon <nm@ti.com>
19305 M:      Santosh Shilimkar <ssantosh@kernel.org>
19306 L:      linux-kernel@vger.kernel.org
19307 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19308 S:      Maintained
19309 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
19310 F:      drivers/soc/ti/*
19311
19312 TI LM49xxx FAMILY ASoC CODEC DRIVERS
19313 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
19314 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
19315 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19316 S:      Maintained
19317 F:      sound/soc/codecs/isabelle*
19318 F:      sound/soc/codecs/lm49453*
19319
19320 TI PCM3060 ASoC CODEC DRIVER
19321 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
19322 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19323 S:      Maintained
19324 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
19325 F:      sound/soc/codecs/pcm3060*
19326
19327 TI TAS571X FAMILY ASoC CODEC DRIVER
19328 M:      Kevin Cernekee <cernekee@chromium.org>
19329 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19330 S:      Odd Fixes
19331 F:      sound/soc/codecs/tas571x*
19332
19333 TI TRF7970A NFC DRIVER
19334 M:      Mark Greer <mgreer@animalcreek.com>
19335 L:      linux-wireless@vger.kernel.org
19336 L:      linux-nfc@lists.01.org (subscribers-only)
19337 S:      Supported
19338 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
19339 F:      drivers/nfc/trf7970a.c
19340
19341 TI TSC2046 ADC DRIVER
19342 M:      Oleksij Rempel <o.rempel@pengutronix.de>
19343 R:      kernel@pengutronix.de
19344 L:      linux-iio@vger.kernel.org
19345 S:      Maintained
19346 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
19347 F:      drivers/iio/adc/ti-tsc2046.c
19348
19349 TI TWL4030 SERIES SOC CODEC DRIVER
19350 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19351 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19352 S:      Maintained
19353 F:      sound/soc/codecs/twl4030*
19354
19355 TI VPE/CAL DRIVERS
19356 M:      Benoit Parrot <bparrot@ti.com>
19357 L:      linux-media@vger.kernel.org
19358 S:      Maintained
19359 W:      http://linuxtv.org/
19360 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19361 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
19362 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
19363 F:      drivers/media/platform/ti-vpe/
19364
19365 TI WILINK WIRELESS DRIVERS
19366 L:      linux-wireless@vger.kernel.org
19367 S:      Orphan
19368 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
19369 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
19370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
19371 F:      drivers/net/wireless/ti/
19372 F:      include/linux/wl12xx.h
19373
19374 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
19375 M:      John Stultz <john.stultz@linaro.org>
19376 M:      Thomas Gleixner <tglx@linutronix.de>
19377 R:      Stephen Boyd <sboyd@kernel.org>
19378 L:      linux-kernel@vger.kernel.org
19379 S:      Supported
19380 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
19381 F:      include/linux/clocksource.h
19382 F:      include/linux/time.h
19383 F:      include/linux/timex.h
19384 F:      include/uapi/linux/time.h
19385 F:      include/uapi/linux/timex.h
19386 F:      kernel/time/alarmtimer.c
19387 F:      kernel/time/clocksource.c
19388 F:      kernel/time/ntp.c
19389 F:      kernel/time/time*.c
19390 F:      tools/testing/selftests/timers/
19391
19392 TIPC NETWORK LAYER
19393 M:      Jon Maloy <jmaloy@redhat.com>
19394 M:      Ying Xue <ying.xue@windriver.com>
19395 L:      netdev@vger.kernel.org (core kernel code)
19396 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
19397 S:      Maintained
19398 W:      http://tipc.sourceforge.net/
19399 F:      include/uapi/linux/tipc*.h
19400 F:      net/tipc/
19401
19402 TLAN NETWORK DRIVER
19403 M:      Samuel Chessman <chessman@tux.org>
19404 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
19405 S:      Maintained
19406 W:      http://sourceforge.net/projects/tlan/
19407 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
19408 F:      drivers/net/ethernet/ti/tlan.*
19409
19410 TM6000 VIDEO4LINUX DRIVER
19411 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19412 L:      linux-media@vger.kernel.org
19413 S:      Odd fixes
19414 W:      https://linuxtv.org
19415 T:      git git://linuxtv.org/media_tree.git
19416 F:      Documentation/admin-guide/media/tm6000*
19417 F:      drivers/media/usb/tm6000/
19418
19419 TMIO/SDHI MMC DRIVER
19420 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
19421 L:      linux-mmc@vger.kernel.org
19422 S:      Supported
19423 F:      drivers/mmc/host/renesas_sdhi*
19424 F:      drivers/mmc/host/tmio_mmc*
19425 F:      include/linux/mfd/tmio.h
19426
19427 TMP401 HARDWARE MONITOR DRIVER
19428 M:      Guenter Roeck <linux@roeck-us.net>
19429 L:      linux-hwmon@vger.kernel.org
19430 S:      Maintained
19431 F:      Documentation/hwmon/tmp401.rst
19432 F:      drivers/hwmon/tmp401.c
19433
19434 TMP513 HARDWARE MONITOR DRIVER
19435 M:      Eric Tremblay <etremblay@distech-controls.com>
19436 L:      linux-hwmon@vger.kernel.org
19437 S:      Maintained
19438 F:      Documentation/hwmon/tmp513.rst
19439 F:      drivers/hwmon/tmp513.c
19440
19441 TMPFS (SHMEM FILESYSTEM)
19442 M:      Hugh Dickins <hughd@google.com>
19443 L:      linux-mm@kvack.org
19444 S:      Maintained
19445 F:      include/linux/shmem_fs.h
19446 F:      mm/shmem.c
19447
19448 TOMOYO SECURITY MODULE
19449 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
19450 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
19451 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
19452 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
19453 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
19454 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
19455 S:      Maintained
19456 W:      https://tomoyo.osdn.jp/
19457 F:      security/tomoyo/
19458
19459 TOPSTAR LAPTOP EXTRAS DRIVER
19460 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
19461 L:      platform-driver-x86@vger.kernel.org
19462 S:      Maintained
19463 F:      drivers/platform/x86/topstar-laptop.c
19464
19465 TORTURE-TEST MODULES
19466 M:      Davidlohr Bueso <dave@stgolabs.net>
19467 M:      "Paul E. McKenney" <paulmck@kernel.org>
19468 M:      Josh Triplett <josh@joshtriplett.org>
19469 L:      linux-kernel@vger.kernel.org
19470 S:      Supported
19471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19472 F:      Documentation/RCU/torture.rst
19473 F:      kernel/locking/locktorture.c
19474 F:      kernel/rcu/rcuscale.c
19475 F:      kernel/rcu/rcutorture.c
19476 F:      kernel/rcu/refscale.c
19477 F:      kernel/torture.c
19478
19479 TOSHIBA ACPI EXTRAS DRIVER
19480 M:      Azael Avalos <coproscefalo@gmail.com>
19481 L:      platform-driver-x86@vger.kernel.org
19482 S:      Maintained
19483 F:      drivers/platform/x86/toshiba_acpi.c
19484
19485 TOSHIBA BLUETOOTH DRIVER
19486 M:      Azael Avalos <coproscefalo@gmail.com>
19487 L:      platform-driver-x86@vger.kernel.org
19488 S:      Maintained
19489 F:      drivers/platform/x86/toshiba_bluetooth.c
19490
19491 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
19492 M:      Azael Avalos <coproscefalo@gmail.com>
19493 L:      platform-driver-x86@vger.kernel.org
19494 S:      Maintained
19495 F:      drivers/platform/x86/toshiba_haps.c
19496
19497 TOSHIBA SMM DRIVER
19498 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
19499 S:      Maintained
19500 W:      http://www.buzzard.org.uk/toshiba/
19501 F:      drivers/char/toshiba.c
19502 F:      include/linux/toshiba.h
19503 F:      include/uapi/linux/toshiba.h
19504
19505 TOSHIBA TC358743 DRIVER
19506 M:      Mats Randgaard <matrandg@cisco.com>
19507 L:      linux-media@vger.kernel.org
19508 S:      Maintained
19509 F:      drivers/media/i2c/tc358743*
19510 F:      include/media/i2c/tc358743.h
19511
19512 TOSHIBA WMI HOTKEYS DRIVER
19513 M:      Azael Avalos <coproscefalo@gmail.com>
19514 L:      platform-driver-x86@vger.kernel.org
19515 S:      Maintained
19516 F:      drivers/platform/x86/toshiba-wmi.c
19517
19518 TPM DEVICE DRIVER
19519 M:      Peter Huewe <peterhuewe@gmx.de>
19520 M:      Jarkko Sakkinen <jarkko@kernel.org>
19521 R:      Jason Gunthorpe <jgg@ziepe.ca>
19522 L:      linux-integrity@vger.kernel.org
19523 S:      Maintained
19524 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
19525 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
19526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
19527 F:      drivers/char/tpm/
19528
19529 TRACING
19530 M:      Steven Rostedt <rostedt@goodmis.org>
19531 M:      Ingo Molnar <mingo@redhat.com>
19532 S:      Maintained
19533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
19534 F:      Documentation/trace/ftrace.rst
19535 F:      arch/*/*/*/ftrace.h
19536 F:      arch/*/kernel/ftrace.c
19537 F:      fs/tracefs/
19538 F:      include/*/ftrace.h
19539 F:      include/linux/trace*.h
19540 F:      include/trace/
19541 F:      kernel/trace/
19542 F:      tools/testing/selftests/ftrace/
19543
19544 TRACING MMIO ACCESSES (MMIOTRACE)
19545 M:      Steven Rostedt <rostedt@goodmis.org>
19546 M:      Ingo Molnar <mingo@kernel.org>
19547 R:      Karol Herbst <karolherbst@gmail.com>
19548 R:      Pekka Paalanen <ppaalanen@gmail.com>
19549 L:      linux-kernel@vger.kernel.org
19550 L:      nouveau@lists.freedesktop.org
19551 S:      Maintained
19552 F:      arch/x86/mm/kmmio.c
19553 F:      arch/x86/mm/mmio-mod.c
19554 F:      arch/x86/mm/testmmiotrace.c
19555 F:      include/linux/mmiotrace.h
19556 F:      kernel/trace/trace_mmiotrace.c
19557
19558 TRACING OS NOISE / LATENCY TRACERS
19559 M:      Steven Rostedt <rostedt@goodmis.org>
19560 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
19561 S:      Maintained
19562 F:      kernel/trace/trace_osnoise.c
19563 F:      include/trace/events/osnoise.h
19564 F:      kernel/trace/trace_hwlat.c
19565 F:      kernel/trace/trace_irqsoff.c
19566 F:      kernel/trace/trace_sched_wakeup.c
19567 F:      Documentation/trace/osnoise-tracer.rst
19568 F:      Documentation/trace/timerlat-tracer.rst
19569 F:      Documentation/trace/hwlat_detector.rst
19570 F:      arch/*/kernel/trace.c
19571
19572 TRADITIONAL CHINESE DOCUMENTATION
19573 M:      Hu Haowen <src.res@email.cn>
19574 L:      linux-doc-tw-discuss@lists.sourceforge.net
19575 S:      Maintained
19576 W:      https://github.com/srcres258/linux-doc
19577 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
19578 F:      Documentation/translations/zh_TW/
19579
19580 TTY LAYER
19581 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19582 M:      Jiri Slaby <jirislaby@kernel.org>
19583 S:      Supported
19584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
19585 F:      Documentation/driver-api/serial/
19586 F:      drivers/tty/
19587 F:      drivers/tty/serial/serial_core.c
19588 F:      include/linux/selection.h
19589 F:      include/linux/serial.h
19590 F:      include/linux/serial_core.h
19591 F:      include/linux/sysrq.h
19592 F:      include/linux/tty*.h
19593 F:      include/linux/vt.h
19594 F:      include/linux/vt_*.h
19595 F:      include/uapi/linux/serial.h
19596 F:      include/uapi/linux/serial_core.h
19597 F:      include/uapi/linux/tty.h
19598
19599 TUA9001 MEDIA DRIVER
19600 M:      Antti Palosaari <crope@iki.fi>
19601 L:      linux-media@vger.kernel.org
19602 S:      Maintained
19603 W:      https://linuxtv.org
19604 W:      http://palosaari.fi/linux/
19605 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19606 T:      git git://linuxtv.org/anttip/media_tree.git
19607 F:      drivers/media/tuners/tua9001*
19608
19609 TULIP NETWORK DRIVERS
19610 L:      netdev@vger.kernel.org
19611 L:      linux-parisc@vger.kernel.org
19612 S:      Orphan
19613 F:      drivers/net/ethernet/dec/tulip/
19614
19615 TUN/TAP driver
19616 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
19617 S:      Maintained
19618 W:      http://vtun.sourceforge.net/tun
19619 F:      Documentation/networking/tuntap.rst
19620 F:      arch/um/os-Linux/drivers/
19621
19622 TURBOCHANNEL SUBSYSTEM
19623 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
19624 M:      Ralf Baechle <ralf@linux-mips.org>
19625 L:      linux-mips@vger.kernel.org
19626 S:      Maintained
19627 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
19628 F:      drivers/tc/
19629 F:      include/linux/tc.h
19630
19631 TURBOSTAT UTILITY
19632 M:      "Len Brown" <lenb@kernel.org>
19633 L:      linux-pm@vger.kernel.org
19634 S:      Supported
19635 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19636 B:      https://bugzilla.kernel.org
19637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
19638 F:      tools/power/x86/turbostat/
19639
19640 TW5864 VIDEO4LINUX DRIVER
19641 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19642 M:      Anton Sviridenko <anton@corp.bluecherry.net>
19643 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
19644 M:      Andrey Utkin <andrey_utkin@fastmail.com>
19645 L:      linux-media@vger.kernel.org
19646 S:      Supported
19647 F:      drivers/media/pci/tw5864/
19648
19649 TW68 VIDEO4LINUX DRIVER
19650 M:      Hans Verkuil <hverkuil@xs4all.nl>
19651 L:      linux-media@vger.kernel.org
19652 S:      Odd Fixes
19653 W:      https://linuxtv.org
19654 T:      git git://linuxtv.org/media_tree.git
19655 F:      drivers/media/pci/tw68/
19656
19657 TW686X VIDEO4LINUX DRIVER
19658 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19659 L:      linux-media@vger.kernel.org
19660 S:      Maintained
19661 W:      http://linuxtv.org
19662 T:      git git://linuxtv.org/media_tree.git
19663 F:      drivers/media/pci/tw686x/
19664
19665 UACCE ACCELERATOR FRAMEWORK
19666 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
19667 M:      Zhou Wang <wangzhou1@hisilicon.com>
19668 L:      linux-accelerators@lists.ozlabs.org
19669 L:      linux-kernel@vger.kernel.org
19670 S:      Maintained
19671 F:      Documentation/ABI/testing/sysfs-driver-uacce
19672 F:      Documentation/misc-devices/uacce.rst
19673 F:      drivers/misc/uacce/
19674 F:      include/linux/uacce.h
19675 F:      include/uapi/misc/uacce/
19676
19677 UBI FILE SYSTEM (UBIFS)
19678 M:      Richard Weinberger <richard@nod.at>
19679 L:      linux-mtd@lists.infradead.org
19680 S:      Supported
19681 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
19682 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19684 F:      Documentation/ABI/testing/sysfs-fs-ubifs
19685 F:      Documentation/filesystems/ubifs-authentication.rst
19686 F:      Documentation/filesystems/ubifs.rst
19687 F:      fs/ubifs/
19688
19689 UCLINUX (M68KNOMMU AND COLDFIRE)
19690 M:      Greg Ungerer <gerg@linux-m68k.org>
19691 L:      linux-m68k@lists.linux-m68k.org
19692 L:      uclinux-dev@uclinux.org  (subscribers-only)
19693 S:      Maintained
19694 W:      http://www.linux-m68k.org/
19695 W:      http://www.uclinux.org/
19696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
19697 F:      arch/m68k/*/*_no.*
19698 F:      arch/m68k/68*/
19699 F:      arch/m68k/coldfire/
19700 F:      arch/m68k/include/asm/*_no.*
19701
19702 UDF FILESYSTEM
19703 M:      Jan Kara <jack@suse.com>
19704 S:      Maintained
19705 F:      Documentation/filesystems/udf.rst
19706 F:      fs/udf/
19707
19708 UDRAW TABLET
19709 M:      Bastien Nocera <hadess@hadess.net>
19710 L:      linux-input@vger.kernel.org
19711 S:      Maintained
19712 F:      drivers/hid/hid-udraw-ps3.c
19713
19714 UFS FILESYSTEM
19715 M:      Evgeniy Dushistov <dushistov@mail.ru>
19716 S:      Maintained
19717 F:      Documentation/admin-guide/ufs.rst
19718 F:      fs/ufs/
19719
19720 UHID USERSPACE HID IO DRIVER
19721 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19722 L:      linux-input@vger.kernel.org
19723 S:      Maintained
19724 F:      drivers/hid/uhid.c
19725 F:      include/uapi/linux/uhid.h
19726
19727 ULPI BUS
19728 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19729 L:      linux-usb@vger.kernel.org
19730 S:      Maintained
19731 F:      drivers/usb/common/ulpi.c
19732 F:      include/linux/ulpi/
19733
19734 UNICODE SUBSYSTEM
19735 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
19736 L:      linux-fsdevel@vger.kernel.org
19737 S:      Supported
19738 F:      fs/unicode/
19739
19740 UNIFDEF
19741 M:      Tony Finch <dot@dotat.at>
19742 S:      Maintained
19743 W:      http://dotat.at/prog/unifdef
19744 F:      scripts/unifdef.c
19745
19746 UNIFORM CDROM DRIVER
19747 M:      Phillip Potter <phil@philpotter.co.uk>
19748 S:      Maintained
19749 F:      Documentation/cdrom/
19750 F:      drivers/cdrom/cdrom.c
19751 F:      include/linux/cdrom.h
19752 F:      include/uapi/linux/cdrom.h
19753
19754 UNISYS S-PAR DRIVERS
19755 M:      David Kershner <david.kershner@unisys.com>
19756 L:      sparmaintainer@unisys.com (Unisys internal)
19757 S:      Supported
19758 F:      drivers/staging/unisys/
19759 F:      drivers/visorbus/
19760 F:      include/linux/visorbus.h
19761
19762 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
19763 R:      Alim Akhtar <alim.akhtar@samsung.com>
19764 R:      Avri Altman <avri.altman@wdc.com>
19765 L:      linux-scsi@vger.kernel.org
19766 S:      Supported
19767 F:      Documentation/scsi/ufs.rst
19768 F:      drivers/scsi/ufs/
19769
19770 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
19771 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
19772 L:      linux-scsi@vger.kernel.org
19773 S:      Supported
19774 F:      drivers/scsi/ufs/*dwc*
19775
19776 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
19777 M:      Stanley Chu <stanley.chu@mediatek.com>
19778 L:      linux-scsi@vger.kernel.org
19779 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
19780 S:      Maintained
19781 F:      drivers/scsi/ufs/ufs-mediatek*
19782
19783 UNSORTED BLOCK IMAGES (UBI)
19784 M:      Richard Weinberger <richard@nod.at>
19785 L:      linux-mtd@lists.infradead.org
19786 S:      Supported
19787 W:      http://www.linux-mtd.infradead.org/
19788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19790 F:      drivers/mtd/ubi/
19791 F:      include/linux/mtd/ubi.h
19792 F:      include/uapi/mtd/ubi-user.h
19793
19794 USB "USBNET" DRIVER FRAMEWORK
19795 M:      Oliver Neukum <oneukum@suse.com>
19796 L:      netdev@vger.kernel.org
19797 S:      Maintained
19798 W:      http://www.linux-usb.org/usbnet
19799 F:      drivers/net/usb/usbnet.c
19800 F:      include/linux/usb/usbnet.h
19801
19802 USB ACM DRIVER
19803 M:      Oliver Neukum <oneukum@suse.com>
19804 L:      linux-usb@vger.kernel.org
19805 S:      Maintained
19806 F:      Documentation/usb/acm.rst
19807 F:      drivers/usb/class/cdc-acm.*
19808
19809 USB APPLE MFI FASTCHARGE DRIVER
19810 M:      Bastien Nocera <hadess@hadess.net>
19811 L:      linux-usb@vger.kernel.org
19812 S:      Maintained
19813 F:      drivers/usb/misc/apple-mfi-fastcharge.c
19814
19815 USB AR5523 WIRELESS DRIVER
19816 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
19817 L:      linux-wireless@vger.kernel.org
19818 S:      Maintained
19819 F:      drivers/net/wireless/ath/ar5523/
19820
19821 USB ATTACHED SCSI
19822 M:      Oliver Neukum <oneukum@suse.com>
19823 L:      linux-usb@vger.kernel.org
19824 L:      linux-scsi@vger.kernel.org
19825 S:      Maintained
19826 F:      drivers/usb/storage/uas.c
19827
19828 USB CDC ETHERNET DRIVER
19829 M:      Oliver Neukum <oliver@neukum.org>
19830 L:      linux-usb@vger.kernel.org
19831 S:      Maintained
19832 F:      drivers/net/usb/cdc_*.c
19833 F:      include/uapi/linux/usb/cdc.h
19834
19835 USB CHAOSKEY DRIVER
19836 M:      Keith Packard <keithp@keithp.com>
19837 L:      linux-usb@vger.kernel.org
19838 S:      Maintained
19839 F:      drivers/usb/misc/chaoskey.c
19840
19841 USB CYPRESS C67X00 DRIVER
19842 L:      linux-usb@vger.kernel.org
19843 S:      Orphan
19844 F:      drivers/usb/c67x00/
19845
19846 USB DAVICOM DM9601 DRIVER
19847 M:      Peter Korsgaard <peter@korsgaard.com>
19848 L:      netdev@vger.kernel.org
19849 S:      Maintained
19850 W:      http://www.linux-usb.org/usbnet
19851 F:      drivers/net/usb/dm9601.c
19852
19853 USB EHCI DRIVER
19854 M:      Alan Stern <stern@rowland.harvard.edu>
19855 L:      linux-usb@vger.kernel.org
19856 S:      Maintained
19857 F:      Documentation/usb/ehci.rst
19858 F:      drivers/usb/host/ehci*
19859
19860 USB GADGET/PERIPHERAL SUBSYSTEM
19861 M:      Felipe Balbi <balbi@kernel.org>
19862 L:      linux-usb@vger.kernel.org
19863 S:      Maintained
19864 W:      http://www.linux-usb.org/gadget
19865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19866 F:      drivers/usb/gadget/
19867 F:      include/linux/usb/gadget*
19868
19869 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
19870 M:      Jiri Kosina <jikos@kernel.org>
19871 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
19872 L:      linux-usb@vger.kernel.org
19873 S:      Maintained
19874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
19875 F:      Documentation/hid/hiddev.rst
19876 F:      drivers/hid/usbhid/
19877
19878 USB INTEL XHCI ROLE MUX DRIVER
19879 M:      Hans de Goede <hdegoede@redhat.com>
19880 L:      linux-usb@vger.kernel.org
19881 S:      Maintained
19882 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
19883
19884 USB IP DRIVER FOR HISILICON KIRIN 960
19885 M:      Yu Chen <chenyu56@huawei.com>
19886 M:      Binghui Wang <wangbinghui@hisilicon.com>
19887 L:      linux-usb@vger.kernel.org
19888 S:      Maintained
19889 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
19890 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
19891
19892 USB IP DRIVER FOR HISILICON KIRIN 970
19893 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19894 L:      linux-usb@vger.kernel.org
19895 S:      Maintained
19896 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
19897 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
19898
19899 USB ISP116X DRIVER
19900 M:      Olav Kongas <ok@artecdesign.ee>
19901 L:      linux-usb@vger.kernel.org
19902 S:      Maintained
19903 F:      drivers/usb/host/isp116x*
19904 F:      include/linux/usb/isp116x.h
19905
19906 USB ISP1760 DRIVER
19907 M:      Rui Miguel Silva <rui.silva@linaro.org>
19908 L:      linux-usb@vger.kernel.org
19909 S:      Maintained
19910 F:      drivers/usb/isp1760/*
19911 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
19912
19913 USB LAN78XX ETHERNET DRIVER
19914 M:      Woojung Huh <woojung.huh@microchip.com>
19915 M:      UNGLinuxDriver@microchip.com
19916 L:      netdev@vger.kernel.org
19917 S:      Maintained
19918 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
19919 F:      drivers/net/usb/lan78xx.*
19920 F:      include/dt-bindings/net/microchip-lan78xx.h
19921
19922 USB MASS STORAGE DRIVER
19923 M:      Alan Stern <stern@rowland.harvard.edu>
19924 L:      linux-usb@vger.kernel.org
19925 L:      usb-storage@lists.one-eyed-alien.net
19926 S:      Maintained
19927 F:      drivers/usb/storage/
19928
19929 USB MIDI DRIVER
19930 M:      Clemens Ladisch <clemens@ladisch.de>
19931 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19932 S:      Maintained
19933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19934 F:      sound/usb/midi.*
19935
19936 USB NETWORKING DRIVERS
19937 L:      linux-usb@vger.kernel.org
19938 S:      Odd Fixes
19939 F:      drivers/net/usb/
19940
19941 USB OHCI DRIVER
19942 M:      Alan Stern <stern@rowland.harvard.edu>
19943 L:      linux-usb@vger.kernel.org
19944 S:      Maintained
19945 F:      Documentation/usb/ohci.rst
19946 F:      drivers/usb/host/ohci*
19947
19948 USB OTG FSM (Finite State Machine)
19949 M:      Peter Chen <peter.chen@kernel.org>
19950 L:      linux-usb@vger.kernel.org
19951 S:      Maintained
19952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
19953 F:      drivers/usb/common/usb-otg-fsm.c
19954
19955 USB OVER IP DRIVER
19956 M:      Valentina Manea <valentina.manea.m@gmail.com>
19957 M:      Shuah Khan <shuah@kernel.org>
19958 M:      Shuah Khan <skhan@linuxfoundation.org>
19959 L:      linux-usb@vger.kernel.org
19960 S:      Maintained
19961 F:      Documentation/usb/usbip_protocol.rst
19962 F:      drivers/usb/usbip/
19963 F:      tools/testing/selftests/drivers/usb/usbip/
19964 F:      tools/usb/usbip/
19965
19966 USB PEGASUS DRIVER
19967 M:      Petko Manolov <petkan@nucleusys.com>
19968 L:      linux-usb@vger.kernel.org
19969 L:      netdev@vger.kernel.org
19970 S:      Maintained
19971 W:      https://github.com/petkan/pegasus
19972 T:      git git://github.com/petkan/pegasus.git
19973 F:      drivers/net/usb/pegasus.*
19974
19975 USB PHY LAYER
19976 M:      Felipe Balbi <balbi@kernel.org>
19977 L:      linux-usb@vger.kernel.org
19978 S:      Maintained
19979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19980 F:      drivers/usb/phy/
19981
19982 USB PRINTER DRIVER (usblp)
19983 M:      Pete Zaitcev <zaitcev@redhat.com>
19984 L:      linux-usb@vger.kernel.org
19985 S:      Supported
19986 F:      drivers/usb/class/usblp.c
19987
19988 USB RAW GADGET DRIVER
19989 R:      Andrey Konovalov <andreyknvl@gmail.com>
19990 L:      linux-usb@vger.kernel.org
19991 S:      Maintained
19992 F:      Documentation/usb/raw-gadget.rst
19993 F:      drivers/usb/gadget/legacy/raw_gadget.c
19994 F:      include/uapi/linux/usb/raw_gadget.h
19995
19996 USB QMI WWAN NETWORK DRIVER
19997 M:      Bjørn Mork <bjorn@mork.no>
19998 L:      netdev@vger.kernel.org
19999 S:      Maintained
20000 F:      Documentation/ABI/testing/sysfs-class-net-qmi
20001 F:      drivers/net/usb/qmi_wwan.c
20002
20003 USB RTL8150 DRIVER
20004 M:      Petko Manolov <petkan@nucleusys.com>
20005 L:      linux-usb@vger.kernel.org
20006 L:      netdev@vger.kernel.org
20007 S:      Maintained
20008 W:      https://github.com/petkan/rtl8150
20009 T:      git git://github.com/petkan/rtl8150.git
20010 F:      drivers/net/usb/rtl8150.c
20011
20012 USB SERIAL SUBSYSTEM
20013 M:      Johan Hovold <johan@kernel.org>
20014 L:      linux-usb@vger.kernel.org
20015 S:      Maintained
20016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
20017 F:      Documentation/usb/usb-serial.rst
20018 F:      drivers/usb/serial/
20019 F:      include/linux/usb/serial.h
20020
20021 USB SMSC75XX ETHERNET DRIVER
20022 M:      Steve Glendinning <steve.glendinning@shawell.net>
20023 L:      netdev@vger.kernel.org
20024 S:      Maintained
20025 F:      drivers/net/usb/smsc75xx.*
20026
20027 USB SMSC95XX ETHERNET DRIVER
20028 M:      Steve Glendinning <steve.glendinning@shawell.net>
20029 M:      UNGLinuxDriver@microchip.com
20030 L:      netdev@vger.kernel.org
20031 S:      Maintained
20032 F:      drivers/net/usb/smsc95xx.*
20033
20034 USB SUBSYSTEM
20035 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20036 L:      linux-usb@vger.kernel.org
20037 S:      Supported
20038 W:      http://www.linux-usb.org
20039 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
20040 F:      Documentation/devicetree/bindings/usb/
20041 F:      Documentation/usb/
20042 F:      drivers/usb/
20043 F:      include/linux/usb.h
20044 F:      include/linux/usb/
20045
20046 USB TYPEC BUS FOR ALTERNATE MODES
20047 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20048 L:      linux-usb@vger.kernel.org
20049 S:      Maintained
20050 F:      Documentation/ABI/testing/sysfs-bus-typec
20051 F:      Documentation/driver-api/usb/typec_bus.rst
20052 F:      drivers/usb/typec/altmodes/
20053 F:      include/linux/usb/typec_altmode.h
20054
20055 USB TYPEC CLASS
20056 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20057 L:      linux-usb@vger.kernel.org
20058 S:      Maintained
20059 F:      Documentation/ABI/testing/sysfs-class-typec
20060 F:      Documentation/driver-api/usb/typec.rst
20061 F:      drivers/usb/typec/
20062 F:      include/linux/usb/typec.h
20063
20064 USB TYPEC INTEL PMC MUX DRIVER
20065 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20066 L:      linux-usb@vger.kernel.org
20067 S:      Maintained
20068 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
20069 F:      drivers/usb/typec/mux/intel_pmc_mux.c
20070
20071 USB TYPEC PI3USB30532 MUX DRIVER
20072 M:      Hans de Goede <hdegoede@redhat.com>
20073 L:      linux-usb@vger.kernel.org
20074 S:      Maintained
20075 F:      drivers/usb/typec/mux/pi3usb30532.c
20076
20077 USB TYPEC PORT CONTROLLER DRIVERS
20078 M:      Guenter Roeck <linux@roeck-us.net>
20079 L:      linux-usb@vger.kernel.org
20080 S:      Maintained
20081 F:      drivers/usb/typec/tcpm/
20082
20083 USB UHCI DRIVER
20084 M:      Alan Stern <stern@rowland.harvard.edu>
20085 L:      linux-usb@vger.kernel.org
20086 S:      Maintained
20087 F:      drivers/usb/host/uhci*
20088
20089 USB VIDEO CLASS
20090 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20091 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
20092 L:      linux-media@vger.kernel.org
20093 S:      Maintained
20094 W:      http://www.ideasonboard.org/uvc/
20095 T:      git git://linuxtv.org/media_tree.git
20096 F:      drivers/media/usb/uvc/
20097 F:      include/uapi/linux/uvcvideo.h
20098
20099 USB WEBCAM GADGET
20100 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20101 L:      linux-usb@vger.kernel.org
20102 S:      Maintained
20103 F:      drivers/usb/gadget/function/*uvc*
20104 F:      drivers/usb/gadget/legacy/webcam.c
20105 F:      include/uapi/linux/usb/g_uvc.h
20106
20107 USB WIRELESS RNDIS DRIVER (rndis_wlan)
20108 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
20109 L:      linux-wireless@vger.kernel.org
20110 S:      Maintained
20111 F:      drivers/net/wireless/rndis_wlan.c
20112
20113 USB XHCI DRIVER
20114 M:      Mathias Nyman <mathias.nyman@intel.com>
20115 L:      linux-usb@vger.kernel.org
20116 S:      Supported
20117 F:      drivers/usb/host/pci-quirks*
20118 F:      drivers/usb/host/xhci*
20119
20120 USB ZD1201 DRIVER
20121 L:      linux-wireless@vger.kernel.org
20122 S:      Orphan
20123 W:      http://linux-lc100020.sourceforge.net
20124 F:      drivers/net/wireless/zydas/zd1201.*
20125
20126 USB ZR364XX DRIVER
20127 M:      Antoine Jacquet <royale@zerezo.com>
20128 L:      linux-usb@vger.kernel.org
20129 L:      linux-media@vger.kernel.org
20130 S:      Maintained
20131 W:      http://royale.zerezo.com/zr364xx/
20132 T:      git git://linuxtv.org/media_tree.git
20133 F:      Documentation/admin-guide/media/zr364xx*
20134 F:      drivers/media/usb/zr364xx/
20135
20136 USER-MODE LINUX (UML)
20137 M:      Jeff Dike <jdike@addtoit.com>
20138 M:      Richard Weinberger <richard@nod.at>
20139 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
20140 L:      linux-um@lists.infradead.org
20141 S:      Maintained
20142 W:      http://user-mode-linux.sourceforge.net
20143 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
20144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
20145 F:      Documentation/virt/uml/
20146 F:      arch/um/
20147 F:      arch/x86/um/
20148 F:      fs/hostfs/
20149
20150 USERSPACE COPYIN/COPYOUT (UIOVEC)
20151 M:      Alexander Viro <viro@zeniv.linux.org.uk>
20152 S:      Maintained
20153 F:      include/linux/uio.h
20154 F:      lib/iov_iter.c
20155
20156 USERSPACE DMA BUFFER DRIVER
20157 M:      Gerd Hoffmann <kraxel@redhat.com>
20158 L:      dri-devel@lists.freedesktop.org
20159 S:      Maintained
20160 T:      git git://anongit.freedesktop.org/drm/drm-misc
20161 F:      drivers/dma-buf/udmabuf.c
20162 F:      include/uapi/linux/udmabuf.h
20163
20164 USERSPACE I/O (UIO)
20165 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20166 S:      Maintained
20167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20168 F:      Documentation/driver-api/uio-howto.rst
20169 F:      drivers/uio/
20170 F:      include/linux/uio_driver.h
20171
20172 UTIL-LINUX PACKAGE
20173 M:      Karel Zak <kzak@redhat.com>
20174 L:      util-linux@vger.kernel.org
20175 S:      Maintained
20176 W:      http://en.wikipedia.org/wiki/Util-linux
20177 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
20178
20179 UUID HELPERS
20180 M:      Christoph Hellwig <hch@lst.de>
20181 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20182 L:      linux-kernel@vger.kernel.org
20183 S:      Maintained
20184 T:      git git://git.infradead.org/users/hch/uuid.git
20185 F:      include/linux/uuid.h
20186 F:      include/uapi/linux/uuid.h
20187 F:      lib/test_uuid.c
20188 F:      lib/uuid.c
20189
20190 UV SYSFS DRIVER
20191 M:      Justin Ernst <justin.ernst@hpe.com>
20192 L:      platform-driver-x86@vger.kernel.org
20193 S:      Maintained
20194 F:      drivers/platform/x86/uv_sysfs.c
20195
20196 UVESAFB DRIVER
20197 M:      Michal Januszewski <spock@gentoo.org>
20198 L:      linux-fbdev@vger.kernel.org
20199 S:      Maintained
20200 W:      https://github.com/mjanusz/v86d
20201 F:      Documentation/fb/uvesafb.rst
20202 F:      drivers/video/fbdev/uvesafb.*
20203
20204 Ux500 CLOCK DRIVERS
20205 M:      Ulf Hansson <ulf.hansson@linaro.org>
20206 L:      linux-clk@vger.kernel.org
20207 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20208 S:      Maintained
20209 F:      drivers/clk/ux500/
20210
20211 VF610 NAND DRIVER
20212 M:      Stefan Agner <stefan@agner.ch>
20213 L:      linux-mtd@lists.infradead.org
20214 S:      Supported
20215 F:      drivers/mtd/nand/raw/vf610_nfc.c
20216
20217 VFAT/FAT/MSDOS FILESYSTEM
20218 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
20219 S:      Maintained
20220 F:      Documentation/filesystems/vfat.rst
20221 F:      fs/fat/
20222
20223 VFIO DRIVER
20224 M:      Alex Williamson <alex.williamson@redhat.com>
20225 R:      Cornelia Huck <cohuck@redhat.com>
20226 L:      kvm@vger.kernel.org
20227 S:      Maintained
20228 T:      git git://github.com/awilliam/linux-vfio.git
20229 F:      Documentation/driver-api/vfio.rst
20230 F:      drivers/vfio/
20231 F:      include/linux/vfio.h
20232 F:      include/linux/vfio_pci_core.h
20233 F:      include/uapi/linux/vfio.h
20234
20235 VFIO FSL-MC DRIVER
20236 M:      Diana Craciun <diana.craciun@oss.nxp.com>
20237 L:      kvm@vger.kernel.org
20238 S:      Maintained
20239 F:      drivers/vfio/fsl-mc/
20240
20241 VFIO MEDIATED DEVICE DRIVERS
20242 M:      Kirti Wankhede <kwankhede@nvidia.com>
20243 L:      kvm@vger.kernel.org
20244 S:      Maintained
20245 F:      Documentation/driver-api/vfio-mediated-device.rst
20246 F:      drivers/vfio/mdev/
20247 F:      include/linux/mdev.h
20248 F:      samples/vfio-mdev/
20249
20250 VFIO PLATFORM DRIVER
20251 M:      Eric Auger <eric.auger@redhat.com>
20252 L:      kvm@vger.kernel.org
20253 S:      Maintained
20254 F:      drivers/vfio/platform/
20255
20256 VGA_SWITCHEROO
20257 R:      Lukas Wunner <lukas@wunner.de>
20258 S:      Maintained
20259 T:      git git://anongit.freedesktop.org/drm/drm-misc
20260 F:      Documentation/gpu/vga-switcheroo.rst
20261 F:      drivers/gpu/vga/vga_switcheroo.c
20262 F:      include/linux/vga_switcheroo.h
20263
20264 VIA RHINE NETWORK DRIVER
20265 S:      Maintained
20266 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
20267 F:      drivers/net/ethernet/via/via-rhine.c
20268
20269 VIA SD/MMC CARD CONTROLLER DRIVER
20270 M:      Bruce Chang <brucechang@via.com.tw>
20271 M:      Harald Welte <HaraldWelte@viatech.com>
20272 S:      Maintained
20273 F:      drivers/mmc/host/via-sdmmc.c
20274
20275 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
20276 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
20277 L:      linux-fbdev@vger.kernel.org
20278 S:      Maintained
20279 F:      drivers/video/fbdev/via/
20280 F:      include/linux/via-core.h
20281 F:      include/linux/via-gpio.h
20282 F:      include/linux/via_i2c.h
20283
20284 VIA VELOCITY NETWORK DRIVER
20285 M:      Francois Romieu <romieu@fr.zoreil.com>
20286 L:      netdev@vger.kernel.org
20287 S:      Maintained
20288 F:      drivers/net/ethernet/via/via-velocity.*
20289
20290 VICODEC VIRTUAL CODEC DRIVER
20291 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
20292 L:      linux-media@vger.kernel.org
20293 S:      Maintained
20294 W:      https://linuxtv.org
20295 T:      git git://linuxtv.org/media_tree.git
20296 F:      drivers/media/test-drivers/vicodec/*
20297
20298 VIDEO I2C POLLING DRIVER
20299 M:      Matt Ranostay <matt.ranostay@konsulko.com>
20300 L:      linux-media@vger.kernel.org
20301 S:      Maintained
20302 F:      drivers/media/i2c/video-i2c.c
20303
20304 VIDEO MULTIPLEXER DRIVER
20305 M:      Philipp Zabel <p.zabel@pengutronix.de>
20306 L:      linux-media@vger.kernel.org
20307 S:      Maintained
20308 F:      drivers/media/platform/video-mux.c
20309
20310 VIDEOBUF2 FRAMEWORK
20311 M:      Tomasz Figa <tfiga@chromium.org>
20312 M:      Marek Szyprowski <m.szyprowski@samsung.com>
20313 L:      linux-media@vger.kernel.org
20314 S:      Maintained
20315 F:      drivers/media/common/videobuf2/*
20316 F:      include/media/videobuf2-*
20317
20318 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
20319 M:      Helen Koike <helen.koike@collabora.com>
20320 R:      Shuah Khan <skhan@linuxfoundation.org>
20321 L:      linux-media@vger.kernel.org
20322 S:      Maintained
20323 W:      https://linuxtv.org
20324 T:      git git://linuxtv.org/media_tree.git
20325 F:      drivers/media/test-drivers/vimc/*
20326
20327 VIRT LIB
20328 M:      Alex Williamson <alex.williamson@redhat.com>
20329 M:      Paolo Bonzini <pbonzini@redhat.com>
20330 L:      kvm@vger.kernel.org
20331 S:      Supported
20332 F:      virt/lib/
20333
20334 VIRTIO AND VHOST VSOCK DRIVER
20335 M:      Stefan Hajnoczi <stefanha@redhat.com>
20336 M:      Stefano Garzarella <sgarzare@redhat.com>
20337 L:      kvm@vger.kernel.org
20338 L:      virtualization@lists.linux-foundation.org
20339 L:      netdev@vger.kernel.org
20340 S:      Maintained
20341 F:      drivers/vhost/vsock.c
20342 F:      include/linux/virtio_vsock.h
20343 F:      include/uapi/linux/virtio_vsock.h
20344 F:      net/vmw_vsock/virtio_transport.c
20345 F:      net/vmw_vsock/virtio_transport_common.c
20346
20347 VIRTIO BLOCK AND SCSI DRIVERS
20348 M:      "Michael S. Tsirkin" <mst@redhat.com>
20349 M:      Jason Wang <jasowang@redhat.com>
20350 R:      Paolo Bonzini <pbonzini@redhat.com>
20351 R:      Stefan Hajnoczi <stefanha@redhat.com>
20352 L:      virtualization@lists.linux-foundation.org
20353 S:      Maintained
20354 F:      drivers/block/virtio_blk.c
20355 F:      drivers/scsi/virtio_scsi.c
20356 F:      drivers/vhost/scsi.c
20357 F:      include/uapi/linux/virtio_blk.h
20358 F:      include/uapi/linux/virtio_scsi.h
20359
20360 VIRTIO CONSOLE DRIVER
20361 M:      Amit Shah <amit@kernel.org>
20362 L:      virtualization@lists.linux-foundation.org
20363 S:      Maintained
20364 F:      drivers/char/virtio_console.c
20365 F:      include/linux/virtio_console.h
20366 F:      include/uapi/linux/virtio_console.h
20367
20368 VIRTIO CORE AND NET DRIVERS
20369 M:      "Michael S. Tsirkin" <mst@redhat.com>
20370 M:      Jason Wang <jasowang@redhat.com>
20371 L:      virtualization@lists.linux-foundation.org
20372 S:      Maintained
20373 F:      Documentation/devicetree/bindings/virtio/
20374 F:      drivers/block/virtio_blk.c
20375 F:      drivers/crypto/virtio/
20376 F:      drivers/net/virtio_net.c
20377 F:      drivers/vdpa/
20378 F:      drivers/virtio/
20379 F:      include/linux/vdpa.h
20380 F:      include/linux/virtio*.h
20381 F:      include/uapi/linux/virtio_*.h
20382 F:      tools/virtio/
20383
20384 VIRTIO BALLOON
20385 M:      "Michael S. Tsirkin" <mst@redhat.com>
20386 M:      David Hildenbrand <david@redhat.com>
20387 L:      virtualization@lists.linux-foundation.org
20388 S:      Maintained
20389 F:      drivers/virtio/virtio_balloon.c
20390 F:      include/uapi/linux/virtio_balloon.h
20391 F:      include/linux/balloon_compaction.h
20392 F:      mm/balloon_compaction.c
20393
20394 VIRTIO CRYPTO DRIVER
20395 M:      Gonglei <arei.gonglei@huawei.com>
20396 L:      virtualization@lists.linux-foundation.org
20397 L:      linux-crypto@vger.kernel.org
20398 S:      Maintained
20399 F:      drivers/crypto/virtio/
20400 F:      include/uapi/linux/virtio_crypto.h
20401
20402 VIRTIO DRIVERS FOR S390
20403 M:      Cornelia Huck <cohuck@redhat.com>
20404 M:      Halil Pasic <pasic@linux.ibm.com>
20405 L:      linux-s390@vger.kernel.org
20406 L:      virtualization@lists.linux-foundation.org
20407 L:      kvm@vger.kernel.org
20408 S:      Supported
20409 F:      arch/s390/include/uapi/asm/virtio-ccw.h
20410 F:      drivers/s390/virtio/
20411
20412 VIRTIO FILE SYSTEM
20413 M:      Vivek Goyal <vgoyal@redhat.com>
20414 M:      Stefan Hajnoczi <stefanha@redhat.com>
20415 M:      Miklos Szeredi <miklos@szeredi.hu>
20416 L:      virtualization@lists.linux-foundation.org
20417 L:      linux-fsdevel@vger.kernel.org
20418 S:      Supported
20419 W:      https://virtio-fs.gitlab.io/
20420 F:      Documentation/filesystems/virtiofs.rst
20421 F:      fs/fuse/virtio_fs.c
20422 F:      include/uapi/linux/virtio_fs.h
20423
20424 VIRTIO GPIO DRIVER
20425 M:      Enrico Weigelt, metux IT consult <info@metux.net>
20426 M:      Viresh Kumar <vireshk@kernel.org>
20427 L:      linux-gpio@vger.kernel.org
20428 L:      virtualization@lists.linux-foundation.org
20429 S:      Maintained
20430 F:      drivers/gpio/gpio-virtio.c
20431 F:      include/uapi/linux/virtio_gpio.h
20432
20433 VIRTIO GPU DRIVER
20434 M:      David Airlie <airlied@linux.ie>
20435 M:      Gerd Hoffmann <kraxel@redhat.com>
20436 R:      Gurchetan Singh <gurchetansingh@chromium.org>
20437 R:      Chia-I Wu <olvaffe@gmail.com>
20438 L:      dri-devel@lists.freedesktop.org
20439 L:      virtualization@lists.linux-foundation.org
20440 S:      Maintained
20441 T:      git git://anongit.freedesktop.org/drm/drm-misc
20442 F:      drivers/gpu/drm/virtio/
20443 F:      include/uapi/linux/virtio_gpu.h
20444
20445 VIRTIO HOST (VHOST)
20446 M:      "Michael S. Tsirkin" <mst@redhat.com>
20447 M:      Jason Wang <jasowang@redhat.com>
20448 L:      kvm@vger.kernel.org
20449 L:      virtualization@lists.linux-foundation.org
20450 L:      netdev@vger.kernel.org
20451 S:      Maintained
20452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
20453 F:      drivers/vhost/
20454 F:      include/linux/vhost_iotlb.h
20455 F:      include/uapi/linux/vhost.h
20456
20457 VIRTIO INPUT DRIVER
20458 M:      Gerd Hoffmann <kraxel@redhat.com>
20459 S:      Maintained
20460 F:      drivers/virtio/virtio_input.c
20461 F:      include/uapi/linux/virtio_input.h
20462
20463 VIRTIO IOMMU DRIVER
20464 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
20465 L:      virtualization@lists.linux-foundation.org
20466 S:      Maintained
20467 F:      drivers/iommu/virtio-iommu.c
20468 F:      include/uapi/linux/virtio_iommu.h
20469
20470 VIRTIO MEM DRIVER
20471 M:      David Hildenbrand <david@redhat.com>
20472 L:      virtualization@lists.linux-foundation.org
20473 S:      Maintained
20474 W:      https://virtio-mem.gitlab.io/
20475 F:      drivers/virtio/virtio_mem.c
20476 F:      include/uapi/linux/virtio_mem.h
20477
20478 VIRTIO SOUND DRIVER
20479 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
20480 M:      "Michael S. Tsirkin" <mst@redhat.com>
20481 L:      virtualization@lists.linux-foundation.org
20482 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20483 S:      Maintained
20484 F:      include/uapi/linux/virtio_snd.h
20485 F:      sound/virtio/*
20486
20487 VIRTIO I2C DRIVER
20488 M:      Conghui Chen <conghui.chen@intel.com>
20489 M:      Viresh Kumar <viresh.kumar@linaro.org>
20490 L:      linux-i2c@vger.kernel.org
20491 L:      virtualization@lists.linux-foundation.org
20492 S:      Maintained
20493 F:      drivers/i2c/busses/i2c-virtio.c
20494 F:      include/uapi/linux/virtio_i2c.h
20495
20496 VIRTIO PMEM DRIVER
20497 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
20498 L:      virtualization@lists.linux-foundation.org
20499 S:      Maintained
20500 F:      drivers/nvdimm/virtio_pmem.c
20501 F:      drivers/nvdimm/nd_virtio.c
20502
20503 VIRTUAL BOX GUEST DEVICE DRIVER
20504 M:      Hans de Goede <hdegoede@redhat.com>
20505 M:      Arnd Bergmann <arnd@arndb.de>
20506 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20507 S:      Maintained
20508 F:      drivers/virt/vboxguest/
20509 F:      include/linux/vbox_utils.h
20510 F:      include/uapi/linux/vbox*.h
20511
20512 VIRTUAL BOX SHARED FOLDER VFS DRIVER
20513 M:      Hans de Goede <hdegoede@redhat.com>
20514 L:      linux-fsdevel@vger.kernel.org
20515 S:      Maintained
20516 F:      fs/vboxsf/*
20517
20518 VIRTUAL SERIO DEVICE DRIVER
20519 M:      Stephen Chandler Paul <thatslyude@gmail.com>
20520 S:      Maintained
20521 F:      drivers/input/serio/userio.c
20522 F:      include/uapi/linux/userio.h
20523
20524 VIVID VIRTUAL VIDEO DRIVER
20525 M:      Hans Verkuil <hverkuil@xs4all.nl>
20526 L:      linux-media@vger.kernel.org
20527 S:      Maintained
20528 W:      https://linuxtv.org
20529 T:      git git://linuxtv.org/media_tree.git
20530 F:      drivers/media/test-drivers/vivid/*
20531
20532 VIDTV VIRTUAL DIGITAL TV DRIVER
20533 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
20534 L:      linux-media@vger.kernel.org
20535 S:      Maintained
20536 W:      https://linuxtv.org
20537 T:      git git://linuxtv.org/media_tree.git
20538 F:      drivers/media/test-drivers/vidtv/*
20539
20540 VLYNQ BUS
20541 M:      Florian Fainelli <f.fainelli@gmail.com>
20542 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
20543 S:      Maintained
20544 F:      drivers/vlynq/vlynq.c
20545 F:      include/linux/vlynq.h
20546
20547 VME SUBSYSTEM
20548 M:      Martyn Welch <martyn@welchs.me.uk>
20549 M:      Manohar Vanga <manohar.vanga@gmail.com>
20550 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20551 L:      linux-kernel@vger.kernel.org
20552 S:      Maintained
20553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20554 F:      Documentation/driver-api/vme.rst
20555 F:      drivers/staging/vme/
20556 F:      drivers/vme/
20557 F:      include/linux/vme*
20558
20559 VM SOCKETS (AF_VSOCK)
20560 M:      Stefano Garzarella <sgarzare@redhat.com>
20561 L:      virtualization@lists.linux-foundation.org
20562 L:      netdev@vger.kernel.org
20563 S:      Maintained
20564 F:      drivers/net/vsockmon.c
20565 F:      include/net/af_vsock.h
20566 F:      include/uapi/linux/vm_sockets.h
20567 F:      include/uapi/linux/vm_sockets_diag.h
20568 F:      include/uapi/linux/vsockmon.h
20569 F:      net/vmw_vsock/
20570 F:      tools/testing/vsock/
20571
20572 VMWARE BALLOON DRIVER
20573 M:      Nadav Amit <namit@vmware.com>
20574 M:      "VMware, Inc." <pv-drivers@vmware.com>
20575 L:      linux-kernel@vger.kernel.org
20576 S:      Maintained
20577 F:      drivers/misc/vmw_balloon.c
20578
20579 VMWARE HYPERVISOR INTERFACE
20580 M:      Deep Shah <sdeep@vmware.com>
20581 M:      "VMware, Inc." <pv-drivers@vmware.com>
20582 L:      virtualization@lists.linux-foundation.org
20583 S:      Supported
20584 F:      arch/x86/include/asm/vmware.h
20585 F:      arch/x86/kernel/cpu/vmware.c
20586
20587 VMWARE PVRDMA DRIVER
20588 M:      Bryan Tan <bryantan@vmware.com>
20589 M:      Vishnu Dasa <vdasa@vmware.com>
20590 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20591 L:      linux-rdma@vger.kernel.org
20592 S:      Maintained
20593 F:      drivers/infiniband/hw/vmw_pvrdma/
20594
20595 VMware PVSCSI driver
20596 M:      Vishal Bhakta <vbhakta@vmware.com>
20597 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20598 L:      linux-scsi@vger.kernel.org
20599 S:      Maintained
20600 F:      drivers/scsi/vmw_pvscsi.c
20601 F:      drivers/scsi/vmw_pvscsi.h
20602
20603 VMWARE VIRTUAL PTP CLOCK DRIVER
20604 M:      Vivek Thampi <vithampi@vmware.com>
20605 M:      "VMware, Inc." <pv-drivers@vmware.com>
20606 L:      netdev@vger.kernel.org
20607 S:      Supported
20608 F:      drivers/ptp/ptp_vmw.c
20609
20610 VMWARE VMCI DRIVER
20611 M:      Jorgen Hansen <jhansen@vmware.com>
20612 M:      Vishnu Dasa <vdasa@vmware.com>
20613 L:      linux-kernel@vger.kernel.org
20614 L:      pv-drivers@vmware.com (private)
20615 S:      Maintained
20616 F:      drivers/misc/vmw_vmci/
20617
20618 VMWARE VMMOUSE SUBDRIVER
20619 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
20620 M:      "VMware, Inc." <pv-drivers@vmware.com>
20621 L:      linux-input@vger.kernel.org
20622 S:      Maintained
20623 F:      drivers/input/mouse/vmmouse.c
20624 F:      drivers/input/mouse/vmmouse.h
20625
20626 VMWARE VMXNET3 ETHERNET DRIVER
20627 M:      Ronak Doshi <doshir@vmware.com>
20628 M:      pv-drivers@vmware.com
20629 L:      netdev@vger.kernel.org
20630 S:      Maintained
20631 F:      drivers/net/vmxnet3/
20632
20633 VOCORE VOCORE2 BOARD
20634 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
20635 L:      linux-mips@vger.kernel.org
20636 S:      Maintained
20637 F:      arch/mips/boot/dts/ralink/vocore2.dts
20638
20639 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
20640 M:      Liam Girdwood <lgirdwood@gmail.com>
20641 M:      Mark Brown <broonie@kernel.org>
20642 L:      linux-kernel@vger.kernel.org
20643 S:      Supported
20644 W:      http://www.slimlogic.co.uk/?p=48
20645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
20646 F:      Documentation/devicetree/bindings/regulator/
20647 F:      Documentation/power/regulator/
20648 F:      drivers/regulator/
20649 F:      include/dt-bindings/regulator/
20650 F:      include/linux/regulator/
20651 K:      regulator_get_optional
20652
20653 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
20654 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
20655 F:      drivers/regulator/irq_helpers.c
20656
20657 VRF
20658 M:      David Ahern <dsahern@kernel.org>
20659 L:      netdev@vger.kernel.org
20660 S:      Maintained
20661 F:      Documentation/networking/vrf.rst
20662 F:      drivers/net/vrf.c
20663
20664 VSPRINTF
20665 M:      Petr Mladek <pmladek@suse.com>
20666 M:      Steven Rostedt <rostedt@goodmis.org>
20667 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
20668 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20669 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
20670 S:      Maintained
20671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
20672 F:      Documentation/core-api/printk-formats.rst
20673 F:      lib/test_printf.c
20674 F:      lib/test_scanf.c
20675 F:      lib/vsprintf.c
20676
20677 VT1211 HARDWARE MONITOR DRIVER
20678 M:      Juerg Haefliger <juergh@gmail.com>
20679 L:      linux-hwmon@vger.kernel.org
20680 S:      Maintained
20681 F:      Documentation/hwmon/vt1211.rst
20682 F:      drivers/hwmon/vt1211.c
20683
20684 VT8231 HARDWARE MONITOR DRIVER
20685 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
20686 L:      linux-hwmon@vger.kernel.org
20687 S:      Maintained
20688 F:      drivers/hwmon/vt8231.c
20689
20690 VUB300 USB to SDIO/SD/MMC bridge chip
20691 L:      linux-mmc@vger.kernel.org
20692 S:      Orphan
20693 F:      drivers/mmc/host/vub300.c
20694
20695 W1 DALLAS'S 1-WIRE BUS
20696 M:      Evgeniy Polyakov <zbr@ioremap.net>
20697 S:      Maintained
20698 F:      Documentation/devicetree/bindings/w1/
20699 F:      Documentation/w1/
20700 F:      drivers/w1/
20701 F:      include/linux/w1.h
20702
20703 W83791D HARDWARE MONITORING DRIVER
20704 M:      Marc Hulsman <m.hulsman@tudelft.nl>
20705 L:      linux-hwmon@vger.kernel.org
20706 S:      Maintained
20707 F:      Documentation/hwmon/w83791d.rst
20708 F:      drivers/hwmon/w83791d.c
20709
20710 W83793 HARDWARE MONITORING DRIVER
20711 M:      Rudolf Marek <r.marek@assembler.cz>
20712 L:      linux-hwmon@vger.kernel.org
20713 S:      Maintained
20714 F:      Documentation/hwmon/w83793.rst
20715 F:      drivers/hwmon/w83793.c
20716
20717 W83795 HARDWARE MONITORING DRIVER
20718 M:      Jean Delvare <jdelvare@suse.com>
20719 L:      linux-hwmon@vger.kernel.org
20720 S:      Maintained
20721 F:      drivers/hwmon/w83795.c
20722
20723 W83L51xD SD/MMC CARD INTERFACE DRIVER
20724 M:      Pierre Ossman <pierre@ossman.eu>
20725 S:      Maintained
20726 F:      drivers/mmc/host/wbsd.*
20727
20728 WACOM PROTOCOL 4 SERIAL TABLETS
20729 M:      Julian Squires <julian@cipht.net>
20730 M:      Hans de Goede <hdegoede@redhat.com>
20731 L:      linux-input@vger.kernel.org
20732 S:      Maintained
20733 F:      drivers/input/tablet/wacom_serial4.c
20734
20735 WATCHDOG DEVICE DRIVERS
20736 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
20737 M:      Guenter Roeck <linux@roeck-us.net>
20738 L:      linux-watchdog@vger.kernel.org
20739 S:      Maintained
20740 W:      http://www.linux-watchdog.org/
20741 T:      git git://www.linux-watchdog.org/linux-watchdog.git
20742 F:      Documentation/devicetree/bindings/watchdog/
20743 F:      Documentation/watchdog/
20744 F:      drivers/watchdog/
20745 F:      include/linux/watchdog.h
20746 F:      include/uapi/linux/watchdog.h
20747
20748 WHISKEYCOVE PMIC GPIO DRIVER
20749 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
20750 L:      linux-gpio@vger.kernel.org
20751 S:      Maintained
20752 F:      drivers/gpio/gpio-wcove.c
20753
20754 WHWAVE RTC DRIVER
20755 M:      Dianlong Li <long17.cool@163.com>
20756 L:      linux-rtc@vger.kernel.org
20757 S:      Maintained
20758 F:      drivers/rtc/rtc-sd3078.c
20759
20760 WIIMOTE HID DRIVER
20761 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20762 L:      linux-input@vger.kernel.org
20763 S:      Maintained
20764 F:      drivers/hid/hid-wiimote*
20765
20766 WILOCITY WIL6210 WIRELESS DRIVER
20767 M:      Maya Erez <merez@codeaurora.org>
20768 L:      linux-wireless@vger.kernel.org
20769 L:      wil6210@qti.qualcomm.com
20770 S:      Supported
20771 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
20772 F:      drivers/net/wireless/ath/wil6210/
20773
20774 WINBOND CIR DRIVER
20775 M:      David Härdeman <david@hardeman.nu>
20776 S:      Maintained
20777 F:      drivers/media/rc/winbond-cir.c
20778
20779 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
20780 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20781 L:      linux-watchdog@vger.kernel.org
20782 S:      Maintained
20783 F:      drivers/watchdog/ebc-c384_wdt.c
20784
20785 WINSYSTEMS WS16C48 GPIO DRIVER
20786 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20787 L:      linux-gpio@vger.kernel.org
20788 S:      Maintained
20789 F:      drivers/gpio/gpio-ws16c48.c
20790
20791 WIREGUARD SECURE NETWORK TUNNEL
20792 M:      Jason A. Donenfeld <Jason@zx2c4.com>
20793 L:      wireguard@lists.zx2c4.com
20794 L:      netdev@vger.kernel.org
20795 S:      Maintained
20796 F:      drivers/net/wireguard/
20797 F:      tools/testing/selftests/wireguard/
20798
20799 WISTRON LAPTOP BUTTON DRIVER
20800 M:      Miloslav Trmac <mitr@volny.cz>
20801 S:      Maintained
20802 F:      drivers/input/misc/wistron_btns.c
20803
20804 WL3501 WIRELESS PCMCIA CARD DRIVER
20805 L:      linux-wireless@vger.kernel.org
20806 S:      Odd fixes
20807 F:      drivers/net/wireless/wl3501*
20808
20809 WOLFSON MICROELECTRONICS DRIVERS
20810 L:      patches@opensource.cirrus.com
20811 S:      Supported
20812 W:      https://github.com/CirrusLogic/linux-drivers/wiki
20813 T:      git https://github.com/CirrusLogic/linux-drivers.git
20814 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
20815 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
20816 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
20817 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
20818 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
20819 F:      Documentation/devicetree/bindings/sound/wm*
20820 F:      Documentation/hwmon/wm83??.rst
20821 F:      arch/arm/mach-s3c/mach-crag6410*
20822 F:      drivers/clk/clk-wm83*.c
20823 F:      drivers/gpio/gpio-*wm*.c
20824 F:      drivers/gpio/gpio-arizona.c
20825 F:      drivers/hwmon/wm83??-hwmon.c
20826 F:      drivers/input/misc/wm831x-on.c
20827 F:      drivers/input/touchscreen/wm831x-ts.c
20828 F:      drivers/input/touchscreen/wm97*.c
20829 F:      drivers/leds/leds-wm83*.c
20830 F:      drivers/mfd/arizona*
20831 F:      drivers/mfd/cs47l24*
20832 F:      drivers/mfd/wm*.c
20833 F:      drivers/power/supply/wm83*.c
20834 F:      drivers/regulator/arizona*
20835 F:      drivers/regulator/wm8*.c
20836 F:      drivers/rtc/rtc-wm83*.c
20837 F:      drivers/video/backlight/wm83*_bl.c
20838 F:      drivers/watchdog/wm83*_wdt.c
20839 F:      include/linux/mfd/arizona/
20840 F:      include/linux/mfd/wm831x/
20841 F:      include/linux/mfd/wm8350/
20842 F:      include/linux/mfd/wm8400*
20843 F:      include/linux/regulator/arizona*
20844 F:      include/linux/wm97xx.h
20845 F:      include/sound/wm????.h
20846 F:      sound/soc/codecs/arizona*
20847 F:      sound/soc/codecs/cs47l24*
20848 F:      sound/soc/codecs/wm*
20849
20850 WORKQUEUE
20851 M:      Tejun Heo <tj@kernel.org>
20852 R:      Lai Jiangshan <jiangshanlai@gmail.com>
20853 S:      Maintained
20854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
20855 F:      Documentation/core-api/workqueue.rst
20856 F:      include/linux/workqueue.h
20857 F:      kernel/workqueue.c
20858
20859 WWAN DRIVERS
20860 M:      Loic Poulain <loic.poulain@linaro.org>
20861 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
20862 R:      Johannes Berg <johannes@sipsolutions.net>
20863 L:      netdev@vger.kernel.org
20864 S:      Maintained
20865 F:      drivers/net/wwan/
20866 F:      include/linux/wwan.h
20867 F:      include/uapi/linux/wwan.h
20868
20869 X-POWERS AXP288 PMIC DRIVERS
20870 M:      Hans de Goede <hdegoede@redhat.com>
20871 S:      Maintained
20872 F:      drivers/acpi/pmic/intel_pmic_xpower.c
20873 N:      axp288
20874
20875 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
20876 M:      Chen-Yu Tsai <wens@csie.org>
20877 L:      linux-kernel@vger.kernel.org
20878 S:      Maintained
20879 N:      axp[128]
20880
20881 X.25 STACK
20882 M:      Martin Schiller <ms@dev.tdt.de>
20883 L:      linux-x25@vger.kernel.org
20884 S:      Maintained
20885 F:      Documentation/networking/lapb-module.rst
20886 F:      Documentation/networking/x25*
20887 F:      drivers/net/wan/hdlc_x25.c
20888 F:      drivers/net/wan/lapbether.c
20889 F:      include/*/lapb.h
20890 F:      include/net/x25*
20891 F:      include/uapi/linux/x25.h
20892 F:      net/lapb/
20893 F:      net/x25/
20894
20895 X86 ARCHITECTURE (32-BIT AND 64-BIT)
20896 M:      Thomas Gleixner <tglx@linutronix.de>
20897 M:      Ingo Molnar <mingo@redhat.com>
20898 M:      Borislav Petkov <bp@alien8.de>
20899 M:      Dave Hansen <dave.hansen@linux.intel.com>
20900 M:      x86@kernel.org
20901 R:      "H. Peter Anvin" <hpa@zytor.com>
20902 L:      linux-kernel@vger.kernel.org
20903 S:      Maintained
20904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20905 F:      Documentation/devicetree/bindings/x86/
20906 F:      Documentation/x86/
20907 F:      arch/x86/
20908
20909 X86 ENTRY CODE
20910 M:      Andy Lutomirski <luto@kernel.org>
20911 L:      linux-kernel@vger.kernel.org
20912 S:      Maintained
20913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
20914 F:      arch/x86/entry/
20915
20916 X86 MCE INFRASTRUCTURE
20917 M:      Tony Luck <tony.luck@intel.com>
20918 M:      Borislav Petkov <bp@alien8.de>
20919 L:      linux-edac@vger.kernel.org
20920 S:      Maintained
20921 F:      Documentation/ABI/testing/sysfs-mce
20922 F:      Documentation/x86/x86_64/machinecheck.rst
20923 F:      arch/x86/kernel/cpu/mce/*
20924
20925 X86 MICROCODE UPDATE SUPPORT
20926 M:      Borislav Petkov <bp@alien8.de>
20927 S:      Maintained
20928 F:      arch/x86/kernel/cpu/microcode/*
20929
20930 X86 MM
20931 M:      Dave Hansen <dave.hansen@linux.intel.com>
20932 M:      Andy Lutomirski <luto@kernel.org>
20933 M:      Peter Zijlstra <peterz@infradead.org>
20934 L:      linux-kernel@vger.kernel.org
20935 S:      Maintained
20936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
20937 F:      arch/x86/mm/
20938
20939 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
20940 M:      Hans de Goede <hdegoede@redhat.com>
20941 L:      platform-driver-x86@vger.kernel.org
20942 S:      Maintained
20943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
20944 F:      drivers/platform/x86/x86-android-tablets.c
20945
20946 X86 PLATFORM DRIVERS
20947 M:      Hans de Goede <hdegoede@redhat.com>
20948 M:      Mark Gross <markgross@kernel.org>
20949 L:      platform-driver-x86@vger.kernel.org
20950 S:      Maintained
20951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
20952 F:      drivers/platform/olpc/
20953 F:      drivers/platform/x86/
20954
20955 X86 PLATFORM DRIVERS - ARCH
20956 R:      Darren Hart <dvhart@infradead.org>
20957 R:      Andy Shevchenko <andy@infradead.org>
20958 L:      platform-driver-x86@vger.kernel.org
20959 L:      x86@kernel.org
20960 S:      Maintained
20961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20962 F:      arch/x86/platform
20963
20964 X86 PLATFORM UV HPE SUPERDOME FLEX
20965 M:      Steve Wahl <steve.wahl@hpe.com>
20966 R:      Mike Travis <mike.travis@hpe.com>
20967 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
20968 R:      Russ Anderson <russ.anderson@hpe.com>
20969 S:      Supported
20970 F:      arch/x86/include/asm/uv/
20971 F:      arch/x86/kernel/apic/x2apic_uv_x.c
20972 F:      arch/x86/platform/uv/
20973
20974 X86 VDSO
20975 M:      Andy Lutomirski <luto@kernel.org>
20976 L:      linux-kernel@vger.kernel.org
20977 S:      Maintained
20978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
20979 F:      arch/x86/entry/vdso/
20980
20981 XARRAY
20982 M:      Matthew Wilcox <willy@infradead.org>
20983 L:      linux-fsdevel@vger.kernel.org
20984 S:      Supported
20985 F:      Documentation/core-api/xarray.rst
20986 F:      include/linux/idr.h
20987 F:      include/linux/xarray.h
20988 F:      lib/idr.c
20989 F:      lib/xarray.c
20990 F:      tools/testing/radix-tree
20991
20992 XBOX DVD IR REMOTE
20993 M:      Benjamin Valentin <benpicco@googlemail.com>
20994 S:      Maintained
20995 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
20996 F:      drivers/media/rc/xbox_remote.c
20997
20998 XC2028/3028 TUNER DRIVER
20999 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
21000 L:      linux-media@vger.kernel.org
21001 S:      Maintained
21002 W:      https://linuxtv.org
21003 T:      git git://linuxtv.org/media_tree.git
21004 F:      drivers/media/tuners/tuner-xc2028.*
21005
21006 XDP (eXpress Data Path)
21007 M:      Alexei Starovoitov <ast@kernel.org>
21008 M:      Daniel Borkmann <daniel@iogearbox.net>
21009 M:      David S. Miller <davem@davemloft.net>
21010 M:      Jakub Kicinski <kuba@kernel.org>
21011 M:      Jesper Dangaard Brouer <hawk@kernel.org>
21012 M:      John Fastabend <john.fastabend@gmail.com>
21013 L:      netdev@vger.kernel.org
21014 L:      bpf@vger.kernel.org
21015 S:      Supported
21016 F:      include/net/xdp.h
21017 F:      include/net/xdp_priv.h
21018 F:      include/trace/events/xdp.h
21019 F:      kernel/bpf/cpumap.c
21020 F:      kernel/bpf/devmap.c
21021 F:      net/core/xdp.c
21022 F:      samples/bpf/xdp*
21023 F:      tools/testing/selftests/bpf/*xdp*
21024 F:      tools/testing/selftests/bpf/*/*xdp*
21025 F:      drivers/net/ethernet/*/*/*/*/*xdp*
21026 F:      drivers/net/ethernet/*/*/*xdp*
21027 K:      (?:\b|_)xdp(?:\b|_)
21028
21029 XDP SOCKETS (AF_XDP)
21030 M:      Björn Töpel <bjorn@kernel.org>
21031 M:      Magnus Karlsson <magnus.karlsson@intel.com>
21032 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
21033 L:      netdev@vger.kernel.org
21034 L:      bpf@vger.kernel.org
21035 S:      Maintained
21036 F:      Documentation/networking/af_xdp.rst
21037 F:      include/net/xdp_sock*
21038 F:      include/net/xsk_buff_pool.h
21039 F:      include/uapi/linux/if_xdp.h
21040 F:      include/uapi/linux/xdp_diag.h
21041 F:      include/net/netns/xdp.h
21042 F:      net/xdp/
21043 F:      samples/bpf/xdpsock*
21044 F:      tools/lib/bpf/xsk*
21045
21046 XEN BLOCK SUBSYSTEM
21047 M:      Roger Pau Monné <roger.pau@citrix.com>
21048 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21049 S:      Supported
21050 F:      drivers/block/xen*
21051 F:      drivers/block/xen-blkback/*
21052
21053 XEN HYPERVISOR ARM
21054 M:      Stefano Stabellini <sstabellini@kernel.org>
21055 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21056 S:      Maintained
21057 F:      arch/arm/include/asm/xen/
21058 F:      arch/arm/xen/
21059
21060 XEN HYPERVISOR ARM64
21061 M:      Stefano Stabellini <sstabellini@kernel.org>
21062 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21063 S:      Maintained
21064 F:      arch/arm64/include/asm/xen/
21065 F:      arch/arm64/xen/
21066
21067 XEN HYPERVISOR INTERFACE
21068 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
21069 M:      Juergen Gross <jgross@suse.com>
21070 R:      Stefano Stabellini <sstabellini@kernel.org>
21071 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21072 S:      Supported
21073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
21074 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
21075 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
21076 F:      arch/x86/include/asm/pvclock-abi.h
21077 F:      arch/x86/include/asm/xen/
21078 F:      arch/x86/platform/pvh/
21079 F:      arch/x86/xen/
21080 F:      drivers/*/xen-*front.c
21081 F:      drivers/xen/
21082 F:      include/uapi/xen/
21083 F:      include/xen/
21084
21085 XEN NETWORK BACKEND DRIVER
21086 M:      Wei Liu <wei.liu@kernel.org>
21087 M:      Paul Durrant <paul@xen.org>
21088 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21089 L:      netdev@vger.kernel.org
21090 S:      Supported
21091 F:      drivers/net/xen-netback/*
21092
21093 XEN PCI SUBSYSTEM
21094 M:      Juergen Gross <jgross@suse.com>
21095 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21096 S:      Supported
21097 F:      arch/x86/pci/*xen*
21098 F:      drivers/pci/*xen*
21099
21100 XEN PVSCSI DRIVERS
21101 M:      Juergen Gross <jgross@suse.com>
21102 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21103 L:      linux-scsi@vger.kernel.org
21104 S:      Supported
21105 F:      drivers/scsi/xen-scsifront.c
21106 F:      drivers/xen/xen-scsiback.c
21107 F:      include/xen/interface/io/vscsiif.h
21108
21109 XEN PVUSB DRIVER
21110 M:      Juergen Gross <jgross@suse.com>
21111 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21112 L:      linux-usb@vger.kernel.org
21113 S:      Supported
21114 F:      drivers/usb/host/xen*
21115 F:      include/xen/interface/io/usbif.h
21116
21117 XEN SOUND FRONTEND DRIVER
21118 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
21119 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21120 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21121 S:      Supported
21122 F:      sound/xen/*
21123
21124 XEN SWIOTLB SUBSYSTEM
21125 M:      Juergen Gross <jgross@suse.com>
21126 M:      Stefano Stabellini <sstabellini@kernel.org>
21127 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21128 L:      iommu@lists.linux-foundation.org
21129 S:      Supported
21130 F:      arch/x86/xen/*swiotlb*
21131 F:      drivers/xen/*swiotlb*
21132
21133 XFS FILESYSTEM
21134 C:      irc://irc.oftc.net/xfs
21135 M:      Darrick J. Wong <djwong@kernel.org>
21136 M:      linux-xfs@vger.kernel.org
21137 L:      linux-xfs@vger.kernel.org
21138 S:      Supported
21139 W:      http://xfs.org/
21140 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
21141 F:      Documentation/ABI/testing/sysfs-fs-xfs
21142 F:      Documentation/admin-guide/xfs.rst
21143 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
21144 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
21145 F:      fs/xfs/
21146 F:      include/uapi/linux/dqblk_xfs.h
21147 F:      include/uapi/linux/fsmap.h
21148
21149 XILINX AMS DRIVER
21150 M:      Anand Ashok Dumbre <anand.ashok.dumbre@xilinx.com>
21151 L:      linux-iio@vger.kernel.org
21152 S:      Maintained
21153 F:      Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
21154 F:      drivers/iio/adc/xilinx-ams.c
21155
21156 XILINX AXI ETHERNET DRIVER
21157 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
21158 S:      Maintained
21159 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
21160
21161 XILINX CAN DRIVER
21162 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
21163 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
21164 L:      linux-can@vger.kernel.org
21165 S:      Maintained
21166 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
21167 F:      drivers/net/can/xilinx_can.c
21168
21169 XILINX GPIO DRIVER
21170 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
21171 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
21172 R:      Michal Simek <michal.simek@xilinx.com>
21173 S:      Maintained
21174 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
21175 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
21176 F:      drivers/gpio/gpio-xilinx.c
21177 F:      drivers/gpio/gpio-zynq.c
21178
21179 XILINX SD-FEC IP CORES
21180 M:      Derek Kiernan <derek.kiernan@xilinx.com>
21181 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
21182 S:      Maintained
21183 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
21184 F:      Documentation/misc-devices/xilinx_sdfec.rst
21185 F:      drivers/misc/Kconfig
21186 F:      drivers/misc/Makefile
21187 F:      drivers/misc/xilinx_sdfec.c
21188 F:      include/uapi/misc/xilinx_sdfec.h
21189
21190 XILINX UARTLITE SERIAL DRIVER
21191 M:      Peter Korsgaard <jacmet@sunsite.dk>
21192 L:      linux-serial@vger.kernel.org
21193 S:      Maintained
21194 F:      drivers/tty/serial/uartlite.c
21195
21196 XILINX VIDEO IP CORES
21197 M:      Hyun Kwon <hyun.kwon@xilinx.com>
21198 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21199 L:      linux-media@vger.kernel.org
21200 S:      Supported
21201 T:      git git://linuxtv.org/media_tree.git
21202 F:      Documentation/devicetree/bindings/media/xilinx/
21203 F:      drivers/media/platform/xilinx/
21204 F:      include/uapi/linux/xilinx-v4l2-controls.h
21205
21206 XILINX ZYNQMP DPDMA DRIVER
21207 M:      Hyun Kwon <hyun.kwon@xilinx.com>
21208 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21209 L:      dmaengine@vger.kernel.org
21210 S:      Supported
21211 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
21212 F:      drivers/dma/xilinx/xilinx_dpdma.c
21213 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
21214
21215 XILINX ZYNQMP PSGTR PHY DRIVER
21216 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
21217 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21218 L:      linux-kernel@vger.kernel.org
21219 S:      Supported
21220 T:      git https://github.com/Xilinx/linux-xlnx.git
21221 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
21222 F:      drivers/phy/xilinx/phy-zynqmp.c
21223
21224 XILINX EVENT MANAGEMENT DRIVER
21225 M:      Abhyuday Godhasara <abhyuday.godhasara@xilinx.com>
21226 S:      Maintained
21227 F:      drivers/soc/xilinx/xlnx_event_manager.c
21228 F:      include/linux/firmware/xlnx-event-manager.h
21229
21230 XILLYBUS DRIVER
21231 M:      Eli Billauer <eli.billauer@gmail.com>
21232 L:      linux-kernel@vger.kernel.org
21233 S:      Supported
21234 F:      drivers/char/xillybus/
21235
21236 XLP9XX I2C DRIVER
21237 M:      George Cherian <gcherian@marvell.com>
21238 L:      linux-i2c@vger.kernel.org
21239 S:      Supported
21240 W:      http://www.marvell.com
21241 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
21242 F:      drivers/i2c/busses/i2c-xlp9xx.c
21243
21244 XRA1403 GPIO EXPANDER
21245 M:      Nandor Han <nandor.han@ge.com>
21246 M:      Semi Malinen <semi.malinen@ge.com>
21247 L:      linux-gpio@vger.kernel.org
21248 S:      Maintained
21249 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
21250 F:      drivers/gpio/gpio-xra1403.c
21251
21252 XTENSA XTFPGA PLATFORM SUPPORT
21253 M:      Max Filippov <jcmvbkbc@gmail.com>
21254 L:      linux-xtensa@linux-xtensa.org
21255 S:      Maintained
21256 F:      drivers/spi/spi-xtensa-xtfpga.c
21257 F:      sound/soc/xtensa/xtfpga-i2s.c
21258
21259 YAM DRIVER FOR AX.25
21260 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
21261 L:      linux-hams@vger.kernel.org
21262 S:      Maintained
21263 F:      drivers/net/hamradio/yam*
21264 F:      include/linux/yam.h
21265
21266 YAMA SECURITY MODULE
21267 M:      Kees Cook <keescook@chromium.org>
21268 S:      Supported
21269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
21270 F:      Documentation/admin-guide/LSM/Yama.rst
21271 F:      security/yama/
21272
21273 YEALINK PHONE DRIVER
21274 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
21275 L:      usbb2k-api-dev@nongnu.org
21276 S:      Maintained
21277 F:      Documentation/input/devices/yealink.rst
21278 F:      drivers/input/misc/yealink.*
21279
21280 Z8530 DRIVER FOR AX.25
21281 M:      Joerg Reuter <jreuter@yaina.de>
21282 L:      linux-hams@vger.kernel.org
21283 S:      Maintained
21284 W:      http://yaina.de/jreuter/
21285 W:      http://www.qsl.net/dl1bke/
21286 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
21287 F:      drivers/net/hamradio/*scc.c
21288 F:      drivers/net/hamradio/z8530.h
21289
21290 ZBUD COMPRESSED PAGE ALLOCATOR
21291 M:      Seth Jennings <sjenning@redhat.com>
21292 M:      Dan Streetman <ddstreet@ieee.org>
21293 L:      linux-mm@kvack.org
21294 S:      Maintained
21295 F:      mm/zbud.c
21296
21297 ZD1211RW WIRELESS DRIVER
21298 M:      Ulrich Kunitz <kune@deine-taler.de>
21299 L:      linux-wireless@vger.kernel.org
21300 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
21301 S:      Maintained
21302 W:      http://zd1211.ath.cx/wiki/DriverRewrite
21303 F:      drivers/net/wireless/zydas/zd1211rw/
21304
21305 ZD1301 MEDIA DRIVER
21306 M:      Antti Palosaari <crope@iki.fi>
21307 L:      linux-media@vger.kernel.org
21308 S:      Maintained
21309 W:      https://linuxtv.org/
21310 W:      http://palosaari.fi/linux/
21311 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21312 F:      drivers/media/usb/dvb-usb-v2/zd1301*
21313
21314 ZD1301_DEMOD MEDIA DRIVER
21315 M:      Antti Palosaari <crope@iki.fi>
21316 L:      linux-media@vger.kernel.org
21317 S:      Maintained
21318 W:      https://linuxtv.org/
21319 W:      http://palosaari.fi/linux/
21320 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21321 F:      drivers/media/dvb-frontends/zd1301_demod*
21322
21323 ZHAOXIN PROCESSOR SUPPORT
21324 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
21325 L:      linux-kernel@vger.kernel.org
21326 S:      Maintained
21327 F:      arch/x86/kernel/cpu/zhaoxin.c
21328
21329 ZONEFS FILESYSTEM
21330 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
21331 M:      Naohiro Aota <naohiro.aota@wdc.com>
21332 R:      Johannes Thumshirn <jth@kernel.org>
21333 L:      linux-fsdevel@vger.kernel.org
21334 S:      Maintained
21335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
21336 F:      Documentation/filesystems/zonefs.rst
21337 F:      fs/zonefs/
21338
21339 ZPOOL COMPRESSED PAGE STORAGE API
21340 M:      Dan Streetman <ddstreet@ieee.org>
21341 L:      linux-mm@kvack.org
21342 S:      Maintained
21343 F:      include/linux/zpool.h
21344 F:      mm/zpool.c
21345
21346 ZR36067 VIDEO FOR LINUX DRIVER
21347 M:      Corentin Labbe <clabbe@baylibre.com>
21348 L:      mjpeg-users@lists.sourceforge.net
21349 L:      linux-media@vger.kernel.org
21350 S:      Maintained
21351 W:      http://mjpeg.sourceforge.net/driver-zoran/
21352 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21353 F:      Documentation/driver-api/media/drivers/zoran.rst
21354 F:      drivers/staging/media/zoran/
21355
21356 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
21357 M:      Minchan Kim <minchan@kernel.org>
21358 M:      Nitin Gupta <ngupta@vflare.org>
21359 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
21360 L:      linux-kernel@vger.kernel.org
21361 S:      Maintained
21362 F:      Documentation/admin-guide/blockdev/zram.rst
21363 F:      drivers/block/zram/
21364
21365 ZS DECSTATION Z85C30 SERIAL DRIVER
21366 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
21367 S:      Maintained
21368 F:      drivers/tty/serial/zs.*
21369
21370 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
21371 M:      Minchan Kim <minchan@kernel.org>
21372 M:      Nitin Gupta <ngupta@vflare.org>
21373 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
21374 L:      linux-mm@kvack.org
21375 S:      Maintained
21376 F:      Documentation/vm/zsmalloc.rst
21377 F:      include/linux/zsmalloc.h
21378 F:      mm/zsmalloc.c
21379
21380 ZSTD
21381 M:      Nick Terrell <terrelln@fb.com>
21382 S:      Maintained
21383 B:      https://github.com/facebook/zstd/issues
21384 T:      git git://github.com/terrelln/linux.git
21385 F:      include/linux/zstd*
21386 F:      lib/zstd/
21387 F:      lib/decompress_unzstd.c
21388 F:      crypto/zstd.c
21389 N:      zstd
21390 K:      zstd
21391
21392 ZSWAP COMPRESSED SWAP CACHING
21393 M:      Seth Jennings <sjenning@redhat.com>
21394 M:      Dan Streetman <ddstreet@ieee.org>
21395 M:      Vitaly Wool <vitaly.wool@konsulko.com>
21396 L:      linux-mm@kvack.org
21397 S:      Maintained
21398 F:      mm/zswap.c
21399
21400 THE REST
21401 M:      Linus Torvalds <torvalds@linux-foundation.org>
21402 L:      linux-kernel@vger.kernel.org
21403 S:      Buried alive in reporters
21404 Q:      http://patchwork.kernel.org/project/LKML/list/
21405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
21406 F:      *
21407 F:      */