Merge tag 'usb-5.16-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb
[linux-block.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <klassert@kernel.org>
148 L:      netdev@vger.kernel.org
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <dave@thedillows.org>
155 L:      netdev@vger.kernel.org
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <aradford@gmail.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L:      linux-scsi@vger.kernel.org
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <alex.aring@gmail.com>
174 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L:      linux-bluetooth@vger.kernel.org
176 L:      linux-wpan@vger.kernel.org
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L:      linux-hams@vger.kernel.org
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <johannes@sipsolutions.net>
190 L:      linux-wireless@vger.kernel.org
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      net/wireless/
204
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M:      Heiner Kallweit <hkallweit1@gmail.com>
207 M:      nic_swsd@realtek.com
208 L:      netdev@vger.kernel.org
209 S:      Maintained
210 F:      drivers/net/ethernet/realtek/r8169*
211
212 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
213 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
214 L:      linux-serial@vger.kernel.org
215 S:      Maintained
216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
217 F:      drivers/tty/serial/8250*
218 F:      include/linux/serial_8250.h
219
220 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
221 L:      netdev@vger.kernel.org
222 S:      Orphan / Obsolete
223 F:      drivers/net/ethernet/8390/
224
225 9P FILE SYSTEM
226 M:      Eric Van Hensbergen <ericvh@gmail.com>
227 M:      Latchesar Ionkov <lucho@ionkov.net>
228 M:      Dominique Martinet <asmadeus@codewreck.org>
229 L:      v9fs-developer@lists.sourceforge.net
230 S:      Maintained
231 W:      http://swik.net/v9fs
232 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
234 T:      git git://github.com/martinetd/linux.git
235 F:      Documentation/filesystems/9p.rst
236 F:      fs/9p/
237 F:      include/net/9p/
238 F:      include/trace/events/9p.h
239 F:      include/uapi/linux/virtio_9p.h
240 F:      net/9p/
241
242 A8293 MEDIA DRIVER
243 M:      Antti Palosaari <crope@iki.fi>
244 L:      linux-media@vger.kernel.org
245 S:      Maintained
246 W:      https://linuxtv.org
247 W:      http://palosaari.fi/linux/
248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
249 T:      git git://linuxtv.org/anttip/media_tree.git
250 F:      drivers/media/dvb-frontends/a8293*
251
252 AACRAID SCSI RAID DRIVER
253 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
254 L:      linux-scsi@vger.kernel.org
255 S:      Supported
256 W:      http://www.adaptec.com/
257 F:      Documentation/scsi/aacraid.rst
258 F:      drivers/scsi/aacraid/
259
260 ABI/API
261 L:      linux-api@vger.kernel.org
262 F:      include/linux/syscalls.h
263 F:      kernel/sys_ni.c
264 X:      include/uapi/
265 X:      arch/*/include/uapi/
266
267 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
268 M:      Hans de Goede <hdegoede@redhat.com>
269 L:      linux-hwmon@vger.kernel.org
270 S:      Maintained
271 F:      drivers/hwmon/abituguru.c
272
273 ABIT UGURU 3 HARDWARE MONITOR DRIVER
274 M:      Alistair John Strachan <alistair@devzero.co.uk>
275 L:      linux-hwmon@vger.kernel.org
276 S:      Maintained
277 F:      drivers/hwmon/abituguru3.c
278
279 ACCES 104-DIO-48E GPIO DRIVER
280 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
281 L:      linux-gpio@vger.kernel.org
282 S:      Maintained
283 F:      drivers/gpio/gpio-104-dio-48e.c
284
285 ACCES 104-IDI-48 GPIO DRIVER
286 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
287 L:      linux-gpio@vger.kernel.org
288 S:      Maintained
289 F:      drivers/gpio/gpio-104-idi-48.c
290
291 ACCES 104-IDIO-16 GPIO DRIVER
292 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
293 L:      linux-gpio@vger.kernel.org
294 S:      Maintained
295 F:      drivers/gpio/gpio-104-idio-16.c
296
297 ACCES 104-QUAD-8 DRIVER
298 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
299 M:      Syed Nayyar Waris <syednwaris@gmail.com>
300 L:      linux-iio@vger.kernel.org
301 S:      Maintained
302 F:      drivers/counter/104-quad-8.c
303
304 ACCES PCI-IDIO-16 GPIO DRIVER
305 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
306 L:      linux-gpio@vger.kernel.org
307 S:      Maintained
308 F:      drivers/gpio/gpio-pci-idio-16.c
309
310 ACCES PCIe-IDIO-24 GPIO DRIVER
311 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
312 L:      linux-gpio@vger.kernel.org
313 S:      Maintained
314 F:      drivers/gpio/gpio-pcie-idio-24.c
315
316 ACENIC DRIVER
317 M:      Jes Sorensen <jes@trained-monkey.org>
318 L:      linux-acenic@sunsite.dk
319 S:      Maintained
320 F:      drivers/net/ethernet/alteon/acenic*
321
322 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
323 M:      Peter Kaestle <peter@piie.net>
324 L:      platform-driver-x86@vger.kernel.org
325 S:      Maintained
326 W:      http://piie.net/?section=acerhdf
327 F:      drivers/platform/x86/acerhdf.c
328
329 ACER WMI LAPTOP EXTRAS
330 M:      "Lee, Chun-Yi" <jlee@suse.com>
331 L:      platform-driver-x86@vger.kernel.org
332 S:      Maintained
333 F:      drivers/platform/x86/acer-wmi.c
334
335 ACPI
336 M:      "Rafael J. Wysocki" <rafael@kernel.org>
337 R:      Len Brown <lenb@kernel.org>
338 L:      linux-acpi@vger.kernel.org
339 S:      Supported
340 W:      https://01.org/linux-acpi
341 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
342 B:      https://bugzilla.kernel.org
343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
344 F:      Documentation/ABI/testing/configfs-acpi
345 F:      Documentation/ABI/testing/sysfs-bus-acpi
346 F:      Documentation/firmware-guide/acpi/
347 F:      drivers/acpi/
348 F:      drivers/pci/*/*acpi*
349 F:      drivers/pci/*acpi*
350 F:      drivers/pnp/pnpacpi/
351 F:      include/acpi/
352 F:      include/linux/acpi.h
353 F:      include/linux/fwnode.h
354 F:      tools/power/acpi/
355
356 ACPI APEI
357 M:      "Rafael J. Wysocki" <rafael@kernel.org>
358 R:      Len Brown <lenb@kernel.org>
359 R:      James Morse <james.morse@arm.com>
360 R:      Tony Luck <tony.luck@intel.com>
361 R:      Borislav Petkov <bp@alien8.de>
362 L:      linux-acpi@vger.kernel.org
363 F:      drivers/acpi/apei/
364
365 ACPI COMPONENT ARCHITECTURE (ACPICA)
366 M:      Robert Moore <robert.moore@intel.com>
367 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
368 L:      linux-acpi@vger.kernel.org
369 L:      devel@acpica.org
370 S:      Supported
371 W:      https://acpica.org/
372 W:      https://github.com/acpica/acpica/
373 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
374 B:      https://bugzilla.kernel.org
375 B:      https://bugs.acpica.org
376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
377 F:      drivers/acpi/acpica/
378 F:      include/acpi/
379 F:      tools/power/acpi/
380
381 ACPI FOR ARM64 (ACPI/arm64)
382 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
383 M:      Hanjun Guo <guohanjun@huawei.com>
384 M:      Sudeep Holla <sudeep.holla@arm.com>
385 L:      linux-acpi@vger.kernel.org
386 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
387 S:      Maintained
388 F:      drivers/acpi/arm64
389
390 ACPI I2C MULTI INSTANTIATE DRIVER
391 M:      Hans de Goede <hdegoede@redhat.com>
392 L:      platform-driver-x86@vger.kernel.org
393 S:      Maintained
394 F:      drivers/platform/x86/i2c-multi-instantiate.c
395
396 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
397 M:      Sudeep Holla <sudeep.holla@arm.com>
398 L:      linux-acpi@vger.kernel.org
399 S:      Supported
400 F:      drivers/mailbox/pcc.c
401
402 ACPI PMIC DRIVERS
403 M:      "Rafael J. Wysocki" <rafael@kernel.org>
404 M:      Len Brown <lenb@kernel.org>
405 R:      Andy Shevchenko <andy@kernel.org>
406 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
407 L:      linux-acpi@vger.kernel.org
408 S:      Supported
409 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
410 B:      https://bugzilla.kernel.org
411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
412 F:      drivers/acpi/pmic/
413
414 ACPI THERMAL DRIVER
415 M:      Rafael J. Wysocki <rafael@kernel.org>
416 R:      Zhang Rui <rui.zhang@intel.com>
417 L:      linux-acpi@vger.kernel.org
418 S:      Supported
419 W:      https://01.org/linux-acpi
420 B:      https://bugzilla.kernel.org
421 F:      drivers/acpi/*thermal*
422
423 ACPI VIOT DRIVER
424 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
425 L:      linux-acpi@vger.kernel.org
426 L:      iommu@lists.linux-foundation.org
427 S:      Maintained
428 F:      drivers/acpi/viot.c
429 F:      include/linux/acpi_viot.h
430
431 ACPI WMI DRIVER
432 L:      platform-driver-x86@vger.kernel.org
433 S:      Orphan
434 F:      drivers/platform/x86/wmi.c
435 F:      include/uapi/linux/wmi.h
436
437 ACRN HYPERVISOR SERVICE MODULE
438 M:      Fei Li <fei1.li@intel.com>
439 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
440 S:      Supported
441 W:      https://projectacrn.org
442 F:      Documentation/virt/acrn/
443 F:      drivers/virt/acrn/
444 F:      include/uapi/linux/acrn.h
445
446 AD1889 ALSA SOUND DRIVER
447 L:      linux-parisc@vger.kernel.org
448 S:      Maintained
449 W:      https://parisc.wiki.kernel.org/index.php/AD1889
450 F:      sound/pci/ad1889.*
451
452 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
453 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
454 L:      linux-iio@vger.kernel.org
455 S:      Supported
456 F:      drivers/iio/potentiometer/ad5110.c
457
458 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
459 M:      Michael Hennerich <michael.hennerich@analog.com>
460 S:      Supported
461 W:      http://wiki.analog.com/AD5254
462 W:      http://ez.analog.com/community/linux-device-drivers
463 F:      drivers/misc/ad525x_dpot.c
464
465 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
466 M:      Michael Hennerich <michael.hennerich@analog.com>
467 S:      Supported
468 W:      http://wiki.analog.com/AD5398
469 W:      http://ez.analog.com/community/linux-device-drivers
470 F:      drivers/regulator/ad5398.c
471
472 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
473 M:      Michael Hennerich <michael.hennerich@analog.com>
474 S:      Supported
475 W:      http://wiki.analog.com/AD7142
476 W:      http://ez.analog.com/community/linux-device-drivers
477 F:      drivers/input/misc/ad714x.c
478
479 AD7877 TOUCHSCREEN DRIVER
480 M:      Michael Hennerich <michael.hennerich@analog.com>
481 S:      Supported
482 W:      http://wiki.analog.com/AD7877
483 W:      http://ez.analog.com/community/linux-device-drivers
484 F:      drivers/input/touchscreen/ad7877.c
485
486 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
487 M:      Michael Hennerich <michael.hennerich@analog.com>
488 S:      Supported
489 W:      http://wiki.analog.com/AD7879
490 W:      http://ez.analog.com/community/linux-device-drivers
491 F:      drivers/input/touchscreen/ad7879.c
492
493 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
494 M:      Jiri Kosina <jikos@kernel.org>
495 S:      Maintained
496
497 ADF7242 IEEE 802.15.4 RADIO DRIVER
498 M:      Michael Hennerich <michael.hennerich@analog.com>
499 L:      linux-wpan@vger.kernel.org
500 S:      Supported
501 W:      https://wiki.analog.com/ADF7242
502 W:      http://ez.analog.com/community/linux-device-drivers
503 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
504 F:      drivers/net/ieee802154/adf7242.c
505
506 ADM1025 HARDWARE MONITOR DRIVER
507 M:      Jean Delvare <jdelvare@suse.com>
508 L:      linux-hwmon@vger.kernel.org
509 S:      Maintained
510 F:      Documentation/hwmon/adm1025.rst
511 F:      drivers/hwmon/adm1025.c
512
513 ADM1029 HARDWARE MONITOR DRIVER
514 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
515 L:      linux-hwmon@vger.kernel.org
516 S:      Maintained
517 F:      drivers/hwmon/adm1029.c
518
519 ADM8211 WIRELESS DRIVER
520 L:      linux-wireless@vger.kernel.org
521 S:      Orphan
522 W:      https://wireless.wiki.kernel.org/
523 F:      drivers/net/wireless/admtek/adm8211.*
524
525 ADP1653 FLASH CONTROLLER DRIVER
526 M:      Sakari Ailus <sakari.ailus@iki.fi>
527 L:      linux-media@vger.kernel.org
528 S:      Maintained
529 F:      drivers/media/i2c/adp1653.c
530 F:      include/media/i2c/adp1653.h
531
532 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
533 M:      Michael Hennerich <michael.hennerich@analog.com>
534 S:      Supported
535 W:      http://wiki.analog.com/ADP5520
536 W:      http://ez.analog.com/community/linux-device-drivers
537 F:      drivers/gpio/gpio-adp5520.c
538 F:      drivers/input/keyboard/adp5520-keys.c
539 F:      drivers/leds/leds-adp5520.c
540 F:      drivers/mfd/adp5520.c
541 F:      drivers/video/backlight/adp5520_bl.c
542
543 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
544 M:      Michael Hennerich <michael.hennerich@analog.com>
545 S:      Supported
546 W:      http://wiki.analog.com/ADP5588
547 W:      http://ez.analog.com/community/linux-device-drivers
548 F:      drivers/gpio/gpio-adp5588.c
549 F:      drivers/input/keyboard/adp5588-keys.c
550
551 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
552 M:      Michael Hennerich <michael.hennerich@analog.com>
553 S:      Supported
554 W:      http://wiki.analog.com/ADP8860
555 W:      http://ez.analog.com/community/linux-device-drivers
556 F:      drivers/video/backlight/adp8860_bl.c
557
558 ADT746X FAN DRIVER
559 M:      Colin Leroy <colin@colino.net>
560 S:      Maintained
561 F:      drivers/macintosh/therm_adt746x.c
562
563 ADT7475 HARDWARE MONITOR DRIVER
564 M:      Jean Delvare <jdelvare@suse.com>
565 L:      linux-hwmon@vger.kernel.org
566 S:      Maintained
567 F:      Documentation/hwmon/adt7475.rst
568 F:      drivers/hwmon/adt7475.c
569
570 ADVANSYS SCSI DRIVER
571 M:      Matthew Wilcox <willy@infradead.org>
572 M:      Hannes Reinecke <hare@suse.com>
573 L:      linux-scsi@vger.kernel.org
574 S:      Maintained
575 F:      Documentation/scsi/advansys.rst
576 F:      drivers/scsi/advansys.c
577
578 ADVANTECH SWBTN DRIVER
579 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
580 L:      platform-driver-x86@vger.kernel.org
581 S:      Maintained
582 F:      drivers/platform/x86/adv_swbutton.c
583
584 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
585 M:      Michael Hennerich <michael.hennerich@analog.com>
586 S:      Supported
587 W:      http://wiki.analog.com/ADXL345
588 W:      http://ez.analog.com/community/linux-device-drivers
589 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
590 F:      drivers/input/misc/adxl34x.c
591
592 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
593 M:      Michael Hennerich <michael.hennerich@analog.com>
594 S:      Supported
595 W:      http://ez.analog.com/community/linux-device-drivers
596 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
597 F:      drivers/iio/accel/adxl372.c
598 F:      drivers/iio/accel/adxl372_i2c.c
599 F:      drivers/iio/accel/adxl372_spi.c
600
601 AF9013 MEDIA DRIVER
602 M:      Antti Palosaari <crope@iki.fi>
603 L:      linux-media@vger.kernel.org
604 S:      Maintained
605 W:      https://linuxtv.org
606 W:      http://palosaari.fi/linux/
607 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
608 T:      git git://linuxtv.org/anttip/media_tree.git
609 F:      drivers/media/dvb-frontends/af9013*
610
611 AF9033 MEDIA DRIVER
612 M:      Antti Palosaari <crope@iki.fi>
613 L:      linux-media@vger.kernel.org
614 S:      Maintained
615 W:      https://linuxtv.org
616 W:      http://palosaari.fi/linux/
617 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
618 T:      git git://linuxtv.org/anttip/media_tree.git
619 F:      drivers/media/dvb-frontends/af9033*
620
621 AFFS FILE SYSTEM
622 M:      David Sterba <dsterba@suse.com>
623 L:      linux-fsdevel@vger.kernel.org
624 S:      Odd Fixes
625 F:      Documentation/filesystems/affs.rst
626 F:      fs/affs/
627
628 AFS FILESYSTEM
629 M:      David Howells <dhowells@redhat.com>
630 M:      Marc Dionne <marc.dionne@auristor.com>
631 L:      linux-afs@lists.infradead.org
632 S:      Supported
633 W:      https://www.infradead.org/~dhowells/kafs/
634 F:      Documentation/filesystems/afs.rst
635 F:      fs/afs/
636 F:      include/trace/events/afs.h
637
638 AGPGART DRIVER
639 M:      David Airlie <airlied@linux.ie>
640 S:      Maintained
641 T:      git git://anongit.freedesktop.org/drm/drm
642 F:      drivers/char/agp/
643 F:      include/linux/agp*
644 F:      include/uapi/linux/agp*
645
646 AHA152X SCSI DRIVER
647 M:      "Juergen E. Fischer" <fischer@norbit.de>
648 L:      linux-scsi@vger.kernel.org
649 S:      Maintained
650 F:      drivers/scsi/aha152x*
651 F:      drivers/scsi/pcmcia/aha152x*
652
653 AIC7XXX / AIC79XX SCSI DRIVER
654 M:      Hannes Reinecke <hare@suse.com>
655 L:      linux-scsi@vger.kernel.org
656 S:      Maintained
657 F:      drivers/scsi/aic7xxx/
658
659 AIMSLAB FM RADIO RECEIVER DRIVER
660 M:      Hans Verkuil <hverkuil@xs4all.nl>
661 L:      linux-media@vger.kernel.org
662 S:      Maintained
663 W:      https://linuxtv.org
664 T:      git git://linuxtv.org/media_tree.git
665 F:      drivers/media/radio/radio-aimslab*
666
667 AIO
668 M:      Benjamin LaHaise <bcrl@kvack.org>
669 L:      linux-aio@kvack.org
670 S:      Supported
671 F:      fs/aio.c
672 F:      include/linux/*aio*.h
673
674 AIRSPY MEDIA DRIVER
675 M:      Antti Palosaari <crope@iki.fi>
676 L:      linux-media@vger.kernel.org
677 S:      Maintained
678 W:      https://linuxtv.org
679 W:      http://palosaari.fi/linux/
680 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
681 T:      git git://linuxtv.org/anttip/media_tree.git
682 F:      drivers/media/usb/airspy/
683
684 ALACRITECH GIGABIT ETHERNET DRIVER
685 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
686 S:      Maintained
687 F:      drivers/net/ethernet/alacritech/*
688
689 ALCATEL SPEEDTOUCH USB DRIVER
690 M:      Duncan Sands <duncan.sands@free.fr>
691 L:      linux-usb@vger.kernel.org
692 S:      Maintained
693 W:      http://www.linux-usb.org/SpeedTouch/
694 F:      drivers/usb/atm/speedtch.c
695 F:      drivers/usb/atm/usbatm.c
696
697 ALCHEMY AU1XX0 MMC DRIVER
698 M:      Manuel Lauss <manuel.lauss@gmail.com>
699 S:      Maintained
700 F:      drivers/mmc/host/au1xmmc.c
701
702 ALI1563 I2C DRIVER
703 M:      Rudolf Marek <r.marek@assembler.cz>
704 L:      linux-i2c@vger.kernel.org
705 S:      Maintained
706 F:      Documentation/i2c/busses/i2c-ali1563.rst
707 F:      drivers/i2c/busses/i2c-ali1563.c
708
709 ALIENWARE WMI DRIVER
710 L:      Dell.Client.Kernel@dell.com
711 S:      Maintained
712 F:      drivers/platform/x86/dell/alienware-wmi.c
713
714 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
715 M:      Tomislav Denis <tomislav.denis@avl.com>
716 L:      linux-iio@vger.kernel.org
717 S:      Maintained
718 W:      http://www.allsensors.com/
719 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
720 F:      drivers/iio/pressure/dlhl60d.c
721
722 ALLEGRO DVT VIDEO IP CORE DRIVER
723 M:      Michael Tretter <m.tretter@pengutronix.de>
724 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
725 L:      linux-media@vger.kernel.org
726 S:      Maintained
727 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
728 F:      drivers/media/platform/allegro-dvt/
729
730 ALLWINNER A10 CSI DRIVER
731 M:      Maxime Ripard <mripard@kernel.org>
732 L:      linux-media@vger.kernel.org
733 S:      Maintained
734 T:      git git://linuxtv.org/media_tree.git
735 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
736 F:      drivers/media/platform/sunxi/sun4i-csi/
737
738 ALLWINNER CPUFREQ DRIVER
739 M:      Yangtao Li <tiny.windzz@gmail.com>
740 L:      linux-pm@vger.kernel.org
741 S:      Maintained
742 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
743 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
744
745 ALLWINNER CRYPTO DRIVERS
746 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
747 L:      linux-crypto@vger.kernel.org
748 S:      Maintained
749 F:      drivers/crypto/allwinner/
750
751 ALLWINNER HARDWARE SPINLOCK SUPPORT
752 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
753 S:      Maintained
754 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-hwspinlock.yaml
755 F:      drivers/hwspinlock/sun6i_hwspinlock.c
756
757 ALLWINNER THERMAL DRIVER
758 M:      Vasily Khoruzhick <anarsoul@gmail.com>
759 M:      Yangtao Li <tiny.windzz@gmail.com>
760 L:      linux-pm@vger.kernel.org
761 S:      Maintained
762 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
763 F:      drivers/thermal/sun8i_thermal.c
764
765 ALLWINNER VPU DRIVER
766 M:      Maxime Ripard <mripard@kernel.org>
767 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
768 L:      linux-media@vger.kernel.org
769 S:      Maintained
770 F:      drivers/staging/media/sunxi/cedrus/
771
772 ALPHA PORT
773 M:      Richard Henderson <rth@twiddle.net>
774 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
775 M:      Matt Turner <mattst88@gmail.com>
776 L:      linux-alpha@vger.kernel.org
777 S:      Odd Fixes
778 F:      arch/alpha/
779
780 ALPS PS/2 TOUCHPAD DRIVER
781 R:      Pali Rohár <pali@kernel.org>
782 F:      drivers/input/mouse/alps.*
783
784 ALTERA I2C CONTROLLER DRIVER
785 M:      Thor Thayer <thor.thayer@linux.intel.com>
786 S:      Maintained
787 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
788 F:      drivers/i2c/busses/i2c-altera.c
789
790 ALTERA MAILBOX DRIVER
791 M:      Mun Yew Tham <mun.yew.tham@intel.com>
792 S:      Maintained
793 F:      drivers/mailbox/mailbox-altera.c
794
795 ALTERA MSGDMA IP CORE DRIVER
796 M:      Olivier Dautricourt <olivier.dautricourt@orolia.com>
797 R:      Stefan Roese <sr@denx.de>
798 L:      dmaengine@vger.kernel.org
799 S:      Odd Fixes
800 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
801 F:      drivers/dma/altera-msgdma.c
802
803 ALTERA PIO DRIVER
804 M:      Mun Yew Tham <mun.yew.tham@intel.com>
805 L:      linux-gpio@vger.kernel.org
806 S:      Maintained
807 F:      drivers/gpio/gpio-altera.c
808
809 ALTERA SYSTEM MANAGER DRIVER
810 M:      Thor Thayer <thor.thayer@linux.intel.com>
811 S:      Maintained
812 F:      drivers/mfd/altera-sysmgr.c
813 F:      include/linux/mfd/altera-sysmgr.h
814
815 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
816 M:      Thor Thayer <thor.thayer@linux.intel.com>
817 S:      Maintained
818 F:      drivers/gpio/gpio-altera-a10sr.c
819 F:      drivers/mfd/altera-a10sr.c
820 F:      drivers/reset/reset-a10sr.c
821 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
822 F:      include/linux/mfd/altera-a10sr.h
823
824 ALTERA TRIPLE SPEED ETHERNET DRIVER
825 M:      Joyce Ooi <joyce.ooi@intel.com>
826 L:      netdev@vger.kernel.org
827 S:      Maintained
828 F:      drivers/net/ethernet/altera/
829
830 ALTERA UART/JTAG UART SERIAL DRIVERS
831 M:      Tobias Klauser <tklauser@distanz.ch>
832 L:      linux-serial@vger.kernel.org
833 S:      Maintained
834 F:      drivers/tty/serial/altera_jtaguart.c
835 F:      drivers/tty/serial/altera_uart.c
836 F:      include/linux/altera_jtaguart.h
837 F:      include/linux/altera_uart.h
838
839 AMAZON ANNAPURNA LABS FIC DRIVER
840 M:      Talel Shenhar <talel@amazon.com>
841 S:      Maintained
842 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
843 F:      drivers/irqchip/irq-al-fic.c
844
845 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
846 M:      Talel Shenhar <talel@amazon.com>
847 M:      Talel Shenhar <talelshenhar@gmail.com>
848 S:      Maintained
849 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
850 F:      drivers/edac/al_mc_edac.c
851
852 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
853 M:      Talel Shenhar <talel@amazon.com>
854 S:      Maintained
855 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
856 F:      drivers/thermal/thermal_mmio.c
857
858 AMAZON ETHERNET DRIVERS
859 M:      Netanel Belgazal <netanel@amazon.com>
860 M:      Arthur Kiyanovski <akiyano@amazon.com>
861 R:      Guy Tzalik <gtzalik@amazon.com>
862 R:      Saeed Bishara <saeedb@amazon.com>
863 L:      netdev@vger.kernel.org
864 S:      Supported
865 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
866 F:      drivers/net/ethernet/amazon/
867
868 AMAZON RDMA EFA DRIVER
869 M:      Gal Pressman <galpress@amazon.com>
870 R:      Yossi Leybovich <sleybo@amazon.com>
871 L:      linux-rdma@vger.kernel.org
872 S:      Supported
873 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
874 F:      drivers/infiniband/hw/efa/
875 F:      include/uapi/rdma/efa-abi.h
876
877 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
878 M:      Tom Lendacky <thomas.lendacky@amd.com>
879 M:      John Allen <john.allen@amd.com>
880 L:      linux-crypto@vger.kernel.org
881 S:      Supported
882 F:      drivers/crypto/ccp/
883 F:      include/linux/ccp.h
884
885 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
886 M:      Brijesh Singh <brijesh.singh@amd.com>
887 M:      Tom Lendacky <thomas.lendacky@amd.com>
888 L:      linux-crypto@vger.kernel.org
889 S:      Supported
890 F:      drivers/crypto/ccp/sev*
891 F:      include/uapi/linux/psp-sev.h
892
893 AMD DISPLAY CORE
894 M:      Harry Wentland <harry.wentland@amd.com>
895 M:      Leo Li <sunpeng.li@amd.com>
896 M:      Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
897 L:      amd-gfx@lists.freedesktop.org
898 S:      Supported
899 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
900 F:      drivers/gpu/drm/amd/display/
901
902 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
903 M:      Huang Rui <ray.huang@amd.com>
904 L:      linux-hwmon@vger.kernel.org
905 S:      Supported
906 F:      Documentation/hwmon/fam15h_power.rst
907 F:      drivers/hwmon/fam15h_power.c
908
909 AMD FCH GPIO DRIVER
910 M:      Enrico Weigelt, metux IT consult <info@metux.net>
911 L:      linux-gpio@vger.kernel.org
912 S:      Maintained
913 F:      drivers/gpio/gpio-amd-fch.c
914 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
915
916 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
917 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
918 S:      Orphan
919 F:      drivers/usb/gadget/udc/amd5536udc.*
920
921 AMD GEODE PROCESSOR/CHIPSET SUPPORT
922 M:      Andres Salomon <dilinger@queued.net>
923 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
924 S:      Supported
925 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
926 F:      arch/x86/include/asm/geode.h
927 F:      drivers/char/hw_random/geode-rng.c
928 F:      drivers/crypto/geode*
929 F:      drivers/video/fbdev/geode/
930
931 AMD IOMMU (AMD-VI)
932 M:      Joerg Roedel <joro@8bytes.org>
933 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
934 L:      iommu@lists.linux-foundation.org
935 S:      Maintained
936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
937 F:      drivers/iommu/amd/
938 F:      include/linux/amd-iommu.h
939
940 AMD KFD
941 M:      Felix Kuehling <Felix.Kuehling@amd.com>
942 L:      amd-gfx@lists.freedesktop.org
943 S:      Supported
944 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
945 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
946 F:      drivers/gpu/drm/amd/amdkfd/
947 F:      drivers/gpu/drm/amd/include/cik_structs.h
948 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
949 F:      drivers/gpu/drm/amd/include/v9_structs.h
950 F:      drivers/gpu/drm/amd/include/vi_structs.h
951 F:      include/uapi/linux/kfd_ioctl.h
952
953 AMD SPI DRIVER
954 M:      Sanjay R Mehta <sanju.mehta@amd.com>
955 S:      Maintained
956 F:      drivers/spi/spi-amd.c
957
958 AMD MP2 I2C DRIVER
959 M:      Elie Morisse <syniurge@gmail.com>
960 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
961 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
962 L:      linux-i2c@vger.kernel.org
963 S:      Maintained
964 F:      drivers/i2c/busses/i2c-amd-mp2*
965
966 AMD PMC DRIVER
967 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
968 L:      platform-driver-x86@vger.kernel.org
969 S:      Maintained
970 F:      drivers/platform/x86/amd-pmc.*
971
972 AMD POWERPLAY AND SWSMU
973 M:      Evan Quan <evan.quan@amd.com>
974 L:      amd-gfx@lists.freedesktop.org
975 S:      Supported
976 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
977 F:      drivers/gpu/drm/amd/pm/
978
979 AMD PTDMA DRIVER
980 M:      Sanjay R Mehta <sanju.mehta@amd.com>
981 L:      dmaengine@vger.kernel.org
982 S:      Maintained
983 F:      drivers/dma/ptdma/
984
985 AMD SEATTLE DEVICE TREE SUPPORT
986 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
987 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
988 M:      Tom Lendacky <thomas.lendacky@amd.com>
989 S:      Supported
990 F:      arch/arm64/boot/dts/amd/
991
992 AMD XGBE DRIVER
993 M:      Tom Lendacky <thomas.lendacky@amd.com>
994 L:      netdev@vger.kernel.org
995 S:      Supported
996 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
997 F:      drivers/net/ethernet/amd/xgbe/
998
999 AMD SENSOR FUSION HUB DRIVER
1000 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
1001 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1002 L:      linux-input@vger.kernel.org
1003 S:      Maintained
1004 F:      Documentation/hid/amd-sfh*
1005 F:      drivers/hid/amd-sfh-hid/
1006
1007 AMS AS73211 DRIVER
1008 M:      Christian Eggers <ceggers@arri.de>
1009 L:      linux-iio@vger.kernel.org
1010 S:      Maintained
1011 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1012 F:      drivers/iio/light/as73211.c
1013
1014 AMT (Automatic Multicast Tunneling)
1015 M:      Taehee Yoo <ap420073@gmail.com>
1016 L:      netdev@vger.kernel.org
1017 S:      Maintained
1018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1020 F:      drivers/net/amt.c
1021
1022 ANALOG DEVICES INC AD7192 DRIVER
1023 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1024 L:      linux-iio@vger.kernel.org
1025 S:      Supported
1026 W:      http://ez.analog.com/community/linux-device-drivers
1027 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1028 F:      drivers/iio/adc/ad7192.c
1029
1030 ANALOG DEVICES INC AD7292 DRIVER
1031 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1032 L:      linux-iio@vger.kernel.org
1033 S:      Supported
1034 W:      http://ez.analog.com/community/linux-device-drivers
1035 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1036 F:      drivers/iio/adc/ad7292.c
1037
1038 ANALOG DEVICES INC AD7768-1 DRIVER
1039 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1040 L:      linux-iio@vger.kernel.org
1041 S:      Supported
1042 W:      http://ez.analog.com/community/linux-device-drivers
1043 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1044 F:      drivers/iio/adc/ad7768-1.c
1045
1046 ANALOG DEVICES INC AD7780 DRIVER
1047 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1048 M:      Renato Lui Geh <renatogeh@gmail.com>
1049 L:      linux-iio@vger.kernel.org
1050 S:      Supported
1051 W:      http://ez.analog.com/community/linux-device-drivers
1052 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1053 F:      drivers/iio/adc/ad7780.c
1054
1055 ANALOG DEVICES INC AD9389B DRIVER
1056 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1057 L:      linux-media@vger.kernel.org
1058 S:      Maintained
1059 F:      drivers/media/i2c/ad9389b*
1060
1061 ANALOG DEVICES INC ADGS1408 DRIVER
1062 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1063 S:      Supported
1064 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1065 F:      drivers/mux/adgs1408.c
1066
1067 ANALOG DEVICES INC ADIN DRIVER
1068 M:      Michael Hennerich <michael.hennerich@analog.com>
1069 L:      netdev@vger.kernel.org
1070 S:      Supported
1071 W:      http://ez.analog.com/community/linux-device-drivers
1072 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1073 F:      drivers/net/phy/adin.c
1074
1075 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1076 M:      Nuno Sa <nuno.sa@analog.com>
1077 L:      linux-iio@vger.kernel.org
1078 S:      Supported
1079 F:      drivers/iio/imu/adis.c
1080 F:      include/linux/iio/imu/adis.h
1081
1082 ANALOG DEVICES INC ADIS16460 DRIVER
1083 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1084 L:      linux-iio@vger.kernel.org
1085 S:      Supported
1086 W:      http://ez.analog.com/community/linux-device-drivers
1087 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1088 F:      drivers/iio/imu/adis16460.c
1089
1090 ANALOG DEVICES INC ADIS16475 DRIVER
1091 M:      Nuno Sa <nuno.sa@analog.com>
1092 L:      linux-iio@vger.kernel.org
1093 W:      http://ez.analog.com/community/linux-device-drivers
1094 S:      Supported
1095 F:      drivers/iio/imu/adis16475.c
1096 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1097
1098 ANALOG DEVICES INC ADM1177 DRIVER
1099 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1100 L:      linux-hwmon@vger.kernel.org
1101 S:      Supported
1102 W:      http://ez.analog.com/community/linux-device-drivers
1103 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1104 F:      drivers/hwmon/adm1177.c
1105
1106 ANALOG DEVICES INC ADP5061 DRIVER
1107 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1108 L:      linux-pm@vger.kernel.org
1109 S:      Supported
1110 W:      http://ez.analog.com/community/linux-device-drivers
1111 F:      drivers/power/supply/adp5061.c
1112
1113 ANALOG DEVICES INC ADV7180 DRIVER
1114 M:      Lars-Peter Clausen <lars@metafoo.de>
1115 L:      linux-media@vger.kernel.org
1116 S:      Supported
1117 W:      http://ez.analog.com/community/linux-device-drivers
1118 F:      drivers/media/i2c/adv7180.c
1119 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1120
1121 ANALOG DEVICES INC ADV748X DRIVER
1122 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1123 L:      linux-media@vger.kernel.org
1124 S:      Maintained
1125 F:      drivers/media/i2c/adv748x/*
1126
1127 ANALOG DEVICES INC ADV7511 DRIVER
1128 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1129 L:      linux-media@vger.kernel.org
1130 S:      Maintained
1131 F:      drivers/media/i2c/adv7511*
1132
1133 ANALOG DEVICES INC ADV7604 DRIVER
1134 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1135 L:      linux-media@vger.kernel.org
1136 S:      Maintained
1137 F:      drivers/media/i2c/adv7604*
1138 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1139
1140 ANALOG DEVICES INC ADV7842 DRIVER
1141 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1142 L:      linux-media@vger.kernel.org
1143 S:      Maintained
1144 F:      drivers/media/i2c/adv7842*
1145
1146 ANALOG DEVICES INC ADXRS290 DRIVER
1147 M:      Nishant Malpani <nish.malpani25@gmail.com>
1148 L:      linux-iio@vger.kernel.org
1149 S:      Supported
1150 F:      drivers/iio/gyro/adxrs290.c
1151 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1152
1153 ANALOG DEVICES INC ASOC CODEC DRIVERS
1154 M:      Lars-Peter Clausen <lars@metafoo.de>
1155 M:      Nuno Sá <nuno.sa@analog.com>
1156 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1157 S:      Supported
1158 W:      http://wiki.analog.com/
1159 W:      http://ez.analog.com/community/linux-device-drivers
1160 F:      sound/soc/codecs/ad1*
1161 F:      sound/soc/codecs/ad7*
1162 F:      sound/soc/codecs/adau*
1163 F:      sound/soc/codecs/adav*
1164 F:      sound/soc/codecs/sigmadsp.*
1165 F:      sound/soc/codecs/ssm*
1166
1167 ANALOG DEVICES INC DMA DRIVERS
1168 M:      Lars-Peter Clausen <lars@metafoo.de>
1169 S:      Supported
1170 W:      http://ez.analog.com/community/linux-device-drivers
1171 F:      drivers/dma/dma-axi-dmac.c
1172
1173 ANALOG DEVICES INC IIO DRIVERS
1174 M:      Lars-Peter Clausen <lars@metafoo.de>
1175 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1176 S:      Supported
1177 W:      http://wiki.analog.com/
1178 W:      http://ez.analog.com/community/linux-device-drivers
1179 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1180 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1181 F:      Documentation/devicetree/bindings/iio/*/adi,*
1182 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1183 F:      drivers/iio/*/ad*
1184 F:      drivers/iio/adc/ltc249*
1185 F:      drivers/iio/amplifiers/hmc425a.c
1186 F:      drivers/staging/iio/*/ad*
1187 X:      drivers/iio/*/adjd*
1188
1189 ANALOGBITS PLL LIBRARIES
1190 M:      Paul Walmsley <paul.walmsley@sifive.com>
1191 S:      Supported
1192 F:      drivers/clk/analogbits/*
1193 F:      include/linux/clk/analogbits*
1194
1195 ANDES ARCHITECTURE
1196 M:      Nick Hu <nickhu@andestech.com>
1197 M:      Greentime Hu <green.hu@gmail.com>
1198 M:      Vincent Chen <deanbo422@gmail.com>
1199 S:      Supported
1200 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1201 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1202 F:      Documentation/devicetree/bindings/nds32/
1203 F:      arch/nds32/
1204 N:      nds32
1205 K:      nds32
1206
1207 ANDROID CONFIG FRAGMENTS
1208 M:      Rob Herring <robh@kernel.org>
1209 S:      Supported
1210 F:      kernel/configs/android*
1211
1212 ANDROID DRIVERS
1213 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1214 M:      Arve Hjønnevåg <arve@android.com>
1215 M:      Todd Kjos <tkjos@android.com>
1216 M:      Martijn Coenen <maco@android.com>
1217 M:      Joel Fernandes <joel@joelfernandes.org>
1218 M:      Christian Brauner <christian@brauner.io>
1219 M:      Hridya Valsaraju <hridya@google.com>
1220 M:      Suren Baghdasaryan <surenb@google.com>
1221 L:      linux-kernel@vger.kernel.org
1222 S:      Supported
1223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1224 F:      drivers/android/
1225 F:      drivers/staging/android/
1226
1227 ANDROID GOLDFISH PIC DRIVER
1228 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1229 S:      Supported
1230 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1231 F:      drivers/irqchip/irq-goldfish-pic.c
1232
1233 ANDROID GOLDFISH RTC DRIVER
1234 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1235 S:      Supported
1236 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1237 F:      drivers/rtc/rtc-goldfish.c
1238
1239 AOA (Apple Onboard Audio) ALSA DRIVER
1240 M:      Johannes Berg <johannes@sipsolutions.net>
1241 L:      linuxppc-dev@lists.ozlabs.org
1242 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1243 S:      Maintained
1244 F:      sound/aoa/
1245
1246 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1247 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1248 L:      linux-iio@vger.kernel.org
1249 S:      Maintained
1250 F:      drivers/iio/adc/stx104.c
1251
1252 APM DRIVER
1253 M:      Jiri Kosina <jikos@kernel.org>
1254 S:      Odd fixes
1255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1256 F:      arch/x86/kernel/apm_32.c
1257 F:      drivers/char/apm-emulation.c
1258 F:      include/linux/apm_bios.h
1259 F:      include/uapi/linux/apm_bios.h
1260
1261 APPARMOR SECURITY MODULE
1262 M:      John Johansen <john.johansen@canonical.com>
1263 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1264 S:      Supported
1265 W:      wiki.apparmor.net
1266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1267 F:      Documentation/admin-guide/LSM/apparmor.rst
1268 F:      security/apparmor/
1269
1270 APPLE BCM5974 MULTITOUCH DRIVER
1271 M:      Henrik Rydberg <rydberg@bitmath.org>
1272 L:      linux-input@vger.kernel.org
1273 S:      Odd fixes
1274 F:      drivers/input/mouse/bcm5974.c
1275
1276 APPLE DART IOMMU DRIVER
1277 M:      Sven Peter <sven@svenpeter.dev>
1278 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1279 L:      iommu@lists.linux-foundation.org
1280 S:      Maintained
1281 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1282 F:      drivers/iommu/apple-dart.c
1283
1284 APPLE SMC DRIVER
1285 M:      Henrik Rydberg <rydberg@bitmath.org>
1286 L:      linux-hwmon@vger.kernel.org
1287 S:      Odd fixes
1288 F:      drivers/hwmon/applesmc.c
1289
1290 APPLETALK NETWORK LAYER
1291 L:      netdev@vger.kernel.org
1292 S:      Odd fixes
1293 F:      drivers/net/appletalk/
1294 F:      include/linux/atalk.h
1295 F:      include/uapi/linux/atalk.h
1296 F:      net/appletalk/
1297
1298 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1299 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1300 S:      Supported
1301 F:      arch/arm64/boot/dts/apm/
1302
1303 APPLIED MICRO (APM) X-GENE SOC EDAC
1304 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1305 S:      Supported
1306 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1307 F:      drivers/edac/xgene_edac.c
1308
1309 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1310 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1311 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1312 S:      Supported
1313 F:      drivers/net/ethernet/apm/xgene-v2/
1314
1315 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1316 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1317 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1318 M:      Quan Nguyen <quan@os.amperecomputing.com>
1319 S:      Supported
1320 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1321 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1322 F:      drivers/net/ethernet/apm/xgene/
1323 F:      drivers/net/mdio/mdio-xgene.c
1324
1325 APPLIED MICRO (APM) X-GENE SOC PMU
1326 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1327 S:      Supported
1328 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1329 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1330 F:      drivers/perf/xgene_pmu.c
1331
1332 APTINA CAMERA SENSOR PLL
1333 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1334 L:      linux-media@vger.kernel.org
1335 S:      Maintained
1336 F:      drivers/media/i2c/aptina-pll.*
1337
1338 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1339 M:      Aleksa Savic <savicaleksa83@gmail.com>
1340 L:      linux-hwmon@vger.kernel.org
1341 S:      Maintained
1342 F:      Documentation/hwmon/aquacomputer_d5next.rst
1343 F:      drivers/hwmon/aquacomputer_d5next.c
1344
1345 AQUANTIA ETHERNET DRIVER (atlantic)
1346 M:      Igor Russkikh <irusskikh@marvell.com>
1347 L:      netdev@vger.kernel.org
1348 S:      Supported
1349 W:      https://www.marvell.com/
1350 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1351 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1352 F:      drivers/net/ethernet/aquantia/atlantic/
1353
1354 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1355 M:      Egor Pomozov <epomozov@marvell.com>
1356 L:      netdev@vger.kernel.org
1357 S:      Supported
1358 W:      http://www.aquantia.com
1359 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1360
1361 ARASAN NAND CONTROLLER DRIVER
1362 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1363 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1364 L:      linux-mtd@lists.infradead.org
1365 S:      Maintained
1366 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1367 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1368
1369 ARC FRAMEBUFFER DRIVER
1370 M:      Jaya Kumar <jayalk@intworks.biz>
1371 S:      Maintained
1372 F:      drivers/video/fbdev/arcfb.c
1373 F:      drivers/video/fbdev/core/fb_defio.c
1374
1375 ARC PGU DRM DRIVER
1376 M:      Alexey Brodkin <abrodkin@synopsys.com>
1377 S:      Supported
1378 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1379 F:      drivers/gpu/drm/tiny/arcpgu.c
1380
1381 ARCNET NETWORK LAYER
1382 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1383 L:      netdev@vger.kernel.org
1384 S:      Maintained
1385 F:      drivers/net/arcnet/
1386 F:      include/uapi/linux/if_arcnet.h
1387
1388 ARM ARCHITECTED TIMER DRIVER
1389 M:      Mark Rutland <mark.rutland@arm.com>
1390 M:      Marc Zyngier <maz@kernel.org>
1391 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1392 S:      Maintained
1393 F:      arch/arm/include/asm/arch_timer.h
1394 F:      arch/arm64/include/asm/arch_timer.h
1395 F:      drivers/clocksource/arm_arch_timer.c
1396
1397 ARM HDLCD DRM DRIVER
1398 M:      Liviu Dudau <liviu.dudau@arm.com>
1399 S:      Supported
1400 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1401 F:      drivers/gpu/drm/arm/hdlcd_*
1402
1403 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1404 M:      Linus Walleij <linus.walleij@linaro.org>
1405 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1406 S:      Maintained
1407 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1408 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1409 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1410 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1411 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1412 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1413 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1414 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1415 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1416 F:      arch/arm/boot/dts/arm-realview-*
1417 F:      arch/arm/boot/dts/integrator*
1418 F:      arch/arm/boot/dts/versatile*
1419 F:      arch/arm/mach-integrator/
1420 F:      arch/arm/mach-realview/
1421 F:      arch/arm/mach-versatile/
1422 F:      arch/arm/plat-versatile/
1423 F:      drivers/bus/arm-integrator-lm.c
1424 F:      drivers/clk/versatile/
1425 F:      drivers/i2c/busses/i2c-versatile.c
1426 F:      drivers/irqchip/irq-versatile-fpga.c
1427 F:      drivers/mtd/maps/physmap-versatile.*
1428 F:      drivers/power/reset/arm-versatile-reboot.c
1429 F:      drivers/soc/versatile/
1430
1431 ARM KOMEDA DRM-KMS DRIVER
1432 M:      James (Qian) Wang <james.qian.wang@arm.com>
1433 M:      Liviu Dudau <liviu.dudau@arm.com>
1434 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1435 L:      Mali DP Maintainers <malidp@foss.arm.com>
1436 S:      Supported
1437 T:      git git://anongit.freedesktop.org/drm/drm-misc
1438 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1439 F:      Documentation/gpu/komeda-kms.rst
1440 F:      drivers/gpu/drm/arm/display/include/
1441 F:      drivers/gpu/drm/arm/display/komeda/
1442
1443 ARM MALI PANFROST DRM DRIVER
1444 M:      Rob Herring <robh@kernel.org>
1445 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1446 R:      Steven Price <steven.price@arm.com>
1447 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1448 L:      dri-devel@lists.freedesktop.org
1449 S:      Supported
1450 T:      git git://anongit.freedesktop.org/drm/drm-misc
1451 F:      drivers/gpu/drm/panfrost/
1452 F:      include/uapi/drm/panfrost_drm.h
1453
1454 ARM MALI-DP DRM DRIVER
1455 M:      Liviu Dudau <liviu.dudau@arm.com>
1456 M:      Brian Starkey <brian.starkey@arm.com>
1457 L:      Mali DP Maintainers <malidp@foss.arm.com>
1458 S:      Supported
1459 T:      git git://anongit.freedesktop.org/drm/drm-misc
1460 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1461 F:      Documentation/gpu/afbc.rst
1462 F:      drivers/gpu/drm/arm/
1463
1464 ARM MFM AND FLOPPY DRIVERS
1465 M:      Ian Molton <spyro@f2s.com>
1466 S:      Maintained
1467 F:      arch/arm/include/asm/floppy.h
1468 F:      arch/arm/mach-rpc/floppydma.S
1469
1470 ARM PMU PROFILING AND DEBUGGING
1471 M:      Will Deacon <will@kernel.org>
1472 M:      Mark Rutland <mark.rutland@arm.com>
1473 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1474 S:      Maintained
1475 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1476 F:      Documentation/devicetree/bindings/perf/
1477 F:      arch/arm*/include/asm/hw_breakpoint.h
1478 F:      arch/arm*/include/asm/perf_event.h
1479 F:      arch/arm*/kernel/hw_breakpoint.c
1480 F:      arch/arm*/kernel/perf_*
1481 F:      drivers/perf/
1482 F:      include/linux/perf/arm_pmu.h
1483
1484 ARM PORT
1485 M:      Russell King <linux@armlinux.org.uk>
1486 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1487 S:      Odd Fixes
1488 W:      http://www.armlinux.org.uk/
1489 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1490 F:      arch/arm/
1491 X:      arch/arm/boot/dts/
1492
1493 ARM PRIMECELL AACI PL041 DRIVER
1494 M:      Russell King <linux@armlinux.org.uk>
1495 S:      Odd Fixes
1496 F:      sound/arm/aaci.*
1497
1498 ARM PRIMECELL BUS SUPPORT
1499 M:      Russell King <linux@armlinux.org.uk>
1500 S:      Odd Fixes
1501 F:      drivers/amba/
1502 F:      include/linux/amba/bus.h
1503
1504 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1505 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1506 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1507 L:      linux-mtd@lists.infradead.org
1508 S:      Maintained
1509 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1510 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1511
1512 ARM PRIMECELL PL35X SMC DRIVER
1513 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1514 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1515 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1516 S:      Maintained
1517 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1518 F:      drivers/memory/pl353-smc.c
1519
1520 ARM PRIMECELL CLCD PL110 DRIVER
1521 M:      Russell King <linux@armlinux.org.uk>
1522 S:      Odd Fixes
1523 F:      drivers/video/fbdev/amba-clcd.*
1524
1525 ARM PRIMECELL KMI PL050 DRIVER
1526 M:      Russell King <linux@armlinux.org.uk>
1527 S:      Odd Fixes
1528 F:      drivers/input/serio/ambakmi.*
1529 F:      include/linux/amba/kmi.h
1530
1531 ARM PRIMECELL MMCI PL180/1 DRIVER
1532 M:      Russell King <linux@armlinux.org.uk>
1533 S:      Odd Fixes
1534 F:      drivers/mmc/host/mmci.*
1535 F:      include/linux/amba/mmci.h
1536
1537 ARM PRIMECELL SSP PL022 SPI DRIVER
1538 M:      Linus Walleij <linus.walleij@linaro.org>
1539 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1540 S:      Maintained
1541 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1542 F:      drivers/spi/spi-pl022.c
1543
1544 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1545 M:      Russell King <linux@armlinux.org.uk>
1546 S:      Odd Fixes
1547 F:      drivers/tty/serial/amba-pl01*.c
1548 F:      include/linux/amba/serial.h
1549
1550 ARM PRIMECELL VIC PL190/PL192 DRIVER
1551 M:      Linus Walleij <linus.walleij@linaro.org>
1552 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1553 S:      Maintained
1554 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1555 F:      drivers/irqchip/irq-vic.c
1556
1557 ARM SMC WATCHDOG DRIVER
1558 M:      Julius Werner <jwerner@chromium.org>
1559 R:      Evan Benn <evanbenn@chromium.org>
1560 S:      Maintained
1561 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1562 F:      drivers/watchdog/arm_smc_wdt.c
1563
1564 ARM SMMU DRIVERS
1565 M:      Will Deacon <will@kernel.org>
1566 R:      Robin Murphy <robin.murphy@arm.com>
1567 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1568 S:      Maintained
1569 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1570 F:      drivers/iommu/arm/
1571 F:      drivers/iommu/io-pgtable-arm*
1572
1573 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1574 M:      Arnd Bergmann <arnd@arndb.de>
1575 M:      Olof Johansson <olof@lixom.net>
1576 M:      soc@kernel.org
1577 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1578 S:      Maintained
1579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1580 F:      arch/arm/boot/dts/Makefile
1581 F:      arch/arm64/boot/dts/Makefile
1582
1583 ARM SUB-ARCHITECTURES
1584 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1585 S:      Maintained
1586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1587 F:      arch/arm/mach-*/
1588 F:      arch/arm/plat-*/
1589
1590 ARM/ACTIONS SEMI ARCHITECTURE
1591 M:      Andreas Färber <afaerber@suse.de>
1592 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1593 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1594 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1595 S:      Maintained
1596 F:      Documentation/devicetree/bindings/arm/actions.yaml
1597 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1598 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1599 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1600 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1601 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1602 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1603 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1604 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1605 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1606 F:      arch/arm/boot/dts/owl-*
1607 F:      arch/arm/mach-actions/
1608 F:      arch/arm64/boot/dts/actions/
1609 F:      drivers/clk/actions/
1610 F:      drivers/clocksource/timer-owl*
1611 F:      drivers/dma/owl-dma.c
1612 F:      drivers/i2c/busses/i2c-owl.c
1613 F:      drivers/irqchip/irq-owl-sirq.c
1614 F:      drivers/mmc/host/owl-mmc.c
1615 F:      drivers/net/ethernet/actions/
1616 F:      drivers/pinctrl/actions/*
1617 F:      drivers/soc/actions/
1618 F:      include/dt-bindings/power/owl-*
1619 F:      include/dt-bindings/reset/actions,*
1620 F:      include/linux/soc/actions/
1621 N:      owl
1622
1623 ARM/ADS SPHERE MACHINE SUPPORT
1624 M:      Lennert Buytenhek <kernel@wantstofly.org>
1625 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1626 S:      Maintained
1627
1628 ARM/AFEB9260 MACHINE SUPPORT
1629 M:      Sergey Lapin <slapin@ossfans.org>
1630 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1631 S:      Maintained
1632
1633 ARM/AJECO 1ARM MACHINE SUPPORT
1634 M:      Lennert Buytenhek <kernel@wantstofly.org>
1635 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1636 S:      Maintained
1637
1638 ARM/Allwinner SoC Clock Support
1639 M:      Emilio López <emilio@elopez.com.ar>
1640 S:      Maintained
1641 F:      drivers/clk/sunxi/
1642
1643 ARM/Allwinner sunXi SoC support
1644 M:      Maxime Ripard <mripard@kernel.org>
1645 M:      Chen-Yu Tsai <wens@csie.org>
1646 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
1647 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1648 S:      Maintained
1649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1650 L:      linux-sunxi@lists.linux.dev
1651 F:      arch/arm/mach-sunxi/
1652 F:      arch/arm64/boot/dts/allwinner/
1653 F:      drivers/clk/sunxi-ng/
1654 F:      drivers/pinctrl/sunxi/
1655 F:      drivers/soc/sunxi/
1656 N:      allwinner
1657 N:      sun[x456789]i
1658 N:      sun50i
1659
1660 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1661 M:      Neil Armstrong <narmstrong@baylibre.com>
1662 M:      Jerome Brunet <jbrunet@baylibre.com>
1663 L:      linux-amlogic@lists.infradead.org
1664 S:      Maintained
1665 F:      Documentation/devicetree/bindings/clock/amlogic*
1666 F:      drivers/clk/meson/
1667 F:      include/dt-bindings/clock/gxbb*
1668 F:      include/dt-bindings/clock/meson*
1669
1670 ARM/Amlogic Meson SoC Crypto Drivers
1671 M:      Corentin Labbe <clabbe@baylibre.com>
1672 L:      linux-crypto@vger.kernel.org
1673 L:      linux-amlogic@lists.infradead.org
1674 S:      Maintained
1675 F:      Documentation/devicetree/bindings/crypto/amlogic*
1676 F:      drivers/crypto/amlogic/
1677
1678 ARM/Amlogic Meson SoC Sound Drivers
1679 M:      Jerome Brunet <jbrunet@baylibre.com>
1680 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1681 S:      Maintained
1682 F:      Documentation/devicetree/bindings/sound/amlogic*
1683 F:      sound/soc/meson/
1684
1685 ARM/Amlogic Meson SoC support
1686 M:      Neil Armstrong <narmstrong@baylibre.com>
1687 M:      Kevin Hilman <khilman@baylibre.com>
1688 R:      Jerome Brunet <jbrunet@baylibre.com>
1689 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1690 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1691 L:      linux-amlogic@lists.infradead.org
1692 S:      Maintained
1693 W:      http://linux-meson.com/
1694 F:      arch/arm/boot/dts/meson*
1695 F:      arch/arm/mach-meson/
1696 F:      arch/arm64/boot/dts/amlogic/
1697 F:      drivers/mmc/host/meson*
1698 F:      drivers/pinctrl/meson/
1699 F:      drivers/rtc/rtc-meson*
1700 F:      drivers/soc/amlogic/
1701 N:      meson
1702
1703 ARM/Annapurna Labs ALPINE ARCHITECTURE
1704 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1705 M:      Antoine Tenart <atenart@kernel.org>
1706 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1707 S:      Maintained
1708 F:      arch/arm/boot/dts/alpine*
1709 F:      arch/arm/mach-alpine/
1710 F:      arch/arm64/boot/dts/amazon/
1711 F:      drivers/*/*alpine*
1712
1713 ARM/APPLE MACHINE SUPPORT
1714 M:      Hector Martin <marcan@marcan.st>
1715 M:      Sven Peter <sven@svenpeter.dev>
1716 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1717 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1718 S:      Maintained
1719 W:      https://asahilinux.org
1720 B:      https://github.com/AsahiLinux/linux/issues
1721 C:      irc://irc.oftc.net/asahi-dev
1722 T:      git https://github.com/AsahiLinux/linux.git
1723 F:      Documentation/devicetree/bindings/arm/apple.yaml
1724 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1725 F:      Documentation/devicetree/bindings/interrupt-controller/apple,aic.yaml
1726 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1727 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1728 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1729 F:      arch/arm64/boot/dts/apple/
1730 F:      drivers/i2c/busses/i2c-pasemi-core.c
1731 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1732 F:      drivers/irqchip/irq-apple-aic.c
1733 F:      drivers/mailbox/apple-mailbox.c
1734 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1735 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1736 F:      include/dt-bindings/pinctrl/apple.h
1737 F:      include/linux/apple-mailbox.h
1738
1739 ARM/ARTPEC MACHINE SUPPORT
1740 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1741 M:      Lars Persson <lars.persson@axis.com>
1742 L:      linux-arm-kernel@axis.com
1743 S:      Maintained
1744 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1745 F:      arch/arm/boot/dts/artpec6*
1746 F:      arch/arm/mach-artpec
1747 F:      drivers/clk/axis
1748 F:      drivers/crypto/axis
1749 F:      drivers/mmc/host/usdhi6rol0.c
1750 F:      drivers/pinctrl/pinctrl-artpec*
1751
1752 ARM/ASPEED I2C DRIVER
1753 M:      Brendan Higgins <brendanhiggins@google.com>
1754 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1755 R:      Joel Stanley <joel@jms.id.au>
1756 L:      linux-i2c@vger.kernel.org
1757 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1758 S:      Maintained
1759 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
1760 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1761 F:      drivers/i2c/busses/i2c-aspeed.c
1762 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1763
1764 ARM/ASPEED MACHINE SUPPORT
1765 M:      Joel Stanley <joel@jms.id.au>
1766 R:      Andrew Jeffery <andrew@aj.id.au>
1767 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1768 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1769 S:      Supported
1770 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1772 F:      arch/arm/boot/dts/aspeed-*
1773 F:      arch/arm/mach-aspeed/
1774 N:      aspeed
1775
1776 ARM/BITMAIN ARCHITECTURE
1777 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1778 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1779 S:      Maintained
1780 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1781 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1782 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1783 F:      arch/arm64/boot/dts/bitmain/
1784 F:      drivers/clk/clk-bm1880.c
1785 F:      drivers/pinctrl/pinctrl-bm1880.c
1786
1787 ARM/CALXEDA HIGHBANK ARCHITECTURE
1788 M:      Andre Przywara <andre.przywara@arm.com>
1789 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1790 S:      Maintained
1791 F:      arch/arm/boot/dts/ecx-*.dts*
1792 F:      arch/arm/boot/dts/highbank.dts
1793 F:      arch/arm/mach-highbank/
1794
1795 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1796 M:      Krzysztof Halasa <khalasa@piap.pl>
1797 S:      Maintained
1798 F:      arch/arm/mach-cns3xxx/
1799
1800 ARM/CAVIUM THUNDER NETWORK DRIVER
1801 M:      Sunil Goutham <sgoutham@marvell.com>
1802 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1803 S:      Supported
1804 F:      drivers/net/ethernet/cavium/thunder/
1805
1806 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1807 M:      Lukasz Majewski <lukma@denx.de>
1808 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1809 S:      Maintained
1810 F:      arch/arm/mach-ep93xx/ts72xx.c
1811
1812 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1813 M:      Alexander Shiyan <shc_work@mail.ru>
1814 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1815 S:      Odd Fixes
1816 N:      clps711x
1817
1818 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1819 M:      Lennert Buytenhek <kernel@wantstofly.org>
1820 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1821 S:      Maintained
1822
1823 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1824 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1825 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1826 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1827 S:      Maintained
1828 F:      arch/arm/mach-ep93xx/
1829 F:      arch/arm/mach-ep93xx/include/mach/
1830
1831 ARM/CLKDEV SUPPORT
1832 M:      Russell King <linux@armlinux.org.uk>
1833 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1834 S:      Maintained
1835 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1836 F:      drivers/clk/clkdev.c
1837
1838 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1839 M:      Baruch Siach <baruch@tkos.co.il>
1840 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1841 S:      Maintained
1842 F:      arch/arm/boot/dts/cx92755*
1843 N:      digicolor
1844
1845 ARM/CONTEC MICRO9 MACHINE SUPPORT
1846 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1847 S:      Maintained
1848 F:      arch/arm/mach-ep93xx/micro9.c
1849
1850 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1851 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1852 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1853 R:      Mike Leach <mike.leach@linaro.org>
1854 R:      Leo Yan <leo.yan@linaro.org>
1855 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1856 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1857 S:      Maintained
1858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1859 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1860 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1861 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1862 F:      Documentation/devicetree/bindings/arm/coresight.txt
1863 F:      Documentation/devicetree/bindings/arm/ete.yaml
1864 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1865 F:      Documentation/trace/coresight/*
1866 F:      drivers/hwtracing/coresight/*
1867 F:      include/dt-bindings/arm/coresight-cti-dt.h
1868 F:      include/linux/coresight*
1869 F:      tools/perf/arch/arm/util/auxtrace.c
1870 F:      tools/perf/arch/arm/util/cs-etm.c
1871 F:      tools/perf/arch/arm/util/cs-etm.h
1872 F:      tools/perf/arch/arm/util/pmu.c
1873 F:      tools/perf/util/cs-etm-decoder/*
1874 F:      tools/perf/util/cs-etm.*
1875
1876 ARM/CORGI MACHINE SUPPORT
1877 M:      Richard Purdie <rpurdie@rpsys.net>
1878 S:      Maintained
1879
1880 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1881 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1882 M:      Linus Walleij <linus.walleij@linaro.org>
1883 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1884 S:      Maintained
1885 T:      git git://github.com/ulli-kroll/linux.git
1886 F:      Documentation/devicetree/bindings/arm/gemini.yaml
1887 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1888 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1889 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
1890 F:      arch/arm/boot/dts/gemini*
1891 F:      arch/arm/mach-gemini/
1892 F:      drivers/crypto/gemini/
1893 F:      drivers/net/ethernet/cortina/
1894 F:      drivers/pinctrl/pinctrl-gemini.c
1895 F:      drivers/rtc/rtc-ftrtc010.c
1896
1897 ARM/CZ.NIC TURRIS SUPPORT
1898 M:      Marek Behún <kabel@kernel.org>
1899 S:      Maintained
1900 W:      https://www.turris.cz/
1901 F:      Documentation/ABI/testing/debugfs-moxtet
1902 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1903 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1904 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1905 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1906 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1907 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1908 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1909 F:      drivers/bus/moxtet.c
1910 F:      drivers/firmware/turris-mox-rwtm.c
1911 F:      drivers/leds/leds-turris-omnia.c
1912 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
1913 F:      drivers/gpio/gpio-moxtet.c
1914 F:      drivers/watchdog/armada_37xx_wdt.c
1915 F:      include/dt-bindings/bus/moxtet.h
1916 F:      include/linux/armada-37xx-rwtm-mailbox.h
1917 F:      include/linux/moxtet.h
1918
1919 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1920 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1921 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1922 S:      Maintained
1923 F:      arch/arm/mach-pxa/ezx.c
1924
1925 ARM/FARADAY FA526 PORT
1926 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1927 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1928 S:      Maintained
1929 T:      git git://git.berlios.de/gemini-board
1930 F:      arch/arm/mm/*-fa*
1931
1932 ARM/FOOTBRIDGE ARCHITECTURE
1933 M:      Russell King <linux@armlinux.org.uk>
1934 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1935 S:      Maintained
1936 W:      http://www.armlinux.org.uk/
1937 F:      arch/arm/include/asm/hardware/dec21285.h
1938 F:      arch/arm/mach-footbridge/
1939
1940 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1941 M:      Shawn Guo <shawnguo@kernel.org>
1942 M:      Sascha Hauer <s.hauer@pengutronix.de>
1943 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1944 R:      Fabio Estevam <festevam@gmail.com>
1945 R:      NXP Linux Team <linux-imx@nxp.com>
1946 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1947 S:      Maintained
1948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1949 X:      drivers/media/i2c/
1950 N:      imx
1951 N:      mxs
1952
1953 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1954 M:      Shawn Guo <shawnguo@kernel.org>
1955 M:      Li Yang <leoyang.li@nxp.com>
1956 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1957 S:      Maintained
1958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1959 F:      arch/arm/boot/dts/ls1021a*
1960 F:      arch/arm64/boot/dts/freescale/fsl-*
1961 F:      arch/arm64/boot/dts/freescale/qoriq-*
1962
1963 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1964 M:      Shawn Guo <shawnguo@kernel.org>
1965 M:      Sascha Hauer <s.hauer@pengutronix.de>
1966 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1967 R:      Stefan Agner <stefan@agner.ch>
1968 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1969 S:      Maintained
1970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1971 F:      arch/arm/boot/dts/vf*
1972 F:      arch/arm/mach-imx/*vf610*
1973
1974 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1975 M:      Lennert Buytenhek <kernel@wantstofly.org>
1976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1977 S:      Maintained
1978
1979 ARM/GUMSTIX MACHINE SUPPORT
1980 M:      Steve Sakoman <sakoman@gmail.com>
1981 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1982 S:      Maintained
1983
1984 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1985 M:      Philipp Zabel <philipp.zabel@gmail.com>
1986 M:      Paul Parsons <lost.distance@yahoo.com>
1987 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1988 S:      Maintained
1989 F:      arch/arm/mach-pxa/hx4700.c
1990 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1991 F:      sound/soc/pxa/hx4700.c
1992
1993 ARM/HISILICON SOC SUPPORT
1994 M:      Wei Xu <xuwei5@hisilicon.com>
1995 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1996 S:      Supported
1997 W:      http://www.hisilicon.com
1998 T:      git git://github.com/hisilicon/linux-hisi.git
1999 F:      arch/arm/boot/dts/hi3*
2000 F:      arch/arm/boot/dts/hip*
2001 F:      arch/arm/boot/dts/hisi*
2002 F:      arch/arm/mach-hisi/
2003 F:      arch/arm64/boot/dts/hisilicon/
2004
2005 ARM/HP JORNADA 7XX MACHINE SUPPORT
2006 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2007 S:      Maintained
2008 W:      www.jlime.com
2009 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2010 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2011 F:      arch/arm/mach-sa1100/jornada720.c
2012
2013 ARM/IGEP MACHINE SUPPORT
2014 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2015 M:      Javier Martinez Canillas <javier@dowhile0.org>
2016 L:      linux-omap@vger.kernel.org
2017 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2018 S:      Maintained
2019 F:      arch/arm/boot/dts/omap3-igep*
2020
2021 ARM/INCOME PXA270 SUPPORT
2022 M:      Marek Vasut <marek.vasut@gmail.com>
2023 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2024 S:      Maintained
2025 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2026
2027 ARM/INTEL IOP32X ARM ARCHITECTURE
2028 M:      Lennert Buytenhek <kernel@wantstofly.org>
2029 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2030 S:      Maintained
2031
2032 ARM/INTEL IQ81342EX MACHINE SUPPORT
2033 M:      Lennert Buytenhek <kernel@wantstofly.org>
2034 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2035 S:      Maintained
2036
2037 ARM/INTEL IXDP2850 MACHINE SUPPORT
2038 M:      Lennert Buytenhek <kernel@wantstofly.org>
2039 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2040 S:      Maintained
2041
2042 ARM/INTEL IXP4XX ARM ARCHITECTURE
2043 M:      Linus Walleij <linusw@kernel.org>
2044 M:      Imre Kaloz <kaloz@openwrt.org>
2045 M:      Krzysztof Halasa <khalasa@piap.pl>
2046 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2047 S:      Maintained
2048 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2049 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2050 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2051 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2052 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2053 F:      arch/arm/mach-ixp4xx/
2054 F:      drivers/bus/intel-ixp4xx-eb.c
2055 F:      drivers/clocksource/timer-ixp4xx.c
2056 F:      drivers/crypto/ixp4xx_crypto.c
2057 F:      drivers/gpio/gpio-ixp4xx.c
2058 F:      drivers/irqchip/irq-ixp4xx.c
2059 F:      include/linux/irqchip/irq-ixp4xx.h
2060 F:      include/linux/platform_data/timer-ixp4xx.h
2061
2062 ARM/INTEL KEEMBAY ARCHITECTURE
2063 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2064 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2065 S:      Maintained
2066 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2067 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2068 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2069
2070 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
2071 M:      Jonathan Cameron <jic23@cam.ac.uk>
2072 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2073 S:      Maintained
2074 F:      arch/arm/mach-pxa/stargate2.c
2075 F:      drivers/pcmcia/pxa2xx_stargate2.c
2076
2077 ARM/INTEL XSC3 (MANZANO) ARM CORE
2078 M:      Lennert Buytenhek <kernel@wantstofly.org>
2079 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2080 S:      Maintained
2081
2082 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2083 M:      Lennert Buytenhek <kernel@wantstofly.org>
2084 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2085 S:      Maintained
2086
2087 ARM/LG1K ARCHITECTURE
2088 M:      Chanho Min <chanho.min@lge.com>
2089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2090 S:      Maintained
2091 F:      arch/arm64/boot/dts/lg/
2092
2093 ARM/LOGICPD PXA270 MACHINE SUPPORT
2094 M:      Lennert Buytenhek <kernel@wantstofly.org>
2095 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2096 S:      Maintained
2097
2098 ARM/LPC18XX ARCHITECTURE
2099 M:      Vladimir Zapolskiy <vz@mleia.com>
2100 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2101 S:      Maintained
2102 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2103 F:      arch/arm/boot/dts/lpc43*
2104 F:      drivers/i2c/busses/i2c-lpc2k.c
2105 F:      drivers/memory/pl172.c
2106 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2107 F:      drivers/rtc/rtc-lpc24xx.c
2108 N:      lpc18xx
2109
2110 ARM/LPC32XX SOC SUPPORT
2111 M:      Vladimir Zapolskiy <vz@mleia.com>
2112 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2113 S:      Maintained
2114 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2115 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2116 F:      arch/arm/boot/dts/lpc32*
2117 F:      arch/arm/mach-lpc32xx/
2118 F:      drivers/i2c/busses/i2c-pnx.c
2119 F:      drivers/net/ethernet/nxp/lpc_eth.c
2120 F:      drivers/usb/host/ohci-nxp.c
2121 F:      drivers/watchdog/pnx4008_wdt.c
2122 N:      lpc32xx
2123
2124 ARM/MAGICIAN MACHINE SUPPORT
2125 M:      Philipp Zabel <philipp.zabel@gmail.com>
2126 S:      Maintained
2127
2128 ARM/Marvell Dove/MV78xx0/Orion SOC support
2129 M:      Andrew Lunn <andrew@lunn.ch>
2130 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2131 M:      Gregory Clement <gregory.clement@bootlin.com>
2132 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2133 S:      Maintained
2134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2135 F:      Documentation/devicetree/bindings/soc/dove/
2136 F:      arch/arm/boot/dts/dove*
2137 F:      arch/arm/boot/dts/orion5x*
2138 F:      arch/arm/mach-dove/
2139 F:      arch/arm/mach-mv78xx0/
2140 F:      arch/arm/mach-orion5x/
2141 F:      arch/arm/plat-orion/
2142 F:      drivers/soc/dove/
2143
2144 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2145 M:      Andrew Lunn <andrew@lunn.ch>
2146 M:      Gregory Clement <gregory.clement@bootlin.com>
2147 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2148 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2149 S:      Maintained
2150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2151 F:      arch/arm/boot/dts/armada*
2152 F:      arch/arm/boot/dts/kirkwood*
2153 F:      arch/arm/configs/mvebu_*_defconfig
2154 F:      arch/arm/mach-mvebu/
2155 F:      arch/arm64/boot/dts/marvell/armada*
2156 F:      arch/arm64/boot/dts/marvell/cn913*
2157 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2158 F:      drivers/cpufreq/armada-8k-cpufreq.c
2159 F:      drivers/cpufreq/mvebu-cpufreq.c
2160 F:      drivers/irqchip/irq-armada-370-xp.c
2161 F:      drivers/irqchip/irq-mvebu-*
2162 F:      drivers/pinctrl/mvebu/
2163 F:      drivers/rtc/rtc-armada38x.c
2164
2165 ARM/Mediatek RTC DRIVER
2166 M:      Eddie Huang <eddie.huang@mediatek.com>
2167 M:      Sean Wang <sean.wang@mediatek.com>
2168 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2169 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2170 S:      Maintained
2171 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2172 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2173 F:      drivers/rtc/rtc-mt2712.c
2174 F:      drivers/rtc/rtc-mt6397.c
2175 F:      drivers/rtc/rtc-mt7622.c
2176
2177 ARM/Mediatek SoC support
2178 M:      Matthias Brugger <matthias.bgg@gmail.com>
2179 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2180 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2181 S:      Maintained
2182 W:      https://mtk.wiki.kernel.org/
2183 C:      irc://chat.freenode.net/linux-mediatek
2184 F:      arch/arm/boot/dts/mt6*
2185 F:      arch/arm/boot/dts/mt7*
2186 F:      arch/arm/boot/dts/mt8*
2187 F:      arch/arm/mach-mediatek/
2188 F:      arch/arm64/boot/dts/mediatek/
2189 F:      drivers/soc/mediatek/
2190 N:      mtk
2191 N:      mt[678]
2192 K:      mediatek
2193
2194 ARM/Mediatek USB3 PHY DRIVER
2195 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2196 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2197 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2198 S:      Maintained
2199 F:      Documentation/devicetree/bindings/phy/mediatek,*
2200 F:      drivers/phy/mediatek/
2201
2202 ARM/Microchip (AT91) SoC support
2203 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2204 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2205 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2206 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2207 S:      Supported
2208 W:      http://www.linux4sam.org
2209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2210 F:      arch/arm/boot/dts/at91*.dts
2211 F:      arch/arm/boot/dts/at91*.dtsi
2212 F:      arch/arm/boot/dts/sama*.dts
2213 F:      arch/arm/boot/dts/sama*.dtsi
2214 F:      arch/arm/include/debug/at91.S
2215 F:      arch/arm/mach-at91/
2216 F:      drivers/memory/atmel*
2217 F:      drivers/watchdog/sama5d4_wdt.c
2218 F:      include/soc/at91/
2219 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2220 X:      drivers/net/wireless/atmel/
2221 N:      at91
2222 N:      atmel
2223
2224 ARM/Microchip Sparx5 SoC support
2225 M:      Lars Povlsen <lars.povlsen@microchip.com>
2226 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2227 M:      UNGLinuxDriver@microchip.com
2228 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2229 S:      Supported
2230 T:      git git://github.com/microchip-ung/linux-upstream.git
2231 F:      arch/arm64/boot/dts/microchip/
2232 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2233 N:      sparx5
2234
2235 Microchip Timer Counter Block (TCB) Capture Driver
2236 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2237 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2238 L:      linux-iio@vger.kernel.org
2239 S:      Maintained
2240 F:      drivers/counter/microchip-tcb-capture.c
2241
2242 ARM/MIOA701 MACHINE SUPPORT
2243 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2244 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2245 S:      Maintained
2246 F:      arch/arm/mach-pxa/mioa701.c
2247
2248 ARM/MStar/Sigmastar Armv7 SoC support
2249 M:      Daniel Palmer <daniel@thingy.jp>
2250 M:      Romain Perier <romain.perier@gmail.com>
2251 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2252 S:      Maintained
2253 W:      http://linux-chenxing.org/
2254 T:      git git://github.com/linux-chenxing/linux.git
2255 F:      Documentation/devicetree/bindings/arm/mstar/*
2256 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2257 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2258 F:      arch/arm/boot/dts/mstar-*
2259 F:      arch/arm/mach-mstar/
2260 F:      drivers/clk/mstar/
2261 F:      drivers/gpio/gpio-msc313.c
2262 F:      drivers/watchdog/msc313e_wdt.c
2263 F:      include/dt-bindings/clock/mstar-*
2264 F:      include/dt-bindings/gpio/msc313-gpio.h
2265
2266 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2267 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2268 S:      Maintained
2269
2270 ARM/NOMADIK/Ux500 ARCHITECTURES
2271 M:      Linus Walleij <linus.walleij@linaro.org>
2272 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2273 S:      Maintained
2274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2275 F:      Documentation/devicetree/bindings/arm/ste-*
2276 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2277 F:      Documentation/devicetree/bindings/arm/ux500/
2278 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2279 F:      arch/arm/boot/dts/ste-*
2280 F:      arch/arm/mach-nomadik/
2281 F:      arch/arm/mach-ux500/
2282 F:      drivers/clk/clk-nomadik.c
2283 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2284 F:      drivers/dma/ste_dma40*
2285 F:      drivers/hwspinlock/u8500_hsem.c
2286 F:      drivers/i2c/busses/i2c-nomadik.c
2287 F:      drivers/iio/adc/ab8500-gpadc.c
2288 F:      drivers/mfd/ab8500*
2289 F:      drivers/mfd/abx500*
2290 F:      drivers/mfd/db8500*
2291 F:      drivers/pinctrl/nomadik/
2292 F:      drivers/rtc/rtc-ab8500.c
2293 F:      drivers/rtc/rtc-pl031.c
2294 F:      drivers/soc/ux500/
2295
2296 ARM/NUVOTON NPCM ARCHITECTURE
2297 M:      Avi Fishman <avifishman70@gmail.com>
2298 M:      Tomer Maimon <tmaimon77@gmail.com>
2299 M:      Tali Perry <tali.perry1@gmail.com>
2300 R:      Patrick Venture <venture@google.com>
2301 R:      Nancy Yuen <yuenn@google.com>
2302 R:      Benjamin Fair <benjaminfair@google.com>
2303 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2304 S:      Supported
2305 F:      Documentation/devicetree/bindings/*/*/*npcm*
2306 F:      Documentation/devicetree/bindings/*/*npcm*
2307 F:      arch/arm/boot/dts/nuvoton-npcm*
2308 F:      arch/arm/mach-npcm/
2309 F:      drivers/*/*npcm*
2310 F:      drivers/*/*/*npcm*
2311 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2312
2313 ARM/NUVOTON WPCM450 ARCHITECTURE
2314 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2315 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2316 S:      Maintained
2317 F:      Documentation/devicetree/bindings/*/*wpcm*
2318 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2319 F:      arch/arm/mach-npcm/wpcm450.c
2320 F:      drivers/*/*wpcm*
2321
2322 ARM/NXP S32G ARCHITECTURE
2323 M:      Chester Lin <clin@suse.com>
2324 R:      Andreas Färber <afaerber@suse.de>
2325 R:      Matthias Brugger <mbrugger@suse.com>
2326 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2327 S:      Maintained
2328 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2329
2330 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2331 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2332 S:      Orphan
2333 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2334 F:      arch/arm/mach-s3c/gta02.h
2335 F:      arch/arm/mach-s3c/mach-gta02.c
2336
2337 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2338 M:      Alexander Clouter <alex@digriz.org.uk>
2339 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2340 S:      Maintained
2341 W:      http://www.digriz.org.uk/ts78xx/kernel
2342 F:      arch/arm/mach-orion5x/ts78xx-*
2343
2344 ARM/OXNAS platform support
2345 M:      Neil Armstrong <narmstrong@baylibre.com>
2346 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2347 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2348 S:      Maintained
2349 F:      arch/arm/boot/dts/ox8*.dts*
2350 F:      arch/arm/mach-oxnas/
2351 F:      drivers/power/reset/oxnas-restart.c
2352 N:      oxnas
2353
2354 ARM/PALM TREO SUPPORT
2355 M:      Tomas Cech <sleep_walker@suse.com>
2356 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2357 S:      Maintained
2358 W:      http://hackndev.com
2359 F:      arch/arm/mach-pxa/palmtreo.*
2360
2361 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2362 M:      Marek Vasut <marek.vasut@gmail.com>
2363 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2364 S:      Maintained
2365 W:      http://hackndev.com
2366 F:      arch/arm/mach-pxa/include/mach/palmld.h
2367 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2368 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2369 F:      arch/arm/mach-pxa/palmld.c
2370 F:      arch/arm/mach-pxa/palmt5.*
2371 F:      arch/arm/mach-pxa/palmtc.c
2372 F:      arch/arm/mach-pxa/palmte2.*
2373 F:      arch/arm/mach-pxa/palmtx.c
2374
2375 ARM/PALMZ72 SUPPORT
2376 M:      Sergey Lapin <slapin@ossfans.org>
2377 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2378 S:      Maintained
2379 W:      http://hackndev.com
2380 F:      arch/arm/mach-pxa/palmz72.*
2381
2382 ARM/PLEB SUPPORT
2383 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2384 S:      Maintained
2385 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2386
2387 ARM/PT DIGITAL BOARD PORT
2388 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2389 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2390 S:      Maintained
2391 W:      http://www.armlinux.org.uk/
2392
2393 ARM/QUALCOMM SUPPORT
2394 M:      Andy Gross <agross@kernel.org>
2395 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2396 L:      linux-arm-msm@vger.kernel.org
2397 S:      Maintained
2398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2399 F:      Documentation/devicetree/bindings/*/qcom*
2400 F:      Documentation/devicetree/bindings/soc/qcom/
2401 F:      arch/arm/boot/dts/qcom-*.dts
2402 F:      arch/arm/boot/dts/qcom-*.dtsi
2403 F:      arch/arm/mach-qcom/
2404 F:      arch/arm64/boot/dts/qcom/
2405 F:      drivers/*/*/qcom*
2406 F:      drivers/*/*/qcom/
2407 F:      drivers/*/pm8???-*
2408 F:      drivers/*/qcom*
2409 F:      drivers/*/qcom/
2410 F:      drivers/bluetooth/btqcomsmd.c
2411 F:      drivers/clocksource/timer-qcom.c
2412 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2413 F:      drivers/extcon/extcon-qcom*
2414 F:      drivers/i2c/busses/i2c-qcom-geni.c
2415 F:      drivers/i2c/busses/i2c-qup.c
2416 F:      drivers/iommu/msm*
2417 F:      drivers/mfd/ssbi.c
2418 F:      drivers/mmc/host/mmci_qcom*
2419 F:      drivers/mmc/host/sdhci-msm.c
2420 F:      drivers/pci/controller/dwc/pcie-qcom.c
2421 F:      drivers/phy/qualcomm/
2422 F:      drivers/power/*/msm*
2423 F:      drivers/reset/reset-qcom-*
2424 F:      drivers/scsi/ufs/ufs-qcom*
2425 F:      drivers/spi/spi-geni-qcom.c
2426 F:      drivers/spi/spi-qcom-qspi.c
2427 F:      drivers/spi/spi-qup.c
2428 F:      drivers/tty/serial/msm_serial.c
2429 F:      drivers/usb/dwc3/dwc3-qcom.c
2430 F:      include/dt-bindings/*/qcom*
2431 F:      include/linux/*/qcom*
2432 F:      include/linux/soc/qcom/
2433
2434 ARM/RADISYS ENP2611 MACHINE SUPPORT
2435 M:      Lennert Buytenhek <kernel@wantstofly.org>
2436 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2437 S:      Maintained
2438
2439 ARM/RDA MICRO ARCHITECTURE
2440 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2441 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2442 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2443 S:      Maintained
2444 F:      Documentation/devicetree/bindings/arm/rda.yaml
2445 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2446 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2447 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2448 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2449 F:      arch/arm/boot/dts/rda8810pl-*
2450 F:      drivers/clocksource/timer-rda.c
2451 F:      drivers/gpio/gpio-rda.c
2452 F:      drivers/irqchip/irq-rda-intc.c
2453 F:      drivers/tty/serial/rda-uart.c
2454
2455 ARM/REALTEK ARCHITECTURE
2456 M:      Andreas Färber <afaerber@suse.de>
2457 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2458 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2459 S:      Maintained
2460 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2461 F:      arch/arm/boot/dts/rtd*
2462 F:      arch/arm/mach-realtek/
2463 F:      arch/arm64/boot/dts/realtek/
2464
2465 ARM/RENESAS ARM64 ARCHITECTURE
2466 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2467 M:      Magnus Damm <magnus.damm@gmail.com>
2468 L:      linux-renesas-soc@vger.kernel.org
2469 S:      Supported
2470 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2472 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2473 F:      arch/arm64/boot/dts/renesas/
2474 F:      drivers/soc/renesas/
2475 F:      include/linux/soc/renesas/
2476
2477 ARM/RISCPC ARCHITECTURE
2478 M:      Russell King <linux@armlinux.org.uk>
2479 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2480 S:      Maintained
2481 W:      http://www.armlinux.org.uk/
2482 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2483 F:      arch/arm/include/asm/hardware/ioc.h
2484 F:      arch/arm/include/asm/hardware/iomd.h
2485 F:      arch/arm/include/asm/hardware/memc.h
2486 F:      arch/arm/mach-rpc/
2487 F:      drivers/net/ethernet/8390/etherh.c
2488 F:      drivers/net/ethernet/i825xx/ether1*
2489 F:      drivers/net/ethernet/seeq/ether3*
2490 F:      drivers/scsi/arm/
2491
2492 ARM/Rockchip SoC support
2493 M:      Heiko Stuebner <heiko@sntech.de>
2494 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2495 L:      linux-rockchip@lists.infradead.org
2496 S:      Maintained
2497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2498 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2499 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2500 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2501 F:      arch/arm/boot/dts/rk3*
2502 F:      arch/arm/boot/dts/rv1108*
2503 F:      arch/arm/mach-rockchip/
2504 F:      drivers/*/*/*rockchip*
2505 F:      drivers/*/*rockchip*
2506 F:      drivers/clk/rockchip/
2507 F:      drivers/i2c/busses/i2c-rk3x.c
2508 F:      sound/soc/rockchip/
2509 N:      rockchip
2510
2511 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2512 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
2513 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2514 L:      linux-samsung-soc@vger.kernel.org
2515 S:      Maintained
2516 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2517 F:      Documentation/arm/samsung/
2518 F:      Documentation/devicetree/bindings/arm/samsung/
2519 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2520 F:      arch/arm/boot/dts/exynos*
2521 F:      arch/arm/boot/dts/s3c*
2522 F:      arch/arm/boot/dts/s5p*
2523 F:      arch/arm/mach-exynos*/
2524 F:      arch/arm/mach-s3c/
2525 F:      arch/arm/mach-s5p*/
2526 F:      arch/arm64/boot/dts/exynos/
2527 F:      drivers/*/*/*s3c24*
2528 F:      drivers/*/*s3c24*
2529 F:      drivers/*/*s3c64xx*
2530 F:      drivers/*/*s5pv210*
2531 F:      drivers/clocksource/samsung_pwm_timer.c
2532 F:      drivers/memory/samsung/
2533 F:      drivers/pwm/pwm-samsung.c
2534 F:      drivers/soc/samsung/
2535 F:      drivers/tty/serial/samsung*
2536 F:      include/clocksource/samsung_pwm.h
2537 F:      include/linux/platform_data/*s3c*
2538 F:      include/linux/serial_s3c.h
2539 F:      include/linux/soc/samsung/
2540 N:      exynos
2541 N:      s3c2410
2542 N:      s3c64xx
2543 N:      s5pv210
2544
2545 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2546 M:      Andrzej Hajda <a.hajda@samsung.com>
2547 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2548 L:      linux-media@vger.kernel.org
2549 S:      Maintained
2550 F:      drivers/media/platform/s5p-g2d/
2551
2552 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2553 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2554 L:      linux-samsung-soc@vger.kernel.org
2555 L:      linux-media@vger.kernel.org
2556 S:      Maintained
2557 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2558 F:      drivers/media/cec/platform/s5p/
2559
2560 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2561 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2562 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2563 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2564 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2565 L:      linux-media@vger.kernel.org
2566 S:      Maintained
2567 F:      drivers/media/platform/s5p-jpeg/
2568
2569 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2570 M:      Andrzej Hajda <a.hajda@samsung.com>
2571 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2572 L:      linux-media@vger.kernel.org
2573 S:      Maintained
2574 F:      drivers/media/platform/s5p-mfc/
2575
2576 ARM/SHMOBILE ARM ARCHITECTURE
2577 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2578 M:      Magnus Damm <magnus.damm@gmail.com>
2579 L:      linux-renesas-soc@vger.kernel.org
2580 S:      Supported
2581 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2583 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2584 F:      arch/arm/boot/dts/emev2*
2585 F:      arch/arm/boot/dts/gr-peach*
2586 F:      arch/arm/boot/dts/iwg20d-q7*
2587 F:      arch/arm/boot/dts/r7s*
2588 F:      arch/arm/boot/dts/r8a*
2589 F:      arch/arm/boot/dts/r9a*
2590 F:      arch/arm/boot/dts/sh*
2591 F:      arch/arm/configs/shmobile_defconfig
2592 F:      arch/arm/include/debug/renesas-scif.S
2593 F:      arch/arm/mach-shmobile/
2594 F:      drivers/soc/renesas/
2595 F:      include/linux/soc/renesas/
2596
2597 ARM/SOCFPGA ARCHITECTURE
2598 M:      Dinh Nguyen <dinguyen@kernel.org>
2599 S:      Maintained
2600 W:      http://www.rocketboards.org
2601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2602 F:      arch/arm/boot/dts/socfpga*
2603 F:      arch/arm/configs/socfpga_defconfig
2604 F:      arch/arm/mach-socfpga/
2605 F:      arch/arm64/boot/dts/altera/
2606 F:      arch/arm64/boot/dts/intel/
2607
2608 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2609 M:      Dinh Nguyen <dinguyen@kernel.org>
2610 S:      Maintained
2611 F:      drivers/clk/socfpga/
2612
2613 ARM/SOCFPGA EDAC SUPPORT
2614 M:      Dinh Nguyen <dinguyen@kernel.org>
2615 S:      Maintained
2616 F:      drivers/edac/altera_edac.[ch]
2617
2618 ARM/SPREADTRUM SoC SUPPORT
2619 M:      Orson Zhai <orsonzhai@gmail.com>
2620 M:      Baolin Wang <baolin.wang7@gmail.com>
2621 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2622 S:      Maintained
2623 F:      arch/arm64/boot/dts/sprd
2624 N:      sprd
2625 N:      sc27xx
2626 N:      sc2731
2627
2628 ARM/STI ARCHITECTURE
2629 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2630 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2631 S:      Maintained
2632 W:      http://www.stlinux.com
2633 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2634 F:      arch/arm/boot/dts/sti*
2635 F:      arch/arm/mach-sti/
2636 F:      drivers/ata/ahci_st.c
2637 F:      drivers/char/hw_random/st-rng.c
2638 F:      drivers/clocksource/arm_global_timer.c
2639 F:      drivers/clocksource/clksrc_st_lpc.c
2640 F:      drivers/cpufreq/sti-cpufreq.c
2641 F:      drivers/dma/st_fdma*
2642 F:      drivers/i2c/busses/i2c-st.c
2643 F:      drivers/media/platform/sti/c8sectpfe/
2644 F:      drivers/media/rc/st_rc.c
2645 F:      drivers/mmc/host/sdhci-st.c
2646 F:      drivers/phy/st/phy-miphy28lp.c
2647 F:      drivers/phy/st/phy-stih407-usb.c
2648 F:      drivers/pinctrl/pinctrl-st.c
2649 F:      drivers/remoteproc/st_remoteproc.c
2650 F:      drivers/remoteproc/st_slim_rproc.c
2651 F:      drivers/reset/sti/
2652 F:      drivers/rtc/rtc-st-lpc.c
2653 F:      drivers/tty/serial/st-asc.c
2654 F:      drivers/usb/dwc3/dwc3-st.c
2655 F:      drivers/usb/host/ehci-st.c
2656 F:      drivers/usb/host/ohci-st.c
2657 F:      drivers/watchdog/st_lpc_wdt.c
2658 F:      include/linux/remoteproc/st_slim_rproc.h
2659
2660 ARM/STM32 ARCHITECTURE
2661 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2662 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2663 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2664 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2665 S:      Maintained
2666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2667 F:      arch/arm/boot/dts/stm32*
2668 F:      arch/arm/mach-stm32/
2669 F:      drivers/clocksource/armv7m_systick.c
2670 N:      stm32
2671 N:      stm
2672
2673 ARM/Synaptics SoC support
2674 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2675 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2676 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2677 S:      Maintained
2678 F:      arch/arm/boot/dts/berlin*
2679 F:      arch/arm/mach-berlin/
2680 F:      arch/arm64/boot/dts/synaptics/
2681
2682 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2683 M:      Lennert Buytenhek <kernel@wantstofly.org>
2684 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2685 S:      Maintained
2686
2687 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2688 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2689 L:      linux-tegra@vger.kernel.org
2690 L:      linux-media@vger.kernel.org
2691 S:      Maintained
2692 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2693 F:      drivers/media/cec/platform/tegra/
2694
2695 ARM/TETON BGA MACHINE SUPPORT
2696 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2698 S:      Maintained
2699
2700 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2701 M:      Santosh Shilimkar <ssantosh@kernel.org>
2702 L:      linux-kernel@vger.kernel.org
2703 S:      Maintained
2704 F:      drivers/memory/*emif*
2705
2706 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2707 M:      Santosh Shilimkar <ssantosh@kernel.org>
2708 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2709 S:      Maintained
2710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2711 F:      arch/arm/boot/dts/keystone-*
2712 F:      arch/arm/mach-keystone/
2713
2714 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2715 M:      Santosh Shilimkar <ssantosh@kernel.org>
2716 L:      linux-kernel@vger.kernel.org
2717 S:      Maintained
2718 F:      drivers/clk/keystone/
2719
2720 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2721 M:      Santosh Shilimkar <ssantosh@kernel.org>
2722 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2723 L:      linux-kernel@vger.kernel.org
2724 S:      Maintained
2725 F:      drivers/clocksource/timer-keystone.c
2726
2727 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2728 M:      Santosh Shilimkar <ssantosh@kernel.org>
2729 L:      linux-kernel@vger.kernel.org
2730 S:      Maintained
2731 F:      drivers/power/reset/keystone-reset.c
2732
2733 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2734 M:      Nishanth Menon <nm@ti.com>
2735 M:      Vignesh Raghavendra <vigneshr@ti.com>
2736 M:      Tero Kristo <kristo@kernel.org>
2737 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2738 S:      Supported
2739 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2740 F:      arch/arm64/boot/dts/ti/Makefile
2741 F:      arch/arm64/boot/dts/ti/k3-*
2742 F:      include/dt-bindings/pinctrl/k3.h
2743
2744 ARM/THECUS N2100 MACHINE SUPPORT
2745 M:      Lennert Buytenhek <kernel@wantstofly.org>
2746 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2747 S:      Maintained
2748
2749 ARM/TOSA MACHINE SUPPORT
2750 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2751 M:      Dirk Opfer <dirk@opfer-online.de>
2752 S:      Maintained
2753
2754 ARM/TOSHIBA VISCONTI ARCHITECTURE
2755 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2756 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2757 S:      Supported
2758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2759 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2760 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2761 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2762 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2763 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2764 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2765 F:      arch/arm64/boot/dts/toshiba/
2766 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2767 F:      drivers/gpio/gpio-visconti.c
2768 F:      drivers/pci/controller/dwc/pcie-visconti.c
2769 F:      drivers/pinctrl/visconti/
2770 F:      drivers/watchdog/visconti_wdt.c
2771 N:      visconti
2772
2773 ARM/UNIPHIER ARCHITECTURE
2774 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2775 M:      Masami Hiramatsu <mhiramat@kernel.org>
2776 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2777 S:      Maintained
2778 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2779 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2780 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2781 F:      arch/arm/boot/dts/uniphier*
2782 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2783 F:      arch/arm/mach-uniphier/
2784 F:      arch/arm/mm/cache-uniphier.c
2785 F:      arch/arm64/boot/dts/socionext/uniphier*
2786 F:      drivers/bus/uniphier-system-bus.c
2787 F:      drivers/clk/uniphier/
2788 F:      drivers/dma/uniphier-mdmac.c
2789 F:      drivers/gpio/gpio-uniphier.c
2790 F:      drivers/i2c/busses/i2c-uniphier*
2791 F:      drivers/irqchip/irq-uniphier-aidet.c
2792 F:      drivers/mmc/host/uniphier-sd.c
2793 F:      drivers/pinctrl/uniphier/
2794 F:      drivers/reset/reset-uniphier.c
2795 F:      drivers/tty/serial/8250/8250_uniphier.c
2796 N:      uniphier
2797
2798 ARM/VERSATILE EXPRESS PLATFORM
2799 M:      Liviu Dudau <liviu.dudau@arm.com>
2800 M:      Sudeep Holla <sudeep.holla@arm.com>
2801 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2802 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2803 S:      Maintained
2804 F:      */*/*/vexpress*
2805 F:      */*/vexpress*
2806 F:      arch/arm/boot/dts/vexpress*
2807 F:      arch/arm/mach-vexpress/
2808 F:      arch/arm64/boot/dts/arm/
2809 F:      drivers/clk/versatile/clk-vexpress-osc.c
2810 F:      drivers/clocksource/timer-versatile.c
2811 N:      mps2
2812
2813 ARM/VFP SUPPORT
2814 M:      Russell King <linux@armlinux.org.uk>
2815 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2816 S:      Maintained
2817 W:      http://www.armlinux.org.uk/
2818 F:      arch/arm/vfp/
2819
2820 ARM/VOIPAC PXA270 SUPPORT
2821 M:      Marek Vasut <marek.vasut@gmail.com>
2822 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2823 S:      Maintained
2824 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2825 F:      arch/arm/mach-pxa/vpac270.c
2826
2827 ARM/VT8500 ARM ARCHITECTURE
2828 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2829 S:      Orphan
2830 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2831 F:      arch/arm/mach-vt8500/
2832 F:      drivers/clocksource/timer-vt8500.c
2833 F:      drivers/i2c/busses/i2c-wmt.c
2834 F:      drivers/mmc/host/wmt-sdmmc.c
2835 F:      drivers/pwm/pwm-vt8500.c
2836 F:      drivers/rtc/rtc-vt8500.c
2837 F:      drivers/tty/serial/vt8500_serial.c
2838 F:      drivers/usb/host/ehci-platform.c
2839 F:      drivers/usb/host/uhci-platform.c
2840 F:      drivers/video/fbdev/vt8500lcdfb.*
2841 F:      drivers/video/fbdev/wm8505fb*
2842 F:      drivers/video/fbdev/wmt_ge_rops.*
2843
2844 ARM/ZIPIT Z2 SUPPORT
2845 M:      Marek Vasut <marek.vasut@gmail.com>
2846 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2847 S:      Maintained
2848 F:      arch/arm/mach-pxa/include/mach/z2.h
2849 F:      arch/arm/mach-pxa/z2.c
2850
2851 ARM/ZYNQ ARCHITECTURE
2852 M:      Michal Simek <michal.simek@xilinx.com>
2853 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2854 S:      Supported
2855 W:      http://wiki.xilinx.com
2856 T:      git https://github.com/Xilinx/linux-xlnx.git
2857 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2858 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2859 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2860 F:      arch/arm/mach-zynq/
2861 F:      drivers/clocksource/timer-cadence-ttc.c
2862 F:      drivers/cpuidle/cpuidle-zynq.c
2863 F:      drivers/edac/synopsys_edac.c
2864 F:      drivers/i2c/busses/i2c-cadence.c
2865 F:      drivers/i2c/busses/i2c-xiic.c
2866 F:      drivers/mmc/host/sdhci-of-arasan.c
2867 N:      zynq
2868 N:      xilinx
2869
2870 ARM64 PORT (AARCH64 ARCHITECTURE)
2871 M:      Catalin Marinas <catalin.marinas@arm.com>
2872 M:      Will Deacon <will@kernel.org>
2873 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2874 S:      Maintained
2875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2876 F:      Documentation/arm64/
2877 F:      arch/arm64/
2878 F:      tools/testing/selftests/arm64/
2879 X:      arch/arm64/boot/dts/
2880
2881 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2882 M:      George McCollister <george.mccollister@gmail.com>
2883 L:      netdev@vger.kernel.org
2884 S:      Maintained
2885 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2886 F:      drivers/net/dsa/xrs700x/*
2887 F:      net/dsa/tag_xrs700x.c
2888
2889 AS3645A LED FLASH CONTROLLER DRIVER
2890 M:      Sakari Ailus <sakari.ailus@iki.fi>
2891 L:      linux-leds@vger.kernel.org
2892 S:      Maintained
2893 F:      drivers/leds/flash/leds-as3645a.c
2894
2895 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2896 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2897 L:      linux-media@vger.kernel.org
2898 S:      Maintained
2899 T:      git git://linuxtv.org/media_tree.git
2900 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2901 F:      drivers/media/i2c/ak7375.c
2902
2903 ASAHI KASEI AK8974 DRIVER
2904 M:      Linus Walleij <linus.walleij@linaro.org>
2905 L:      linux-iio@vger.kernel.org
2906 S:      Supported
2907 W:      http://www.akm.com/
2908 F:      drivers/iio/magnetometer/ak8974.c
2909
2910 ASC7621 HARDWARE MONITOR DRIVER
2911 M:      George Joseph <george.joseph@fairview5.com>
2912 L:      linux-hwmon@vger.kernel.org
2913 S:      Maintained
2914 F:      Documentation/hwmon/asc7621.rst
2915 F:      drivers/hwmon/asc7621.c
2916
2917 ASIX AX88796C SPI ETHERNET ADAPTER
2918 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2919 S:      Maintained
2920 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
2921 F:      drivers/net/ethernet/asix/ax88796c_*
2922
2923 ASPEED PINCTRL DRIVERS
2924 M:      Andrew Jeffery <andrew@aj.id.au>
2925 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2926 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2927 L:      linux-gpio@vger.kernel.org
2928 S:      Maintained
2929 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2930 F:      drivers/pinctrl/aspeed/
2931
2932 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2933 M:      Eddie James <eajames@linux.ibm.com>
2934 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2935 S:      Maintained
2936 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2937 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2938 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2939
2940 ASPEED SD/MMC DRIVER
2941 M:      Andrew Jeffery <andrew@aj.id.au>
2942 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2943 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2944 L:      linux-mmc@vger.kernel.org
2945 S:      Maintained
2946 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
2947 F:      drivers/mmc/host/sdhci-of-aspeed*
2948
2949 ASPEED VIDEO ENGINE DRIVER
2950 M:      Eddie James <eajames@linux.ibm.com>
2951 L:      linux-media@vger.kernel.org
2952 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2953 S:      Maintained
2954 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2955 F:      drivers/media/platform/aspeed-video.c
2956
2957 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2958 M:      Corentin Chary <corentin.chary@gmail.com>
2959 L:      acpi4asus-user@lists.sourceforge.net
2960 L:      platform-driver-x86@vger.kernel.org
2961 S:      Maintained
2962 W:      http://acpi4asus.sf.net
2963 F:      drivers/platform/x86/asus*.c
2964 F:      drivers/platform/x86/eeepc*.c
2965
2966 ASUS WIRELESS RADIO CONTROL DRIVER
2967 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2968 L:      platform-driver-x86@vger.kernel.org
2969 S:      Maintained
2970 F:      drivers/platform/x86/asus-wireless.c
2971
2972 ASYMMETRIC KEYS
2973 M:      David Howells <dhowells@redhat.com>
2974 L:      keyrings@vger.kernel.org
2975 S:      Maintained
2976 F:      Documentation/crypto/asymmetric-keys.rst
2977 F:      crypto/asymmetric_keys/
2978 F:      include/crypto/pkcs7.h
2979 F:      include/crypto/public_key.h
2980 F:      include/linux/verification.h
2981
2982 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2983 R:      Dan Williams <dan.j.williams@intel.com>
2984 S:      Odd fixes
2985 W:      http://sourceforge.net/projects/xscaleiop
2986 F:      Documentation/crypto/async-tx-api.rst
2987 F:      crypto/async_tx/
2988 F:      include/linux/async_tx.h
2989
2990 AT24 EEPROM DRIVER
2991 M:      Bartosz Golaszewski <brgl@bgdev.pl>
2992 L:      linux-i2c@vger.kernel.org
2993 S:      Maintained
2994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2995 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2996 F:      drivers/misc/eeprom/at24.c
2997
2998 ATA OVER ETHERNET (AOE) DRIVER
2999 M:      "Justin Sanders" <justin@coraid.com>
3000 S:      Supported
3001 W:      http://www.openaoe.org/
3002 F:      Documentation/admin-guide/aoe/
3003 F:      drivers/block/aoe/
3004
3005 ATC260X PMIC MFD DRIVER
3006 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3007 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3008 L:      linux-actions@lists.infradead.org
3009 S:      Maintained
3010 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3011 F:      drivers/input/misc/atc260x-onkey.c
3012 F:      drivers/mfd/atc260*
3013 F:      drivers/power/reset/atc260x-poweroff.c
3014 F:      drivers/regulator/atc260x-regulator.c
3015 F:      include/linux/mfd/atc260x/*
3016
3017 ATHEROS 71XX/9XXX GPIO DRIVER
3018 M:      Alban Bedel <albeu@free.fr>
3019 S:      Maintained
3020 W:      https://github.com/AlbanBedel/linux
3021 T:      git git://github.com/AlbanBedel/linux
3022 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3023 F:      drivers/gpio/gpio-ath79.c
3024
3025 ATHEROS 71XX/9XXX USB PHY DRIVER
3026 M:      Alban Bedel <albeu@free.fr>
3027 S:      Maintained
3028 W:      https://github.com/AlbanBedel/linux
3029 T:      git git://github.com/AlbanBedel/linux
3030 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3031 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3032
3033 ATHEROS ATH GENERIC UTILITIES
3034 M:      Kalle Valo <kvalo@codeaurora.org>
3035 L:      linux-wireless@vger.kernel.org
3036 S:      Supported
3037 F:      drivers/net/wireless/ath/*
3038
3039 ATHEROS ATH5K WIRELESS DRIVER
3040 M:      Jiri Slaby <jirislaby@kernel.org>
3041 M:      Nick Kossifidis <mickflemm@gmail.com>
3042 M:      Luis Chamberlain <mcgrof@kernel.org>
3043 L:      linux-wireless@vger.kernel.org
3044 S:      Maintained
3045 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3046 F:      drivers/net/wireless/ath/ath5k/
3047
3048 ATHEROS ATH6KL WIRELESS DRIVER
3049 M:      Kalle Valo <kvalo@codeaurora.org>
3050 L:      linux-wireless@vger.kernel.org
3051 S:      Supported
3052 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
3054 F:      drivers/net/wireless/ath/ath6kl/
3055
3056 ATI_REMOTE2 DRIVER
3057 M:      Ville Syrjala <syrjala@sci.fi>
3058 S:      Maintained
3059 F:      drivers/input/misc/ati_remote2.c
3060
3061 ATK0110 HWMON DRIVER
3062 M:      Luca Tettamanti <kronos.it@gmail.com>
3063 L:      linux-hwmon@vger.kernel.org
3064 S:      Maintained
3065 F:      drivers/hwmon/asus_atk0110.c
3066
3067 ATLX ETHERNET DRIVERS
3068 M:      Chris Snook <chris.snook@gmail.com>
3069 L:      netdev@vger.kernel.org
3070 S:      Maintained
3071 W:      http://sourceforge.net/projects/atl1
3072 W:      http://atl1.sourceforge.net
3073 F:      drivers/net/ethernet/atheros/
3074
3075 ATM
3076 M:      Chas Williams <3chas3@gmail.com>
3077 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3078 L:      netdev@vger.kernel.org
3079 S:      Maintained
3080 W:      http://linux-atm.sourceforge.net
3081 F:      drivers/atm/
3082 F:      include/linux/atm*
3083 F:      include/uapi/linux/atm*
3084
3085 ATMEL MACB ETHERNET DRIVER
3086 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3087 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3088 S:      Supported
3089 F:      drivers/net/ethernet/cadence/
3090
3091 ATMEL MAXTOUCH DRIVER
3092 M:      Nick Dyer <nick@shmanahar.org>
3093 S:      Maintained
3094 T:      git git://github.com/ndyer/linux.git
3095 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3096 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3097
3098 ATMEL WIRELESS DRIVER
3099 M:      Simon Kelley <simon@thekelleys.org.uk>
3100 L:      linux-wireless@vger.kernel.org
3101 S:      Maintained
3102 W:      http://www.thekelleys.org.uk/atmel
3103 W:      http://atmelwlandriver.sourceforge.net/
3104 F:      drivers/net/wireless/atmel/atmel*
3105
3106 ATOMIC INFRASTRUCTURE
3107 M:      Will Deacon <will@kernel.org>
3108 M:      Peter Zijlstra <peterz@infradead.org>
3109 R:      Boqun Feng <boqun.feng@gmail.com>
3110 L:      linux-kernel@vger.kernel.org
3111 S:      Maintained
3112 F:      arch/*/include/asm/atomic*.h
3113 F:      include/*/atomic*.h
3114 F:      include/linux/refcount.h
3115 F:      Documentation/atomic_*.txt
3116 F:      scripts/atomic/
3117
3118 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3119 M:      Bradley Grove <linuxdrivers@attotech.com>
3120 L:      linux-scsi@vger.kernel.org
3121 S:      Supported
3122 W:      http://www.attotech.com
3123 F:      drivers/scsi/esas2r
3124
3125 ATUSB IEEE 802.15.4 RADIO DRIVER
3126 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3127 L:      linux-wpan@vger.kernel.org
3128 S:      Maintained
3129 F:      drivers/net/ieee802154/at86rf230.h
3130 F:      drivers/net/ieee802154/atusb.c
3131 F:      drivers/net/ieee802154/atusb.h
3132
3133 AUDIT SUBSYSTEM
3134 M:      Paul Moore <paul@paul-moore.com>
3135 M:      Eric Paris <eparis@redhat.com>
3136 L:      linux-audit@redhat.com (moderated for non-subscribers)
3137 S:      Supported
3138 W:      https://github.com/linux-audit
3139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3140 F:      include/asm-generic/audit_*.h
3141 F:      include/linux/audit.h
3142 F:      include/linux/audit_arch.h
3143 F:      include/uapi/linux/audit.h
3144 F:      kernel/audit*
3145 F:      lib/*audit.c
3146
3147 AUXILIARY DISPLAY DRIVERS
3148 M:      Miguel Ojeda <ojeda@kernel.org>
3149 S:      Maintained
3150 F:      drivers/auxdisplay/
3151 F:      include/linux/cfag12864b.h
3152
3153 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3154 M:      Andreas Klinger <ak@it-klinger.de>
3155 L:      linux-iio@vger.kernel.org
3156 S:      Maintained
3157 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3158 F:      drivers/iio/adc/hx711.c
3159
3160 AX.25 NETWORK LAYER
3161 M:      Ralf Baechle <ralf@linux-mips.org>
3162 L:      linux-hams@vger.kernel.org
3163 S:      Maintained
3164 W:      http://www.linux-ax25.org/
3165 F:      include/net/ax25.h
3166 F:      include/uapi/linux/ax25.h
3167 F:      net/ax25/
3168
3169 AXENTIA ARM DEVICES
3170 M:      Peter Rosin <peda@axentia.se>
3171 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3172 S:      Maintained
3173 F:      arch/arm/boot/dts/at91-linea.dtsi
3174 F:      arch/arm/boot/dts/at91-natte.dtsi
3175 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3176 F:      arch/arm/boot/dts/at91-tse850-3.dts
3177
3178 AXENTIA ASOC DRIVERS
3179 M:      Peter Rosin <peda@axentia.se>
3180 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3181 S:      Maintained
3182 F:      Documentation/devicetree/bindings/sound/axentia,*
3183 F:      sound/soc/atmel/tse850-pcm5142.c
3184
3185 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3186 M:      Nuno Sá <nuno.sa@analog.com>
3187 L:      linux-hwmon@vger.kernel.org
3188 S:      Supported
3189 W:      http://ez.analog.com/community/linux-device-drivers
3190 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3191 F:      drivers/hwmon/axi-fan-control.c
3192
3193 AXXIA I2C CONTROLLER
3194 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3195 L:      linux-i2c@vger.kernel.org
3196 S:      Maintained
3197 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3198 F:      drivers/i2c/busses/i2c-axxia.c
3199
3200 AZ6007 DVB DRIVER
3201 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3202 L:      linux-media@vger.kernel.org
3203 S:      Maintained
3204 W:      https://linuxtv.org
3205 T:      git git://linuxtv.org/media_tree.git
3206 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3207
3208 AZTECH FM RADIO RECEIVER DRIVER
3209 M:      Hans Verkuil <hverkuil@xs4all.nl>
3210 L:      linux-media@vger.kernel.org
3211 S:      Maintained
3212 W:      https://linuxtv.org
3213 T:      git git://linuxtv.org/media_tree.git
3214 F:      drivers/media/radio/radio-aztech*
3215
3216 B43 WIRELESS DRIVER
3217 L:      linux-wireless@vger.kernel.org
3218 L:      b43-dev@lists.infradead.org
3219 S:      Odd Fixes
3220 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3221 F:      drivers/net/wireless/broadcom/b43/
3222
3223 B43LEGACY WIRELESS DRIVER
3224 M:      Larry Finger <Larry.Finger@lwfinger.net>
3225 L:      linux-wireless@vger.kernel.org
3226 L:      b43-dev@lists.infradead.org
3227 S:      Maintained
3228 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3229 F:      drivers/net/wireless/broadcom/b43legacy/
3230
3231 BACKLIGHT CLASS/SUBSYSTEM
3232 M:      Lee Jones <lee.jones@linaro.org>
3233 M:      Daniel Thompson <daniel.thompson@linaro.org>
3234 M:      Jingoo Han <jingoohan1@gmail.com>
3235 L:      dri-devel@lists.freedesktop.org
3236 S:      Maintained
3237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3238 F:      Documentation/ABI/stable/sysfs-class-backlight
3239 F:      Documentation/ABI/testing/sysfs-class-backlight
3240 F:      Documentation/devicetree/bindings/leds/backlight
3241 F:      drivers/video/backlight/
3242 F:      include/linux/backlight.h
3243 F:      include/linux/pwm_backlight.h
3244
3245 BARCO P50 GPIO DRIVER
3246 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3247 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3248 S:      Maintained
3249 F:      drivers/platform/x86/barco-p50-gpio.c
3250
3251 BATMAN ADVANCED
3252 M:      Marek Lindner <mareklindner@neomailbox.ch>
3253 M:      Simon Wunderlich <sw@simonwunderlich.de>
3254 M:      Antonio Quartulli <a@unstable.cc>
3255 M:      Sven Eckelmann <sven@narfation.org>
3256 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3257 S:      Maintained
3258 W:      https://www.open-mesh.org/
3259 Q:      https://patchwork.open-mesh.org/project/batman/list/
3260 B:      https://www.open-mesh.org/projects/batman-adv/issues
3261 C:      ircs://irc.hackint.org/batadv
3262 T:      git https://git.open-mesh.org/linux-merge.git
3263 F:      Documentation/networking/batman-adv.rst
3264 F:      include/uapi/linux/batadv_packet.h
3265 F:      include/uapi/linux/batman_adv.h
3266 F:      net/batman-adv/
3267
3268 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3269 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3270 L:      linux-hams@vger.kernel.org
3271 S:      Maintained
3272 W:      http://www.baycom.org/~tom/ham/ham.html
3273 F:      drivers/net/hamradio/baycom*
3274
3275 BCACHE (BLOCK LAYER CACHE)
3276 M:      Coly Li <colyli@suse.de>
3277 M:      Kent Overstreet <kent.overstreet@gmail.com>
3278 L:      linux-bcache@vger.kernel.org
3279 S:      Maintained
3280 W:      http://bcache.evilpiepirate.org
3281 C:      irc://irc.oftc.net/bcache
3282 F:      drivers/md/bcache/
3283
3284 BDISP ST MEDIA DRIVER
3285 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3286 L:      linux-media@vger.kernel.org
3287 S:      Supported
3288 W:      https://linuxtv.org
3289 T:      git git://linuxtv.org/media_tree.git
3290 F:      drivers/media/platform/sti/bdisp
3291
3292 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3293 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3294 L:      netdev@vger.kernel.org
3295 S:      Maintained
3296 F:      drivers/net/ethernet/ec_bhf.c
3297
3298 BEFS FILE SYSTEM
3299 M:      Luis de Bethencourt <luisbg@kernel.org>
3300 M:      Salah Triki <salah.triki@gmail.com>
3301 S:      Maintained
3302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3303 F:      Documentation/filesystems/befs.rst
3304 F:      fs/befs/
3305
3306 BFQ I/O SCHEDULER
3307 M:      Paolo Valente <paolo.valente@linaro.org>
3308 M:      Jens Axboe <axboe@kernel.dk>
3309 L:      linux-block@vger.kernel.org
3310 S:      Maintained
3311 F:      Documentation/block/bfq-iosched.rst
3312 F:      block/bfq-*
3313
3314 BFS FILE SYSTEM
3315 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3316 S:      Maintained
3317 F:      Documentation/filesystems/bfs.rst
3318 F:      fs/bfs/
3319 F:      include/uapi/linux/bfs_fs.h
3320
3321 BITMAP API
3322 M:      Yury Norov <yury.norov@gmail.com>
3323 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3324 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3325 S:      Maintained
3326 F:      include/asm-generic/bitops/find.h
3327 F:      include/linux/bitmap.h
3328 F:      lib/bitmap.c
3329 F:      lib/find_bit.c
3330 F:      lib/find_bit_benchmark.c
3331 F:      lib/test_bitmap.c
3332 F:      tools/include/asm-generic/bitops/find.h
3333 F:      tools/include/linux/bitmap.h
3334 F:      tools/lib/bitmap.c
3335 F:      tools/lib/find_bit.c
3336
3337 BLINKM RGB LED DRIVER
3338 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3339 S:      Maintained
3340 F:      drivers/leds/leds-blinkm.c
3341
3342 BLOCK LAYER
3343 M:      Jens Axboe <axboe@kernel.dk>
3344 L:      linux-block@vger.kernel.org
3345 S:      Maintained
3346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3347 F:      block/
3348 F:      drivers/block/
3349 F:      include/linux/blk*
3350 F:      kernel/trace/blktrace.c
3351 F:      lib/sbitmap.c
3352
3353 BLOCK2MTD DRIVER
3354 M:      Joern Engel <joern@lazybastard.org>
3355 L:      linux-mtd@lists.infradead.org
3356 S:      Maintained
3357 F:      drivers/mtd/devices/block2mtd.c
3358
3359 BLUETOOTH DRIVERS
3360 M:      Marcel Holtmann <marcel@holtmann.org>
3361 M:      Johan Hedberg <johan.hedberg@gmail.com>
3362 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3363 L:      linux-bluetooth@vger.kernel.org
3364 S:      Supported
3365 W:      http://www.bluez.org/
3366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3368 F:      drivers/bluetooth/
3369
3370 BLUETOOTH SUBSYSTEM
3371 M:      Marcel Holtmann <marcel@holtmann.org>
3372 M:      Johan Hedberg <johan.hedberg@gmail.com>
3373 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3374 L:      linux-bluetooth@vger.kernel.org
3375 S:      Supported
3376 W:      http://www.bluez.org/
3377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3379 F:      include/net/bluetooth/
3380 F:      net/bluetooth/
3381
3382 BONDING DRIVER
3383 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3384 M:      Veaceslav Falico <vfalico@gmail.com>
3385 M:      Andy Gospodarek <andy@greyhouse.net>
3386 L:      netdev@vger.kernel.org
3387 S:      Supported
3388 W:      http://sourceforge.net/projects/bonding/
3389 F:      drivers/net/bonding/
3390 F:      include/net/bonding.h
3391 F:      include/uapi/linux/if_bonding.h
3392
3393 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3394 M:      Dan Robertson <dan@dlrobertson.com>
3395 L:      linux-iio@vger.kernel.org
3396 S:      Maintained
3397 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3398 F:      drivers/iio/accel/bma400*
3399
3400 BPF (Safe dynamic programs and tools)
3401 M:      Alexei Starovoitov <ast@kernel.org>
3402 M:      Daniel Borkmann <daniel@iogearbox.net>
3403 M:      Andrii Nakryiko <andrii@kernel.org>
3404 R:      Martin KaFai Lau <kafai@fb.com>
3405 R:      Song Liu <songliubraving@fb.com>
3406 R:      Yonghong Song <yhs@fb.com>
3407 R:      John Fastabend <john.fastabend@gmail.com>
3408 R:      KP Singh <kpsingh@kernel.org>
3409 L:      netdev@vger.kernel.org
3410 L:      bpf@vger.kernel.org
3411 S:      Supported
3412 W:      https://bpf.io/
3413 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3416 F:      Documentation/bpf/
3417 F:      Documentation/networking/filter.rst
3418 F:      Documentation/userspace-api/ebpf/
3419 F:      arch/*/net/*
3420 F:      include/linux/bpf*
3421 F:      include/linux/btf*
3422 F:      include/linux/filter.h
3423 F:      include/trace/events/xdp.h
3424 F:      include/uapi/linux/bpf*
3425 F:      include/uapi/linux/btf*
3426 F:      include/uapi/linux/filter.h
3427 F:      kernel/bpf/
3428 F:      kernel/trace/bpf_trace.c
3429 F:      lib/test_bpf.c
3430 F:      net/bpf/
3431 F:      net/core/filter.c
3432 F:      net/sched/act_bpf.c
3433 F:      net/sched/cls_bpf.c
3434 F:      samples/bpf/
3435 F:      scripts/bpf_doc.py
3436 F:      tools/bpf/
3437 F:      tools/lib/bpf/
3438 F:      tools/testing/selftests/bpf/
3439 N:      bpf
3440 K:      bpf
3441
3442 BPF JIT for ARM
3443 M:      Shubham Bansal <illusionist.neo@gmail.com>
3444 L:      netdev@vger.kernel.org
3445 L:      bpf@vger.kernel.org
3446 S:      Maintained
3447 F:      arch/arm/net/
3448
3449 BPF JIT for ARM64
3450 M:      Daniel Borkmann <daniel@iogearbox.net>
3451 M:      Alexei Starovoitov <ast@kernel.org>
3452 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3453 L:      netdev@vger.kernel.org
3454 L:      bpf@vger.kernel.org
3455 S:      Supported
3456 F:      arch/arm64/net/
3457
3458 BPF JIT for MIPS (32-BIT AND 64-BIT)
3459 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3460 M:      Paul Burton <paulburton@kernel.org>
3461 L:      netdev@vger.kernel.org
3462 L:      bpf@vger.kernel.org
3463 S:      Maintained
3464 F:      arch/mips/net/
3465
3466 BPF JIT for NFP NICs
3467 M:      Jakub Kicinski <kuba@kernel.org>
3468 L:      netdev@vger.kernel.org
3469 L:      bpf@vger.kernel.org
3470 S:      Supported
3471 F:      drivers/net/ethernet/netronome/nfp/bpf/
3472
3473 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3474 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3475 L:      netdev@vger.kernel.org
3476 L:      bpf@vger.kernel.org
3477 S:      Maintained
3478 F:      arch/powerpc/net/
3479
3480 BPF JIT for RISC-V (32-bit)
3481 M:      Luke Nelson <luke.r.nels@gmail.com>
3482 M:      Xi Wang <xi.wang@gmail.com>
3483 L:      netdev@vger.kernel.org
3484 L:      bpf@vger.kernel.org
3485 S:      Maintained
3486 F:      arch/riscv/net/
3487 X:      arch/riscv/net/bpf_jit_comp64.c
3488
3489 BPF JIT for RISC-V (64-bit)
3490 M:      Björn Töpel <bjorn@kernel.org>
3491 L:      netdev@vger.kernel.org
3492 L:      bpf@vger.kernel.org
3493 S:      Maintained
3494 F:      arch/riscv/net/
3495 X:      arch/riscv/net/bpf_jit_comp32.c
3496
3497 BPF JIT for S390
3498 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3499 M:      Heiko Carstens <hca@linux.ibm.com>
3500 M:      Vasily Gorbik <gor@linux.ibm.com>
3501 L:      netdev@vger.kernel.org
3502 L:      bpf@vger.kernel.org
3503 S:      Maintained
3504 F:      arch/s390/net/
3505 X:      arch/s390/net/pnet.c
3506
3507 BPF JIT for SPARC (32-BIT AND 64-BIT)
3508 M:      David S. Miller <davem@davemloft.net>
3509 L:      netdev@vger.kernel.org
3510 L:      bpf@vger.kernel.org
3511 S:      Maintained
3512 F:      arch/sparc/net/
3513
3514 BPF JIT for X86 32-BIT
3515 M:      Wang YanQing <udknight@gmail.com>
3516 L:      netdev@vger.kernel.org
3517 L:      bpf@vger.kernel.org
3518 S:      Maintained
3519 F:      arch/x86/net/bpf_jit_comp32.c
3520
3521 BPF JIT for X86 64-BIT
3522 M:      Alexei Starovoitov <ast@kernel.org>
3523 M:      Daniel Borkmann <daniel@iogearbox.net>
3524 L:      netdev@vger.kernel.org
3525 L:      bpf@vger.kernel.org
3526 S:      Supported
3527 F:      arch/x86/net/
3528 X:      arch/x86/net/bpf_jit_comp32.c
3529
3530 BPF LSM (Security Audit and Enforcement using BPF)
3531 M:      KP Singh <kpsingh@kernel.org>
3532 R:      Florent Revest <revest@chromium.org>
3533 R:      Brendan Jackman <jackmanb@chromium.org>
3534 L:      bpf@vger.kernel.org
3535 S:      Maintained
3536 F:      Documentation/bpf/bpf_lsm.rst
3537 F:      include/linux/bpf_lsm.h
3538 F:      kernel/bpf/bpf_lsm.c
3539 F:      security/bpf/
3540
3541 BROADCOM B44 10/100 ETHERNET DRIVER
3542 M:      Michael Chan <michael.chan@broadcom.com>
3543 L:      netdev@vger.kernel.org
3544 S:      Supported
3545 F:      drivers/net/ethernet/broadcom/b44.*
3546
3547 BROADCOM B53 ETHERNET SWITCH DRIVER
3548 M:      Florian Fainelli <f.fainelli@gmail.com>
3549 L:      netdev@vger.kernel.org
3550 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3551 S:      Supported
3552 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3553 F:      drivers/net/dsa/b53/*
3554 F:      include/linux/dsa/brcm.h
3555 F:      include/linux/platform_data/b53.h
3556
3557 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3558 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3559 L:      bcm-kernel-feedback-list@broadcom.com
3560 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3561 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3562 S:      Maintained
3563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3564 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3565 F:      drivers/pci/controller/pcie-brcmstb.c
3566 F:      drivers/staging/vc04_services
3567 N:      bcm2711
3568 N:      bcm283*
3569
3570 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3571 M:      Florian Fainelli <f.fainelli@gmail.com>
3572 M:      Ray Jui <rjui@broadcom.com>
3573 M:      Scott Branden <sbranden@broadcom.com>
3574 M:      bcm-kernel-feedback-list@broadcom.com
3575 S:      Maintained
3576 T:      git git://github.com/broadcom/mach-bcm
3577 F:      arch/arm/mach-bcm/
3578 N:      bcm281*
3579 N:      bcm113*
3580 N:      bcm216*
3581 N:      kona
3582
3583 BROADCOM BCM47XX MIPS ARCHITECTURE
3584 M:      Hauke Mehrtens <hauke@hauke-m.de>
3585 M:      Rafał Miłecki <zajec5@gmail.com>
3586 L:      linux-mips@vger.kernel.org
3587 S:      Maintained
3588 F:      Documentation/devicetree/bindings/mips/brcm/
3589 F:      arch/mips/bcm47xx/*
3590 F:      arch/mips/include/asm/mach-bcm47xx/*
3591
3592 BROADCOM BCM4908 ETHERNET DRIVER
3593 M:      Rafał Miłecki <rafal@milecki.pl>
3594 M:      bcm-kernel-feedback-list@broadcom.com
3595 L:      netdev@vger.kernel.org
3596 S:      Maintained
3597 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3598 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3599 F:      drivers/net/ethernet/broadcom/unimac.h
3600
3601 BROADCOM BCM5301X ARM ARCHITECTURE
3602 M:      Hauke Mehrtens <hauke@hauke-m.de>
3603 M:      Rafał Miłecki <zajec5@gmail.com>
3604 M:      bcm-kernel-feedback-list@broadcom.com
3605 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3606 S:      Maintained
3607 F:      arch/arm/boot/dts/bcm470*
3608 F:      arch/arm/boot/dts/bcm5301*
3609 F:      arch/arm/boot/dts/bcm953012*
3610 F:      arch/arm/mach-bcm/bcm_5301x.c
3611
3612 BROADCOM BCM53573 ARM ARCHITECTURE
3613 M:      Rafał Miłecki <rafal@milecki.pl>
3614 L:      bcm-kernel-feedback-list@broadcom.com
3615 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3616 S:      Maintained
3617 F:      arch/arm/boot/dts/bcm47189*
3618 F:      arch/arm/boot/dts/bcm53573*
3619
3620 BROADCOM BCM63XX ARM ARCHITECTURE
3621 M:      Florian Fainelli <f.fainelli@gmail.com>
3622 M:      bcm-kernel-feedback-list@broadcom.com
3623 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3624 S:      Maintained
3625 T:      git git://github.com/broadcom/stblinux.git
3626 N:      bcm63xx
3627
3628 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3629 M:      Kevin Cernekee <cernekee@gmail.com>
3630 L:      linux-usb@vger.kernel.org
3631 S:      Maintained
3632 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3633
3634 BROADCOM BCM7XXX ARM ARCHITECTURE
3635 M:      Florian Fainelli <f.fainelli@gmail.com>
3636 M:      bcm-kernel-feedback-list@broadcom.com
3637 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3638 S:      Maintained
3639 T:      git git://github.com/broadcom/stblinux.git
3640 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3641 F:      arch/arm/boot/dts/bcm7*.dts*
3642 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3643 F:      arch/arm/mach-bcm/*brcmstb*
3644 F:      arch/arm/mm/cache-b15-rac.c
3645 F:      drivers/bus/brcmstb_gisb.c
3646 F:      drivers/pci/controller/pcie-brcmstb.c
3647 N:      brcmstb
3648 N:      bcm7038
3649 N:      bcm7120
3650
3651 BROADCOM BDC DRIVER
3652 M:      Al Cooper <alcooperx@gmail.com>
3653 L:      linux-usb@vger.kernel.org
3654 L:      bcm-kernel-feedback-list@broadcom.com
3655 S:      Maintained
3656 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3657 F:      drivers/usb/gadget/udc/bdc/
3658
3659 BROADCOM BMIPS CPUFREQ DRIVER
3660 M:      Markus Mayer <mmayer@broadcom.com>
3661 M:      bcm-kernel-feedback-list@broadcom.com
3662 L:      linux-pm@vger.kernel.org
3663 S:      Maintained
3664 F:      drivers/cpufreq/bmips-cpufreq.c
3665
3666 BROADCOM BMIPS MIPS ARCHITECTURE
3667 M:      Florian Fainelli <f.fainelli@gmail.com>
3668 L:      bcm-kernel-feedback-list@broadcom.com
3669 L:      linux-mips@vger.kernel.org
3670 S:      Maintained
3671 T:      git git://github.com/broadcom/stblinux.git
3672 F:      arch/mips/bmips/*
3673 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3674 F:      arch/mips/include/asm/mach-bmips/*
3675 F:      arch/mips/kernel/*bmips*
3676 F:      drivers/soc/bcm/bcm63xx
3677 F:      drivers/irqchip/irq-bcm63*
3678 F:      drivers/irqchip/irq-bcm7*
3679 F:      drivers/irqchip/irq-brcmstb*
3680 F:      include/linux/bcm963xx_nvram.h
3681 F:      include/linux/bcm963xx_tag.h
3682
3683 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3684 M:      Rasesh Mody <rmody@marvell.com>
3685 M:      GR-Linux-NIC-Dev@marvell.com
3686 L:      netdev@vger.kernel.org
3687 S:      Supported
3688 F:      drivers/net/ethernet/broadcom/bnx2.*
3689 F:      drivers/net/ethernet/broadcom/bnx2_*
3690
3691 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3692 M:      Saurav Kashyap <skashyap@marvell.com>
3693 M:      Javed Hasan <jhasan@marvell.com>
3694 M:      GR-QLogic-Storage-Upstream@marvell.com
3695 L:      linux-scsi@vger.kernel.org
3696 S:      Supported
3697 F:      drivers/scsi/bnx2fc/
3698
3699 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3700 M:      Nilesh Javali <njavali@marvell.com>
3701 M:      Manish Rangankar <mrangankar@marvell.com>
3702 M:      GR-QLogic-Storage-Upstream@marvell.com
3703 L:      linux-scsi@vger.kernel.org
3704 S:      Supported
3705 F:      drivers/scsi/bnx2i/
3706
3707 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3708 M:      Ariel Elior <aelior@marvell.com>
3709 M:      Sudarsana Kalluru <skalluru@marvell.com>
3710 M:      GR-everest-linux-l2@marvell.com
3711 L:      netdev@vger.kernel.org
3712 S:      Supported
3713 F:      drivers/net/ethernet/broadcom/bnx2x/
3714
3715 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3716 M:      Michael Chan <michael.chan@broadcom.com>
3717 L:      netdev@vger.kernel.org
3718 S:      Supported
3719 F:      drivers/net/ethernet/broadcom/bnxt/
3720
3721 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3722 M:      Arend van Spriel <aspriel@gmail.com>
3723 M:      Franky Lin <franky.lin@broadcom.com>
3724 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3725 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3726 M:      Wright Feng <wright.feng@infineon.com>
3727 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3728 L:      linux-wireless@vger.kernel.org
3729 L:      brcm80211-dev-list.pdl@broadcom.com
3730 L:      SHA-cyfmac-dev-list@infineon.com
3731 S:      Supported
3732 F:      drivers/net/wireless/broadcom/brcm80211/
3733
3734 BROADCOM BRCMSTB GPIO DRIVER
3735 M:      Gregory Fong <gregory.0xf0@gmail.com>
3736 L:      bcm-kernel-feedback-list@broadcom.com
3737 S:      Supported
3738 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3739 F:      drivers/gpio/gpio-brcmstb.c
3740
3741 BROADCOM BRCMSTB I2C DRIVER
3742 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3743 L:      linux-i2c@vger.kernel.org
3744 L:      bcm-kernel-feedback-list@broadcom.com
3745 S:      Supported
3746 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3747 F:      drivers/i2c/busses/i2c-brcmstb.c
3748
3749 BROADCOM BRCMSTB UART DRIVER
3750 M:      Al Cooper <alcooperx@gmail.com>
3751 L:      linux-serial@vger.kernel.org
3752 L:      bcm-kernel-feedback-list@broadcom.com
3753 S:      Maintained
3754 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3755 F:      drivers/tty/serial/8250/8250_bcm7271.c
3756
3757 BROADCOM BRCMSTB USB EHCI DRIVER
3758 M:      Al Cooper <alcooperx@gmail.com>
3759 L:      linux-usb@vger.kernel.org
3760 L:      bcm-kernel-feedback-list@broadcom.com
3761 S:      Maintained
3762 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3763 F:      drivers/usb/host/ehci-brcm.*
3764
3765 BROADCOM BRCMSTB USB PIN MAP DRIVER
3766 M:      Al Cooper <alcooperx@gmail.com>
3767 L:      linux-usb@vger.kernel.org
3768 L:      bcm-kernel-feedback-list@broadcom.com
3769 S:      Maintained
3770 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3771 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3772
3773 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3774 M:      Al Cooper <alcooperx@gmail.com>
3775 L:      linux-kernel@vger.kernel.org
3776 L:      bcm-kernel-feedback-list@broadcom.com
3777 S:      Maintained
3778 F:      drivers/phy/broadcom/phy-brcm-usb*
3779
3780 BROADCOM ETHERNET PHY DRIVERS
3781 M:      Florian Fainelli <f.fainelli@gmail.com>
3782 L:      bcm-kernel-feedback-list@broadcom.com
3783 L:      netdev@vger.kernel.org
3784 S:      Supported
3785 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3786 F:      drivers/net/phy/bcm*.[ch]
3787 F:      drivers/net/phy/broadcom.c
3788 F:      include/linux/brcmphy.h
3789
3790 BROADCOM GENET ETHERNET DRIVER
3791 M:      Doug Berger <opendmb@gmail.com>
3792 M:      Florian Fainelli <f.fainelli@gmail.com>
3793 L:      bcm-kernel-feedback-list@broadcom.com
3794 L:      netdev@vger.kernel.org
3795 S:      Supported
3796 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3797 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
3798 F:      drivers/net/ethernet/broadcom/genet/
3799 F:      drivers/net/ethernet/broadcom/unimac.h
3800 F:      drivers/net/mdio/mdio-bcm-unimac.c
3801 F:      include/linux/platform_data/bcmgenet.h
3802 F:      include/linux/platform_data/mdio-bcm-unimac.h
3803
3804 BROADCOM IPROC ARM ARCHITECTURE
3805 M:      Ray Jui <rjui@broadcom.com>
3806 M:      Scott Branden <sbranden@broadcom.com>
3807 M:      bcm-kernel-feedback-list@broadcom.com
3808 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3809 S:      Maintained
3810 T:      git git://github.com/broadcom/cygnus-linux.git
3811 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3812 F:      arch/arm64/boot/dts/broadcom/stingray/*
3813 F:      drivers/clk/bcm/clk-ns*
3814 F:      drivers/clk/bcm/clk-sr*
3815 F:      drivers/pinctrl/bcm/pinctrl-ns*
3816 F:      include/dt-bindings/clock/bcm-sr*
3817 N:      iproc
3818 N:      cygnus
3819 N:      bcm[-_]nsp
3820 N:      bcm9113*
3821 N:      bcm9583*
3822 N:      bcm9585*
3823 N:      bcm9586*
3824 N:      bcm988312
3825 N:      bcm113*
3826 N:      bcm583*
3827 N:      bcm585*
3828 N:      bcm586*
3829 N:      bcm88312
3830 N:      hr2
3831 N:      stingray
3832
3833 BROADCOM IPROC GBIT ETHERNET DRIVER
3834 M:      Rafał Miłecki <rafal@milecki.pl>
3835 M:      bcm-kernel-feedback-list@broadcom.com
3836 L:      netdev@vger.kernel.org
3837 S:      Maintained
3838 F:      Documentation/devicetree/bindings/net/brcm,amac.txt
3839 F:      drivers/net/ethernet/broadcom/bgmac*
3840 F:      drivers/net/ethernet/broadcom/unimac.h
3841
3842 BROADCOM KONA GPIO DRIVER
3843 M:      Ray Jui <rjui@broadcom.com>
3844 L:      bcm-kernel-feedback-list@broadcom.com
3845 S:      Supported
3846 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3847 F:      drivers/gpio/gpio-bcm-kona.c
3848
3849 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
3850 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
3851 M:      Kashyap Desai <kashyap.desai@broadcom.com>
3852 M:      Sumit Saxena <sumit.saxena@broadcom.com>
3853 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
3854 L:      mpi3mr-linuxdrv.pdl@broadcom.com
3855 L:      linux-scsi@vger.kernel.org
3856 S:      Supported
3857 W:      https://www.broadcom.com/support/storage
3858 F:      drivers/scsi/mpi3mr/
3859
3860 BROADCOM NETXTREME-E ROCE DRIVER
3861 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3862 L:      linux-rdma@vger.kernel.org
3863 S:      Supported
3864 W:      http://www.broadcom.com
3865 F:      drivers/infiniband/hw/bnxt_re/
3866 F:      include/uapi/rdma/bnxt_re-abi.h
3867
3868 BROADCOM NVRAM DRIVER
3869 M:      Rafał Miłecki <zajec5@gmail.com>
3870 L:      linux-mips@vger.kernel.org
3871 S:      Maintained
3872 F:      drivers/firmware/broadcom/*
3873
3874 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3875 M:      Rafał Miłecki <rafal@milecki.pl>
3876 M:      Florian Fainelli <f.fainelli@gmail.com>
3877 M:      bcm-kernel-feedback-list@broadcom.com
3878 L:      linux-pm@vger.kernel.org
3879 S:      Maintained
3880 T:      git git://github.com/broadcom/stblinux.git
3881 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
3882 F:      include/dt-bindings/soc/bcm-pmb.h
3883
3884 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3885 M:      Rafał Miłecki <zajec5@gmail.com>
3886 L:      linux-wireless@vger.kernel.org
3887 S:      Maintained
3888 F:      drivers/bcma/
3889 F:      include/linux/bcma/
3890
3891 BROADCOM SPI DRIVER
3892 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3893 M:      bcm-kernel-feedback-list@broadcom.com
3894 S:      Maintained
3895 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
3896 F:      drivers/spi/spi-bcm-qspi.*
3897 F:      drivers/spi/spi-brcmstb-qspi.c
3898 F:      drivers/spi/spi-iproc-qspi.c
3899
3900 BROADCOM STB AVS CPUFREQ DRIVER
3901 M:      Markus Mayer <mmayer@broadcom.com>
3902 M:      bcm-kernel-feedback-list@broadcom.com
3903 L:      linux-pm@vger.kernel.org
3904 S:      Maintained
3905 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3906 F:      drivers/cpufreq/brcmstb*
3907
3908 BROADCOM STB AVS TMON DRIVER
3909 M:      Markus Mayer <mmayer@broadcom.com>
3910 M:      bcm-kernel-feedback-list@broadcom.com
3911 L:      linux-pm@vger.kernel.org
3912 S:      Maintained
3913 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3914 F:      drivers/thermal/broadcom/brcmstb*
3915
3916 BROADCOM STB DPFE DRIVER
3917 M:      Markus Mayer <mmayer@broadcom.com>
3918 M:      bcm-kernel-feedback-list@broadcom.com
3919 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3920 S:      Maintained
3921 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
3922 F:      drivers/memory/brcmstb_dpfe.c
3923
3924 BROADCOM STB NAND FLASH DRIVER
3925 M:      Brian Norris <computersforpeace@gmail.com>
3926 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3927 L:      linux-mtd@lists.infradead.org
3928 L:      bcm-kernel-feedback-list@broadcom.com
3929 S:      Maintained
3930 F:      drivers/mtd/nand/raw/brcmnand/
3931
3932 BROADCOM STB PCIE DRIVER
3933 M:      Jim Quinlan <jim2101024@gmail.com>
3934 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3935 M:      Florian Fainelli <f.fainelli@gmail.com>
3936 M:      bcm-kernel-feedback-list@broadcom.com
3937 L:      linux-pci@vger.kernel.org
3938 S:      Maintained
3939 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3940 F:      drivers/pci/controller/pcie-brcmstb.c
3941
3942 BROADCOM SYSTEMPORT ETHERNET DRIVER
3943 M:      Florian Fainelli <f.fainelli@gmail.com>
3944 L:      bcm-kernel-feedback-list@broadcom.com
3945 L:      netdev@vger.kernel.org
3946 S:      Supported
3947 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3948 F:      drivers/net/ethernet/broadcom/unimac.h
3949
3950 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3951 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3952 M:      Prashant Sreedharan <prashant@broadcom.com>
3953 M:      Michael Chan <mchan@broadcom.com>
3954 L:      netdev@vger.kernel.org
3955 S:      Supported
3956 F:      drivers/net/ethernet/broadcom/tg3.*
3957
3958 BROADCOM VK DRIVER
3959 M:      Scott Branden <scott.branden@broadcom.com>
3960 L:      bcm-kernel-feedback-list@broadcom.com
3961 S:      Supported
3962 F:      drivers/misc/bcm-vk/
3963 F:      include/uapi/linux/misc/bcm_vk.h
3964
3965 BROCADE BFA FC SCSI DRIVER
3966 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3967 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3968 L:      linux-scsi@vger.kernel.org
3969 S:      Supported
3970 F:      drivers/scsi/bfa/
3971
3972 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3973 M:      Rasesh Mody <rmody@marvell.com>
3974 M:      Sudarsana Kalluru <skalluru@marvell.com>
3975 M:      GR-Linux-NIC-Dev@marvell.com
3976 L:      netdev@vger.kernel.org
3977 S:      Supported
3978 F:      drivers/net/ethernet/brocade/bna/
3979
3980 BSG (block layer generic sg v4 driver)
3981 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3982 L:      linux-scsi@vger.kernel.org
3983 S:      Supported
3984 F:      block/bsg.c
3985 F:      include/linux/bsg.h
3986 F:      include/uapi/linux/bsg.h
3987
3988 BT87X AUDIO DRIVER
3989 M:      Clemens Ladisch <clemens@ladisch.de>
3990 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3991 S:      Maintained
3992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3993 F:      Documentation/sound/cards/bt87x.rst
3994 F:      sound/pci/bt87x.c
3995
3996 BT8XXGPIO DRIVER
3997 M:      Michael Buesch <m@bues.ch>
3998 S:      Maintained
3999 W:      http://bu3sch.de/btgpio.php
4000 F:      drivers/gpio/gpio-bt8xx.c
4001
4002 BTRFS FILE SYSTEM
4003 M:      Chris Mason <clm@fb.com>
4004 M:      Josef Bacik <josef@toxicpanda.com>
4005 M:      David Sterba <dsterba@suse.com>
4006 L:      linux-btrfs@vger.kernel.org
4007 S:      Maintained
4008 W:      http://btrfs.wiki.kernel.org/
4009 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
4010 C:      irc://irc.libera.chat/btrfs
4011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4012 F:      Documentation/filesystems/btrfs.rst
4013 F:      fs/btrfs/
4014 F:      include/linux/btrfs*
4015 F:      include/uapi/linux/btrfs*
4016
4017 BTTV VIDEO4LINUX DRIVER
4018 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4019 L:      linux-media@vger.kernel.org
4020 S:      Odd fixes
4021 W:      https://linuxtv.org
4022 T:      git git://linuxtv.org/media_tree.git
4023 F:      Documentation/driver-api/media/drivers/bttv*
4024 F:      drivers/media/pci/bt8xx/bttv*
4025
4026 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4027 M:      Chanwoo Choi <cw00.choi@samsung.com>
4028 L:      linux-pm@vger.kernel.org
4029 L:      linux-samsung-soc@vger.kernel.org
4030 S:      Maintained
4031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4032 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4033 F:      drivers/devfreq/exynos-bus.c
4034
4035 BUSLOGIC SCSI DRIVER
4036 M:      Khalid Aziz <khalid@gonehiking.org>
4037 L:      linux-scsi@vger.kernel.org
4038 S:      Maintained
4039 F:      drivers/scsi/BusLogic.*
4040 F:      drivers/scsi/FlashPoint.*
4041
4042 C-MEDIA CMI8788 DRIVER
4043 M:      Clemens Ladisch <clemens@ladisch.de>
4044 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4045 S:      Maintained
4046 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4047 F:      sound/pci/oxygen/
4048
4049 C-SKY ARCHITECTURE
4050 M:      Guo Ren <guoren@kernel.org>
4051 L:      linux-csky@vger.kernel.org
4052 S:      Supported
4053 T:      git https://github.com/c-sky/csky-linux.git
4054 F:      Documentation/devicetree/bindings/csky/
4055 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4056 F:      Documentation/devicetree/bindings/timer/csky,*
4057 F:      arch/csky/
4058 F:      drivers/clocksource/timer-gx6605s.c
4059 F:      drivers/clocksource/timer-mp-csky.c
4060 F:      drivers/irqchip/irq-csky-*
4061 N:      csky
4062 K:      csky
4063
4064 CA8210 IEEE-802.15.4 RADIO DRIVER
4065 M:      Harry Morris <h.morris@cascoda.com>
4066 L:      linux-wpan@vger.kernel.org
4067 S:      Maintained
4068 W:      https://github.com/Cascoda/ca8210-linux.git
4069 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4070 F:      drivers/net/ieee802154/ca8210.c
4071
4072 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4073 M:      Damien Le Moal <damien.lemoal@wdc.com>
4074 L:      linux-riscv@lists.infradead.org
4075 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4076 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4077 F:      drivers/pinctrl/pinctrl-k210.c
4078
4079 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4080 M:      Damien Le Moal <damien.lemoal@wdc.com>
4081 L:      linux-kernel@vger.kernel.org
4082 L:      linux-riscv@lists.infradead.org
4083 S:      Maintained
4084 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4085 F:      drivers/reset/reset-k210.c
4086
4087 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4088 M:      Damien Le Moal <damien.lemoal@wdc.com>
4089 L:      linux-riscv@lists.infradead.org
4090 S:      Maintained
4091 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4092 F:      drivers/soc/canaan/
4093 F:      include/soc/canaan/
4094
4095 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4096 M:      David Howells <dhowells@redhat.com>
4097 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4098 S:      Supported
4099 F:      Documentation/filesystems/caching/cachefiles.rst
4100 F:      fs/cachefiles/
4101
4102 CADENCE MIPI-CSI2 BRIDGES
4103 M:      Maxime Ripard <mripard@kernel.org>
4104 L:      linux-media@vger.kernel.org
4105 S:      Maintained
4106 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4107 F:      drivers/media/platform/cadence/cdns-csi2*
4108
4109 CADENCE NAND DRIVER
4110 L:      linux-mtd@lists.infradead.org
4111 S:      Orphan
4112 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4113 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4114
4115 CADENCE USB3 DRD IP DRIVER
4116 M:      Peter Chen <peter.chen@kernel.org>
4117 M:      Pawel Laszczak <pawell@cadence.com>
4118 R:      Roger Quadros <rogerq@kernel.org>
4119 R:      Aswath Govindraju <a-govindraju@ti.com>
4120 L:      linux-usb@vger.kernel.org
4121 S:      Maintained
4122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4123 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4124 F:      drivers/usb/cdns3/
4125 X:      drivers/usb/cdns3/cdnsp*
4126
4127 CADENCE USBSSP DRD IP DRIVER
4128 M:      Pawel Laszczak <pawell@cadence.com>
4129 L:      linux-usb@vger.kernel.org
4130 S:      Maintained
4131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4132 F:      drivers/usb/cdns3/
4133 X:      drivers/usb/cdns3/cdns3*
4134
4135 CADET FM/AM RADIO RECEIVER DRIVER
4136 M:      Hans Verkuil <hverkuil@xs4all.nl>
4137 L:      linux-media@vger.kernel.org
4138 S:      Maintained
4139 W:      https://linuxtv.org
4140 T:      git git://linuxtv.org/media_tree.git
4141 F:      drivers/media/radio/radio-cadet*
4142
4143 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4144 L:      linux-media@vger.kernel.org
4145 S:      Orphan
4146 T:      git git://linuxtv.org/media_tree.git
4147 F:      Documentation/admin-guide/media/cafe_ccic*
4148 F:      drivers/media/platform/marvell-ccic/
4149
4150 CAIF NETWORK LAYER
4151 L:      netdev@vger.kernel.org
4152 S:      Orphan
4153 F:      Documentation/networking/caif/
4154 F:      drivers/net/caif/
4155 F:      include/net/caif/
4156 F:      include/uapi/linux/caif/
4157 F:      net/caif/
4158
4159 CAKE QDISC
4160 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4161 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4162 S:      Maintained
4163 F:      net/sched/sch_cake.c
4164
4165 CAN NETWORK DRIVERS
4166 M:      Wolfgang Grandegger <wg@grandegger.com>
4167 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4168 L:      linux-can@vger.kernel.org
4169 S:      Maintained
4170 W:      https://github.com/linux-can
4171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4173 F:      Documentation/devicetree/bindings/net/can/
4174 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4175 F:      drivers/net/can/
4176 F:      drivers/phy/phy-can-transceiver.c
4177 F:      include/linux/can/bittiming.h
4178 F:      include/linux/can/dev.h
4179 F:      include/linux/can/led.h
4180 F:      include/linux/can/length.h
4181 F:      include/linux/can/platform/
4182 F:      include/linux/can/rx-offload.h
4183 F:      include/uapi/linux/can/error.h
4184 F:      include/uapi/linux/can/netlink.h
4185 F:      include/uapi/linux/can/vxcan.h
4186
4187 CAN NETWORK LAYER
4188 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4189 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4190 L:      linux-can@vger.kernel.org
4191 S:      Maintained
4192 W:      https://github.com/linux-can
4193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4195 F:      Documentation/networking/can.rst
4196 F:      include/linux/can/can-ml.h
4197 F:      include/linux/can/core.h
4198 F:      include/linux/can/skb.h
4199 F:      include/net/netns/can.h
4200 F:      include/uapi/linux/can.h
4201 F:      include/uapi/linux/can/bcm.h
4202 F:      include/uapi/linux/can/gw.h
4203 F:      include/uapi/linux/can/isotp.h
4204 F:      include/uapi/linux/can/raw.h
4205 F:      net/can/
4206
4207 CAN-J1939 NETWORK LAYER
4208 M:      Robin van der Gracht <robin@protonic.nl>
4209 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4210 R:      kernel@pengutronix.de
4211 L:      linux-can@vger.kernel.org
4212 S:      Maintained
4213 F:      Documentation/networking/j1939.rst
4214 F:      include/uapi/linux/can/j1939.h
4215 F:      net/can/j1939/
4216
4217 CAPABILITIES
4218 M:      Serge Hallyn <serge@hallyn.com>
4219 L:      linux-security-module@vger.kernel.org
4220 S:      Supported
4221 F:      include/linux/capability.h
4222 F:      include/uapi/linux/capability.h
4223 F:      kernel/capability.c
4224 F:      security/commoncap.c
4225
4226 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4227 M:      Kevin Tsai <ktsai@capellamicro.com>
4228 S:      Maintained
4229 F:      drivers/iio/light/cm*
4230
4231 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4232 M:      Christian Lamparter <chunkeey@googlemail.com>
4233 L:      linux-wireless@vger.kernel.org
4234 S:      Maintained
4235 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4236 F:      drivers/net/wireless/ath/carl9170/
4237
4238 CAVIUM I2C DRIVER
4239 M:      Robert Richter <rric@kernel.org>
4240 S:      Odd Fixes
4241 W:      http://www.marvell.com
4242 F:      drivers/i2c/busses/i2c-octeon*
4243 F:      drivers/i2c/busses/i2c-thunderx*
4244
4245 CAVIUM LIQUIDIO NETWORK DRIVER
4246 M:      Derek Chickles <dchickles@marvell.com>
4247 M:      Satanand Burla <sburla@marvell.com>
4248 M:      Felix Manlunas <fmanlunas@marvell.com>
4249 L:      netdev@vger.kernel.org
4250 S:      Supported
4251 W:      http://www.marvell.com
4252 F:      drivers/net/ethernet/cavium/liquidio/
4253
4254 CAVIUM MMC DRIVER
4255 M:      Robert Richter <rric@kernel.org>
4256 S:      Odd Fixes
4257 W:      http://www.marvell.com
4258 F:      drivers/mmc/host/cavium*
4259
4260 CAVIUM OCTEON-TX CRYPTO DRIVER
4261 M:      George Cherian <gcherian@marvell.com>
4262 L:      linux-crypto@vger.kernel.org
4263 S:      Supported
4264 W:      http://www.marvell.com
4265 F:      drivers/crypto/cavium/cpt/
4266
4267 CAVIUM THUNDERX2 ARM64 SOC
4268 M:      Robert Richter <rric@kernel.org>
4269 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4270 S:      Odd Fixes
4271 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4272 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4273
4274 CBS/ETF/TAPRIO QDISCS
4275 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4276 S:      Maintained
4277 L:      netdev@vger.kernel.org
4278 F:      net/sched/sch_cbs.c
4279 F:      net/sched/sch_etf.c
4280 F:      net/sched/sch_taprio.c
4281
4282 CC2520 IEEE-802.15.4 RADIO DRIVER
4283 M:      Varka Bhadram <varkabhadram@gmail.com>
4284 L:      linux-wpan@vger.kernel.org
4285 S:      Maintained
4286 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4287 F:      drivers/net/ieee802154/cc2520.c
4288 F:      include/linux/spi/cc2520.h
4289
4290 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4291 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4292 L:      linux-crypto@vger.kernel.org
4293 S:      Supported
4294 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4295 F:      drivers/crypto/ccree/
4296
4297 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4298 M:      Hadar Gat <hadar.gat@arm.com>
4299 L:      linux-crypto@vger.kernel.org
4300 S:      Supported
4301 F:      drivers/char/hw_random/cctrng.c
4302 F:      drivers/char/hw_random/cctrng.h
4303 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4304 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4305
4306 CEC FRAMEWORK
4307 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4308 L:      linux-media@vger.kernel.org
4309 S:      Supported
4310 W:      http://linuxtv.org
4311 T:      git git://linuxtv.org/media_tree.git
4312 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4313 F:      Documentation/devicetree/bindings/media/cec.txt
4314 F:      Documentation/driver-api/media/cec-core.rst
4315 F:      Documentation/userspace-api/media/cec
4316 F:      drivers/media/cec/
4317 F:      drivers/media/rc/keymaps/rc-cec.c
4318 F:      include/media/cec-notifier.h
4319 F:      include/media/cec.h
4320 F:      include/uapi/linux/cec-funcs.h
4321 F:      include/uapi/linux/cec.h
4322
4323 CEC GPIO DRIVER
4324 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4325 L:      linux-media@vger.kernel.org
4326 S:      Supported
4327 W:      http://linuxtv.org
4328 T:      git git://linuxtv.org/media_tree.git
4329 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4330 F:      drivers/media/cec/platform/cec-gpio/
4331
4332 CELL BROADBAND ENGINE ARCHITECTURE
4333 M:      Arnd Bergmann <arnd@arndb.de>
4334 L:      linuxppc-dev@lists.ozlabs.org
4335 S:      Supported
4336 W:      http://www.ibm.com/developerworks/power/cell/
4337 F:      arch/powerpc/include/asm/cell*.h
4338 F:      arch/powerpc/include/asm/spu*.h
4339 F:      arch/powerpc/include/uapi/asm/spu*.h
4340 F:      arch/powerpc/platforms/cell/
4341
4342 CELLWISE CW2015 BATTERY DRIVER
4343 M:      Tobias Schrammm <t.schramm@manjaro.org>
4344 S:      Maintained
4345 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4346 F:      drivers/power/supply/cw2015_battery.c
4347
4348 CEPH COMMON CODE (LIBCEPH)
4349 M:      Ilya Dryomov <idryomov@gmail.com>
4350 M:      Jeff Layton <jlayton@kernel.org>
4351 L:      ceph-devel@vger.kernel.org
4352 S:      Supported
4353 W:      http://ceph.com/
4354 T:      git git://github.com/ceph/ceph-client.git
4355 F:      include/linux/ceph/
4356 F:      include/linux/crush/
4357 F:      net/ceph/
4358
4359 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4360 M:      Jeff Layton <jlayton@kernel.org>
4361 M:      Ilya Dryomov <idryomov@gmail.com>
4362 L:      ceph-devel@vger.kernel.org
4363 S:      Supported
4364 W:      http://ceph.com/
4365 T:      git git://github.com/ceph/ceph-client.git
4366 F:      Documentation/filesystems/ceph.rst
4367 F:      fs/ceph/
4368
4369 CERTIFICATE HANDLING
4370 M:      David Howells <dhowells@redhat.com>
4371 M:      David Woodhouse <dwmw2@infradead.org>
4372 L:      keyrings@vger.kernel.org
4373 S:      Maintained
4374 F:      Documentation/admin-guide/module-signing.rst
4375 F:      certs/
4376 F:      scripts/extract-cert.c
4377 F:      scripts/sign-file.c
4378
4379 CFAG12864B LCD DRIVER
4380 M:      Miguel Ojeda <ojeda@kernel.org>
4381 S:      Maintained
4382 F:      drivers/auxdisplay/cfag12864b.c
4383 F:      include/linux/cfag12864b.h
4384
4385 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4386 M:      Miguel Ojeda <ojeda@kernel.org>
4387 S:      Maintained
4388 F:      drivers/auxdisplay/cfag12864bfb.c
4389 F:      include/linux/cfag12864b.h
4390
4391 CHAR and MISC DRIVERS
4392 M:      Arnd Bergmann <arnd@arndb.de>
4393 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4394 S:      Supported
4395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4396 F:      drivers/char/
4397 F:      drivers/misc/
4398 F:      include/linux/miscdevice.h
4399 X:      drivers/char/agp/
4400 X:      drivers/char/hw_random/
4401 X:      drivers/char/ipmi/
4402 X:      drivers/char/random.c
4403 X:      drivers/char/tpm/
4404
4405 CHECKPATCH
4406 M:      Andy Whitcroft <apw@canonical.com>
4407 M:      Joe Perches <joe@perches.com>
4408 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4409 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4410 S:      Maintained
4411 F:      scripts/checkpatch.pl
4412
4413 CHECKPATCH DOCUMENTATION
4414 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4415 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4416 R:      Joe Perches <joe@perches.com>
4417 S:      Maintained
4418 F:      Documentation/dev-tools/checkpatch.rst
4419
4420 CHINESE DOCUMENTATION
4421 M:      Alex Shi <alexs@kernel.org>
4422 S:      Maintained
4423 F:      Documentation/translations/zh_CN/
4424
4425 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4426 M:      Peter Chen <peter.chen@kernel.org>
4427 L:      linux-usb@vger.kernel.org
4428 S:      Maintained
4429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4430 F:      drivers/usb/chipidea/
4431
4432 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4433 M:      Hans de Goede <hdegoede@redhat.com>
4434 L:      linux-input@vger.kernel.org
4435 S:      Maintained
4436 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4437 F:      drivers/input/touchscreen/chipone_icn8318.c
4438
4439 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4440 M:      Hans de Goede <hdegoede@redhat.com>
4441 L:      linux-input@vger.kernel.org
4442 S:      Maintained
4443 F:      drivers/input/touchscreen/chipone_icn8505.c
4444
4445 CHROME HARDWARE PLATFORM SUPPORT
4446 M:      Benson Leung <bleung@chromium.org>
4447 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4448 S:      Maintained
4449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4450 F:      drivers/platform/chrome/
4451
4452 CHROMEOS EC CODEC DRIVER
4453 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4454 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4455 R:      Guenter Roeck <groeck@chromium.org>
4456 S:      Maintained
4457 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4458 F:      sound/soc/codecs/cros_ec_codec.*
4459
4460 CHROMEOS EC SUBDRIVERS
4461 M:      Benson Leung <bleung@chromium.org>
4462 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4463 R:      Guenter Roeck <groeck@chromium.org>
4464 S:      Maintained
4465 F:      drivers/power/supply/cros_usbpd-charger.c
4466 N:      cros_ec
4467 N:      cros-ec
4468
4469 CHRONTEL CH7322 CEC DRIVER
4470 M:      Joe Tessler <jrt@google.com>
4471 L:      linux-media@vger.kernel.org
4472 S:      Maintained
4473 T:      git git://linuxtv.org/media_tree.git
4474 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4475 F:      drivers/media/cec/i2c/ch7322.c
4476
4477 CIRRUS LOGIC AUDIO CODEC DRIVERS
4478 M:      James Schulman <james.schulman@cirrus.com>
4479 M:      David Rhodes <david.rhodes@cirrus.com>
4480 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4481 L:      patches@opensource.cirrus.com
4482 S:      Maintained
4483 F:      sound/soc/codecs/cs*
4484
4485 CIRRUS LOGIC DSP FIRMWARE DRIVER
4486 M:      Simon Trimmer <simont@opensource.cirrus.com>
4487 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4488 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4489 L:      patches@opensource.cirrus.com
4490 S:      Supported
4491 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4492 T:      git https://github.com/CirrusLogic/linux-drivers.git
4493 F:      drivers/firmware/cirrus/*
4494 F:      include/linux/firmware/cirrus/*
4495
4496 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4497 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4498 L:      netdev@vger.kernel.org
4499 S:      Maintained
4500 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4501
4502 CIRRUS LOGIC LOCHNAGAR DRIVER
4503 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4504 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4505 L:      patches@opensource.cirrus.com
4506 S:      Supported
4507 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4508 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4509 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4510 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4511 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4512 F:      Documentation/hwmon/lochnagar.rst
4513 F:      drivers/clk/clk-lochnagar.c
4514 F:      drivers/hwmon/lochnagar-hwmon.c
4515 F:      drivers/mfd/lochnagar-i2c.c
4516 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4517 F:      drivers/regulator/lochnagar-regulator.c
4518 F:      include/dt-bindings/clk/lochnagar.h
4519 F:      include/dt-bindings/pinctrl/lochnagar.h
4520 F:      include/linux/mfd/lochnagar*
4521 F:      sound/soc/codecs/lochnagar-sc.c
4522
4523 CIRRUS LOGIC MADERA CODEC DRIVERS
4524 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4525 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4526 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4527 L:      patches@opensource.cirrus.com
4528 S:      Supported
4529 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4530 T:      git https://github.com/CirrusLogic/linux-drivers.git
4531 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4532 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4533 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4534 F:      drivers/gpio/gpio-madera*
4535 F:      drivers/irqchip/irq-madera*
4536 F:      drivers/mfd/cs47l*
4537 F:      drivers/mfd/madera*
4538 F:      drivers/pinctrl/cirrus/*
4539 F:      include/dt-bindings/sound/madera*
4540 F:      include/linux/irqchip/irq-madera*
4541 F:      include/linux/mfd/madera/*
4542 F:      include/sound/madera*
4543 F:      sound/soc/codecs/cs47l*
4544 F:      sound/soc/codecs/madera*
4545
4546 CISCO FCOE HBA DRIVER
4547 M:      Satish Kharat <satishkh@cisco.com>
4548 M:      Sesidhar Baddela <sebaddel@cisco.com>
4549 M:      Karan Tilak Kumar <kartilak@cisco.com>
4550 L:      linux-scsi@vger.kernel.org
4551 S:      Supported
4552 F:      drivers/scsi/fnic/
4553
4554 CISCO SCSI HBA DRIVER
4555 M:      Karan Tilak Kumar <kartilak@cisco.com>
4556 M:      Sesidhar Baddela <sebaddel@cisco.com>
4557 L:      linux-scsi@vger.kernel.org
4558 S:      Supported
4559 F:      drivers/scsi/snic/
4560
4561 CISCO VIC ETHERNET NIC DRIVER
4562 M:      Christian Benvenuti <benve@cisco.com>
4563 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4564 S:      Supported
4565 F:      drivers/net/ethernet/cisco/enic/
4566
4567 CISCO VIC LOW LATENCY NIC DRIVER
4568 M:      Christian Benvenuti <benve@cisco.com>
4569 M:      Nelson Escobar <neescoba@cisco.com>
4570 S:      Supported
4571 F:      drivers/infiniband/hw/usnic/
4572
4573 CLANG-FORMAT FILE
4574 M:      Miguel Ojeda <ojeda@kernel.org>
4575 S:      Maintained
4576 F:      .clang-format
4577
4578 CLANG/LLVM BUILD SUPPORT
4579 M:      Nathan Chancellor <nathan@kernel.org>
4580 M:      Nick Desaulniers <ndesaulniers@google.com>
4581 L:      llvm@lists.linux.dev
4582 S:      Supported
4583 W:      https://clangbuiltlinux.github.io/
4584 B:      https://github.com/ClangBuiltLinux/linux/issues
4585 C:      irc://irc.libera.chat/clangbuiltlinux
4586 F:      Documentation/kbuild/llvm.rst
4587 F:      include/linux/compiler-clang.h
4588 F:      scripts/Makefile.clang
4589 F:      scripts/clang-tools/
4590 K:      \b(?i:clang|llvm)\b
4591
4592 CLANG CONTROL FLOW INTEGRITY SUPPORT
4593 M:      Sami Tolvanen <samitolvanen@google.com>
4594 M:      Kees Cook <keescook@chromium.org>
4595 R:      Nathan Chancellor <nathan@kernel.org>
4596 R:      Nick Desaulniers <ndesaulniers@google.com>
4597 L:      llvm@lists.linux.dev
4598 S:      Supported
4599 B:      https://github.com/ClangBuiltLinux/linux/issues
4600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4601 F:      include/linux/cfi.h
4602 F:      kernel/cfi.c
4603
4604 CLEANCACHE API
4605 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4606 L:      linux-kernel@vger.kernel.org
4607 S:      Maintained
4608 F:      include/linux/cleancache.h
4609 F:      mm/cleancache.c
4610
4611 CLK API
4612 M:      Russell King <linux@armlinux.org.uk>
4613 L:      linux-clk@vger.kernel.org
4614 S:      Maintained
4615 F:      include/linux/clk.h
4616
4617 CLOCKSOURCE, CLOCKEVENT DRIVERS
4618 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4619 M:      Thomas Gleixner <tglx@linutronix.de>
4620 L:      linux-kernel@vger.kernel.org
4621 S:      Supported
4622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4623 F:      Documentation/devicetree/bindings/timer/
4624 F:      drivers/clocksource/
4625
4626 CMPC ACPI DRIVER
4627 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4628 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4629 L:      platform-driver-x86@vger.kernel.org
4630 S:      Supported
4631 F:      drivers/platform/x86/classmate-laptop.c
4632
4633 COBALT MEDIA DRIVER
4634 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4635 L:      linux-media@vger.kernel.org
4636 S:      Supported
4637 W:      https://linuxtv.org
4638 T:      git git://linuxtv.org/media_tree.git
4639 F:      drivers/media/pci/cobalt/
4640
4641 COCCINELLE/Semantic Patches (SmPL)
4642 M:      Julia Lawall <Julia.Lawall@inria.fr>
4643 M:      Gilles Muller <Gilles.Muller@inria.fr>
4644 M:      Nicolas Palix <nicolas.palix@imag.fr>
4645 M:      Michal Marek <michal.lkml@markovi.net>
4646 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4647 S:      Supported
4648 W:      http://coccinelle.lip6.fr/
4649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4650 F:      Documentation/dev-tools/coccinelle.rst
4651 F:      scripts/coccicheck
4652 F:      scripts/coccinelle/
4653
4654 CODA FILE SYSTEM
4655 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4656 M:      coda@cs.cmu.edu
4657 L:      codalist@coda.cs.cmu.edu
4658 S:      Maintained
4659 W:      http://www.coda.cs.cmu.edu/
4660 F:      Documentation/filesystems/coda.rst
4661 F:      fs/coda/
4662 F:      include/linux/coda*.h
4663 F:      include/uapi/linux/coda*.h
4664
4665 CODA V4L2 MEM2MEM DRIVER
4666 M:      Philipp Zabel <p.zabel@pengutronix.de>
4667 L:      linux-media@vger.kernel.org
4668 S:      Maintained
4669 F:      Documentation/devicetree/bindings/media/coda.yaml
4670 F:      drivers/media/platform/coda/
4671
4672 CODE OF CONDUCT
4673 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4674 S:      Supported
4675 F:      Documentation/process/code-of-conduct-interpretation.rst
4676 F:      Documentation/process/code-of-conduct.rst
4677
4678 COMEDI DRIVERS
4679 M:      Ian Abbott <abbotti@mev.co.uk>
4680 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4681 S:      Odd Fixes
4682 F:      drivers/comedi/
4683
4684 COMMON CLK FRAMEWORK
4685 M:      Michael Turquette <mturquette@baylibre.com>
4686 M:      Stephen Boyd <sboyd@kernel.org>
4687 L:      linux-clk@vger.kernel.org
4688 S:      Maintained
4689 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4691 F:      Documentation/devicetree/bindings/clock/
4692 F:      drivers/clk/
4693 F:      include/linux/clk-pr*
4694 F:      include/linux/clk/
4695 F:      include/linux/of_clk.h
4696 X:      drivers/clk/clkdev.c
4697
4698 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4699 M:      Steve French <sfrench@samba.org>
4700 L:      linux-cifs@vger.kernel.org
4701 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4702 S:      Supported
4703 W:      http://linux-cifs.samba.org/
4704 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4705 F:      Documentation/admin-guide/cifs/
4706 F:      fs/cifs/
4707 F:      fs/smbfs_common/
4708
4709 COMPACTPCI HOTPLUG CORE
4710 M:      Scott Murray <scott@spiteful.org>
4711 L:      linux-pci@vger.kernel.org
4712 S:      Maintained
4713 F:      drivers/pci/hotplug/cpci_hotplug*
4714
4715 COMPACTPCI HOTPLUG GENERIC DRIVER
4716 M:      Scott Murray <scott@spiteful.org>
4717 L:      linux-pci@vger.kernel.org
4718 S:      Maintained
4719 F:      drivers/pci/hotplug/cpcihp_generic.c
4720
4721 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4722 M:      Scott Murray <scott@spiteful.org>
4723 L:      linux-pci@vger.kernel.org
4724 S:      Maintained
4725 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4726
4727 COMPAL LAPTOP SUPPORT
4728 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4729 L:      platform-driver-x86@vger.kernel.org
4730 S:      Maintained
4731 F:      drivers/platform/x86/compal-laptop.c
4732
4733 COMPILER ATTRIBUTES
4734 M:      Miguel Ojeda <ojeda@kernel.org>
4735 R:      Nick Desaulniers <ndesaulniers@google.com>
4736 S:      Maintained
4737 F:      include/linux/compiler_attributes.h
4738
4739 COMPUTE EXPRESS LINK (CXL)
4740 M:      Alison Schofield <alison.schofield@intel.com>
4741 M:      Vishal Verma <vishal.l.verma@intel.com>
4742 M:      Ira Weiny <ira.weiny@intel.com>
4743 M:      Ben Widawsky <ben.widawsky@intel.com>
4744 M:      Dan Williams <dan.j.williams@intel.com>
4745 L:      linux-cxl@vger.kernel.org
4746 S:      Maintained
4747 F:      drivers/cxl/
4748 F:      include/uapi/linux/cxl_mem.h
4749
4750 CONEXANT ACCESSRUNNER USB DRIVER
4751 L:      accessrunner-general@lists.sourceforge.net
4752 S:      Orphan
4753 W:      http://accessrunner.sourceforge.net/
4754 F:      drivers/usb/atm/cxacru.c
4755
4756 CONFIGFS
4757 M:      Joel Becker <jlbec@evilplan.org>
4758 M:      Christoph Hellwig <hch@lst.de>
4759 S:      Supported
4760 T:      git git://git.infradead.org/users/hch/configfs.git
4761 F:      fs/configfs/
4762 F:      include/linux/configfs.h
4763 F:      samples/configfs/
4764
4765 CONSOLE SUBSYSTEM
4766 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4767 S:      Supported
4768 F:      drivers/video/console/
4769 F:      include/linux/console*
4770
4771 CONTEXT TRACKING
4772 M:      Frederic Weisbecker <frederic@kernel.org>
4773 S:      Maintained
4774 F:      kernel/context_tracking.c
4775 F:      include/linux/context_tracking*
4776
4777 CONTROL GROUP (CGROUP)
4778 M:      Tejun Heo <tj@kernel.org>
4779 M:      Zefan Li <lizefan.x@bytedance.com>
4780 M:      Johannes Weiner <hannes@cmpxchg.org>
4781 L:      cgroups@vger.kernel.org
4782 S:      Maintained
4783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4784 F:      Documentation/admin-guide/cgroup-v1/
4785 F:      Documentation/admin-guide/cgroup-v2.rst
4786 F:      include/linux/cgroup*
4787 F:      kernel/cgroup/
4788
4789 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4790 M:      Tejun Heo <tj@kernel.org>
4791 M:      Jens Axboe <axboe@kernel.dk>
4792 L:      cgroups@vger.kernel.org
4793 L:      linux-block@vger.kernel.org
4794 T:      git git://git.kernel.dk/linux-block
4795 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4796 F:      block/bfq-cgroup.c
4797 F:      block/blk-cgroup.c
4798 F:      block/blk-iolatency.c
4799 F:      block/blk-throttle.c
4800 F:      include/linux/blk-cgroup.h
4801
4802 CONTROL GROUP - CPUSET
4803 M:      Zefan Li <lizefan.x@bytedance.com>
4804 L:      cgroups@vger.kernel.org
4805 S:      Maintained
4806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4807 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4808 F:      include/linux/cpuset.h
4809 F:      kernel/cgroup/cpuset.c
4810
4811 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4812 M:      Johannes Weiner <hannes@cmpxchg.org>
4813 M:      Michal Hocko <mhocko@kernel.org>
4814 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4815 L:      cgroups@vger.kernel.org
4816 L:      linux-mm@kvack.org
4817 S:      Maintained
4818 F:      mm/memcontrol.c
4819 F:      mm/swap_cgroup.c
4820
4821 CORETEMP HARDWARE MONITORING DRIVER
4822 M:      Fenghua Yu <fenghua.yu@intel.com>
4823 L:      linux-hwmon@vger.kernel.org
4824 S:      Maintained
4825 F:      Documentation/hwmon/coretemp.rst
4826 F:      drivers/hwmon/coretemp.c
4827
4828 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4829 M:      Marius Zachmann <mail@mariuszachmann.de>
4830 L:      linux-hwmon@vger.kernel.org
4831 S:      Maintained
4832 F:      drivers/hwmon/corsair-cpro.c
4833
4834 CORSAIR-PSU HARDWARE MONITOR DRIVER
4835 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4836 L:      linux-hwmon@vger.kernel.org
4837 S:      Maintained
4838 F:      Documentation/hwmon/corsair-psu.rst
4839 F:      drivers/hwmon/corsair-psu.c
4840
4841 COSA/SRP SYNC SERIAL DRIVER
4842 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4843 S:      Maintained
4844 W:      http://www.fi.muni.cz/~kas/cosa/
4845 F:      drivers/net/wan/cosa*
4846
4847 COUNTER SUBSYSTEM
4848 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4849 L:      linux-iio@vger.kernel.org
4850 S:      Maintained
4851 F:      Documentation/ABI/testing/sysfs-bus-counter
4852 F:      Documentation/driver-api/generic-counter.rst
4853 F:      drivers/counter/
4854 F:      include/linux/counter.h
4855 F:      include/linux/counter_enum.h
4856
4857 CP2615 I2C DRIVER
4858 M:      Bence Csókás <bence98@sch.bme.hu>
4859 S:      Maintained
4860 F:      drivers/i2c/busses/i2c-cp2615.c
4861
4862 CPMAC ETHERNET DRIVER
4863 M:      Florian Fainelli <f.fainelli@gmail.com>
4864 L:      netdev@vger.kernel.org
4865 S:      Maintained
4866 F:      drivers/net/ethernet/ti/cpmac.c
4867
4868 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4869 M:      Viresh Kumar <viresh.kumar@linaro.org>
4870 M:      Sudeep Holla <sudeep.holla@arm.com>
4871 L:      linux-pm@vger.kernel.org
4872 S:      Maintained
4873 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4874 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4875
4876 CPU FREQUENCY SCALING FRAMEWORK
4877 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4878 M:      Viresh Kumar <viresh.kumar@linaro.org>
4879 L:      linux-pm@vger.kernel.org
4880 S:      Maintained
4881 B:      https://bugzilla.kernel.org
4882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4884 F:      Documentation/admin-guide/pm/cpufreq.rst
4885 F:      Documentation/admin-guide/pm/intel_pstate.rst
4886 F:      Documentation/cpu-freq/
4887 F:      Documentation/devicetree/bindings/cpufreq/
4888 F:      drivers/cpufreq/
4889 F:      include/linux/cpufreq.h
4890 F:      include/linux/sched/cpufreq.h
4891 F:      kernel/sched/cpufreq*.c
4892 F:      tools/testing/selftests/cpufreq/
4893
4894 CPU IDLE TIME MANAGEMENT FRAMEWORK
4895 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4896 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4897 L:      linux-pm@vger.kernel.org
4898 S:      Maintained
4899 B:      https://bugzilla.kernel.org
4900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4901 F:      Documentation/admin-guide/pm/cpuidle.rst
4902 F:      Documentation/driver-api/pm/cpuidle.rst
4903 F:      drivers/cpuidle/
4904 F:      include/linux/cpuidle.h
4905
4906 CPU POWER MONITORING SUBSYSTEM
4907 M:      Thomas Renninger <trenn@suse.com>
4908 M:      Shuah Khan <shuah@kernel.org>
4909 M:      Shuah Khan <skhan@linuxfoundation.org>
4910 L:      linux-pm@vger.kernel.org
4911 S:      Maintained
4912 F:      tools/power/cpupower/
4913
4914 CPUID/MSR DRIVER
4915 M:      "H. Peter Anvin" <hpa@zytor.com>
4916 S:      Maintained
4917 F:      arch/x86/kernel/cpuid.c
4918 F:      arch/x86/kernel/msr.c
4919
4920 CPUIDLE DRIVER - ARM BIG LITTLE
4921 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4922 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4923 L:      linux-pm@vger.kernel.org
4924 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4925 S:      Maintained
4926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4927 F:      drivers/cpuidle/cpuidle-big_little.c
4928
4929 CPUIDLE DRIVER - ARM EXYNOS
4930 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4931 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4932 M:      Kukjin Kim <kgene@kernel.org>
4933 L:      linux-pm@vger.kernel.org
4934 L:      linux-samsung-soc@vger.kernel.org
4935 S:      Supported
4936 F:      arch/arm/mach-exynos/pm.c
4937 F:      drivers/cpuidle/cpuidle-exynos.c
4938 F:      include/linux/platform_data/cpuidle-exynos.h
4939
4940 CPUIDLE DRIVER - ARM PSCI
4941 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4942 M:      Sudeep Holla <sudeep.holla@arm.com>
4943 L:      linux-pm@vger.kernel.org
4944 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4945 S:      Supported
4946 F:      drivers/cpuidle/cpuidle-psci.c
4947
4948 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4949 M:      Ulf Hansson <ulf.hansson@linaro.org>
4950 L:      linux-pm@vger.kernel.org
4951 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4952 S:      Supported
4953 F:      drivers/cpuidle/cpuidle-psci.h
4954 F:      drivers/cpuidle/cpuidle-psci-domain.c
4955
4956 CRAMFS FILESYSTEM
4957 M:      Nicolas Pitre <nico@fluxnic.net>
4958 S:      Maintained
4959 F:      Documentation/filesystems/cramfs.rst
4960 F:      fs/cramfs/
4961
4962 CREATIVE SB0540
4963 M:      Bastien Nocera <hadess@hadess.net>
4964 L:      linux-input@vger.kernel.org
4965 S:      Maintained
4966 F:      drivers/hid/hid-creative-sb0540.c
4967
4968 CRYPTO API
4969 M:      Herbert Xu <herbert@gondor.apana.org.au>
4970 M:      "David S. Miller" <davem@davemloft.net>
4971 L:      linux-crypto@vger.kernel.org
4972 S:      Maintained
4973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4975 F:      Documentation/crypto/
4976 F:      Documentation/devicetree/bindings/crypto/
4977 F:      arch/*/crypto/
4978 F:      crypto/
4979 F:      drivers/crypto/
4980 F:      include/crypto/
4981 F:      include/linux/crypto*
4982 F:      lib/crypto/
4983
4984 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4985 M:      Neil Horman <nhorman@tuxdriver.com>
4986 L:      linux-crypto@vger.kernel.org
4987 S:      Maintained
4988 F:      crypto/ansi_cprng.c
4989 F:      crypto/rng.c
4990
4991 CS3308 MEDIA DRIVER
4992 M:      Hans Verkuil <hverkuil@xs4all.nl>
4993 L:      linux-media@vger.kernel.org
4994 S:      Odd Fixes
4995 W:      http://linuxtv.org
4996 T:      git git://linuxtv.org/media_tree.git
4997 F:      drivers/media/i2c/cs3308.c
4998
4999 CS5535 Audio ALSA driver
5000 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5001 S:      Maintained
5002 F:      sound/pci/cs5535audio/
5003
5004 CSI DRIVERS FOR ALLWINNER V3s
5005 M:      Yong Deng <yong.deng@magewell.com>
5006 L:      linux-media@vger.kernel.org
5007 S:      Maintained
5008 T:      git git://linuxtv.org/media_tree.git
5009 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5010 F:      drivers/media/platform/sunxi/sun6i-csi/
5011
5012 CW1200 WLAN driver
5013 M:      Solomon Peachy <pizza@shaftnet.org>
5014 S:      Maintained
5015 F:      drivers/net/wireless/st/cw1200/
5016
5017 CX18 VIDEO4LINUX DRIVER
5018 M:      Andy Walls <awalls@md.metrocast.net>
5019 L:      linux-media@vger.kernel.org
5020 S:      Maintained
5021 W:      https://linuxtv.org
5022 T:      git git://linuxtv.org/media_tree.git
5023 F:      drivers/media/pci/cx18/
5024 F:      include/uapi/linux/ivtv*
5025
5026 CX2341X MPEG ENCODER HELPER MODULE
5027 M:      Hans Verkuil <hverkuil@xs4all.nl>
5028 L:      linux-media@vger.kernel.org
5029 S:      Maintained
5030 W:      https://linuxtv.org
5031 T:      git git://linuxtv.org/media_tree.git
5032 F:      drivers/media/common/cx2341x*
5033 F:      include/media/drv-intf/cx2341x.h
5034
5035 CX24120 MEDIA DRIVER
5036 M:      Jemma Denson <jdenson@gmail.com>
5037 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5038 L:      linux-media@vger.kernel.org
5039 S:      Maintained
5040 W:      https://linuxtv.org
5041 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5042 F:      drivers/media/dvb-frontends/cx24120*
5043
5044 CX88 VIDEO4LINUX DRIVER
5045 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5046 L:      linux-media@vger.kernel.org
5047 S:      Odd fixes
5048 W:      https://linuxtv.org
5049 T:      git git://linuxtv.org/media_tree.git
5050 F:      Documentation/driver-api/media/drivers/cx88*
5051 F:      drivers/media/pci/cx88/
5052
5053 CXD2820R MEDIA DRIVER
5054 M:      Antti Palosaari <crope@iki.fi>
5055 L:      linux-media@vger.kernel.org
5056 S:      Maintained
5057 W:      https://linuxtv.org
5058 W:      http://palosaari.fi/linux/
5059 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5060 T:      git git://linuxtv.org/anttip/media_tree.git
5061 F:      drivers/media/dvb-frontends/cxd2820r*
5062
5063 CXGB3 ETHERNET DRIVER (CXGB3)
5064 M:      Raju Rangoju <rajur@chelsio.com>
5065 L:      netdev@vger.kernel.org
5066 S:      Supported
5067 W:      http://www.chelsio.com
5068 F:      drivers/net/ethernet/chelsio/cxgb3/
5069
5070 CXGB3 ISCSI DRIVER (CXGB3I)
5071 M:      Karen Xie <kxie@chelsio.com>
5072 L:      linux-scsi@vger.kernel.org
5073 S:      Supported
5074 W:      http://www.chelsio.com
5075 F:      drivers/scsi/cxgbi/cxgb3i
5076
5077 CXGB4 CRYPTO DRIVER (chcr)
5078 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5079 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5080 M:      Rohit Maheshwari <rohitm@chelsio.com>
5081 L:      linux-crypto@vger.kernel.org
5082 S:      Supported
5083 W:      http://www.chelsio.com
5084 F:      drivers/crypto/chelsio
5085
5086 CXGB4 INLINE CRYPTO DRIVER
5087 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5088 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5089 M:      Rohit Maheshwari <rohitm@chelsio.com>
5090 L:      netdev@vger.kernel.org
5091 S:      Supported
5092 W:      http://www.chelsio.com
5093 F:      drivers/net/ethernet/chelsio/inline_crypto/
5094
5095 CXGB4 ETHERNET DRIVER (CXGB4)
5096 M:      Raju Rangoju <rajur@chelsio.com>
5097 L:      netdev@vger.kernel.org
5098 S:      Supported
5099 W:      http://www.chelsio.com
5100 F:      drivers/net/ethernet/chelsio/cxgb4/
5101
5102 CXGB4 ISCSI DRIVER (CXGB4I)
5103 M:      Karen Xie <kxie@chelsio.com>
5104 L:      linux-scsi@vger.kernel.org
5105 S:      Supported
5106 W:      http://www.chelsio.com
5107 F:      drivers/scsi/cxgbi/cxgb4i
5108
5109 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5110 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5111 L:      linux-rdma@vger.kernel.org
5112 S:      Supported
5113 W:      http://www.openfabrics.org
5114 F:      drivers/infiniband/hw/cxgb4/
5115 F:      include/uapi/rdma/cxgb4-abi.h
5116
5117 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5118 M:      Raju Rangoju <rajur@chelsio.com>
5119 L:      netdev@vger.kernel.org
5120 S:      Supported
5121 W:      http://www.chelsio.com
5122 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5123
5124 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5125 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5126 M:      Andrew Donnellan <ajd@linux.ibm.com>
5127 L:      linuxppc-dev@lists.ozlabs.org
5128 S:      Supported
5129 F:      Documentation/ABI/testing/sysfs-class-cxl
5130 F:      Documentation/powerpc/cxl.rst
5131 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5132 F:      drivers/misc/cxl/
5133 F:      include/misc/cxl*
5134 F:      include/uapi/misc/cxl.h
5135
5136 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5137 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5138 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5139 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5140 L:      linux-scsi@vger.kernel.org
5141 S:      Supported
5142 F:      Documentation/powerpc/cxlflash.rst
5143 F:      drivers/scsi/cxlflash/
5144 F:      include/uapi/scsi/cxlflash_ioctl.h
5145
5146 CYBERPRO FB DRIVER
5147 M:      Russell King <linux@armlinux.org.uk>
5148 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5149 S:      Maintained
5150 W:      http://www.armlinux.org.uk/
5151 F:      drivers/video/fbdev/cyber2000fb.*
5152
5153 CYCLADES PC300 DRIVER
5154 S:      Orphan
5155 F:      drivers/net/wan/pc300*
5156
5157 CYPRESS_FIRMWARE MEDIA DRIVER
5158 M:      Antti Palosaari <crope@iki.fi>
5159 L:      linux-media@vger.kernel.org
5160 S:      Maintained
5161 W:      https://linuxtv.org
5162 W:      http://palosaari.fi/linux/
5163 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5164 T:      git git://linuxtv.org/anttip/media_tree.git
5165 F:      drivers/media/common/cypress_firmware*
5166
5167 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5168 M:      Linus Walleij <linus.walleij@linaro.org>
5169 L:      linux-input@vger.kernel.org
5170 S:      Maintained
5171 F:      drivers/input/touchscreen/cy8ctma140.c
5172
5173 CYTTSP TOUCHSCREEN DRIVER
5174 M:      Linus Walleij <linus.walleij@linaro.org>
5175 L:      linux-input@vger.kernel.org
5176 S:      Maintained
5177 F:      drivers/input/touchscreen/cyttsp*
5178
5179 D-LINK DIR-685 TOUCHKEYS DRIVER
5180 M:      Linus Walleij <linus.walleij@linaro.org>
5181 L:      linux-input@vger.kernel.org
5182 S:      Supported
5183 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5184
5185 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5186 M:      Joshua Kinard <kumba@gentoo.org>
5187 S:      Maintained
5188 F:      drivers/rtc/rtc-ds1685.c
5189 F:      include/linux/rtc/ds1685.h
5190
5191 DAMA SLAVE for AX.25
5192 M:      Joerg Reuter <jreuter@yaina.de>
5193 L:      linux-hams@vger.kernel.org
5194 S:      Maintained
5195 W:      http://yaina.de/jreuter/
5196 W:      http://www.qsl.net/dl1bke/
5197 F:      net/ax25/af_ax25.c
5198 F:      net/ax25/ax25_dev.c
5199 F:      net/ax25/ax25_ds_*
5200 F:      net/ax25/ax25_in.c
5201 F:      net/ax25/ax25_out.c
5202 F:      net/ax25/ax25_timer.c
5203 F:      net/ax25/sysctl_net_ax25.c
5204
5205 DATA ACCESS MONITOR
5206 M:      SeongJae Park <sjpark@amazon.de>
5207 L:      linux-mm@kvack.org
5208 S:      Maintained
5209 F:      Documentation/admin-guide/mm/damon/
5210 F:      Documentation/vm/damon/
5211 F:      include/linux/damon.h
5212 F:      include/trace/events/damon.h
5213 F:      mm/damon/
5214 F:      tools/testing/selftests/damon/
5215
5216 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5217 L:      netdev@vger.kernel.org
5218 S:      Orphan
5219 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5220 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5221
5222 DC390/AM53C974 SCSI driver
5223 M:      Hannes Reinecke <hare@suse.com>
5224 L:      linux-scsi@vger.kernel.org
5225 S:      Maintained
5226 F:      drivers/scsi/am53c974.c
5227
5228 DC395x SCSI driver
5229 M:      Oliver Neukum <oliver@neukum.org>
5230 M:      Ali Akcaagac <aliakc@web.de>
5231 M:      Jamie Lenehan <lenehan@twibble.org>
5232 L:      dc395x@twibble.org
5233 S:      Maintained
5234 W:      http://twibble.org/dist/dc395x/
5235 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5236 F:      Documentation/scsi/dc395x.rst
5237 F:      drivers/scsi/dc395x.*
5238
5239 DCCP PROTOCOL
5240 L:      dccp@vger.kernel.org
5241 S:      Orphan
5242 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5243 F:      include/linux/dccp.h
5244 F:      include/linux/tfrc.h
5245 F:      include/uapi/linux/dccp.h
5246 F:      net/dccp/
5247
5248 DECnet NETWORK LAYER
5249 L:      linux-decnet-user@lists.sourceforge.net
5250 S:      Orphan
5251 W:      http://linux-decnet.sourceforge.net
5252 F:      Documentation/networking/decnet.rst
5253 F:      net/decnet/
5254
5255 DECSTATION PLATFORM SUPPORT
5256 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5257 L:      linux-mips@vger.kernel.org
5258 S:      Maintained
5259 W:      http://www.linux-mips.org/wiki/DECstation
5260 F:      arch/mips/dec/
5261 F:      arch/mips/include/asm/dec/
5262 F:      arch/mips/include/asm/mach-dec/
5263
5264 DEFXX FDDI NETWORK DRIVER
5265 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5266 S:      Maintained
5267 F:      drivers/net/fddi/defxx.*
5268
5269 DEFZA FDDI NETWORK DRIVER
5270 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5271 S:      Maintained
5272 F:      drivers/net/fddi/defza.*
5273
5274 DEINTERLACE DRIVERS FOR ALLWINNER H3
5275 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5276 L:      linux-media@vger.kernel.org
5277 S:      Maintained
5278 T:      git git://linuxtv.org/media_tree.git
5279 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5280 F:      drivers/media/platform/sunxi/sun8i-di/
5281
5282 DELL LAPTOP DRIVER
5283 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5284 M:      Pali Rohár <pali@kernel.org>
5285 L:      platform-driver-x86@vger.kernel.org
5286 S:      Maintained
5287 F:      drivers/platform/x86/dell/dell-laptop.c
5288
5289 DELL LAPTOP FREEFALL DRIVER
5290 M:      Pali Rohár <pali@kernel.org>
5291 S:      Maintained
5292 F:      drivers/platform/x86/dell/dell-smo8800.c
5293
5294 DELL LAPTOP RBTN DRIVER
5295 M:      Pali Rohár <pali@kernel.org>
5296 S:      Maintained
5297 F:      drivers/platform/x86/dell/dell-rbtn.*
5298
5299 DELL LAPTOP SMM DRIVER
5300 M:      Pali Rohár <pali@kernel.org>
5301 S:      Maintained
5302 F:      drivers/hwmon/dell-smm-hwmon.c
5303 F:      include/uapi/linux/i8k.h
5304
5305 DELL REMOTE BIOS UPDATE DRIVER
5306 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5307 L:      platform-driver-x86@vger.kernel.org
5308 S:      Maintained
5309 F:      drivers/platform/x86/dell/dell_rbu.c
5310
5311 DELL SMBIOS DRIVER
5312 M:      Pali Rohár <pali@kernel.org>
5313 L:      Dell.Client.Kernel@dell.com
5314 L:      platform-driver-x86@vger.kernel.org
5315 S:      Maintained
5316 F:      drivers/platform/x86/dell/dell-smbios.*
5317
5318 DELL SMBIOS SMM DRIVER
5319 L:      Dell.Client.Kernel@dell.com
5320 L:      platform-driver-x86@vger.kernel.org
5321 S:      Maintained
5322 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5323
5324 DELL SMBIOS WMI DRIVER
5325 L:      Dell.Client.Kernel@dell.com
5326 L:      platform-driver-x86@vger.kernel.org
5327 S:      Maintained
5328 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5329 F:      tools/wmi/dell-smbios-example.c
5330
5331 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5332 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5333 L:      platform-driver-x86@vger.kernel.org
5334 S:      Maintained
5335 F:      Documentation/driver-api/dcdbas.rst
5336 F:      drivers/platform/x86/dell/dcdbas.*
5337
5338 DELL WMI DESCRIPTOR DRIVER
5339 L:      Dell.Client.Kernel@dell.com
5340 S:      Maintained
5341 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5342
5343 DELL WMI SYSMAN DRIVER
5344 M:      Divya Bharathi <divya.bharathi@dell.com>
5345 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5346 L:      Dell.Client.Kernel@dell.com
5347 L:      platform-driver-x86@vger.kernel.org
5348 S:      Maintained
5349 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5350 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5351
5352 DELL WMI NOTIFICATIONS DRIVER
5353 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5354 M:      Pali Rohár <pali@kernel.org>
5355 S:      Maintained
5356 F:      drivers/platform/x86/dell/dell-wmi-base.c
5357
5358 DELL WMI HARDWARE PRIVACY SUPPORT
5359 M:      Perry Yuan <Perry.Yuan@dell.com>
5360 L:      Dell.Client.Kernel@dell.com
5361 L:      platform-driver-x86@vger.kernel.org
5362 S:      Maintained
5363 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5364
5365 DELTA ST MEDIA DRIVER
5366 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5367 L:      linux-media@vger.kernel.org
5368 S:      Supported
5369 W:      https://linuxtv.org
5370 T:      git git://linuxtv.org/media_tree.git
5371 F:      drivers/media/platform/sti/delta
5372
5373 DELTA DPS920AB PSU DRIVER
5374 M:      Robert Marko <robert.marko@sartura.hr>
5375 L:      linux-hwmon@vger.kernel.org
5376 S:      Maintained
5377 F:      Documentation/hwmon/dps920ab.rst
5378 F:      drivers/hwmon/pmbus/dps920ab.c
5379
5380 DENALI NAND DRIVER
5381 L:      linux-mtd@lists.infradead.org
5382 S:      Orphan
5383 F:      drivers/mtd/nand/raw/denali*
5384
5385 DESIGNWARE EDMA CORE IP DRIVER
5386 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5387 L:      dmaengine@vger.kernel.org
5388 S:      Maintained
5389 F:      drivers/dma/dw-edma/
5390 F:      include/linux/dma/edma.h
5391
5392 DESIGNWARE XDATA IP DRIVER
5393 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5394 L:      linux-pci@vger.kernel.org
5395 S:      Maintained
5396 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5397 F:      drivers/misc/dw-xdata-pcie.c
5398
5399 DESIGNWARE USB2 DRD IP DRIVER
5400 M:      Minas Harutyunyan <hminas@synopsys.com>
5401 L:      linux-usb@vger.kernel.org
5402 S:      Maintained
5403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5404 F:      drivers/usb/dwc2/
5405
5406 DESIGNWARE USB3 DRD IP DRIVER
5407 M:      Felipe Balbi <balbi@kernel.org>
5408 L:      linux-usb@vger.kernel.org
5409 S:      Maintained
5410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5411 F:      drivers/usb/dwc3/
5412
5413 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5414 M:      Andreas Klinger <ak@it-klinger.de>
5415 L:      linux-iio@vger.kernel.org
5416 S:      Maintained
5417 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5418 F:      drivers/iio/proximity/srf*.c
5419
5420 DEVICE COREDUMP (DEV_COREDUMP)
5421 M:      Johannes Berg <johannes@sipsolutions.net>
5422 L:      linux-kernel@vger.kernel.org
5423 S:      Maintained
5424 F:      drivers/base/devcoredump.c
5425 F:      include/linux/devcoredump.h
5426
5427 DEVICE DEPENDENCY HELPER SCRIPT
5428 M:      Saravana Kannan <saravanak@google.com>
5429 L:      linux-kernel@vger.kernel.org
5430 S:      Maintained
5431 F:      scripts/dev-needs.sh
5432
5433 DEVICE DIRECT ACCESS (DAX)
5434 M:      Dan Williams <dan.j.williams@intel.com>
5435 M:      Vishal Verma <vishal.l.verma@intel.com>
5436 M:      Dave Jiang <dave.jiang@intel.com>
5437 L:      nvdimm@lists.linux.dev
5438 S:      Supported
5439 F:      drivers/dax/
5440
5441 DEVICE FREQUENCY (DEVFREQ)
5442 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5443 M:      Kyungmin Park <kyungmin.park@samsung.com>
5444 M:      Chanwoo Choi <cw00.choi@samsung.com>
5445 L:      linux-pm@vger.kernel.org
5446 S:      Maintained
5447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5448 F:      Documentation/devicetree/bindings/devfreq/
5449 F:      drivers/devfreq/
5450 F:      include/linux/devfreq.h
5451 F:      include/trace/events/devfreq.h
5452
5453 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5454 M:      Chanwoo Choi <cw00.choi@samsung.com>
5455 L:      linux-pm@vger.kernel.org
5456 S:      Supported
5457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5458 F:      Documentation/devicetree/bindings/devfreq/event/
5459 F:      drivers/devfreq/devfreq-event.c
5460 F:      drivers/devfreq/event/
5461 F:      include/dt-bindings/pmu/exynos_ppmu.h
5462 F:      include/linux/devfreq-event.h
5463
5464 DEVICE NUMBER REGISTRY
5465 M:      Torben Mathiasen <device@lanana.org>
5466 S:      Maintained
5467 W:      http://lanana.org/docs/device-list/index.html
5468
5469 DEVICE RESOURCE MANAGEMENT HELPERS
5470 M:      Hans de Goede <hdegoede@redhat.com>
5471 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5472 S:      Maintained
5473 F:      include/linux/devm-helpers.h
5474
5475 DEVICE-MAPPER  (LVM)
5476 M:      Alasdair Kergon <agk@redhat.com>
5477 M:      Mike Snitzer <snitzer@redhat.com>
5478 M:      dm-devel@redhat.com
5479 L:      dm-devel@redhat.com
5480 S:      Maintained
5481 W:      http://sources.redhat.com/dm
5482 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5484 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5485 F:      Documentation/admin-guide/device-mapper/
5486 F:      drivers/md/Kconfig
5487 F:      drivers/md/Makefile
5488 F:      drivers/md/dm*
5489 F:      drivers/md/persistent-data/
5490 F:      include/linux/device-mapper.h
5491 F:      include/linux/dm-*.h
5492 F:      include/uapi/linux/dm-*.h
5493
5494 DEVLINK
5495 M:      Jiri Pirko <jiri@nvidia.com>
5496 L:      netdev@vger.kernel.org
5497 S:      Supported
5498 F:      Documentation/networking/devlink
5499 F:      include/net/devlink.h
5500 F:      include/uapi/linux/devlink.h
5501 F:      net/core/devlink.c
5502
5503 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5504 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5505 L:      kernel@dh-electronics.com
5506 S:      Maintained
5507 F:      arch/arm/boot/dts/imx6*-dhcom-*
5508
5509 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5510 M:      Marek Vasut <marex@denx.de>
5511 L:      kernel@dh-electronics.com
5512 S:      Maintained
5513 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5514 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5515
5516 DIALOG SEMICONDUCTOR DRIVERS
5517 M:      Support Opensource <support.opensource@diasemi.com>
5518 S:      Supported
5519 W:      http://www.dialog-semiconductor.com/products
5520 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5521 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5522 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5523 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5524 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5525 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5526 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5527 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5528 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5529 F:      Documentation/hwmon/da90??.rst
5530 F:      drivers/gpio/gpio-da90??.c
5531 F:      drivers/hwmon/da90??-hwmon.c
5532 F:      drivers/iio/adc/da91??-*.c
5533 F:      drivers/input/misc/da72??.[ch]
5534 F:      drivers/input/misc/da90??_onkey.c
5535 F:      drivers/input/touchscreen/da9052_tsi.c
5536 F:      drivers/leds/leds-da90??.c
5537 F:      drivers/mfd/da903x.c
5538 F:      drivers/mfd/da90??-*.c
5539 F:      drivers/mfd/da91??-*.c
5540 F:      drivers/pinctrl/pinctrl-da90??.c
5541 F:      drivers/power/supply/da9052-battery.c
5542 F:      drivers/power/supply/da91??-*.c
5543 F:      drivers/regulator/da9???-regulator.[ch]
5544 F:      drivers/regulator/slg51000-regulator.[ch]
5545 F:      drivers/rtc/rtc-da90??.c
5546 F:      drivers/thermal/da90??-thermal.c
5547 F:      drivers/video/backlight/da90??_bl.c
5548 F:      drivers/watchdog/da90??_wdt.c
5549 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5550 F:      include/linux/mfd/da903x.h
5551 F:      include/linux/mfd/da9052/
5552 F:      include/linux/mfd/da9055/
5553 F:      include/linux/mfd/da9062/
5554 F:      include/linux/mfd/da9063/
5555 F:      include/linux/mfd/da9150/
5556 F:      include/linux/regulator/da9211.h
5557 F:      include/sound/da[79]*.h
5558 F:      sound/soc/codecs/da[79]*.[ch]
5559
5560 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5561 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5562 L:      linux-gpio@vger.kernel.org
5563 S:      Maintained
5564 F:      drivers/gpio/gpio-gpio-mm.c
5565
5566 DIOLAN U2C-12 I2C DRIVER
5567 M:      Guenter Roeck <linux@roeck-us.net>
5568 L:      linux-i2c@vger.kernel.org
5569 S:      Maintained
5570 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5571
5572 DIRECTORY NOTIFICATION (DNOTIFY)
5573 M:      Jan Kara <jack@suse.cz>
5574 R:      Amir Goldstein <amir73il@gmail.com>
5575 L:      linux-fsdevel@vger.kernel.org
5576 S:      Maintained
5577 F:      Documentation/filesystems/dnotify.rst
5578 F:      fs/notify/dnotify/
5579 F:      include/linux/dnotify.h
5580
5581 DISK GEOMETRY AND PARTITION HANDLING
5582 M:      Andries Brouwer <aeb@cwi.nl>
5583 S:      Maintained
5584 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5585 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5586 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5587
5588 DISKQUOTA
5589 M:      Jan Kara <jack@suse.com>
5590 S:      Maintained
5591 F:      Documentation/filesystems/quota.rst
5592 F:      fs/quota/
5593 F:      include/linux/quota*.h
5594 F:      include/uapi/linux/quota*.h
5595
5596 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5597 M:      Bernie Thompson <bernie@plugable.com>
5598 L:      linux-fbdev@vger.kernel.org
5599 S:      Maintained
5600 W:      http://plugable.com/category/projects/udlfb/
5601 F:      Documentation/fb/udlfb.rst
5602 F:      drivers/video/fbdev/udlfb.c
5603 F:      include/video/udlfb.h
5604
5605 DISTRIBUTED LOCK MANAGER (DLM)
5606 M:      Christine Caulfield <ccaulfie@redhat.com>
5607 M:      David Teigland <teigland@redhat.com>
5608 L:      cluster-devel@redhat.com
5609 S:      Supported
5610 W:      http://sources.redhat.com/cluster/
5611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5612 F:      fs/dlm/
5613
5614 DMA BUFFER SHARING FRAMEWORK
5615 M:      Sumit Semwal <sumit.semwal@linaro.org>
5616 M:      Christian König <christian.koenig@amd.com>
5617 L:      linux-media@vger.kernel.org
5618 L:      dri-devel@lists.freedesktop.org
5619 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5620 S:      Maintained
5621 T:      git git://anongit.freedesktop.org/drm/drm-misc
5622 F:      Documentation/driver-api/dma-buf.rst
5623 F:      drivers/dma-buf/
5624 F:      include/linux/*fence.h
5625 F:      include/linux/dma-buf*
5626 F:      include/linux/dma-resv.h
5627 K:      \bdma_(?:buf|fence|resv)\b
5628
5629 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5630 M:      Vinod Koul <vkoul@kernel.org>
5631 L:      dmaengine@vger.kernel.org
5632 S:      Maintained
5633 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5635 F:      Documentation/devicetree/bindings/dma/
5636 F:      Documentation/driver-api/dmaengine/
5637 F:      drivers/dma/
5638 F:      include/linux/dma/
5639 F:      include/linux/dmaengine.h
5640 F:      include/linux/of_dma.h
5641
5642 DMA MAPPING HELPERS
5643 M:      Christoph Hellwig <hch@lst.de>
5644 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5645 R:      Robin Murphy <robin.murphy@arm.com>
5646 L:      iommu@lists.linux-foundation.org
5647 S:      Supported
5648 W:      http://git.infradead.org/users/hch/dma-mapping.git
5649 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5650 F:      include/asm-generic/dma-mapping.h
5651 F:      include/linux/dma-direct.h
5652 F:      include/linux/dma-mapping.h
5653 F:      include/linux/dma-map-ops.h
5654 F:      kernel/dma/
5655
5656 DMA MAPPING BENCHMARK
5657 M:      Barry Song <song.bao.hua@hisilicon.com>
5658 L:      iommu@lists.linux-foundation.org
5659 F:      kernel/dma/map_benchmark.c
5660 F:      tools/testing/selftests/dma/
5661
5662 DMA-BUF HEAPS FRAMEWORK
5663 M:      Sumit Semwal <sumit.semwal@linaro.org>
5664 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5665 R:      Liam Mark <lmark@codeaurora.org>
5666 R:      Laura Abbott <labbott@redhat.com>
5667 R:      Brian Starkey <Brian.Starkey@arm.com>
5668 R:      John Stultz <john.stultz@linaro.org>
5669 L:      linux-media@vger.kernel.org
5670 L:      dri-devel@lists.freedesktop.org
5671 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5672 S:      Maintained
5673 T:      git git://anongit.freedesktop.org/drm/drm-misc
5674 F:      drivers/dma-buf/dma-heap.c
5675 F:      drivers/dma-buf/heaps/*
5676 F:      include/linux/dma-heap.h
5677 F:      include/uapi/linux/dma-heap.h
5678
5679 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5680 M:      Lukasz Luba <lukasz.luba@arm.com>
5681 L:      linux-pm@vger.kernel.org
5682 L:      linux-samsung-soc@vger.kernel.org
5683 S:      Maintained
5684 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
5685 F:      drivers/memory/samsung/exynos5422-dmc.c
5686
5687 DME1737 HARDWARE MONITOR DRIVER
5688 M:      Juerg Haefliger <juergh@gmail.com>
5689 L:      linux-hwmon@vger.kernel.org
5690 S:      Maintained
5691 F:      Documentation/hwmon/dme1737.rst
5692 F:      drivers/hwmon/dme1737.c
5693
5694 DMI/SMBIOS SUPPORT
5695 M:      Jean Delvare <jdelvare@suse.com>
5696 S:      Maintained
5697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5698 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5699 F:      drivers/firmware/dmi-id.c
5700 F:      drivers/firmware/dmi_scan.c
5701 F:      include/linux/dmi.h
5702
5703 DOCUMENTATION
5704 M:      Jonathan Corbet <corbet@lwn.net>
5705 L:      linux-doc@vger.kernel.org
5706 S:      Maintained
5707 P:      Documentation/doc-guide/maintainer-profile.rst
5708 T:      git git://git.lwn.net/linux.git docs-next
5709 F:      Documentation/
5710 F:      scripts/documentation-file-ref-check
5711 F:      scripts/kernel-doc
5712 F:      scripts/sphinx-pre-install
5713 X:      Documentation/ABI/
5714 X:      Documentation/admin-guide/media/
5715 X:      Documentation/devicetree/
5716 X:      Documentation/driver-api/media/
5717 X:      Documentation/firmware-guide/acpi/
5718 X:      Documentation/i2c/
5719 X:      Documentation/power/
5720 X:      Documentation/spi/
5721 X:      Documentation/userspace-api/media/
5722
5723 DOCUMENTATION REPORTING ISSUES
5724 M:      Thorsten Leemhuis <linux@leemhuis.info>
5725 L:      linux-doc@vger.kernel.org
5726 S:      Maintained
5727 F:      Documentation/admin-guide/reporting-issues.rst
5728
5729 DOCUMENTATION SCRIPTS
5730 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5731 L:      linux-doc@vger.kernel.org
5732 S:      Maintained
5733 F:      Documentation/sphinx/parse-headers.pl
5734 F:      scripts/documentation-file-ref-check
5735 F:      scripts/sphinx-pre-install
5736
5737 DOCUMENTATION/ITALIAN
5738 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5739 L:      linux-doc@vger.kernel.org
5740 S:      Maintained
5741 F:      Documentation/translations/it_IT
5742
5743 DONGWOON DW9714 LENS VOICE COIL DRIVER
5744 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5745 L:      linux-media@vger.kernel.org
5746 S:      Maintained
5747 T:      git git://linuxtv.org/media_tree.git
5748 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5749 F:      drivers/media/i2c/dw9714.c
5750
5751 DONGWOON DW9768 LENS VOICE COIL DRIVER
5752 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5753 L:      linux-media@vger.kernel.org
5754 S:      Maintained
5755 T:      git git://linuxtv.org/media_tree.git
5756 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5757 F:      drivers/media/i2c/dw9768.c
5758
5759 DONGWOON DW9807 LENS VOICE COIL DRIVER
5760 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5761 L:      linux-media@vger.kernel.org
5762 S:      Maintained
5763 T:      git git://linuxtv.org/media_tree.git
5764 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5765 F:      drivers/media/i2c/dw9807-vcm.c
5766
5767 DOUBLETALK DRIVER
5768 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5769 L:      blinux-list@redhat.com
5770 S:      Maintained
5771 F:      drivers/char/dtlk.c
5772 F:      include/linux/dtlk.h
5773
5774 DPAA2 DATAPATH I/O (DPIO) DRIVER
5775 M:      Roy Pledge <Roy.Pledge@nxp.com>
5776 L:      linux-kernel@vger.kernel.org
5777 S:      Maintained
5778 F:      drivers/soc/fsl/dpio
5779
5780 DPAA2 ETHERNET DRIVER
5781 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5782 L:      netdev@vger.kernel.org
5783 S:      Maintained
5784 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5785 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5786 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5787 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5788 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5789 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5790 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5791 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5792 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5793
5794 DPAA2 ETHERNET SWITCH DRIVER
5795 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5796 L:      netdev@vger.kernel.org
5797 S:      Maintained
5798 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
5799 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5800 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
5801
5802 DPT_I2O SCSI RAID DRIVER
5803 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5804 L:      linux-scsi@vger.kernel.org
5805 S:      Maintained
5806 W:      http://www.adaptec.com/
5807 F:      drivers/scsi/dpt*
5808 F:      drivers/scsi/dpt/
5809
5810 DRBD DRIVER
5811 M:      Philipp Reisner <philipp.reisner@linbit.com>
5812 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5813 L:      drbd-dev@lists.linbit.com
5814 S:      Supported
5815 W:      http://www.drbd.org
5816 T:      git git://git.linbit.com/linux-drbd.git
5817 T:      git git://git.linbit.com/drbd-8.4.git
5818 F:      Documentation/admin-guide/blockdev/
5819 F:      drivers/block/drbd/
5820 F:      lib/lru_cache.c
5821
5822 DRIVER COMPONENT FRAMEWORK
5823 L:      dri-devel@lists.freedesktop.org
5824 F:      drivers/base/component.c
5825 F:      include/linux/component.h
5826
5827 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5828 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5829 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5830 S:      Supported
5831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5832 F:      Documentation/core-api/kobject.rst
5833 F:      drivers/base/
5834 F:      fs/debugfs/
5835 F:      fs/sysfs/
5836 F:      include/linux/debugfs.h
5837 F:      include/linux/kobj*
5838 F:      lib/kobj*
5839
5840 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5841 M:      Nishanth Menon <nm@ti.com>
5842 L:      linux-pm@vger.kernel.org
5843 S:      Maintained
5844 F:      drivers/soc/ti/smartreflex.c
5845 F:      include/linux/power/smartreflex.h
5846
5847 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5848 M:      Maxime Ripard <mripard@kernel.org>
5849 M:      Chen-Yu Tsai <wens@csie.org>
5850 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
5851 L:      dri-devel@lists.freedesktop.org
5852 S:      Supported
5853 T:      git git://anongit.freedesktop.org/drm/drm-misc
5854 F:      drivers/gpu/drm/sun4i/sun8i*
5855
5856 DRM DRIVER FOR ARM PL111 CLCD
5857 M:      Emma Anholt <emma@anholt.net>
5858 S:      Supported
5859 T:      git git://anongit.freedesktop.org/drm/drm-misc
5860 F:      drivers/gpu/drm/pl111/
5861
5862 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5863 M:      Linus Walleij <linus.walleij@linaro.org>
5864 S:      Maintained
5865 T:      git git://anongit.freedesktop.org/drm/drm-misc
5866 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5867 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5868
5869 DRM DRIVER FOR ASPEED BMC GFX
5870 M:      Joel Stanley <joel@jms.id.au>
5871 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5872 S:      Supported
5873 T:      git git://anongit.freedesktop.org/drm/drm-misc
5874 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5875 F:      drivers/gpu/drm/aspeed/
5876
5877 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5878 M:      Dave Airlie <airlied@redhat.com>
5879 R:      Thomas Zimmermann <tzimmermann@suse.de>
5880 L:      dri-devel@lists.freedesktop.org
5881 S:      Supported
5882 T:      git git://anongit.freedesktop.org/drm/drm-misc
5883 F:      drivers/gpu/drm/ast/
5884
5885 DRM DRIVER FOR BOCHS VIRTUAL GPU
5886 M:      Gerd Hoffmann <kraxel@redhat.com>
5887 L:      virtualization@lists.linux-foundation.org
5888 S:      Maintained
5889 T:      git git://anongit.freedesktop.org/drm/drm-misc
5890 F:      drivers/gpu/drm/tiny/bochs.c
5891
5892 DRM DRIVER FOR BOE HIMAX8279D PANELS
5893 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5894 S:      Maintained
5895 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5896 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5897
5898 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
5899 M:      Jagan Teki <jagan@amarulasolutions.com>
5900 S:      Maintained
5901 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
5902 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
5903
5904 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5905 M:      Linus Walleij <linus.walleij@linaro.org>
5906 S:      Maintained
5907 T:      git git://anongit.freedesktop.org/drm/drm-misc
5908 F:      drivers/gpu/drm/tve200/
5909
5910 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5911 M:      Icenowy Zheng <icenowy@aosc.io>
5912 S:      Maintained
5913 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5914 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5915
5916 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5917 M:      Jagan Teki <jagan@amarulasolutions.com>
5918 S:      Maintained
5919 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5920 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5921
5922 DRM DRIVER FOR GENERIC USB DISPLAY
5923 M:      Noralf Trønnes <noralf@tronnes.org>
5924 S:      Maintained
5925 W:      https://github.com/notro/gud/wiki
5926 T:      git git://anongit.freedesktop.org/drm/drm-misc
5927 F:      drivers/gpu/drm/gud/
5928 F:      include/drm/gud.h
5929
5930 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5931 M:      Hans de Goede <hdegoede@redhat.com>
5932 S:      Maintained
5933 T:      git git://anongit.freedesktop.org/drm/drm-misc
5934 F:      drivers/gpu/drm/tiny/gm12u320.c
5935
5936 DRM DRIVER FOR HX8357D PANELS
5937 M:      Emma Anholt <emma@anholt.net>
5938 S:      Maintained
5939 T:      git git://anongit.freedesktop.org/drm/drm-misc
5940 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5941 F:      drivers/gpu/drm/tiny/hx8357d.c
5942
5943 DRM DRIVER FOR ILITEK ILI9225 PANELS
5944 M:      David Lechner <david@lechnology.com>
5945 S:      Maintained
5946 T:      git git://anongit.freedesktop.org/drm/drm-misc
5947 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5948 F:      drivers/gpu/drm/tiny/ili9225.c
5949
5950 DRM DRIVER FOR ILITEK ILI9486 PANELS
5951 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5952 S:      Maintained
5953 T:      git git://anongit.freedesktop.org/drm/drm-misc
5954 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5955 F:      drivers/gpu/drm/tiny/ili9486.c
5956
5957 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5958 S:      Orphan / Obsolete
5959 F:      drivers/gpu/drm/i810/
5960 F:      include/uapi/drm/i810_drm.h
5961
5962 DRM DRIVER FOR LVDS PANELS
5963 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5964 L:      dri-devel@lists.freedesktop.org
5965 T:      git git://anongit.freedesktop.org/drm/drm-misc
5966 S:      Maintained
5967 F:      drivers/gpu/drm/panel/panel-lvds.c
5968 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5969
5970 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5971 M:      Guido Günther <agx@sigxcpu.org>
5972 R:      Purism Kernel Team <kernel@puri.sm>
5973 S:      Maintained
5974 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5975 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5976
5977 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5978 S:      Orphan / Obsolete
5979 F:      drivers/gpu/drm/mga/
5980 F:      include/uapi/drm/mga_drm.h
5981
5982 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5983 M:      Dave Airlie <airlied@redhat.com>
5984 R:      Thomas Zimmermann <tzimmermann@suse.de>
5985 L:      dri-devel@lists.freedesktop.org
5986 S:      Supported
5987 T:      git git://anongit.freedesktop.org/drm/drm-misc
5988 F:      drivers/gpu/drm/mgag200/
5989
5990 DRM DRIVER FOR MI0283QT
5991 M:      Noralf Trønnes <noralf@tronnes.org>
5992 S:      Maintained
5993 T:      git git://anongit.freedesktop.org/drm/drm-misc
5994 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5995 F:      drivers/gpu/drm/tiny/mi0283qt.c
5996
5997 DRM DRIVER FOR MSM ADRENO GPU
5998 M:      Rob Clark <robdclark@gmail.com>
5999 M:      Sean Paul <sean@poorly.run>
6000 L:      linux-arm-msm@vger.kernel.org
6001 L:      dri-devel@lists.freedesktop.org
6002 L:      freedreno@lists.freedesktop.org
6003 S:      Maintained
6004 T:      git https://gitlab.freedesktop.org/drm/msm.git
6005 F:      Documentation/devicetree/bindings/display/msm/
6006 F:      drivers/gpu/drm/msm/
6007 F:      include/uapi/drm/msm_drm.h
6008
6009 DRM DRIVER FOR NOVATEK NT35510 PANELS
6010 M:      Linus Walleij <linus.walleij@linaro.org>
6011 S:      Maintained
6012 T:      git git://anongit.freedesktop.org/drm/drm-misc
6013 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6014 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6015
6016 DRM DRIVER FOR NOVATEK NT36672A PANELS
6017 M:      Sumit Semwal <sumit.semwal@linaro.org>
6018 S:      Maintained
6019 T:      git git://anongit.freedesktop.org/drm/drm-misc
6020 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6021 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6022
6023 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6024 M:      Ben Skeggs <bskeggs@redhat.com>
6025 L:      dri-devel@lists.freedesktop.org
6026 L:      nouveau@lists.freedesktop.org
6027 S:      Supported
6028 T:      git git://github.com/skeggsb/linux
6029 F:      drivers/gpu/drm/nouveau/
6030 F:      include/uapi/drm/nouveau_drm.h
6031
6032 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6033 M:      Stefan Mavrodiev <stefan@olimex.com>
6034 S:      Maintained
6035 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6036 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6037
6038 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6039 M:      Noralf Trønnes <noralf@tronnes.org>
6040 S:      Maintained
6041 T:      git git://anongit.freedesktop.org/drm/drm-misc
6042 F:      Documentation/devicetree/bindings/display/repaper.txt
6043 F:      drivers/gpu/drm/tiny/repaper.c
6044
6045 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6046 M:      Dave Airlie <airlied@redhat.com>
6047 M:      Gerd Hoffmann <kraxel@redhat.com>
6048 L:      virtualization@lists.linux-foundation.org
6049 S:      Obsolete
6050 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6051 T:      git git://anongit.freedesktop.org/drm/drm-misc
6052 F:      drivers/gpu/drm/tiny/cirrus.c
6053
6054 DRM DRIVER FOR QXL VIRTUAL GPU
6055 M:      Dave Airlie <airlied@redhat.com>
6056 M:      Gerd Hoffmann <kraxel@redhat.com>
6057 L:      virtualization@lists.linux-foundation.org
6058 L:      spice-devel@lists.freedesktop.org
6059 S:      Maintained
6060 T:      git git://anongit.freedesktop.org/drm/drm-misc
6061 F:      drivers/gpu/drm/qxl/
6062 F:      include/uapi/drm/qxl_drm.h
6063
6064 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6065 S:      Orphan / Obsolete
6066 F:      drivers/gpu/drm/r128/
6067 F:      include/uapi/drm/r128_drm.h
6068
6069 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6070 M:      Robert Chiras <robert.chiras@nxp.com>
6071 S:      Maintained
6072 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6073 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6074
6075 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6076 M:      Linus Walleij <linus.walleij@linaro.org>
6077 S:      Maintained
6078 T:      git git://anongit.freedesktop.org/drm/drm-misc
6079 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6080 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6081
6082 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6083 M:      Markuss Broks <markuss.broks@gmail.com>
6084 S:      Maintained
6085 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6086 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6087
6088 DRM DRIVER FOR SITRONIX ST7703 PANELS
6089 M:      Guido Günther <agx@sigxcpu.org>
6090 R:      Purism Kernel Team <kernel@puri.sm>
6091 R:      Ondrej Jirman <megous@megous.com>
6092 S:      Maintained
6093 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6094 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6095
6096 DRM DRIVER FOR SAVAGE VIDEO CARDS
6097 S:      Orphan / Obsolete
6098 F:      drivers/gpu/drm/savage/
6099 F:      include/uapi/drm/savage_drm.h
6100
6101 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6102 M:      Thomas Zimmermann <tzimmermann@suse.de>
6103 L:      dri-devel@lists.freedesktop.org
6104 S:      Maintained
6105 T:      git git://anongit.freedesktop.org/drm/drm-misc
6106 F:      drivers/gpu/drm/tiny/simpledrm.c
6107
6108 DRM DRIVER FOR SIS VIDEO CARDS
6109 S:      Orphan / Obsolete
6110 F:      drivers/gpu/drm/sis/
6111 F:      include/uapi/drm/sis_drm.h
6112
6113 DRM DRIVER FOR SITRONIX ST7586 PANELS
6114 M:      David Lechner <david@lechnology.com>
6115 S:      Maintained
6116 T:      git git://anongit.freedesktop.org/drm/drm-misc
6117 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6118 F:      drivers/gpu/drm/tiny/st7586.c
6119
6120 DRM DRIVER FOR SITRONIX ST7701 PANELS
6121 M:      Jagan Teki <jagan@amarulasolutions.com>
6122 S:      Maintained
6123 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6124 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6125
6126 DRM DRIVER FOR SITRONIX ST7735R PANELS
6127 M:      David Lechner <david@lechnology.com>
6128 S:      Maintained
6129 T:      git git://anongit.freedesktop.org/drm/drm-misc
6130 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6131 F:      drivers/gpu/drm/tiny/st7735r.c
6132
6133 DRM DRIVER FOR SONY ACX424AKP PANELS
6134 M:      Linus Walleij <linus.walleij@linaro.org>
6135 S:      Maintained
6136 T:      git git://anongit.freedesktop.org/drm/drm-misc
6137 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
6138
6139 DRM DRIVER FOR ST-ERICSSON MCDE
6140 M:      Linus Walleij <linus.walleij@linaro.org>
6141 S:      Maintained
6142 T:      git git://anongit.freedesktop.org/drm/drm-misc
6143 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6144 F:      drivers/gpu/drm/mcde/
6145
6146 DRM DRIVER FOR TDFX VIDEO CARDS
6147 S:      Orphan / Obsolete
6148 F:      drivers/gpu/drm/tdfx/
6149
6150 DRM DRIVER FOR TPO TPG110 PANELS
6151 M:      Linus Walleij <linus.walleij@linaro.org>
6152 S:      Maintained
6153 T:      git git://anongit.freedesktop.org/drm/drm-misc
6154 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6155 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6156
6157 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6158 M:      Dave Airlie <airlied@redhat.com>
6159 R:      Sean Paul <sean@poorly.run>
6160 R:      Thomas Zimmermann <tzimmermann@suse.de>
6161 L:      dri-devel@lists.freedesktop.org
6162 S:      Supported
6163 T:      git git://anongit.freedesktop.org/drm/drm-misc
6164 F:      drivers/gpu/drm/udl/
6165
6166 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6167 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6168 M:      Melissa Wen <melissa.srw@gmail.com>
6169 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6170 R:      Daniel Vetter <daniel@ffwll.ch>
6171 L:      dri-devel@lists.freedesktop.org
6172 S:      Maintained
6173 T:      git git://anongit.freedesktop.org/drm/drm-misc
6174 F:      Documentation/gpu/vkms.rst
6175 F:      drivers/gpu/drm/vkms/
6176
6177 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6178 M:      Hans de Goede <hdegoede@redhat.com>
6179 L:      dri-devel@lists.freedesktop.org
6180 S:      Maintained
6181 T:      git git://anongit.freedesktop.org/drm/drm-misc
6182 F:      drivers/gpu/drm/vboxvideo/
6183
6184 DRM DRIVER FOR VMWARE VIRTUAL GPU
6185 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
6186 M:      Zack Rusin <zackr@vmware.com>
6187 L:      dri-devel@lists.freedesktop.org
6188 S:      Supported
6189 T:      git git://anongit.freedesktop.org/drm/drm-misc
6190 F:      drivers/gpu/drm/vmwgfx/
6191 F:      include/uapi/drm/vmwgfx_drm.h
6192
6193 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6194 M:      Linus Walleij <linus.walleij@linaro.org>
6195 S:      Maintained
6196 T:      git git://anongit.freedesktop.org/drm/drm-misc
6197 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6198 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6199
6200 DRM DRIVERS
6201 M:      David Airlie <airlied@linux.ie>
6202 M:      Daniel Vetter <daniel@ffwll.ch>
6203 L:      dri-devel@lists.freedesktop.org
6204 S:      Maintained
6205 B:      https://gitlab.freedesktop.org/drm
6206 C:      irc://irc.oftc.net/dri-devel
6207 T:      git git://anongit.freedesktop.org/drm/drm
6208 F:      Documentation/devicetree/bindings/display/
6209 F:      Documentation/devicetree/bindings/gpu/
6210 F:      Documentation/gpu/
6211 F:      drivers/gpu/
6212 F:      include/drm/
6213 F:      include/linux/vga*
6214 F:      include/uapi/drm/
6215
6216 DRM DRIVERS AND MISC GPU PATCHES
6217 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6218 M:      Maxime Ripard <mripard@kernel.org>
6219 M:      Thomas Zimmermann <tzimmermann@suse.de>
6220 S:      Maintained
6221 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6222 T:      git git://anongit.freedesktop.org/drm/drm-misc
6223 F:      Documentation/gpu/
6224 F:      drivers/gpu/drm/*
6225 F:      drivers/gpu/vga/
6226 F:      include/drm/drm*
6227 F:      include/linux/vga*
6228 F:      include/uapi/drm/drm*
6229
6230 DRM DRIVERS FOR ALLWINNER A10
6231 M:      Maxime Ripard <mripard@kernel.org>
6232 M:      Chen-Yu Tsai <wens@csie.org>
6233 L:      dri-devel@lists.freedesktop.org
6234 S:      Supported
6235 T:      git git://anongit.freedesktop.org/drm/drm-misc
6236 F:      Documentation/devicetree/bindings/display/allwinner*
6237 F:      drivers/gpu/drm/sun4i/
6238
6239 DRM DRIVERS FOR AMLOGIC SOCS
6240 M:      Neil Armstrong <narmstrong@baylibre.com>
6241 L:      dri-devel@lists.freedesktop.org
6242 L:      linux-amlogic@lists.infradead.org
6243 S:      Supported
6244 W:      http://linux-meson.com/
6245 T:      git git://anongit.freedesktop.org/drm/drm-misc
6246 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6247 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6248 F:      Documentation/gpu/meson.rst
6249 F:      drivers/gpu/drm/meson/
6250
6251 DRM DRIVERS FOR ATMEL HLCDC
6252 M:      Sam Ravnborg <sam@ravnborg.org>
6253 M:      Boris Brezillon <bbrezillon@kernel.org>
6254 L:      dri-devel@lists.freedesktop.org
6255 S:      Supported
6256 T:      git git://anongit.freedesktop.org/drm/drm-misc
6257 F:      Documentation/devicetree/bindings/display/atmel/
6258 F:      drivers/gpu/drm/atmel-hlcdc/
6259
6260 DRM DRIVERS FOR BRIDGE CHIPS
6261 M:      Andrzej Hajda <a.hajda@samsung.com>
6262 M:      Neil Armstrong <narmstrong@baylibre.com>
6263 M:      Robert Foss <robert.foss@linaro.org>
6264 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6265 R:      Jonas Karlman <jonas@kwiboo.se>
6266 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6267 S:      Maintained
6268 T:      git git://anongit.freedesktop.org/drm/drm-misc
6269 F:      drivers/gpu/drm/bridge/
6270
6271 DRM DRIVERS FOR EXYNOS
6272 M:      Inki Dae <inki.dae@samsung.com>
6273 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6274 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6275 M:      Kyungmin Park <kyungmin.park@samsung.com>
6276 L:      dri-devel@lists.freedesktop.org
6277 S:      Supported
6278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6279 F:      Documentation/devicetree/bindings/display/exynos/
6280 F:      drivers/gpu/drm/exynos/
6281 F:      include/uapi/drm/exynos_drm.h
6282
6283 DRM DRIVERS FOR FREESCALE DCU
6284 M:      Stefan Agner <stefan@agner.ch>
6285 M:      Alison Wang <alison.wang@nxp.com>
6286 L:      dri-devel@lists.freedesktop.org
6287 S:      Supported
6288 T:      git git://anongit.freedesktop.org/drm/drm-misc
6289 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6290 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6291 F:      drivers/gpu/drm/fsl-dcu/
6292
6293 DRM DRIVERS FOR FREESCALE IMX
6294 M:      Philipp Zabel <p.zabel@pengutronix.de>
6295 L:      dri-devel@lists.freedesktop.org
6296 S:      Maintained
6297 F:      Documentation/devicetree/bindings/display/imx/
6298 F:      drivers/gpu/drm/imx/
6299 F:      drivers/gpu/ipu-v3/
6300
6301 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6302 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6303 L:      dri-devel@lists.freedesktop.org
6304 S:      Maintained
6305 T:      git git://github.com/patjak/drm-gma500
6306 F:      drivers/gpu/drm/gma500/
6307
6308 DRM DRIVERS FOR HISILICON
6309 M:      Xinliang Liu <xinliang.liu@linaro.org>
6310 M:      Tian Tao  <tiantao6@hisilicon.com>
6311 R:      John Stultz <john.stultz@linaro.org>
6312 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6313 R:      Chen Feng <puck.chen@hisilicon.com>
6314 L:      dri-devel@lists.freedesktop.org
6315 S:      Maintained
6316 T:      git git://anongit.freedesktop.org/drm/drm-misc
6317 F:      Documentation/devicetree/bindings/display/hisilicon/
6318 F:      drivers/gpu/drm/hisilicon/
6319
6320 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6321 M:      Deepak Rawat <drawat.floss@gmail.com>
6322 L:      linux-hyperv@vger.kernel.org
6323 L:      dri-devel@lists.freedesktop.org
6324 S:      Maintained
6325 T:      git git://anongit.freedesktop.org/drm/drm-misc
6326 F:      drivers/gpu/drm/hyperv
6327
6328 DRM DRIVERS FOR LIMA
6329 M:      Qiang Yu <yuq825@gmail.com>
6330 L:      dri-devel@lists.freedesktop.org
6331 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6332 S:      Maintained
6333 T:      git git://anongit.freedesktop.org/drm/drm-misc
6334 F:      drivers/gpu/drm/lima/
6335 F:      include/uapi/drm/lima_drm.h
6336
6337 DRM DRIVERS FOR MEDIATEK
6338 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6339 M:      Philipp Zabel <p.zabel@pengutronix.de>
6340 L:      dri-devel@lists.freedesktop.org
6341 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6342 S:      Supported
6343 F:      Documentation/devicetree/bindings/display/mediatek/
6344 F:      drivers/gpu/drm/mediatek/
6345 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6346 F:      drivers/phy/mediatek/phy-mtk-mipi*
6347
6348 DRM DRIVERS FOR NVIDIA TEGRA
6349 M:      Thierry Reding <thierry.reding@gmail.com>
6350 L:      dri-devel@lists.freedesktop.org
6351 L:      linux-tegra@vger.kernel.org
6352 S:      Supported
6353 T:      git git://anongit.freedesktop.org/tegra/linux.git
6354 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6355 F:      Documentation/devicetree/bindings/gpu/host1x/
6356 F:      drivers/gpu/drm/tegra/
6357 F:      drivers/gpu/host1x/
6358 F:      include/linux/host1x.h
6359 F:      include/uapi/drm/tegra_drm.h
6360
6361 DRM DRIVERS FOR RENESAS
6362 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6363 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6364 L:      dri-devel@lists.freedesktop.org
6365 L:      linux-renesas-soc@vger.kernel.org
6366 S:      Supported
6367 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6368 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6369 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6370 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6371 F:      drivers/gpu/drm/rcar-du/
6372 F:      drivers/gpu/drm/shmobile/
6373 F:      include/linux/platform_data/shmob_drm.h
6374
6375 DRM DRIVERS FOR ROCKCHIP
6376 M:      Sandy Huang <hjc@rock-chips.com>
6377 M:      Heiko Stübner <heiko@sntech.de>
6378 L:      dri-devel@lists.freedesktop.org
6379 S:      Maintained
6380 T:      git git://anongit.freedesktop.org/drm/drm-misc
6381 F:      Documentation/devicetree/bindings/display/rockchip/
6382 F:      drivers/gpu/drm/rockchip/
6383
6384 DRM DRIVERS FOR STI
6385 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6386 L:      dri-devel@lists.freedesktop.org
6387 S:      Maintained
6388 T:      git git://anongit.freedesktop.org/drm/drm-misc
6389 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6390 F:      drivers/gpu/drm/sti
6391
6392 DRM DRIVERS FOR STM
6393 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6394 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6395 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6396 L:      dri-devel@lists.freedesktop.org
6397 S:      Maintained
6398 T:      git git://anongit.freedesktop.org/drm/drm-misc
6399 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6400 F:      drivers/gpu/drm/stm
6401
6402 DRM DRIVERS FOR TI KEYSTONE
6403 M:      Jyri Sarha <jyri.sarha@iki.fi>
6404 M:      Tomi Valkeinen <tomba@kernel.org>
6405 L:      dri-devel@lists.freedesktop.org
6406 S:      Maintained
6407 T:      git git://anongit.freedesktop.org/drm/drm-misc
6408 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6409 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6410 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6411 F:      drivers/gpu/drm/tidss/
6412
6413 DRM DRIVERS FOR TI LCDC
6414 M:      Jyri Sarha <jyri.sarha@iki.fi>
6415 R:      Tomi Valkeinen <tomba@kernel.org>
6416 L:      dri-devel@lists.freedesktop.org
6417 S:      Maintained
6418 F:      Documentation/devicetree/bindings/display/tilcdc/
6419 F:      drivers/gpu/drm/tilcdc/
6420
6421 DRM DRIVERS FOR TI OMAP
6422 M:      Tomi Valkeinen <tomba@kernel.org>
6423 L:      dri-devel@lists.freedesktop.org
6424 S:      Maintained
6425 F:      Documentation/devicetree/bindings/display/ti/
6426 F:      drivers/gpu/drm/omapdrm/
6427
6428 DRM DRIVERS FOR V3D
6429 M:      Emma Anholt <emma@anholt.net>
6430 S:      Supported
6431 T:      git git://anongit.freedesktop.org/drm/drm-misc
6432 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6433 F:      drivers/gpu/drm/v3d/
6434 F:      include/uapi/drm/v3d_drm.h
6435
6436 DRM DRIVERS FOR VC4
6437 M:      Emma Anholt <emma@anholt.net>
6438 M:      Maxime Ripard <mripard@kernel.org>
6439 S:      Supported
6440 T:      git git://github.com/anholt/linux
6441 T:      git git://anongit.freedesktop.org/drm/drm-misc
6442 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6443 F:      drivers/gpu/drm/vc4/
6444 F:      include/uapi/drm/vc4_drm.h
6445
6446 DRM DRIVERS FOR VIVANTE GPU IP
6447 M:      Lucas Stach <l.stach@pengutronix.de>
6448 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6449 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6450 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6451 L:      dri-devel@lists.freedesktop.org
6452 S:      Maintained
6453 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6454 F:      drivers/gpu/drm/etnaviv/
6455 F:      include/uapi/drm/etnaviv_drm.h
6456
6457 DRM DRIVERS FOR XEN
6458 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6459 L:      dri-devel@lists.freedesktop.org
6460 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6461 S:      Supported
6462 T:      git git://anongit.freedesktop.org/drm/drm-misc
6463 F:      Documentation/gpu/xen-front.rst
6464 F:      drivers/gpu/drm/xen/
6465
6466 DRM DRIVERS FOR XILINX
6467 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6468 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6469 L:      dri-devel@lists.freedesktop.org
6470 S:      Maintained
6471 T:      git git://anongit.freedesktop.org/drm/drm-misc
6472 F:      Documentation/devicetree/bindings/display/xlnx/
6473 F:      drivers/gpu/drm/xlnx/
6474
6475 DRM PANEL DRIVERS
6476 M:      Thierry Reding <thierry.reding@gmail.com>
6477 R:      Sam Ravnborg <sam@ravnborg.org>
6478 L:      dri-devel@lists.freedesktop.org
6479 S:      Maintained
6480 T:      git git://anongit.freedesktop.org/drm/drm-misc
6481 F:      Documentation/devicetree/bindings/display/panel/
6482 F:      drivers/gpu/drm/drm_panel.c
6483 F:      drivers/gpu/drm/panel/
6484 F:      include/drm/drm_panel.h
6485
6486 DRM TTM SUBSYSTEM
6487 M:      Christian Koenig <christian.koenig@amd.com>
6488 M:      Huang Rui <ray.huang@amd.com>
6489 L:      dri-devel@lists.freedesktop.org
6490 S:      Maintained
6491 T:      git git://anongit.freedesktop.org/drm/drm-misc
6492 F:      drivers/gpu/drm/ttm/
6493 F:      include/drm/ttm/
6494
6495 DRM GPU SCHEDULER
6496 M:      Andrey Grodzovsky <andrey.grodzovsky@amd.com>
6497 L:      dri-devel@lists.freedesktop.org
6498 S:      Maintained
6499 T:      git git://anongit.freedesktop.org/drm/drm-misc
6500 F:      drivers/gpu/drm/scheduler/
6501 F:      include/drm/gpu_scheduler.h
6502
6503 DSBR100 USB FM RADIO DRIVER
6504 M:      Alexey Klimov <klimov.linux@gmail.com>
6505 L:      linux-media@vger.kernel.org
6506 S:      Maintained
6507 T:      git git://linuxtv.org/media_tree.git
6508 F:      drivers/media/radio/dsbr100.c
6509
6510 DT3155 MEDIA DRIVER
6511 M:      Hans Verkuil <hverkuil@xs4all.nl>
6512 L:      linux-media@vger.kernel.org
6513 S:      Odd Fixes
6514 W:      https://linuxtv.org
6515 T:      git git://linuxtv.org/media_tree.git
6516 F:      drivers/media/pci/dt3155/
6517
6518 DVB_USB_AF9015 MEDIA DRIVER
6519 M:      Antti Palosaari <crope@iki.fi>
6520 L:      linux-media@vger.kernel.org
6521 S:      Maintained
6522 W:      https://linuxtv.org
6523 W:      http://palosaari.fi/linux/
6524 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6525 T:      git git://linuxtv.org/anttip/media_tree.git
6526 F:      drivers/media/usb/dvb-usb-v2/af9015*
6527
6528 DVB_USB_AF9035 MEDIA DRIVER
6529 M:      Antti Palosaari <crope@iki.fi>
6530 L:      linux-media@vger.kernel.org
6531 S:      Maintained
6532 W:      https://linuxtv.org
6533 W:      http://palosaari.fi/linux/
6534 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6535 T:      git git://linuxtv.org/anttip/media_tree.git
6536 F:      drivers/media/usb/dvb-usb-v2/af9035*
6537
6538 DVB_USB_ANYSEE MEDIA DRIVER
6539 M:      Antti Palosaari <crope@iki.fi>
6540 L:      linux-media@vger.kernel.org
6541 S:      Maintained
6542 W:      https://linuxtv.org
6543 W:      http://palosaari.fi/linux/
6544 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6545 T:      git git://linuxtv.org/anttip/media_tree.git
6546 F:      drivers/media/usb/dvb-usb-v2/anysee*
6547
6548 DVB_USB_AU6610 MEDIA DRIVER
6549 M:      Antti Palosaari <crope@iki.fi>
6550 L:      linux-media@vger.kernel.org
6551 S:      Maintained
6552 W:      https://linuxtv.org
6553 W:      http://palosaari.fi/linux/
6554 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6555 T:      git git://linuxtv.org/anttip/media_tree.git
6556 F:      drivers/media/usb/dvb-usb-v2/au6610*
6557
6558 DVB_USB_CE6230 MEDIA DRIVER
6559 M:      Antti Palosaari <crope@iki.fi>
6560 L:      linux-media@vger.kernel.org
6561 S:      Maintained
6562 W:      https://linuxtv.org
6563 W:      http://palosaari.fi/linux/
6564 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6565 T:      git git://linuxtv.org/anttip/media_tree.git
6566 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6567
6568 DVB_USB_CXUSB MEDIA DRIVER
6569 M:      Michael Krufky <mkrufky@linuxtv.org>
6570 L:      linux-media@vger.kernel.org
6571 S:      Maintained
6572 W:      https://linuxtv.org
6573 W:      http://github.com/mkrufky
6574 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6575 T:      git git://linuxtv.org/media_tree.git
6576 F:      drivers/media/usb/dvb-usb/cxusb*
6577
6578 DVB_USB_EC168 MEDIA DRIVER
6579 M:      Antti Palosaari <crope@iki.fi>
6580 L:      linux-media@vger.kernel.org
6581 S:      Maintained
6582 W:      https://linuxtv.org
6583 W:      http://palosaari.fi/linux/
6584 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6585 T:      git git://linuxtv.org/anttip/media_tree.git
6586 F:      drivers/media/usb/dvb-usb-v2/ec168*
6587
6588 DVB_USB_GL861 MEDIA DRIVER
6589 M:      Antti Palosaari <crope@iki.fi>
6590 L:      linux-media@vger.kernel.org
6591 S:      Maintained
6592 W:      https://linuxtv.org
6593 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6594 T:      git git://linuxtv.org/anttip/media_tree.git
6595 F:      drivers/media/usb/dvb-usb-v2/gl861*
6596
6597 DVB_USB_MXL111SF MEDIA DRIVER
6598 M:      Michael Krufky <mkrufky@linuxtv.org>
6599 L:      linux-media@vger.kernel.org
6600 S:      Maintained
6601 W:      https://linuxtv.org
6602 W:      http://github.com/mkrufky
6603 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6604 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6605 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6606
6607 DVB_USB_RTL28XXU MEDIA DRIVER
6608 M:      Antti Palosaari <crope@iki.fi>
6609 L:      linux-media@vger.kernel.org
6610 S:      Maintained
6611 W:      https://linuxtv.org
6612 W:      http://palosaari.fi/linux/
6613 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6614 T:      git git://linuxtv.org/anttip/media_tree.git
6615 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6616
6617 DVB_USB_V2 MEDIA DRIVER
6618 M:      Antti Palosaari <crope@iki.fi>
6619 L:      linux-media@vger.kernel.org
6620 S:      Maintained
6621 W:      https://linuxtv.org
6622 W:      http://palosaari.fi/linux/
6623 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6624 T:      git git://linuxtv.org/anttip/media_tree.git
6625 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6626 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6627
6628 DYNAMIC DEBUG
6629 M:      Jason Baron <jbaron@akamai.com>
6630 S:      Maintained
6631 F:      include/linux/dynamic_debug.h
6632 F:      lib/dynamic_debug.c
6633
6634 DYNAMIC INTERRUPT MODERATION
6635 M:      Tal Gilboa <talgi@nvidia.com>
6636 S:      Maintained
6637 F:      Documentation/networking/net_dim.rst
6638 F:      include/linux/dim.h
6639 F:      lib/dim/
6640
6641 DZ DECSTATION DZ11 SERIAL DRIVER
6642 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6643 S:      Maintained
6644 F:      drivers/tty/serial/dz.*
6645
6646 E3X0 POWER BUTTON DRIVER
6647 M:      Moritz Fischer <moritz.fischer@ettus.com>
6648 L:      usrp-users@lists.ettus.com
6649 S:      Supported
6650 W:      http://www.ettus.com
6651 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6652 F:      drivers/input/misc/e3x0-button.c
6653
6654 E4000 MEDIA DRIVER
6655 M:      Antti Palosaari <crope@iki.fi>
6656 L:      linux-media@vger.kernel.org
6657 S:      Maintained
6658 W:      https://linuxtv.org
6659 W:      http://palosaari.fi/linux/
6660 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6661 T:      git git://linuxtv.org/anttip/media_tree.git
6662 F:      drivers/media/tuners/e4000*
6663
6664 EARTH_PT1 MEDIA DRIVER
6665 M:      Akihiro Tsukada <tskd08@gmail.com>
6666 L:      linux-media@vger.kernel.org
6667 S:      Odd Fixes
6668 F:      drivers/media/pci/pt1/
6669
6670 EARTH_PT3 MEDIA DRIVER
6671 M:      Akihiro Tsukada <tskd08@gmail.com>
6672 L:      linux-media@vger.kernel.org
6673 S:      Odd Fixes
6674 F:      drivers/media/pci/pt3/
6675
6676 EC100 MEDIA DRIVER
6677 M:      Antti Palosaari <crope@iki.fi>
6678 L:      linux-media@vger.kernel.org
6679 S:      Maintained
6680 W:      https://linuxtv.org
6681 W:      http://palosaari.fi/linux/
6682 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6683 T:      git git://linuxtv.org/anttip/media_tree.git
6684 F:      drivers/media/dvb-frontends/ec100*
6685
6686 ECRYPT FILE SYSTEM
6687 M:      Tyler Hicks <code@tyhicks.com>
6688 L:      ecryptfs@vger.kernel.org
6689 S:      Odd Fixes
6690 W:      http://ecryptfs.org
6691 W:      https://launchpad.net/ecryptfs
6692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6693 F:      Documentation/filesystems/ecryptfs.rst
6694 F:      fs/ecryptfs/
6695
6696 EDAC-AMD64
6697 M:      Yazen Ghannam <yazen.ghannam@amd.com>
6698 L:      linux-edac@vger.kernel.org
6699 S:      Supported
6700 F:      drivers/edac/amd64_edac*
6701 F:      drivers/edac/mce_amd*
6702
6703 EDAC-ARMADA
6704 M:      Jan Luebbe <jlu@pengutronix.de>
6705 L:      linux-edac@vger.kernel.org
6706 S:      Maintained
6707 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
6708 F:      drivers/edac/armada_xp_*
6709
6710 EDAC-AST2500
6711 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6712 S:      Supported
6713 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6714 F:      drivers/edac/aspeed_edac.c
6715
6716 EDAC-BLUEFIELD
6717 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6718 S:      Supported
6719 F:      drivers/edac/bluefield_edac.c
6720
6721 EDAC-CALXEDA
6722 M:      Andre Przywara <andre.przywara@arm.com>
6723 L:      linux-edac@vger.kernel.org
6724 S:      Maintained
6725 F:      drivers/edac/highbank*
6726
6727 EDAC-CAVIUM OCTEON
6728 M:      Ralf Baechle <ralf@linux-mips.org>
6729 L:      linux-edac@vger.kernel.org
6730 L:      linux-mips@vger.kernel.org
6731 S:      Supported
6732 F:      drivers/edac/octeon_edac*
6733
6734 EDAC-CAVIUM THUNDERX
6735 M:      Robert Richter <rric@kernel.org>
6736 L:      linux-edac@vger.kernel.org
6737 S:      Odd Fixes
6738 F:      drivers/edac/thunderx_edac*
6739
6740 EDAC-CORE
6741 M:      Borislav Petkov <bp@alien8.de>
6742 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6743 M:      Tony Luck <tony.luck@intel.com>
6744 R:      James Morse <james.morse@arm.com>
6745 R:      Robert Richter <rric@kernel.org>
6746 L:      linux-edac@vger.kernel.org
6747 S:      Supported
6748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6749 F:      Documentation/admin-guide/ras.rst
6750 F:      Documentation/driver-api/edac.rst
6751 F:      drivers/edac/
6752 F:      include/linux/edac.h
6753
6754 EDAC-DMC520
6755 M:      Lei Wang <lewan@microsoft.com>
6756 L:      linux-edac@vger.kernel.org
6757 S:      Supported
6758 F:      drivers/edac/dmc520_edac.c
6759
6760 EDAC-E752X
6761 M:      Mark Gross <markgross@kernel.org>
6762 L:      linux-edac@vger.kernel.org
6763 S:      Maintained
6764 F:      drivers/edac/e752x_edac.c
6765
6766 EDAC-E7XXX
6767 L:      linux-edac@vger.kernel.org
6768 S:      Maintained
6769 F:      drivers/edac/e7xxx_edac.c
6770
6771 EDAC-FSL_DDR
6772 M:      York Sun <york.sun@nxp.com>
6773 L:      linux-edac@vger.kernel.org
6774 S:      Maintained
6775 F:      drivers/edac/fsl_ddr_edac.*
6776
6777 EDAC-GHES
6778 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6779 L:      linux-edac@vger.kernel.org
6780 S:      Maintained
6781 F:      drivers/edac/ghes_edac.c
6782
6783 EDAC-I10NM
6784 M:      Tony Luck <tony.luck@intel.com>
6785 L:      linux-edac@vger.kernel.org
6786 S:      Maintained
6787 F:      drivers/edac/i10nm_base.c
6788
6789 EDAC-I3000
6790 L:      linux-edac@vger.kernel.org
6791 S:      Orphan
6792 F:      drivers/edac/i3000_edac.c
6793
6794 EDAC-I5000
6795 L:      linux-edac@vger.kernel.org
6796 S:      Maintained
6797 F:      drivers/edac/i5000_edac.c
6798
6799 EDAC-I5400
6800 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6801 L:      linux-edac@vger.kernel.org
6802 S:      Maintained
6803 F:      drivers/edac/i5400_edac.c
6804
6805 EDAC-I7300
6806 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6807 L:      linux-edac@vger.kernel.org
6808 S:      Maintained
6809 F:      drivers/edac/i7300_edac.c
6810
6811 EDAC-I7CORE
6812 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6813 L:      linux-edac@vger.kernel.org
6814 S:      Maintained
6815 F:      drivers/edac/i7core_edac.c
6816
6817 EDAC-I82443BXGX
6818 M:      Tim Small <tim@buttersideup.com>
6819 L:      linux-edac@vger.kernel.org
6820 S:      Maintained
6821 F:      drivers/edac/i82443bxgx_edac.c
6822
6823 EDAC-I82975X
6824 M:      "Arvind R." <arvino55@gmail.com>
6825 L:      linux-edac@vger.kernel.org
6826 S:      Maintained
6827 F:      drivers/edac/i82975x_edac.c
6828
6829 EDAC-IE31200
6830 M:      Jason Baron <jbaron@akamai.com>
6831 L:      linux-edac@vger.kernel.org
6832 S:      Maintained
6833 F:      drivers/edac/ie31200_edac.c
6834
6835 EDAC-IGEN6
6836 M:      Tony Luck <tony.luck@intel.com>
6837 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6838 L:      linux-edac@vger.kernel.org
6839 S:      Maintained
6840 F:      drivers/edac/igen6_edac.c
6841
6842 EDAC-MPC85XX
6843 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6844 L:      linux-edac@vger.kernel.org
6845 S:      Maintained
6846 F:      drivers/edac/mpc85xx_edac.[ch]
6847
6848 EDAC-PASEMI
6849 M:      Egor Martovetsky <egor@pasemi.com>
6850 L:      linux-edac@vger.kernel.org
6851 S:      Maintained
6852 F:      drivers/edac/pasemi_edac.c
6853
6854 EDAC-PND2
6855 M:      Tony Luck <tony.luck@intel.com>
6856 L:      linux-edac@vger.kernel.org
6857 S:      Maintained
6858 F:      drivers/edac/pnd2_edac.[ch]
6859
6860 EDAC-QCOM
6861 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6862 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6863 L:      linux-arm-msm@vger.kernel.org
6864 L:      linux-edac@vger.kernel.org
6865 S:      Maintained
6866 F:      drivers/edac/qcom_edac.c
6867
6868 EDAC-R82600
6869 M:      Tim Small <tim@buttersideup.com>
6870 L:      linux-edac@vger.kernel.org
6871 S:      Maintained
6872 F:      drivers/edac/r82600_edac.c
6873
6874 EDAC-SBRIDGE
6875 M:      Tony Luck <tony.luck@intel.com>
6876 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6877 L:      linux-edac@vger.kernel.org
6878 S:      Maintained
6879 F:      drivers/edac/sb_edac.c
6880
6881 EDAC-SIFIVE
6882 M:      Yash Shah <yash.shah@sifive.com>
6883 L:      linux-edac@vger.kernel.org
6884 S:      Supported
6885 F:      drivers/edac/sifive_edac.c
6886
6887 EDAC-SKYLAKE
6888 M:      Tony Luck <tony.luck@intel.com>
6889 L:      linux-edac@vger.kernel.org
6890 S:      Maintained
6891 F:      drivers/edac/skx_*.[ch]
6892
6893 EDAC-TI
6894 M:      Tero Kristo <kristo@kernel.org>
6895 L:      linux-edac@vger.kernel.org
6896 S:      Odd Fixes
6897 F:      drivers/edac/ti_edac.c
6898
6899 EDIROL UA-101/UA-1000 DRIVER
6900 M:      Clemens Ladisch <clemens@ladisch.de>
6901 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6902 S:      Maintained
6903 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6904 F:      sound/usb/misc/ua101.c
6905
6906 EFI TEST DRIVER
6907 M:      Ivan Hu <ivan.hu@canonical.com>
6908 M:      Ard Biesheuvel <ardb@kernel.org>
6909 L:      linux-efi@vger.kernel.org
6910 S:      Maintained
6911 F:      drivers/firmware/efi/test/
6912
6913 EFI VARIABLE FILESYSTEM
6914 M:      Matthew Garrett <matthew.garrett@nebula.com>
6915 M:      Jeremy Kerr <jk@ozlabs.org>
6916 M:      Ard Biesheuvel <ardb@kernel.org>
6917 L:      linux-efi@vger.kernel.org
6918 S:      Maintained
6919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6920 F:      fs/efivarfs/
6921
6922 EFIFB FRAMEBUFFER DRIVER
6923 M:      Peter Jones <pjones@redhat.com>
6924 L:      linux-fbdev@vger.kernel.org
6925 S:      Maintained
6926 F:      drivers/video/fbdev/efifb.c
6927
6928 EFS FILESYSTEM
6929 S:      Orphan
6930 W:      http://aeschi.ch.eu.org/efs/
6931 F:      fs/efs/
6932
6933 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6934 M:      Douglas Miller <dougmill@linux.ibm.com>
6935 L:      netdev@vger.kernel.org
6936 S:      Maintained
6937 F:      drivers/net/ethernet/ibm/ehea/
6938
6939 EM28XX VIDEO4LINUX DRIVER
6940 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6941 L:      linux-media@vger.kernel.org
6942 S:      Maintained
6943 W:      https://linuxtv.org
6944 T:      git git://linuxtv.org/media_tree.git
6945 F:      Documentation/admin-guide/media/em28xx*
6946 F:      drivers/media/usb/em28xx/
6947
6948 EMBEDDED LINUX
6949 M:      Matt Mackall <mpm@selenic.com>
6950 M:      David Woodhouse <dwmw2@infradead.org>
6951 L:      linux-embedded@vger.kernel.org
6952 S:      Maintained
6953
6954 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6955 M:      Adrian Hunter <adrian.hunter@intel.com>
6956 M:      Ritesh Harjani <riteshh@codeaurora.org>
6957 M:      Asutosh Das <asutoshd@codeaurora.org>
6958 L:      linux-mmc@vger.kernel.org
6959 S:      Maintained
6960 F:      drivers/mmc/host/cqhci*
6961
6962 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6963 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6964 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6965 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6966 L:      linux-scsi@vger.kernel.org
6967 S:      Supported
6968 W:      http://www.broadcom.com
6969 F:      drivers/scsi/be2iscsi/
6970
6971 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6972 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6973 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6974 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6975 L:      netdev@vger.kernel.org
6976 S:      Supported
6977 W:      http://www.emulex.com
6978 F:      drivers/net/ethernet/emulex/benet/
6979
6980 EMULEX ONECONNECT ROCE DRIVER
6981 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6982 L:      linux-rdma@vger.kernel.org
6983 S:      Odd Fixes
6984 W:      http://www.broadcom.com
6985 F:      drivers/infiniband/hw/ocrdma/
6986 F:      include/uapi/rdma/ocrdma-abi.h
6987
6988 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6989 M:      James Smart <james.smart@broadcom.com>
6990 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6991 L:      linux-scsi@vger.kernel.org
6992 S:      Supported
6993 W:      http://www.broadcom.com
6994 F:      drivers/scsi/lpfc/
6995
6996 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
6997 M:      James Smart <james.smart@broadcom.com>
6998 M:      Ram Vegesna <ram.vegesna@broadcom.com>
6999 L:      linux-scsi@vger.kernel.org
7000 L:      target-devel@vger.kernel.org
7001 S:      Supported
7002 W:      http://www.broadcom.com
7003 F:      drivers/scsi/elx/
7004
7005 ENE CB710 FLASH CARD READER DRIVER
7006 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7007 S:      Maintained
7008 F:      drivers/misc/cb710/
7009 F:      drivers/mmc/host/cb710-mmc.*
7010 F:      include/linux/cb710.h
7011
7012 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7013 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7014 S:      Maintained
7015 F:      drivers/media/rc/ene_ir.*
7016
7017 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7018 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7019 L:      linuxppc-dev@lists.ozlabs.org
7020 S:      Maintained
7021 F:      drivers/tty/ehv_bytechan.c
7022
7023 EPSON S1D13XXX FRAMEBUFFER DRIVER
7024 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7025 S:      Maintained
7026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7027 F:      drivers/video/fbdev/s1d13xxxfb.c
7028 F:      include/video/s1d13xxxfb.h
7029
7030 EROFS FILE SYSTEM
7031 M:      Gao Xiang <xiang@kernel.org>
7032 M:      Chao Yu <chao@kernel.org>
7033 L:      linux-erofs@lists.ozlabs.org
7034 S:      Maintained
7035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7036 F:      Documentation/filesystems/erofs.rst
7037 F:      fs/erofs/
7038 F:      include/trace/events/erofs.h
7039
7040 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7041 M:      Jeff Layton <jlayton@kernel.org>
7042 S:      Maintained
7043 F:      include/linux/errseq.h
7044 F:      lib/errseq.c
7045
7046 ET131X NETWORK DRIVER
7047 M:      Mark Einon <mark.einon@gmail.com>
7048 S:      Odd Fixes
7049 F:      drivers/net/ethernet/agere/
7050
7051 ETAS ES58X CAN/USB DRIVER
7052 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7053 L:      linux-can@vger.kernel.org
7054 S:      Maintained
7055 F:      drivers/net/can/usb/etas_es58x/
7056
7057 ETHERNET BRIDGE
7058 M:      Roopa Prabhu <roopa@nvidia.com>
7059 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
7060 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7061 L:      netdev@vger.kernel.org
7062 S:      Maintained
7063 W:      http://www.linuxfoundation.org/en/Net:Bridge
7064 F:      include/linux/netfilter_bridge/
7065 F:      net/bridge/
7066
7067 ETHERNET PHY LIBRARY
7068 M:      Andrew Lunn <andrew@lunn.ch>
7069 M:      Heiner Kallweit <hkallweit1@gmail.com>
7070 R:      Russell King <linux@armlinux.org.uk>
7071 L:      netdev@vger.kernel.org
7072 S:      Maintained
7073 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7074 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7075 F:      Documentation/devicetree/bindings/net/mdio*
7076 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7077 F:      Documentation/networking/phy.rst
7078 F:      drivers/net/mdio/
7079 F:      drivers/net/mdio/acpi_mdio.c
7080 F:      drivers/net/mdio/fwnode_mdio.c
7081 F:      drivers/net/mdio/of_mdio.c
7082 F:      drivers/net/pcs/
7083 F:      drivers/net/phy/
7084 F:      include/dt-bindings/net/qca-ar803x.h
7085 F:      include/linux/*mdio*.h
7086 F:      include/linux/mdio/*.h
7087 F:      include/linux/of_net.h
7088 F:      include/linux/phy.h
7089 F:      include/linux/phy_fixed.h
7090 F:      include/linux/platform_data/mdio-bcm-unimac.h
7091 F:      include/linux/platform_data/mdio-gpio.h
7092 F:      include/trace/events/mdio.h
7093 F:      include/uapi/linux/mdio.h
7094 F:      include/uapi/linux/mii.h
7095 F:      net/core/of_net.c
7096
7097 EXFAT FILE SYSTEM
7098 M:      Namjae Jeon <linkinjeon@kernel.org>
7099 M:      Sungjong Seo <sj1557.seo@samsung.com>
7100 L:      linux-fsdevel@vger.kernel.org
7101 S:      Maintained
7102 F:      fs/exfat/
7103
7104 EXT2 FILE SYSTEM
7105 M:      Jan Kara <jack@suse.com>
7106 L:      linux-ext4@vger.kernel.org
7107 S:      Maintained
7108 F:      Documentation/filesystems/ext2.rst
7109 F:      fs/ext2/
7110 F:      include/linux/ext2*
7111
7112 EXT4 FILE SYSTEM
7113 M:      "Theodore Ts'o" <tytso@mit.edu>
7114 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7115 L:      linux-ext4@vger.kernel.org
7116 S:      Maintained
7117 W:      http://ext4.wiki.kernel.org
7118 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7120 F:      Documentation/filesystems/ext4/
7121 F:      fs/ext4/
7122 F:      include/trace/events/ext4.h
7123
7124 Extended Verification Module (EVM)
7125 M:      Mimi Zohar <zohar@linux.ibm.com>
7126 L:      linux-integrity@vger.kernel.org
7127 S:      Supported
7128 F:      security/integrity/evm/
7129
7130 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7131 M:      Ard Biesheuvel <ardb@kernel.org>
7132 L:      linux-efi@vger.kernel.org
7133 S:      Maintained
7134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7135 F:      Documentation/admin-guide/efi-stub.rst
7136 F:      arch/*/include/asm/efi.h
7137 F:      arch/*/kernel/efi.c
7138 F:      arch/arm/boot/compressed/efi-header.S
7139 F:      arch/arm64/kernel/efi-entry.S
7140 F:      arch/x86/platform/efi/
7141 F:      drivers/firmware/efi/
7142 F:      include/linux/efi*.h
7143
7144 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7145 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7146 M:      Chanwoo Choi <cw00.choi@samsung.com>
7147 L:      linux-kernel@vger.kernel.org
7148 S:      Maintained
7149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7150 F:      Documentation/devicetree/bindings/extcon/
7151 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7152 F:      drivers/extcon/
7153 F:      include/linux/extcon.h
7154 F:      include/linux/extcon/
7155
7156 EXTRA BOOT CONFIG
7157 M:      Masami Hiramatsu <mhiramat@kernel.org>
7158 S:      Maintained
7159 F:      Documentation/admin-guide/bootconfig.rst
7160 F:      fs/proc/bootconfig.c
7161 F:      include/linux/bootconfig.h
7162 F:      lib/bootconfig.c
7163 F:      tools/bootconfig/*
7164 F:      tools/bootconfig/scripts/*
7165
7166 EXYNOS DP DRIVER
7167 M:      Jingoo Han <jingoohan1@gmail.com>
7168 L:      dri-devel@lists.freedesktop.org
7169 S:      Maintained
7170 F:      drivers/gpu/drm/exynos/exynos_dp*
7171
7172 EXYNOS SYSMMU (IOMMU) driver
7173 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7174 L:      iommu@lists.linux-foundation.org
7175 S:      Maintained
7176 F:      drivers/iommu/exynos-iommu.c
7177
7178 F2FS FILE SYSTEM
7179 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7180 M:      Chao Yu <chao@kernel.org>
7181 L:      linux-f2fs-devel@lists.sourceforge.net
7182 S:      Maintained
7183 W:      https://f2fs.wiki.kernel.org/
7184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7185 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7186 F:      Documentation/filesystems/f2fs.rst
7187 F:      fs/f2fs/
7188 F:      include/linux/f2fs_fs.h
7189 F:      include/trace/events/f2fs.h
7190 F:      include/uapi/linux/f2fs.h
7191
7192 F71805F HARDWARE MONITORING DRIVER
7193 M:      Jean Delvare <jdelvare@suse.com>
7194 L:      linux-hwmon@vger.kernel.org
7195 S:      Maintained
7196 F:      Documentation/hwmon/f71805f.rst
7197 F:      drivers/hwmon/f71805f.c
7198
7199 FADDR2LINE
7200 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7201 S:      Maintained
7202 F:      scripts/faddr2line
7203
7204 FAILOVER MODULE
7205 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7206 L:      netdev@vger.kernel.org
7207 S:      Supported
7208 F:      Documentation/networking/failover.rst
7209 F:      include/net/failover.h
7210 F:      net/core/failover.c
7211
7212 FANOTIFY
7213 M:      Jan Kara <jack@suse.cz>
7214 R:      Amir Goldstein <amir73il@gmail.com>
7215 R:      Matthew Bobrowski <repnop@google.com>
7216 L:      linux-fsdevel@vger.kernel.org
7217 S:      Maintained
7218 F:      fs/notify/fanotify/
7219 F:      include/linux/fanotify.h
7220 F:      include/uapi/linux/fanotify.h
7221
7222 FARSYNC SYNCHRONOUS DRIVER
7223 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7224 S:      Supported
7225 W:      http://www.farsite.co.uk/
7226 F:      drivers/net/wan/farsync.*
7227
7228 FAULT INJECTION SUPPORT
7229 M:      Akinobu Mita <akinobu.mita@gmail.com>
7230 S:      Supported
7231 F:      Documentation/fault-injection/
7232 F:      lib/fault-inject.c
7233
7234 FBTFT Framebuffer drivers
7235 L:      dri-devel@lists.freedesktop.org
7236 L:      linux-fbdev@vger.kernel.org
7237 S:      Orphan
7238 F:      drivers/staging/fbtft/
7239
7240 FC0011 TUNER DRIVER
7241 M:      Michael Buesch <m@bues.ch>
7242 L:      linux-media@vger.kernel.org
7243 S:      Maintained
7244 F:      drivers/media/tuners/fc0011.c
7245 F:      drivers/media/tuners/fc0011.h
7246
7247 FC2580 MEDIA DRIVER
7248 M:      Antti Palosaari <crope@iki.fi>
7249 L:      linux-media@vger.kernel.org
7250 S:      Maintained
7251 W:      https://linuxtv.org
7252 W:      http://palosaari.fi/linux/
7253 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7254 T:      git git://linuxtv.org/anttip/media_tree.git
7255 F:      drivers/media/tuners/fc2580*
7256
7257 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7258 M:      Hannes Reinecke <hare@suse.de>
7259 L:      linux-scsi@vger.kernel.org
7260 S:      Supported
7261 W:      www.Open-FCoE.org
7262 F:      drivers/scsi/fcoe/
7263 F:      drivers/scsi/libfc/
7264 F:      include/scsi/fc/
7265 F:      include/scsi/libfc.h
7266 F:      include/scsi/libfcoe.h
7267 F:      include/uapi/scsi/fc/
7268
7269 FILE LOCKING (flock() and fcntl()/lockf())
7270 M:      Jeff Layton <jlayton@kernel.org>
7271 M:      "J. Bruce Fields" <bfields@fieldses.org>
7272 L:      linux-fsdevel@vger.kernel.org
7273 S:      Maintained
7274 F:      fs/fcntl.c
7275 F:      fs/locks.c
7276 F:      include/linux/fcntl.h
7277 F:      include/uapi/linux/fcntl.h
7278
7279 FILESYSTEM DIRECT ACCESS (DAX)
7280 M:      Dan Williams <dan.j.williams@intel.com>
7281 R:      Matthew Wilcox <willy@infradead.org>
7282 R:      Jan Kara <jack@suse.cz>
7283 L:      linux-fsdevel@vger.kernel.org
7284 L:      nvdimm@lists.linux.dev
7285 S:      Supported
7286 F:      fs/dax.c
7287 F:      include/linux/dax.h
7288 F:      include/trace/events/fs_dax.h
7289
7290 FILESYSTEMS (VFS and infrastructure)
7291 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7292 L:      linux-fsdevel@vger.kernel.org
7293 S:      Maintained
7294 F:      fs/*
7295 F:      include/linux/fs.h
7296 F:      include/linux/fs_types.h
7297 F:      include/uapi/linux/fs.h
7298 F:      include/uapi/linux/openat2.h
7299 X:      fs/io-wq.c
7300 X:      fs/io-wq.h
7301 X:      fs/io_uring.c
7302
7303 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7304 M:      Riku Voipio <riku.voipio@iki.fi>
7305 L:      linux-hwmon@vger.kernel.org
7306 S:      Maintained
7307 F:      drivers/hwmon/f75375s.c
7308 F:      include/linux/f75375s.h
7309
7310 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7311 M:      Clemens Ladisch <clemens@ladisch.de>
7312 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7313 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7314 S:      Maintained
7315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7316 F:      include/uapi/sound/firewire.h
7317 F:      sound/firewire/
7318
7319 FIREWIRE MEDIA DRIVERS (firedtv)
7320 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7321 L:      linux-media@vger.kernel.org
7322 L:      linux1394-devel@lists.sourceforge.net
7323 S:      Maintained
7324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7325 F:      drivers/media/firewire/
7326
7327 FIREWIRE SBP-2 TARGET
7328 M:      Chris Boot <bootc@bootc.net>
7329 L:      linux-scsi@vger.kernel.org
7330 L:      target-devel@vger.kernel.org
7331 L:      linux1394-devel@lists.sourceforge.net
7332 S:      Maintained
7333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7334 F:      drivers/target/sbp/
7335
7336 FIREWIRE SUBSYSTEM
7337 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7338 L:      linux1394-devel@lists.sourceforge.net
7339 S:      Maintained
7340 W:      http://ieee1394.wiki.kernel.org/
7341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7342 F:      drivers/firewire/
7343 F:      include/linux/firewire.h
7344 F:      include/uapi/linux/firewire*.h
7345 F:      tools/firewire/
7346
7347 FIRMWARE FRAMEWORK FOR ARMV8-A
7348 M:      Sudeep Holla <sudeep.holla@arm.com>
7349 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7350 S:      Maintained
7351 F:      drivers/firmware/arm_ffa/
7352 F:      include/linux/arm_ffa.h
7353
7354 FIRMWARE LOADER (request_firmware)
7355 M:      Luis Chamberlain <mcgrof@kernel.org>
7356 L:      linux-kernel@vger.kernel.org
7357 S:      Maintained
7358 F:      Documentation/firmware_class/
7359 F:      drivers/base/firmware_loader/
7360 F:      include/linux/firmware.h
7361
7362 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
7363 M:      Joshua Morris <josh.h.morris@us.ibm.com>
7364 M:      Philip Kelleher <pjk1939@linux.ibm.com>
7365 S:      Maintained
7366 F:      drivers/block/rsxx/
7367
7368 FLEXTIMER FTM-QUADDEC DRIVER
7369 M:      Patrick Havelange <patrick.havelange@essensium.com>
7370 L:      linux-iio@vger.kernel.org
7371 S:      Maintained
7372 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7373 F:      drivers/counter/ftm-quaddec.c
7374
7375 FLOPPY DRIVER
7376 M:      Denis Efremov <efremov@linux.com>
7377 L:      linux-block@vger.kernel.org
7378 S:      Odd Fixes
7379 F:      drivers/block/floppy.c
7380
7381 FLYSKY FSIA6B RC RECEIVER
7382 M:      Markus Koch <markus@notsyncing.net>
7383 L:      linux-input@vger.kernel.org
7384 S:      Maintained
7385 F:      drivers/input/joystick/fsia6b.c
7386
7387 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7388 M:      Geoffrey D. Bennett <g@b4.vu>
7389 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7390 S:      Maintained
7391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7392 F:      sound/usb/mixer_scarlett_gen2.c
7393
7394 FORCEDETH GIGABIT ETHERNET DRIVER
7395 M:      Rain River <rain.1986.08.12@gmail.com>
7396 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7397 L:      netdev@vger.kernel.org
7398 S:      Maintained
7399 F:      drivers/net/ethernet/nvidia/*
7400
7401 FORTIFY_SOURCE
7402 M:      Kees Cook <keescook@chromium.org>
7403 L:      linux-hardening@vger.kernel.org
7404 S:      Supported
7405 F:      include/linux/fortify-string.h
7406 F:      lib/test_fortify/*
7407 F:      scripts/test_fortify.sh
7408 K:      \b__NO_FORTIFY\b
7409
7410 FPGA DFL DRIVERS
7411 M:      Wu Hao <hao.wu@intel.com>
7412 R:      Tom Rix <trix@redhat.com>
7413 L:      linux-fpga@vger.kernel.org
7414 S:      Maintained
7415 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7416 F:      Documentation/fpga/dfl.rst
7417 F:      drivers/fpga/dfl*
7418 F:      drivers/uio/uio_dfl.c
7419 F:      include/linux/dfl.h
7420 F:      include/uapi/linux/fpga-dfl.h
7421
7422 FPGA MANAGER FRAMEWORK
7423 M:      Moritz Fischer <mdf@kernel.org>
7424 M:      Wu Hao <hao.wu@intel.com>
7425 M:      Xu Yilun <yilun.xu@intel.com>
7426 R:      Tom Rix <trix@redhat.com>
7427 L:      linux-fpga@vger.kernel.org
7428 S:      Maintained
7429 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7431 F:      Documentation/devicetree/bindings/fpga/
7432 F:      Documentation/driver-api/fpga/
7433 F:      Documentation/fpga/
7434 F:      drivers/fpga/
7435 F:      include/linux/fpga/
7436
7437 FPU EMULATOR
7438 M:      Bill Metzenthen <billm@melbpc.org.au>
7439 S:      Maintained
7440 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7441 F:      arch/x86/math-emu/
7442
7443 FRAMEBUFFER LAYER
7444 L:      dri-devel@lists.freedesktop.org
7445 L:      linux-fbdev@vger.kernel.org
7446 S:      Orphan
7447 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7448 T:      git git://anongit.freedesktop.org/drm/drm-misc
7449 F:      Documentation/fb/
7450 F:      drivers/video/
7451 F:      include/linux/fb.h
7452 F:      include/uapi/linux/fb.h
7453 F:      include/uapi/video/
7454 F:      include/video/
7455
7456 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7457 M:      Horia Geantă <horia.geanta@nxp.com>
7458 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7459 L:      linux-crypto@vger.kernel.org
7460 S:      Maintained
7461 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7462 F:      drivers/crypto/caam/
7463
7464 FREESCALE COLDFIRE M5441X MMC DRIVER
7465 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7466 L:      linux-mmc@vger.kernel.org
7467 S:      Maintained
7468 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7469 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7470
7471 FREESCALE DIU FRAMEBUFFER DRIVER
7472 M:      Timur Tabi <timur@kernel.org>
7473 L:      linux-fbdev@vger.kernel.org
7474 S:      Maintained
7475 F:      drivers/video/fbdev/fsl-diu-fb.*
7476
7477 FREESCALE DMA DRIVER
7478 M:      Li Yang <leoyang.li@nxp.com>
7479 M:      Zhang Wei <zw@zh-kernel.org>
7480 L:      linuxppc-dev@lists.ozlabs.org
7481 S:      Maintained
7482 F:      drivers/dma/fsldma.*
7483
7484 FREESCALE DSPI DRIVER
7485 M:      Vladimir Oltean <olteanv@gmail.com>
7486 L:      linux-spi@vger.kernel.org
7487 S:      Maintained
7488 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7489 F:      drivers/spi/spi-fsl-dspi.c
7490 F:      include/linux/spi/spi-fsl-dspi.h
7491
7492 FREESCALE ENETC ETHERNET DRIVERS
7493 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7494 L:      netdev@vger.kernel.org
7495 S:      Maintained
7496 F:      drivers/net/ethernet/freescale/enetc/
7497
7498 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7499 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7500 L:      netdev@vger.kernel.org
7501 S:      Maintained
7502 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7503 F:      drivers/net/ethernet/freescale/gianfar*
7504
7505 FREESCALE GPMI NAND DRIVER
7506 M:      Han Xu <han.xu@nxp.com>
7507 L:      linux-mtd@lists.infradead.org
7508 S:      Maintained
7509 F:      drivers/mtd/nand/raw/gpmi-nand/*
7510
7511 FREESCALE I2C CPM DRIVER
7512 M:      Jochen Friedrich <jochen@scram.de>
7513 L:      linuxppc-dev@lists.ozlabs.org
7514 L:      linux-i2c@vger.kernel.org
7515 S:      Maintained
7516 F:      drivers/i2c/busses/i2c-cpm.c
7517
7518 FREESCALE IMX / MXC FEC DRIVER
7519 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7520 L:      netdev@vger.kernel.org
7521 S:      Maintained
7522 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
7523 F:      drivers/net/ethernet/freescale/fec.h
7524 F:      drivers/net/ethernet/freescale/fec_main.c
7525 F:      drivers/net/ethernet/freescale/fec_ptp.c
7526
7527 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7528 M:      Sascha Hauer <s.hauer@pengutronix.de>
7529 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7530 L:      linux-fbdev@vger.kernel.org
7531 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7532 S:      Maintained
7533 F:      drivers/video/fbdev/imxfb.c
7534 F:      include/linux/platform_data/video-imxfb.h
7535
7536 FREESCALE IMX DDR PMU DRIVER
7537 M:      Frank Li <Frank.li@nxp.com>
7538 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7539 S:      Maintained
7540 F:      Documentation/admin-guide/perf/imx-ddr.rst
7541 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7542 F:      drivers/perf/fsl_imx8_ddr_perf.c
7543
7544 FREESCALE IMX I2C DRIVER
7545 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7546 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7547 L:      linux-i2c@vger.kernel.org
7548 S:      Maintained
7549 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7550 F:      drivers/i2c/busses/i2c-imx.c
7551
7552 FREESCALE IMX LPI2C DRIVER
7553 M:      Dong Aisheng <aisheng.dong@nxp.com>
7554 L:      linux-i2c@vger.kernel.org
7555 L:      linux-imx@nxp.com
7556 S:      Maintained
7557 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7558 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7559
7560 FREESCALE MPC I2C DRIVER
7561 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7562 L:      linux-i2c@vger.kernel.org
7563 S:      Maintained
7564 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7565 F:      drivers/i2c/busses/i2c-mpc.c
7566
7567 FREESCALE QORIQ DPAA ETHERNET DRIVER
7568 M:      Madalin Bucur <madalin.bucur@nxp.com>
7569 L:      netdev@vger.kernel.org
7570 S:      Maintained
7571 F:      drivers/net/ethernet/freescale/dpaa
7572
7573 FREESCALE QORIQ DPAA FMAN DRIVER
7574 M:      Madalin Bucur <madalin.bucur@nxp.com>
7575 L:      netdev@vger.kernel.org
7576 S:      Maintained
7577 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7578 F:      drivers/net/ethernet/freescale/fman
7579
7580 FREESCALE QORIQ PTP CLOCK DRIVER
7581 M:      Yangbo Lu <yangbo.lu@nxp.com>
7582 L:      netdev@vger.kernel.org
7583 S:      Maintained
7584 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7585 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7586 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7587 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7588 F:      drivers/ptp/ptp_qoriq.c
7589 F:      drivers/ptp/ptp_qoriq_debugfs.c
7590 F:      include/linux/fsl/ptp_qoriq.h
7591
7592 FREESCALE QUAD SPI DRIVER
7593 M:      Han Xu <han.xu@nxp.com>
7594 L:      linux-spi@vger.kernel.org
7595 S:      Maintained
7596 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7597 F:      drivers/spi/spi-fsl-qspi.c
7598
7599 FREESCALE QUICC ENGINE LIBRARY
7600 M:      Qiang Zhao <qiang.zhao@nxp.com>
7601 L:      linuxppc-dev@lists.ozlabs.org
7602 S:      Maintained
7603 F:      drivers/soc/fsl/qe/
7604 F:      include/soc/fsl/*qe*.h
7605 F:      include/soc/fsl/*ucc*.h
7606
7607 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7608 M:      Li Yang <leoyang.li@nxp.com>
7609 L:      netdev@vger.kernel.org
7610 L:      linuxppc-dev@lists.ozlabs.org
7611 S:      Maintained
7612 F:      drivers/net/ethernet/freescale/ucc_geth*
7613
7614 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7615 M:      Zhao Qiang <qiang.zhao@nxp.com>
7616 L:      netdev@vger.kernel.org
7617 L:      linuxppc-dev@lists.ozlabs.org
7618 S:      Maintained
7619 F:      drivers/net/wan/fsl_ucc_hdlc*
7620
7621 FREESCALE QUICC ENGINE UCC UART DRIVER
7622 M:      Timur Tabi <timur@kernel.org>
7623 L:      linuxppc-dev@lists.ozlabs.org
7624 S:      Maintained
7625 F:      drivers/tty/serial/ucc_uart.c
7626
7627 FREESCALE SOC DRIVERS
7628 M:      Li Yang <leoyang.li@nxp.com>
7629 L:      linuxppc-dev@lists.ozlabs.org
7630 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7631 S:      Maintained
7632 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7633 F:      Documentation/devicetree/bindings/soc/fsl/
7634 F:      drivers/soc/fsl/
7635 F:      include/linux/fsl/
7636
7637 FREESCALE SOC FS_ENET DRIVER
7638 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7639 L:      linuxppc-dev@lists.ozlabs.org
7640 L:      netdev@vger.kernel.org
7641 S:      Maintained
7642 F:      drivers/net/ethernet/freescale/fs_enet/
7643 F:      include/linux/fs_enet_pd.h
7644
7645 FREESCALE SOC SOUND DRIVERS
7646 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7647 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7648 R:      Fabio Estevam <festevam@gmail.com>
7649 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7650 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7651 L:      linuxppc-dev@lists.ozlabs.org
7652 S:      Maintained
7653 F:      sound/soc/fsl/fsl*
7654 F:      sound/soc/fsl/imx*
7655 F:      sound/soc/fsl/mpc8610_hpcd.c
7656
7657 FREESCALE USB PERIPHERAL DRIVERS
7658 M:      Li Yang <leoyang.li@nxp.com>
7659 L:      linux-usb@vger.kernel.org
7660 L:      linuxppc-dev@lists.ozlabs.org
7661 S:      Maintained
7662 F:      drivers/usb/gadget/udc/fsl*
7663
7664 FREESCALE USB PHY DRIVER
7665 M:      Ran Wang <ran.wang_1@nxp.com>
7666 L:      linux-usb@vger.kernel.org
7667 L:      linuxppc-dev@lists.ozlabs.org
7668 S:      Maintained
7669 F:      drivers/usb/phy/phy-fsl-usb*
7670
7671 FREEVXFS FILESYSTEM
7672 M:      Christoph Hellwig <hch@infradead.org>
7673 S:      Maintained
7674 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7675 F:      fs/freevxfs/
7676
7677 FREEZER
7678 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7679 M:      Pavel Machek <pavel@ucw.cz>
7680 L:      linux-pm@vger.kernel.org
7681 S:      Supported
7682 F:      Documentation/power/freezing-of-tasks.rst
7683 F:      include/linux/freezer.h
7684 F:      kernel/freezer.c
7685
7686 FRONTSWAP API
7687 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7688 L:      linux-kernel@vger.kernel.org
7689 S:      Maintained
7690 F:      include/linux/frontswap.h
7691 F:      mm/frontswap.c
7692
7693 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7694 M:      David Howells <dhowells@redhat.com>
7695 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7696 S:      Supported
7697 F:      Documentation/filesystems/caching/
7698 F:      fs/fscache/
7699 F:      include/linux/fscache*.h
7700
7701 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7702 M:      Theodore Y. Ts'o <tytso@mit.edu>
7703 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7704 M:      Eric Biggers <ebiggers@kernel.org>
7705 L:      linux-fscrypt@vger.kernel.org
7706 S:      Supported
7707 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7708 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7709 F:      Documentation/filesystems/fscrypt.rst
7710 F:      fs/crypto/
7711 F:      include/linux/fscrypt*.h
7712 F:      include/uapi/linux/fscrypt.h
7713
7714 FSI SUBSYSTEM
7715 M:      Jeremy Kerr <jk@ozlabs.org>
7716 M:      Joel Stanley <joel@jms.id.au>
7717 R:      Alistar Popple <alistair@popple.id.au>
7718 R:      Eddie James <eajames@linux.ibm.com>
7719 L:      linux-fsi@lists.ozlabs.org
7720 S:      Supported
7721 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7723 F:      drivers/fsi/
7724 F:      include/linux/fsi*.h
7725 F:      include/trace/events/fsi*.h
7726
7727 FSI-ATTACHED I2C DRIVER
7728 M:      Eddie James <eajames@linux.ibm.com>
7729 L:      linux-i2c@vger.kernel.org
7730 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7731 S:      Maintained
7732 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7733 F:      drivers/i2c/busses/i2c-fsi.c
7734
7735 FSI-ATTACHED SPI DRIVER
7736 M:      Eddie James <eajames@linux.ibm.com>
7737 L:      linux-spi@vger.kernel.org
7738 S:      Maintained
7739 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7740 F:      drivers/spi/spi-fsi.c
7741
7742 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7743 M:      Jan Kara <jack@suse.cz>
7744 R:      Amir Goldstein <amir73il@gmail.com>
7745 L:      linux-fsdevel@vger.kernel.org
7746 S:      Maintained
7747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7748 F:      fs/notify/
7749 F:      include/linux/fsnotify*.h
7750
7751 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7752 M:      Eric Biggers <ebiggers@kernel.org>
7753 M:      Theodore Y. Ts'o <tytso@mit.edu>
7754 L:      linux-fscrypt@vger.kernel.org
7755 S:      Supported
7756 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7757 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7758 F:      Documentation/filesystems/fsverity.rst
7759 F:      fs/verity/
7760 F:      include/linux/fsverity.h
7761 F:      include/uapi/linux/fsverity.h
7762
7763 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7764 M:      Michael Zaidman <michael.zaidman@gmail.com>
7765 L:      linux-i2c@vger.kernel.org
7766 L:      linux-input@vger.kernel.org
7767 S:      Maintained
7768 F:      drivers/hid/hid-ft260.c
7769
7770 FUJITSU LAPTOP EXTRAS
7771 M:      Jonathan Woithe <jwoithe@just42.net>
7772 L:      platform-driver-x86@vger.kernel.org
7773 S:      Maintained
7774 F:      drivers/platform/x86/fujitsu-laptop.c
7775
7776 FUJITSU M-5MO LS CAMERA ISP DRIVER
7777 M:      Kyungmin Park <kyungmin.park@samsung.com>
7778 M:      Heungjun Kim <riverful.kim@samsung.com>
7779 L:      linux-media@vger.kernel.org
7780 S:      Maintained
7781 F:      drivers/media/i2c/m5mols/
7782 F:      include/media/i2c/m5mols.h
7783
7784 FUJITSU TABLET EXTRAS
7785 M:      Robert Gerlach <khnz@gmx.de>
7786 L:      platform-driver-x86@vger.kernel.org
7787 S:      Maintained
7788 F:      drivers/platform/x86/fujitsu-tablet.c
7789
7790 FUSE: FILESYSTEM IN USERSPACE
7791 M:      Miklos Szeredi <miklos@szeredi.hu>
7792 L:      linux-fsdevel@vger.kernel.org
7793 S:      Maintained
7794 W:      https://github.com/libfuse/
7795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7796 F:      Documentation/filesystems/fuse.rst
7797 F:      fs/fuse/
7798 F:      include/uapi/linux/fuse.h
7799
7800 FUTEX SUBSYSTEM
7801 M:      Thomas Gleixner <tglx@linutronix.de>
7802 M:      Ingo Molnar <mingo@redhat.com>
7803 R:      Peter Zijlstra <peterz@infradead.org>
7804 R:      Darren Hart <dvhart@infradead.org>
7805 R:      Davidlohr Bueso <dave@stgolabs.net>
7806 R:      André Almeida <andrealmeid@collabora.com>
7807 L:      linux-kernel@vger.kernel.org
7808 S:      Maintained
7809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7810 F:      Documentation/locking/*futex*
7811 F:      include/asm-generic/futex.h
7812 F:      include/linux/futex.h
7813 F:      include/uapi/linux/futex.h
7814 F:      kernel/futex/*
7815 F:      tools/perf/bench/futex*
7816 F:      tools/testing/selftests/futex/
7817
7818 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7819 M:      Tim Harvey <tharvey@gateworks.com>
7820 M:      Robert Jones <rjones@gateworks.com>
7821 S:      Maintained
7822 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7823 F:      drivers/mfd/gateworks-gsc.c
7824 F:      include/linux/mfd/gsc.h
7825 F:      Documentation/hwmon/gsc-hwmon.rst
7826 F:      drivers/hwmon/gsc-hwmon.c
7827 F:      include/linux/platform_data/gsc_hwmon.h
7828
7829 GCC PLUGINS
7830 M:      Kees Cook <keescook@chromium.org>
7831 L:      linux-hardening@vger.kernel.org
7832 S:      Maintained
7833 F:      Documentation/kbuild/gcc-plugins.rst
7834 F:      scripts/Makefile.gcc-plugins
7835 F:      scripts/gcc-plugins/
7836
7837 GCOV BASED KERNEL PROFILING
7838 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7839 S:      Maintained
7840 F:      Documentation/dev-tools/gcov.rst
7841 F:      kernel/gcov/
7842
7843 GDB KERNEL DEBUGGING HELPER SCRIPTS
7844 M:      Jan Kiszka <jan.kiszka@siemens.com>
7845 M:      Kieran Bingham <kbingham@kernel.org>
7846 S:      Supported
7847 F:      scripts/gdb/
7848
7849 GEMINI CRYPTO DRIVER
7850 M:      Corentin Labbe <clabbe@baylibre.com>
7851 L:      linux-crypto@vger.kernel.org
7852 S:      Maintained
7853 F:      drivers/crypto/gemini/
7854
7855 GEMTEK FM RADIO RECEIVER DRIVER
7856 M:      Hans Verkuil <hverkuil@xs4all.nl>
7857 L:      linux-media@vger.kernel.org
7858 S:      Maintained
7859 W:      https://linuxtv.org
7860 T:      git git://linuxtv.org/media_tree.git
7861 F:      drivers/media/radio/radio-gemtek*
7862
7863 GENERIC ARCHITECTURE TOPOLOGY
7864 M:      Sudeep Holla <sudeep.holla@arm.com>
7865 L:      linux-kernel@vger.kernel.org
7866 S:      Maintained
7867 F:      drivers/base/arch_topology.c
7868 F:      include/linux/arch_topology.h
7869
7870 GENERIC ENTRY CODE
7871 M:      Thomas Gleixner <tglx@linutronix.de>
7872 M:      Peter Zijlstra <peterz@infradead.org>
7873 M:      Andy Lutomirski <luto@kernel.org>
7874 L:      linux-kernel@vger.kernel.org
7875 S:      Maintained
7876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7877 F:      include/linux/entry-common.h
7878 F:      include/linux/entry-kvm.h
7879 F:      kernel/entry/
7880
7881 GENERIC GPIO I2C DRIVER
7882 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7883 S:      Supported
7884 F:      drivers/i2c/busses/i2c-gpio.c
7885 F:      include/linux/platform_data/i2c-gpio.h
7886
7887 GENERIC GPIO I2C MULTIPLEXER DRIVER
7888 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7889 L:      linux-i2c@vger.kernel.org
7890 S:      Supported
7891 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7892 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7893 F:      include/linux/platform_data/i2c-mux-gpio.h
7894
7895 GENERIC HDLC (WAN) DRIVERS
7896 M:      Krzysztof Halasa <khc@pm.waw.pl>
7897 S:      Maintained
7898 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7899 F:      drivers/net/wan/c101.c
7900 F:      drivers/net/wan/hd6457*
7901 F:      drivers/net/wan/hdlc*
7902 F:      drivers/net/wan/n2.c
7903 F:      drivers/net/wan/pc300too.c
7904 F:      drivers/net/wan/pci200syn.c
7905 F:      drivers/net/wan/wanxl*
7906
7907 GENERIC INCLUDE/ASM HEADER FILES
7908 M:      Arnd Bergmann <arnd@arndb.de>
7909 L:      linux-arch@vger.kernel.org
7910 S:      Maintained
7911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7912 F:      include/asm-generic/
7913 F:      include/uapi/asm-generic/
7914
7915 GENERIC PHY FRAMEWORK
7916 M:      Kishon Vijay Abraham I <kishon@ti.com>
7917 M:      Vinod Koul <vkoul@kernel.org>
7918 L:      linux-phy@lists.infradead.org
7919 S:      Supported
7920 Q:      https://patchwork.kernel.org/project/linux-phy/list/
7921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7922 F:      Documentation/devicetree/bindings/phy/
7923 F:      drivers/phy/
7924 F:      include/linux/phy/
7925
7926 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7927 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7928 S:      Supported
7929 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7930
7931 GENERIC PM DOMAINS
7932 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7933 M:      Kevin Hilman <khilman@kernel.org>
7934 M:      Ulf Hansson <ulf.hansson@linaro.org>
7935 L:      linux-pm@vger.kernel.org
7936 S:      Supported
7937 F:      Documentation/devicetree/bindings/power/power?domain*
7938 F:      drivers/base/power/domain*.c
7939 F:      include/linux/pm_domain.h
7940
7941 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7942 M:      Eugen Hristev <eugen.hristev@microchip.com>
7943 L:      linux-input@vger.kernel.org
7944 S:      Maintained
7945 F:      drivers/input/touchscreen/resistive-adc-touch.c
7946
7947 GENERIC STRING LIBRARY
7948 R:      Andy Shevchenko <andy@kernel.org>
7949 S:      Maintained
7950 F:      lib/string.c
7951 F:      lib/string_helpers.c
7952 F:      lib/test_string.c
7953 F:      lib/test-string_helpers.c
7954
7955 GENERIC UIO DRIVER FOR PCI DEVICES
7956 M:      "Michael S. Tsirkin" <mst@redhat.com>
7957 L:      kvm@vger.kernel.org
7958 S:      Supported
7959 F:      drivers/uio/uio_pci_generic.c
7960
7961 GENERIC VDSO LIBRARY
7962 M:      Andy Lutomirski <luto@kernel.org>
7963 M:      Thomas Gleixner <tglx@linutronix.de>
7964 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7965 L:      linux-kernel@vger.kernel.org
7966 S:      Maintained
7967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7968 F:      include/asm-generic/vdso/vsyscall.h
7969 F:      include/vdso/
7970 F:      kernel/time/vsyscall.c
7971 F:      lib/vdso/
7972
7973 GENWQE (IBM Generic Workqueue Card)
7974 M:      Frank Haverkamp <haver@linux.ibm.com>
7975 S:      Supported
7976 F:      drivers/misc/genwqe/
7977
7978 GET_MAINTAINER SCRIPT
7979 M:      Joe Perches <joe@perches.com>
7980 S:      Maintained
7981 F:      scripts/get_maintainer.pl
7982
7983 GFS2 FILE SYSTEM
7984 M:      Bob Peterson <rpeterso@redhat.com>
7985 M:      Andreas Gruenbacher <agruenba@redhat.com>
7986 L:      cluster-devel@redhat.com
7987 S:      Supported
7988 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
7989 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7990 F:      Documentation/filesystems/gfs2*
7991 F:      fs/gfs2/
7992 F:      include/uapi/linux/gfs2_ondisk.h
7993
7994 GIGABYTE WMI DRIVER
7995 M:      Thomas Weißschuh <thomas@weissschuh.net>
7996 L:      platform-driver-x86@vger.kernel.org
7997 S:      Maintained
7998 F:      drivers/platform/x86/gigabyte-wmi.c
7999
8000 GNSS SUBSYSTEM
8001 M:      Johan Hovold <johan@kernel.org>
8002 S:      Maintained
8003 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8004 F:      Documentation/ABI/testing/sysfs-class-gnss
8005 F:      Documentation/devicetree/bindings/gnss/
8006 F:      drivers/gnss/
8007 F:      include/linux/gnss.h
8008
8009 GO7007 MPEG CODEC
8010 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8011 L:      linux-media@vger.kernel.org
8012 S:      Maintained
8013 F:      drivers/media/usb/go7007/
8014
8015 GOODIX TOUCHSCREEN
8016 M:      Bastien Nocera <hadess@hadess.net>
8017 L:      linux-input@vger.kernel.org
8018 S:      Maintained
8019 F:      drivers/input/touchscreen/goodix.c
8020
8021 GOOGLE ETHERNET DRIVERS
8022 M:      Jeroen de Borst <jeroendb@google.com>
8023 R:      Catherine Sullivan <csully@google.com>
8024 R:      David Awogbemila <awogbemila@google.com>
8025 L:      netdev@vger.kernel.org
8026 S:      Supported
8027 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8028 F:      drivers/net/ethernet/google
8029
8030 GPD POCKET FAN DRIVER
8031 M:      Hans de Goede <hdegoede@redhat.com>
8032 L:      platform-driver-x86@vger.kernel.org
8033 S:      Maintained
8034 F:      drivers/platform/x86/gpd-pocket-fan.c
8035
8036 GPIO ACPI SUPPORT
8037 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8038 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8039 L:      linux-gpio@vger.kernel.org
8040 L:      linux-acpi@vger.kernel.org
8041 S:      Maintained
8042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8043 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8044 F:      drivers/gpio/gpiolib-acpi.c
8045 F:      drivers/gpio/gpiolib-acpi.h
8046
8047 GPIO AGGREGATOR
8048 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8049 L:      linux-gpio@vger.kernel.org
8050 S:      Supported
8051 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8052 F:      drivers/gpio/gpio-aggregator.c
8053
8054 GPIO IR Transmitter
8055 M:      Sean Young <sean@mess.org>
8056 L:      linux-media@vger.kernel.org
8057 S:      Maintained
8058 F:      drivers/media/rc/gpio-ir-tx.c
8059
8060 GPIO MOCKUP DRIVER
8061 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8062 L:      linux-gpio@vger.kernel.org
8063 S:      Maintained
8064 F:      drivers/gpio/gpio-mockup.c
8065 F:      tools/testing/selftests/gpio/
8066
8067 GPIO REGMAP
8068 R:      Michael Walle <michael@walle.cc>
8069 S:      Maintained
8070 F:      drivers/gpio/gpio-regmap.c
8071 F:      include/linux/gpio/regmap.h
8072
8073 GPIO SUBSYSTEM
8074 M:      Linus Walleij <linus.walleij@linaro.org>
8075 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8076 L:      linux-gpio@vger.kernel.org
8077 S:      Maintained
8078 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
8079 F:      Documentation/ABI/obsolete/sysfs-gpio
8080 F:      Documentation/ABI/testing/gpio-cdev
8081 F:      Documentation/admin-guide/gpio/
8082 F:      Documentation/devicetree/bindings/gpio/
8083 F:      Documentation/driver-api/gpio/
8084 F:      drivers/gpio/
8085 F:      include/asm-generic/gpio.h
8086 F:      include/linux/gpio.h
8087 F:      include/linux/gpio/
8088 F:      include/linux/of_gpio.h
8089 F:      include/uapi/linux/gpio.h
8090 F:      tools/gpio/
8091
8092 GRE DEMULTIPLEXER DRIVER
8093 M:      Dmitry Kozlov <xeb@mail.ru>
8094 L:      netdev@vger.kernel.org
8095 S:      Maintained
8096 F:      include/net/gre.h
8097 F:      net/ipv4/gre_demux.c
8098 F:      net/ipv4/gre_offload.c
8099
8100 GRETH 10/100/1G Ethernet MAC device driver
8101 M:      Andreas Larsson <andreas@gaisler.com>
8102 L:      netdev@vger.kernel.org
8103 S:      Maintained
8104 F:      drivers/net/ethernet/aeroflex/
8105
8106 GREYBUS AUDIO PROTOCOLS DRIVERS
8107 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8108 M:      Mark Greer <mgreer@animalcreek.com>
8109 S:      Maintained
8110 F:      drivers/staging/greybus/audio_apbridgea.c
8111 F:      drivers/staging/greybus/audio_apbridgea.h
8112 F:      drivers/staging/greybus/audio_codec.c
8113 F:      drivers/staging/greybus/audio_codec.h
8114 F:      drivers/staging/greybus/audio_gb.c
8115 F:      drivers/staging/greybus/audio_manager.c
8116 F:      drivers/staging/greybus/audio_manager.h
8117 F:      drivers/staging/greybus/audio_manager_module.c
8118 F:      drivers/staging/greybus/audio_manager_private.h
8119 F:      drivers/staging/greybus/audio_manager_sysfs.c
8120 F:      drivers/staging/greybus/audio_module.c
8121 F:      drivers/staging/greybus/audio_topology.c
8122
8123 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8124 M:      Viresh Kumar <vireshk@kernel.org>
8125 S:      Maintained
8126 F:      drivers/staging/greybus/authentication.c
8127 F:      drivers/staging/greybus/bootrom.c
8128 F:      drivers/staging/greybus/firmware.h
8129 F:      drivers/staging/greybus/fw-core.c
8130 F:      drivers/staging/greybus/fw-download.c
8131 F:      drivers/staging/greybus/fw-management.c
8132 F:      drivers/staging/greybus/greybus_authentication.h
8133 F:      drivers/staging/greybus/greybus_firmware.h
8134 F:      drivers/staging/greybus/hid.c
8135 F:      drivers/staging/greybus/i2c.c
8136 F:      drivers/staging/greybus/spi.c
8137 F:      drivers/staging/greybus/spilib.c
8138 F:      drivers/staging/greybus/spilib.h
8139
8140 GREYBUS LOOPBACK DRIVER
8141 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8142 S:      Maintained
8143 F:      drivers/staging/greybus/loopback.c
8144
8145 GREYBUS PLATFORM DRIVERS
8146 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8147 S:      Maintained
8148 F:      drivers/staging/greybus/arche-apb-ctrl.c
8149 F:      drivers/staging/greybus/arche-platform.c
8150 F:      drivers/staging/greybus/arche_platform.h
8151
8152 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8153 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8154 S:      Maintained
8155 F:      drivers/staging/greybus/gpio.c
8156 F:      drivers/staging/greybus/light.c
8157 F:      drivers/staging/greybus/power_supply.c
8158 F:      drivers/staging/greybus/sdio.c
8159 F:      drivers/staging/greybus/spi.c
8160 F:      drivers/staging/greybus/spilib.c
8161
8162 GREYBUS SUBSYSTEM
8163 M:      Johan Hovold <johan@kernel.org>
8164 M:      Alex Elder <elder@kernel.org>
8165 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8166 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8167 S:      Maintained
8168 F:      drivers/greybus/
8169 F:      drivers/staging/greybus/
8170 F:      include/linux/greybus.h
8171 F:      include/linux/greybus/
8172
8173 GREYBUS UART PROTOCOLS DRIVERS
8174 M:      David Lin <dtwlin@gmail.com>
8175 S:      Maintained
8176 F:      drivers/staging/greybus/log.c
8177 F:      drivers/staging/greybus/uart.c
8178
8179 GS1662 VIDEO SERIALIZER
8180 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8181 L:      linux-media@vger.kernel.org
8182 S:      Maintained
8183 T:      git git://linuxtv.org/media_tree.git
8184 F:      drivers/media/spi/gs1662.c
8185
8186 GSPCA FINEPIX SUBDRIVER
8187 M:      Frank Zago <frank@zago.net>
8188 L:      linux-media@vger.kernel.org
8189 S:      Maintained
8190 T:      git git://linuxtv.org/media_tree.git
8191 F:      drivers/media/usb/gspca/finepix.c
8192
8193 GSPCA GL860 SUBDRIVER
8194 M:      Olivier Lorin <o.lorin@laposte.net>
8195 L:      linux-media@vger.kernel.org
8196 S:      Maintained
8197 T:      git git://linuxtv.org/media_tree.git
8198 F:      drivers/media/usb/gspca/gl860/
8199
8200 GSPCA M5602 SUBDRIVER
8201 M:      Erik Andren <erik.andren@gmail.com>
8202 L:      linux-media@vger.kernel.org
8203 S:      Maintained
8204 T:      git git://linuxtv.org/media_tree.git
8205 F:      drivers/media/usb/gspca/m5602/
8206
8207 GSPCA PAC207 SONIXB SUBDRIVER
8208 M:      Hans Verkuil <hverkuil@xs4all.nl>
8209 L:      linux-media@vger.kernel.org
8210 S:      Odd Fixes
8211 T:      git git://linuxtv.org/media_tree.git
8212 F:      drivers/media/usb/gspca/pac207.c
8213
8214 GSPCA SN9C20X SUBDRIVER
8215 M:      Brian Johnson <brijohn@gmail.com>
8216 L:      linux-media@vger.kernel.org
8217 S:      Maintained
8218 T:      git git://linuxtv.org/media_tree.git
8219 F:      drivers/media/usb/gspca/sn9c20x.c
8220
8221 GSPCA T613 SUBDRIVER
8222 M:      Leandro Costantino <lcostantino@gmail.com>
8223 L:      linux-media@vger.kernel.org
8224 S:      Maintained
8225 T:      git git://linuxtv.org/media_tree.git
8226 F:      drivers/media/usb/gspca/t613.c
8227
8228 GSPCA USB WEBCAM DRIVER
8229 M:      Hans Verkuil <hverkuil@xs4all.nl>
8230 L:      linux-media@vger.kernel.org
8231 S:      Odd Fixes
8232 T:      git git://linuxtv.org/media_tree.git
8233 F:      drivers/media/usb/gspca/
8234
8235 GTP (GPRS Tunneling Protocol)
8236 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8237 M:      Harald Welte <laforge@gnumonks.org>
8238 L:      osmocom-net-gprs@lists.osmocom.org
8239 S:      Maintained
8240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8241 F:      drivers/net/gtp.c
8242
8243 GUID PARTITION TABLE (GPT)
8244 M:      Davidlohr Bueso <dave@stgolabs.net>
8245 L:      linux-efi@vger.kernel.org
8246 S:      Maintained
8247 F:      block/partitions/efi.*
8248
8249 H8/300 ARCHITECTURE
8250 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
8251 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8252 S:      Maintained
8253 W:      http://uclinux-h8.sourceforge.jp
8254 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8255 F:      arch/h8300/
8256 F:      drivers/clk/h8300/
8257 F:      drivers/clocksource/h8300_*.c
8258 F:      drivers/irqchip/irq-renesas-h8*.c
8259
8260 HABANALABS PCI DRIVER
8261 M:      Oded Gabbay <ogabbay@kernel.org>
8262 S:      Supported
8263 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8264 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8265 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8266 F:      drivers/misc/habanalabs/
8267 F:      include/uapi/misc/habanalabs.h
8268
8269 HACKRF MEDIA DRIVER
8270 M:      Antti Palosaari <crope@iki.fi>
8271 L:      linux-media@vger.kernel.org
8272 S:      Maintained
8273 W:      https://linuxtv.org
8274 W:      http://palosaari.fi/linux/
8275 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8276 T:      git git://linuxtv.org/anttip/media_tree.git
8277 F:      drivers/media/usb/hackrf/
8278
8279 HANTRO VPU CODEC DRIVER
8280 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8281 M:      Philipp Zabel <p.zabel@pengutronix.de>
8282 L:      linux-media@vger.kernel.org
8283 L:      linux-rockchip@lists.infradead.org
8284 S:      Maintained
8285 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8286 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8287 F:      drivers/staging/media/hantro/
8288
8289 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8290 M:      Frank Seidel <frank@f-seidel.de>
8291 L:      platform-driver-x86@vger.kernel.org
8292 S:      Maintained
8293 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8294 F:      drivers/platform/x86/hdaps.c
8295
8296 HARDWARE MONITORING
8297 M:      Jean Delvare <jdelvare@suse.com>
8298 M:      Guenter Roeck <linux@roeck-us.net>
8299 L:      linux-hwmon@vger.kernel.org
8300 S:      Maintained
8301 W:      http://hwmon.wiki.kernel.org/
8302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8303 F:      Documentation/devicetree/bindings/hwmon/
8304 F:      Documentation/hwmon/
8305 F:      drivers/hwmon/
8306 F:      include/linux/hwmon*.h
8307 F:      include/trace/events/hwmon*.h
8308 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8309
8310 HARDWARE RANDOM NUMBER GENERATOR CORE
8311 M:      Matt Mackall <mpm@selenic.com>
8312 M:      Herbert Xu <herbert@gondor.apana.org.au>
8313 L:      linux-crypto@vger.kernel.org
8314 S:      Odd fixes
8315 F:      Documentation/admin-guide/hw_random.rst
8316 F:      Documentation/devicetree/bindings/rng/
8317 F:      drivers/char/hw_random/
8318 F:      include/linux/hw_random.h
8319
8320 HARDWARE SPINLOCK CORE
8321 M:      Ohad Ben-Cohen <ohad@wizery.com>
8322 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8323 R:      Baolin Wang <baolin.wang7@gmail.com>
8324 L:      linux-remoteproc@vger.kernel.org
8325 S:      Maintained
8326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8327 F:      Documentation/devicetree/bindings/hwlock/
8328 F:      Documentation/locking/hwspinlock.rst
8329 F:      drivers/hwspinlock/
8330 F:      include/linux/hwspinlock.h
8331
8332 HARDWARE TRACING FACILITIES
8333 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8334 S:      Maintained
8335 F:      drivers/hwtracing/
8336
8337 HARMONY SOUND DRIVER
8338 L:      linux-parisc@vger.kernel.org
8339 S:      Maintained
8340 F:      sound/parisc/harmony.*
8341
8342 HDPVR USB VIDEO ENCODER DRIVER
8343 M:      Hans Verkuil <hverkuil@xs4all.nl>
8344 L:      linux-media@vger.kernel.org
8345 S:      Odd Fixes
8346 W:      https://linuxtv.org
8347 T:      git git://linuxtv.org/media_tree.git
8348 F:      drivers/media/usb/hdpvr/
8349
8350 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8351 M:      Matt Hsiao <matt.hsiao@hpe.com>
8352 S:      Supported
8353 F:      drivers/misc/hpilo.[ch]
8354
8355 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8356 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8357 S:      Supported
8358 F:      Documentation/watchdog/hpwdt.rst
8359 F:      drivers/watchdog/hpwdt.c
8360
8361 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8362 M:      Don Brace <don.brace@microchip.com>
8363 L:      storagedev@microchip.com
8364 L:      linux-scsi@vger.kernel.org
8365 S:      Supported
8366 F:      Documentation/scsi/hpsa.rst
8367 F:      drivers/scsi/hpsa*.[ch]
8368 F:      include/linux/cciss*.h
8369 F:      include/uapi/linux/cciss*.h
8370
8371 HFI1 DRIVER
8372 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8373 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8374 L:      linux-rdma@vger.kernel.org
8375 S:      Supported
8376 F:      drivers/infiniband/hw/hfi1
8377
8378 HFS FILESYSTEM
8379 L:      linux-fsdevel@vger.kernel.org
8380 S:      Orphan
8381 F:      Documentation/filesystems/hfs.rst
8382 F:      fs/hfs/
8383
8384 HFSPLUS FILESYSTEM
8385 L:      linux-fsdevel@vger.kernel.org
8386 S:      Orphan
8387 F:      Documentation/filesystems/hfsplus.rst
8388 F:      fs/hfsplus/
8389
8390 HGA FRAMEBUFFER DRIVER
8391 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8392 L:      linux-nvidia@lists.surfsouth.com
8393 S:      Maintained
8394 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8395 F:      drivers/video/fbdev/hgafb.c
8396
8397 HIBERNATION (aka Software Suspend, aka swsusp)
8398 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8399 M:      Pavel Machek <pavel@ucw.cz>
8400 L:      linux-pm@vger.kernel.org
8401 S:      Supported
8402 B:      https://bugzilla.kernel.org
8403 F:      arch/*/include/asm/suspend*.h
8404 F:      arch/x86/power/
8405 F:      drivers/base/power/
8406 F:      include/linux/freezer.h
8407 F:      include/linux/pm.h
8408 F:      include/linux/suspend.h
8409 F:      kernel/power/
8410
8411 HID CORE LAYER
8412 M:      Jiri Kosina <jikos@kernel.org>
8413 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8414 L:      linux-input@vger.kernel.org
8415 S:      Maintained
8416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8417 F:      drivers/hid/
8418 F:      include/linux/hid*
8419 F:      include/uapi/linux/hid*
8420
8421 HID PLAYSTATION DRIVER
8422 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8423 L:      linux-input@vger.kernel.org
8424 S:      Supported
8425 F:      drivers/hid/hid-playstation.c
8426
8427 HID SENSOR HUB DRIVERS
8428 M:      Jiri Kosina <jikos@kernel.org>
8429 M:      Jonathan Cameron <jic23@kernel.org>
8430 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8431 L:      linux-input@vger.kernel.org
8432 L:      linux-iio@vger.kernel.org
8433 S:      Maintained
8434 F:      Documentation/hid/hid-sensor*
8435 F:      drivers/hid/hid-sensor-*
8436 F:      drivers/iio/*/hid-*
8437 F:      include/linux/hid-sensor-*
8438
8439 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8440 M:      Thomas Gleixner <tglx@linutronix.de>
8441 L:      linux-kernel@vger.kernel.org
8442 S:      Maintained
8443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8444 F:      Documentation/timers/
8445 F:      include/linux/clockchips.h
8446 F:      include/linux/hrtimer.h
8447 F:      kernel/time/clockevents.c
8448 F:      kernel/time/hrtimer.c
8449 F:      kernel/time/timer_*.c
8450
8451 HIGH-SPEED SCC DRIVER FOR AX.25
8452 L:      linux-hams@vger.kernel.org
8453 S:      Orphan
8454 F:      drivers/net/hamradio/dmascc.c
8455 F:      drivers/net/hamradio/scc.c
8456
8457 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8458 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8459 S:      Supported
8460 W:      http://www.highpoint-tech.com
8461 F:      Documentation/scsi/hptiop.rst
8462 F:      drivers/scsi/hptiop.c
8463
8464 HIPPI
8465 M:      Jes Sorensen <jes@trained-monkey.org>
8466 L:      linux-hippi@sunsite.dk
8467 S:      Maintained
8468 F:      drivers/net/hippi/
8469 F:      include/linux/hippidevice.h
8470 F:      include/uapi/linux/if_hippi.h
8471 F:      net/802/hippi.c
8472
8473 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8474 M:      Kurt Kanzenbach <kurt@linutronix.de>
8475 L:      netdev@vger.kernel.org
8476 S:      Maintained
8477 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8478 F:      drivers/net/dsa/hirschmann/*
8479 F:      include/linux/platform_data/hirschmann-hellcreek.h
8480 F:      net/dsa/tag_hellcreek.c
8481
8482 HISILICON DMA DRIVER
8483 M:      Zhou Wang <wangzhou1@hisilicon.com>
8484 L:      dmaengine@vger.kernel.org
8485 S:      Maintained
8486 F:      drivers/dma/hisi_dma.c
8487
8488 HISILICON GPIO DRIVER
8489 M:      Luo Jiaxing <luojiaxing@huawei.com>
8490 L:      linux-gpio@vger.kernel.org
8491 S:      Maintained
8492 F:      drivers/gpio/gpio-hisi.c
8493
8494 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8495 M:      Zaibo Xu <xuzaibo@huawei.com>
8496 L:      linux-crypto@vger.kernel.org
8497 S:      Maintained
8498 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8499 F:      drivers/crypto/hisilicon/hpre/hpre.h
8500 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8501 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8502
8503 HISILICON I2C CONTROLLER DRIVER
8504 M:      Yicong Yang <yangyicong@hisilicon.com>
8505 L:      linux-i2c@vger.kernel.org
8506 S:      Maintained
8507 W:      https://www.hisilicon.com
8508 F:      drivers/i2c/busses/i2c-hisi.c
8509
8510 HISILICON LPC BUS DRIVER
8511 M:      john.garry@huawei.com
8512 S:      Maintained
8513 W:      http://www.hisilicon.com
8514 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8515 F:      drivers/bus/hisi_lpc.c
8516
8517 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8518 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8519 M:      Salil Mehta <salil.mehta@huawei.com>
8520 L:      netdev@vger.kernel.org
8521 S:      Maintained
8522 W:      http://www.hisilicon.com
8523 F:      drivers/net/ethernet/hisilicon/hns3/
8524
8525 HISILICON NETWORK SUBSYSTEM DRIVER
8526 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8527 M:      Salil Mehta <salil.mehta@huawei.com>
8528 L:      netdev@vger.kernel.org
8529 S:      Maintained
8530 W:      http://www.hisilicon.com
8531 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8532 F:      drivers/net/ethernet/hisilicon/
8533
8534 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8535 M:      John Stultz <john.stultz@linaro.org>
8536 L:      linux-kernel@vger.kernel.org
8537 S:      Maintained
8538 F:      drivers/misc/hisi_hikey_usb.c
8539 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8540
8541 HISILICON PMU DRIVER
8542 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8543 S:      Supported
8544 W:      http://www.hisilicon.com
8545 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8546 F:      drivers/perf/hisilicon
8547
8548 HISILICON QM AND ZIP Controller DRIVER
8549 M:      Zhou Wang <wangzhou1@hisilicon.com>
8550 L:      linux-crypto@vger.kernel.org
8551 S:      Maintained
8552 F:      Documentation/ABI/testing/debugfs-hisi-zip
8553 F:      drivers/crypto/hisilicon/qm.c
8554 F:      drivers/crypto/hisilicon/qm.h
8555 F:      drivers/crypto/hisilicon/sgl.c
8556 F:      drivers/crypto/hisilicon/zip/
8557
8558 HISILICON ROCE DRIVER
8559 M:      Wenpeng Liang <liangwenpeng@huawei.com>
8560 M:      Weihang Li <liweihang@huawei.com>
8561 L:      linux-rdma@vger.kernel.org
8562 S:      Maintained
8563 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8564 F:      drivers/infiniband/hw/hns/
8565
8566 HISILICON SAS Controller
8567 M:      John Garry <john.garry@huawei.com>
8568 S:      Supported
8569 W:      http://www.hisilicon.com
8570 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8571 F:      drivers/scsi/hisi_sas/
8572
8573 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8574 M:      Zaibo Xu <xuzaibo@huawei.com>
8575 L:      linux-crypto@vger.kernel.org
8576 S:      Maintained
8577 F:      Documentation/ABI/testing/debugfs-hisi-sec
8578 F:      drivers/crypto/hisilicon/sec2/sec.h
8579 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8580 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8581 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8582
8583 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8584 M:      Jay Fang <f.fangjian@huawei.com>
8585 L:      linux-spi@vger.kernel.org
8586 S:      Maintained
8587 W:      http://www.hisilicon.com
8588 F:      drivers/spi/spi-hisi-kunpeng.c
8589
8590 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8591 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8592 L:      linux-kernel@vger.kernel.org
8593 S:      Maintained
8594 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8595 F:      drivers/spmi/hisi-spmi-controller.c
8596
8597 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8598 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8599 L:      linux-kernel@vger.kernel.org
8600 S:      Maintained
8601 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8602 F:      drivers/mfd/hi6421-spmi-pmic.c
8603
8604 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8605 M:      Zaibo Xu <xuzaibo@huawei.com>
8606 S:      Maintained
8607 F:      drivers/crypto/hisilicon/trng/trng.c
8608
8609 HISILICON V3XX SPI NOR FLASH Controller Driver
8610 M:      John Garry <john.garry@huawei.com>
8611 S:      Maintained
8612 W:      http://www.hisilicon.com
8613 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8614
8615 HMM - Heterogeneous Memory Management
8616 M:      Jérôme Glisse <jglisse@redhat.com>
8617 L:      linux-mm@kvack.org
8618 S:      Maintained
8619 F:      Documentation/vm/hmm.rst
8620 F:      include/linux/hmm*
8621 F:      lib/test_hmm*
8622 F:      mm/hmm*
8623 F:      tools/testing/selftests/vm/*hmm*
8624
8625 HOST AP DRIVER
8626 M:      Jouni Malinen <j@w1.fi>
8627 L:      linux-wireless@vger.kernel.org
8628 S:      Obsolete
8629 W:      http://w1.fi/hostap-driver.html
8630 F:      drivers/net/wireless/intersil/hostap/
8631
8632 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8633 L:      platform-driver-x86@vger.kernel.org
8634 S:      Orphan
8635 F:      drivers/platform/x86/tc1100-wmi.c
8636
8637 HPET:   High Precision Event Timers driver
8638 M:      Clemens Ladisch <clemens@ladisch.de>
8639 S:      Maintained
8640 F:      Documentation/timers/hpet.rst
8641 F:      drivers/char/hpet.c
8642 F:      include/linux/hpet.h
8643 F:      include/uapi/linux/hpet.h
8644
8645 HPET:   x86
8646 S:      Orphan
8647 F:      arch/x86/include/asm/hpet.h
8648 F:      arch/x86/kernel/hpet.c
8649
8650 HPFS FILESYSTEM
8651 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8652 S:      Maintained
8653 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8654 F:      fs/hpfs/
8655
8656 HSI SUBSYSTEM
8657 M:      Sebastian Reichel <sre@kernel.org>
8658 S:      Maintained
8659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8660 F:      Documentation/ABI/testing/sysfs-bus-hsi
8661 F:      Documentation/driver-api/hsi.rst
8662 F:      drivers/hsi/
8663 F:      include/linux/hsi/
8664 F:      include/uapi/linux/hsi/
8665
8666 HSO 3G MODEM DRIVER
8667 L:      linux-usb@vger.kernel.org
8668 S:      Orphan
8669 F:      drivers/net/usb/hso.c
8670
8671 HSR NETWORK PROTOCOL
8672 L:      netdev@vger.kernel.org
8673 S:      Orphan
8674 F:      net/hsr/
8675
8676 HT16K33 LED CONTROLLER DRIVER
8677 M:      Robin van der Gracht <robin@protonic.nl>
8678 S:      Maintained
8679 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8680 F:      drivers/auxdisplay/ht16k33.c
8681
8682 HTCPEN TOUCHSCREEN DRIVER
8683 M:      Pau Oliva Fora <pof@eslack.org>
8684 L:      linux-input@vger.kernel.org
8685 S:      Maintained
8686 F:      drivers/input/touchscreen/htcpen.c
8687
8688 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8689 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8690 L:      linux-iio@vger.kernel.org
8691 S:      Maintained
8692 W:      http://www.st.com/
8693 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8694 F:      drivers/iio/humidity/hts221*
8695
8696 HUAWEI ETHERNET DRIVER
8697 L:      netdev@vger.kernel.org
8698 S:      Orphan
8699 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8700 F:      drivers/net/ethernet/huawei/hinic/
8701
8702 HUGETLB FILESYSTEM
8703 M:      Mike Kravetz <mike.kravetz@oracle.com>
8704 L:      linux-mm@kvack.org
8705 S:      Maintained
8706 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8707 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8708 F:      Documentation/vm/hugetlbfs_reserv.rst
8709 F:      fs/hugetlbfs/
8710 F:      include/linux/hugetlb.h
8711 F:      mm/hugetlb.c
8712
8713 HVA ST MEDIA DRIVER
8714 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8715 L:      linux-media@vger.kernel.org
8716 S:      Supported
8717 W:      https://linuxtv.org
8718 T:      git git://linuxtv.org/media_tree.git
8719 F:      drivers/media/platform/sti/hva
8720
8721 HWPOISON MEMORY FAILURE HANDLING
8722 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8723 L:      linux-mm@kvack.org
8724 S:      Maintained
8725 F:      mm/hwpoison-inject.c
8726 F:      mm/memory-failure.c
8727
8728 HYCON HY46XX TOUCHSCREEN SUPPORT
8729 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
8730 L:      linux-input@vger.kernel.org
8731 S:      Maintained
8732 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
8733 F:      drivers/input/touchscreen/hycon-hy46xx.c
8734
8735 HYGON PROCESSOR SUPPORT
8736 M:      Pu Wen <puwen@hygon.cn>
8737 L:      linux-kernel@vger.kernel.org
8738 S:      Maintained
8739 F:      arch/x86/kernel/cpu/hygon.c
8740
8741 HYNIX HI556 SENSOR DRIVER
8742 M:      Shawn Tu <shawnx.tu@intel.com>
8743 L:      linux-media@vger.kernel.org
8744 S:      Maintained
8745 T:      git git://linuxtv.org/media_tree.git
8746 F:      drivers/media/i2c/hi556.c
8747
8748 HYNIX HI846 SENSOR DRIVER
8749 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
8750 L:      linux-media@vger.kernel.org
8751 S:      Maintained
8752 F:      drivers/media/i2c/hi846.c
8753
8754 Hyper-V/Azure CORE AND DRIVERS
8755 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8756 M:      Haiyang Zhang <haiyangz@microsoft.com>
8757 M:      Stephen Hemminger <sthemmin@microsoft.com>
8758 M:      Wei Liu <wei.liu@kernel.org>
8759 M:      Dexuan Cui <decui@microsoft.com>
8760 L:      linux-hyperv@vger.kernel.org
8761 S:      Supported
8762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8763 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8764 F:      Documentation/ABI/testing/debugfs-hyperv
8765 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8766 F:      arch/arm64/hyperv
8767 F:      arch/arm64/include/asm/hyperv-tlfs.h
8768 F:      arch/arm64/include/asm/mshyperv.h
8769 F:      arch/x86/hyperv
8770 F:      arch/x86/include/asm/hyperv-tlfs.h
8771 F:      arch/x86/include/asm/mshyperv.h
8772 F:      arch/x86/include/asm/trace/hyperv.h
8773 F:      arch/x86/kernel/cpu/mshyperv.c
8774 F:      drivers/clocksource/hyperv_timer.c
8775 F:      drivers/hid/hid-hyperv.c
8776 F:      drivers/hv/
8777 F:      drivers/input/serio/hyperv-keyboard.c
8778 F:      drivers/iommu/hyperv-iommu.c
8779 F:      drivers/net/ethernet/microsoft/
8780 F:      drivers/net/hyperv/
8781 F:      drivers/pci/controller/pci-hyperv-intf.c
8782 F:      drivers/pci/controller/pci-hyperv.c
8783 F:      drivers/scsi/storvsc_drv.c
8784 F:      drivers/uio/uio_hv_generic.c
8785 F:      drivers/video/fbdev/hyperv_fb.c
8786 F:      include/asm-generic/hyperv-tlfs.h
8787 F:      include/asm-generic/mshyperv.h
8788 F:      include/clocksource/hyperv_timer.h
8789 F:      include/linux/hyperv.h
8790 F:      include/uapi/linux/hyperv.h
8791 F:      net/vmw_vsock/hyperv_transport.c
8792 F:      tools/hv/
8793
8794 HYPERBUS SUPPORT
8795 M:      Vignesh Raghavendra <vigneshr@ti.com>
8796 L:      linux-mtd@lists.infradead.org
8797 S:      Supported
8798 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8799 C:      irc://irc.oftc.net/mtd
8800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8801 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8802 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8803 F:      drivers/mtd/hyperbus/
8804 F:      include/linux/mtd/hyperbus.h
8805
8806 HYPERVISOR VIRTUAL CONSOLE DRIVER
8807 L:      linuxppc-dev@lists.ozlabs.org
8808 S:      Odd Fixes
8809 F:      drivers/tty/hvc/
8810
8811 I2C ACPI SUPPORT
8812 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8813 L:      linux-i2c@vger.kernel.org
8814 L:      linux-acpi@vger.kernel.org
8815 S:      Maintained
8816 F:      drivers/i2c/i2c-core-acpi.c
8817
8818 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8819 M:      Ajay Gupta <ajayg@nvidia.com>
8820 L:      linux-i2c@vger.kernel.org
8821 S:      Maintained
8822 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8823 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8824
8825 I2C MUXES
8826 M:      Peter Rosin <peda@axentia.se>
8827 L:      linux-i2c@vger.kernel.org
8828 S:      Maintained
8829 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8830 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8831 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8832 F:      Documentation/i2c/i2c-topology.rst
8833 F:      Documentation/i2c/muxes/
8834 F:      drivers/i2c/i2c-mux.c
8835 F:      drivers/i2c/muxes/
8836 F:      include/linux/i2c-mux.h
8837
8838 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8839 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8840 L:      linux-i2c@vger.kernel.org
8841 S:      Maintained
8842 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8843 F:      drivers/i2c/busses/i2c-mv64xxx.c
8844
8845 I2C OVER PARALLEL PORT
8846 M:      Jean Delvare <jdelvare@suse.com>
8847 L:      linux-i2c@vger.kernel.org
8848 S:      Maintained
8849 F:      Documentation/i2c/busses/i2c-parport.rst
8850 F:      drivers/i2c/busses/i2c-parport.c
8851
8852 I2C SUBSYSTEM
8853 M:      Wolfram Sang <wsa@kernel.org>
8854 L:      linux-i2c@vger.kernel.org
8855 S:      Maintained
8856 W:      https://i2c.wiki.kernel.org/
8857 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8859 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8860 F:      Documentation/i2c/
8861 F:      drivers/i2c/*
8862 F:      include/linux/i2c-dev.h
8863 F:      include/linux/i2c-smbus.h
8864 F:      include/linux/i2c.h
8865 F:      include/uapi/linux/i2c-*.h
8866 F:      include/uapi/linux/i2c.h
8867
8868 I2C SUBSYSTEM HOST DRIVERS
8869 L:      linux-i2c@vger.kernel.org
8870 S:      Odd Fixes
8871 W:      https://i2c.wiki.kernel.org/
8872 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8874 F:      Documentation/devicetree/bindings/i2c/
8875 F:      drivers/i2c/algos/
8876 F:      drivers/i2c/busses/
8877
8878 I2C-TAOS-EVM DRIVER
8879 M:      Jean Delvare <jdelvare@suse.com>
8880 L:      linux-i2c@vger.kernel.org
8881 S:      Maintained
8882 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8883 F:      drivers/i2c/busses/i2c-taos-evm.c
8884
8885 I2C-TINY-USB DRIVER
8886 M:      Till Harbaum <till@harbaum.org>
8887 L:      linux-i2c@vger.kernel.org
8888 S:      Maintained
8889 W:      http://www.harbaum.org/till/i2c_tiny_usb
8890 F:      drivers/i2c/busses/i2c-tiny-usb.c
8891
8892 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8893 M:      Jean Delvare <jdelvare@suse.com>
8894 L:      linux-i2c@vger.kernel.org
8895 S:      Maintained
8896 F:      Documentation/i2c/busses/i2c-ali1535.rst
8897 F:      Documentation/i2c/busses/i2c-ali1563.rst
8898 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8899 F:      Documentation/i2c/busses/i2c-amd756.rst
8900 F:      Documentation/i2c/busses/i2c-amd8111.rst
8901 F:      Documentation/i2c/busses/i2c-i801.rst
8902 F:      Documentation/i2c/busses/i2c-nforce2.rst
8903 F:      Documentation/i2c/busses/i2c-piix4.rst
8904 F:      Documentation/i2c/busses/i2c-sis5595.rst
8905 F:      Documentation/i2c/busses/i2c-sis630.rst
8906 F:      Documentation/i2c/busses/i2c-sis96x.rst
8907 F:      Documentation/i2c/busses/i2c-via.rst
8908 F:      Documentation/i2c/busses/i2c-viapro.rst
8909 F:      drivers/i2c/busses/i2c-ali1535.c
8910 F:      drivers/i2c/busses/i2c-ali1563.c
8911 F:      drivers/i2c/busses/i2c-ali15x3.c
8912 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8913 F:      drivers/i2c/busses/i2c-amd756.c
8914 F:      drivers/i2c/busses/i2c-amd8111.c
8915 F:      drivers/i2c/busses/i2c-i801.c
8916 F:      drivers/i2c/busses/i2c-isch.c
8917 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8918 F:      drivers/i2c/busses/i2c-nforce2.c
8919 F:      drivers/i2c/busses/i2c-piix4.c
8920 F:      drivers/i2c/busses/i2c-sis5595.c
8921 F:      drivers/i2c/busses/i2c-sis630.c
8922 F:      drivers/i2c/busses/i2c-sis96x.c
8923 F:      drivers/i2c/busses/i2c-via.c
8924 F:      drivers/i2c/busses/i2c-viapro.c
8925
8926 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8927 M:      Hans de Goede <hdegoede@redhat.com>
8928 L:      linux-i2c@vger.kernel.org
8929 S:      Maintained
8930 F:      drivers/i2c/busses/i2c-cht-wc.c
8931
8932 I2C/SMBUS ISMT DRIVER
8933 M:      Seth Heasley <seth.heasley@intel.com>
8934 M:      Neil Horman <nhorman@tuxdriver.com>
8935 L:      linux-i2c@vger.kernel.org
8936 F:      Documentation/i2c/busses/i2c-ismt.rst
8937 F:      drivers/i2c/busses/i2c-ismt.c
8938
8939 I2C/SMBUS STUB DRIVER
8940 M:      Jean Delvare <jdelvare@suse.com>
8941 L:      linux-i2c@vger.kernel.org
8942 S:      Maintained
8943 F:      drivers/i2c/i2c-stub.c
8944
8945 I3C DRIVER FOR CADENCE I3C MASTER IP
8946 M:      Przemysław Gaj <pgaj@cadence.com>
8947 S:      Maintained
8948 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8949 F:      drivers/i3c/master/i3c-master-cdns.c
8950
8951 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8952 M:      Vitor Soares <vitor.soares@synopsys.com>
8953 S:      Maintained
8954 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8955 F:      drivers/i3c/master/dw*
8956
8957 I3C SUBSYSTEM
8958 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
8959 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8960 S:      Maintained
8961 C:      irc://chat.freenode.net/linux-i3c
8962 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8963 F:      Documentation/ABI/testing/sysfs-bus-i3c
8964 F:      Documentation/devicetree/bindings/i3c/
8965 F:      Documentation/driver-api/i3c
8966 F:      drivers/i3c/
8967 F:      include/linux/i3c/
8968
8969 IA64 (Itanium) PLATFORM
8970 L:      linux-ia64@vger.kernel.org
8971 S:      Orphan
8972 F:      Documentation/ia64/
8973 F:      arch/ia64/
8974
8975 IBM Power 842 compression accelerator
8976 M:      Haren Myneni <haren@us.ibm.com>
8977 S:      Supported
8978 F:      crypto/842.c
8979 F:      drivers/crypto/nx/Kconfig
8980 F:      drivers/crypto/nx/Makefile
8981 F:      drivers/crypto/nx/nx-842*
8982 F:      include/linux/sw842.h
8983 F:      lib/842/
8984
8985 IBM Power in-Nest Crypto Acceleration
8986 M:      Breno Leitão <leitao@debian.org>
8987 M:      Nayna Jain <nayna@linux.ibm.com>
8988 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8989 L:      linux-crypto@vger.kernel.org
8990 S:      Supported
8991 F:      drivers/crypto/nx/Kconfig
8992 F:      drivers/crypto/nx/Makefile
8993 F:      drivers/crypto/nx/nx-aes*
8994 F:      drivers/crypto/nx/nx-sha*
8995 F:      drivers/crypto/nx/nx.*
8996 F:      drivers/crypto/nx/nx_csbcpb.h
8997 F:      drivers/crypto/nx/nx_debugfs.c
8998
8999 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9000 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9001 L:      linux-pci@vger.kernel.org
9002 L:      linuxppc-dev@lists.ozlabs.org
9003 S:      Supported
9004 F:      drivers/pci/hotplug/rpadlpar*
9005
9006 IBM Power Linux RAID adapter
9007 M:      Brian King <brking@us.ibm.com>
9008 S:      Supported
9009 F:      drivers/scsi/ipr.*
9010
9011 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9012 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9013 L:      linux-pci@vger.kernel.org
9014 L:      linuxppc-dev@lists.ozlabs.org
9015 S:      Supported
9016 F:      drivers/pci/hotplug/rpaphp*
9017
9018 IBM Power SRIOV Virtual NIC Device Driver
9019 M:      Dany Madden <drt@linux.ibm.com>
9020 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9021 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9022 L:      netdev@vger.kernel.org
9023 S:      Supported
9024 F:      drivers/net/ethernet/ibm/ibmvnic.*
9025
9026 IBM Power Virtual Accelerator Switchboard
9027 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9028 L:      linuxppc-dev@lists.ozlabs.org
9029 S:      Supported
9030 F:      arch/powerpc/include/asm/vas.h
9031 F:      arch/powerpc/platforms/powernv/copy-paste.h
9032 F:      arch/powerpc/platforms/powernv/vas*
9033
9034 IBM Power Virtual Ethernet Device Driver
9035 M:      Cristobal Forno <cforno12@linux.ibm.com>
9036 L:      netdev@vger.kernel.org
9037 S:      Supported
9038 F:      drivers/net/ethernet/ibm/ibmveth.*
9039
9040 IBM Power Virtual FC Device Drivers
9041 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9042 L:      linux-scsi@vger.kernel.org
9043 S:      Supported
9044 F:      drivers/scsi/ibmvscsi/ibmvfc*
9045
9046 IBM Power Virtual Management Channel Driver
9047 M:      Brad Warrum <bwarrum@linux.ibm.com>
9048 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9049 S:      Supported
9050 F:      drivers/misc/ibmvmc.*
9051
9052 IBM Power Virtual SCSI Device Drivers
9053 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9054 L:      linux-scsi@vger.kernel.org
9055 S:      Supported
9056 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9057 F:      include/scsi/viosrp.h
9058
9059 IBM Power Virtual SCSI Device Target Driver
9060 M:      Michael Cyr <mikecyr@linux.ibm.com>
9061 L:      linux-scsi@vger.kernel.org
9062 L:      target-devel@vger.kernel.org
9063 S:      Supported
9064 F:      drivers/scsi/ibmvscsi_tgt/
9065
9066 IBM Power VMX Cryptographic instructions
9067 M:      Breno Leitão <leitao@debian.org>
9068 M:      Nayna Jain <nayna@linux.ibm.com>
9069 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9070 L:      linux-crypto@vger.kernel.org
9071 S:      Supported
9072 F:      drivers/crypto/vmx/Kconfig
9073 F:      drivers/crypto/vmx/Makefile
9074 F:      drivers/crypto/vmx/aes*
9075 F:      drivers/crypto/vmx/ghash*
9076 F:      drivers/crypto/vmx/ppc-xlate.pl
9077 F:      drivers/crypto/vmx/vmx.c
9078
9079 IBM ServeRAID RAID DRIVER
9080 S:      Orphan
9081 F:      drivers/scsi/ips.*
9082
9083 ICH LPC AND GPIO DRIVER
9084 M:      Peter Tyser <ptyser@xes-inc.com>
9085 S:      Maintained
9086 F:      drivers/gpio/gpio-ich.c
9087 F:      drivers/mfd/lpc_ich.c
9088
9089 ICY I2C DRIVER
9090 M:      Max Staudt <max@enpas.org>
9091 L:      linux-i2c@vger.kernel.org
9092 S:      Maintained
9093 F:      drivers/i2c/busses/i2c-icy.c
9094
9095 IDEAPAD LAPTOP EXTRAS DRIVER
9096 M:      Ike Panhc <ike.pan@canonical.com>
9097 L:      platform-driver-x86@vger.kernel.org
9098 S:      Maintained
9099 W:      http://launchpad.net/ideapad-laptop
9100 F:      drivers/platform/x86/ideapad-laptop.c
9101
9102 IDEAPAD LAPTOP SLIDEBAR DRIVER
9103 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9104 L:      linux-input@vger.kernel.org
9105 S:      Maintained
9106 W:      https://github.com/o2genum/ideapad-slidebar
9107 F:      drivers/input/misc/ideapad_slidebar.c
9108
9109 IDT VersaClock 5 CLOCK DRIVER
9110 M:      Luca Ceresoli <luca@lucaceresoli.net>
9111 S:      Maintained
9112 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9113 F:      drivers/clk/clk-versaclock5.c
9114
9115 IEEE 802.15.4 SUBSYSTEM
9116 M:      Alexander Aring <alex.aring@gmail.com>
9117 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9118 L:      linux-wpan@vger.kernel.org
9119 S:      Maintained
9120 W:      https://linux-wpan.org/
9121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9123 F:      Documentation/networking/ieee802154.rst
9124 F:      drivers/net/ieee802154/
9125 F:      include/linux/ieee802154.h
9126 F:      include/linux/nl802154.h
9127 F:      include/net/af_ieee802154.h
9128 F:      include/net/cfg802154.h
9129 F:      include/net/ieee802154_netdev.h
9130 F:      include/net/mac802154.h
9131 F:      include/net/nl802154.h
9132 F:      net/ieee802154/
9133 F:      net/mac802154/
9134
9135 IFE PROTOCOL
9136 M:      Yotam Gigi <yotam.gi@gmail.com>
9137 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9138 F:      include/net/ife.h
9139 F:      include/uapi/linux/ife.h
9140 F:      net/ife
9141
9142 IGORPLUG-USB IR RECEIVER
9143 M:      Sean Young <sean@mess.org>
9144 L:      linux-media@vger.kernel.org
9145 S:      Maintained
9146 F:      drivers/media/rc/igorplugusb.c
9147
9148 IGUANAWORKS USB IR TRANSCEIVER
9149 M:      Sean Young <sean@mess.org>
9150 L:      linux-media@vger.kernel.org
9151 S:      Maintained
9152 F:      drivers/media/rc/iguanair.c
9153
9154 IIO DIGITAL POTENTIOMETER DAC
9155 M:      Peter Rosin <peda@axentia.se>
9156 L:      linux-iio@vger.kernel.org
9157 S:      Maintained
9158 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9159 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9160 F:      drivers/iio/dac/dpot-dac.c
9161
9162 IIO ENVELOPE DETECTOR
9163 M:      Peter Rosin <peda@axentia.se>
9164 L:      linux-iio@vger.kernel.org
9165 S:      Maintained
9166 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9167 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9168 F:      drivers/iio/adc/envelope-detector.c
9169
9170 IIO MULTIPLEXER
9171 M:      Peter Rosin <peda@axentia.se>
9172 L:      linux-iio@vger.kernel.org
9173 S:      Maintained
9174 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9175 F:      drivers/iio/multiplexer/iio-mux.c
9176
9177 IIO SCMI BASED DRIVER
9178 M:      Jyoti Bhayana <jbhayana@google.com>
9179 L:      linux-iio@vger.kernel.org
9180 S:      Maintained
9181 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9182
9183 IIO SUBSYSTEM AND DRIVERS
9184 M:      Jonathan Cameron <jic23@kernel.org>
9185 R:      Lars-Peter Clausen <lars@metafoo.de>
9186 L:      linux-iio@vger.kernel.org
9187 S:      Maintained
9188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9189 F:      Documentation/ABI/testing/configfs-iio*
9190 F:      Documentation/ABI/testing/sysfs-bus-iio*
9191 F:      Documentation/devicetree/bindings/iio/
9192 F:      drivers/iio/
9193 F:      drivers/staging/iio/
9194 F:      include/linux/iio/
9195 F:      tools/iio/
9196
9197 IIO UNIT CONVERTER
9198 M:      Peter Rosin <peda@axentia.se>
9199 L:      linux-iio@vger.kernel.org
9200 S:      Maintained
9201 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9202 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9203 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9204 F:      drivers/iio/afe/iio-rescale.c
9205
9206 IKANOS/ADI EAGLE ADSL USB DRIVER
9207 M:      Matthieu Castet <castet.matthieu@free.fr>
9208 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9209 S:      Maintained
9210 F:      drivers/usb/atm/ueagle-atm.c
9211
9212 IMGTEC ASCII LCD DRIVER
9213 M:      Paul Burton <paulburton@kernel.org>
9214 S:      Maintained
9215 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9216 F:      drivers/auxdisplay/img-ascii-lcd.c
9217
9218 IMGTEC IR DECODER DRIVER
9219 S:      Orphan
9220 F:      drivers/media/rc/img-ir/
9221
9222 IMON SOUNDGRAPH USB IR RECEIVER
9223 M:      Sean Young <sean@mess.org>
9224 L:      linux-media@vger.kernel.org
9225 S:      Maintained
9226 F:      drivers/media/rc/imon.c
9227 F:      drivers/media/rc/imon_raw.c
9228
9229 IMS TWINTURBO FRAMEBUFFER DRIVER
9230 L:      linux-fbdev@vger.kernel.org
9231 S:      Orphan
9232 F:      drivers/video/fbdev/imsttfb.c
9233
9234 INA209 HARDWARE MONITOR DRIVER
9235 M:      Guenter Roeck <linux@roeck-us.net>
9236 L:      linux-hwmon@vger.kernel.org
9237 S:      Maintained
9238 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9239 F:      Documentation/hwmon/ina209.rst
9240 F:      drivers/hwmon/ina209.c
9241
9242 INA2XX HARDWARE MONITOR DRIVER
9243 M:      Guenter Roeck <linux@roeck-us.net>
9244 L:      linux-hwmon@vger.kernel.org
9245 S:      Maintained
9246 F:      Documentation/hwmon/ina2xx.rst
9247 F:      drivers/hwmon/ina2xx.c
9248 F:      include/linux/platform_data/ina2xx.h
9249
9250 INDUSTRY PACK SUBSYSTEM (IPACK)
9251 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9252 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9253 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9254 L:      industrypack-devel@lists.sourceforge.net
9255 S:      Maintained
9256 W:      http://industrypack.sourceforge.net
9257 F:      drivers/ipack/
9258
9259 INFINEON DPS310 Driver
9260 M:      Eddie James <eajames@linux.ibm.com>
9261 L:      linux-iio@vger.kernel.org
9262 S:      Maintained
9263 F:      drivers/iio/pressure/dps310.c
9264
9265 INFINIBAND SUBSYSTEM
9266 M:      Doug Ledford <dledford@redhat.com>
9267 M:      Jason Gunthorpe <jgg@nvidia.com>
9268 L:      linux-rdma@vger.kernel.org
9269 S:      Supported
9270 W:      https://github.com/linux-rdma/rdma-core
9271 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9273 F:      Documentation/devicetree/bindings/infiniband/
9274 F:      Documentation/infiniband/
9275 F:      drivers/infiniband/
9276 F:      include/rdma/
9277 F:      include/trace/events/ib_mad.h
9278 F:      include/trace/events/ib_umad.h
9279 F:      include/uapi/linux/if_infiniband.h
9280 F:      include/uapi/rdma/
9281 F:      samples/bpf/ibumad_kern.c
9282 F:      samples/bpf/ibumad_user.c
9283
9284 INGENIC JZ4780 NAND DRIVER
9285 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9286 L:      linux-mtd@lists.infradead.org
9287 L:      linux-mips@vger.kernel.org
9288 S:      Maintained
9289 F:      drivers/mtd/nand/raw/ingenic/
9290
9291 INGENIC JZ47xx SoCs
9292 M:      Paul Cercueil <paul@crapouillou.net>
9293 L:      linux-mips@vger.kernel.org
9294 S:      Maintained
9295 F:      arch/mips/boot/dts/ingenic/
9296 F:      arch/mips/generic/board-ingenic.c
9297 F:      arch/mips/include/asm/mach-ingenic/
9298 F:      arch/mips/ingenic/Kconfig
9299 F:      drivers/clk/ingenic/
9300 F:      drivers/dma/dma-jz4780.c
9301 F:      drivers/gpu/drm/ingenic/
9302 F:      drivers/i2c/busses/i2c-jz4780.c
9303 F:      drivers/iio/adc/ingenic-adc.c
9304 F:      drivers/irqchip/irq-ingenic.c
9305 F:      drivers/memory/jz4780-nemc.c
9306 F:      drivers/mmc/host/jz4740_mmc.c
9307 F:      drivers/mtd/nand/raw/ingenic/
9308 F:      drivers/pinctrl/pinctrl-ingenic.c
9309 F:      drivers/power/supply/ingenic-battery.c
9310 F:      drivers/pwm/pwm-jz4740.c
9311 F:      drivers/remoteproc/ingenic_rproc.c
9312 F:      drivers/rtc/rtc-jz4740.c
9313 F:      drivers/tty/serial/8250/8250_ingenic.c
9314 F:      drivers/usb/musb/jz4740.c
9315 F:      drivers/watchdog/jz4740_wdt.c
9316 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9317 F:      include/linux/mfd/ingenic-tcu.h
9318 F:      sound/soc/codecs/jz47*
9319 F:      sound/soc/jz4740/
9320
9321 INOTIFY
9322 M:      Jan Kara <jack@suse.cz>
9323 R:      Amir Goldstein <amir73il@gmail.com>
9324 L:      linux-fsdevel@vger.kernel.org
9325 S:      Maintained
9326 F:      Documentation/filesystems/inotify.rst
9327 F:      fs/notify/inotify/
9328 F:      include/linux/inotify.h
9329 F:      include/uapi/linux/inotify.h
9330
9331 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9332 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9333 L:      linux-input@vger.kernel.org
9334 S:      Maintained
9335 Q:      http://patchwork.kernel.org/project/linux-input/list/
9336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9337 F:      Documentation/devicetree/bindings/input/
9338 F:      Documentation/devicetree/bindings/serio/
9339 F:      Documentation/input/
9340 F:      drivers/input/
9341 F:      include/linux/input.h
9342 F:      include/linux/input/
9343 F:      include/uapi/linux/input-event-codes.h
9344 F:      include/uapi/linux/input.h
9345
9346 INPUT MULTITOUCH (MT) PROTOCOL
9347 M:      Henrik Rydberg <rydberg@bitmath.org>
9348 L:      linux-input@vger.kernel.org
9349 S:      Odd fixes
9350 F:      Documentation/input/multi-touch-protocol.rst
9351 F:      drivers/input/input-mt.c
9352 K:      \b(ABS|SYN)_MT_
9353
9354 INSIDE SECURE CRYPTO DRIVER
9355 M:      Antoine Tenart <atenart@kernel.org>
9356 L:      linux-crypto@vger.kernel.org
9357 S:      Maintained
9358 F:      drivers/crypto/inside-secure/
9359
9360 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9361 M:      Mimi Zohar <zohar@linux.ibm.com>
9362 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9363 L:      linux-integrity@vger.kernel.org
9364 S:      Supported
9365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9366 F:      security/integrity/ima/
9367
9368 INTEL 810/815 FRAMEBUFFER DRIVER
9369 M:      Antonino Daplas <adaplas@gmail.com>
9370 L:      linux-fbdev@vger.kernel.org
9371 S:      Maintained
9372 F:      drivers/video/fbdev/i810/
9373
9374 INTEL ASoC DRIVERS
9375 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9376 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9377 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9378 M:      Jie Yang <yang.jie@linux.intel.com>
9379 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9380 S:      Supported
9381 F:      sound/soc/intel/
9382
9383 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9384 M:      Hans de Goede <hdegoede@redhat.com>
9385 L:      platform-driver-x86@vger.kernel.org
9386 S:      Maintained
9387 F:      drivers/platform/x86/intel/atomisp2/pm.c
9388
9389 INTEL ATOMISP2 LED DRIVER
9390 M:      Hans de Goede <hdegoede@redhat.com>
9391 L:      platform-driver-x86@vger.kernel.org
9392 S:      Maintained
9393 F:      drivers/platform/x86/intel/atomisp2/led.c
9394
9395 INTEL BIOS SAR INT1092 DRIVER
9396 M:      Shravan Sudhakar <s.shravan@intel.com>
9397 M:      Intel Corporation <linuxwwan@intel.com>
9398 L:      platform-driver-x86@vger.kernel.org
9399 S:      Maintained
9400 F:      drivers/platform/x86/intel/int1092/
9401
9402 INTEL BROXTON PMC DRIVER
9403 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9404 M:      Zha Qipeng <qipeng.zha@intel.com>
9405 S:      Maintained
9406 F:      drivers/mfd/intel_pmc_bxt.c
9407 F:      include/linux/mfd/intel_pmc_bxt.h
9408
9409 INTEL C600 SERIES SAS CONTROLLER DRIVER
9410 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9411 L:      linux-scsi@vger.kernel.org
9412 S:      Supported
9413 T:      git git://git.code.sf.net/p/intel-sas/isci
9414 F:      drivers/scsi/isci/
9415
9416 INTEL CPU family model numbers
9417 M:      Tony Luck <tony.luck@intel.com>
9418 M:      x86@kernel.org
9419 L:      linux-kernel@vger.kernel.org
9420 S:      Supported
9421 F:      arch/x86/include/asm/intel-family.h
9422
9423 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9424 M:      Jani Nikula <jani.nikula@linux.intel.com>
9425 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9426 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9427 L:      intel-gfx@lists.freedesktop.org
9428 S:      Supported
9429 W:      https://01.org/linuxgraphics/
9430 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9431 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9432 C:      irc://irc.oftc.net/intel-gfx
9433 T:      git git://anongit.freedesktop.org/drm-intel
9434 F:      Documentation/gpu/i915.rst
9435 F:      drivers/gpu/drm/i915/
9436 F:      include/drm/i915*
9437 F:      include/uapi/drm/i915_drm.h
9438
9439 INTEL ETHERNET DRIVERS
9440 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9441 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9442 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9443 S:      Supported
9444 W:      http://www.intel.com/support/feedback.htm
9445 W:      http://e1000.sourceforge.net/
9446 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9449 F:      Documentation/networking/device_drivers/ethernet/intel/
9450 F:      drivers/net/ethernet/intel/
9451 F:      drivers/net/ethernet/intel/*/
9452 F:      include/linux/avf/virtchnl.h
9453 F:      include/linux/net/intel/iidc.h
9454
9455 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9456 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9457 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9458 L:      linux-rdma@vger.kernel.org
9459 S:      Supported
9460 F:      drivers/infiniband/hw/irdma/
9461 F:      include/uapi/rdma/irdma-abi.h
9462
9463 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9464 M:      Maik Broemme <mbroemme@libmpq.org>
9465 L:      linux-fbdev@vger.kernel.org
9466 S:      Maintained
9467 F:      Documentation/fb/intelfb.rst
9468 F:      drivers/video/fbdev/intelfb/
9469
9470 INTEL GPIO DRIVERS
9471 M:      Andy Shevchenko <andy@kernel.org>
9472 L:      linux-gpio@vger.kernel.org
9473 S:      Maintained
9474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9475 F:      drivers/gpio/gpio-ich.c
9476 F:      drivers/gpio/gpio-merrifield.c
9477 F:      drivers/gpio/gpio-ml-ioh.c
9478 F:      drivers/gpio/gpio-pch.c
9479 F:      drivers/gpio/gpio-sch.c
9480 F:      drivers/gpio/gpio-sodaville.c
9481
9482 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9483 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9484 M:      Zhi Wang <zhi.a.wang@intel.com>
9485 L:      intel-gvt-dev@lists.freedesktop.org
9486 L:      intel-gfx@lists.freedesktop.org
9487 S:      Supported
9488 W:      https://01.org/igvt-g
9489 T:      git https://github.com/intel/gvt-linux.git
9490 F:      drivers/gpu/drm/i915/gvt/
9491
9492 INTEL HID EVENT DRIVER
9493 M:      Alex Hung <alex.hung@canonical.com>
9494 L:      platform-driver-x86@vger.kernel.org
9495 S:      Maintained
9496 F:      drivers/platform/x86/intel/hid.c
9497
9498 INTEL I/OAT DMA DRIVER
9499 M:      Dave Jiang <dave.jiang@intel.com>
9500 R:      Dan Williams <dan.j.williams@intel.com>
9501 L:      dmaengine@vger.kernel.org
9502 S:      Supported
9503 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9504 F:      drivers/dma/ioat*
9505
9506 INTEL IADX DRIVER
9507 M:      Dave Jiang <dave.jiang@intel.com>
9508 L:      dmaengine@vger.kernel.org
9509 S:      Supported
9510 F:      drivers/dma/idxd/*
9511 F:      include/uapi/linux/idxd.h
9512
9513 INTEL IDLE DRIVER
9514 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9515 M:      Len Brown <lenb@kernel.org>
9516 L:      linux-pm@vger.kernel.org
9517 S:      Supported
9518 B:      https://bugzilla.kernel.org
9519 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9520 F:      drivers/idle/intel_idle.c
9521
9522 INTEL INTEGRATED SENSOR HUB DRIVER
9523 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9524 M:      Jiri Kosina <jikos@kernel.org>
9525 L:      linux-input@vger.kernel.org
9526 S:      Maintained
9527 F:      drivers/hid/intel-ish-hid/
9528
9529 INTEL IOMMU (VT-d)
9530 M:      David Woodhouse <dwmw2@infradead.org>
9531 M:      Lu Baolu <baolu.lu@linux.intel.com>
9532 L:      iommu@lists.linux-foundation.org
9533 S:      Supported
9534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9535 F:      drivers/iommu/intel/
9536 F:      include/linux/intel-iommu.h
9537 F:      include/linux/intel-svm.h
9538
9539 INTEL IOP-ADMA DMA DRIVER
9540 R:      Dan Williams <dan.j.williams@intel.com>
9541 S:      Odd fixes
9542 F:      drivers/dma/iop-adma.c
9543
9544 INTEL IPU3 CSI-2 CIO2 DRIVER
9545 M:      Yong Zhi <yong.zhi@intel.com>
9546 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9547 M:      Bingbu Cao <bingbu.cao@intel.com>
9548 M:      Dan Scally <djrscally@gmail.com>
9549 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9550 L:      linux-media@vger.kernel.org
9551 S:      Maintained
9552 T:      git git://linuxtv.org/media_tree.git
9553 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9554 F:      drivers/media/pci/intel/ipu3/
9555
9556 INTEL IPU3 CSI-2 IMGU DRIVER
9557 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9558 R:      Bingbu Cao <bingbu.cao@intel.com>
9559 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9560 L:      linux-media@vger.kernel.org
9561 S:      Maintained
9562 F:      Documentation/admin-guide/media/ipu3.rst
9563 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9564 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9565 F:      drivers/staging/media/ipu3/
9566
9567 INTEL IXP4XX CRYPTO SUPPORT
9568 M:      Corentin Labbe <clabbe@baylibre.com>
9569 L:      linux-crypto@vger.kernel.org
9570 S:      Maintained
9571 F:      drivers/crypto/ixp4xx_crypto.c
9572
9573 INTEL ISHTP ECLITE DRIVER
9574 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
9575 L:      platform-driver-x86@vger.kernel.org
9576 S:      Supported
9577 F:      drivers/platform/x86/intel/ishtp_eclite.c
9578
9579 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9580 M:      Krzysztof Halasa <khalasa@piap.pl>
9581 S:      Maintained
9582 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9583 F:      drivers/net/wan/ixp4xx_hss.c
9584 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9585 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9586 F:      include/linux/soc/ixp4xx/npe.h
9587 F:      include/linux/soc/ixp4xx/qmgr.h
9588
9589 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9590 M:      Deepak Saxena <dsaxena@plexity.net>
9591 S:      Maintained
9592 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
9593 F:      drivers/char/hw_random/ixp4xx-rng.c
9594
9595 INTEL KEEM BAY DRM DRIVER
9596 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9597 M:      Edmund Dea <edmund.j.dea@intel.com>
9598 S:      Maintained
9599 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9600 F:      drivers/gpu/drm/kmb/
9601
9602 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9603 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9604 S:      Maintained
9605 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9606 F:      drivers/crypto/keembay/Kconfig
9607 F:      drivers/crypto/keembay/Makefile
9608 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9609 F:      drivers/crypto/keembay/ocs-aes.c
9610 F:      drivers/crypto/keembay/ocs-aes.h
9611
9612 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
9613 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9614 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
9615 M:      Mark Gross <mgross@linux.intel.com>
9616 S:      Maintained
9617 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
9618 F:      drivers/crypto/keembay/Kconfig
9619 F:      drivers/crypto/keembay/Makefile
9620 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
9621 F:      drivers/crypto/keembay/ocs-ecc-curve-defs.h
9622
9623 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9624 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9625 M:      Declan Murphy <declan.murphy@intel.com>
9626 S:      Maintained
9627 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9628 F:      drivers/crypto/keembay/Kconfig
9629 F:      drivers/crypto/keembay/Makefile
9630 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9631 F:      drivers/crypto/keembay/ocs-hcu.c
9632 F:      drivers/crypto/keembay/ocs-hcu.h
9633
9634 INTEL MANAGEMENT ENGINE (mei)
9635 M:      Tomas Winkler <tomas.winkler@intel.com>
9636 L:      linux-kernel@vger.kernel.org
9637 S:      Supported
9638 F:      Documentation/driver-api/mei/*
9639 F:      drivers/misc/mei/
9640 F:      drivers/watchdog/mei_wdt.c
9641 F:      include/linux/mei_cl_bus.h
9642 F:      include/uapi/linux/mei.h
9643 F:      samples/mei/*
9644
9645 INTEL MAX 10 BMC MFD DRIVER
9646 M:      Xu Yilun <yilun.xu@intel.com>
9647 R:      Tom Rix <trix@redhat.com>
9648 S:      Maintained
9649 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9650 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9651 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9652 F:      drivers/mfd/intel-m10-bmc.c
9653 F:      include/linux/mfd/intel-m10-bmc.h
9654
9655 INTEL MENLOW THERMAL DRIVER
9656 M:      Sujith Thomas <sujith.thomas@intel.com>
9657 L:      linux-pm@vger.kernel.org
9658 S:      Supported
9659 W:      https://01.org/linux-acpi
9660 F:      drivers/thermal/intel/intel_menlow.c
9661
9662 INTEL P-Unit IPC DRIVER
9663 M:      Zha Qipeng <qipeng.zha@intel.com>
9664 L:      platform-driver-x86@vger.kernel.org
9665 S:      Maintained
9666 F:      arch/x86/include/asm/intel_punit_ipc.h
9667 F:      drivers/platform/x86/intel/punit_ipc.c
9668
9669 INTEL PMC CORE DRIVER
9670 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9671 M:      David E Box <david.e.box@intel.com>
9672 L:      platform-driver-x86@vger.kernel.org
9673 S:      Maintained
9674 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
9675 F:      drivers/platform/x86/intel/pmc/
9676
9677 INTEL PMIC GPIO DRIVERS
9678 M:      Andy Shevchenko <andy@kernel.org>
9679 S:      Maintained
9680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9681 F:      drivers/gpio/gpio-*cove.c
9682
9683 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9684 M:      Andy Shevchenko <andy@kernel.org>
9685 S:      Maintained
9686 F:      drivers/mfd/intel_soc_pmic*
9687 F:      include/linux/mfd/intel_soc_pmic*
9688
9689 INTEL PMT DRIVER
9690 M:      "David E. Box" <david.e.box@linux.intel.com>
9691 S:      Maintained
9692 F:      drivers/mfd/intel_pmt.c
9693 F:      drivers/platform/x86/intel/pmt/
9694
9695 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9696 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9697 L:      linux-wireless@vger.kernel.org
9698 S:      Maintained
9699 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9700 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9701 F:      drivers/net/wireless/intel/ipw2x00/
9702
9703 INTEL PSTATE DRIVER
9704 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9705 M:      Len Brown <lenb@kernel.org>
9706 L:      linux-pm@vger.kernel.org
9707 S:      Supported
9708 F:      drivers/cpufreq/intel_pstate.c
9709
9710 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
9711 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9712 L:      linux-iio@vger.kernel.org
9713 F:      drivers/counter/intel-qep.c
9714
9715 INTEL SCU DRIVERS
9716 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9717 S:      Maintained
9718 F:      arch/x86/include/asm/intel_scu_ipc.h
9719 F:      drivers/platform/x86/intel_scu_*
9720
9721 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
9722 M:      Daniel Scally <djrscally@gmail.com>
9723 S:      Maintained
9724 F:      drivers/platform/x86/intel/int3472/
9725
9726 INTEL SPEED SELECT TECHNOLOGY
9727 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9728 L:      platform-driver-x86@vger.kernel.org
9729 S:      Maintained
9730 F:      drivers/platform/x86/intel/speed_select_if/
9731 F:      include/uapi/linux/isst_if.h
9732 F:      tools/power/x86/intel-speed-select/
9733
9734 INTEL STRATIX10 FIRMWARE DRIVERS
9735 M:      Dinh Nguyen <dinguyen@kernel.org>
9736 L:      linux-kernel@vger.kernel.org
9737 S:      Maintained
9738 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9739 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9740 F:      drivers/firmware/stratix10-rsu.c
9741 F:      drivers/firmware/stratix10-svc.c
9742 F:      include/linux/firmware/intel/stratix10-smc.h
9743 F:      include/linux/firmware/intel/stratix10-svc-client.h
9744
9745 INTEL TELEMETRY DRIVER
9746 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9747 M:      "David E. Box" <david.e.box@linux.intel.com>
9748 L:      platform-driver-x86@vger.kernel.org
9749 S:      Maintained
9750 F:      arch/x86/include/asm/intel_telemetry.h
9751 F:      drivers/platform/x86/intel/telemetry/
9752
9753 INTEL UNCORE FREQUENCY CONTROL
9754 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9755 L:      platform-driver-x86@vger.kernel.org
9756 S:      Maintained
9757 F:      drivers/platform/x86/intel/uncore-frequency.c
9758
9759 INTEL VIRTUAL BUTTON DRIVER
9760 M:      AceLan Kao <acelan.kao@canonical.com>
9761 L:      platform-driver-x86@vger.kernel.org
9762 S:      Maintained
9763 F:      drivers/platform/x86/intel/vbtn.c
9764
9765 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9766 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9767 L:      linux-wireless@vger.kernel.org
9768 S:      Supported
9769 F:      drivers/net/wireless/intel/iwlegacy/
9770
9771 INTEL WIRELESS WIFI LINK (iwlwifi)
9772 M:      Luca Coelho <luciano.coelho@intel.com>
9773 L:      linux-wireless@vger.kernel.org
9774 S:      Supported
9775 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9777 F:      drivers/net/wireless/intel/iwlwifi/
9778
9779 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9780 M:      Jithu Joseph <jithu.joseph@intel.com>
9781 R:      Maurice Ma <maurice.ma@intel.com>
9782 S:      Maintained
9783 W:      https://slimbootloader.github.io/security/firmware-update.html
9784 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
9785
9786 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9787 L:      Dell.Client.Kernel@dell.com
9788 S:      Maintained
9789 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
9790
9791 INTEL WWAN IOSM DRIVER
9792 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
9793 M:      Intel Corporation <linuxwwan@intel.com>
9794 L:      netdev@vger.kernel.org
9795 S:      Maintained
9796 F:      drivers/net/wwan/iosm/
9797
9798 INTEL(R) TRACE HUB
9799 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9800 S:      Supported
9801 F:      Documentation/trace/intel_th.rst
9802 F:      drivers/hwtracing/intel_th/
9803 F:      include/linux/intel_th.h
9804
9805 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9806 M:      Ning Sun <ning.sun@intel.com>
9807 L:      tboot-devel@lists.sourceforge.net
9808 S:      Supported
9809 W:      http://tboot.sourceforge.net
9810 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9811 F:      Documentation/x86/intel_txt.rst
9812 F:      arch/x86/kernel/tboot.c
9813 F:      include/linux/tboot.h
9814
9815 INTEL SGX
9816 M:      Jarkko Sakkinen <jarkko@kernel.org>
9817 R:      Dave Hansen <dave.hansen@linux.intel.com>
9818 L:      linux-sgx@vger.kernel.org
9819 S:      Supported
9820 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9821 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9822 F:      Documentation/x86/sgx.rst
9823 F:      arch/x86/entry/vdso/vsgx.S
9824 F:      arch/x86/include/asm/sgx.h
9825 F:      arch/x86/include/uapi/asm/sgx.h
9826 F:      arch/x86/kernel/cpu/sgx/*
9827 F:      tools/testing/selftests/sgx/*
9828 K:      \bSGX_
9829
9830 INTERCONNECT API
9831 M:      Georgi Djakov <djakov@kernel.org>
9832 L:      linux-pm@vger.kernel.org
9833 S:      Maintained
9834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
9835 F:      Documentation/devicetree/bindings/interconnect/
9836 F:      Documentation/driver-api/interconnect.rst
9837 F:      drivers/interconnect/
9838 F:      include/dt-bindings/interconnect/
9839 F:      include/linux/interconnect-provider.h
9840 F:      include/linux/interconnect.h
9841
9842 INTERRUPT COUNTER DRIVER
9843 M:      Oleksij Rempel <o.rempel@pengutronix.de>
9844 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
9845 L:      linux-iio@vger.kernel.org
9846 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
9847 F:      drivers/counter/interrupt-cnt.c
9848
9849 INVENSENSE ICM-426xx IMU DRIVER
9850 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9851 L:      linux-iio@vger.kernel.org
9852 S:      Maintained
9853 W:      https://invensense.tdk.com/
9854 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9855 F:      drivers/iio/imu/inv_icm42600/
9856
9857 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9858 M:      Linus Walleij <linus.walleij@linaro.org>
9859 L:      linux-iio@vger.kernel.org
9860 S:      Maintained
9861 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
9862 F:      drivers/iio/gyro/mpu3050*
9863
9864 IOC3 ETHERNET DRIVER
9865 M:      Ralf Baechle <ralf@linux-mips.org>
9866 L:      linux-mips@vger.kernel.org
9867 S:      Maintained
9868 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9869
9870 IOMAP FILESYSTEM LIBRARY
9871 M:      Christoph Hellwig <hch@infradead.org>
9872 M:      Darrick J. Wong <djwong@kernel.org>
9873 M:      linux-xfs@vger.kernel.org
9874 M:      linux-fsdevel@vger.kernel.org
9875 L:      linux-xfs@vger.kernel.org
9876 L:      linux-fsdevel@vger.kernel.org
9877 S:      Supported
9878 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9879 F:      fs/iomap/
9880 F:      include/linux/iomap.h
9881
9882 IOMMU DRIVERS
9883 M:      Joerg Roedel <joro@8bytes.org>
9884 M:      Will Deacon <will@kernel.org>
9885 L:      iommu@lists.linux-foundation.org
9886 S:      Maintained
9887 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9888 F:      Documentation/devicetree/bindings/iommu/
9889 F:      Documentation/userspace-api/iommu.rst
9890 F:      drivers/iommu/
9891 F:      include/linux/iommu.h
9892 F:      include/linux/iova.h
9893 F:      include/linux/of_iommu.h
9894 F:      include/uapi/linux/iommu.h
9895
9896 IO_URING
9897 M:      Jens Axboe <axboe@kernel.dk>
9898 R:      Pavel Begunkov <asml.silence@gmail.com>
9899 L:      io-uring@vger.kernel.org
9900 S:      Maintained
9901 T:      git git://git.kernel.dk/linux-block
9902 T:      git git://git.kernel.dk/liburing
9903 F:      fs/io-wq.c
9904 F:      fs/io-wq.h
9905 F:      fs/io_uring.c
9906 F:      include/linux/io_uring.h
9907 F:      include/uapi/linux/io_uring.h
9908 F:      tools/io_uring/
9909
9910 IPMI SUBSYSTEM
9911 M:      Corey Minyard <minyard@acm.org>
9912 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9913 S:      Supported
9914 W:      http://openipmi.sourceforge.net/
9915 F:      Documentation/driver-api/ipmi.rst
9916 F:      Documentation/devicetree/bindings/ipmi/
9917 F:      drivers/char/ipmi/
9918 F:      include/linux/ipmi*
9919 F:      include/uapi/linux/ipmi*
9920
9921 IPS SCSI RAID DRIVER
9922 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9923 L:      linux-scsi@vger.kernel.org
9924 S:      Maintained
9925 W:      http://www.adaptec.com/
9926 F:      drivers/scsi/ips*
9927
9928 IPVS
9929 M:      Simon Horman <horms@verge.net.au>
9930 M:      Julian Anastasov <ja@ssi.bg>
9931 L:      netdev@vger.kernel.org
9932 L:      lvs-devel@vger.kernel.org
9933 S:      Maintained
9934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9936 F:      Documentation/networking/ipvs-sysctl.rst
9937 F:      include/net/ip_vs.h
9938 F:      include/uapi/linux/ip_vs.h
9939 F:      net/netfilter/ipvs/
9940
9941 IPWIRELESS DRIVER
9942 M:      Jiri Kosina <jikos@kernel.org>
9943 M:      David Sterba <dsterba@suse.com>
9944 S:      Odd Fixes
9945 F:      drivers/tty/ipwireless/
9946
9947 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9948 M:      Marc Zyngier <maz@kernel.org>
9949 S:      Maintained
9950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9951 F:      Documentation/core-api/irq/irq-domain.rst
9952 F:      include/linux/irqdomain.h
9953 F:      kernel/irq/irqdomain.c
9954 F:      kernel/irq/msi.c
9955
9956 IRQ SUBSYSTEM
9957 M:      Thomas Gleixner <tglx@linutronix.de>
9958 L:      linux-kernel@vger.kernel.org
9959 S:      Maintained
9960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9961 F:      kernel/irq/
9962
9963 IRQCHIP DRIVERS
9964 M:      Thomas Gleixner <tglx@linutronix.de>
9965 M:      Marc Zyngier <maz@kernel.org>
9966 L:      linux-kernel@vger.kernel.org
9967 S:      Maintained
9968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9969 F:      Documentation/devicetree/bindings/interrupt-controller/
9970 F:      drivers/irqchip/
9971
9972 ISA
9973 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9974 S:      Maintained
9975 F:      Documentation/driver-api/isa.rst
9976 F:      drivers/base/isa.c
9977 F:      include/linux/isa.h
9978
9979 ISA RADIO MODULE
9980 M:      Hans Verkuil <hverkuil@xs4all.nl>
9981 L:      linux-media@vger.kernel.org
9982 S:      Maintained
9983 W:      https://linuxtv.org
9984 T:      git git://linuxtv.org/media_tree.git
9985 F:      drivers/media/radio/radio-isa*
9986
9987 ISAPNP
9988 M:      Jaroslav Kysela <perex@perex.cz>
9989 S:      Maintained
9990 F:      Documentation/driver-api/isapnp.rst
9991 F:      drivers/pnp/isapnp/
9992 F:      include/linux/isapnp.h
9993
9994 ISCSI
9995 M:      Lee Duncan <lduncan@suse.com>
9996 M:      Chris Leech <cleech@redhat.com>
9997 L:      open-iscsi@googlegroups.com
9998 L:      linux-scsi@vger.kernel.org
9999 S:      Maintained
10000 W:      www.open-iscsi.com
10001 F:      drivers/scsi/*iscsi*
10002 F:      include/scsi/*iscsi*
10003
10004 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10005 M:      Peter Jones <pjones@redhat.com>
10006 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10007 S:      Maintained
10008 F:      drivers/firmware/iscsi_ibft*
10009
10010 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10011 M:      Sagi Grimberg <sagi@grimberg.me>
10012 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10013 L:      linux-rdma@vger.kernel.org
10014 S:      Supported
10015 W:      http://www.openfabrics.org
10016 W:      www.open-iscsi.org
10017 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10018 F:      drivers/infiniband/ulp/iser/
10019
10020 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10021 M:      Sagi Grimberg <sagi@grimberg.me>
10022 L:      linux-rdma@vger.kernel.org
10023 L:      target-devel@vger.kernel.org
10024 S:      Supported
10025 W:      http://www.linux-iscsi.org
10026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10027 F:      drivers/infiniband/ulp/isert
10028
10029 ISDN/CMTP OVER BLUETOOTH
10030 M:      Karsten Keil <isdn@linux-pingi.de>
10031 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10032 L:      netdev@vger.kernel.org
10033 S:      Odd Fixes
10034 W:      http://www.isdn4linux.de
10035 F:      Documentation/isdn/
10036 F:      drivers/isdn/capi/
10037 F:      include/linux/isdn/
10038 F:      include/uapi/linux/isdn/
10039 F:      net/bluetooth/cmtp/
10040
10041 ISDN/mISDN SUBSYSTEM
10042 M:      Karsten Keil <isdn@linux-pingi.de>
10043 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10044 L:      netdev@vger.kernel.org
10045 S:      Maintained
10046 W:      http://www.isdn4linux.de
10047 F:      drivers/isdn/Kconfig
10048 F:      drivers/isdn/Makefile
10049 F:      drivers/isdn/hardware/
10050 F:      drivers/isdn/mISDN/
10051
10052 IT87 HARDWARE MONITORING DRIVER
10053 M:      Jean Delvare <jdelvare@suse.com>
10054 L:      linux-hwmon@vger.kernel.org
10055 S:      Maintained
10056 F:      Documentation/hwmon/it87.rst
10057 F:      drivers/hwmon/it87.c
10058
10059 IT913X MEDIA DRIVER
10060 M:      Antti Palosaari <crope@iki.fi>
10061 L:      linux-media@vger.kernel.org
10062 S:      Maintained
10063 W:      https://linuxtv.org
10064 W:      http://palosaari.fi/linux/
10065 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10066 T:      git git://linuxtv.org/anttip/media_tree.git
10067 F:      drivers/media/tuners/it913x*
10068
10069 ITE IT66121 HDMI BRIDGE DRIVER
10070 M:      Phong LE <ple@baylibre.com>
10071 M:      Neil Armstrong <narmstrong@baylibre.com>
10072 S:      Maintained
10073 T:      git git://anongit.freedesktop.org/drm/drm-misc
10074 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10075 F:      drivers/gpu/drm/bridge/ite-it66121.c
10076
10077 IVTV VIDEO4LINUX DRIVER
10078 M:      Andy Walls <awalls@md.metrocast.net>
10079 L:      linux-media@vger.kernel.org
10080 S:      Maintained
10081 W:      https://linuxtv.org
10082 T:      git git://linuxtv.org/media_tree.git
10083 F:      Documentation/admin-guide/media/ivtv*
10084 F:      drivers/media/pci/ivtv/
10085 F:      include/uapi/linux/ivtv*
10086
10087 IX2505V MEDIA DRIVER
10088 M:      Malcolm Priestley <tvboxspy@gmail.com>
10089 L:      linux-media@vger.kernel.org
10090 S:      Maintained
10091 W:      https://linuxtv.org
10092 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10093 F:      drivers/media/dvb-frontends/ix2505v*
10094
10095 JAILHOUSE HYPERVISOR INTERFACE
10096 M:      Jan Kiszka <jan.kiszka@siemens.com>
10097 L:      jailhouse-dev@googlegroups.com
10098 S:      Maintained
10099 F:      arch/x86/include/asm/jailhouse_para.h
10100 F:      arch/x86/kernel/jailhouse.c
10101
10102 JC42.4 TEMPERATURE SENSOR DRIVER
10103 M:      Guenter Roeck <linux@roeck-us.net>
10104 L:      linux-hwmon@vger.kernel.org
10105 S:      Maintained
10106 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10107 F:      Documentation/hwmon/jc42.rst
10108 F:      drivers/hwmon/jc42.c
10109
10110 JFS FILESYSTEM
10111 M:      Dave Kleikamp <shaggy@kernel.org>
10112 L:      jfs-discussion@lists.sourceforge.net
10113 S:      Maintained
10114 W:      http://jfs.sourceforge.net/
10115 T:      git git://github.com/kleikamp/linux-shaggy.git
10116 F:      Documentation/admin-guide/jfs.rst
10117 F:      fs/jfs/
10118
10119 JME NETWORK DRIVER
10120 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10121 L:      netdev@vger.kernel.org
10122 S:      Maintained
10123 F:      drivers/net/ethernet/jme.*
10124
10125 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10126 M:      David Woodhouse <dwmw2@infradead.org>
10127 M:      Richard Weinberger <richard@nod.at>
10128 L:      linux-mtd@lists.infradead.org
10129 S:      Odd Fixes
10130 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10131 T:      git git://git.infradead.org/ubifs-2.6.git
10132 F:      fs/jffs2/
10133 F:      include/uapi/linux/jffs2.h
10134
10135 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10136 M:      "Theodore Ts'o" <tytso@mit.edu>
10137 M:      Jan Kara <jack@suse.com>
10138 L:      linux-ext4@vger.kernel.org
10139 S:      Maintained
10140 F:      fs/jbd2/
10141 F:      include/linux/jbd2.h
10142
10143 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10144 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10145 L:      linux-media@vger.kernel.org
10146 L:      linux-renesas-soc@vger.kernel.org
10147 S:      Maintained
10148 F:      drivers/media/platform/rcar_jpu.c
10149
10150 JSM Neo PCI based serial card
10151 L:      linux-serial@vger.kernel.org
10152 S:      Orphan
10153 F:      drivers/tty/serial/jsm/
10154
10155 K10TEMP HARDWARE MONITORING DRIVER
10156 M:      Clemens Ladisch <clemens@ladisch.de>
10157 L:      linux-hwmon@vger.kernel.org
10158 S:      Maintained
10159 F:      Documentation/hwmon/k10temp.rst
10160 F:      drivers/hwmon/k10temp.c
10161
10162 K8TEMP HARDWARE MONITORING DRIVER
10163 M:      Rudolf Marek <r.marek@assembler.cz>
10164 L:      linux-hwmon@vger.kernel.org
10165 S:      Maintained
10166 F:      Documentation/hwmon/k8temp.rst
10167 F:      drivers/hwmon/k8temp.c
10168
10169 KASAN
10170 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10171 R:      Alexander Potapenko <glider@google.com>
10172 R:      Andrey Konovalov <andreyknvl@gmail.com>
10173 R:      Dmitry Vyukov <dvyukov@google.com>
10174 L:      kasan-dev@googlegroups.com
10175 S:      Maintained
10176 F:      Documentation/dev-tools/kasan.rst
10177 F:      arch/*/include/asm/*kasan.h
10178 F:      arch/*/mm/kasan_init*
10179 F:      include/linux/kasan*.h
10180 F:      lib/Kconfig.kasan
10181 F:      lib/test_kasan*.c
10182 F:      mm/kasan/
10183 F:      scripts/Makefile.kasan
10184
10185 KCONFIG
10186 M:      Masahiro Yamada <masahiroy@kernel.org>
10187 L:      linux-kbuild@vger.kernel.org
10188 S:      Maintained
10189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10190 F:      Documentation/kbuild/kconfig*
10191 F:      scripts/Kconfig.include
10192 F:      scripts/kconfig/
10193
10194 KCOV
10195 R:      Dmitry Vyukov <dvyukov@google.com>
10196 R:      Andrey Konovalov <andreyknvl@gmail.com>
10197 L:      kasan-dev@googlegroups.com
10198 S:      Maintained
10199 F:      Documentation/dev-tools/kcov.rst
10200 F:      include/linux/kcov.h
10201 F:      include/uapi/linux/kcov.h
10202 F:      kernel/kcov.c
10203 F:      scripts/Makefile.kcov
10204
10205 KCSAN
10206 M:      Marco Elver <elver@google.com>
10207 R:      Dmitry Vyukov <dvyukov@google.com>
10208 L:      kasan-dev@googlegroups.com
10209 S:      Maintained
10210 F:      Documentation/dev-tools/kcsan.rst
10211 F:      include/linux/kcsan*.h
10212 F:      kernel/kcsan/
10213 F:      lib/Kconfig.kcsan
10214 F:      scripts/Makefile.kcsan
10215
10216 KDUMP
10217 M:      Dave Young <dyoung@redhat.com>
10218 M:      Baoquan He <bhe@redhat.com>
10219 R:      Vivek Goyal <vgoyal@redhat.com>
10220 L:      kexec@lists.infradead.org
10221 S:      Maintained
10222 W:      http://lse.sourceforge.net/kdump/
10223 F:      Documentation/admin-guide/kdump/
10224 F:      fs/proc/vmcore.c
10225 F:      include/linux/crash_core.h
10226 F:      include/linux/crash_dump.h
10227 F:      include/uapi/linux/vmcore.h
10228 F:      kernel/crash_*.c
10229
10230 KEENE FM RADIO TRANSMITTER DRIVER
10231 M:      Hans Verkuil <hverkuil@xs4all.nl>
10232 L:      linux-media@vger.kernel.org
10233 S:      Maintained
10234 W:      https://linuxtv.org
10235 T:      git git://linuxtv.org/media_tree.git
10236 F:      drivers/media/radio/radio-keene*
10237
10238 KERNEL AUTOMOUNTER
10239 M:      Ian Kent <raven@themaw.net>
10240 L:      autofs@vger.kernel.org
10241 S:      Maintained
10242 F:      fs/autofs/
10243
10244 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10245 M:      Masahiro Yamada <masahiroy@kernel.org>
10246 M:      Michal Marek <michal.lkml@markovi.net>
10247 R:      Nick Desaulniers <ndesaulniers@google.com>
10248 L:      linux-kbuild@vger.kernel.org
10249 S:      Maintained
10250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10251 F:      Documentation/kbuild/
10252 F:      Makefile
10253 F:      scripts/*vmlinux*
10254 F:      scripts/Kbuild*
10255 F:      scripts/Makefile*
10256 F:      scripts/basic/
10257 F:      scripts/dummy-tools/
10258 F:      scripts/mk*
10259 F:      scripts/mod/
10260 F:      scripts/package/
10261
10262 KERNEL JANITORS
10263 L:      kernel-janitors@vger.kernel.org
10264 S:      Odd Fixes
10265 W:      http://kernelnewbies.org/KernelJanitors
10266
10267 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10268 M:      "J. Bruce Fields" <bfields@fieldses.org>
10269 M:      Chuck Lever <chuck.lever@oracle.com>
10270 L:      linux-nfs@vger.kernel.org
10271 S:      Supported
10272 W:      http://nfs.sourceforge.net/
10273 T:      git git://linux-nfs.org/~bfields/linux.git
10274 F:      fs/lockd/
10275 F:      fs/nfs_common/
10276 F:      fs/nfsd/
10277 F:      include/linux/lockd/
10278 F:      include/linux/sunrpc/
10279 F:      include/uapi/linux/nfsd/
10280 F:      include/uapi/linux/sunrpc/
10281 F:      net/sunrpc/
10282 F:      Documentation/filesystems/nfs/
10283
10284 KERNEL REGRESSIONS
10285 M:      Thorsten Leemhuis <linux@leemhuis.info>
10286 L:      regressions@lists.linux.dev
10287 S:      Supported
10288
10289 KERNEL SELFTEST FRAMEWORK
10290 M:      Shuah Khan <shuah@kernel.org>
10291 M:      Shuah Khan <skhan@linuxfoundation.org>
10292 L:      linux-kselftest@vger.kernel.org
10293 S:      Maintained
10294 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10296 F:      Documentation/dev-tools/kselftest*
10297 F:      tools/testing/selftests/
10298
10299 KERNEL SMB3 SERVER (KSMBD)
10300 M:      Namjae Jeon <linkinjeon@kernel.org>
10301 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
10302 M:      Steve French <sfrench@samba.org>
10303 M:      Hyunchul Lee <hyc.lee@gmail.com>
10304 L:      linux-cifs@vger.kernel.org
10305 S:      Maintained
10306 T:      git git://git.samba.org/ksmbd.git
10307 F:      fs/ksmbd/
10308 F:      fs/smbfs_common/
10309
10310 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10311 M:      Brendan Higgins <brendanhiggins@google.com>
10312 L:      linux-kselftest@vger.kernel.org
10313 L:      kunit-dev@googlegroups.com
10314 S:      Maintained
10315 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10316 F:      Documentation/dev-tools/kunit/
10317 F:      include/kunit/
10318 F:      lib/kunit/
10319 F:      tools/testing/kunit/
10320
10321 KERNEL USERMODE HELPER
10322 M:      Luis Chamberlain <mcgrof@kernel.org>
10323 L:      linux-kernel@vger.kernel.org
10324 S:      Maintained
10325 F:      include/linux/umh.h
10326 F:      kernel/umh.c
10327
10328 KERNEL VIRTUAL MACHINE (KVM)
10329 M:      Paolo Bonzini <pbonzini@redhat.com>
10330 L:      kvm@vger.kernel.org
10331 S:      Supported
10332 W:      http://www.linux-kvm.org
10333 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10334 F:      Documentation/virt/kvm/
10335 F:      include/asm-generic/kvm*
10336 F:      include/kvm/iodev.h
10337 F:      include/linux/kvm*
10338 F:      include/trace/events/kvm.h
10339 F:      include/uapi/asm-generic/kvm*
10340 F:      include/uapi/linux/kvm*
10341 F:      tools/kvm/
10342 F:      tools/testing/selftests/kvm/
10343 F:      virt/kvm/*
10344
10345 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10346 M:      Marc Zyngier <maz@kernel.org>
10347 R:      James Morse <james.morse@arm.com>
10348 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10349 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10350 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10351 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10352 S:      Maintained
10353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10354 F:      arch/arm64/include/asm/kvm*
10355 F:      arch/arm64/include/uapi/asm/kvm*
10356 F:      arch/arm64/kvm/
10357 F:      include/kvm/arm_*
10358 F:      tools/testing/selftests/kvm/*/aarch64/
10359 F:      tools/testing/selftests/kvm/aarch64/
10360
10361 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10362 M:      Huacai Chen <chenhuacai@kernel.org>
10363 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10364 L:      linux-mips@vger.kernel.org
10365 L:      kvm@vger.kernel.org
10366 S:      Maintained
10367 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10368 F:      arch/mips/include/asm/kvm*
10369 F:      arch/mips/include/uapi/asm/kvm*
10370 F:      arch/mips/kvm/
10371
10372 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10373 M:      Paul Mackerras <paulus@ozlabs.org>
10374 L:      kvm-ppc@vger.kernel.org
10375 S:      Supported
10376 W:      http://www.linux-kvm.org/
10377 T:      git git://github.com/agraf/linux-2.6.git
10378 F:      arch/powerpc/include/asm/kvm*
10379 F:      arch/powerpc/include/uapi/asm/kvm*
10380 F:      arch/powerpc/kernel/kvm*
10381 F:      arch/powerpc/kvm/
10382
10383 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
10384 M:      Anup Patel <anup.patel@wdc.com>
10385 R:      Atish Patra <atish.patra@wdc.com>
10386 L:      kvm@vger.kernel.org
10387 L:      kvm-riscv@lists.infradead.org
10388 L:      linux-riscv@lists.infradead.org
10389 S:      Maintained
10390 T:      git git://github.com/kvm-riscv/linux.git
10391 F:      arch/riscv/include/asm/kvm*
10392 F:      arch/riscv/include/uapi/asm/kvm*
10393 F:      arch/riscv/kvm/
10394
10395 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10396 M:      Christian Borntraeger <borntraeger@de.ibm.com>
10397 M:      Janosch Frank <frankja@linux.ibm.com>
10398 R:      David Hildenbrand <david@redhat.com>
10399 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10400 L:      kvm@vger.kernel.org
10401 S:      Supported
10402 W:      http://www.ibm.com/developerworks/linux/linux390/
10403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10404 F:      Documentation/virt/kvm/s390*
10405 F:      arch/s390/include/asm/gmap.h
10406 F:      arch/s390/include/asm/kvm*
10407 F:      arch/s390/include/uapi/asm/kvm*
10408 F:      arch/s390/kernel/uv.c
10409 F:      arch/s390/kvm/
10410 F:      arch/s390/mm/gmap.c
10411 F:      tools/testing/selftests/kvm/*/s390x/
10412 F:      tools/testing/selftests/kvm/s390x/
10413
10414 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10415 M:      Paolo Bonzini <pbonzini@redhat.com>
10416 R:      Sean Christopherson <seanjc@google.com>
10417 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10418 R:      Wanpeng Li <wanpengli@tencent.com>
10419 R:      Jim Mattson <jmattson@google.com>
10420 R:      Joerg Roedel <joro@8bytes.org>
10421 L:      kvm@vger.kernel.org
10422 S:      Supported
10423 W:      http://www.linux-kvm.org
10424 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10425 F:      arch/x86/include/asm/kvm*
10426 F:      arch/x86/include/asm/pvclock-abi.h
10427 F:      arch/x86/include/asm/svm.h
10428 F:      arch/x86/include/asm/vmx*.h
10429 F:      arch/x86/include/uapi/asm/kvm*
10430 F:      arch/x86/include/uapi/asm/svm.h
10431 F:      arch/x86/include/uapi/asm/vmx.h
10432 F:      arch/x86/kernel/kvm.c
10433 F:      arch/x86/kernel/kvmclock.c
10434 F:      arch/x86/kvm/
10435 F:      arch/x86/kvm/*/
10436
10437 KERNFS
10438 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10439 M:      Tejun Heo <tj@kernel.org>
10440 S:      Supported
10441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10442 F:      fs/kernfs/
10443 F:      include/linux/kernfs.h
10444
10445 KEXEC
10446 M:      Eric Biederman <ebiederm@xmission.com>
10447 L:      kexec@lists.infradead.org
10448 S:      Maintained
10449 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10450 F:      include/linux/kexec.h
10451 F:      include/uapi/linux/kexec.h
10452 F:      kernel/kexec*
10453
10454 KEYS-ENCRYPTED
10455 M:      Mimi Zohar <zohar@linux.ibm.com>
10456 L:      linux-integrity@vger.kernel.org
10457 L:      keyrings@vger.kernel.org
10458 S:      Supported
10459 F:      Documentation/security/keys/trusted-encrypted.rst
10460 F:      include/keys/encrypted-type.h
10461 F:      security/keys/encrypted-keys/
10462
10463 KEYS-TRUSTED
10464 M:      James Bottomley <jejb@linux.ibm.com>
10465 M:      Jarkko Sakkinen <jarkko@kernel.org>
10466 M:      Mimi Zohar <zohar@linux.ibm.com>
10467 L:      linux-integrity@vger.kernel.org
10468 L:      keyrings@vger.kernel.org
10469 S:      Supported
10470 F:      Documentation/security/keys/trusted-encrypted.rst
10471 F:      include/keys/trusted-type.h
10472 F:      include/keys/trusted_tpm.h
10473 F:      security/keys/trusted-keys/
10474
10475 KEYS-TRUSTED-TEE
10476 M:      Sumit Garg <sumit.garg@linaro.org>
10477 L:      linux-integrity@vger.kernel.org
10478 L:      keyrings@vger.kernel.org
10479 S:      Supported
10480 F:      include/keys/trusted_tee.h
10481 F:      security/keys/trusted-keys/trusted_tee.c
10482
10483 KEYS/KEYRINGS
10484 M:      David Howells <dhowells@redhat.com>
10485 M:      Jarkko Sakkinen <jarkko@kernel.org>
10486 L:      keyrings@vger.kernel.org
10487 S:      Maintained
10488 F:      Documentation/security/keys/core.rst
10489 F:      include/keys/
10490 F:      include/linux/key-type.h
10491 F:      include/linux/key.h
10492 F:      include/linux/keyctl.h
10493 F:      include/uapi/linux/keyctl.h
10494 F:      security/keys/
10495
10496 KFENCE
10497 M:      Alexander Potapenko <glider@google.com>
10498 M:      Marco Elver <elver@google.com>
10499 R:      Dmitry Vyukov <dvyukov@google.com>
10500 L:      kasan-dev@googlegroups.com
10501 S:      Maintained
10502 F:      Documentation/dev-tools/kfence.rst
10503 F:      arch/*/include/asm/kfence.h
10504 F:      include/linux/kfence.h
10505 F:      lib/Kconfig.kfence
10506 F:      mm/kfence/
10507
10508 KFIFO
10509 M:      Stefani Seibold <stefani@seibold.net>
10510 S:      Maintained
10511 F:      include/linux/kfifo.h
10512 F:      lib/kfifo.c
10513 F:      samples/kfifo/
10514
10515 KGDB / KDB /debug_core
10516 M:      Jason Wessel <jason.wessel@windriver.com>
10517 M:      Daniel Thompson <daniel.thompson@linaro.org>
10518 R:      Douglas Anderson <dianders@chromium.org>
10519 L:      kgdb-bugreport@lists.sourceforge.net
10520 S:      Maintained
10521 W:      http://kgdb.wiki.kernel.org/
10522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10523 F:      Documentation/dev-tools/kgdb.rst
10524 F:      drivers/misc/kgdbts.c
10525 F:      drivers/tty/serial/kgdboc.c
10526 F:      include/linux/kdb.h
10527 F:      include/linux/kgdb.h
10528 F:      kernel/debug/
10529
10530 KHADAS MCU MFD DRIVER
10531 M:      Neil Armstrong <narmstrong@baylibre.com>
10532 L:      linux-amlogic@lists.infradead.org
10533 S:      Maintained
10534 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10535 F:      drivers/mfd/khadas-mcu.c
10536 F:      include/linux/mfd/khadas-mcu.h
10537 F:      drivers/thermal/khadas_mcu_fan.c
10538
10539 KMEMLEAK
10540 M:      Catalin Marinas <catalin.marinas@arm.com>
10541 S:      Maintained
10542 F:      Documentation/dev-tools/kmemleak.rst
10543 F:      include/linux/kmemleak.h
10544 F:      mm/kmemleak.c
10545 F:      samples/kmemleak/kmemleak-test.c
10546
10547 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10548 M:      Luis Chamberlain <mcgrof@kernel.org>
10549 L:      linux-kernel@vger.kernel.org
10550 S:      Maintained
10551 F:      include/linux/kmod.h
10552 F:      kernel/kmod.c
10553 F:      lib/test_kmod.c
10554 F:      tools/testing/selftests/kmod/
10555
10556 KPROBES
10557 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10558 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10559 M:      "David S. Miller" <davem@davemloft.net>
10560 M:      Masami Hiramatsu <mhiramat@kernel.org>
10561 S:      Maintained
10562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
10563 F:      Documentation/trace/kprobes.rst
10564 F:      include/asm-generic/kprobes.h
10565 F:      include/linux/kprobes.h
10566 F:      kernel/kprobes.c
10567 F:      lib/test_kprobes.c
10568 F:      samples/kprobes
10569
10570 KS0108 LCD CONTROLLER DRIVER
10571 M:      Miguel Ojeda <ojeda@kernel.org>
10572 S:      Maintained
10573 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10574 F:      drivers/auxdisplay/ks0108.c
10575 F:      include/linux/ks0108.h
10576
10577 KTD253 BACKLIGHT DRIVER
10578 M:      Linus Walleij <linus.walleij@linaro.org>
10579 S:      Maintained
10580 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10581 F:      drivers/video/backlight/ktd253-backlight.c
10582
10583 KTEST
10584 M:      Steven Rostedt <rostedt@goodmis.org>
10585 M:      John Hawley <warthog9@eaglescrag.net>
10586 S:      Maintained
10587 F:      tools/testing/ktest
10588
10589 L3MDEV
10590 M:      David Ahern <dsahern@kernel.org>
10591 L:      netdev@vger.kernel.org
10592 S:      Maintained
10593 F:      include/net/l3mdev.h
10594 F:      net/l3mdev
10595
10596 L7 BPF FRAMEWORK
10597 M:      John Fastabend <john.fastabend@gmail.com>
10598 M:      Daniel Borkmann <daniel@iogearbox.net>
10599 M:      Jakub Sitnicki <jakub@cloudflare.com>
10600 M:      Lorenz Bauer <lmb@cloudflare.com>
10601 L:      netdev@vger.kernel.org
10602 L:      bpf@vger.kernel.org
10603 S:      Maintained
10604 F:      include/linux/skmsg.h
10605 F:      net/core/skmsg.c
10606 F:      net/core/sock_map.c
10607 F:      net/ipv4/tcp_bpf.c
10608 F:      net/ipv4/udp_bpf.c
10609 F:      net/unix/unix_bpf.c
10610
10611 LANDLOCK SECURITY MODULE
10612 M:      Mickaël Salaün <mic@digikod.net>
10613 L:      linux-security-module@vger.kernel.org
10614 S:      Supported
10615 W:      https://landlock.io
10616 T:      git https://github.com/landlock-lsm/linux.git
10617 F:      Documentation/security/landlock.rst
10618 F:      Documentation/userspace-api/landlock.rst
10619 F:      include/uapi/linux/landlock.h
10620 F:      samples/landlock/
10621 F:      security/landlock/
10622 F:      tools/testing/selftests/landlock/
10623 K:      landlock
10624 K:      LANDLOCK
10625
10626 LANTIQ / INTEL Ethernet drivers
10627 M:      Hauke Mehrtens <hauke@hauke-m.de>
10628 L:      netdev@vger.kernel.org
10629 S:      Maintained
10630 F:      drivers/net/dsa/lantiq_gswip.c
10631 F:      drivers/net/dsa/lantiq_pce.h
10632 F:      drivers/net/ethernet/lantiq_xrx200.c
10633 F:      net/dsa/tag_gswip.c
10634
10635 LANTIQ MIPS ARCHITECTURE
10636 M:      John Crispin <john@phrozen.org>
10637 L:      linux-mips@vger.kernel.org
10638 S:      Maintained
10639 F:      arch/mips/lantiq
10640 F:      drivers/soc/lantiq
10641
10642 LASI 53c700 driver for PARISC
10643 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10644 L:      linux-scsi@vger.kernel.org
10645 S:      Maintained
10646 F:      Documentation/scsi/53c700.rst
10647 F:      drivers/scsi/53c700*
10648
10649 LEAKING_ADDRESSES
10650 M:      Tobin C. Harding <me@tobin.cc>
10651 M:      Tycho Andersen <tycho@tycho.pizza>
10652 L:      linux-hardening@vger.kernel.org
10653 S:      Maintained
10654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10655 F:      scripts/leaking_addresses.pl
10656
10657 LED SUBSYSTEM
10658 M:      Pavel Machek <pavel@ucw.cz>
10659 L:      linux-leds@vger.kernel.org
10660 S:      Maintained
10661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10662 F:      Documentation/devicetree/bindings/leds/
10663 F:      drivers/leds/
10664 F:      include/linux/leds.h
10665
10666 LEGACY EEPROM DRIVER
10667 M:      Jean Delvare <jdelvare@suse.com>
10668 S:      Maintained
10669 F:      Documentation/misc-devices/eeprom.rst
10670 F:      drivers/misc/eeprom/eeprom.c
10671
10672 LEGO MINDSTORMS EV3
10673 R:      David Lechner <david@lechnology.com>
10674 S:      Maintained
10675 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10676 F:      arch/arm/boot/dts/da850-lego-ev3.dts
10677 F:      drivers/power/supply/lego_ev3_battery.c
10678
10679 LEGO USB Tower driver
10680 M:      Juergen Stuber <starblue@users.sourceforge.net>
10681 L:      legousb-devel@lists.sourceforge.net
10682 S:      Maintained
10683 W:      http://legousb.sourceforge.net/
10684 F:      drivers/usb/misc/legousbtower.c
10685
10686 LG LAPTOP EXTRAS
10687 M:      Matan Ziv-Av <matan@svgalib.org>
10688 L:      platform-driver-x86@vger.kernel.org
10689 S:      Maintained
10690 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
10691 F:      Documentation/admin-guide/laptops/lg-laptop.rst
10692 F:      drivers/platform/x86/lg-laptop.c
10693
10694 LG2160 MEDIA DRIVER
10695 M:      Michael Krufky <mkrufky@linuxtv.org>
10696 L:      linux-media@vger.kernel.org
10697 S:      Maintained
10698 W:      https://linuxtv.org
10699 W:      http://github.com/mkrufky
10700 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10701 T:      git git://linuxtv.org/mkrufky/tuners.git
10702 F:      drivers/media/dvb-frontends/lg2160.*
10703
10704 LGDT3305 MEDIA DRIVER
10705 M:      Michael Krufky <mkrufky@linuxtv.org>
10706 L:      linux-media@vger.kernel.org
10707 S:      Maintained
10708 W:      https://linuxtv.org
10709 W:      http://github.com/mkrufky
10710 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10711 T:      git git://linuxtv.org/mkrufky/tuners.git
10712 F:      drivers/media/dvb-frontends/lgdt3305.*
10713
10714 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10715 M:      Viresh Kumar <vireshk@kernel.org>
10716 L:      linux-ide@vger.kernel.org
10717 S:      Maintained
10718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10719 F:      drivers/ata/pata_arasan_cf.c
10720 F:      include/linux/pata_arasan_cf_data.h
10721
10722 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10723 M:      Linus Walleij <linus.walleij@linaro.org>
10724 L:      linux-ide@vger.kernel.org
10725 S:      Maintained
10726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10727 F:      drivers/ata/pata_ftide010.c
10728 F:      drivers/ata/sata_gemini.c
10729 F:      drivers/ata/sata_gemini.h
10730
10731 LIBATA SATA AHCI PLATFORM devices support
10732 M:      Hans de Goede <hdegoede@redhat.com>
10733 M:      Jens Axboe <axboe@kernel.dk>
10734 L:      linux-ide@vger.kernel.org
10735 S:      Maintained
10736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10737 F:      drivers/ata/ahci_platform.c
10738 F:      drivers/ata/libahci_platform.c
10739 F:      include/linux/ahci_platform.h
10740
10741 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10742 M:      Mikael Pettersson <mikpelinux@gmail.com>
10743 L:      linux-ide@vger.kernel.org
10744 S:      Maintained
10745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10746 F:      drivers/ata/sata_promise.*
10747
10748 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10749 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
10750 L:      linux-ide@vger.kernel.org
10751 S:      Maintained
10752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
10753 F:      Documentation/devicetree/bindings/ata/
10754 F:      drivers/ata/
10755 F:      include/linux/ata.h
10756 F:      include/linux/libata.h
10757
10758 LIBLOCKDEP
10759 M:      Sasha Levin <alexander.levin@microsoft.com>
10760 S:      Maintained
10761 F:      tools/lib/lockdep/
10762
10763 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10764 M:      Dan Williams <dan.j.williams@intel.com>
10765 M:      Vishal Verma <vishal.l.verma@intel.com>
10766 M:      Dave Jiang <dave.jiang@intel.com>
10767 L:      nvdimm@lists.linux.dev
10768 S:      Supported
10769 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10770 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10771 F:      drivers/nvdimm/blk.c
10772 F:      drivers/nvdimm/region_devs.c
10773
10774 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10775 M:      Vishal Verma <vishal.l.verma@intel.com>
10776 M:      Dan Williams <dan.j.williams@intel.com>
10777 M:      Dave Jiang <dave.jiang@intel.com>
10778 L:      nvdimm@lists.linux.dev
10779 S:      Supported
10780 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10781 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10782 F:      drivers/nvdimm/btt*
10783
10784 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10785 M:      Dan Williams <dan.j.williams@intel.com>
10786 M:      Vishal Verma <vishal.l.verma@intel.com>
10787 M:      Dave Jiang <dave.jiang@intel.com>
10788 L:      nvdimm@lists.linux.dev
10789 S:      Supported
10790 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10791 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10792 F:      drivers/nvdimm/pmem*
10793
10794 LIBNVDIMM: DEVICETREE BINDINGS
10795 M:      Oliver O'Halloran <oohall@gmail.com>
10796 L:      nvdimm@lists.linux.dev
10797 S:      Supported
10798 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10799 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10800 F:      drivers/nvdimm/of_pmem.c
10801
10802 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10803 M:      Dan Williams <dan.j.williams@intel.com>
10804 M:      Vishal Verma <vishal.l.verma@intel.com>
10805 M:      Dave Jiang <dave.jiang@intel.com>
10806 M:      Ira Weiny <ira.weiny@intel.com>
10807 L:      nvdimm@lists.linux.dev
10808 S:      Supported
10809 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10810 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10812 F:      drivers/acpi/nfit/*
10813 F:      drivers/nvdimm/*
10814 F:      include/linux/libnvdimm.h
10815 F:      include/linux/nd.h
10816 F:      include/uapi/linux/ndctl.h
10817 F:      tools/testing/nvdimm/
10818
10819 LICENSES and SPDX stuff
10820 M:      Thomas Gleixner <tglx@linutronix.de>
10821 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10822 L:      linux-spdx@vger.kernel.org
10823 S:      Maintained
10824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10825 F:      COPYING
10826 F:      Documentation/process/license-rules.rst
10827 F:      LICENSES/
10828 F:      scripts/spdxcheck-test.sh
10829 F:      scripts/spdxcheck.py
10830
10831 LINEAR RANGES HELPERS
10832 M:      Mark Brown <broonie@kernel.org>
10833 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10834 F:      lib/linear_ranges.c
10835 F:      lib/test_linear_ranges.c
10836 F:      include/linux/linear_range.h
10837
10838 LINUX FOR POWER MACINTOSH
10839 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10840 L:      linuxppc-dev@lists.ozlabs.org
10841 S:      Odd Fixes
10842 F:      arch/powerpc/platforms/powermac/
10843 F:      drivers/macintosh/
10844
10845 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10846 M:      Michael Ellerman <mpe@ellerman.id.au>
10847 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10848 R:      Paul Mackerras <paulus@samba.org>
10849 L:      linuxppc-dev@lists.ozlabs.org
10850 S:      Supported
10851 W:      https://github.com/linuxppc/wiki/wiki
10852 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10854 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10855 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10856 F:      Documentation/devicetree/bindings/powerpc/
10857 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10858 F:      Documentation/powerpc/
10859 F:      arch/powerpc/
10860 F:      drivers/*/*/*pasemi*
10861 F:      drivers/*/*pasemi*
10862 F:      drivers/char/tpm/tpm_ibmvtpm*
10863 F:      drivers/crypto/nx/
10864 F:      drivers/crypto/vmx/
10865 F:      drivers/i2c/busses/i2c-opal.c
10866 F:      drivers/net/ethernet/ibm/ibmveth.*
10867 F:      drivers/net/ethernet/ibm/ibmvnic.*
10868 F:      drivers/pci/hotplug/pnv_php.c
10869 F:      drivers/pci/hotplug/rpa*
10870 F:      drivers/rtc/rtc-opal.c
10871 F:      drivers/scsi/ibmvscsi/
10872 F:      drivers/tty/hvc/hvc_opal.c
10873 F:      drivers/watchdog/wdrtas.c
10874 F:      tools/testing/selftests/powerpc
10875 N:      /pmac
10876 N:      powermac
10877 N:      powernv
10878 N:      [^a-z0-9]ps3
10879 N:      pseries
10880
10881 LINUX FOR POWERPC EMBEDDED MPC5XXX
10882 M:      Anatolij Gustschin <agust@denx.de>
10883 L:      linuxppc-dev@lists.ozlabs.org
10884 S:      Odd Fixes
10885 F:      arch/powerpc/platforms/512x/
10886 F:      arch/powerpc/platforms/52xx/
10887
10888 LINUX FOR POWERPC EMBEDDED PPC4XX
10889 L:      linuxppc-dev@lists.ozlabs.org
10890 S:      Orphan
10891 F:      arch/powerpc/platforms/40x/
10892 F:      arch/powerpc/platforms/44x/
10893
10894 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10895 M:      Scott Wood <oss@buserror.net>
10896 L:      linuxppc-dev@lists.ozlabs.org
10897 S:      Odd fixes
10898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10899 F:      Documentation/devicetree/bindings/powerpc/fsl/
10900 F:      arch/powerpc/platforms/83xx/
10901 F:      arch/powerpc/platforms/85xx/
10902
10903 LINUX FOR POWERPC EMBEDDED PPC8XX
10904 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10905 L:      linuxppc-dev@lists.ozlabs.org
10906 S:      Maintained
10907 F:      arch/powerpc/platforms/8xx/
10908
10909 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10910 M:      Kees Cook <keescook@chromium.org>
10911 S:      Maintained
10912 F:      drivers/misc/lkdtm/*
10913 F:      tools/testing/selftests/lkdtm/*
10914
10915 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10916 M:      Alan Stern <stern@rowland.harvard.edu>
10917 M:      Andrea Parri <parri.andrea@gmail.com>
10918 M:      Will Deacon <will@kernel.org>
10919 M:      Peter Zijlstra <peterz@infradead.org>
10920 M:      Boqun Feng <boqun.feng@gmail.com>
10921 M:      Nicholas Piggin <npiggin@gmail.com>
10922 M:      David Howells <dhowells@redhat.com>
10923 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10924 M:      Luc Maranget <luc.maranget@inria.fr>
10925 M:      "Paul E. McKenney" <paulmck@kernel.org>
10926 R:      Akira Yokosawa <akiyks@gmail.com>
10927 R:      Daniel Lustig <dlustig@nvidia.com>
10928 R:      Joel Fernandes <joel@joelfernandes.org>
10929 L:      linux-kernel@vger.kernel.org
10930 L:      linux-arch@vger.kernel.org
10931 S:      Supported
10932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10933 F:      Documentation/atomic_bitops.txt
10934 F:      Documentation/atomic_t.txt
10935 F:      Documentation/core-api/refcount-vs-atomic.rst
10936 F:      Documentation/litmus-tests/
10937 F:      Documentation/memory-barriers.txt
10938 F:      tools/memory-model/
10939
10940 LIS3LV02D ACCELEROMETER DRIVER
10941 M:      Eric Piel <eric.piel@tremplin-utc.net>
10942 S:      Maintained
10943 F:      Documentation/misc-devices/lis3lv02d.rst
10944 F:      drivers/misc/lis3lv02d/
10945 F:      drivers/platform/x86/hp_accel.c
10946
10947 LIST KUNIT TEST
10948 M:      David Gow <davidgow@google.com>
10949 L:      linux-kselftest@vger.kernel.org
10950 L:      kunit-dev@googlegroups.com
10951 S:      Maintained
10952 F:      lib/list-test.c
10953
10954 LITEX PLATFORM
10955 M:      Karol Gugala <kgugala@antmicro.com>
10956 M:      Mateusz Holenko <mholenko@antmicro.com>
10957 S:      Maintained
10958 F:      Documentation/devicetree/bindings/*/litex,*.yaml
10959 F:      arch/openrisc/boot/dts/or1klitex.dts
10960 F:      drivers/soc/litex/litex_soc_ctrl.c
10961 F:      drivers/tty/serial/liteuart.c
10962 F:      include/linux/litex.h
10963
10964 LIVE PATCHING
10965 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10966 M:      Jiri Kosina <jikos@kernel.org>
10967 M:      Miroslav Benes <mbenes@suse.cz>
10968 M:      Petr Mladek <pmladek@suse.com>
10969 R:      Joe Lawrence <joe.lawrence@redhat.com>
10970 L:      live-patching@vger.kernel.org
10971 S:      Maintained
10972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10973 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10974 F:      Documentation/livepatch/
10975 F:      arch/powerpc/include/asm/livepatch.h
10976 F:      arch/s390/include/asm/livepatch.h
10977 F:      arch/x86/include/asm/livepatch.h
10978 F:      include/linux/livepatch.h
10979 F:      kernel/livepatch/
10980 F:      lib/livepatch/
10981 F:      samples/livepatch/
10982 F:      tools/testing/selftests/livepatch/
10983
10984 LLC (802.2)
10985 L:      netdev@vger.kernel.org
10986 S:      Odd fixes
10987 F:      include/linux/llc.h
10988 F:      include/net/llc*
10989 F:      include/uapi/linux/llc.h
10990 F:      net/llc/
10991
10992 LM73 HARDWARE MONITOR DRIVER
10993 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10994 L:      linux-hwmon@vger.kernel.org
10995 S:      Maintained
10996 F:      drivers/hwmon/lm73.c
10997
10998 LM78 HARDWARE MONITOR DRIVER
10999 M:      Jean Delvare <jdelvare@suse.com>
11000 L:      linux-hwmon@vger.kernel.org
11001 S:      Maintained
11002 F:      Documentation/hwmon/lm78.rst
11003 F:      drivers/hwmon/lm78.c
11004
11005 LM83 HARDWARE MONITOR DRIVER
11006 M:      Jean Delvare <jdelvare@suse.com>
11007 L:      linux-hwmon@vger.kernel.org
11008 S:      Maintained
11009 F:      Documentation/hwmon/lm83.rst
11010 F:      drivers/hwmon/lm83.c
11011
11012 LM90 HARDWARE MONITOR DRIVER
11013 M:      Jean Delvare <jdelvare@suse.com>
11014 L:      linux-hwmon@vger.kernel.org
11015 S:      Maintained
11016 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11017 F:      Documentation/hwmon/lm90.rst
11018 F:      drivers/hwmon/lm90.c
11019 F:      include/dt-bindings/thermal/lm90.h
11020
11021 LM95234 HARDWARE MONITOR DRIVER
11022 M:      Guenter Roeck <linux@roeck-us.net>
11023 L:      linux-hwmon@vger.kernel.org
11024 S:      Maintained
11025 F:      Documentation/hwmon/lm95234.rst
11026 F:      drivers/hwmon/lm95234.c
11027
11028 LME2510 MEDIA DRIVER
11029 M:      Malcolm Priestley <tvboxspy@gmail.com>
11030 L:      linux-media@vger.kernel.org
11031 S:      Maintained
11032 W:      https://linuxtv.org
11033 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11034 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11035
11036 LOADPIN SECURITY MODULE
11037 M:      Kees Cook <keescook@chromium.org>
11038 S:      Supported
11039 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
11040 F:      Documentation/admin-guide/LSM/LoadPin.rst
11041 F:      security/loadpin/
11042
11043 LOCKING PRIMITIVES
11044 M:      Peter Zijlstra <peterz@infradead.org>
11045 M:      Ingo Molnar <mingo@redhat.com>
11046 M:      Will Deacon <will@kernel.org>
11047 R:      Waiman Long <longman@redhat.com>
11048 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
11049 L:      linux-kernel@vger.kernel.org
11050 S:      Maintained
11051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11052 F:      Documentation/locking/
11053 F:      arch/*/include/asm/spinlock*.h
11054 F:      include/linux/lockdep.h
11055 F:      include/linux/mutex*.h
11056 F:      include/linux/rwlock*.h
11057 F:      include/linux/rwsem*.h
11058 F:      include/linux/seqlock.h
11059 F:      include/linux/spinlock*.h
11060 F:      kernel/locking/
11061 F:      lib/locking*.[ch]
11062 X:      kernel/locking/locktorture.c
11063
11064 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11065 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11066 L:      linux-ntfs-dev@lists.sourceforge.net
11067 S:      Maintained
11068 W:      http://www.linux-ntfs.org/content/view/19/37/
11069 F:      Documentation/admin-guide/ldm.rst
11070 F:      block/partitions/ldm.*
11071
11072 LOGITECH HID GAMING KEYBOARDS
11073 M:      Hans de Goede <hdegoede@redhat.com>
11074 L:      linux-input@vger.kernel.org
11075 S:      Maintained
11076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11077 F:      drivers/hid/hid-lg-g15.c
11078
11079 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11080 M:      Adrien Grassein <adrien.grassein@gmail.com>
11081 S:      Maintained
11082 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11083 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11084
11085 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11086 M:      Sathya Prakash <sathya.prakash@broadcom.com>
11087 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11088 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11089 L:      MPT-FusionLinux.pdl@broadcom.com
11090 L:      linux-scsi@vger.kernel.org
11091 S:      Supported
11092 W:      http://www.avagotech.com/support/
11093 F:      drivers/message/fusion/
11094 F:      drivers/scsi/mpt3sas/
11095
11096 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11097 M:      Matthew Wilcox <willy@infradead.org>
11098 L:      linux-scsi@vger.kernel.org
11099 S:      Maintained
11100 F:      drivers/scsi/sym53c8xx_2/
11101
11102 LTC1660 DAC DRIVER
11103 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11104 L:      linux-iio@vger.kernel.org
11105 S:      Maintained
11106 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11107 F:      drivers/iio/dac/ltc1660.c
11108
11109 LTC2947 HARDWARE MONITOR DRIVER
11110 M:      Nuno Sá <nuno.sa@analog.com>
11111 L:      linux-hwmon@vger.kernel.org
11112 S:      Supported
11113 W:      http://ez.analog.com/community/linux-device-drivers
11114 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11115 F:      drivers/hwmon/ltc2947-core.c
11116 F:      drivers/hwmon/ltc2947-i2c.c
11117 F:      drivers/hwmon/ltc2947-spi.c
11118 F:      drivers/hwmon/ltc2947.h
11119
11120 LTC2983 IIO TEMPERATURE DRIVER
11121 M:      Nuno Sá <nuno.sa@analog.com>
11122 L:      linux-iio@vger.kernel.org
11123 S:      Supported
11124 W:      http://ez.analog.com/community/linux-device-drivers
11125 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11126 F:      drivers/iio/temperature/ltc2983.c
11127
11128 LTC4261 HARDWARE MONITOR DRIVER
11129 M:      Guenter Roeck <linux@roeck-us.net>
11130 L:      linux-hwmon@vger.kernel.org
11131 S:      Maintained
11132 F:      Documentation/hwmon/ltc4261.rst
11133 F:      drivers/hwmon/ltc4261.c
11134
11135 LTC4306 I2C MULTIPLEXER DRIVER
11136 M:      Michael Hennerich <michael.hennerich@analog.com>
11137 L:      linux-i2c@vger.kernel.org
11138 S:      Supported
11139 W:      http://ez.analog.com/community/linux-device-drivers
11140 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11141 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11142
11143 LTP (Linux Test Project)
11144 M:      Mike Frysinger <vapier@gentoo.org>
11145 M:      Cyril Hrubis <chrubis@suse.cz>
11146 M:      Wanlong Gao <wanlong.gao@gmail.com>
11147 M:      Jan Stancek <jstancek@redhat.com>
11148 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11149 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11150 L:      ltp@lists.linux.it (subscribers-only)
11151 S:      Maintained
11152 W:      http://linux-test-project.github.io/
11153 T:      git git://github.com/linux-test-project/ltp.git
11154
11155 LYNX PCS MODULE
11156 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11157 L:      netdev@vger.kernel.org
11158 S:      Supported
11159 F:      drivers/net/pcs/pcs-lynx.c
11160 F:      include/linux/pcs-lynx.h
11161
11162 M68K ARCHITECTURE
11163 M:      Geert Uytterhoeven <geert@linux-m68k.org>
11164 L:      linux-m68k@lists.linux-m68k.org
11165 S:      Maintained
11166 W:      http://www.linux-m68k.org/
11167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11168 F:      arch/m68k/
11169 F:      drivers/zorro/
11170
11171 M68K ON APPLE MACINTOSH
11172 M:      Joshua Thompson <funaho@jurai.org>
11173 L:      linux-m68k@lists.linux-m68k.org
11174 S:      Maintained
11175 W:      http://www.mac.linux-m68k.org/
11176 F:      arch/m68k/mac/
11177 F:      drivers/macintosh/adb-iop.c
11178 F:      drivers/macintosh/via-macii.c
11179
11180 M68K ON HP9000/300
11181 M:      Philip Blundell <philb@gnu.org>
11182 S:      Maintained
11183 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11184 F:      arch/m68k/hp300/
11185
11186 M88DS3103 MEDIA DRIVER
11187 M:      Antti Palosaari <crope@iki.fi>
11188 L:      linux-media@vger.kernel.org
11189 S:      Maintained
11190 W:      https://linuxtv.org
11191 W:      http://palosaari.fi/linux/
11192 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11193 T:      git git://linuxtv.org/anttip/media_tree.git
11194 F:      drivers/media/dvb-frontends/m88ds3103*
11195
11196 M88RS2000 MEDIA DRIVER
11197 M:      Malcolm Priestley <tvboxspy@gmail.com>
11198 L:      linux-media@vger.kernel.org
11199 S:      Maintained
11200 W:      https://linuxtv.org
11201 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11202 F:      drivers/media/dvb-frontends/m88rs2000*
11203
11204 MA901 MASTERKIT USB FM RADIO DRIVER
11205 M:      Alexey Klimov <klimov.linux@gmail.com>
11206 L:      linux-media@vger.kernel.org
11207 S:      Maintained
11208 T:      git git://linuxtv.org/media_tree.git
11209 F:      drivers/media/radio/radio-ma901.c
11210
11211 MAC80211
11212 M:      Johannes Berg <johannes@sipsolutions.net>
11213 L:      linux-wireless@vger.kernel.org
11214 S:      Maintained
11215 W:      https://wireless.wiki.kernel.org/
11216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11218 F:      Documentation/networking/mac80211-injection.rst
11219 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11220 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11221 F:      include/net/mac80211.h
11222 F:      net/mac80211/
11223
11224 MAILBOX API
11225 M:      Jassi Brar <jassisinghbrar@gmail.com>
11226 L:      linux-kernel@vger.kernel.org
11227 S:      Maintained
11228 F:      drivers/mailbox/
11229 F:      include/linux/mailbox_client.h
11230 F:      include/linux/mailbox_controller.h
11231 F:      include/dt-bindings/mailbox/
11232 F:      Documentation/devicetree/bindings/mailbox/
11233
11234 MAILBOX ARM MHUv2
11235 M:      Viresh Kumar <viresh.kumar@linaro.org>
11236 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11237 L:      linux-kernel@vger.kernel.org
11238 S:      Maintained
11239 F:      drivers/mailbox/arm_mhuv2.c
11240 F:      include/linux/mailbox/arm_mhuv2_message.h
11241 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11242
11243 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11244 M:      Jeremy Kerr <jk@codeconstruct.com.au>
11245 M:      Matt Johnston <matt@codeconstruct.com.au>
11246 L:      netdev@vger.kernel.org
11247 S:      Maintained
11248 F:      Documentation/networking/mctp.rst
11249 F:      drivers/net/mctp/
11250 F:      include/net/mctp.h
11251 F:      include/net/mctpdevice.h
11252 F:      include/net/netns/mctp.h
11253 F:      net/mctp/
11254
11255 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11256 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11257 L:      linux-man@vger.kernel.org
11258 S:      Maintained
11259 W:      http://www.kernel.org/doc/man-pages
11260
11261 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11262 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11263 L:      linux-mips@vger.kernel.org
11264 S:      Maintained
11265 F:      arch/mips/boot/dts/img/pistachio*
11266
11267 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11268 M:      Andrew Lunn <andrew@lunn.ch>
11269 M:      Vivien Didelot <vivien.didelot@gmail.com>
11270 L:      netdev@vger.kernel.org
11271 S:      Maintained
11272 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11273 F:      Documentation/networking/devlink/mv88e6xxx.rst
11274 F:      drivers/net/dsa/mv88e6xxx/
11275 F:      include/linux/dsa/mv88e6xxx.h
11276 F:      include/linux/platform_data/mv88e6xxx.h
11277
11278 MARVELL ARMADA 3700 PHY DRIVERS
11279 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11280 S:      Maintained
11281 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11282 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11283 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11284 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11285
11286 MARVELL ARMADA DRM SUPPORT
11287 M:      Russell King <linux@armlinux.org.uk>
11288 S:      Maintained
11289 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11290 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11291 F:      Documentation/devicetree/bindings/display/armada/
11292 F:      drivers/gpu/drm/armada/
11293 F:      include/uapi/drm/armada_drm.h
11294
11295 MARVELL CRYPTO DRIVER
11296 M:      Boris Brezillon <bbrezillon@kernel.org>
11297 M:      Arnaud Ebalard <arno@natisbad.org>
11298 M:      Srujana Challa <schalla@marvell.com>
11299 L:      linux-crypto@vger.kernel.org
11300 S:      Maintained
11301 F:      drivers/crypto/marvell/
11302 F:      include/linux/soc/marvell/octeontx2/
11303
11304 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11305 M:      Mirko Lindner <mlindner@marvell.com>
11306 M:      Stephen Hemminger <stephen@networkplumber.org>
11307 L:      netdev@vger.kernel.org
11308 S:      Maintained
11309 F:      drivers/net/ethernet/marvell/sk*
11310
11311 MARVELL LIBERTAS WIRELESS DRIVER
11312 L:      libertas-dev@lists.infradead.org
11313 S:      Orphan
11314 F:      drivers/net/wireless/marvell/libertas/
11315
11316 MARVELL MACCHIATOBIN SUPPORT
11317 M:      Russell King <linux@armlinux.org.uk>
11318 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11319 S:      Maintained
11320 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11321
11322 MARVELL MV643XX ETHERNET DRIVER
11323 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11324 L:      netdev@vger.kernel.org
11325 S:      Maintained
11326 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11327 F:      include/linux/mv643xx.h
11328
11329 MARVELL MV88X3310 PHY DRIVER
11330 M:      Russell King <linux@armlinux.org.uk>
11331 M:      Marek Behún <kabel@kernel.org>
11332 L:      netdev@vger.kernel.org
11333 S:      Maintained
11334 F:      drivers/net/phy/marvell10g.c
11335
11336 MARVELL MVEBU THERMAL DRIVER
11337 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11338 S:      Maintained
11339 F:      drivers/thermal/armada_thermal.c
11340
11341 MARVELL MVNETA ETHERNET DRIVER
11342 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11343 L:      netdev@vger.kernel.org
11344 S:      Maintained
11345 F:      drivers/net/ethernet/marvell/mvneta.*
11346
11347 MARVELL MVPP2 ETHERNET DRIVER
11348 M:      Marcin Wojtas <mw@semihalf.com>
11349 M:      Russell King <linux@armlinux.org.uk>
11350 L:      netdev@vger.kernel.org
11351 S:      Maintained
11352 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11353 F:      drivers/net/ethernet/marvell/mvpp2/
11354
11355 MARVELL MWIFIEX WIRELESS DRIVER
11356 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11357 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11358 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11359 M:      Xinming Hu <huxinming820@gmail.com>
11360 L:      linux-wireless@vger.kernel.org
11361 S:      Maintained
11362 F:      drivers/net/wireless/marvell/mwifiex/
11363
11364 MARVELL MWL8K WIRELESS DRIVER
11365 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11366 L:      linux-wireless@vger.kernel.org
11367 S:      Odd Fixes
11368 F:      drivers/net/wireless/marvell/mwl8k.c
11369
11370 MARVELL NAND CONTROLLER DRIVER
11371 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11372 L:      linux-mtd@lists.infradead.org
11373 S:      Maintained
11374 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11375 F:      drivers/mtd/nand/raw/marvell_nand.c
11376
11377 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11378 M:      Sunil Goutham <sgoutham@marvell.com>
11379 M:      Geetha sowjanya <gakula@marvell.com>
11380 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11381 M:      hariprasad <hkelam@marvell.com>
11382 L:      netdev@vger.kernel.org
11383 S:      Supported
11384 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11385 F:      include/linux/soc/marvell/octeontx2/
11386
11387 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11388 M:      Sunil Goutham <sgoutham@marvell.com>
11389 M:      Linu Cherian <lcherian@marvell.com>
11390 M:      Geetha sowjanya <gakula@marvell.com>
11391 M:      Jerin Jacob <jerinj@marvell.com>
11392 M:      hariprasad <hkelam@marvell.com>
11393 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11394 L:      netdev@vger.kernel.org
11395 S:      Supported
11396 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11397 F:      drivers/net/ethernet/marvell/octeontx2/af/
11398
11399 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11400 M:      Taras Chornyi <tchornyi@marvell.com>
11401 S:      Supported
11402 W:      https://github.com/Marvell-switching/switchdev-prestera
11403 F:      drivers/net/ethernet/marvell/prestera/
11404
11405 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11406 M:      Nicolas Pitre <nico@fluxnic.net>
11407 S:      Odd Fixes
11408 F:      drivers/mmc/host/mvsdio.*
11409
11410 MARVELL USB MDIO CONTROLLER DRIVER
11411 M:      Tobias Waldekranz <tobias@waldekranz.com>
11412 L:      netdev@vger.kernel.org
11413 S:      Maintained
11414 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11415 F:      drivers/net/mdio/mdio-mvusb.c
11416
11417 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11418 M:      Hu Ziji <huziji@marvell.com>
11419 L:      linux-mmc@vger.kernel.org
11420 S:      Supported
11421 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11422 F:      drivers/mmc/host/sdhci-xenon*
11423
11424 MATROX FRAMEBUFFER DRIVER
11425 L:      linux-fbdev@vger.kernel.org
11426 S:      Orphan
11427 F:      drivers/video/fbdev/matrox/matroxfb_*
11428 F:      include/uapi/linux/matroxfb.h
11429
11430 MAX15301 DRIVER
11431 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11432 L:      linux-hwmon@vger.kernel.org
11433 S:      Maintained
11434 F:      Documentation/hwmon/max15301.rst
11435 F:      drivers/hwmon/pmbus/max15301.c
11436
11437 MAX16065 HARDWARE MONITOR DRIVER
11438 M:      Guenter Roeck <linux@roeck-us.net>
11439 L:      linux-hwmon@vger.kernel.org
11440 S:      Maintained
11441 F:      Documentation/hwmon/max16065.rst
11442 F:      drivers/hwmon/max16065.c
11443
11444 MAX2175 SDR TUNER DRIVER
11445 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11446 L:      linux-media@vger.kernel.org
11447 S:      Maintained
11448 T:      git git://linuxtv.org/media_tree.git
11449 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11450 F:      Documentation/userspace-api/media/drivers/max2175.rst
11451 F:      drivers/media/i2c/max2175*
11452 F:      include/uapi/linux/max2175.h
11453
11454 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11455 L:      linux-hwmon@vger.kernel.org
11456 S:      Orphan
11457 F:      Documentation/hwmon/max6650.rst
11458 F:      drivers/hwmon/max6650.c
11459
11460 MAX6697 HARDWARE MONITOR DRIVER
11461 M:      Guenter Roeck <linux@roeck-us.net>
11462 L:      linux-hwmon@vger.kernel.org
11463 S:      Maintained
11464 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11465 F:      Documentation/hwmon/max6697.rst
11466 F:      drivers/hwmon/max6697.c
11467 F:      include/linux/platform_data/max6697.h
11468
11469 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11470 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
11471 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11472 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11473 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11474 L:      linux-media@vger.kernel.org
11475 S:      Maintained
11476 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11477 F:      drivers/media/i2c/max9286.c
11478
11479 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11480 M:      Peter Rosin <peda@axentia.se>
11481 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11482 S:      Maintained
11483 F:      Documentation/devicetree/bindings/sound/max9860.txt
11484 F:      sound/soc/codecs/max9860.*
11485
11486 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11487 M:      Andreas Klinger <ak@it-klinger.de>
11488 L:      linux-iio@vger.kernel.org
11489 S:      Maintained
11490 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11491 F:      drivers/iio/proximity/mb1232.c
11492
11493 MAXIM MAX77650 PMIC MFD DRIVER
11494 M:      Bartosz Golaszewski <brgl@bgdev.pl>
11495 L:      linux-kernel@vger.kernel.org
11496 S:      Maintained
11497 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11498 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11499 F:      drivers/gpio/gpio-max77650.c
11500 F:      drivers/input/misc/max77650-onkey.c
11501 F:      drivers/leds/leds-max77650.c
11502 F:      drivers/mfd/max77650.c
11503 F:      drivers/power/supply/max77650-charger.c
11504 F:      drivers/regulator/max77650-regulator.c
11505 F:      include/linux/mfd/max77650.h
11506
11507 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11508 M:      Javier Martinez Canillas <javier@dowhile0.org>
11509 L:      linux-kernel@vger.kernel.org
11510 S:      Supported
11511 F:      Documentation/devicetree/bindings/*/*max77802.txt
11512 F:      drivers/regulator/max77802-regulator.c
11513 F:      include/dt-bindings/*/*max77802.h
11514
11515 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11516 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11517 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11518 L:      linux-pm@vger.kernel.org
11519 S:      Supported
11520 F:      drivers/power/supply/max14577_charger.c
11521 F:      drivers/power/supply/max77693_charger.c
11522
11523 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11524 M:      Chanwoo Choi <cw00.choi@samsung.com>
11525 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11526 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11527 L:      linux-kernel@vger.kernel.org
11528 S:      Supported
11529 F:      Documentation/devicetree/bindings/*/max77686.txt
11530 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
11531 F:      Documentation/devicetree/bindings/mfd/max14577.txt
11532 F:      Documentation/devicetree/bindings/mfd/max77693.txt
11533 F:      drivers/*/max14577*.c
11534 F:      drivers/*/max77686*.c
11535 F:      drivers/*/max77693*.c
11536 F:      drivers/clk/clk-max77686.c
11537 F:      drivers/extcon/extcon-max14577.c
11538 F:      drivers/extcon/extcon-max77693.c
11539 F:      drivers/rtc/rtc-max77686.c
11540 F:      include/linux/mfd/max14577*.h
11541 F:      include/linux/mfd/max77686*.h
11542 F:      include/linux/mfd/max77693*.h
11543
11544 MAXIRADIO FM RADIO RECEIVER DRIVER
11545 M:      Hans Verkuil <hverkuil@xs4all.nl>
11546 L:      linux-media@vger.kernel.org
11547 S:      Maintained
11548 W:      https://linuxtv.org
11549 T:      git git://linuxtv.org/media_tree.git
11550 F:      drivers/media/radio/radio-maxiradio*
11551
11552 MAXLINEAR ETHERNET PHY DRIVER
11553 M:      Xu Liang <lxu@maxlinear.com>
11554 L:      netdev@vger.kernel.org
11555 S:      Supported
11556 F:      drivers/net/phy/mxl-gpy.c
11557
11558 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
11559 R:      Yasushi SHOJI <yashi@spacecubics.com>
11560 L:      linux-can@vger.kernel.org
11561 S:      Maintained
11562 F:      drivers/net/can/usb/mcba_usb.c
11563
11564 MCAN MMIO DEVICE DRIVER
11565 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11566 L:      linux-can@vger.kernel.org
11567 S:      Maintained
11568 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11569 F:      drivers/net/can/m_can/m_can.c
11570 F:      drivers/net/can/m_can/m_can.h
11571 F:      drivers/net/can/m_can/m_can_platform.c
11572
11573 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11574 M:      Rishi Gupta <gupt21@gmail.com>
11575 L:      linux-i2c@vger.kernel.org
11576 L:      linux-input@vger.kernel.org
11577 S:      Maintained
11578 F:      drivers/hid/hid-mcp2221.c
11579
11580 MCP251XFD SPI-CAN NETWORK DRIVER
11581 M:      Marc Kleine-Budde <mkl@pengutronix.de>
11582 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11583 R:      Thomas Kopp <thomas.kopp@microchip.com>
11584 L:      linux-can@vger.kernel.org
11585 S:      Maintained
11586 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11587 F:      drivers/net/can/spi/mcp251xfd/
11588
11589 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11590 M:      Peter Rosin <peda@axentia.se>
11591 L:      linux-iio@vger.kernel.org
11592 S:      Maintained
11593 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11594 F:      drivers/iio/potentiometer/mcp4018.c
11595 F:      drivers/iio/potentiometer/mcp4531.c
11596
11597 MCR20A IEEE-802.15.4 RADIO DRIVER
11598 M:      Xue Liu <liuxuenetmail@gmail.com>
11599 L:      linux-wpan@vger.kernel.org
11600 S:      Maintained
11601 W:      https://github.com/xueliu/mcr20a-linux
11602 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11603 F:      drivers/net/ieee802154/mcr20a.c
11604 F:      drivers/net/ieee802154/mcr20a.h
11605
11606 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11607 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
11608 L:      linux-iio@vger.kernel.org
11609 S:      Maintained
11610 F:      drivers/iio/dac/cio-dac.c
11611
11612 MEDIA CONTROLLER FRAMEWORK
11613 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11614 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11615 L:      linux-media@vger.kernel.org
11616 S:      Supported
11617 W:      https://www.linuxtv.org
11618 T:      git git://linuxtv.org/media_tree.git
11619 F:      drivers/media/mc/
11620 F:      include/media/media-*.h
11621 F:      include/uapi/linux/media.h
11622
11623 MEDIA DRIVER FOR FREESCALE IMX PXP
11624 M:      Philipp Zabel <p.zabel@pengutronix.de>
11625 L:      linux-media@vger.kernel.org
11626 S:      Maintained
11627 T:      git git://linuxtv.org/media_tree.git
11628 F:      drivers/media/platform/imx-pxp.[ch]
11629
11630 MEDIA DRIVERS FOR ASCOT2E
11631 M:      Sergey Kozlov <serjk@netup.ru>
11632 M:      Abylay Ospan <aospan@netup.ru>
11633 L:      linux-media@vger.kernel.org
11634 S:      Supported
11635 W:      https://linuxtv.org
11636 W:      http://netup.tv/
11637 T:      git git://linuxtv.org/media_tree.git
11638 F:      drivers/media/dvb-frontends/ascot2e*
11639
11640 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11641 M:      Jasmin Jessich <jasmin@anw.at>
11642 L:      linux-media@vger.kernel.org
11643 S:      Maintained
11644 W:      https://linuxtv.org
11645 T:      git git://linuxtv.org/media_tree.git
11646 F:      drivers/media/dvb-frontends/cxd2099*
11647
11648 MEDIA DRIVERS FOR CXD2841ER
11649 M:      Sergey Kozlov <serjk@netup.ru>
11650 M:      Abylay Ospan <aospan@netup.ru>
11651 L:      linux-media@vger.kernel.org
11652 S:      Supported
11653 W:      https://linuxtv.org
11654 W:      http://netup.tv/
11655 T:      git git://linuxtv.org/media_tree.git
11656 F:      drivers/media/dvb-frontends/cxd2841er*
11657
11658 MEDIA DRIVERS FOR CXD2880
11659 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
11660 L:      linux-media@vger.kernel.org
11661 S:      Supported
11662 W:      http://linuxtv.org/
11663 T:      git git://linuxtv.org/media_tree.git
11664 F:      drivers/media/dvb-frontends/cxd2880/*
11665 F:      drivers/media/spi/cxd2880*
11666
11667 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11668 L:      linux-media@vger.kernel.org
11669 S:      Orphan
11670 W:      https://linuxtv.org
11671 T:      git git://linuxtv.org/media_tree.git
11672 F:      drivers/media/pci/ddbridge/*
11673
11674 MEDIA DRIVERS FOR FREESCALE IMX
11675 M:      Steve Longerbeam <slongerbeam@gmail.com>
11676 M:      Philipp Zabel <p.zabel@pengutronix.de>
11677 L:      linux-media@vger.kernel.org
11678 S:      Maintained
11679 T:      git git://linuxtv.org/media_tree.git
11680 F:      Documentation/admin-guide/media/imx.rst
11681 F:      Documentation/devicetree/bindings/media/imx.txt
11682 F:      drivers/staging/media/imx/
11683 F:      include/linux/imx-media.h
11684 F:      include/media/imx.h
11685
11686 MEDIA DRIVERS FOR FREESCALE IMX7
11687 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11688 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11689 L:      linux-media@vger.kernel.org
11690 S:      Maintained
11691 T:      git git://linuxtv.org/media_tree.git
11692 F:      Documentation/admin-guide/media/imx7.rst
11693 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11694 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11695 F:      drivers/staging/media/imx/imx7-media-csi.c
11696 F:      drivers/staging/media/imx/imx7-mipi-csis.c
11697
11698 MEDIA DRIVERS FOR HELENE
11699 M:      Abylay Ospan <aospan@netup.ru>
11700 L:      linux-media@vger.kernel.org
11701 S:      Supported
11702 W:      https://linuxtv.org
11703 W:      http://netup.tv/
11704 T:      git git://linuxtv.org/media_tree.git
11705 F:      drivers/media/dvb-frontends/helene*
11706
11707 MEDIA DRIVERS FOR HORUS3A
11708 M:      Sergey Kozlov <serjk@netup.ru>
11709 M:      Abylay Ospan <aospan@netup.ru>
11710 L:      linux-media@vger.kernel.org
11711 S:      Supported
11712 W:      https://linuxtv.org
11713 W:      http://netup.tv/
11714 T:      git git://linuxtv.org/media_tree.git
11715 F:      drivers/media/dvb-frontends/horus3a*
11716
11717 MEDIA DRIVERS FOR LNBH25
11718 M:      Sergey Kozlov <serjk@netup.ru>
11719 M:      Abylay Ospan <aospan@netup.ru>
11720 L:      linux-media@vger.kernel.org
11721 S:      Supported
11722 W:      https://linuxtv.org
11723 W:      http://netup.tv/
11724 T:      git git://linuxtv.org/media_tree.git
11725 F:      drivers/media/dvb-frontends/lnbh25*
11726
11727 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11728 L:      linux-media@vger.kernel.org
11729 S:      Orphan
11730 W:      https://linuxtv.org
11731 T:      git git://linuxtv.org/media_tree.git
11732 F:      drivers/media/dvb-frontends/mxl5xx*
11733
11734 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11735 M:      Sergey Kozlov <serjk@netup.ru>
11736 M:      Abylay Ospan <aospan@netup.ru>
11737 L:      linux-media@vger.kernel.org
11738 S:      Supported
11739 W:      https://linuxtv.org
11740 W:      http://netup.tv/
11741 T:      git git://linuxtv.org/media_tree.git
11742 F:      drivers/media/pci/netup_unidvb/*
11743
11744 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11745 M:      Dmitry Osipenko <digetx@gmail.com>
11746 L:      linux-media@vger.kernel.org
11747 L:      linux-tegra@vger.kernel.org
11748 S:      Maintained
11749 T:      git git://linuxtv.org/media_tree.git
11750 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11751 F:      drivers/staging/media/tegra-vde/
11752
11753 MEDIA DRIVERS FOR RENESAS - CEU
11754 M:      Jacopo Mondi <jacopo@jmondi.org>
11755 L:      linux-media@vger.kernel.org
11756 L:      linux-renesas-soc@vger.kernel.org
11757 S:      Supported
11758 T:      git git://linuxtv.org/media_tree.git
11759 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
11760 F:      drivers/media/platform/renesas-ceu.c
11761 F:      include/media/drv-intf/renesas-ceu.h
11762
11763 MEDIA DRIVERS FOR RENESAS - DRIF
11764 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
11765 L:      linux-media@vger.kernel.org
11766 L:      linux-renesas-soc@vger.kernel.org
11767 S:      Supported
11768 T:      git git://linuxtv.org/media_tree.git
11769 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
11770 F:      drivers/media/platform/rcar_drif.c
11771
11772 MEDIA DRIVERS FOR RENESAS - FCP
11773 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11774 L:      linux-media@vger.kernel.org
11775 L:      linux-renesas-soc@vger.kernel.org
11776 S:      Supported
11777 T:      git git://linuxtv.org/media_tree.git
11778 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11779 F:      drivers/media/platform/rcar-fcp.c
11780 F:      include/media/rcar-fcp.h
11781
11782 MEDIA DRIVERS FOR RENESAS - FDP1
11783 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11784 L:      linux-media@vger.kernel.org
11785 L:      linux-renesas-soc@vger.kernel.org
11786 S:      Supported
11787 T:      git git://linuxtv.org/media_tree.git
11788 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11789 F:      drivers/media/platform/rcar_fdp1.c
11790
11791 MEDIA DRIVERS FOR RENESAS - VIN
11792 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11793 L:      linux-media@vger.kernel.org
11794 L:      linux-renesas-soc@vger.kernel.org
11795 S:      Supported
11796 T:      git git://linuxtv.org/media_tree.git
11797 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11798 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
11799 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11800 F:      drivers/media/platform/rcar-isp.c
11801 F:      drivers/media/platform/rcar-vin/
11802
11803 MEDIA DRIVERS FOR RENESAS - VSP1
11804 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11805 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11806 L:      linux-media@vger.kernel.org
11807 L:      linux-renesas-soc@vger.kernel.org
11808 S:      Supported
11809 T:      git git://linuxtv.org/media_tree.git
11810 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11811 F:      drivers/media/platform/vsp1/
11812
11813 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11814 L:      linux-media@vger.kernel.org
11815 S:      Orphan
11816 W:      https://linuxtv.org
11817 T:      git git://linuxtv.org/media_tree.git
11818 F:      drivers/media/dvb-frontends/stv0910*
11819
11820 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11821 L:      linux-media@vger.kernel.org
11822 S:      Orphan
11823 W:      https://linuxtv.org
11824 T:      git git://linuxtv.org/media_tree.git
11825 F:      drivers/media/dvb-frontends/stv6111*
11826
11827 MEDIA DRIVERS FOR STM32 - DCMI
11828 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
11829 L:      linux-media@vger.kernel.org
11830 S:      Supported
11831 T:      git git://linuxtv.org/media_tree.git
11832 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11833 F:      drivers/media/platform/stm32/stm32-dcmi.c
11834
11835 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11836 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11837 L:      linux-media@vger.kernel.org
11838 S:      Maintained
11839 W:      https://linuxtv.org
11840 Q:      http://patchwork.kernel.org/project/linux-media/list/
11841 T:      git git://linuxtv.org/media_tree.git
11842 F:      Documentation/admin-guide/media/
11843 F:      Documentation/devicetree/bindings/media/
11844 F:      Documentation/driver-api/media/
11845 F:      Documentation/userspace-api/media/
11846 F:      drivers/media/
11847 F:      drivers/staging/media/
11848 F:      include/linux/platform_data/media/
11849 F:      include/media/
11850 F:      include/uapi/linux/dvb/
11851 F:      include/uapi/linux/ivtv*
11852 F:      include/uapi/linux/media.h
11853 F:      include/uapi/linux/meye.h
11854 F:      include/uapi/linux/uvcvideo.h
11855 F:      include/uapi/linux/v4l2-*
11856 F:      include/uapi/linux/videodev2.h
11857
11858 MEDIATEK BLUETOOTH DRIVER
11859 M:      Sean Wang <sean.wang@mediatek.com>
11860 L:      linux-bluetooth@vger.kernel.org
11861 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11862 S:      Maintained
11863 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11864 F:      drivers/bluetooth/btmtkuart.c
11865
11866 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11867 M:      Sean Wang <sean.wang@mediatek.com>
11868 L:      linux-pm@vger.kernel.org
11869 S:      Maintained
11870 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11871 F:      drivers/power/reset/mt6323-poweroff.c
11872
11873 MEDIATEK CIR DRIVER
11874 M:      Sean Wang <sean.wang@mediatek.com>
11875 S:      Maintained
11876 F:      drivers/media/rc/mtk-cir.c
11877
11878 MEDIATEK DMA DRIVER
11879 M:      Sean Wang <sean.wang@mediatek.com>
11880 L:      dmaengine@vger.kernel.org
11881 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11882 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11883 S:      Maintained
11884 F:      Documentation/devicetree/bindings/dma/mtk-*
11885 F:      drivers/dma/mediatek/
11886
11887 MEDIATEK ETHERNET DRIVER
11888 M:      Felix Fietkau <nbd@nbd.name>
11889 M:      John Crispin <john@phrozen.org>
11890 M:      Sean Wang <sean.wang@mediatek.com>
11891 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11892 L:      netdev@vger.kernel.org
11893 S:      Maintained
11894 F:      drivers/net/ethernet/mediatek/
11895
11896 MEDIATEK I2C CONTROLLER DRIVER
11897 M:      Qii Wang <qii.wang@mediatek.com>
11898 L:      linux-i2c@vger.kernel.org
11899 S:      Maintained
11900 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11901 F:      drivers/i2c/busses/i2c-mt65xx.c
11902
11903 MEDIATEK IOMMU DRIVER
11904 M:      Yong Wu <yong.wu@mediatek.com>
11905 L:      iommu@lists.linux-foundation.org
11906 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11907 S:      Supported
11908 F:      Documentation/devicetree/bindings/iommu/mediatek*
11909 F:      drivers/iommu/mtk_iommu*
11910 F:      include/dt-bindings/memory/mt*-port.h
11911
11912 MEDIATEK JPEG DRIVER
11913 M:      Rick Chang <rick.chang@mediatek.com>
11914 M:      Bin Liu <bin.liu@mediatek.com>
11915 S:      Supported
11916 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11917 F:      drivers/media/platform/mtk-jpeg/
11918
11919 MEDIATEK MDP DRIVER
11920 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11921 M:      Houlong Wei <houlong.wei@mediatek.com>
11922 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11923 S:      Supported
11924 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11925 F:      drivers/media/platform/mtk-mdp/
11926 F:      drivers/media/platform/mtk-vpu/
11927
11928 MEDIATEK MEDIA DRIVER
11929 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11930 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11931 S:      Supported
11932 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11933 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11934 F:      drivers/media/platform/mtk-vcodec/
11935 F:      drivers/media/platform/mtk-vpu/
11936
11937 MEDIATEK MMC/SD/SDIO DRIVER
11938 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11939 S:      Maintained
11940 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
11941 F:      drivers/mmc/host/mtk-sd.c
11942
11943 MEDIATEK MT76 WIRELESS LAN DRIVER
11944 M:      Felix Fietkau <nbd@nbd.name>
11945 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11946 M:      Ryder Lee <ryder.lee@mediatek.com>
11947 R:      Shayne Chen <shayne.chen@mediatek.com>
11948 R:      Sean Wang <sean.wang@mediatek.com>
11949 L:      linux-wireless@vger.kernel.org
11950 S:      Maintained
11951 F:      drivers/net/wireless/mediatek/mt76/
11952
11953 MEDIATEK MT7601U WIRELESS LAN DRIVER
11954 M:      Jakub Kicinski <kubakici@wp.pl>
11955 L:      linux-wireless@vger.kernel.org
11956 S:      Maintained
11957 F:      drivers/net/wireless/mediatek/mt7601u/
11958
11959 MEDIATEK MT7621 CLOCK DRIVER
11960 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11961 S:      Maintained
11962 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
11963 F:      drivers/clk/ralink/clk-mt7621.c
11964
11965 MEDIATEK MT7621/28/88 I2C DRIVER
11966 M:      Stefan Roese <sr@denx.de>
11967 L:      linux-i2c@vger.kernel.org
11968 S:      Maintained
11969 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11970 F:      drivers/i2c/busses/i2c-mt7621.c
11971
11972 MEDIATEK MT7621 PHY PCI DRIVER
11973 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11974 S:      Maintained
11975 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11976 F:      drivers/phy/ralink/phy-mt7621-pci.c
11977
11978 MEDIATEK NAND CONTROLLER DRIVER
11979 L:      linux-mtd@lists.infradead.org
11980 S:      Orphan
11981 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11982 F:      drivers/mtd/nand/raw/mtk_*
11983
11984 MEDIATEK PMIC LED DRIVER
11985 M:      Sean Wang <sean.wang@mediatek.com>
11986 S:      Maintained
11987 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11988 F:      drivers/leds/leds-mt6323.c
11989
11990 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11991 M:      Sean Wang <sean.wang@mediatek.com>
11992 S:      Maintained
11993 F:      drivers/char/hw_random/mtk-rng.c
11994
11995 MEDIATEK SMI DRIVER
11996 M:      Yong Wu <yong.wu@mediatek.com>
11997 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11998 S:      Supported
11999 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
12000 F:      drivers/memory/mtk-smi.c
12001 F:      include/soc/mediatek/smi.h
12002
12003 MEDIATEK SWITCH DRIVER
12004 M:      Sean Wang <sean.wang@mediatek.com>
12005 M:      Landen Chao <Landen.Chao@mediatek.com>
12006 M:      DENG Qingfang <dqfext@gmail.com>
12007 L:      netdev@vger.kernel.org
12008 S:      Maintained
12009 F:      drivers/net/dsa/mt7530.*
12010 F:      net/dsa/tag_mtk.c
12011
12012 MEDIATEK USB3 DRD IP DRIVER
12013 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
12014 L:      linux-usb@vger.kernel.org
12015 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12016 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12017 S:      Maintained
12018 F:      Documentation/devicetree/bindings/usb/mediatek,*
12019 F:      drivers/usb/host/xhci-mtk*
12020 F:      drivers/usb/mtu3/
12021
12022 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
12023 M:      Peter Senna Tschudin <peter.senna@gmail.com>
12024 M:      Martin Donnelly <martin.donnelly@ge.com>
12025 M:      Martyn Welch <martyn.welch@collabora.co.uk>
12026 S:      Maintained
12027 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
12028 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
12029
12030 MEGARAID SCSI/SAS DRIVERS
12031 M:      Kashyap Desai <kashyap.desai@broadcom.com>
12032 M:      Sumit Saxena <sumit.saxena@broadcom.com>
12033 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
12034 L:      megaraidlinux.pdl@broadcom.com
12035 L:      linux-scsi@vger.kernel.org
12036 S:      Maintained
12037 W:      http://www.avagotech.com/support/
12038 F:      Documentation/scsi/megaraid.rst
12039 F:      drivers/scsi/megaraid.*
12040 F:      drivers/scsi/megaraid/
12041
12042 MELEXIS MLX90614 DRIVER
12043 M:      Crt Mori <cmo@melexis.com>
12044 L:      linux-iio@vger.kernel.org
12045 S:      Supported
12046 W:      http://www.melexis.com
12047 F:      drivers/iio/temperature/mlx90614.c
12048
12049 MELEXIS MLX90632 DRIVER
12050 M:      Crt Mori <cmo@melexis.com>
12051 L:      linux-iio@vger.kernel.org
12052 S:      Supported
12053 W:      http://www.melexis.com
12054 F:      drivers/iio/temperature/mlx90632.c
12055
12056 MELFAS MIP4 TOUCHSCREEN DRIVER
12057 M:      Sangwon Jee <jeesw@melfas.com>
12058 S:      Supported
12059 W:      http://www.melfas.com
12060 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
12061 F:      drivers/input/touchscreen/melfas_mip4.c
12062
12063 MELLANOX BLUEFIELD I2C DRIVER
12064 M:      Khalil Blaiech <kblaiech@nvidia.com>
12065 L:      linux-i2c@vger.kernel.org
12066 S:      Supported
12067 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
12068 F:      drivers/i2c/busses/i2c-mlxbf.c
12069
12070 MELLANOX ETHERNET DRIVER (mlx4_en)
12071 M:      Tariq Toukan <tariqt@nvidia.com>
12072 L:      netdev@vger.kernel.org
12073 S:      Supported
12074 W:      http://www.mellanox.com
12075 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12076 F:      drivers/net/ethernet/mellanox/mlx4/en_*
12077
12078 MELLANOX ETHERNET DRIVER (mlx5e)
12079 M:      Saeed Mahameed <saeedm@nvidia.com>
12080 L:      netdev@vger.kernel.org
12081 S:      Supported
12082 W:      http://www.mellanox.com
12083 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12084 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
12085
12086 MELLANOX ETHERNET INNOVA DRIVERS
12087 R:      Boris Pismenny <borisp@nvidia.com>
12088 L:      netdev@vger.kernel.org
12089 S:      Supported
12090 W:      http://www.mellanox.com
12091 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12092 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
12093 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12094 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12095 F:      include/linux/mlx5/mlx5_ifc_fpga.h
12096
12097 MELLANOX ETHERNET SWITCH DRIVERS
12098 M:      Jiri Pirko <jiri@nvidia.com>
12099 M:      Ido Schimmel <idosch@nvidia.com>
12100 L:      netdev@vger.kernel.org
12101 S:      Supported
12102 W:      http://www.mellanox.com
12103 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12104 F:      drivers/net/ethernet/mellanox/mlxsw/
12105 F:      tools/testing/selftests/drivers/net/mlxsw/
12106
12107 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12108 M:      mlxsw@nvidia.com
12109 L:      netdev@vger.kernel.org
12110 S:      Supported
12111 W:      http://www.mellanox.com
12112 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12113 F:      drivers/net/ethernet/mellanox/mlxfw/
12114
12115 MELLANOX HARDWARE PLATFORM SUPPORT
12116 M:      Hans de Goede <hdegoede@redhat.com>
12117 M:      Mark Gross <markgross@kernel.org>
12118 M:      Vadim Pasternak <vadimp@nvidia.com>
12119 L:      platform-driver-x86@vger.kernel.org
12120 S:      Supported
12121 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12122 F:      drivers/platform/mellanox/
12123 F:      include/linux/platform_data/mlxreg.h
12124
12125 MELLANOX MLX4 core VPI driver
12126 M:      Tariq Toukan <tariqt@nvidia.com>
12127 L:      netdev@vger.kernel.org
12128 L:      linux-rdma@vger.kernel.org
12129 S:      Supported
12130 W:      http://www.mellanox.com
12131 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12132 F:      drivers/net/ethernet/mellanox/mlx4/
12133 F:      include/linux/mlx4/
12134
12135 MELLANOX MLX4 IB driver
12136 M:      Yishai Hadas <yishaih@nvidia.com>
12137 L:      linux-rdma@vger.kernel.org
12138 S:      Supported
12139 W:      http://www.mellanox.com
12140 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12141 F:      drivers/infiniband/hw/mlx4/
12142 F:      include/linux/mlx4/
12143 F:      include/uapi/rdma/mlx4-abi.h
12144
12145 MELLANOX MLX5 core VPI driver
12146 M:      Saeed Mahameed <saeedm@nvidia.com>
12147 M:      Leon Romanovsky <leonro@nvidia.com>
12148 L:      netdev@vger.kernel.org
12149 L:      linux-rdma@vger.kernel.org
12150 S:      Supported
12151 W:      http://www.mellanox.com
12152 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12153 F:      Documentation/networking/device_drivers/ethernet/mellanox/
12154 F:      drivers/net/ethernet/mellanox/mlx5/core/
12155 F:      include/linux/mlx5/
12156
12157 MELLANOX MLX5 IB driver
12158 M:      Leon Romanovsky <leonro@nvidia.com>
12159 L:      linux-rdma@vger.kernel.org
12160 S:      Supported
12161 W:      http://www.mellanox.com
12162 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12163 F:      drivers/infiniband/hw/mlx5/
12164 F:      include/linux/mlx5/
12165 F:      include/uapi/rdma/mlx5-abi.h
12166
12167 MELLANOX MLXCPLD I2C AND MUX DRIVER
12168 M:      Vadim Pasternak <vadimp@nvidia.com>
12169 M:      Michael Shych <michaelsh@nvidia.com>
12170 L:      linux-i2c@vger.kernel.org
12171 S:      Supported
12172 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
12173 F:      drivers/i2c/busses/i2c-mlxcpld.c
12174 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
12175
12176 MELLANOX MLXCPLD LED DRIVER
12177 M:      Vadim Pasternak <vadimp@nvidia.com>
12178 L:      linux-leds@vger.kernel.org
12179 S:      Supported
12180 F:      Documentation/leds/leds-mlxcpld.rst
12181 F:      drivers/leds/leds-mlxcpld.c
12182 F:      drivers/leds/leds-mlxreg.c
12183
12184 MELLANOX PLATFORM DRIVER
12185 M:      Vadim Pasternak <vadimp@nvidia.com>
12186 L:      platform-driver-x86@vger.kernel.org
12187 S:      Supported
12188 F:      drivers/platform/x86/mlx-platform.c
12189
12190 MEMBARRIER SUPPORT
12191 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12192 M:      "Paul E. McKenney" <paulmck@kernel.org>
12193 L:      linux-kernel@vger.kernel.org
12194 S:      Supported
12195 F:      arch/powerpc/include/asm/membarrier.h
12196 F:      include/uapi/linux/membarrier.h
12197 F:      kernel/sched/membarrier.c
12198
12199 MEMBLOCK
12200 M:      Mike Rapoport <rppt@linux.ibm.com>
12201 L:      linux-mm@kvack.org
12202 S:      Maintained
12203 F:      Documentation/core-api/boot-time-mm.rst
12204 F:      include/linux/memblock.h
12205 F:      mm/memblock.c
12206
12207 MEMORY CONTROLLER DRIVERS
12208 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
12209 L:      linux-kernel@vger.kernel.org
12210 S:      Maintained
12211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12212 F:      Documentation/devicetree/bindings/memory-controllers/
12213 F:      drivers/memory/
12214 F:      include/dt-bindings/memory/
12215 F:      include/memory/
12216
12217 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12218 M:      Dmitry Osipenko <digetx@gmail.com>
12219 L:      linux-pm@vger.kernel.org
12220 L:      linux-tegra@vger.kernel.org
12221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12222 S:      Maintained
12223 F:      drivers/devfreq/tegra30-devfreq.c
12224
12225 MEMORY MANAGEMENT
12226 M:      Andrew Morton <akpm@linux-foundation.org>
12227 L:      linux-mm@kvack.org
12228 S:      Maintained
12229 W:      http://www.linux-mm.org
12230 T:      quilt https://ozlabs.org/~akpm/mmotm/
12231 T:      quilt https://ozlabs.org/~akpm/mmots/
12232 T:      git git://github.com/hnaz/linux-mm.git
12233 F:      include/linux/gfp.h
12234 F:      include/linux/memory_hotplug.h
12235 F:      include/linux/mm.h
12236 F:      include/linux/mmzone.h
12237 F:      include/linux/pagewalk.h
12238 F:      include/linux/vmalloc.h
12239 F:      mm/
12240 F:      tools/testing/selftests/vm/
12241
12242 MEMORY TECHNOLOGY DEVICES (MTD)
12243 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12244 M:      Richard Weinberger <richard@nod.at>
12245 M:      Vignesh Raghavendra <vigneshr@ti.com>
12246 L:      linux-mtd@lists.infradead.org
12247 S:      Maintained
12248 W:      http://www.linux-mtd.infradead.org/
12249 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12250 C:      irc://irc.oftc.net/mtd
12251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12253 F:      Documentation/devicetree/bindings/mtd/
12254 F:      drivers/mtd/
12255 F:      include/linux/mtd/
12256 F:      include/uapi/mtd/
12257
12258 MEN A21 WATCHDOG DRIVER
12259 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12260 L:      linux-watchdog@vger.kernel.org
12261 S:      Maintained
12262 F:      drivers/watchdog/mena21_wdt.c
12263
12264 MEN CHAMELEON BUS (mcb)
12265 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12266 S:      Maintained
12267 F:      Documentation/driver-api/men-chameleon-bus.rst
12268 F:      drivers/mcb/
12269 F:      include/linux/mcb.h
12270
12271 MEN F21BMC (Board Management Controller)
12272 M:      Andreas Werner <andreas.werner@men.de>
12273 S:      Supported
12274 F:      Documentation/hwmon/menf21bmc.rst
12275 F:      drivers/hwmon/menf21bmc_hwmon.c
12276 F:      drivers/leds/leds-menf21bmc.c
12277 F:      drivers/mfd/menf21bmc.c
12278 F:      drivers/watchdog/menf21bmc_wdt.c
12279
12280 MEN Z069 WATCHDOG DRIVER
12281 M:      Johannes Thumshirn <jth@kernel.org>
12282 L:      linux-watchdog@vger.kernel.org
12283 S:      Maintained
12284 F:      drivers/watchdog/menz69_wdt.c
12285
12286 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12287 M:      Neil Armstrong <narmstrong@baylibre.com>
12288 L:      linux-media@vger.kernel.org
12289 L:      linux-amlogic@lists.infradead.org
12290 S:      Supported
12291 W:      http://linux-meson.com/
12292 T:      git git://linuxtv.org/media_tree.git
12293 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12294 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12295 F:      drivers/media/cec/platform/meson/ao-cec.c
12296
12297 MESON GE2D DRIVER FOR AMLOGIC SOCS
12298 M:      Neil Armstrong <narmstrong@baylibre.com>
12299 L:      linux-media@vger.kernel.org
12300 L:      linux-amlogic@lists.infradead.org
12301 S:      Supported
12302 T:      git git://linuxtv.org/media_tree.git
12303 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12304 F:      drivers/media/platform/meson/ge2d/
12305
12306 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12307 M:      Liang Yang <liang.yang@amlogic.com>
12308 L:      linux-mtd@lists.infradead.org
12309 S:      Maintained
12310 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12311 F:      drivers/mtd/nand/raw/meson_*
12312
12313 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12314 M:      Neil Armstrong <narmstrong@baylibre.com>
12315 L:      linux-media@vger.kernel.org
12316 L:      linux-amlogic@lists.infradead.org
12317 S:      Supported
12318 T:      git git://linuxtv.org/media_tree.git
12319 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12320 F:      drivers/staging/media/meson/vdec/
12321
12322 METHODE UDPU SUPPORT
12323 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12324 S:      Maintained
12325 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12326
12327 MHI BUS
12328 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12329 M:      Hemant Kumar <hemantk@codeaurora.org>
12330 L:      linux-arm-msm@vger.kernel.org
12331 S:      Maintained
12332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12333 F:      Documentation/ABI/stable/sysfs-bus-mhi
12334 F:      Documentation/mhi/
12335 F:      drivers/bus/mhi/
12336 F:      include/linux/mhi.h
12337
12338 MICROBLAZE ARCHITECTURE
12339 M:      Michal Simek <monstr@monstr.eu>
12340 S:      Supported
12341 W:      http://www.monstr.eu/fdt/
12342 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12343 F:      arch/microblaze/
12344
12345 MICROCHIP AT91 DMA DRIVERS
12346 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12347 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12348 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12349 L:      dmaengine@vger.kernel.org
12350 S:      Supported
12351 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12352 F:      drivers/dma/at_hdmac.c
12353 F:      drivers/dma/at_hdmac_regs.h
12354 F:      drivers/dma/at_xdmac.c
12355 F:      include/dt-bindings/dma/at91.h
12356
12357 MICROCHIP AT91 SERIAL DRIVER
12358 M:      Richard Genoud <richard.genoud@gmail.com>
12359 S:      Maintained
12360 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12361 F:      drivers/tty/serial/atmel_serial.c
12362 F:      drivers/tty/serial/atmel_serial.h
12363
12364 MICROCHIP AT91 USART MFD DRIVER
12365 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12366 L:      linux-kernel@vger.kernel.org
12367 S:      Supported
12368 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12369 F:      drivers/mfd/at91-usart.c
12370 F:      include/dt-bindings/mfd/at91-usart.h
12371
12372 MICROCHIP AT91 USART SPI DRIVER
12373 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12374 L:      linux-spi@vger.kernel.org
12375 S:      Supported
12376 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12377 F:      drivers/spi/spi-at91-usart.c
12378
12379 MICROCHIP AUDIO ASOC DRIVERS
12380 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12381 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12382 S:      Supported
12383 F:      sound/soc/atmel
12384
12385 MICROCHIP ECC DRIVER
12386 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12387 L:      linux-crypto@vger.kernel.org
12388 S:      Maintained
12389 F:      drivers/crypto/atmel-ecc.*
12390
12391 MICROCHIP EIC DRIVER
12392 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12393 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12394 S:      Supported
12395 F:      drivers/irqchip/irq-mchp-eic.c
12396
12397 MICROCHIP I2C DRIVER
12398 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12399 L:      linux-i2c@vger.kernel.org
12400 S:      Supported
12401 F:      drivers/i2c/busses/i2c-at91-*.c
12402 F:      drivers/i2c/busses/i2c-at91.h
12403
12404 MICROCHIP ISC DRIVER
12405 M:      Eugen Hristev <eugen.hristev@microchip.com>
12406 L:      linux-media@vger.kernel.org
12407 S:      Supported
12408 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
12409 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
12410 F:      drivers/media/platform/atmel/atmel-isc-base.c
12411 F:      drivers/media/platform/atmel/atmel-isc-regs.h
12412 F:      drivers/media/platform/atmel/atmel-isc.h
12413 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
12414 F:      drivers/media/platform/atmel/atmel-sama7g5-isc.c
12415 F:      include/linux/atmel-isc-media.h
12416
12417 MICROCHIP ISI DRIVER
12418 M:      Eugen Hristev <eugen.hristev@microchip.com>
12419 L:      linux-media@vger.kernel.org
12420 S:      Supported
12421 F:      drivers/media/platform/atmel/atmel-isi.c
12422 F:      drivers/media/platform/atmel/atmel-isi.h
12423
12424 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12425 M:      Woojung Huh <woojung.huh@microchip.com>
12426 M:      UNGLinuxDriver@microchip.com
12427 L:      netdev@vger.kernel.org
12428 S:      Maintained
12429 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12430 F:      drivers/net/dsa/microchip/*
12431 F:      include/linux/platform_data/microchip-ksz.h
12432 F:      net/dsa/tag_ksz.c
12433
12434 MICROCHIP LAN743X ETHERNET DRIVER
12435 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
12436 M:      UNGLinuxDriver@microchip.com
12437 L:      netdev@vger.kernel.org
12438 S:      Maintained
12439 F:      drivers/net/ethernet/microchip/lan743x_*
12440
12441 MICROCHIP LCDFB DRIVER
12442 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
12443 L:      linux-fbdev@vger.kernel.org
12444 S:      Maintained
12445 F:      drivers/video/fbdev/atmel_lcdfb.c
12446 F:      include/video/atmel_lcdc.h
12447
12448 MICROCHIP MCP16502 PMIC DRIVER
12449 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12450 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12451 S:      Supported
12452 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12453 F:      drivers/regulator/mcp16502.c
12454
12455 MICROCHIP MCP3911 ADC DRIVER
12456 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12457 M:      Kent Gustavsson <kent@minoris.se>
12458 L:      linux-iio@vger.kernel.org
12459 S:      Supported
12460 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12461 F:      drivers/iio/adc/mcp3911.c
12462
12463 MICROCHIP MMC/SD/SDIO MCI DRIVER
12464 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12465 S:      Maintained
12466 F:      drivers/mmc/host/atmel-mci.c
12467
12468 MICROCHIP NAND DRIVER
12469 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12470 L:      linux-mtd@lists.infradead.org
12471 S:      Supported
12472 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
12473 F:      drivers/mtd/nand/raw/atmel/*
12474
12475 MICROCHIP PWM DRIVER
12476 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12477 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12478 L:      linux-pwm@vger.kernel.org
12479 S:      Supported
12480 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12481 F:      drivers/pwm/pwm-atmel.c
12482
12483 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12484 M:      Eugen Hristev <eugen.hristev@microchip.com>
12485 L:      linux-iio@vger.kernel.org
12486 S:      Supported
12487 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12488 F:      drivers/iio/adc/at91-sama5d2_adc.c
12489 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12490
12491 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12492 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12493 S:      Supported
12494 F:      drivers/power/reset/at91-sama5d2_shdwc.c
12495
12496 MICROCHIP SPI DRIVER
12497 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12498 S:      Supported
12499 F:      drivers/spi/spi-atmel.*
12500
12501 MICROCHIP SSC DRIVER
12502 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12503 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12504 S:      Supported
12505 F:      drivers/misc/atmel-ssc.c
12506 F:      include/linux/atmel-ssc.h
12507
12508 MICROCHIP USB251XB DRIVER
12509 M:      Richard Leitner <richard.leitner@skidata.com>
12510 L:      linux-usb@vger.kernel.org
12511 S:      Maintained
12512 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
12513 F:      drivers/usb/misc/usb251xb.c
12514
12515 MICROCHIP USBA UDC DRIVER
12516 M:      Cristian Birsan <cristian.birsan@microchip.com>
12517 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12518 S:      Supported
12519 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
12520
12521 MICROCHIP WILC1000 WIFI DRIVER
12522 M:      Ajay Singh <ajay.kathat@microchip.com>
12523 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12524 L:      linux-wireless@vger.kernel.org
12525 S:      Supported
12526 F:      drivers/net/wireless/microchip/wilc1000/
12527
12528 MICROSEMI MIPS SOCS
12529 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12530 M:      UNGLinuxDriver@microchip.com
12531 L:      linux-mips@vger.kernel.org
12532 S:      Supported
12533 F:      Documentation/devicetree/bindings/mips/mscc.txt
12534 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12535 F:      arch/mips/boot/dts/mscc/
12536 F:      arch/mips/configs/generic/board-ocelot.config
12537 F:      arch/mips/generic/board-ocelot.c
12538
12539 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12540 M:      Don Brace <don.brace@microchip.com>
12541 L:      storagedev@microchip.com
12542 L:      linux-scsi@vger.kernel.org
12543 S:      Supported
12544 F:      Documentation/scsi/smartpqi.rst
12545 F:      drivers/scsi/smartpqi/Kconfig
12546 F:      drivers/scsi/smartpqi/Makefile
12547 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
12548 F:      include/linux/cciss*.h
12549 F:      include/uapi/linux/cciss*.h
12550
12551 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12552 M:      Maximilian Luz <luzmaximilian@gmail.com>
12553 L:      linux-pm@vger.kernel.org
12554 L:      platform-driver-x86@vger.kernel.org
12555 S:      Maintained
12556 F:      drivers/power/supply/surface_battery.c
12557 F:      drivers/power/supply/surface_charger.c
12558
12559 MICROSOFT SURFACE DTX DRIVER
12560 M:      Maximilian Luz <luzmaximilian@gmail.com>
12561 L:      platform-driver-x86@vger.kernel.org
12562 S:      Maintained
12563 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
12564 F:      drivers/platform/surface/surface_dtx.c
12565 F:      include/uapi/linux/surface_aggregator/dtx.h
12566
12567 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12568 M:      Maximilian Luz <luzmaximilian@gmail.com>
12569 L:      platform-driver-x86@vger.kernel.org
12570 S:      Maintained
12571 F:      drivers/platform/surface/surface_gpe.c
12572
12573 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12574 M:      Hans de Goede <hdegoede@redhat.com>
12575 M:      Mark Gross <markgross@kernel.org>
12576 M:      Maximilian Luz <luzmaximilian@gmail.com>
12577 L:      platform-driver-x86@vger.kernel.org
12578 S:      Maintained
12579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12580 F:      drivers/platform/surface/
12581
12582 MICROSOFT SURFACE HID TRANSPORT DRIVER
12583 M:      Maximilian Luz <luzmaximilian@gmail.com>
12584 L:      linux-input@vger.kernel.org
12585 L:      platform-driver-x86@vger.kernel.org
12586 S:      Maintained
12587 F:      drivers/hid/surface-hid/
12588
12589 MICROSOFT SURFACE HOT-PLUG DRIVER
12590 M:      Maximilian Luz <luzmaximilian@gmail.com>
12591 L:      platform-driver-x86@vger.kernel.org
12592 S:      Maintained
12593 F:      drivers/platform/surface/surface_hotplug.c
12594
12595 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12596 M:      Maximilian Luz <luzmaximilian@gmail.com>
12597 L:      platform-driver-x86@vger.kernel.org
12598 S:      Maintained
12599 F:      drivers/platform/surface/surface_platform_profile.c
12600
12601 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12602 M:      Chen Yu <yu.c.chen@intel.com>
12603 L:      platform-driver-x86@vger.kernel.org
12604 S:      Supported
12605 F:      drivers/platform/surface/surfacepro3_button.c
12606
12607 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12608 M:      Maximilian Luz <luzmaximilian@gmail.com>
12609 L:      platform-driver-x86@vger.kernel.org
12610 S:      Maintained
12611 W:      https://github.com/linux-surface/surface-aggregator-module
12612 C:      irc://irc.libera.chat/linux-surface
12613 F:      Documentation/driver-api/surface_aggregator/
12614 F:      drivers/platform/surface/aggregator/
12615 F:      drivers/platform/surface/surface_acpi_notify.c
12616 F:      drivers/platform/surface/surface_aggregator_cdev.c
12617 F:      drivers/platform/surface/surface_aggregator_registry.c
12618 F:      include/linux/surface_acpi_notify.h
12619 F:      include/linux/surface_aggregator/
12620 F:      include/uapi/linux/surface_aggregator/
12621
12622 MICROTEK X6 SCANNER
12623 M:      Oliver Neukum <oliver@neukum.org>
12624 S:      Maintained
12625 F:      drivers/usb/image/microtek.*
12626
12627 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12628 M:      Luka Kovacic <luka.kovacic@sartura.hr>
12629 M:      Luka Perkov <luka.perkov@sartura.hr>
12630 S:      Maintained
12631 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12632 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12633 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12634 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12635 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12636 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12637
12638 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12639 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12640 L:      linux-media@vger.kernel.org
12641 S:      Maintained
12642 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12643 F:      Documentation/driver-api/media/drivers/ccs/
12644 F:      Documentation/userspace-api/media/drivers/ccs.rst
12645 F:      drivers/media/i2c/ccs-pll.c
12646 F:      drivers/media/i2c/ccs-pll.h
12647 F:      drivers/media/i2c/ccs/
12648 F:      include/uapi/linux/ccs.h
12649 F:      include/uapi/linux/smiapp.h
12650
12651 MIPS
12652 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12653 L:      linux-mips@vger.kernel.org
12654 S:      Maintained
12655 W:      http://www.linux-mips.org/
12656 Q:      https://patchwork.kernel.org/project/linux-mips/list/
12657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12658 F:      Documentation/devicetree/bindings/mips/
12659 F:      Documentation/mips/
12660 F:      arch/mips/
12661 F:      drivers/platform/mips/
12662
12663 MIPS BOSTON DEVELOPMENT BOARD
12664 M:      Paul Burton <paulburton@kernel.org>
12665 L:      linux-mips@vger.kernel.org
12666 S:      Maintained
12667 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
12668 F:      arch/mips/boot/dts/img/boston.dts
12669 F:      arch/mips/configs/generic/board-boston.config
12670 F:      drivers/clk/imgtec/clk-boston.c
12671 F:      include/dt-bindings/clock/boston-clock.h
12672
12673 MIPS CORE DRIVERS
12674 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12675 M:      Serge Semin <fancer.lancer@gmail.com>
12676 L:      linux-mips@vger.kernel.org
12677 S:      Supported
12678 F:      drivers/bus/mips_cdmm.c
12679 F:      drivers/clocksource/mips-gic-timer.c
12680 F:      drivers/cpuidle/cpuidle-cps.c
12681 F:      drivers/irqchip/irq-mips-cpu.c
12682 F:      drivers/irqchip/irq-mips-gic.c
12683
12684 MIPS GENERIC PLATFORM
12685 M:      Paul Burton <paulburton@kernel.org>
12686 L:      linux-mips@vger.kernel.org
12687 S:      Supported
12688 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12689 F:      arch/mips/generic/
12690 F:      arch/mips/tools/generic-board-config.sh
12691
12692 MIPS RINT INSTRUCTION EMULATION
12693 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
12694 L:      linux-mips@vger.kernel.org
12695 S:      Supported
12696 F:      arch/mips/math-emu/dp_rint.c
12697 F:      arch/mips/math-emu/sp_rint.c
12698
12699 MIPS/LOONGSON1 ARCHITECTURE
12700 M:      Keguang Zhang <keguang.zhang@gmail.com>
12701 L:      linux-mips@vger.kernel.org
12702 S:      Maintained
12703 F:      arch/mips/include/asm/mach-loongson32/
12704 F:      arch/mips/loongson32/
12705 F:      drivers/*/*/*loongson1*
12706 F:      drivers/*/*loongson1*
12707
12708 MIPS/LOONGSON2EF ARCHITECTURE
12709 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12710 L:      linux-mips@vger.kernel.org
12711 S:      Maintained
12712 F:      arch/mips/include/asm/mach-loongson2ef/
12713 F:      arch/mips/loongson2ef/
12714 F:      drivers/cpufreq/loongson2_cpufreq.c
12715
12716 MIPS/LOONGSON64 ARCHITECTURE
12717 M:      Huacai Chen <chenhuacai@kernel.org>
12718 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12719 L:      linux-mips@vger.kernel.org
12720 S:      Maintained
12721 F:      arch/mips/include/asm/mach-loongson64/
12722 F:      arch/mips/loongson64/
12723 F:      drivers/irqchip/irq-loongson*
12724 F:      drivers/platform/mips/cpu_hwmon.c
12725
12726 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12727 M:      Hans Verkuil <hverkuil@xs4all.nl>
12728 L:      linux-media@vger.kernel.org
12729 S:      Odd Fixes
12730 W:      https://linuxtv.org
12731 T:      git git://linuxtv.org/media_tree.git
12732 F:      drivers/media/radio/radio-miropcm20*
12733
12734 MMP SUPPORT
12735 R:      Lubomir Rintel <lkundrak@v3.sk>
12736 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12737 S:      Odd Fixes
12738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12739 F:      arch/arm/boot/dts/mmp*
12740 F:      arch/arm/mach-mmp/
12741 F:      include/linux/soc/mmp/
12742
12743 MMP USB PHY DRIVERS
12744 R:      Lubomir Rintel <lkundrak@v3.sk>
12745 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12746 S:      Maintained
12747 F:      drivers/phy/marvell/phy-mmp3-usb.c
12748 F:      drivers/phy/marvell/phy-pxa-usb.c
12749
12750 MMU GATHER AND TLB INVALIDATION
12751 M:      Will Deacon <will@kernel.org>
12752 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
12753 M:      Andrew Morton <akpm@linux-foundation.org>
12754 M:      Nick Piggin <npiggin@gmail.com>
12755 M:      Peter Zijlstra <peterz@infradead.org>
12756 L:      linux-arch@vger.kernel.org
12757 L:      linux-mm@kvack.org
12758 S:      Maintained
12759 F:      arch/*/include/asm/tlb.h
12760 F:      include/asm-generic/tlb.h
12761 F:      mm/mmu_gather.c
12762
12763 MN88472 MEDIA DRIVER
12764 M:      Antti Palosaari <crope@iki.fi>
12765 L:      linux-media@vger.kernel.org
12766 S:      Maintained
12767 W:      https://linuxtv.org
12768 W:      http://palosaari.fi/linux/
12769 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12770 F:      drivers/media/dvb-frontends/mn88472*
12771
12772 MN88473 MEDIA DRIVER
12773 M:      Antti Palosaari <crope@iki.fi>
12774 L:      linux-media@vger.kernel.org
12775 S:      Maintained
12776 W:      https://linuxtv.org
12777 W:      http://palosaari.fi/linux/
12778 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12779 F:      drivers/media/dvb-frontends/mn88473*
12780
12781 MODULE SUPPORT
12782 M:      Luis Chamberlain <mcgrof@kernel.org>
12783 M:      Jessica Yu <jeyu@kernel.org>
12784 S:      Maintained
12785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12786 F:      include/linux/module.h
12787 F:      kernel/module.c
12788
12789 MONOLITHIC POWER SYSTEM PMIC DRIVER
12790 M:      Saravanan Sekar <sravanhome@gmail.com>
12791 S:      Maintained
12792 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12793 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12794 F:      drivers/iio/adc/mp2629_adc.c
12795 F:      drivers/mfd/mp2629.c
12796 F:      drivers/power/supply/mp2629_charger.c
12797 F:      drivers/regulator/mp5416.c
12798 F:      drivers/regulator/mpq7920.c
12799 F:      drivers/regulator/mpq7920.h
12800 F:      include/linux/mfd/mp2629.h
12801
12802 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12803 S:      Orphan
12804 W:      http://popies.net/meye/
12805 F:      Documentation/userspace-api/media/drivers/meye*
12806 F:      drivers/media/pci/meye/
12807 F:      include/uapi/linux/meye.h
12808
12809 MOTORCOMM PHY DRIVER
12810 M:      Peter Geis <pgwipeout@gmail.com>
12811 L:      netdev@vger.kernel.org
12812 S:      Maintained
12813 F:      drivers/net/phy/motorcomm.c
12814
12815 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12816 M:      Jiri Slaby <jirislaby@kernel.org>
12817 S:      Maintained
12818 F:      Documentation/driver-api/serial/moxa-smartio.rst
12819 F:      drivers/tty/mxser.*
12820
12821 MR800 AVERMEDIA USB FM RADIO DRIVER
12822 M:      Alexey Klimov <klimov.linux@gmail.com>
12823 L:      linux-media@vger.kernel.org
12824 S:      Maintained
12825 T:      git git://linuxtv.org/media_tree.git
12826 F:      drivers/media/radio/radio-mr800.c
12827
12828 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12829 M:      Alan Ott <alan@signal11.us>
12830 L:      linux-wpan@vger.kernel.org
12831 S:      Maintained
12832 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12833 F:      drivers/net/ieee802154/mrf24j40.c
12834
12835 MSI LAPTOP SUPPORT
12836 M:      "Lee, Chun-Yi" <jlee@suse.com>
12837 L:      platform-driver-x86@vger.kernel.org
12838 S:      Maintained
12839 F:      drivers/platform/x86/msi-laptop.c
12840
12841 MSI WMI SUPPORT
12842 L:      platform-driver-x86@vger.kernel.org
12843 S:      Orphan
12844 F:      drivers/platform/x86/msi-wmi.c
12845
12846 MSI001 MEDIA DRIVER
12847 M:      Antti Palosaari <crope@iki.fi>
12848 L:      linux-media@vger.kernel.org
12849 S:      Maintained
12850 W:      https://linuxtv.org
12851 W:      http://palosaari.fi/linux/
12852 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12853 T:      git git://linuxtv.org/anttip/media_tree.git
12854 F:      drivers/media/tuners/msi001*
12855
12856 MSI2500 MEDIA DRIVER
12857 M:      Antti Palosaari <crope@iki.fi>
12858 L:      linux-media@vger.kernel.org
12859 S:      Maintained
12860 W:      https://linuxtv.org
12861 W:      http://palosaari.fi/linux/
12862 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12863 T:      git git://linuxtv.org/anttip/media_tree.git
12864 F:      drivers/media/usb/msi2500/
12865
12866 MSTAR INTERRUPT CONTROLLER DRIVER
12867 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12868 M:      Daniel Palmer <daniel@thingy.jp>
12869 S:      Maintained
12870 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12871 F:      drivers/irqchip/irq-mst-intc.c
12872
12873 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12874 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12875 L:      linux-mtd@lists.infradead.org
12876 S:      Maintained
12877 F:      drivers/mtd/devices/docg3*
12878
12879 MT9M032 APTINA SENSOR DRIVER
12880 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12881 L:      linux-media@vger.kernel.org
12882 S:      Maintained
12883 T:      git git://linuxtv.org/media_tree.git
12884 F:      drivers/media/i2c/mt9m032.c
12885 F:      include/media/i2c/mt9m032.h
12886
12887 MT9P031 APTINA CAMERA SENSOR
12888 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12889 L:      linux-media@vger.kernel.org
12890 S:      Maintained
12891 T:      git git://linuxtv.org/media_tree.git
12892 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
12893 F:      drivers/media/i2c/mt9p031.c
12894 F:      include/media/i2c/mt9p031.h
12895
12896 MT9T001 APTINA CAMERA SENSOR
12897 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12898 L:      linux-media@vger.kernel.org
12899 S:      Maintained
12900 T:      git git://linuxtv.org/media_tree.git
12901 F:      drivers/media/i2c/mt9t001.c
12902 F:      include/media/i2c/mt9t001.h
12903
12904 MT9T112 APTINA CAMERA SENSOR
12905 M:      Jacopo Mondi <jacopo@jmondi.org>
12906 L:      linux-media@vger.kernel.org
12907 S:      Odd Fixes
12908 T:      git git://linuxtv.org/media_tree.git
12909 F:      drivers/media/i2c/mt9t112.c
12910 F:      include/media/i2c/mt9t112.h
12911
12912 MT9V032 APTINA CAMERA SENSOR
12913 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12914 L:      linux-media@vger.kernel.org
12915 S:      Maintained
12916 T:      git git://linuxtv.org/media_tree.git
12917 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12918 F:      drivers/media/i2c/mt9v032.c
12919 F:      include/media/i2c/mt9v032.h
12920
12921 MT9V111 APTINA CAMERA SENSOR
12922 M:      Jacopo Mondi <jacopo@jmondi.org>
12923 L:      linux-media@vger.kernel.org
12924 S:      Maintained
12925 T:      git git://linuxtv.org/media_tree.git
12926 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12927 F:      drivers/media/i2c/mt9v111.c
12928
12929 MULTIFUNCTION DEVICES (MFD)
12930 M:      Lee Jones <lee.jones@linaro.org>
12931 S:      Supported
12932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12933 F:      Documentation/devicetree/bindings/mfd/
12934 F:      drivers/mfd/
12935 F:      include/dt-bindings/mfd/
12936 F:      include/linux/mfd/
12937
12938 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12939 S:      Orphan
12940 F:      drivers/mmc/host/mmc_spi.c
12941 F:      include/linux/spi/mmc_spi.h
12942
12943 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12944 M:      Ulf Hansson <ulf.hansson@linaro.org>
12945 L:      linux-mmc@vger.kernel.org
12946 S:      Maintained
12947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12948 F:      Documentation/devicetree/bindings/mmc/
12949 F:      drivers/mmc/
12950 F:      include/linux/mmc/
12951 F:      include/uapi/linux/mmc/
12952
12953 MULTIPLEXER SUBSYSTEM
12954 M:      Peter Rosin <peda@axentia.se>
12955 S:      Maintained
12956 F:      Documentation/ABI/testing/sysfs-class-mux*
12957 F:      Documentation/devicetree/bindings/mux/
12958 F:      drivers/mux/
12959 F:      include/dt-bindings/mux/
12960 F:      include/linux/mux/
12961
12962 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12963 M:      Bin Liu <b-liu@ti.com>
12964 L:      linux-usb@vger.kernel.org
12965 S:      Maintained
12966 F:      drivers/usb/musb/
12967
12968 MXL301RF MEDIA DRIVER
12969 M:      Akihiro Tsukada <tskd08@gmail.com>
12970 L:      linux-media@vger.kernel.org
12971 S:      Odd Fixes
12972 F:      drivers/media/tuners/mxl301rf*
12973
12974 MXL5007T MEDIA DRIVER
12975 M:      Michael Krufky <mkrufky@linuxtv.org>
12976 L:      linux-media@vger.kernel.org
12977 S:      Maintained
12978 W:      https://linuxtv.org
12979 W:      http://github.com/mkrufky
12980 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12981 T:      git git://linuxtv.org/mkrufky/tuners.git
12982 F:      drivers/media/tuners/mxl5007t.*
12983
12984 MXSFB DRM DRIVER
12985 M:      Marek Vasut <marex@denx.de>
12986 M:      Stefan Agner <stefan@agner.ch>
12987 L:      dri-devel@lists.freedesktop.org
12988 S:      Supported
12989 T:      git git://anongit.freedesktop.org/drm/drm-misc
12990 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
12991 F:      drivers/gpu/drm/mxsfb/
12992
12993 MYLEX DAC960 PCI RAID Controller
12994 M:      Hannes Reinecke <hare@kernel.org>
12995 L:      linux-scsi@vger.kernel.org
12996 S:      Supported
12997 F:      drivers/scsi/myrb.*
12998 F:      drivers/scsi/myrs.*
12999
13000 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
13001 M:      Chris Lee <christopher.lee@cspi.com>
13002 L:      netdev@vger.kernel.org
13003 S:      Supported
13004 W:      https://www.cspi.com/ethernet-products/support/downloads/
13005 F:      drivers/net/ethernet/myricom/myri10ge/
13006
13007 NAND FLASH SUBSYSTEM
13008 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13009 R:      Richard Weinberger <richard@nod.at>
13010 L:      linux-mtd@lists.infradead.org
13011 S:      Maintained
13012 W:      http://www.linux-mtd.infradead.org/
13013 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13014 C:      irc://irc.oftc.net/mtd
13015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
13016 F:      drivers/mtd/nand/
13017 F:      include/linux/mtd/*nand*.h
13018
13019 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
13020 M:      Daniel Mack <zonque@gmail.com>
13021 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13022 S:      Maintained
13023 W:      http://www.native-instruments.com
13024 F:      sound/usb/caiaq/
13025
13026 NATSEMI ETHERNET DRIVER (DP8381x)
13027 S:      Orphan
13028 F:      drivers/net/ethernet/natsemi/natsemi.c
13029
13030 NCR 5380 SCSI DRIVERS
13031 M:      Finn Thain <fthain@linux-m68k.org>
13032 M:      Michael Schmitz <schmitzmic@gmail.com>
13033 L:      linux-scsi@vger.kernel.org
13034 S:      Maintained
13035 F:      Documentation/scsi/g_NCR5380.rst
13036 F:      drivers/scsi/NCR5380.*
13037 F:      drivers/scsi/arm/cumana_1.c
13038 F:      drivers/scsi/arm/oak.c
13039 F:      drivers/scsi/atari_scsi.*
13040 F:      drivers/scsi/dmx3191d.c
13041 F:      drivers/scsi/g_NCR5380.*
13042 F:      drivers/scsi/mac_scsi.*
13043 F:      drivers/scsi/sun3_scsi.*
13044 F:      drivers/scsi/sun3_scsi_vme.c
13045
13046 NCSI LIBRARY
13047 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
13048 S:      Maintained
13049 F:      net/ncsi/
13050
13051 NCT6775 HARDWARE MONITOR DRIVER
13052 M:      Guenter Roeck <linux@roeck-us.net>
13053 L:      linux-hwmon@vger.kernel.org
13054 S:      Maintained
13055 F:      Documentation/hwmon/nct6775.rst
13056 F:      drivers/hwmon/nct6775.c
13057
13058 NETDEVSIM
13059 M:      Jakub Kicinski <kuba@kernel.org>
13060 S:      Maintained
13061 F:      drivers/net/netdevsim/*
13062
13063 NETEM NETWORK EMULATOR
13064 M:      Stephen Hemminger <stephen@networkplumber.org>
13065 L:      netdev@vger.kernel.org
13066 S:      Maintained
13067 F:      net/sched/sch_netem.c
13068
13069 NETERION 10GbE DRIVERS (s2io/vxge)
13070 M:      Jon Mason <jdmason@kudzu.us>
13071 L:      netdev@vger.kernel.org
13072 S:      Supported
13073 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
13074 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
13075 F:      drivers/net/ethernet/neterion/
13076
13077 NETFILTER
13078 M:      Pablo Neira Ayuso <pablo@netfilter.org>
13079 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
13080 M:      Florian Westphal <fw@strlen.de>
13081 L:      netfilter-devel@vger.kernel.org
13082 L:      coreteam@netfilter.org
13083 S:      Maintained
13084 W:      http://www.netfilter.org/
13085 W:      http://www.iptables.org/
13086 W:      http://www.nftables.org/
13087 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
13088 C:      irc://irc.libera.chat/netfilter
13089 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
13090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
13091 F:      include/linux/netfilter*
13092 F:      include/linux/netfilter/
13093 F:      include/net/netfilter/
13094 F:      include/uapi/linux/netfilter*
13095 F:      include/uapi/linux/netfilter/
13096 F:      net/*/netfilter.c
13097 F:      net/*/netfilter/
13098 F:      net/bridge/br_netfilter*.c
13099 F:      net/netfilter/
13100
13101 NETROM NETWORK LAYER
13102 M:      Ralf Baechle <ralf@linux-mips.org>
13103 L:      linux-hams@vger.kernel.org
13104 S:      Maintained
13105 W:      http://www.linux-ax25.org/
13106 F:      include/net/netrom.h
13107 F:      include/uapi/linux/netrom.h
13108 F:      net/netrom/
13109
13110 NETRONIX EMBEDDED CONTROLLER
13111 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13112 S:      Maintained
13113 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13114 F:      drivers/mfd/ntxec.c
13115 F:      drivers/pwm/pwm-ntxec.c
13116 F:      drivers/rtc/rtc-ntxec.c
13117 F:      include/linux/mfd/ntxec.h
13118
13119 NETRONOME ETHERNET DRIVERS
13120 M:      Simon Horman <simon.horman@corigine.com>
13121 R:      Jakub Kicinski <kuba@kernel.org>
13122 L:      oss-drivers@corigine.com
13123 S:      Maintained
13124 F:      drivers/net/ethernet/netronome/
13125
13126 NETWORK BLOCK DEVICE (NBD)
13127 M:      Josef Bacik <josef@toxicpanda.com>
13128 L:      linux-block@vger.kernel.org
13129 L:      nbd@other.debian.org
13130 S:      Maintained
13131 F:      Documentation/admin-guide/blockdev/nbd.rst
13132 F:      drivers/block/nbd.c
13133 F:      include/trace/events/nbd.h
13134 F:      include/uapi/linux/nbd.h
13135
13136 NETWORK DROP MONITOR
13137 M:      Neil Horman <nhorman@tuxdriver.com>
13138 L:      netdev@vger.kernel.org
13139 S:      Maintained
13140 W:      https://fedorahosted.org/dropwatch/
13141 F:      include/uapi/linux/net_dropmon.h
13142 F:      net/core/drop_monitor.c
13143
13144 NETWORKING DRIVERS
13145 M:      "David S. Miller" <davem@davemloft.net>
13146 M:      Jakub Kicinski <kuba@kernel.org>
13147 L:      netdev@vger.kernel.org
13148 S:      Maintained
13149 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13152 F:      Documentation/devicetree/bindings/net/
13153 F:      drivers/connector/
13154 F:      drivers/net/
13155 F:      include/linux/etherdevice.h
13156 F:      include/linux/fcdevice.h
13157 F:      include/linux/fddidevice.h
13158 F:      include/linux/hippidevice.h
13159 F:      include/linux/if_*
13160 F:      include/linux/inetdevice.h
13161 F:      include/linux/netdevice.h
13162 F:      include/uapi/linux/if_*
13163 F:      include/uapi/linux/netdevice.h
13164
13165 NETWORKING DRIVERS (WIRELESS)
13166 M:      Kalle Valo <kvalo@codeaurora.org>
13167 L:      linux-wireless@vger.kernel.org
13168 S:      Maintained
13169 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
13171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
13172 F:      Documentation/devicetree/bindings/net/wireless/
13173 F:      drivers/net/wireless/
13174
13175 NETWORKING [DSA]
13176 M:      Andrew Lunn <andrew@lunn.ch>
13177 M:      Vivien Didelot <vivien.didelot@gmail.com>
13178 M:      Florian Fainelli <f.fainelli@gmail.com>
13179 M:      Vladimir Oltean <olteanv@gmail.com>
13180 S:      Maintained
13181 F:      Documentation/devicetree/bindings/net/dsa/
13182 F:      drivers/net/dsa/
13183 F:      include/linux/dsa/
13184 F:      include/linux/platform_data/dsa.h
13185 F:      include/net/dsa.h
13186 F:      net/dsa/
13187 F:      tools/testing/selftests/drivers/net/dsa/
13188
13189 NETWORKING [GENERAL]
13190 M:      "David S. Miller" <davem@davemloft.net>
13191 M:      Jakub Kicinski <kuba@kernel.org>
13192 L:      netdev@vger.kernel.org
13193 S:      Maintained
13194 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13195 B:      mailto:netdev@vger.kernel.org
13196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13198 F:      Documentation/networking/
13199 F:      include/linux/in.h
13200 F:      include/linux/net.h
13201 F:      include/linux/netdevice.h
13202 F:      include/net/
13203 F:      include/uapi/linux/in.h
13204 F:      include/uapi/linux/net.h
13205 F:      include/uapi/linux/net_namespace.h
13206 F:      include/uapi/linux/netdevice.h
13207 F:      lib/net_utils.c
13208 F:      lib/random32.c
13209 F:      net/
13210 F:      tools/testing/selftests/net/
13211
13212 NETWORKING [IPSEC]
13213 M:      Steffen Klassert <steffen.klassert@secunet.com>
13214 M:      Herbert Xu <herbert@gondor.apana.org.au>
13215 M:      "David S. Miller" <davem@davemloft.net>
13216 L:      netdev@vger.kernel.org
13217 S:      Maintained
13218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13220 F:      include/net/xfrm.h
13221 F:      include/uapi/linux/xfrm.h
13222 F:      net/ipv4/ah4.c
13223 F:      net/ipv4/esp4*
13224 F:      net/ipv4/ip_vti.c
13225 F:      net/ipv4/ipcomp.c
13226 F:      net/ipv4/xfrm*
13227 F:      net/ipv6/ah6.c
13228 F:      net/ipv6/esp6*
13229 F:      net/ipv6/ip6_vti.c
13230 F:      net/ipv6/ipcomp6.c
13231 F:      net/ipv6/xfrm*
13232 F:      net/key/
13233 F:      net/xfrm/
13234 F:      tools/testing/selftests/net/ipsec.c
13235
13236 NETWORKING [IPv4/IPv6]
13237 M:      "David S. Miller" <davem@davemloft.net>
13238 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13239 M:      David Ahern <dsahern@kernel.org>
13240 L:      netdev@vger.kernel.org
13241 S:      Maintained
13242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13243 F:      arch/x86/net/*
13244 F:      include/net/ip*
13245 F:      net/ipv4/
13246 F:      net/ipv6/
13247
13248 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13249 M:      Paul Moore <paul@paul-moore.com>
13250 L:      netdev@vger.kernel.org
13251 L:      linux-security-module@vger.kernel.org
13252 S:      Maintained
13253 W:      https://github.com/netlabel
13254 F:      Documentation/netlabel/
13255 F:      include/net/calipso.h
13256 F:      include/net/cipso_ipv4.h
13257 F:      include/net/netlabel.h
13258 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13259 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13260 F:      net/ipv4/cipso_ipv4.c
13261 F:      net/ipv6/calipso.c
13262 F:      net/netfilter/xt_CONNSECMARK.c
13263 F:      net/netfilter/xt_SECMARK.c
13264 F:      net/netlabel/
13265
13266 NETWORKING [MPTCP]
13267 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
13268 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
13269 L:      netdev@vger.kernel.org
13270 L:      mptcp@lists.linux.dev
13271 S:      Maintained
13272 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13273 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13274 F:      Documentation/networking/mptcp-sysctl.rst
13275 F:      include/net/mptcp.h
13276 F:      include/trace/events/mptcp.h
13277 F:      include/uapi/linux/mptcp.h
13278 F:      net/mptcp/
13279 F:      tools/testing/selftests/net/mptcp/
13280
13281 NETWORKING [TCP]
13282 M:      Eric Dumazet <edumazet@google.com>
13283 L:      netdev@vger.kernel.org
13284 S:      Maintained
13285 F:      include/linux/tcp.h
13286 F:      include/net/tcp.h
13287 F:      include/trace/events/tcp.h
13288 F:      include/uapi/linux/tcp.h
13289 F:      net/ipv4/syncookies.c
13290 F:      net/ipv4/tcp*.c
13291 F:      net/ipv6/syncookies.c
13292 F:      net/ipv6/tcp*.c
13293
13294 NETWORKING [TLS]
13295 M:      Boris Pismenny <borisp@nvidia.com>
13296 M:      John Fastabend <john.fastabend@gmail.com>
13297 M:      Daniel Borkmann <daniel@iogearbox.net>
13298 M:      Jakub Kicinski <kuba@kernel.org>
13299 L:      netdev@vger.kernel.org
13300 S:      Maintained
13301 F:      include/net/tls.h
13302 F:      include/uapi/linux/tls.h
13303 F:      net/tls/*
13304
13305 NETWORKING [WIRELESS]
13306 L:      linux-wireless@vger.kernel.org
13307 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13308
13309 NETXEN (1/10) GbE SUPPORT
13310 M:      Manish Chopra <manishc@marvell.com>
13311 M:      Rahul Verma <rahulv@marvell.com>
13312 M:      GR-Linux-NIC-Dev@marvell.com
13313 L:      netdev@vger.kernel.org
13314 S:      Supported
13315 F:      drivers/net/ethernet/qlogic/netxen/
13316
13317 NET_FAILOVER MODULE
13318 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13319 L:      netdev@vger.kernel.org
13320 S:      Supported
13321 F:      Documentation/networking/net_failover.rst
13322 F:      drivers/net/net_failover.c
13323 F:      include/net/net_failover.h
13324
13325 NEXTHOP
13326 M:      David Ahern <dsahern@kernel.org>
13327 L:      netdev@vger.kernel.org
13328 S:      Maintained
13329 F:      include/net/netns/nexthop.h
13330 F:      include/net/nexthop.h
13331 F:      include/uapi/linux/nexthop.h
13332 F:      net/ipv4/nexthop.c
13333
13334 NFC SUBSYSTEM
13335 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13336 L:      linux-nfc@lists.01.org (subscribers-only)
13337 L:      netdev@vger.kernel.org
13338 S:      Maintained
13339 F:      Documentation/devicetree/bindings/net/nfc/
13340 F:      drivers/nfc/
13341 F:      include/linux/platform_data/nfcmrvl.h
13342 F:      include/net/nfc/
13343 F:      include/uapi/linux/nfc.h
13344 F:      net/nfc/
13345
13346 NFC VIRTUAL NCI DEVICE DRIVER
13347 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
13348 L:      netdev@vger.kernel.org
13349 L:      linux-nfc@lists.01.org (subscribers-only)
13350 S:      Supported
13351 F:      drivers/nfc/virtual_ncidev.c
13352 F:      tools/testing/selftests/nci/
13353
13354 NFS, SUNRPC, AND LOCKD CLIENTS
13355 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
13356 M:      Anna Schumaker <anna.schumaker@netapp.com>
13357 L:      linux-nfs@vger.kernel.org
13358 S:      Maintained
13359 W:      http://client.linux-nfs.org
13360 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13361 F:      fs/lockd/
13362 F:      fs/nfs/
13363 F:      fs/nfs_common/
13364 F:      include/linux/lockd/
13365 F:      include/linux/nfs*
13366 F:      include/linux/sunrpc/
13367 F:      include/uapi/linux/nfs*
13368 F:      include/uapi/linux/sunrpc/
13369 F:      net/sunrpc/
13370 F:      Documentation/filesystems/nfs/
13371
13372 NILFS2 FILESYSTEM
13373 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
13374 L:      linux-nilfs@vger.kernel.org
13375 S:      Supported
13376 W:      https://nilfs.sourceforge.io/
13377 W:      https://nilfs.osdn.jp/
13378 T:      git git://github.com/konis/nilfs2.git
13379 F:      Documentation/filesystems/nilfs2.rst
13380 F:      fs/nilfs2/
13381 F:      include/trace/events/nilfs2.h
13382 F:      include/uapi/linux/nilfs2_api.h
13383 F:      include/uapi/linux/nilfs2_ondisk.h
13384
13385 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13386 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13387 S:      Maintained
13388 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13389 F:      Documentation/scsi/NinjaSCSI.rst
13390 F:      drivers/scsi/pcmcia/nsp_*
13391
13392 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13393 M:      GOTO Masanori <gotom@debian.or.jp>
13394 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13395 S:      Maintained
13396 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13397 F:      Documentation/scsi/NinjaSCSI.rst
13398 F:      drivers/scsi/nsp32*
13399
13400 NIOS2 ARCHITECTURE
13401 M:      Dinh Nguyen <dinguyen@kernel.org>
13402 S:      Maintained
13403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
13404 F:      arch/nios2/
13405
13406 NITRO ENCLAVES (NE)
13407 M:      Andra Paraschiv <andraprs@amazon.com>
13408 M:      Alexandru Vasile <lexnv@amazon.com>
13409 M:      Alexandru Ciobotaru <alcioa@amazon.com>
13410 L:      linux-kernel@vger.kernel.org
13411 S:      Supported
13412 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13413 F:      Documentation/virt/ne_overview.rst
13414 F:      drivers/virt/nitro_enclaves/
13415 F:      include/linux/nitro_enclaves.h
13416 F:      include/uapi/linux/nitro_enclaves.h
13417 F:      samples/nitro_enclaves/
13418
13419 NOHZ, DYNTICKS SUPPORT
13420 M:      Frederic Weisbecker <fweisbec@gmail.com>
13421 M:      Thomas Gleixner <tglx@linutronix.de>
13422 M:      Ingo Molnar <mingo@kernel.org>
13423 L:      linux-kernel@vger.kernel.org
13424 S:      Maintained
13425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13426 F:      include/linux/sched/nohz.h
13427 F:      include/linux/tick.h
13428 F:      kernel/time/tick*.*
13429
13430 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13431 M:      Pavel Machek <pavel@ucw.cz>
13432 M:      Sakari Ailus <sakari.ailus@iki.fi>
13433 L:      linux-media@vger.kernel.org
13434 S:      Maintained
13435 F:      drivers/media/i2c/ad5820.c
13436 F:      drivers/media/i2c/et8ek8
13437
13438 NOKIA N900 POWER SUPPLY DRIVERS
13439 R:      Pali Rohár <pali@kernel.org>
13440 F:      drivers/power/supply/bq2415x_charger.c
13441 F:      drivers/power/supply/bq27xxx_battery.c
13442 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13443 F:      drivers/power/supply/isp1704_charger.c
13444 F:      drivers/power/supply/rx51_battery.c
13445 F:      include/linux/power/bq2415x_charger.h
13446 F:      include/linux/power/bq27xxx_battery.h
13447
13448 NOLIBC HEADER FILE
13449 M:      Willy Tarreau <w@1wt.eu>
13450 S:      Maintained
13451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13452 F:      tools/include/nolibc/
13453
13454 NSDEPS
13455 M:      Matthias Maennich <maennich@google.com>
13456 S:      Maintained
13457 F:      Documentation/core-api/symbol-namespaces.rst
13458 F:      scripts/nsdeps
13459
13460 NTB AMD DRIVER
13461 M:      Sanjay R Mehta <sanju.mehta@amd.com>
13462 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13463 L:      linux-ntb@googlegroups.com
13464 S:      Supported
13465 F:      drivers/ntb/hw/amd/
13466
13467 NTB DRIVER CORE
13468 M:      Jon Mason <jdmason@kudzu.us>
13469 M:      Dave Jiang <dave.jiang@intel.com>
13470 M:      Allen Hubbe <allenbh@gmail.com>
13471 L:      linux-ntb@googlegroups.com
13472 S:      Supported
13473 W:      https://github.com/jonmason/ntb/wiki
13474 T:      git git://github.com/jonmason/ntb.git
13475 F:      drivers/net/ntb_netdev.c
13476 F:      drivers/ntb/
13477 F:      include/linux/ntb.h
13478 F:      include/linux/ntb_transport.h
13479 F:      tools/testing/selftests/ntb/
13480
13481 NTB IDT DRIVER
13482 M:      Serge Semin <fancer.lancer@gmail.com>
13483 L:      linux-ntb@googlegroups.com
13484 S:      Supported
13485 F:      drivers/ntb/hw/idt/
13486
13487 NTB INTEL DRIVER
13488 M:      Dave Jiang <dave.jiang@intel.com>
13489 L:      linux-ntb@googlegroups.com
13490 S:      Supported
13491 W:      https://github.com/davejiang/linux/wiki
13492 T:      git https://github.com/davejiang/linux.git
13493 F:      drivers/ntb/hw/intel/
13494
13495 NTFS FILESYSTEM
13496 M:      Anton Altaparmakov <anton@tuxera.com>
13497 L:      linux-ntfs-dev@lists.sourceforge.net
13498 S:      Supported
13499 W:      http://www.tuxera.com/
13500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13501 F:      Documentation/filesystems/ntfs.rst
13502 F:      fs/ntfs/
13503
13504 NTFS3 FILESYSTEM
13505 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
13506 L:      ntfs3@lists.linux.dev
13507 S:      Supported
13508 W:      http://www.paragon-software.com/
13509 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
13510 F:      Documentation/filesystems/ntfs3.rst
13511 F:      fs/ntfs3/
13512
13513 NUBUS SUBSYSTEM
13514 M:      Finn Thain <fthain@linux-m68k.org>
13515 L:      linux-m68k@lists.linux-m68k.org
13516 S:      Maintained
13517 F:      arch/*/include/asm/nubus.h
13518 F:      drivers/nubus/
13519 F:      include/linux/nubus.h
13520 F:      include/uapi/linux/nubus.h
13521
13522 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13523 M:      Antonino Daplas <adaplas@gmail.com>
13524 L:      linux-fbdev@vger.kernel.org
13525 S:      Maintained
13526 F:      drivers/video/fbdev/nvidia/
13527 F:      drivers/video/fbdev/riva/
13528
13529 NVIDIA WMI EC BACKLIGHT DRIVER
13530 M:      Daniel Dadap <ddadap@nvidia.com>
13531 L:      platform-driver-x86@vger.kernel.org
13532 S:      Supported
13533 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
13534
13535 NVM EXPRESS DRIVER
13536 M:      Keith Busch <kbusch@kernel.org>
13537 M:      Jens Axboe <axboe@fb.com>
13538 M:      Christoph Hellwig <hch@lst.de>
13539 M:      Sagi Grimberg <sagi@grimberg.me>
13540 L:      linux-nvme@lists.infradead.org
13541 S:      Supported
13542 W:      http://git.infradead.org/nvme.git
13543 T:      git://git.infradead.org/nvme.git
13544 F:      drivers/nvme/host/
13545 F:      include/linux/nvme.h
13546 F:      include/uapi/linux/nvme_ioctl.h
13547
13548 NVM EXPRESS FC TRANSPORT DRIVERS
13549 M:      James Smart <james.smart@broadcom.com>
13550 L:      linux-nvme@lists.infradead.org
13551 S:      Supported
13552 F:      drivers/nvme/host/fc.c
13553 F:      drivers/nvme/target/fc.c
13554 F:      drivers/nvme/target/fcloop.c
13555 F:      include/linux/nvme-fc-driver.h
13556 F:      include/linux/nvme-fc.h
13557
13558 NVM EXPRESS TARGET DRIVER
13559 M:      Christoph Hellwig <hch@lst.de>
13560 M:      Sagi Grimberg <sagi@grimberg.me>
13561 M:      Chaitanya Kulkarni <kch@nvidia.com>
13562 L:      linux-nvme@lists.infradead.org
13563 S:      Supported
13564 W:      http://git.infradead.org/nvme.git
13565 T:      git://git.infradead.org/nvme.git
13566 F:      drivers/nvme/target/
13567
13568 NVMEM FRAMEWORK
13569 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13570 S:      Maintained
13571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13572 F:      Documentation/ABI/stable/sysfs-bus-nvmem
13573 F:      Documentation/devicetree/bindings/nvmem/
13574 F:      drivers/nvmem/
13575 F:      include/linux/nvmem-consumer.h
13576 F:      include/linux/nvmem-provider.h
13577
13578 NXP C45 TJA11XX PHY DRIVER
13579 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13580 L:      netdev@vger.kernel.org
13581 S:      Maintained
13582 F:      drivers/net/phy/nxp-c45-tja11xx.c
13583
13584 NXP FSPI DRIVER
13585 M:      Ashish Kumar <ashish.kumar@nxp.com>
13586 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
13587 L:      linux-spi@vger.kernel.org
13588 S:      Maintained
13589 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
13590 F:      drivers/spi/spi-nxp-fspi.c
13591
13592 NXP FXAS21002C DRIVER
13593 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13594 L:      linux-iio@vger.kernel.org
13595 S:      Maintained
13596 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13597 F:      drivers/iio/gyro/fxas21002c.h
13598 F:      drivers/iio/gyro/fxas21002c_core.c
13599 F:      drivers/iio/gyro/fxas21002c_i2c.c
13600 F:      drivers/iio/gyro/fxas21002c_spi.c
13601
13602 NXP i.MX CLOCK DRIVERS
13603 M:      Abel Vesa <abel.vesa@nxp.com>
13604 L:      linux-clk@vger.kernel.org
13605 L:      linux-imx@nxp.com
13606 S:      Maintained
13607 F:      drivers/clk/imx/
13608
13609 NXP i.MX 8MQ DCSS DRIVER
13610 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13611 R:      Lucas Stach <l.stach@pengutronix.de>
13612 L:      dri-devel@lists.freedesktop.org
13613 S:      Maintained
13614 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13615 F:      drivers/gpu/drm/imx/dcss/
13616
13617 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13618 M:      Jagan Teki <jagan@amarulasolutions.com>
13619 S:      Maintained
13620 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13621 F:      drivers/regulator/pf8x00-regulator.c
13622
13623 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13624 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13625 L:      linux-kernel@vger.kernel.org
13626 S:      Maintained
13627 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13628 F:      drivers/extcon/extcon-ptn5150.c
13629
13630 NXP SGTL5000 DRIVER
13631 M:      Fabio Estevam <festevam@gmail.com>
13632 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13633 S:      Maintained
13634 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
13635 F:      sound/soc/codecs/sgtl5000*
13636
13637 NXP SJA1105 ETHERNET SWITCH DRIVER
13638 M:      Vladimir Oltean <olteanv@gmail.com>
13639 L:      linux-kernel@vger.kernel.org
13640 S:      Maintained
13641 F:      drivers/net/dsa/sja1105
13642 F:      drivers/net/pcs/pcs-xpcs-nxp.c
13643
13644 NXP TDA998X DRM DRIVER
13645 M:      Russell King <linux@armlinux.org.uk>
13646 S:      Maintained
13647 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13648 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13649 F:      drivers/gpu/drm/i2c/tda998x_drv.c
13650 F:      include/drm/i2c/tda998x.h
13651 F:      include/dt-bindings/display/tda998x.h
13652 K:      "nxp,tda998x"
13653
13654 NXP TFA9879 DRIVER
13655 M:      Peter Rosin <peda@axentia.se>
13656 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13657 S:      Maintained
13658 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
13659 F:      sound/soc/codecs/tfa9879*
13660
13661 NXP/Goodix TFA989X (TFA1) DRIVER
13662 M:      Stephan Gerhold <stephan@gerhold.net>
13663 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13664 S:      Maintained
13665 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
13666 F:      sound/soc/codecs/tfa989x.c
13667
13668 NXP-NCI NFC DRIVER
13669 R:      Charles Gorand <charles.gorand@effinnov.com>
13670 L:      linux-nfc@lists.01.org (subscribers-only)
13671 S:      Supported
13672 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
13673 F:      drivers/nfc/nxp-nci
13674
13675 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13676 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
13677 R:      NXP Linux Team <linux-imx@nxp.com>
13678 L:      linux-media@vger.kernel.org
13679 S:      Maintained
13680 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
13681 F:      drivers/media/platform/imx-jpeg
13682
13683 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13684 M:      Jonas Malaco <jonas@protocubo.io>
13685 L:      linux-hwmon@vger.kernel.org
13686 S:      Maintained
13687 F:      Documentation/hwmon/nzxt-kraken2.rst
13688 F:      drivers/hwmon/nzxt-kraken2.c
13689
13690 OBJAGG
13691 M:      Jiri Pirko <jiri@nvidia.com>
13692 L:      netdev@vger.kernel.org
13693 S:      Supported
13694 F:      include/linux/objagg.h
13695 F:      lib/objagg.c
13696 F:      lib/test_objagg.c
13697
13698 OBJTOOL
13699 M:      Josh Poimboeuf <jpoimboe@redhat.com>
13700 M:      Peter Zijlstra <peterz@infradead.org>
13701 S:      Supported
13702 F:      tools/objtool/
13703 F:      include/linux/objtool.h
13704
13705 OCELOT ETHERNET SWITCH DRIVER
13706 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
13707 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
13708 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13709 M:      UNGLinuxDriver@microchip.com
13710 L:      netdev@vger.kernel.org
13711 S:      Supported
13712 F:      drivers/net/dsa/ocelot/*
13713 F:      drivers/net/ethernet/mscc/
13714 F:      include/soc/mscc/ocelot*
13715 F:      net/dsa/tag_ocelot.c
13716 F:      net/dsa/tag_ocelot_8021q.c
13717 F:      tools/testing/selftests/drivers/net/ocelot/*
13718
13719 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13720 M:      Frederic Barrat <fbarrat@linux.ibm.com>
13721 M:      Andrew Donnellan <ajd@linux.ibm.com>
13722 L:      linuxppc-dev@lists.ozlabs.org
13723 S:      Supported
13724 F:      Documentation/userspace-api/accelerators/ocxl.rst
13725 F:      arch/powerpc/include/asm/pnv-ocxl.h
13726 F:      arch/powerpc/platforms/powernv/ocxl.c
13727 F:      drivers/misc/ocxl/
13728 F:      include/misc/ocxl*
13729 F:      include/uapi/misc/ocxl.h
13730
13731 OMAP AUDIO SUPPORT
13732 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
13733 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
13734 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13735 L:      linux-omap@vger.kernel.org
13736 S:      Maintained
13737 F:      sound/soc/ti/n810.c
13738 F:      sound/soc/ti/omap*
13739 F:      sound/soc/ti/rx51.c
13740 F:      sound/soc/ti/sdma-pcm.*
13741
13742 OMAP CLOCK FRAMEWORK SUPPORT
13743 M:      Paul Walmsley <paul@pwsan.com>
13744 L:      linux-omap@vger.kernel.org
13745 S:      Maintained
13746 F:      arch/arm/*omap*/*clock*
13747
13748 OMAP DEVICE TREE SUPPORT
13749 M:      Benoît Cousson <bcousson@baylibre.com>
13750 M:      Tony Lindgren <tony@atomide.com>
13751 L:      linux-omap@vger.kernel.org
13752 L:      devicetree@vger.kernel.org
13753 S:      Maintained
13754 F:      arch/arm/boot/dts/*am3*
13755 F:      arch/arm/boot/dts/*am4*
13756 F:      arch/arm/boot/dts/*am5*
13757 F:      arch/arm/boot/dts/*dra7*
13758 F:      arch/arm/boot/dts/*omap*
13759 F:      arch/arm/boot/dts/logicpd-som-lv*
13760 F:      arch/arm/boot/dts/logicpd-torpedo*
13761
13762 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
13763 L:      linux-omap@vger.kernel.org
13764 L:      linux-fbdev@vger.kernel.org
13765 S:      Orphan
13766 F:      Documentation/arm/omap/dss.rst
13767 F:      drivers/video/fbdev/omap2/
13768
13769 OMAP FRAMEBUFFER SUPPORT
13770 L:      linux-fbdev@vger.kernel.org
13771 L:      linux-omap@vger.kernel.org
13772 S:      Orphan
13773 F:      drivers/video/fbdev/omap/
13774
13775 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
13776 M:      Roger Quadros <rogerq@kernel.org>
13777 M:      Tony Lindgren <tony@atomide.com>
13778 L:      linux-omap@vger.kernel.org
13779 S:      Maintained
13780 F:      arch/arm/mach-omap2/*gpmc*
13781 F:      drivers/memory/omap-gpmc.c
13782
13783 OMAP GPIO DRIVER
13784 M:      Grygorii Strashko <grygorii.strashko@ti.com>
13785 M:      Santosh Shilimkar <ssantosh@kernel.org>
13786 M:      Kevin Hilman <khilman@kernel.org>
13787 L:      linux-omap@vger.kernel.org
13788 S:      Maintained
13789 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
13790 F:      drivers/gpio/gpio-omap.c
13791
13792 OMAP HARDWARE SPINLOCK SUPPORT
13793 M:      Ohad Ben-Cohen <ohad@wizery.com>
13794 L:      linux-omap@vger.kernel.org
13795 S:      Maintained
13796 F:      drivers/hwspinlock/omap_hwspinlock.c
13797
13798 OMAP HS MMC SUPPORT
13799 L:      linux-mmc@vger.kernel.org
13800 L:      linux-omap@vger.kernel.org
13801 S:      Orphan
13802 F:      drivers/mmc/host/omap_hsmmc.c
13803
13804 OMAP HWMOD DATA
13805 M:      Paul Walmsley <paul@pwsan.com>
13806 L:      linux-omap@vger.kernel.org
13807 S:      Maintained
13808 F:      arch/arm/mach-omap2/omap_hwmod*data*
13809
13810 OMAP HWMOD SUPPORT
13811 M:      Benoît Cousson <bcousson@baylibre.com>
13812 M:      Paul Walmsley <paul@pwsan.com>
13813 L:      linux-omap@vger.kernel.org
13814 S:      Maintained
13815 F:      arch/arm/mach-omap2/omap_hwmod.*
13816
13817 OMAP I2C DRIVER
13818 M:      Vignesh R <vigneshr@ti.com>
13819 L:      linux-omap@vger.kernel.org
13820 L:      linux-i2c@vger.kernel.org
13821 S:      Maintained
13822 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
13823 F:      drivers/i2c/busses/i2c-omap.c
13824
13825 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
13826 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13827 L:      linux-media@vger.kernel.org
13828 S:      Maintained
13829 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
13830 F:      drivers/media/platform/omap3isp/
13831 F:      drivers/staging/media/omap4iss/
13832
13833 OMAP MMC SUPPORT
13834 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13835 L:      linux-omap@vger.kernel.org
13836 S:      Odd Fixes
13837 F:      drivers/mmc/host/omap.c
13838
13839 OMAP POWER MANAGEMENT SUPPORT
13840 M:      Kevin Hilman <khilman@kernel.org>
13841 L:      linux-omap@vger.kernel.org
13842 S:      Maintained
13843 F:      arch/arm/*omap*/*pm*
13844 F:      drivers/cpufreq/omap-cpufreq.c
13845
13846 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13847 M:      Rajendra Nayak <rnayak@codeaurora.org>
13848 M:      Paul Walmsley <paul@pwsan.com>
13849 L:      linux-omap@vger.kernel.org
13850 S:      Maintained
13851 F:      arch/arm/mach-omap2/prm*
13852
13853 OMAP RANDOM NUMBER GENERATOR SUPPORT
13854 M:      Deepak Saxena <dsaxena@plexity.net>
13855 S:      Maintained
13856 F:      drivers/char/hw_random/omap-rng.c
13857
13858 OMAP USB SUPPORT
13859 L:      linux-usb@vger.kernel.org
13860 L:      linux-omap@vger.kernel.org
13861 S:      Orphan
13862 F:      arch/arm/*omap*/usb*
13863 F:      drivers/usb/*/*omap*
13864
13865 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13866 M:      Mark Jackson <mpfj@newflow.co.uk>
13867 L:      linux-omap@vger.kernel.org
13868 S:      Maintained
13869 F:      arch/arm/boot/dts/am335x-nano.dts
13870
13871 OMAP1 SUPPORT
13872 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13873 M:      Tony Lindgren <tony@atomide.com>
13874 L:      linux-omap@vger.kernel.org
13875 S:      Maintained
13876 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13878 F:      arch/arm/configs/omap1_defconfig
13879 F:      arch/arm/mach-omap1/
13880 F:      arch/arm/plat-omap/
13881 F:      drivers/i2c/busses/i2c-omap.c
13882 F:      include/linux/platform_data/ams-delta-fiq.h
13883 F:      include/linux/platform_data/i2c-omap.h
13884
13885 OMAP2+ SUPPORT
13886 M:      Tony Lindgren <tony@atomide.com>
13887 L:      linux-omap@vger.kernel.org
13888 S:      Maintained
13889 W:      http://www.muru.com/linux/omap/
13890 W:      http://linux.omap.com/
13891 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13893 F:      arch/arm/configs/omap2plus_defconfig
13894 F:      arch/arm/mach-omap2/
13895 F:      arch/arm/plat-omap/
13896 F:      drivers/bus/ti-sysc.c
13897 F:      drivers/i2c/busses/i2c-omap.c
13898 F:      drivers/irqchip/irq-omap-intc.c
13899 F:      drivers/mfd/*omap*.c
13900 F:      drivers/mfd/menelaus.c
13901 F:      drivers/mfd/palmas.c
13902 F:      drivers/mfd/tps65217.c
13903 F:      drivers/mfd/tps65218.c
13904 F:      drivers/mfd/tps65910.c
13905 F:      drivers/mfd/twl-core.[ch]
13906 F:      drivers/mfd/twl4030*.c
13907 F:      drivers/mfd/twl6030*.c
13908 F:      drivers/mfd/twl6040*.c
13909 F:      drivers/regulator/palmas-regulator*.c
13910 F:      drivers/regulator/pbias-regulator.c
13911 F:      drivers/regulator/tps65217-regulator.c
13912 F:      drivers/regulator/tps65218-regulator.c
13913 F:      drivers/regulator/tps65910-regulator.c
13914 F:      drivers/regulator/twl-regulator.c
13915 F:      drivers/regulator/twl6030-regulator.c
13916 F:      include/linux/platform_data/i2c-omap.h
13917 F:      include/linux/platform_data/ti-sysc.h
13918
13919 OMFS FILESYSTEM
13920 M:      Bob Copeland <me@bobcopeland.com>
13921 L:      linux-karma-devel@lists.sourceforge.net
13922 S:      Maintained
13923 F:      Documentation/filesystems/omfs.rst
13924 F:      fs/omfs/
13925
13926 OMNIKEY CARDMAN 4000 DRIVER
13927 M:      Harald Welte <laforge@gnumonks.org>
13928 S:      Maintained
13929 F:      drivers/char/pcmcia/cm4000_cs.c
13930 F:      include/linux/cm4000_cs.h
13931 F:      include/uapi/linux/cm4000_cs.h
13932
13933 OMNIKEY CARDMAN 4040 DRIVER
13934 M:      Harald Welte <laforge@gnumonks.org>
13935 S:      Maintained
13936 F:      drivers/char/pcmcia/cm4040_cs.*
13937
13938 OMNIVISION OV02A10 SENSOR DRIVER
13939 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13940 L:      linux-media@vger.kernel.org
13941 S:      Maintained
13942 T:      git git://linuxtv.org/media_tree.git
13943 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13944 F:      drivers/media/i2c/ov02a10.c
13945
13946 OMNIVISION OV13858 SENSOR DRIVER
13947 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13948 L:      linux-media@vger.kernel.org
13949 S:      Maintained
13950 T:      git git://linuxtv.org/media_tree.git
13951 F:      drivers/media/i2c/ov13858.c
13952
13953 OMNIVISION OV13B10 SENSOR DRIVER
13954 M:      Arec Kao <arec.kao@intel.com>
13955 L:      linux-media@vger.kernel.org
13956 S:      Maintained
13957 T:      git git://linuxtv.org/media_tree.git
13958 F:      drivers/media/i2c/ov13b10.c
13959
13960 OMNIVISION OV2680 SENSOR DRIVER
13961 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13962 L:      linux-media@vger.kernel.org
13963 S:      Maintained
13964 T:      git git://linuxtv.org/media_tree.git
13965 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
13966 F:      drivers/media/i2c/ov2680.c
13967
13968 OMNIVISION OV2685 SENSOR DRIVER
13969 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13970 L:      linux-media@vger.kernel.org
13971 S:      Maintained
13972 T:      git git://linuxtv.org/media_tree.git
13973 F:      drivers/media/i2c/ov2685.c
13974
13975 OMNIVISION OV2740 SENSOR DRIVER
13976 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13977 R:      Shawn Tu <shawnx.tu@intel.com>
13978 R:      Bingbu Cao <bingbu.cao@intel.com>
13979 L:      linux-media@vger.kernel.org
13980 S:      Maintained
13981 T:      git git://linuxtv.org/media_tree.git
13982 F:      drivers/media/i2c/ov2740.c
13983
13984 OMNIVISION OV5640 SENSOR DRIVER
13985 M:      Steve Longerbeam <slongerbeam@gmail.com>
13986 L:      linux-media@vger.kernel.org
13987 S:      Maintained
13988 T:      git git://linuxtv.org/media_tree.git
13989 F:      drivers/media/i2c/ov5640.c
13990
13991 OMNIVISION OV5647 SENSOR DRIVER
13992 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
13993 M:      Jacopo Mondi <jacopo@jmondi.org>
13994 L:      linux-media@vger.kernel.org
13995 S:      Maintained
13996 T:      git git://linuxtv.org/media_tree.git
13997 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
13998 F:      drivers/media/i2c/ov5647.c
13999
14000 OMNIVISION OV5670 SENSOR DRIVER
14001 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
14002 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
14003 L:      linux-media@vger.kernel.org
14004 S:      Maintained
14005 T:      git git://linuxtv.org/media_tree.git
14006 F:      drivers/media/i2c/ov5670.c
14007
14008 OMNIVISION OV5675 SENSOR DRIVER
14009 M:      Shawn Tu <shawnx.tu@intel.com>
14010 L:      linux-media@vger.kernel.org
14011 S:      Maintained
14012 T:      git git://linuxtv.org/media_tree.git
14013 F:      drivers/media/i2c/ov5675.c
14014
14015 OMNIVISION OV5695 SENSOR DRIVER
14016 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14017 L:      linux-media@vger.kernel.org
14018 S:      Maintained
14019 T:      git git://linuxtv.org/media_tree.git
14020 F:      drivers/media/i2c/ov5695.c
14021
14022 OMNIVISION OV7670 SENSOR DRIVER
14023 L:      linux-media@vger.kernel.org
14024 S:      Orphan
14025 T:      git git://linuxtv.org/media_tree.git
14026 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
14027 F:      drivers/media/i2c/ov7670.c
14028
14029 OMNIVISION OV772x SENSOR DRIVER
14030 M:      Jacopo Mondi <jacopo@jmondi.org>
14031 L:      linux-media@vger.kernel.org
14032 S:      Odd fixes
14033 T:      git git://linuxtv.org/media_tree.git
14034 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
14035 F:      drivers/media/i2c/ov772x.c
14036 F:      include/media/i2c/ov772x.h
14037
14038 OMNIVISION OV7740 SENSOR DRIVER
14039 M:      Wenyou Yang <wenyou.yang@microchip.com>
14040 L:      linux-media@vger.kernel.org
14041 S:      Maintained
14042 T:      git git://linuxtv.org/media_tree.git
14043 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
14044 F:      drivers/media/i2c/ov7740.c
14045
14046 OMNIVISION OV8856 SENSOR DRIVER
14047 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14048 L:      linux-media@vger.kernel.org
14049 S:      Maintained
14050 T:      git git://linuxtv.org/media_tree.git
14051 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
14052 F:      drivers/media/i2c/ov8856.c
14053
14054 OMNIVISION OV9282 SENSOR DRIVER
14055 M:      Paul J. Murphy <paul.j.murphy@intel.com>
14056 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
14057 L:      linux-media@vger.kernel.org
14058 S:      Maintained
14059 T:      git git://linuxtv.org/media_tree.git
14060 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
14061 F:      drivers/media/i2c/ov9282.c
14062
14063 OMNIVISION OV9640 SENSOR DRIVER
14064 M:      Petr Cvek <petrcvekcz@gmail.com>
14065 L:      linux-media@vger.kernel.org
14066 S:      Maintained
14067 F:      drivers/media/i2c/ov9640.*
14068
14069 OMNIVISION OV9650 SENSOR DRIVER
14070 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14071 R:      Akinobu Mita <akinobu.mita@gmail.com>
14072 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14073 L:      linux-media@vger.kernel.org
14074 S:      Maintained
14075 T:      git git://linuxtv.org/media_tree.git
14076 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
14077 F:      drivers/media/i2c/ov9650.c
14078
14079 OMNIVISION OV9734 SENSOR DRIVER
14080 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14081 R:      Bingbu Cao <bingbu.cao@intel.com>
14082 L:      linux-media@vger.kernel.org
14083 S:      Maintained
14084 T:      git git://linuxtv.org/media_tree.git
14085 F:      drivers/media/i2c/ov9734.c
14086
14087 ONENAND FLASH DRIVER
14088 M:      Kyungmin Park <kyungmin.park@samsung.com>
14089 L:      linux-mtd@lists.infradead.org
14090 S:      Maintained
14091 F:      drivers/mtd/nand/onenand/
14092 F:      include/linux/mtd/onenand*.h
14093
14094 ONION OMEGA2+ BOARD
14095 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
14096 L:      linux-mips@vger.kernel.org
14097 S:      Maintained
14098 F:      arch/mips/boot/dts/ralink/omega2p.dts
14099
14100 OP-TEE DRIVER
14101 M:      Jens Wiklander <jens.wiklander@linaro.org>
14102 L:      op-tee@lists.trustedfirmware.org
14103 S:      Maintained
14104 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
14105 F:      drivers/tee/optee/
14106
14107 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14108 M:      Sumit Garg <sumit.garg@linaro.org>
14109 L:      op-tee@lists.trustedfirmware.org
14110 S:      Maintained
14111 F:      drivers/char/hw_random/optee-rng.c
14112
14113 OPA-VNIC DRIVER
14114 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14115 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14116 L:      linux-rdma@vger.kernel.org
14117 S:      Supported
14118 F:      drivers/infiniband/ulp/opa_vnic
14119
14120 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14121 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
14122 M:      Frank Rowand <frowand.list@gmail.com>
14123 L:      devicetree@vger.kernel.org
14124 S:      Maintained
14125 F:      Documentation/devicetree/dynamic-resolution-notes.rst
14126 F:      Documentation/devicetree/overlay-notes.rst
14127 F:      drivers/of/overlay.c
14128 F:      drivers/of/resolver.c
14129 K:      of_overlay_notifier_
14130
14131 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14132 M:      Rob Herring <robh+dt@kernel.org>
14133 M:      Frank Rowand <frowand.list@gmail.com>
14134 L:      devicetree@vger.kernel.org
14135 S:      Maintained
14136 W:      http://www.devicetree.org/
14137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14138 F:      Documentation/ABI/testing/sysfs-firmware-ofw
14139 F:      drivers/of/
14140 F:      include/linux/of*.h
14141 F:      scripts/dtc/
14142
14143 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14144 M:      Rob Herring <robh+dt@kernel.org>
14145 L:      devicetree@vger.kernel.org
14146 S:      Maintained
14147 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14149 F:      Documentation/devicetree/
14150 F:      arch/*/boot/dts/
14151 F:      include/dt-bindings/
14152
14153 OPENCOMPUTE PTP CLOCK DRIVER
14154 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
14155 L:      netdev@vger.kernel.org
14156 S:      Maintained
14157 F:      drivers/ptp/ptp_ocp.c
14158
14159 OPENCORES I2C BUS DRIVER
14160 M:      Peter Korsgaard <peter@korsgaard.com>
14161 M:      Andrew Lunn <andrew@lunn.ch>
14162 L:      linux-i2c@vger.kernel.org
14163 S:      Maintained
14164 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14165 F:      Documentation/i2c/busses/i2c-ocores.rst
14166 F:      drivers/i2c/busses/i2c-ocores.c
14167 F:      include/linux/platform_data/i2c-ocores.h
14168
14169 OPENRISC ARCHITECTURE
14170 M:      Jonas Bonn <jonas@southpole.se>
14171 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14172 M:      Stafford Horne <shorne@gmail.com>
14173 L:      openrisc@lists.librecores.org
14174 S:      Maintained
14175 W:      http://openrisc.io
14176 T:      git git://github.com/openrisc/linux.git
14177 F:      Documentation/devicetree/bindings/openrisc/
14178 F:      Documentation/openrisc/
14179 F:      arch/openrisc/
14180 F:      drivers/irqchip/irq-ompic.c
14181 F:      drivers/irqchip/irq-or1k-*
14182
14183 OPENVSWITCH
14184 M:      Pravin B Shelar <pshelar@ovn.org>
14185 L:      netdev@vger.kernel.org
14186 L:      dev@openvswitch.org
14187 S:      Maintained
14188 W:      http://openvswitch.org
14189 F:      include/uapi/linux/openvswitch.h
14190 F:      net/openvswitch/
14191
14192 OPERATING PERFORMANCE POINTS (OPP)
14193 M:      Viresh Kumar <vireshk@kernel.org>
14194 M:      Nishanth Menon <nm@ti.com>
14195 M:      Stephen Boyd <sboyd@kernel.org>
14196 L:      linux-pm@vger.kernel.org
14197 S:      Maintained
14198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14199 F:      Documentation/devicetree/bindings/opp/
14200 F:      Documentation/power/opp.rst
14201 F:      drivers/opp/
14202 F:      include/linux/pm_opp.h
14203
14204 OPL4 DRIVER
14205 M:      Clemens Ladisch <clemens@ladisch.de>
14206 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14207 S:      Maintained
14208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14209 F:      sound/drivers/opl4/
14210
14211 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14212 M:      Mark Fasheh <mark@fasheh.com>
14213 M:      Joel Becker <jlbec@evilplan.org>
14214 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
14215 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14216 S:      Supported
14217 W:      http://ocfs2.wiki.kernel.org
14218 F:      Documentation/filesystems/dlmfs.rst
14219 F:      Documentation/filesystems/ocfs2.rst
14220 F:      fs/ocfs2/
14221
14222 ORANGEFS FILESYSTEM
14223 M:      Mike Marshall <hubcap@omnibond.com>
14224 R:      Martin Brandenburg <martin@omnibond.com>
14225 L:      devel@lists.orangefs.org
14226 S:      Supported
14227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14228 F:      Documentation/filesystems/orangefs.rst
14229 F:      fs/orangefs/
14230
14231 ORINOCO DRIVER
14232 L:      linux-wireless@vger.kernel.org
14233 S:      Orphan
14234 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14235 W:      http://www.nongnu.org/orinoco/
14236 F:      drivers/net/wireless/intersil/orinoco/
14237
14238 OV2659 OMNIVISION SENSOR DRIVER
14239 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14240 L:      linux-media@vger.kernel.org
14241 S:      Maintained
14242 W:      https://linuxtv.org
14243 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14244 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14245 F:      drivers/media/i2c/ov2659.c
14246 F:      include/media/i2c/ov2659.h
14247
14248 OVERLAY FILESYSTEM
14249 M:      Miklos Szeredi <miklos@szeredi.hu>
14250 L:      linux-unionfs@vger.kernel.org
14251 S:      Supported
14252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14253 F:      Documentation/filesystems/overlayfs.rst
14254 F:      fs/overlayfs/
14255
14256 P54 WIRELESS DRIVER
14257 M:      Christian Lamparter <chunkeey@googlemail.com>
14258 L:      linux-wireless@vger.kernel.org
14259 S:      Maintained
14260 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14261 F:      drivers/net/wireless/intersil/p54/
14262
14263 PACKING
14264 M:      Vladimir Oltean <olteanv@gmail.com>
14265 L:      netdev@vger.kernel.org
14266 S:      Supported
14267 F:      Documentation/core-api/packing.rst
14268 F:      include/linux/packing.h
14269 F:      lib/packing.c
14270
14271 PADATA PARALLEL EXECUTION MECHANISM
14272 M:      Steffen Klassert <steffen.klassert@secunet.com>
14273 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
14274 L:      linux-crypto@vger.kernel.org
14275 L:      linux-kernel@vger.kernel.org
14276 S:      Maintained
14277 F:      Documentation/core-api/padata.rst
14278 F:      include/linux/padata.h
14279 F:      kernel/padata.c
14280
14281 PAGE POOL
14282 M:      Jesper Dangaard Brouer <hawk@kernel.org>
14283 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
14284 L:      netdev@vger.kernel.org
14285 S:      Supported
14286 F:      Documentation/networking/page_pool.rst
14287 F:      include/net/page_pool.h
14288 F:      include/trace/events/page_pool.h
14289 F:      net/core/page_pool.c
14290
14291 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14292 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
14293 L:      platform-driver-x86@vger.kernel.org
14294 S:      Maintained
14295 F:      drivers/platform/x86/panasonic-laptop.c
14296
14297 PARALLAX PING IIO SENSOR DRIVER
14298 M:      Andreas Klinger <ak@it-klinger.de>
14299 L:      linux-iio@vger.kernel.org
14300 S:      Maintained
14301 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14302 F:      drivers/iio/proximity/ping.c
14303
14304 PARALLEL LCD/KEYPAD PANEL DRIVER
14305 M:      Willy Tarreau <willy@haproxy.com>
14306 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14307 S:      Odd Fixes
14308 F:      Documentation/admin-guide/lcd-panel-cgram.rst
14309 F:      drivers/auxdisplay/panel.c
14310
14311 PARALLEL PORT SUBSYSTEM
14312 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14313 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14314 L:      linux-parport@lists.infradead.org (subscribers-only)
14315 S:      Maintained
14316 F:      Documentation/driver-api/parport*.rst
14317 F:      drivers/char/ppdev.c
14318 F:      drivers/parport/
14319 F:      include/linux/parport*.h
14320 F:      include/uapi/linux/ppdev.h
14321
14322 PARAVIRT_OPS INTERFACE
14323 M:      Juergen Gross <jgross@suse.com>
14324 M:      Deep Shah <sdeep@vmware.com>
14325 M:      "VMware, Inc." <pv-drivers@vmware.com>
14326 L:      virtualization@lists.linux-foundation.org
14327 S:      Supported
14328 F:      Documentation/virt/paravirt_ops.rst
14329 F:      arch/*/include/asm/paravirt*.h
14330 F:      arch/*/kernel/paravirt*
14331 F:      include/linux/hypervisor.h
14332
14333 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14334 M:      Tim Waugh <tim@cyberelk.net>
14335 L:      linux-parport@lists.infradead.org (subscribers-only)
14336 S:      Maintained
14337 F:      Documentation/admin-guide/blockdev/paride.rst
14338 F:      drivers/block/paride/
14339
14340 PARISC ARCHITECTURE
14341 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14342 M:      Helge Deller <deller@gmx.de>
14343 L:      linux-parisc@vger.kernel.org
14344 S:      Maintained
14345 W:      https://parisc.wiki.kernel.org
14346 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
14347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14349 F:      Documentation/parisc/
14350 F:      arch/parisc/
14351 F:      drivers/char/agp/parisc-agp.c
14352 F:      drivers/input/misc/hp_sdc_rtc.c
14353 F:      drivers/input/serio/gscps2.c
14354 F:      drivers/input/serio/hp_sdc*
14355 F:      drivers/parisc/
14356 F:      drivers/parport/parport_gsc.*
14357 F:      drivers/tty/serial/8250/8250_gsc.c
14358 F:      drivers/video/console/sti*
14359 F:      drivers/video/fbdev/sti*
14360 F:      drivers/video/logo/logo_parisc*
14361 F:      include/linux/hp_sdc.h
14362
14363 PARMAN
14364 M:      Jiri Pirko <jiri@nvidia.com>
14365 L:      netdev@vger.kernel.org
14366 S:      Supported
14367 F:      include/linux/parman.h
14368 F:      lib/parman.c
14369 F:      lib/test_parman.c
14370
14371 PC ENGINES APU BOARD DRIVER
14372 M:      Enrico Weigelt, metux IT consult <info@metux.net>
14373 S:      Maintained
14374 F:      drivers/platform/x86/pcengines-apuv2.c
14375
14376 PC87360 HARDWARE MONITORING DRIVER
14377 M:      Jim Cromie <jim.cromie@gmail.com>
14378 L:      linux-hwmon@vger.kernel.org
14379 S:      Maintained
14380 F:      Documentation/hwmon/pc87360.rst
14381 F:      drivers/hwmon/pc87360.c
14382
14383 PC8736x GPIO DRIVER
14384 M:      Jim Cromie <jim.cromie@gmail.com>
14385 S:      Maintained
14386 F:      drivers/char/pc8736x_gpio.c
14387
14388 PC87427 HARDWARE MONITORING DRIVER
14389 M:      Jean Delvare <jdelvare@suse.com>
14390 L:      linux-hwmon@vger.kernel.org
14391 S:      Maintained
14392 F:      Documentation/hwmon/pc87427.rst
14393 F:      drivers/hwmon/pc87427.c
14394
14395 PCA9532 LED DRIVER
14396 M:      Riku Voipio <riku.voipio@iki.fi>
14397 S:      Maintained
14398 F:      drivers/leds/leds-pca9532.c
14399 F:      include/linux/leds-pca9532.h
14400
14401 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14402 M:      Guenter Roeck <linux@roeck-us.net>
14403 L:      linux-i2c@vger.kernel.org
14404 S:      Maintained
14405 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
14406
14407 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14408 M:      Khalid Aziz <khalid@gonehiking.org>
14409 S:      Maintained
14410 F:      drivers/firmware/pcdp.*
14411
14412 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14413 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14414 M:      Pali Rohár <pali@kernel.org>
14415 L:      linux-pci@vger.kernel.org
14416 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14417 S:      Maintained
14418 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
14419 F:      drivers/pci/controller/pci-aardvark.c
14420
14421 PCI DRIVER FOR ALTERA PCIE IP
14422 M:      Joyce Ooi <joyce.ooi@intel.com>
14423 L:      linux-pci@vger.kernel.org
14424 S:      Supported
14425 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
14426 F:      drivers/pci/controller/pcie-altera.c
14427
14428 PCI DRIVER FOR APPLIEDMICRO XGENE
14429 M:      Toan Le <toan@os.amperecomputing.com>
14430 L:      linux-pci@vger.kernel.org
14431 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14432 S:      Maintained
14433 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
14434 F:      drivers/pci/controller/pci-xgene.c
14435
14436 PCI DRIVER FOR ARM VERSATILE PLATFORM
14437 M:      Rob Herring <robh@kernel.org>
14438 L:      linux-pci@vger.kernel.org
14439 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14440 S:      Maintained
14441 F:      Documentation/devicetree/bindings/pci/versatile.yaml
14442 F:      drivers/pci/controller/pci-versatile.c
14443
14444 PCI DRIVER FOR ARMADA 8K
14445 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14446 L:      linux-pci@vger.kernel.org
14447 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14448 S:      Maintained
14449 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
14450 F:      drivers/pci/controller/dwc/pcie-armada8k.c
14451
14452 PCI DRIVER FOR CADENCE PCIE IP
14453 M:      Tom Joseph <tjoseph@cadence.com>
14454 L:      linux-pci@vger.kernel.org
14455 S:      Maintained
14456 F:      Documentation/devicetree/bindings/pci/cdns,*
14457 F:      drivers/pci/controller/cadence/
14458
14459 PCI DRIVER FOR FREESCALE LAYERSCAPE
14460 M:      Minghuan Lian <minghuan.Lian@nxp.com>
14461 M:      Mingkai Hu <mingkai.hu@nxp.com>
14462 M:      Roy Zang <roy.zang@nxp.com>
14463 L:      linuxppc-dev@lists.ozlabs.org
14464 L:      linux-pci@vger.kernel.org
14465 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14466 S:      Maintained
14467 F:      drivers/pci/controller/dwc/*layerscape*
14468
14469 PCI DRIVER FOR GENERIC OF HOSTS
14470 M:      Will Deacon <will@kernel.org>
14471 L:      linux-pci@vger.kernel.org
14472 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14473 S:      Maintained
14474 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
14475 F:      drivers/pci/controller/pci-host-common.c
14476 F:      drivers/pci/controller/pci-host-generic.c
14477
14478 PCI DRIVER FOR IMX6
14479 M:      Richard Zhu <hongxing.zhu@nxp.com>
14480 M:      Lucas Stach <l.stach@pengutronix.de>
14481 L:      linux-pci@vger.kernel.org
14482 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14483 S:      Maintained
14484 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
14485 F:      drivers/pci/controller/dwc/*imx6*
14486
14487 PCI DRIVER FOR FU740
14488 M:      Paul Walmsley <paul.walmsley@sifive.com>
14489 M:      Greentime Hu <greentime.hu@sifive.com>
14490 L:      linux-pci@vger.kernel.org
14491 S:      Maintained
14492 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
14493 F:      drivers/pci/controller/dwc/pcie-fu740.c
14494
14495 PCI DRIVER FOR INTEL IXP4XX
14496 M:      Linus Walleij <linus.walleij@linaro.org>
14497 S:      Maintained
14498 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
14499 F:      drivers/pci/controller/pci-ixp4xx.c
14500
14501 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
14502 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
14503 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
14504 L:      linux-pci@vger.kernel.org
14505 S:      Supported
14506 F:      drivers/pci/controller/vmd.c
14507
14508 PCI DRIVER FOR MICROSEMI SWITCHTEC
14509 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
14510 M:      Logan Gunthorpe <logang@deltatee.com>
14511 L:      linux-pci@vger.kernel.org
14512 S:      Maintained
14513 F:      Documentation/ABI/testing/sysfs-class-switchtec
14514 F:      Documentation/driver-api/switchtec.rst
14515 F:      drivers/ntb/hw/mscc/
14516 F:      drivers/pci/switch/switchtec*
14517 F:      include/linux/switchtec.h
14518 F:      include/uapi/linux/switchtec_ioctl.h
14519
14520 PCI DRIVER FOR MOBIVEIL PCIE IP
14521 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
14522 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14523 L:      linux-pci@vger.kernel.org
14524 S:      Supported
14525 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14526 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
14527
14528 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14529 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14530 L:      linux-pci@vger.kernel.org
14531 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14532 S:      Maintained
14533 F:      drivers/pci/controller/*mvebu*
14534
14535 PCI DRIVER FOR NVIDIA TEGRA
14536 M:      Thierry Reding <thierry.reding@gmail.com>
14537 L:      linux-tegra@vger.kernel.org
14538 L:      linux-pci@vger.kernel.org
14539 S:      Supported
14540 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14541 F:      drivers/pci/controller/pci-tegra.c
14542
14543 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14544 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14545 L:      linux-pci@vger.kernel.org
14546 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14547 S:      Maintained
14548 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14549 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14550
14551 PCI DRIVER FOR RENESAS R-CAR
14552 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14553 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14554 L:      linux-pci@vger.kernel.org
14555 L:      linux-renesas-soc@vger.kernel.org
14556 S:      Maintained
14557 F:      Documentation/devicetree/bindings/pci/*rcar*
14558 F:      drivers/pci/controller/*rcar*
14559
14560 PCI DRIVER FOR SAMSUNG EXYNOS
14561 M:      Jingoo Han <jingoohan1@gmail.com>
14562 L:      linux-pci@vger.kernel.org
14563 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14564 L:      linux-samsung-soc@vger.kernel.org
14565 S:      Maintained
14566 F:      drivers/pci/controller/dwc/pci-exynos.c
14567
14568 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14569 M:      Jingoo Han <jingoohan1@gmail.com>
14570 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
14571 L:      linux-pci@vger.kernel.org
14572 S:      Maintained
14573 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
14574 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
14575 F:      drivers/pci/controller/dwc/*designware*
14576
14577 PCI DRIVER FOR TI DRA7XX/J721E
14578 M:      Kishon Vijay Abraham I <kishon@ti.com>
14579 L:      linux-omap@vger.kernel.org
14580 L:      linux-pci@vger.kernel.org
14581 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14582 S:      Supported
14583 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
14584 F:      drivers/pci/controller/cadence/pci-j721e.c
14585 F:      drivers/pci/controller/dwc/pci-dra7xx.c
14586
14587 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14588 M:      Linus Walleij <linus.walleij@linaro.org>
14589 L:      linux-pci@vger.kernel.org
14590 S:      Maintained
14591 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14592 F:      drivers/pci/controller/pci-v3-semi.c
14593
14594 PCI ENDPOINT SUBSYSTEM
14595 M:      Kishon Vijay Abraham I <kishon@ti.com>
14596 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14597 R:      Krzysztof Wilczyński <kw@linux.com>
14598 L:      linux-pci@vger.kernel.org
14599 S:      Supported
14600 F:      Documentation/PCI/endpoint/*
14601 F:      Documentation/misc-devices/pci-endpoint-test.rst
14602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
14603 F:      drivers/misc/pci_endpoint_test.c
14604 F:      drivers/pci/endpoint/
14605 F:      tools/pci/
14606
14607 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14608 M:      Russell Currey <ruscur@russell.cc>
14609 M:      Oliver O'Halloran <oohall@gmail.com>
14610 L:      linuxppc-dev@lists.ozlabs.org
14611 S:      Supported
14612 F:      Documentation/PCI/pci-error-recovery.rst
14613 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
14614 F:      arch/powerpc/include/*/eeh*.h
14615 F:      arch/powerpc/kernel/eeh*.c
14616 F:      arch/powerpc/platforms/*/eeh*.c
14617 F:      drivers/pci/pcie/aer.c
14618 F:      drivers/pci/pcie/dpc.c
14619 F:      drivers/pci/pcie/err.c
14620
14621 PCI ERROR RECOVERY
14622 M:      Linas Vepstas <linasvepstas@gmail.com>
14623 L:      linux-pci@vger.kernel.org
14624 S:      Supported
14625 F:      Documentation/PCI/pci-error-recovery.rst
14626
14627 PCI MSI DRIVER FOR ALTERA MSI IP
14628 M:      Joyce Ooi <joyce.ooi@intel.com>
14629 L:      linux-pci@vger.kernel.org
14630 S:      Supported
14631 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14632 F:      drivers/pci/controller/pcie-altera-msi.c
14633
14634 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14635 M:      Toan Le <toan@os.amperecomputing.com>
14636 L:      linux-pci@vger.kernel.org
14637 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14638 S:      Maintained
14639 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14640 F:      drivers/pci/controller/pci-xgene-msi.c
14641
14642 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14643 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14644 R:      Rob Herring <robh@kernel.org>
14645 R:      Krzysztof Wilczyński <kw@linux.com>
14646 L:      linux-pci@vger.kernel.org
14647 S:      Supported
14648 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
14650 F:      drivers/pci/controller/
14651
14652 PCI SUBSYSTEM
14653 M:      Bjorn Helgaas <bhelgaas@google.com>
14654 L:      linux-pci@vger.kernel.org
14655 S:      Supported
14656 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14658 F:      Documentation/PCI/
14659 F:      Documentation/devicetree/bindings/pci/
14660 F:      arch/x86/kernel/early-quirks.c
14661 F:      arch/x86/kernel/quirks.c
14662 F:      arch/x86/pci/
14663 F:      drivers/acpi/pci*
14664 F:      drivers/pci/
14665 F:      include/asm-generic/pci*
14666 F:      include/linux/of_pci.h
14667 F:      include/linux/pci*
14668 F:      include/uapi/linux/pci*
14669 F:      lib/pci*
14670
14671 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14672 M:      Jonathan Chocron <jonnyc@amazon.com>
14673 L:      linux-pci@vger.kernel.org
14674 S:      Maintained
14675 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
14676 F:      drivers/pci/controller/dwc/pcie-al.c
14677
14678 PCIE DRIVER FOR AMLOGIC MESON
14679 M:      Yue Wang <yue.wang@Amlogic.com>
14680 L:      linux-pci@vger.kernel.org
14681 L:      linux-amlogic@lists.infradead.org
14682 S:      Maintained
14683 F:      drivers/pci/controller/dwc/pci-meson.c
14684
14685 PCIE DRIVER FOR AXIS ARTPEC
14686 M:      Jesper Nilsson <jesper.nilsson@axis.com>
14687 L:      linux-arm-kernel@axis.com
14688 L:      linux-pci@vger.kernel.org
14689 S:      Maintained
14690 F:      Documentation/devicetree/bindings/pci/axis,artpec*
14691 F:      drivers/pci/controller/dwc/*artpec*
14692
14693 PCIE DRIVER FOR CAVIUM THUNDERX
14694 M:      Robert Richter <rric@kernel.org>
14695 L:      linux-pci@vger.kernel.org
14696 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14697 S:      Odd Fixes
14698 F:      drivers/pci/controller/pci-thunder-*
14699
14700 PCIE DRIVER FOR HISILICON
14701 M:      Zhou Wang <wangzhou1@hisilicon.com>
14702 L:      linux-pci@vger.kernel.org
14703 S:      Maintained
14704 F:      drivers/pci/controller/dwc/pcie-hisi.c
14705
14706 PCIE DRIVER FOR HISILICON KIRIN
14707 M:      Xiaowei Song <songxiaowei@hisilicon.com>
14708 M:      Binghui Wang <wangbinghui@hisilicon.com>
14709 L:      linux-pci@vger.kernel.org
14710 S:      Maintained
14711 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
14712 F:      drivers/pci/controller/dwc/pcie-kirin.c
14713
14714 PCIE DRIVER FOR HISILICON STB
14715 M:      Shawn Guo <shawn.guo@linaro.org>
14716 L:      linux-pci@vger.kernel.org
14717 S:      Maintained
14718 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
14719 F:      drivers/pci/controller/dwc/pcie-histb.c
14720
14721 PCIE DRIVER FOR INTEL KEEM BAY
14722 M:      Srikanth Thokala <srikanth.thokala@intel.com>
14723 L:      linux-pci@vger.kernel.org
14724 S:      Supported
14725 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
14726 F:      drivers/pci/controller/dwc/pcie-keembay.c
14727
14728 PCIE DRIVER FOR INTEL LGM GW SOC
14729 M:      Rahul Tanwar <rtanwar@maxlinear.com>
14730 L:      linux-pci@vger.kernel.org
14731 S:      Maintained
14732 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
14733 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
14734
14735 PCIE DRIVER FOR MEDIATEK
14736 M:      Ryder Lee <ryder.lee@mediatek.com>
14737 M:      Jianjun Wang <jianjun.wang@mediatek.com>
14738 L:      linux-pci@vger.kernel.org
14739 L:      linux-mediatek@lists.infradead.org
14740 S:      Supported
14741 F:      Documentation/devicetree/bindings/pci/mediatek*
14742 F:      drivers/pci/controller/*mediatek*
14743
14744 PCIE DRIVER FOR MICROCHIP
14745 M:      Daire McNamara <daire.mcnamara@microchip.com>
14746 L:      linux-pci@vger.kernel.org
14747 S:      Supported
14748 F:      Documentation/devicetree/bindings/pci/microchip*
14749 F:      drivers/pci/controller/*microchip*
14750
14751 PCIE DRIVER FOR QUALCOMM MSM
14752 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
14753 L:      linux-pci@vger.kernel.org
14754 L:      linux-arm-msm@vger.kernel.org
14755 S:      Maintained
14756 F:      drivers/pci/controller/dwc/*qcom*
14757
14758 PCIE DRIVER FOR ROCKCHIP
14759 M:      Shawn Lin <shawn.lin@rock-chips.com>
14760 L:      linux-pci@vger.kernel.org
14761 L:      linux-rockchip@lists.infradead.org
14762 S:      Maintained
14763 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
14764 F:      drivers/pci/controller/pcie-rockchip*
14765
14766 PCIE DRIVER FOR SOCIONEXT UNIPHIER
14767 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
14768 L:      linux-pci@vger.kernel.org
14769 S:      Maintained
14770 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
14771 F:      drivers/pci/controller/dwc/pcie-uniphier*
14772
14773 PCIE DRIVER FOR ST SPEAR13XX
14774 M:      Pratyush Anand <pratyush.anand@gmail.com>
14775 L:      linux-pci@vger.kernel.org
14776 S:      Maintained
14777 F:      drivers/pci/controller/dwc/*spear*
14778
14779 PCMCIA SUBSYSTEM
14780 M:      Dominik Brodowski <linux@dominikbrodowski.net>
14781 S:      Odd Fixes
14782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
14783 F:      Documentation/pcmcia/
14784 F:      drivers/pcmcia/
14785 F:      include/pcmcia/
14786 F:      tools/pcmcia/
14787
14788 PCNET32 NETWORK DRIVER
14789 M:      Don Fry <pcnet32@frontier.com>
14790 L:      netdev@vger.kernel.org
14791 S:      Maintained
14792 F:      drivers/net/ethernet/amd/pcnet32.c
14793
14794 PCRYPT PARALLEL CRYPTO ENGINE
14795 M:      Steffen Klassert <steffen.klassert@secunet.com>
14796 L:      linux-crypto@vger.kernel.org
14797 S:      Maintained
14798 F:      crypto/pcrypt.c
14799 F:      include/crypto/pcrypt.h
14800
14801 PEAQ WMI HOTKEYS DRIVER
14802 M:      Hans de Goede <hdegoede@redhat.com>
14803 L:      platform-driver-x86@vger.kernel.org
14804 S:      Maintained
14805 F:      drivers/platform/x86/peaq-wmi.c
14806
14807 PENSANDO ETHERNET DRIVERS
14808 M:      Shannon Nelson <snelson@pensando.io>
14809 M:      drivers@pensando.io
14810 L:      netdev@vger.kernel.org
14811 S:      Supported
14812 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
14813 F:      drivers/net/ethernet/pensando/
14814
14815 PER-CPU MEMORY ALLOCATOR
14816 M:      Dennis Zhou <dennis@kernel.org>
14817 M:      Tejun Heo <tj@kernel.org>
14818 M:      Christoph Lameter <cl@linux.com>
14819 L:      linux-mm@kvack.org
14820 S:      Maintained
14821 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
14822 F:      arch/*/include/asm/percpu.h
14823 F:      include/linux/percpu*.h
14824 F:      lib/percpu*.c
14825 F:      mm/percpu*.c
14826
14827 PER-TASK DELAY ACCOUNTING
14828 M:      Balbir Singh <bsingharora@gmail.com>
14829 S:      Maintained
14830 F:      include/linux/delayacct.h
14831 F:      kernel/delayacct.c
14832
14833 PERFORMANCE EVENTS SUBSYSTEM
14834 M:      Peter Zijlstra <peterz@infradead.org>
14835 M:      Ingo Molnar <mingo@redhat.com>
14836 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
14837 R:      Mark Rutland <mark.rutland@arm.com>
14838 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
14839 R:      Jiri Olsa <jolsa@redhat.com>
14840 R:      Namhyung Kim <namhyung@kernel.org>
14841 L:      linux-perf-users@vger.kernel.org
14842 L:      linux-kernel@vger.kernel.org
14843 S:      Supported
14844 W:      https://perf.wiki.kernel.org/
14845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14846 F:      arch/*/events/*
14847 F:      arch/*/events/*/*
14848 F:      arch/*/include/asm/perf_event.h
14849 F:      arch/*/kernel/*/*/perf_event*.c
14850 F:      arch/*/kernel/*/perf_event*.c
14851 F:      arch/*/kernel/perf_callchain.c
14852 F:      arch/*/kernel/perf_event*.c
14853 F:      include/linux/perf_event.h
14854 F:      include/uapi/linux/perf_event.h
14855 F:      kernel/events/*
14856 F:      tools/lib/perf/
14857 F:      tools/perf/
14858
14859 PERFORMANCE EVENTS TOOLING ARM64
14860 R:      John Garry <john.garry@huawei.com>
14861 R:      Will Deacon <will@kernel.org>
14862 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
14863 R:      Leo Yan <leo.yan@linaro.org>
14864 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14865 S:      Supported
14866 F:      tools/build/feature/test-libopencsd.c
14867 F:      tools/perf/arch/arm*/
14868 F:      tools/perf/pmu-events/arch/arm64/
14869 F:      tools/perf/util/arm-spe*
14870 F:      tools/perf/util/cs-etm*
14871
14872 PERSONALITY HANDLING
14873 M:      Christoph Hellwig <hch@infradead.org>
14874 L:      linux-abi-devel@lists.sourceforge.net
14875 S:      Maintained
14876 F:      include/linux/personality.h
14877 F:      include/uapi/linux/personality.h
14878
14879 PHOENIX RC FLIGHT CONTROLLER ADAPTER
14880 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
14881 L:      linux-input@vger.kernel.org
14882 S:      Maintained
14883 F:      Documentation/input/devices/pxrc.rst
14884 F:      drivers/input/joystick/pxrc.c
14885
14886 PHONET PROTOCOL
14887 M:      Remi Denis-Courmont <courmisch@gmail.com>
14888 S:      Supported
14889 F:      Documentation/networking/phonet.rst
14890 F:      include/linux/phonet.h
14891 F:      include/net/phonet/
14892 F:      include/uapi/linux/phonet.h
14893 F:      net/phonet/
14894
14895 PHRAM MTD DRIVER
14896 M:      Joern Engel <joern@lazybastard.org>
14897 L:      linux-mtd@lists.infradead.org
14898 S:      Maintained
14899 F:      drivers/mtd/devices/phram.c
14900
14901 PICOLCD HID DRIVER
14902 M:      Bruno Prémont <bonbons@linux-vserver.org>
14903 L:      linux-input@vger.kernel.org
14904 S:      Maintained
14905 F:      drivers/hid/hid-picolcd*
14906
14907 PIDFD API
14908 M:      Christian Brauner <christian@brauner.io>
14909 L:      linux-kernel@vger.kernel.org
14910 S:      Maintained
14911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14912 F:      samples/pidfd/
14913 F:      tools/testing/selftests/clone3/
14914 F:      tools/testing/selftests/pid_namespace/
14915 F:      tools/testing/selftests/pidfd/
14916 K:      (?i)pidfd
14917 K:      (?i)clone3
14918 K:      \b(clone_args|kernel_clone_args)\b
14919
14920 PIN CONTROL SUBSYSTEM
14921 M:      Linus Walleij <linus.walleij@linaro.org>
14922 L:      linux-gpio@vger.kernel.org
14923 S:      Maintained
14924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
14925 F:      Documentation/devicetree/bindings/pinctrl/
14926 F:      Documentation/driver-api/pin-control.rst
14927 F:      drivers/pinctrl/
14928 F:      include/linux/pinctrl/
14929
14930 PIN CONTROLLER - AMD
14931 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
14932 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14933 S:      Maintained
14934 F:      drivers/pinctrl/pinctrl-amd.c
14935
14936 PIN CONTROLLER - FREESCALE
14937 M:      Dong Aisheng <aisheng.dong@nxp.com>
14938 M:      Fabio Estevam <festevam@gmail.com>
14939 M:      Shawn Guo <shawnguo@kernel.org>
14940 M:      Stefan Agner <stefan@agner.ch>
14941 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
14942 L:      linux-gpio@vger.kernel.org
14943 S:      Maintained
14944 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
14945 F:      drivers/pinctrl/freescale/
14946
14947 PIN CONTROLLER - INTEL
14948 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
14949 M:      Andy Shevchenko <andy@kernel.org>
14950 S:      Maintained
14951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
14952 F:      drivers/pinctrl/intel/
14953
14954 PIN CONTROLLER - KEEMBAY
14955 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
14956 S:      Supported
14957 F:      drivers/pinctrl/pinctrl-keembay*
14958
14959 PIN CONTROLLER - MEDIATEK
14960 M:      Sean Wang <sean.wang@kernel.org>
14961 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
14962 S:      Maintained
14963 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
14964 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
14965 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
14966 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
14967 F:      drivers/pinctrl/mediatek/
14968
14969 PIN CONTROLLER - MICROCHIP AT91
14970 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
14971 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14972 L:      linux-gpio@vger.kernel.org
14973 S:      Supported
14974 F:      drivers/gpio/gpio-sama5d2-piobu.c
14975 F:      drivers/pinctrl/pinctrl-at91*
14976
14977 PIN CONTROLLER - QUALCOMM
14978 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14979 L:      linux-arm-msm@vger.kernel.org
14980 S:      Maintained
14981 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14982 F:      drivers/pinctrl/qcom/
14983
14984 PIN CONTROLLER - RENESAS
14985 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14986 L:      linux-renesas-soc@vger.kernel.org
14987 S:      Supported
14988 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14989 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
14990 F:      drivers/pinctrl/renesas/
14991
14992 PIN CONTROLLER - SAMSUNG
14993 M:      Tomasz Figa <tomasz.figa@gmail.com>
14994 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
14995 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14996 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14997 L:      linux-samsung-soc@vger.kernel.org
14998 S:      Maintained
14999 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
15000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
15001 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
15002 F:      drivers/pinctrl/samsung/
15003 F:      include/dt-bindings/pinctrl/samsung.h
15004
15005 PIN CONTROLLER - SINGLE
15006 M:      Tony Lindgren <tony@atomide.com>
15007 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
15008 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15009 L:      linux-omap@vger.kernel.org
15010 S:      Maintained
15011 F:      drivers/pinctrl/pinctrl-single.c
15012
15013 PKTCDVD DRIVER
15014 M:      linux-block@vger.kernel.org
15015 S:      Orphan
15016 F:      drivers/block/pktcdvd.c
15017 F:      include/linux/pktcdvd.h
15018 F:      include/uapi/linux/pktcdvd.h
15019
15020 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
15021 M:      Tomasz Duszynski <tduszyns@gmail.com>
15022 S:      Maintained
15023 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
15024 F:      drivers/iio/chemical/pms7003.c
15025
15026 PLDMFW LIBRARY
15027 M:      Jacob Keller <jacob.e.keller@intel.com>
15028 S:      Maintained
15029 F:      Documentation/driver-api/pldmfw/
15030 F:      include/linux/pldmfw.h
15031 F:      lib/pldmfw/
15032
15033 PLX DMA DRIVER
15034 M:      Logan Gunthorpe <logang@deltatee.com>
15035 S:      Maintained
15036 F:      drivers/dma/plx_dma.c
15037
15038 PM6764TR DRIVER
15039 M:      Charles Hsu     <hsu.yungteng@gmail.com>
15040 L:      linux-hwmon@vger.kernel.org
15041 S:      Maintained
15042 F:      Documentation/hwmon/pm6764tr.rst
15043 F:      drivers/hwmon/pmbus/pm6764tr.c
15044
15045 PM-GRAPH UTILITY
15046 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
15047 L:      linux-pm@vger.kernel.org
15048 S:      Supported
15049 W:      https://01.org/pm-graph
15050 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
15051 T:      git git://github.com/intel/pm-graph
15052 F:      tools/power/pm-graph
15053
15054 PMBUS HARDWARE MONITORING DRIVERS
15055 M:      Guenter Roeck <linux@roeck-us.net>
15056 L:      linux-hwmon@vger.kernel.org
15057 S:      Maintained
15058 W:      http://hwmon.wiki.kernel.org/
15059 W:      http://www.roeck-us.net/linux/drivers/
15060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
15061 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
15062 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
15063 F:      Documentation/hwmon/adm1275.rst
15064 F:      Documentation/hwmon/ibm-cffps.rst
15065 F:      Documentation/hwmon/ir35221.rst
15066 F:      Documentation/hwmon/lm25066.rst
15067 F:      Documentation/hwmon/ltc2978.rst
15068 F:      Documentation/hwmon/ltc3815.rst
15069 F:      Documentation/hwmon/max16064.rst
15070 F:      Documentation/hwmon/max20751.rst
15071 F:      Documentation/hwmon/max31785.rst
15072 F:      Documentation/hwmon/max34440.rst
15073 F:      Documentation/hwmon/max8688.rst
15074 F:      Documentation/hwmon/pmbus-core.rst
15075 F:      Documentation/hwmon/pmbus.rst
15076 F:      Documentation/hwmon/tps40422.rst
15077 F:      Documentation/hwmon/ucd9000.rst
15078 F:      Documentation/hwmon/ucd9200.rst
15079 F:      Documentation/hwmon/zl6100.rst
15080 F:      drivers/hwmon/pmbus/
15081 F:      include/linux/pmbus.h
15082
15083 PMC SIERRA MaxRAID DRIVER
15084 L:      linux-scsi@vger.kernel.org
15085 S:      Orphan
15086 W:      http://www.pmc-sierra.com/
15087 F:      drivers/scsi/pmcraid.*
15088
15089 PMC SIERRA PM8001 DRIVER
15090 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15091 L:      linux-scsi@vger.kernel.org
15092 S:      Supported
15093 F:      drivers/scsi/pm8001/
15094
15095 PNI RM3100 IIO DRIVER
15096 M:      Song Qiang <songqiang1304521@gmail.com>
15097 L:      linux-iio@vger.kernel.org
15098 S:      Maintained
15099 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
15100 F:      drivers/iio/magnetometer/rm3100*
15101
15102 PNP SUPPORT
15103 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
15104 L:      linux-acpi@vger.kernel.org
15105 S:      Maintained
15106 F:      drivers/pnp/
15107 F:      include/linux/pnp.h
15108
15109 POSIX CLOCKS and TIMERS
15110 M:      Thomas Gleixner <tglx@linutronix.de>
15111 L:      linux-kernel@vger.kernel.org
15112 S:      Maintained
15113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15114 F:      fs/timerfd.c
15115 F:      include/linux/time_namespace.h
15116 F:      include/linux/timer*
15117 F:      kernel/time/*timer*
15118 F:      kernel/time/namespace.c
15119
15120 POWER MANAGEMENT CORE
15121 M:      "Rafael J. Wysocki" <rafael@kernel.org>
15122 L:      linux-pm@vger.kernel.org
15123 S:      Supported
15124 B:      https://bugzilla.kernel.org
15125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15126 F:      drivers/base/power/
15127 F:      drivers/powercap/
15128 F:      include/linux/intel_rapl.h
15129 F:      include/linux/pm.h
15130 F:      include/linux/pm_*
15131 F:      include/linux/powercap.h
15132 F:      kernel/configs/nopm.config
15133
15134 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15135 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
15136 L:      linux-pm@vger.kernel.org
15137 S:      Supported
15138 B:      https://bugzilla.kernel.org
15139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15140 F:      drivers/powercap/dtpm*
15141 F:      include/linux/dtpm.h
15142
15143 POWER STATE COORDINATION INTERFACE (PSCI)
15144 M:      Mark Rutland <mark.rutland@arm.com>
15145 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15146 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15147 S:      Maintained
15148 F:      drivers/firmware/psci/
15149 F:      include/linux/psci.h
15150 F:      include/uapi/linux/psci.h
15151
15152 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15153 M:      Sebastian Reichel <sre@kernel.org>
15154 L:      linux-pm@vger.kernel.org
15155 S:      Maintained
15156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15157 F:      Documentation/ABI/testing/sysfs-class-power
15158 F:      Documentation/devicetree/bindings/power/supply/
15159 F:      drivers/power/supply/
15160 F:      include/linux/power/
15161 F:      include/linux/power_supply.h
15162
15163 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15164 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15165 L:      linuxppc-dev@lists.ozlabs.org
15166 S:      Maintained
15167 F:      drivers/char/powernv-op-panel.c
15168
15169 PPP OVER ATM (RFC 2364)
15170 M:      Mitchell Blank Jr <mitch@sfgoth.com>
15171 S:      Maintained
15172 F:      include/uapi/linux/atmppp.h
15173 F:      net/atm/pppoatm.c
15174
15175 PPP OVER ETHERNET
15176 M:      Michal Ostrowski <mostrows@earthlink.net>
15177 S:      Maintained
15178 F:      drivers/net/ppp/pppoe.c
15179 F:      drivers/net/ppp/pppox.c
15180
15181 PPP OVER L2TP
15182 M:      James Chapman <jchapman@katalix.com>
15183 S:      Maintained
15184 F:      include/linux/if_pppol2tp.h
15185 F:      include/uapi/linux/if_pppol2tp.h
15186 F:      net/l2tp/l2tp_ppp.c
15187
15188 PPP PROTOCOL DRIVERS AND COMPRESSORS
15189 M:      Paul Mackerras <paulus@samba.org>
15190 L:      linux-ppp@vger.kernel.org
15191 S:      Maintained
15192 F:      drivers/net/ppp/ppp_*
15193
15194 PPS SUPPORT
15195 M:      Rodolfo Giometti <giometti@enneenne.com>
15196 L:      linuxpps@ml.enneenne.com (subscribers-only)
15197 S:      Maintained
15198 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
15199 F:      Documentation/ABI/testing/sysfs-pps
15200 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
15201 F:      Documentation/driver-api/pps.rst
15202 F:      drivers/pps/
15203 F:      include/linux/pps*.h
15204 F:      include/uapi/linux/pps.h
15205
15206 PPTP DRIVER
15207 M:      Dmitry Kozlov <xeb@mail.ru>
15208 L:      netdev@vger.kernel.org
15209 S:      Maintained
15210 W:      http://sourceforge.net/projects/accel-pptp
15211 F:      drivers/net/ppp/pptp.c
15212
15213 PRESSURE STALL INFORMATION (PSI)
15214 M:      Johannes Weiner <hannes@cmpxchg.org>
15215 S:      Maintained
15216 F:      include/linux/psi*
15217 F:      kernel/sched/psi.c
15218
15219 PRINTK
15220 M:      Petr Mladek <pmladek@suse.com>
15221 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
15222 R:      Steven Rostedt <rostedt@goodmis.org>
15223 R:      John Ogness <john.ogness@linutronix.de>
15224 S:      Maintained
15225 F:      include/linux/printk.h
15226 F:      kernel/printk/
15227
15228 PRINTK INDEXING
15229 R:      Chris Down <chris@chrisdown.name>
15230 S:      Maintained
15231 F:      kernel/printk/index.c
15232
15233 PROC FILESYSTEM
15234 L:      linux-kernel@vger.kernel.org
15235 L:      linux-fsdevel@vger.kernel.org
15236 S:      Maintained
15237 F:      Documentation/filesystems/proc.rst
15238 F:      fs/proc/
15239 F:      include/linux/proc_fs.h
15240 F:      tools/testing/selftests/proc/
15241
15242 PROC SYSCTL
15243 M:      Luis Chamberlain <mcgrof@kernel.org>
15244 M:      Kees Cook <keescook@chromium.org>
15245 M:      Iurii Zaikin <yzaikin@google.com>
15246 L:      linux-kernel@vger.kernel.org
15247 L:      linux-fsdevel@vger.kernel.org
15248 S:      Maintained
15249 F:      fs/proc/proc_sysctl.c
15250 F:      include/linux/sysctl.h
15251 F:      kernel/sysctl-test.c
15252 F:      kernel/sysctl.c
15253 F:      tools/testing/selftests/sysctl/
15254
15255 PS3 NETWORK SUPPORT
15256 M:      Geoff Levand <geoff@infradead.org>
15257 L:      netdev@vger.kernel.org
15258 L:      linuxppc-dev@lists.ozlabs.org
15259 S:      Maintained
15260 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
15261
15262 PS3 PLATFORM SUPPORT
15263 M:      Geoff Levand <geoff@infradead.org>
15264 L:      linuxppc-dev@lists.ozlabs.org
15265 S:      Maintained
15266 F:      arch/powerpc/boot/ps3*
15267 F:      arch/powerpc/include/asm/lv1call.h
15268 F:      arch/powerpc/include/asm/ps3*.h
15269 F:      arch/powerpc/platforms/ps3/
15270 F:      drivers/*/ps3*
15271 F:      drivers/ps3/
15272 F:      drivers/rtc/rtc-ps3.c
15273 F:      drivers/usb/host/*ps3.c
15274 F:      sound/ppc/snd_ps3*
15275
15276 PS3VRAM DRIVER
15277 M:      Jim Paris <jim@jtan.com>
15278 M:      Geoff Levand <geoff@infradead.org>
15279 L:      linuxppc-dev@lists.ozlabs.org
15280 S:      Maintained
15281 F:      drivers/block/ps3vram.c
15282
15283 PSAMPLE PACKET SAMPLING SUPPORT
15284 M:      Yotam Gigi <yotam.gi@gmail.com>
15285 S:      Maintained
15286 F:      include/net/psample.h
15287 F:      include/uapi/linux/psample.h
15288 F:      net/psample
15289
15290 PSTORE FILESYSTEM
15291 M:      Kees Cook <keescook@chromium.org>
15292 M:      Anton Vorontsov <anton@enomsg.org>
15293 M:      Colin Cross <ccross@android.com>
15294 M:      Tony Luck <tony.luck@intel.com>
15295 S:      Maintained
15296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15297 F:      Documentation/admin-guide/ramoops.rst
15298 F:      Documentation/admin-guide/pstore-blk.rst
15299 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
15300 F:      drivers/acpi/apei/erst.c
15301 F:      drivers/firmware/efi/efi-pstore.c
15302 F:      fs/pstore/
15303 F:      include/linux/pstore*
15304 K:      \b(pstore|ramoops)
15305
15306 PTP HARDWARE CLOCK SUPPORT
15307 M:      Richard Cochran <richardcochran@gmail.com>
15308 L:      netdev@vger.kernel.org
15309 S:      Maintained
15310 W:      http://linuxptp.sourceforge.net/
15311 F:      Documentation/ABI/testing/sysfs-ptp
15312 F:      Documentation/driver-api/ptp.rst
15313 F:      drivers/net/phy/dp83640*
15314 F:      drivers/ptp/*
15315 F:      include/linux/ptp_cl*
15316
15317 PTP VIRTUAL CLOCK SUPPORT
15318 M:      Yangbo Lu <yangbo.lu@nxp.com>
15319 L:      netdev@vger.kernel.org
15320 S:      Maintained
15321 F:      drivers/ptp/ptp_vclock.c
15322 F:      net/ethtool/phc_vclocks.c
15323
15324 PTRACE SUPPORT
15325 M:      Oleg Nesterov <oleg@redhat.com>
15326 S:      Maintained
15327 F:      arch/*/*/ptrace*.c
15328 F:      arch/*/include/asm/ptrace*.h
15329 F:      arch/*/ptrace*.c
15330 F:      include/asm-generic/syscall.h
15331 F:      include/linux/ptrace.h
15332 F:      include/linux/regset.h
15333 F:      include/linux/tracehook.h
15334 F:      include/uapi/linux/ptrace.h
15335 F:      include/uapi/linux/ptrace.h
15336 F:      kernel/ptrace.c
15337
15338 PULSE8-CEC DRIVER
15339 M:      Hans Verkuil <hverkuil@xs4all.nl>
15340 L:      linux-media@vger.kernel.org
15341 S:      Maintained
15342 T:      git git://linuxtv.org/media_tree.git
15343 F:      Documentation/admin-guide/media/pulse8-cec.rst
15344 F:      drivers/media/cec/usb/pulse8/
15345
15346 PVRUSB2 VIDEO4LINUX DRIVER
15347 M:      Mike Isely <isely@pobox.com>
15348 L:      pvrusb2@isely.net       (subscribers-only)
15349 L:      linux-media@vger.kernel.org
15350 S:      Maintained
15351 W:      http://www.isely.net/pvrusb2/
15352 T:      git git://linuxtv.org/media_tree.git
15353 F:      Documentation/driver-api/media/drivers/pvrusb2*
15354 F:      drivers/media/usb/pvrusb2/
15355
15356 PWC WEBCAM DRIVER
15357 M:      Hans Verkuil <hverkuil@xs4all.nl>
15358 L:      linux-media@vger.kernel.org
15359 S:      Odd Fixes
15360 T:      git git://linuxtv.org/media_tree.git
15361 F:      drivers/media/usb/pwc/*
15362 F:      include/trace/events/pwc.h
15363
15364 PWM FAN DRIVER
15365 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15366 L:      linux-hwmon@vger.kernel.org
15367 S:      Supported
15368 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15369 F:      Documentation/hwmon/pwm-fan.rst
15370 F:      drivers/hwmon/pwm-fan.c
15371
15372 PWM IR Transmitter
15373 M:      Sean Young <sean@mess.org>
15374 L:      linux-media@vger.kernel.org
15375 S:      Maintained
15376 F:      drivers/media/rc/pwm-ir-tx.c
15377
15378 PWM SUBSYSTEM
15379 M:      Thierry Reding <thierry.reding@gmail.com>
15380 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15381 M:      Lee Jones <lee.jones@linaro.org>
15382 L:      linux-pwm@vger.kernel.org
15383 S:      Maintained
15384 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
15385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15386 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15387 F:      Documentation/devicetree/bindings/pwm/
15388 F:      Documentation/driver-api/pwm.rst
15389 F:      drivers/gpio/gpio-mvebu.c
15390 F:      drivers/pwm/
15391 F:      drivers/video/backlight/pwm_bl.c
15392 F:      include/linux/pwm.h
15393 F:      include/linux/pwm_backlight.h
15394 K:      pwm_(config|apply_state|ops)
15395
15396 PXA GPIO DRIVER
15397 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15398 L:      linux-gpio@vger.kernel.org
15399 S:      Maintained
15400 F:      drivers/gpio/gpio-pxa.c
15401
15402 PXA MMCI DRIVER
15403 S:      Orphan
15404
15405 PXA RTC DRIVER
15406 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15407 L:      linux-rtc@vger.kernel.org
15408 S:      Maintained
15409
15410 PXA2xx/PXA3xx SUPPORT
15411 M:      Daniel Mack <daniel@zonque.org>
15412 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
15413 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15414 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15415 S:      Maintained
15416 T:      git git://github.com/hzhuang1/linux.git
15417 T:      git git://github.com/rjarzmik/linux.git
15418 F:      arch/arm/boot/dts/pxa*
15419 F:      arch/arm/mach-pxa/
15420 F:      drivers/dma/pxa*
15421 F:      drivers/pcmcia/pxa2xx*
15422 F:      drivers/pinctrl/pxa/
15423 F:      drivers/spi/spi-pxa2xx*
15424 F:      drivers/usb/gadget/udc/pxa2*
15425 F:      include/sound/pxa2xx-lib.h
15426 F:      sound/arm/pxa*
15427 F:      sound/soc/pxa/
15428
15429 QAT DRIVER
15430 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
15431 L:      qat-linux@intel.com
15432 S:      Supported
15433 F:      drivers/crypto/qat/
15434
15435 QCOM AUDIO (ASoC) DRIVERS
15436 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15437 M:      Banajit Goswami <bgoswami@codeaurora.org>
15438 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15439 S:      Supported
15440 F:      sound/soc/codecs/lpass-va-macro.c
15441 F:      sound/soc/codecs/lpass-wsa-macro.*
15442 F:      sound/soc/codecs/msm8916-wcd-analog.c
15443 F:      sound/soc/codecs/msm8916-wcd-digital.c
15444 F:      sound/soc/codecs/wcd9335.*
15445 F:      sound/soc/codecs/wcd934x.c
15446 F:      sound/soc/codecs/wcd-clsh-v2.*
15447 F:      sound/soc/codecs/wsa881x.c
15448 F:      sound/soc/qcom/
15449
15450 QCOM IPA DRIVER
15451 M:      Alex Elder <elder@kernel.org>
15452 L:      netdev@vger.kernel.org
15453 S:      Supported
15454 F:      drivers/net/ipa/
15455
15456 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
15457 M:      Gabriel Somlo <somlo@cmu.edu>
15458 M:      "Michael S. Tsirkin" <mst@redhat.com>
15459 L:      qemu-devel@nongnu.org
15460 S:      Maintained
15461 F:      drivers/firmware/qemu_fw_cfg.c
15462 F:      include/uapi/linux/qemu_fw_cfg.h
15463
15464 QIB DRIVER
15465 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15466 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15467 L:      linux-rdma@vger.kernel.org
15468 S:      Supported
15469 F:      drivers/infiniband/hw/qib/
15470
15471 QLOGIC QL41xxx FCOE DRIVER
15472 M:      Saurav Kashyap <skashyap@marvell.com>
15473 M:      Javed Hasan <jhasan@marvell.com>
15474 M:      GR-QLogic-Storage-Upstream@marvell.com
15475 L:      linux-scsi@vger.kernel.org
15476 S:      Supported
15477 F:      drivers/scsi/qedf/
15478
15479 QLOGIC QL41xxx ISCSI DRIVER
15480 M:      Nilesh Javali <njavali@marvell.com>
15481 M:      Manish Rangankar <mrangankar@marvell.com>
15482 M:      GR-QLogic-Storage-Upstream@marvell.com
15483 L:      linux-scsi@vger.kernel.org
15484 S:      Supported
15485 F:      drivers/scsi/qedi/
15486
15487 QLOGIC QL4xxx ETHERNET DRIVER
15488 M:      Ariel Elior <aelior@marvell.com>
15489 M:      GR-everest-linux-l2@marvell.com
15490 L:      netdev@vger.kernel.org
15491 S:      Supported
15492 F:      drivers/net/ethernet/qlogic/qed/
15493 F:      drivers/net/ethernet/qlogic/qede/
15494 F:      include/linux/qed/
15495
15496 QLOGIC QL4xxx RDMA DRIVER
15497 M:      Michal Kalderon <mkalderon@marvell.com>
15498 M:      Ariel Elior <aelior@marvell.com>
15499 L:      linux-rdma@vger.kernel.org
15500 S:      Supported
15501 F:      drivers/infiniband/hw/qedr/
15502 F:      include/uapi/rdma/qedr-abi.h
15503
15504 QLOGIC QLA1280 SCSI DRIVER
15505 M:      Michael Reed <mdr@sgi.com>
15506 L:      linux-scsi@vger.kernel.org
15507 S:      Maintained
15508 F:      drivers/scsi/qla1280.[ch]
15509
15510 QLOGIC QLA2XXX FC-SCSI DRIVER
15511 M:      Nilesh Javali <njavali@marvell.com>
15512 M:      GR-QLogic-Storage-Upstream@marvell.com
15513 L:      linux-scsi@vger.kernel.org
15514 S:      Supported
15515 F:      drivers/scsi/qla2xxx/
15516
15517 QLOGIC QLA3XXX NETWORK DRIVER
15518 M:      GR-Linux-NIC-Dev@marvell.com
15519 L:      netdev@vger.kernel.org
15520 S:      Supported
15521 F:      drivers/net/ethernet/qlogic/qla3xxx.*
15522
15523 QLOGIC QLA4XXX iSCSI DRIVER
15524 M:      Nilesh Javali <njavali@marvell.com>
15525 M:      Manish Rangankar <mrangankar@marvell.com>
15526 M:      GR-QLogic-Storage-Upstream@marvell.com
15527 L:      linux-scsi@vger.kernel.org
15528 S:      Supported
15529 F:      drivers/scsi/qla4xxx/
15530
15531 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
15532 M:      Shahed Shaikh <shshaikh@marvell.com>
15533 M:      Manish Chopra <manishc@marvell.com>
15534 M:      GR-Linux-NIC-Dev@marvell.com
15535 L:      netdev@vger.kernel.org
15536 S:      Supported
15537 F:      drivers/net/ethernet/qlogic/qlcnic/
15538
15539 QLOGIC QLGE 10Gb ETHERNET DRIVER
15540 M:      Manish Chopra <manishc@marvell.com>
15541 M:      GR-Linux-NIC-Dev@marvell.com
15542 M:      Coiby Xu <coiby.xu@gmail.com>
15543 L:      netdev@vger.kernel.org
15544 S:      Supported
15545 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
15546 F:      drivers/staging/qlge/
15547
15548 QM1D1B0004 MEDIA DRIVER
15549 M:      Akihiro Tsukada <tskd08@gmail.com>
15550 L:      linux-media@vger.kernel.org
15551 S:      Odd Fixes
15552 F:      drivers/media/tuners/qm1d1b0004*
15553
15554 QM1D1C0042 MEDIA DRIVER
15555 M:      Akihiro Tsukada <tskd08@gmail.com>
15556 L:      linux-media@vger.kernel.org
15557 S:      Odd Fixes
15558 F:      drivers/media/tuners/qm1d1c0042*
15559
15560 QNX4 FILESYSTEM
15561 M:      Anders Larsen <al@alarsen.net>
15562 S:      Maintained
15563 W:      http://www.alarsen.net/linux/qnx4fs/
15564 F:      fs/qnx4/
15565 F:      include/uapi/linux/qnx4_fs.h
15566 F:      include/uapi/linux/qnxtypes.h
15567
15568 QORIQ DPAA2 FSL-MC BUS DRIVER
15569 M:      Stuart Yoder <stuyoder@gmail.com>
15570 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
15571 L:      linux-kernel@vger.kernel.org
15572 S:      Maintained
15573 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
15574 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15575 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15576 F:      drivers/bus/fsl-mc/
15577 F:      include/uapi/linux/fsl_mc.h
15578
15579 QT1010 MEDIA DRIVER
15580 M:      Antti Palosaari <crope@iki.fi>
15581 L:      linux-media@vger.kernel.org
15582 S:      Maintained
15583 W:      https://linuxtv.org
15584 W:      http://palosaari.fi/linux/
15585 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15586 T:      git git://linuxtv.org/anttip/media_tree.git
15587 F:      drivers/media/tuners/qt1010*
15588
15589 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15590 M:      Kalle Valo <kvalo@codeaurora.org>
15591 L:      ath10k@lists.infradead.org
15592 S:      Supported
15593 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15595 F:      drivers/net/wireless/ath/ath10k/
15596
15597 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15598 M:      Kalle Valo <kvalo@codeaurora.org>
15599 L:      ath11k@lists.infradead.org
15600 S:      Supported
15601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15602 F:      drivers/net/wireless/ath/ath11k/
15603
15604 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15605 M:      ath9k-devel@qca.qualcomm.com
15606 L:      linux-wireless@vger.kernel.org
15607 S:      Supported
15608 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15609 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
15610 F:      drivers/net/wireless/ath/ath9k/
15611
15612 QUALCOMM CAMERA SUBSYSTEM DRIVER
15613 M:      Robert Foss <robert.foss@linaro.org>
15614 M:      Todor Tomov <todor.too@gmail.com>
15615 L:      linux-media@vger.kernel.org
15616 S:      Maintained
15617 F:      Documentation/admin-guide/media/qcom_camss.rst
15618 F:      Documentation/devicetree/bindings/media/*camss*
15619 F:      drivers/media/platform/qcom/camss/
15620
15621 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15622 M:      Niklas Cassel <nks@flawful.org>
15623 L:      linux-pm@vger.kernel.org
15624 L:      linux-arm-msm@vger.kernel.org
15625 S:      Maintained
15626 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15627 F:      drivers/soc/qcom/cpr.c
15628
15629 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15630 M:      Ilia Lin <ilia.lin@kernel.org>
15631 L:      linux-pm@vger.kernel.org
15632 S:      Maintained
15633 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15634 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
15635
15636 QUALCOMM CRYPTO DRIVERS
15637 M:      Thara Gopinath <thara.gopinath@linaro.org>
15638 L:      linux-crypto@vger.kernel.org
15639 L:      linux-arm-msm@vger.kernel.org
15640 S:      Maintained
15641 F:      drivers/crypto/qce/
15642
15643 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15644 M:      Timur Tabi <timur@kernel.org>
15645 L:      netdev@vger.kernel.org
15646 S:      Maintained
15647 F:      drivers/net/ethernet/qualcomm/emac/
15648
15649 QUALCOMM ETHQOS ETHERNET DRIVER
15650 M:      Vinod Koul <vkoul@kernel.org>
15651 L:      netdev@vger.kernel.org
15652 S:      Maintained
15653 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
15654 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15655
15656 QUALCOMM GENERIC INTERFACE I2C DRIVER
15657 M:      Akash Asthana <akashast@codeaurora.org>
15658 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
15659 L:      linux-i2c@vger.kernel.org
15660 L:      linux-arm-msm@vger.kernel.org
15661 S:      Supported
15662 F:      drivers/i2c/busses/i2c-qcom-geni.c
15663
15664 QUALCOMM HEXAGON ARCHITECTURE
15665 M:      Brian Cain <bcain@codeaurora.org>
15666 L:      linux-hexagon@vger.kernel.org
15667 S:      Supported
15668 F:      arch/hexagon/
15669
15670 QUALCOMM HIDMA DRIVER
15671 M:      Sinan Kaya <okaya@kernel.org>
15672 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15673 L:      linux-arm-msm@vger.kernel.org
15674 L:      dmaengine@vger.kernel.org
15675 S:      Supported
15676 F:      drivers/dma/qcom/hidma*
15677
15678 QUALCOMM I2C CCI DRIVER
15679 M:      Loic Poulain <loic.poulain@linaro.org>
15680 M:      Robert Foss <robert.foss@linaro.org>
15681 L:      linux-i2c@vger.kernel.org
15682 L:      linux-arm-msm@vger.kernel.org
15683 S:      Maintained
15684 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
15685 F:      drivers/i2c/busses/i2c-qcom-cci.c
15686
15687 QUALCOMM IOMMU
15688 M:      Rob Clark <robdclark@gmail.com>
15689 L:      iommu@lists.linux-foundation.org
15690 L:      linux-arm-msm@vger.kernel.org
15691 S:      Maintained
15692 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
15693
15694 QUALCOMM IPC ROUTER (QRTR) DRIVER
15695 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15696 L:      linux-arm-msm@vger.kernel.org
15697 S:      Maintained
15698 F:      include/trace/events/qrtr.h
15699 F:      include/uapi/linux/qrtr.h
15700 F:      net/qrtr/
15701
15702 QUALCOMM IPCC MAILBOX DRIVER
15703 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15704 L:      linux-arm-msm@vger.kernel.org
15705 S:      Supported
15706 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
15707 F:      drivers/mailbox/qcom-ipcc.c
15708 F:      include/dt-bindings/mailbox/qcom-ipcc.h
15709
15710 QUALCOMM IPQ4019 USB PHY DRIVER
15711 M:      Robert Marko <robert.marko@sartura.hr>
15712 M:      Luka Perkov <luka.perkov@sartura.hr>
15713 L:      linux-arm-msm@vger.kernel.org
15714 S:      Maintained
15715 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
15716 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
15717
15718 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
15719 M:      Robert Marko <robert.marko@sartura.hr>
15720 M:      Luka Perkov <luka.perkov@sartura.hr>
15721 L:      linux-arm-msm@vger.kernel.org
15722 S:      Maintained
15723 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
15724 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
15725
15726 QUALCOMM RMNET DRIVER
15727 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
15728 M:      Sean Tranchetti <stranche@codeaurora.org>
15729 L:      netdev@vger.kernel.org
15730 S:      Maintained
15731 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
15732 F:      drivers/net/ethernet/qualcomm/rmnet/
15733 F:      include/linux/if_rmnet.h
15734
15735 QUALCOMM TSENS THERMAL DRIVER
15736 M:      Amit Kucheria <amitk@kernel.org>
15737 M:      Thara Gopinath <thara.gopinath@linaro.org>
15738 L:      linux-pm@vger.kernel.org
15739 L:      linux-arm-msm@vger.kernel.org
15740 S:      Maintained
15741 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
15742 F:      drivers/thermal/qcom/
15743
15744 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
15745 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
15746 L:      linux-media@vger.kernel.org
15747 L:      linux-arm-msm@vger.kernel.org
15748 S:      Maintained
15749 T:      git git://linuxtv.org/media_tree.git
15750 F:      Documentation/devicetree/bindings/media/*venus*
15751 F:      drivers/media/platform/qcom/venus/
15752
15753 QUALCOMM WCN36XX WIRELESS DRIVER
15754 M:      Kalle Valo <kvalo@codeaurora.org>
15755 L:      wcn36xx@lists.infradead.org
15756 S:      Supported
15757 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
15758 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
15759 F:      drivers/net/wireless/ath/wcn36xx/
15760
15761 QUANTENNA QTNFMAC WIRELESS DRIVER
15762 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
15763 R:      Sergey Matyukevich <geomatsi@gmail.com>
15764 L:      linux-wireless@vger.kernel.org
15765 S:      Maintained
15766 F:      drivers/net/wireless/quantenna
15767
15768 RADEON and AMDGPU DRM DRIVERS
15769 M:      Alex Deucher <alexander.deucher@amd.com>
15770 M:      Christian König <christian.koenig@amd.com>
15771 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
15772 L:      amd-gfx@lists.freedesktop.org
15773 S:      Supported
15774 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
15775 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
15776 C:      irc://irc.oftc.net/radeon
15777 F:      drivers/gpu/drm/amd/
15778 F:      drivers/gpu/drm/radeon/
15779 F:      include/uapi/drm/amdgpu_drm.h
15780 F:      include/uapi/drm/radeon_drm.h
15781
15782 RADEON FRAMEBUFFER DISPLAY DRIVER
15783 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
15784 L:      linux-fbdev@vger.kernel.org
15785 S:      Maintained
15786 F:      drivers/video/fbdev/aty/radeon*
15787 F:      include/uapi/linux/radeonfb.h
15788
15789 RADIOSHARK RADIO DRIVER
15790 M:      Hans Verkuil <hverkuil@xs4all.nl>
15791 L:      linux-media@vger.kernel.org
15792 S:      Maintained
15793 T:      git git://linuxtv.org/media_tree.git
15794 F:      drivers/media/radio/radio-shark.c
15795
15796 RADIOSHARK2 RADIO DRIVER
15797 M:      Hans Verkuil <hverkuil@xs4all.nl>
15798 L:      linux-media@vger.kernel.org
15799 S:      Maintained
15800 T:      git git://linuxtv.org/media_tree.git
15801 F:      drivers/media/radio/radio-shark2.c
15802 F:      drivers/media/radio/radio-tea5777.c
15803
15804 RADOS BLOCK DEVICE (RBD)
15805 M:      Ilya Dryomov <idryomov@gmail.com>
15806 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
15807 L:      ceph-devel@vger.kernel.org
15808 S:      Supported
15809 W:      http://ceph.com/
15810 T:      git git://github.com/ceph/ceph-client.git
15811 F:      Documentation/ABI/testing/sysfs-bus-rbd
15812 F:      drivers/block/rbd.c
15813 F:      drivers/block/rbd_types.h
15814
15815 RAGE128 FRAMEBUFFER DISPLAY DRIVER
15816 M:      Paul Mackerras <paulus@samba.org>
15817 L:      linux-fbdev@vger.kernel.org
15818 S:      Maintained
15819 F:      drivers/video/fbdev/aty/aty128fb.c
15820
15821 RAINSHADOW-CEC DRIVER
15822 M:      Hans Verkuil <hverkuil@xs4all.nl>
15823 L:      linux-media@vger.kernel.org
15824 S:      Maintained
15825 T:      git git://linuxtv.org/media_tree.git
15826 F:      drivers/media/cec/usb/rainshadow/
15827
15828 RALINK MIPS ARCHITECTURE
15829 M:      John Crispin <john@phrozen.org>
15830 L:      linux-mips@vger.kernel.org
15831 S:      Maintained
15832 F:      arch/mips/ralink
15833
15834 RALINK RT2X00 WIRELESS LAN DRIVER
15835 M:      Stanislaw Gruszka <stf_xl@wp.pl>
15836 M:      Helmut Schaa <helmut.schaa@googlemail.com>
15837 L:      linux-wireless@vger.kernel.org
15838 S:      Maintained
15839 F:      drivers/net/wireless/ralink/rt2x00/
15840
15841 RAMDISK RAM BLOCK DEVICE DRIVER
15842 M:      Jens Axboe <axboe@kernel.dk>
15843 S:      Maintained
15844 F:      Documentation/admin-guide/blockdev/ramdisk.rst
15845 F:      drivers/block/brd.c
15846
15847 RANCHU VIRTUAL BOARD FOR MIPS
15848 M:      Miodrag Dinic <miodrag.dinic@mips.com>
15849 L:      linux-mips@vger.kernel.org
15850 S:      Supported
15851 F:      arch/mips/configs/generic/board-ranchu.config
15852 F:      arch/mips/generic/board-ranchu.c
15853
15854 RANDOM NUMBER DRIVER
15855 M:      "Theodore Ts'o" <tytso@mit.edu>
15856 S:      Maintained
15857 F:      drivers/char/random.c
15858
15859 RAPIDIO SUBSYSTEM
15860 M:      Matt Porter <mporter@kernel.crashing.org>
15861 M:      Alexandre Bounine <alex.bou9@gmail.com>
15862 S:      Maintained
15863 F:      drivers/rapidio/
15864
15865 RAS INFRASTRUCTURE
15866 M:      Tony Luck <tony.luck@intel.com>
15867 M:      Borislav Petkov <bp@alien8.de>
15868 L:      linux-edac@vger.kernel.org
15869 S:      Maintained
15870 F:      Documentation/admin-guide/ras.rst
15871 F:      drivers/ras/
15872 F:      include/linux/ras.h
15873 F:      include/ras/ras_event.h
15874
15875 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
15876 L:      linux-wireless@vger.kernel.org
15877 S:      Orphan
15878 F:      drivers/net/wireless/ray*
15879
15880 RC-CORE / LIRC FRAMEWORK
15881 M:      Sean Young <sean@mess.org>
15882 L:      linux-media@vger.kernel.org
15883 S:      Maintained
15884 W:      http://linuxtv.org
15885 T:      git git://linuxtv.org/media_tree.git
15886 F:      Documentation/driver-api/media/rc-core.rst
15887 F:      Documentation/userspace-api/media/rc/
15888 F:      drivers/media/rc/
15889 F:      include/media/rc-map.h
15890 F:      include/media/rc-core.h
15891 F:      include/uapi/linux/lirc.h
15892
15893 RCMM REMOTE CONTROLS DECODER
15894 M:      Patrick Lerda <patrick9876@free.fr>
15895 S:      Maintained
15896 F:      drivers/media/rc/ir-rcmm-decoder.c
15897
15898 RCUTORTURE TEST FRAMEWORK
15899 M:      "Paul E. McKenney" <paulmck@kernel.org>
15900 M:      Josh Triplett <josh@joshtriplett.org>
15901 R:      Steven Rostedt <rostedt@goodmis.org>
15902 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15903 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15904 L:      rcu@vger.kernel.org
15905 S:      Supported
15906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15907 F:      tools/testing/selftests/rcutorture
15908
15909 RDACM20 Camera Sensor
15910 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15911 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15912 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15913 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15914 L:      linux-media@vger.kernel.org
15915 S:      Maintained
15916 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15917 F:      drivers/media/i2c/max9271.c
15918 F:      drivers/media/i2c/max9271.h
15919 F:      drivers/media/i2c/rdacm20.c
15920
15921 RDACM21 Camera Sensor
15922 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15923 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15924 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15925 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15926 L:      linux-media@vger.kernel.org
15927 S:      Maintained
15928 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15929 F:      drivers/media/i2c/max9271.c
15930 F:      drivers/media/i2c/max9271.h
15931 F:      drivers/media/i2c/rdacm21.c
15932
15933 RDC R-321X SoC
15934 M:      Florian Fainelli <florian@openwrt.org>
15935 S:      Maintained
15936
15937 RDC R6040 FAST ETHERNET DRIVER
15938 M:      Florian Fainelli <f.fainelli@gmail.com>
15939 L:      netdev@vger.kernel.org
15940 S:      Maintained
15941 F:      drivers/net/ethernet/rdc/r6040.c
15942
15943 RDMAVT - RDMA verbs software
15944 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15945 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15946 L:      linux-rdma@vger.kernel.org
15947 S:      Supported
15948 F:      drivers/infiniband/sw/rdmavt
15949
15950 RDS - RELIABLE DATAGRAM SOCKETS
15951 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
15952 L:      netdev@vger.kernel.org
15953 L:      linux-rdma@vger.kernel.org
15954 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
15955 S:      Supported
15956 W:      https://oss.oracle.com/projects/rds/
15957 F:      Documentation/networking/rds.rst
15958 F:      net/rds/
15959
15960 RDT - RESOURCE ALLOCATION
15961 M:      Fenghua Yu <fenghua.yu@intel.com>
15962 M:      Reinette Chatre <reinette.chatre@intel.com>
15963 L:      linux-kernel@vger.kernel.org
15964 S:      Supported
15965 F:      Documentation/x86/resctrl*
15966 F:      arch/x86/include/asm/resctrl.h
15967 F:      arch/x86/kernel/cpu/resctrl/
15968 F:      tools/testing/selftests/resctrl/
15969
15970 READ-COPY UPDATE (RCU)
15971 M:      "Paul E. McKenney" <paulmck@kernel.org>
15972 M:      Josh Triplett <josh@joshtriplett.org>
15973 R:      Steven Rostedt <rostedt@goodmis.org>
15974 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15975 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15976 R:      Joel Fernandes <joel@joelfernandes.org>
15977 L:      rcu@vger.kernel.org
15978 S:      Supported
15979 W:      http://www.rdrop.com/users/paulmck/RCU/
15980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15981 F:      Documentation/RCU/
15982 F:      include/linux/rcu*
15983 F:      kernel/rcu/
15984 X:      Documentation/RCU/torture.rst
15985 X:      include/linux/srcu*.h
15986 X:      kernel/rcu/srcu*.c
15987
15988 REAL TIME CLOCK (RTC) SUBSYSTEM
15989 M:      Alessandro Zummo <a.zummo@towertech.it>
15990 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
15991 L:      linux-rtc@vger.kernel.org
15992 S:      Maintained
15993 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
15994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
15995 F:      Documentation/admin-guide/rtc.rst
15996 F:      Documentation/devicetree/bindings/rtc/
15997 F:      drivers/rtc/
15998 F:      include/linux/platform_data/rtc-*
15999 F:      include/linux/rtc.h
16000 F:      include/linux/rtc/
16001 F:      include/uapi/linux/rtc.h
16002 F:      tools/testing/selftests/rtc/
16003
16004 REALTEK AUDIO CODECS
16005 M:      Oder Chiou <oder_chiou@realtek.com>
16006 S:      Maintained
16007 F:      include/sound/rt*.h
16008 F:      sound/soc/codecs/rt*
16009
16010 REALTEK RTL83xx SMI DSA ROUTER CHIPS
16011 M:      Linus Walleij <linus.walleij@linaro.org>
16012 S:      Maintained
16013 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
16014 F:      drivers/net/dsa/realtek-smi*
16015 F:      drivers/net/dsa/rtl83*
16016
16017 REALTEK WIRELESS DRIVER (rtlwifi family)
16018 M:      Ping-Ke Shih <pkshih@realtek.com>
16019 L:      linux-wireless@vger.kernel.org
16020 S:      Maintained
16021 W:      https://wireless.wiki.kernel.org/
16022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16023 F:      drivers/net/wireless/realtek/rtlwifi/
16024
16025 REALTEK WIRELESS DRIVER (rtw88)
16026 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
16027 L:      linux-wireless@vger.kernel.org
16028 S:      Maintained
16029 F:      drivers/net/wireless/realtek/rtw88/
16030
16031 REALTEK WIRELESS DRIVER (rtw89)
16032 M:      Ping-Ke Shih <pkshih@realtek.com>
16033 L:      linux-wireless@vger.kernel.org
16034 S:      Maintained
16035 F:      drivers/net/wireless/realtek/rtw89/
16036
16037 REDPINE WIRELESS DRIVER
16038 M:      Amitkumar Karwar <amitkarwar@gmail.com>
16039 M:      Siva Rebbagondla <siva8118@gmail.com>
16040 L:      linux-wireless@vger.kernel.org
16041 S:      Maintained
16042 F:      drivers/net/wireless/rsi/
16043
16044 REGISTER MAP ABSTRACTION
16045 M:      Mark Brown <broonie@kernel.org>
16046 L:      linux-kernel@vger.kernel.org
16047 S:      Supported
16048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
16049 F:      Documentation/devicetree/bindings/regmap/
16050 F:      drivers/base/regmap/
16051 F:      include/linux/regmap.h
16052
16053 REISERFS FILE SYSTEM
16054 L:      reiserfs-devel@vger.kernel.org
16055 S:      Supported
16056 F:      fs/reiserfs/
16057
16058 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
16059 M:      Ohad Ben-Cohen <ohad@wizery.com>
16060 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16061 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16062 L:      linux-remoteproc@vger.kernel.org
16063 S:      Maintained
16064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
16065 F:      Documentation/ABI/testing/sysfs-class-remoteproc
16066 F:      Documentation/devicetree/bindings/remoteproc/
16067 F:      Documentation/staging/remoteproc.rst
16068 F:      drivers/remoteproc/
16069 F:      include/linux/remoteproc.h
16070 F:      include/linux/remoteproc/
16071
16072 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
16073 M:      Ohad Ben-Cohen <ohad@wizery.com>
16074 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16075 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16076 L:      linux-remoteproc@vger.kernel.org
16077 S:      Maintained
16078 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
16079 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
16080 F:      Documentation/staging/rpmsg.rst
16081 F:      drivers/rpmsg/
16082 F:      include/linux/rpmsg.h
16083 F:      include/linux/rpmsg/
16084 F:      include/uapi/linux/rpmsg.h
16085 F:      samples/rpmsg/
16086
16087 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
16088 M:      Stephan Gerhold <stephan@gerhold.net>
16089 L:      netdev@vger.kernel.org
16090 L:      linux-remoteproc@vger.kernel.org
16091 S:      Maintained
16092 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
16093
16094 RENESAS CLOCK DRIVERS
16095 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16096 L:      linux-renesas-soc@vger.kernel.org
16097 S:      Supported
16098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
16099 F:      Documentation/devicetree/bindings/clock/renesas,*
16100 F:      drivers/clk/renesas/
16101
16102 RENESAS EMEV2 I2C DRIVER
16103 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16104 L:      linux-renesas-soc@vger.kernel.org
16105 S:      Supported
16106 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
16107 F:      drivers/i2c/busses/i2c-emev2.c
16108
16109 RENESAS ETHERNET DRIVERS
16110 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
16111 L:      netdev@vger.kernel.org
16112 L:      linux-renesas-soc@vger.kernel.org
16113 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
16114 F:      drivers/net/ethernet/renesas/
16115 F:      include/linux/sh_eth.h
16116
16117 RENESAS R-CAR GYROADC DRIVER
16118 M:      Marek Vasut <marek.vasut@gmail.com>
16119 L:      linux-iio@vger.kernel.org
16120 S:      Supported
16121 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
16122 F:      drivers/iio/adc/rcar-gyroadc.c
16123
16124 RENESAS R-CAR I2C DRIVERS
16125 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16126 L:      linux-renesas-soc@vger.kernel.org
16127 S:      Supported
16128 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
16129 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
16130 F:      drivers/i2c/busses/i2c-rcar.c
16131 F:      drivers/i2c/busses/i2c-sh_mobile.c
16132
16133 RENESAS R-CAR THERMAL DRIVERS
16134 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
16135 L:      linux-renesas-soc@vger.kernel.org
16136 S:      Supported
16137 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
16138 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
16139 F:      drivers/thermal/rcar_gen3_thermal.c
16140 F:      drivers/thermal/rcar_thermal.c
16141
16142 RENESAS RIIC DRIVER
16143 M:      Chris Brandt <chris.brandt@renesas.com>
16144 L:      linux-renesas-soc@vger.kernel.org
16145 S:      Supported
16146 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
16147 F:      drivers/i2c/busses/i2c-riic.c
16148
16149 RENESAS USB PHY DRIVER
16150 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16151 L:      linux-renesas-soc@vger.kernel.org
16152 S:      Maintained
16153 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
16154
16155 RENESAS RZ/G2L A/D DRIVER
16156 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
16157 L:      linux-iio@vger.kernel.org
16158 L:      linux-renesas-soc@vger.kernel.org
16159 S:      Supported
16160 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
16161 F:      drivers/iio/adc/rzg2l_adc.c
16162
16163 RESET CONTROLLER FRAMEWORK
16164 M:      Philipp Zabel <p.zabel@pengutronix.de>
16165 S:      Maintained
16166 T:      git git://git.pengutronix.de/git/pza/linux
16167 F:      Documentation/devicetree/bindings/reset/
16168 F:      Documentation/driver-api/reset.rst
16169 F:      drivers/reset/
16170 F:      include/dt-bindings/reset/
16171 F:      include/linux/reset-controller.h
16172 F:      include/linux/reset.h
16173 F:      include/linux/reset/
16174 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
16175
16176 RESTARTABLE SEQUENCES SUPPORT
16177 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16178 M:      Peter Zijlstra <peterz@infradead.org>
16179 M:      "Paul E. McKenney" <paulmck@kernel.org>
16180 M:      Boqun Feng <boqun.feng@gmail.com>
16181 L:      linux-kernel@vger.kernel.org
16182 S:      Supported
16183 F:      include/trace/events/rseq.h
16184 F:      include/uapi/linux/rseq.h
16185 F:      kernel/rseq.c
16186 F:      tools/testing/selftests/rseq/
16187
16188 RFKILL
16189 M:      Johannes Berg <johannes@sipsolutions.net>
16190 L:      linux-wireless@vger.kernel.org
16191 S:      Maintained
16192 W:      https://wireless.wiki.kernel.org/
16193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
16194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
16195 F:      Documentation/ABI/stable/sysfs-class-rfkill
16196 F:      Documentation/driver-api/rfkill.rst
16197 F:      include/linux/rfkill.h
16198 F:      include/uapi/linux/rfkill.h
16199 F:      net/rfkill/
16200
16201 RHASHTABLE
16202 M:      Thomas Graf <tgraf@suug.ch>
16203 M:      Herbert Xu <herbert@gondor.apana.org.au>
16204 L:      netdev@vger.kernel.org
16205 S:      Maintained
16206 F:      include/linux/rhashtable-types.h
16207 F:      include/linux/rhashtable.h
16208 F:      lib/rhashtable.c
16209 F:      lib/test_rhashtable.c
16210
16211 RICOH R5C592 MEMORYSTICK DRIVER
16212 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16213 S:      Maintained
16214 F:      drivers/memstick/host/r592.*
16215
16216 RICOH SMARTMEDIA/XD DRIVER
16217 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16218 S:      Maintained
16219 F:      drivers/mtd/nand/raw/r852.c
16220 F:      drivers/mtd/nand/raw/r852.h
16221
16222 RISC-V ARCHITECTURE
16223 M:      Paul Walmsley <paul.walmsley@sifive.com>
16224 M:      Palmer Dabbelt <palmer@dabbelt.com>
16225 M:      Albert Ou <aou@eecs.berkeley.edu>
16226 L:      linux-riscv@lists.infradead.org
16227 S:      Supported
16228 P:      Documentation/riscv/patch-acceptance.rst
16229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
16230 F:      arch/riscv/
16231 N:      riscv
16232 K:      riscv
16233
16234 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
16235 M:      Lewis Hanly <lewis.hanly@microchip.com>
16236 L:      linux-riscv@lists.infradead.org
16237 S:      Supported
16238 F:      drivers/mailbox/mailbox-mpfs.c
16239 F:      drivers/soc/microchip/
16240 F:      include/soc/microchip/mpfs.h
16241
16242 RNBD BLOCK DRIVERS
16243 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16244 M:      Jack Wang <jinpu.wang@ionos.com>
16245 L:      linux-block@vger.kernel.org
16246 S:      Maintained
16247 F:      drivers/block/rnbd/
16248
16249 ROCCAT DRIVERS
16250 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
16251 S:      Maintained
16252 W:      http://sourceforge.net/projects/roccat/
16253 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
16254 F:      drivers/hid/hid-roccat*
16255 F:      include/linux/hid-roccat*
16256
16257 ROCKCHIP I2S TDM DRIVER
16258 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
16259 L:      linux-rockchip@lists.infradead.org
16260 S:      Maintained
16261 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
16262 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
16263
16264 ROCKCHIP ISP V1 DRIVER
16265 M:      Helen Koike <helen.koike@collabora.com>
16266 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
16267 L:      linux-media@vger.kernel.org
16268 L:      linux-rockchip@lists.infradead.org
16269 S:      Maintained
16270 F:      Documentation/admin-guide/media/rkisp1.rst
16271 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
16272 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
16273 F:      drivers/media/platform/rockchip/rkisp1
16274 F:      include/uapi/linux/rkisp1-config.h
16275
16276 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
16277 M:      Jacob Chen <jacob-chen@iotwrt.com>
16278 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16279 L:      linux-media@vger.kernel.org
16280 L:      linux-rockchip@lists.infradead.org
16281 S:      Maintained
16282 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
16283 F:      drivers/media/platform/rockchip/rga/
16284
16285 ROCKCHIP VIDEO DECODER DRIVER
16286 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16287 L:      linux-media@vger.kernel.org
16288 L:      linux-rockchip@lists.infradead.org
16289 S:      Maintained
16290 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
16291 F:      drivers/staging/media/rkvdec/
16292
16293 ROCKER DRIVER
16294 M:      Jiri Pirko <jiri@resnulli.us>
16295 L:      netdev@vger.kernel.org
16296 S:      Supported
16297 F:      drivers/net/ethernet/rocker/
16298
16299 ROCKETPORT EXPRESS/INFINITY DRIVER
16300 M:      Kevin Cernekee <cernekee@gmail.com>
16301 L:      linux-serial@vger.kernel.org
16302 S:      Odd Fixes
16303 F:      drivers/tty/serial/rp2.*
16304
16305 ROHM BD99954 CHARGER IC
16306 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16307 L:      linux-power@fi.rohmeurope.com
16308 S:      Supported
16309 F:      drivers/power/supply/bd99954-charger.c
16310 F:      drivers/power/supply/bd99954-charger.h
16311
16312 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
16313 M:      Tomasz Duszynski <tduszyns@gmail.com>
16314 S:      Maintained
16315 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
16316 F:      drivers/iio/light/bh1750.c
16317
16318 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
16319 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
16320 L:      linux-kernel@vger.kernel.org
16321 L:      linux-renesas-soc@vger.kernel.org
16322 S:      Supported
16323 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
16324 F:      drivers/gpio/gpio-bd9571mwv.c
16325 F:      drivers/mfd/bd9571mwv.c
16326 F:      drivers/regulator/bd9571mwv-regulator.c
16327 F:      include/linux/mfd/bd9571mwv.h
16328
16329 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
16330 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16331 L:      linux-power@fi.rohmeurope.com
16332 S:      Supported
16333 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
16334 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
16335 F:      drivers/clk/clk-bd718x7.c
16336 F:      drivers/gpio/gpio-bd70528.c
16337 F:      drivers/gpio/gpio-bd71815.c
16338 F:      drivers/gpio/gpio-bd71828.c
16339 F:      drivers/mfd/rohm-bd70528.c
16340 F:      drivers/mfd/rohm-bd71828.c
16341 F:      drivers/mfd/rohm-bd718x7.c
16342 F:      drivers/mfd/rohm-bd9576.c
16343 F:      drivers/power/supply/bd70528-charger.c
16344 F:      drivers/regulator/bd70528-regulator.c
16345 F:      drivers/regulator/bd71815-regulator.c
16346 F:      drivers/regulator/bd71828-regulator.c
16347 F:      drivers/regulator/bd718x7-regulator.c
16348 F:      drivers/regulator/bd9576-regulator.c
16349 F:      drivers/regulator/rohm-regulator.c
16350 F:      drivers/rtc/rtc-bd70528.c
16351 F:      drivers/watchdog/bd70528_wdt.c
16352 F:      drivers/watchdog/bd9576_wdt.c
16353 F:      include/linux/mfd/rohm-bd70528.h
16354 F:      include/linux/mfd/rohm-bd71815.h
16355 F:      include/linux/mfd/rohm-bd71828.h
16356 F:      include/linux/mfd/rohm-bd718x7.h
16357 F:      include/linux/mfd/rohm-bd957x.h
16358 F:      include/linux/mfd/rohm-generic.h
16359 F:      include/linux/mfd/rohm-shared.h
16360
16361 ROSE NETWORK LAYER
16362 M:      Ralf Baechle <ralf@linux-mips.org>
16363 L:      linux-hams@vger.kernel.org
16364 S:      Maintained
16365 W:      http://www.linux-ax25.org/
16366 F:      include/net/rose.h
16367 F:      include/uapi/linux/rose.h
16368 F:      net/rose/
16369
16370 ROTATION DRIVER FOR ALLWINNER A83T
16371 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
16372 L:      linux-media@vger.kernel.org
16373 S:      Maintained
16374 T:      git git://linuxtv.org/media_tree.git
16375 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
16376 F:      drivers/media/platform/sunxi/sun8i-rotate/
16377
16378 RTL2830 MEDIA DRIVER
16379 M:      Antti Palosaari <crope@iki.fi>
16380 L:      linux-media@vger.kernel.org
16381 S:      Maintained
16382 W:      https://linuxtv.org
16383 W:      http://palosaari.fi/linux/
16384 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16385 T:      git git://linuxtv.org/anttip/media_tree.git
16386 F:      drivers/media/dvb-frontends/rtl2830*
16387
16388 RTL2832 MEDIA DRIVER
16389 M:      Antti Palosaari <crope@iki.fi>
16390 L:      linux-media@vger.kernel.org
16391 S:      Maintained
16392 W:      https://linuxtv.org
16393 W:      http://palosaari.fi/linux/
16394 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16395 T:      git git://linuxtv.org/anttip/media_tree.git
16396 F:      drivers/media/dvb-frontends/rtl2832*
16397
16398 RTL2832_SDR MEDIA DRIVER
16399 M:      Antti Palosaari <crope@iki.fi>
16400 L:      linux-media@vger.kernel.org
16401 S:      Maintained
16402 W:      https://linuxtv.org
16403 W:      http://palosaari.fi/linux/
16404 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16405 T:      git git://linuxtv.org/anttip/media_tree.git
16406 F:      drivers/media/dvb-frontends/rtl2832_sdr*
16407
16408 RTL8180 WIRELESS DRIVER
16409 L:      linux-wireless@vger.kernel.org
16410 S:      Orphan
16411 W:      https://wireless.wiki.kernel.org/
16412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16413 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
16414
16415 RTL8187 WIRELESS DRIVER
16416 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
16417 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
16418 M:      Larry Finger <Larry.Finger@lwfinger.net>
16419 L:      linux-wireless@vger.kernel.org
16420 S:      Maintained
16421 W:      https://wireless.wiki.kernel.org/
16422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16423 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
16424
16425 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
16426 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
16427 L:      linux-wireless@vger.kernel.org
16428 S:      Maintained
16429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
16430 F:      drivers/net/wireless/realtek/rtl8xxxu/
16431
16432 RTRS TRANSPORT DRIVERS
16433 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16434 M:      Jack Wang <jinpu.wang@ionos.com>
16435 L:      linux-rdma@vger.kernel.org
16436 S:      Maintained
16437 F:      drivers/infiniband/ulp/rtrs/
16438
16439 RXRPC SOCKETS (AF_RXRPC)
16440 M:      David Howells <dhowells@redhat.com>
16441 M:      Marc Dionne <marc.dionne@auristor.com>
16442 L:      linux-afs@lists.infradead.org
16443 S:      Supported
16444 W:      https://www.infradead.org/~dhowells/kafs/
16445 F:      Documentation/networking/rxrpc.rst
16446 F:      include/keys/rxrpc-type.h
16447 F:      include/net/af_rxrpc.h
16448 F:      include/trace/events/rxrpc.h
16449 F:      include/uapi/linux/rxrpc.h
16450 F:      net/rxrpc/
16451
16452 S3 SAVAGE FRAMEBUFFER DRIVER
16453 M:      Antonino Daplas <adaplas@gmail.com>
16454 L:      linux-fbdev@vger.kernel.org
16455 S:      Maintained
16456 F:      drivers/video/fbdev/savage/
16457
16458 S390
16459 M:      Heiko Carstens <hca@linux.ibm.com>
16460 M:      Vasily Gorbik <gor@linux.ibm.com>
16461 M:      Christian Borntraeger <borntraeger@de.ibm.com>
16462 R:      Alexander Gordeev <agordeev@linux.ibm.com>
16463 L:      linux-s390@vger.kernel.org
16464 S:      Supported
16465 W:      http://www.ibm.com/developerworks/linux/linux390/
16466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
16467 F:      Documentation/driver-api/s390-drivers.rst
16468 F:      Documentation/s390/
16469 F:      arch/s390/
16470 F:      drivers/s390/
16471
16472 S390 COMMON I/O LAYER
16473 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
16474 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
16475 L:      linux-s390@vger.kernel.org
16476 S:      Supported
16477 W:      http://www.ibm.com/developerworks/linux/linux390/
16478 F:      drivers/s390/cio/
16479
16480 S390 DASD DRIVER
16481 M:      Stefan Haberland <sth@linux.ibm.com>
16482 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
16483 L:      linux-s390@vger.kernel.org
16484 S:      Supported
16485 W:      http://www.ibm.com/developerworks/linux/linux390/
16486 F:      block/partitions/ibm.c
16487 F:      drivers/s390/block/dasd*
16488 F:      include/linux/dasd_mod.h
16489
16490 S390 IOMMU (PCI)
16491 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16492 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16493 L:      linux-s390@vger.kernel.org
16494 S:      Supported
16495 W:      http://www.ibm.com/developerworks/linux/linux390/
16496 F:      drivers/iommu/s390-iommu.c
16497
16498 S390 IUCV NETWORK LAYER
16499 M:      Julian Wiedmann <jwi@linux.ibm.com>
16500 M:      Karsten Graul <kgraul@linux.ibm.com>
16501 L:      linux-s390@vger.kernel.org
16502 L:      netdev@vger.kernel.org
16503 S:      Supported
16504 W:      http://www.ibm.com/developerworks/linux/linux390/
16505 F:      drivers/s390/net/*iucv*
16506 F:      include/net/iucv/
16507 F:      net/iucv/
16508
16509 S390 NETWORK DRIVERS
16510 M:      Julian Wiedmann <jwi@linux.ibm.com>
16511 M:      Karsten Graul <kgraul@linux.ibm.com>
16512 L:      linux-s390@vger.kernel.org
16513 L:      netdev@vger.kernel.org
16514 S:      Supported
16515 W:      http://www.ibm.com/developerworks/linux/linux390/
16516 F:      drivers/s390/net/
16517
16518 S390 PCI SUBSYSTEM
16519 M:      Niklas Schnelle <schnelle@linux.ibm.com>
16520 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16521 L:      linux-s390@vger.kernel.org
16522 S:      Supported
16523 W:      http://www.ibm.com/developerworks/linux/linux390/
16524 F:      arch/s390/pci/
16525 F:      drivers/pci/hotplug/s390_pci_hpc.c
16526 F:      Documentation/s390/pci.rst
16527
16528 S390 VFIO AP DRIVER
16529 M:      Tony Krowiak <akrowiak@linux.ibm.com>
16530 M:      Halil Pasic <pasic@linux.ibm.com>
16531 M:      Jason Herne <jjherne@linux.ibm.com>
16532 L:      linux-s390@vger.kernel.org
16533 S:      Supported
16534 W:      http://www.ibm.com/developerworks/linux/linux390/
16535 F:      Documentation/s390/vfio-ap.rst
16536 F:      drivers/s390/crypto/vfio_ap_drv.c
16537 F:      drivers/s390/crypto/vfio_ap_ops.c
16538 F:      drivers/s390/crypto/vfio_ap_private.h
16539
16540 S390 VFIO-CCW DRIVER
16541 M:      Eric Farman <farman@linux.ibm.com>
16542 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16543 R:      Halil Pasic <pasic@linux.ibm.com>
16544 L:      linux-s390@vger.kernel.org
16545 L:      kvm@vger.kernel.org
16546 S:      Supported
16547 F:      Documentation/s390/vfio-ccw.rst
16548 F:      drivers/s390/cio/vfio_ccw*
16549 F:      include/uapi/linux/vfio_ccw.h
16550
16551 S390 VFIO-PCI DRIVER
16552 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16553 M:      Eric Farman <farman@linux.ibm.com>
16554 L:      linux-s390@vger.kernel.org
16555 L:      kvm@vger.kernel.org
16556 S:      Supported
16557 F:      drivers/vfio/pci/vfio_pci_zdev.c
16558 F:      include/uapi/linux/vfio_zdev.h
16559
16560 S390 ZCRYPT DRIVER
16561 M:      Harald Freudenberger <freude@linux.ibm.com>
16562 L:      linux-s390@vger.kernel.org
16563 S:      Supported
16564 W:      http://www.ibm.com/developerworks/linux/linux390/
16565 F:      drivers/s390/crypto/
16566
16567 S390 ZFCP DRIVER
16568 M:      Steffen Maier <maier@linux.ibm.com>
16569 M:      Benjamin Block <bblock@linux.ibm.com>
16570 L:      linux-s390@vger.kernel.org
16571 S:      Supported
16572 W:      http://www.ibm.com/developerworks/linux/linux390/
16573 F:      drivers/s390/scsi/zfcp_*
16574
16575 S3C ADC BATTERY DRIVER
16576 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16577 L:      linux-samsung-soc@vger.kernel.org
16578 S:      Odd Fixes
16579 F:      drivers/power/supply/s3c_adc_battery.c
16580 F:      include/linux/s3c_adc_battery.h
16581
16582 S3C24XX SD/MMC Driver
16583 M:      Ben Dooks <ben-linux@fluff.org>
16584 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16585 S:      Supported
16586 F:      drivers/mmc/host/s3cmci.*
16587
16588 SAA6588 RDS RECEIVER DRIVER
16589 M:      Hans Verkuil <hverkuil@xs4all.nl>
16590 L:      linux-media@vger.kernel.org
16591 S:      Odd Fixes
16592 W:      https://linuxtv.org
16593 T:      git git://linuxtv.org/media_tree.git
16594 F:      drivers/media/i2c/saa6588*
16595
16596 SAA7134 VIDEO4LINUX DRIVER
16597 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16598 L:      linux-media@vger.kernel.org
16599 S:      Odd fixes
16600 W:      https://linuxtv.org
16601 T:      git git://linuxtv.org/media_tree.git
16602 F:      Documentation/driver-api/media/drivers/saa7134*
16603 F:      drivers/media/pci/saa7134/
16604
16605 SAA7146 VIDEO4LINUX-2 DRIVER
16606 M:      Hans Verkuil <hverkuil@xs4all.nl>
16607 L:      linux-media@vger.kernel.org
16608 S:      Maintained
16609 T:      git git://linuxtv.org/media_tree.git
16610 F:      drivers/media/common/saa7146/
16611 F:      drivers/media/pci/saa7146/
16612 F:      include/media/drv-intf/saa7146*
16613
16614 SAFESETID SECURITY MODULE
16615 M:      Micah Morton <mortonm@chromium.org>
16616 S:      Supported
16617 F:      Documentation/admin-guide/LSM/SafeSetID.rst
16618 F:      security/safesetid/
16619
16620 SAMSUNG AUDIO (ASoC) DRIVERS
16621 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16622 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16623 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16624 S:      Supported
16625 F:      Documentation/devicetree/bindings/sound/samsung*
16626 F:      sound/soc/samsung/
16627
16628 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
16629 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16630 L:      linux-crypto@vger.kernel.org
16631 L:      linux-samsung-soc@vger.kernel.org
16632 S:      Maintained
16633 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
16634 F:      drivers/crypto/exynos-rng.c
16635
16636 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
16637 M:      Łukasz Stelmach <l.stelmach@samsung.com>
16638 L:      linux-samsung-soc@vger.kernel.org
16639 S:      Maintained
16640 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
16641 F:      drivers/char/hw_random/exynos-trng.c
16642
16643 SAMSUNG FRAMEBUFFER DRIVER
16644 M:      Jingoo Han <jingoohan1@gmail.com>
16645 L:      linux-fbdev@vger.kernel.org
16646 S:      Maintained
16647 F:      drivers/video/fbdev/s3c-fb.c
16648
16649 SAMSUNG INTERCONNECT DRIVERS
16650 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16651 M:      Artur Świgoń <a.swigon@samsung.com>
16652 L:      linux-pm@vger.kernel.org
16653 L:      linux-samsung-soc@vger.kernel.org
16654 S:      Supported
16655 F:      drivers/interconnect/samsung/
16656
16657 SAMSUNG LAPTOP DRIVER
16658 M:      Corentin Chary <corentin.chary@gmail.com>
16659 L:      platform-driver-x86@vger.kernel.org
16660 S:      Maintained
16661 F:      drivers/platform/x86/samsung-laptop.c
16662
16663 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
16664 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16665 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16666 L:      linux-kernel@vger.kernel.org
16667 L:      linux-samsung-soc@vger.kernel.org
16668 S:      Supported
16669 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
16670 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
16671 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
16672 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
16673 F:      drivers/clk/clk-s2mps11.c
16674 F:      drivers/mfd/sec*.c
16675 F:      drivers/regulator/s2m*.c
16676 F:      drivers/regulator/s5m*.c
16677 F:      drivers/rtc/rtc-s5m.c
16678 F:      include/linux/mfd/samsung/
16679
16680 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
16681 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
16682 L:      linux-media@vger.kernel.org
16683 L:      linux-samsung-soc@vger.kernel.org
16684 S:      Maintained
16685 F:      drivers/media/platform/s3c-camif/
16686 F:      include/media/drv-intf/s3c_camif.h
16687
16688 SAMSUNG S3FWRN5 NFC DRIVER
16689 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16690 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
16691 L:      linux-nfc@lists.01.org (subscribers-only)
16692 S:      Maintained
16693 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
16694 F:      drivers/nfc/s3fwrn5
16695
16696 SAMSUNG S5C73M3 CAMERA DRIVER
16697 M:      Andrzej Hajda <a.hajda@samsung.com>
16698 L:      linux-media@vger.kernel.org
16699 S:      Supported
16700 F:      drivers/media/i2c/s5c73m3/*
16701
16702 SAMSUNG S5K5BAF CAMERA DRIVER
16703 M:      Andrzej Hajda <a.hajda@samsung.com>
16704 L:      linux-media@vger.kernel.org
16705 S:      Supported
16706 F:      drivers/media/i2c/s5k5baf.c
16707
16708 SAMSUNG S5P Security SubSystem (SSS) DRIVER
16709 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16710 M:      Vladimir Zapolskiy <vz@mleia.com>
16711 L:      linux-crypto@vger.kernel.org
16712 L:      linux-samsung-soc@vger.kernel.org
16713 S:      Maintained
16714 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
16715 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
16716 F:      drivers/crypto/s5p-sss.c
16717
16718 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
16719 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16720 L:      linux-media@vger.kernel.org
16721 S:      Supported
16722 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
16723 F:      drivers/media/platform/exynos4-is/
16724
16725 SAMSUNG SOC CLOCK DRIVERS
16726 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16727 M:      Tomasz Figa <tomasz.figa@gmail.com>
16728 M:      Chanwoo Choi <cw00.choi@samsung.com>
16729 L:      linux-samsung-soc@vger.kernel.org
16730 S:      Supported
16731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
16732 F:      Documentation/devicetree/bindings/clock/exynos*.txt
16733 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
16734 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
16735 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
16736 F:      drivers/clk/samsung/
16737 F:      include/dt-bindings/clock/exynos*.h
16738 F:      include/dt-bindings/clock/s3c*.h
16739 F:      include/dt-bindings/clock/s5p*.h
16740 F:      include/dt-bindings/clock/samsung,*.h
16741 F:      include/linux/clk/samsung.h
16742 F:      include/linux/platform_data/clk-s3c2410.h
16743
16744 SAMSUNG SPI DRIVERS
16745 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16746 M:      Andi Shyti <andi@etezian.org>
16747 L:      linux-spi@vger.kernel.org
16748 L:      linux-samsung-soc@vger.kernel.org
16749 S:      Maintained
16750 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
16751 F:      drivers/spi/spi-s3c*
16752 F:      include/linux/platform_data/spi-s3c64xx.h
16753 F:      include/linux/spi/s3c24xx-fiq.h
16754
16755 SAMSUNG SXGBE DRIVERS
16756 M:      Byungho An <bh74.an@samsung.com>
16757 L:      netdev@vger.kernel.org
16758 S:      Supported
16759 F:      drivers/net/ethernet/samsung/sxgbe/
16760
16761 SAMSUNG THERMAL DRIVER
16762 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16763 L:      linux-pm@vger.kernel.org
16764 L:      linux-samsung-soc@vger.kernel.org
16765 S:      Supported
16766 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
16767 F:      drivers/thermal/samsung/
16768
16769 SAMSUNG USB2 PHY DRIVER
16770 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16771 L:      linux-kernel@vger.kernel.org
16772 S:      Supported
16773 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
16774 F:      Documentation/driver-api/phy/samsung-usb2.rst
16775 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
16776 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
16777 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
16778 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
16779 F:      drivers/phy/samsung/phy-samsung-usb2.c
16780 F:      drivers/phy/samsung/phy-samsung-usb2.h
16781
16782 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
16783 M:      Paul Barker <paul.barker@sancloud.com>
16784 R:      Marc Murphy <marc.murphy@sancloud.com>
16785 S:      Supported
16786 F:      arch/arm/boot/dts/am335x-sancloud*
16787
16788 SC1200 WDT DRIVER
16789 M:      Zwane Mwaikambo <zwanem@gmail.com>
16790 S:      Maintained
16791 F:      drivers/watchdog/sc1200wdt.c
16792
16793 SCHEDULER
16794 M:      Ingo Molnar <mingo@redhat.com>
16795 M:      Peter Zijlstra <peterz@infradead.org>
16796 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
16797 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
16798 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
16799 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
16800 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
16801 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
16802 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
16803 L:      linux-kernel@vger.kernel.org
16804 S:      Maintained
16805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
16806 F:      include/linux/preempt.h
16807 F:      include/linux/sched.h
16808 F:      include/linux/wait.h
16809 F:      include/uapi/linux/sched.h
16810 F:      kernel/sched/
16811
16812 SCR24X CHIP CARD INTERFACE DRIVER
16813 M:      Lubomir Rintel <lkundrak@v3.sk>
16814 S:      Supported
16815 F:      drivers/char/pcmcia/scr24x_cs.c
16816
16817 SCSI RDMA PROTOCOL (SRP) INITIATOR
16818 M:      Bart Van Assche <bvanassche@acm.org>
16819 L:      linux-rdma@vger.kernel.org
16820 S:      Supported
16821 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16822 F:      drivers/infiniband/ulp/srp/
16823 F:      include/scsi/srp.h
16824
16825 SCSI RDMA PROTOCOL (SRP) TARGET
16826 M:      Bart Van Assche <bvanassche@acm.org>
16827 L:      linux-rdma@vger.kernel.org
16828 L:      target-devel@vger.kernel.org
16829 S:      Supported
16830 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16831 F:      drivers/infiniband/ulp/srpt/
16832
16833 SCSI SG DRIVER
16834 M:      Doug Gilbert <dgilbert@interlog.com>
16835 L:      linux-scsi@vger.kernel.org
16836 S:      Maintained
16837 W:      http://sg.danny.cz/sg
16838 F:      Documentation/scsi/scsi-generic.rst
16839 F:      drivers/scsi/sg.c
16840 F:      include/scsi/sg.h
16841
16842 SCSI SUBSYSTEM
16843 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
16844 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16845 L:      linux-scsi@vger.kernel.org
16846 S:      Maintained
16847 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
16848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
16849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16850 F:      Documentation/devicetree/bindings/scsi/
16851 F:      drivers/scsi/
16852 F:      include/scsi/
16853
16854 SCSI TAPE DRIVER
16855 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
16856 L:      linux-scsi@vger.kernel.org
16857 S:      Maintained
16858 F:      Documentation/scsi/st.rst
16859 F:      drivers/scsi/st.*
16860 F:      drivers/scsi/st_*.h
16861
16862 SCSI TARGET CORE USER DRIVER
16863 M:      Bodo Stroesser <bostroesser@gmail.com>
16864 L:      linux-scsi@vger.kernel.org
16865 L:      target-devel@vger.kernel.org
16866 S:      Supported
16867 F:      Documentation/target/tcmu-design.rst
16868 F:      drivers/target/target_core_user.c
16869 F:      include/uapi/linux/target_core_user.h
16870
16871 SCSI TARGET SUBSYSTEM
16872 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16873 L:      linux-scsi@vger.kernel.org
16874 L:      target-devel@vger.kernel.org
16875 S:      Supported
16876 W:      http://www.linux-iscsi.org
16877 Q:      https://patchwork.kernel.org/project/target-devel/list/
16878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16879 F:      Documentation/target/
16880 F:      drivers/target/
16881 F:      include/target/
16882
16883 SCTP PROTOCOL
16884 M:      Vlad Yasevich <vyasevich@gmail.com>
16885 M:      Neil Horman <nhorman@tuxdriver.com>
16886 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
16887 L:      linux-sctp@vger.kernel.org
16888 S:      Maintained
16889 W:      http://lksctp.sourceforge.net
16890 F:      Documentation/networking/sctp.rst
16891 F:      include/linux/sctp.h
16892 F:      include/net/sctp/
16893 F:      include/uapi/linux/sctp.h
16894 F:      net/sctp/
16895
16896 SCx200 CPU SUPPORT
16897 M:      Jim Cromie <jim.cromie@gmail.com>
16898 S:      Odd Fixes
16899 F:      Documentation/i2c/busses/scx200_acb.rst
16900 F:      arch/x86/platform/scx200/
16901 F:      drivers/i2c/busses/scx200*
16902 F:      drivers/mtd/maps/scx200_docflash.c
16903 F:      drivers/watchdog/scx200_wdt.c
16904 F:      include/linux/scx200.h
16905
16906 SCx200 GPIO DRIVER
16907 M:      Jim Cromie <jim.cromie@gmail.com>
16908 S:      Maintained
16909 F:      drivers/char/scx200_gpio.c
16910 F:      include/linux/scx200_gpio.h
16911
16912 SCx200 HRT CLOCKSOURCE DRIVER
16913 M:      Jim Cromie <jim.cromie@gmail.com>
16914 S:      Maintained
16915 F:      drivers/clocksource/scx200_hrt.c
16916
16917 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
16918 M:      Sascha Sommer <saschasommer@freenet.de>
16919 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
16920 S:      Maintained
16921 F:      drivers/mmc/host/sdricoh_cs.c
16922
16923 SECO BOARDS CEC DRIVER
16924 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
16925 S:      Maintained
16926 F:      drivers/media/cec/platform/seco/seco-cec.c
16927 F:      drivers/media/cec/platform/seco/seco-cec.h
16928
16929 SECURE COMPUTING
16930 M:      Kees Cook <keescook@chromium.org>
16931 R:      Andy Lutomirski <luto@amacapital.net>
16932 R:      Will Drewry <wad@chromium.org>
16933 S:      Supported
16934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
16935 F:      Documentation/userspace-api/seccomp_filter.rst
16936 F:      include/linux/seccomp.h
16937 F:      include/uapi/linux/seccomp.h
16938 F:      kernel/seccomp.c
16939 F:      tools/testing/selftests/kselftest_harness.h
16940 F:      tools/testing/selftests/seccomp/*
16941 K:      \bsecure_computing
16942 K:      \bTIF_SECCOMP\b
16943
16944 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
16945 M:      Al Cooper <alcooperx@gmail.com>
16946 L:      linux-mmc@vger.kernel.org
16947 L:      bcm-kernel-feedback-list@broadcom.com
16948 S:      Maintained
16949 F:      drivers/mmc/host/sdhci-brcmstb*
16950
16951 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
16952 M:      Adrian Hunter <adrian.hunter@intel.com>
16953 L:      linux-mmc@vger.kernel.org
16954 S:      Maintained
16955 F:      drivers/mmc/host/sdhci*
16956
16957 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
16958 M:      Eugen Hristev <eugen.hristev@microchip.com>
16959 L:      linux-mmc@vger.kernel.org
16960 S:      Supported
16961 F:      drivers/mmc/host/sdhci-of-at91.c
16962
16963 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
16964 M:      Ben Dooks <ben-linux@fluff.org>
16965 M:      Jaehoon Chung <jh80.chung@samsung.com>
16966 L:      linux-mmc@vger.kernel.org
16967 S:      Maintained
16968 F:      drivers/mmc/host/sdhci-s3c*
16969
16970 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
16971 M:      Viresh Kumar <vireshk@kernel.org>
16972 L:      linux-mmc@vger.kernel.org
16973 S:      Maintained
16974 F:      drivers/mmc/host/sdhci-spear.c
16975
16976 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
16977 M:      Kishon Vijay Abraham I <kishon@ti.com>
16978 L:      linux-mmc@vger.kernel.org
16979 S:      Maintained
16980 F:      drivers/mmc/host/sdhci-omap.c
16981
16982 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
16983 M:      Jonathan Derrick <jonathan.derrick@intel.com>
16984 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
16985 L:      linux-block@vger.kernel.org
16986 S:      Supported
16987 F:      block/opal_proto.h
16988 F:      block/sed*
16989 F:      include/linux/sed*
16990 F:      include/uapi/linux/sed*
16991
16992 SECURITY CONTACT
16993 M:      Security Officers <security@kernel.org>
16994 S:      Supported
16995 F:      Documentation/admin-guide/security-bugs.rst
16996
16997 SECURITY SUBSYSTEM
16998 M:      James Morris <jmorris@namei.org>
16999 M:      "Serge E. Hallyn" <serge@hallyn.com>
17000 L:      linux-security-module@vger.kernel.org (suggested Cc:)
17001 S:      Supported
17002 W:      http://kernsec.org/
17003 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
17004 F:      security/
17005 X:      security/selinux/
17006
17007 SELINUX SECURITY MODULE
17008 M:      Paul Moore <paul@paul-moore.com>
17009 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
17010 M:      Eric Paris <eparis@parisplace.org>
17011 L:      selinux@vger.kernel.org
17012 S:      Supported
17013 W:      https://selinuxproject.org
17014 W:      https://github.com/SELinuxProject
17015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
17016 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
17017 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
17018 F:      Documentation/admin-guide/LSM/SELinux.rst
17019 F:      include/trace/events/avc.h
17020 F:      include/uapi/linux/selinux_netlink.h
17021 F:      scripts/selinux/
17022 F:      security/selinux/
17023
17024 SENSABLE PHANTOM
17025 M:      Jiri Slaby <jirislaby@kernel.org>
17026 S:      Maintained
17027 F:      drivers/misc/phantom.c
17028 F:      include/uapi/linux/phantom.h
17029
17030 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
17031 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
17032 S:      Maintained
17033 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
17034 F:      drivers/iio/chemical/scd30.h
17035 F:      drivers/iio/chemical/scd30_core.c
17036 F:      drivers/iio/chemical/scd30_i2c.c
17037 F:      drivers/iio/chemical/scd30_serial.c
17038
17039 SENSIRION SGP40 GAS SENSOR DRIVER
17040 M:      Andreas Klinger <ak@it-klinger.de>
17041 S:      Maintained
17042 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
17043 F:      drivers/iio/chemical/sgp40.c
17044
17045 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
17046 M:      Tomasz Duszynski <tduszyns@gmail.com>
17047 S:      Maintained
17048 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
17049 F:      drivers/iio/chemical/sps30.c
17050 F:      drivers/iio/chemical/sps30_i2c.c
17051 F:      drivers/iio/chemical/sps30_serial.c
17052
17053 SERIAL DEVICE BUS
17054 M:      Rob Herring <robh@kernel.org>
17055 L:      linux-serial@vger.kernel.org
17056 S:      Maintained
17057 F:      Documentation/devicetree/bindings/serial/serial.yaml
17058 F:      drivers/tty/serdev/
17059 F:      include/linux/serdev.h
17060
17061 SERIAL DRIVERS
17062 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17063 L:      linux-serial@vger.kernel.org
17064 S:      Maintained
17065 F:      Documentation/devicetree/bindings/serial/
17066 F:      drivers/tty/serial/
17067
17068 SERIAL IR RECEIVER
17069 M:      Sean Young <sean@mess.org>
17070 L:      linux-media@vger.kernel.org
17071 S:      Maintained
17072 F:      drivers/media/rc/serial_ir.c
17073
17074 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
17075 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17076 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17077 S:      Maintained
17078 F:      Documentation/devicetree/bindings/slimbus/
17079 F:      drivers/slimbus/
17080 F:      include/linux/slimbus.h
17081
17082 SFC NETWORK DRIVER
17083 M:      Edward Cree <ecree.xilinx@gmail.com>
17084 M:      Martin Habets <habetsm.xilinx@gmail.com>
17085 L:      netdev@vger.kernel.org
17086 S:      Supported
17087 F:      drivers/net/ethernet/sfc/
17088
17089 SFF/SFP/SFP+ MODULE SUPPORT
17090 M:      Russell King <linux@armlinux.org.uk>
17091 L:      netdev@vger.kernel.org
17092 S:      Maintained
17093 F:      drivers/net/phy/phylink.c
17094 F:      drivers/net/phy/sfp*
17095 F:      include/linux/mdio/mdio-i2c.h
17096 F:      include/linux/phylink.h
17097 F:      include/linux/sfp.h
17098 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)
17099
17100 SGI GRU DRIVER
17101 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
17102 S:      Maintained
17103 F:      drivers/misc/sgi-gru/
17104
17105 SGI XP/XPC/XPNET DRIVER
17106 M:      Robin Holt <robinmholt@gmail.com>
17107 M:      Steve Wahl <steve.wahl@hpe.com>
17108 R:      Mike Travis <mike.travis@hpe.com>
17109 S:      Maintained
17110 F:      drivers/misc/sgi-xp/
17111
17112 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
17113 M:      Karsten Graul <kgraul@linux.ibm.com>
17114 L:      linux-s390@vger.kernel.org
17115 S:      Supported
17116 W:      http://www.ibm.com/developerworks/linux/linux390/
17117 F:      net/smc/
17118
17119 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
17120 M:      Linus Walleij <linus.walleij@linaro.org>
17121 L:      linux-iio@vger.kernel.org
17122 S:      Maintained
17123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
17124 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
17125 F:      drivers/iio/light/gp2ap002.c
17126
17127 SHARP RJ54N1CB0C SENSOR DRIVER
17128 M:      Jacopo Mondi <jacopo@jmondi.org>
17129 L:      linux-media@vger.kernel.org
17130 S:      Odd fixes
17131 T:      git git://linuxtv.org/media_tree.git
17132 F:      drivers/media/i2c/rj54n1cb0c.c
17133 F:      include/media/i2c/rj54n1cb0c.h
17134
17135 SH_VOU V4L2 OUTPUT DRIVER
17136 L:      linux-media@vger.kernel.org
17137 S:      Orphan
17138 F:      drivers/media/platform/sh_vou.c
17139 F:      include/media/drv-intf/sh_vou.h
17140
17141 SI2157 MEDIA DRIVER
17142 M:      Antti Palosaari <crope@iki.fi>
17143 L:      linux-media@vger.kernel.org
17144 S:      Maintained
17145 W:      https://linuxtv.org
17146 W:      http://palosaari.fi/linux/
17147 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17148 T:      git git://linuxtv.org/anttip/media_tree.git
17149 F:      drivers/media/tuners/si2157*
17150
17151 SI2165 MEDIA DRIVER
17152 M:      Matthias Schwarzott <zzam@gentoo.org>
17153 L:      linux-media@vger.kernel.org
17154 S:      Maintained
17155 W:      https://linuxtv.org
17156 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17157 F:      drivers/media/dvb-frontends/si2165*
17158
17159 SI2168 MEDIA DRIVER
17160 M:      Antti Palosaari <crope@iki.fi>
17161 L:      linux-media@vger.kernel.org
17162 S:      Maintained
17163 W:      https://linuxtv.org
17164 W:      http://palosaari.fi/linux/
17165 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17166 T:      git git://linuxtv.org/anttip/media_tree.git
17167 F:      drivers/media/dvb-frontends/si2168*
17168
17169 SI470X FM RADIO RECEIVER I2C DRIVER
17170 M:      Hans Verkuil <hverkuil@xs4all.nl>
17171 L:      linux-media@vger.kernel.org
17172 S:      Odd Fixes
17173 W:      https://linuxtv.org
17174 T:      git git://linuxtv.org/media_tree.git
17175 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
17176
17177 SI470X FM RADIO RECEIVER USB DRIVER
17178 M:      Hans Verkuil <hverkuil@xs4all.nl>
17179 L:      linux-media@vger.kernel.org
17180 S:      Maintained
17181 W:      https://linuxtv.org
17182 T:      git git://linuxtv.org/media_tree.git
17183 F:      drivers/media/radio/si470x/radio-si470x-common.c
17184 F:      drivers/media/radio/si470x/radio-si470x-usb.c
17185 F:      drivers/media/radio/si470x/radio-si470x.h
17186
17187 SI4713 FM RADIO TRANSMITTER I2C DRIVER
17188 M:      Eduardo Valentin <edubezval@gmail.com>
17189 L:      linux-media@vger.kernel.org
17190 S:      Odd Fixes
17191 W:      https://linuxtv.org
17192 T:      git git://linuxtv.org/media_tree.git
17193 F:      drivers/media/radio/si4713/si4713.?
17194
17195 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
17196 M:      Eduardo Valentin <edubezval@gmail.com>
17197 L:      linux-media@vger.kernel.org
17198 S:      Odd Fixes
17199 W:      https://linuxtv.org
17200 T:      git git://linuxtv.org/media_tree.git
17201 F:      drivers/media/radio/si4713/radio-platform-si4713.c
17202
17203 SI4713 FM RADIO TRANSMITTER USB DRIVER
17204 M:      Hans Verkuil <hverkuil@xs4all.nl>
17205 L:      linux-media@vger.kernel.org
17206 S:      Maintained
17207 W:      https://linuxtv.org
17208 T:      git git://linuxtv.org/media_tree.git
17209 F:      drivers/media/radio/si4713/radio-usb-si4713.c
17210
17211 SIANO DVB DRIVER
17212 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17213 L:      linux-media@vger.kernel.org
17214 S:      Odd fixes
17215 W:      https://linuxtv.org
17216 T:      git git://linuxtv.org/media_tree.git
17217 F:      drivers/media/common/siano/
17218 F:      drivers/media/mmc/siano/
17219 F:      drivers/media/usb/siano/
17220 F:      drivers/media/usb/siano/
17221
17222 SIFIVE DRIVERS
17223 M:      Palmer Dabbelt <palmer@dabbelt.com>
17224 M:      Paul Walmsley <paul.walmsley@sifive.com>
17225 L:      linux-riscv@lists.infradead.org
17226 S:      Supported
17227 T:      git git://github.com/sifive/riscv-linux.git
17228 N:      sifive
17229 K:      [^@]sifive
17230
17231 SIFIVE FU540 SYSTEM-ON-CHIP
17232 M:      Paul Walmsley <paul.walmsley@sifive.com>
17233 M:      Palmer Dabbelt <palmer@dabbelt.com>
17234 L:      linux-riscv@lists.infradead.org
17235 S:      Supported
17236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
17237 N:      fu540
17238 K:      fu540
17239
17240 SIFIVE PDMA DRIVER
17241 M:      Green Wan <green.wan@sifive.com>
17242 S:      Maintained
17243 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
17244 F:      drivers/dma/sf-pdma/
17245
17246 SILEAD TOUCHSCREEN DRIVER
17247 M:      Hans de Goede <hdegoede@redhat.com>
17248 L:      linux-input@vger.kernel.org
17249 L:      platform-driver-x86@vger.kernel.org
17250 S:      Maintained
17251 F:      drivers/input/touchscreen/silead.c
17252 F:      drivers/platform/x86/touchscreen_dmi.c
17253
17254 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
17255 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
17256 S:      Supported
17257 F:      drivers/staging/wfx/
17258
17259 SILICON MOTION SM712 FRAME BUFFER DRIVER
17260 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17261 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17262 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17263 L:      linux-fbdev@vger.kernel.org
17264 S:      Maintained
17265 F:      Documentation/fb/sm712fb.rst
17266 F:      drivers/video/fbdev/sm712*
17267
17268 SILVACO I3C DUAL-ROLE MASTER
17269 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17270 M:      Conor Culhane <conor.culhane@silvaco.com>
17271 L:      linux-i3c@lists.infradead.org
17272 S:      Maintained
17273 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
17274 F:      drivers/i3c/master/svc-i3c-master.c
17275
17276 SIMPLEFB FB DRIVER
17277 M:      Hans de Goede <hdegoede@redhat.com>
17278 L:      linux-fbdev@vger.kernel.org
17279 S:      Maintained
17280 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
17281 F:      drivers/video/fbdev/simplefb.c
17282 F:      include/linux/platform_data/simplefb.h
17283
17284 SIMTEC EB110ATX (Chalice CATS)
17285 M:      Simtec Linux Team <linux@simtec.co.uk>
17286 S:      Supported
17287 W:      http://www.simtec.co.uk/products/EB110ATX/
17288
17289 SIMTEC EB2410ITX (BAST)
17290 M:      Simtec Linux Team <linux@simtec.co.uk>
17291 S:      Supported
17292 W:      http://www.simtec.co.uk/products/EB2410ITX/
17293 F:      arch/arm/mach-s3c/bast-ide.c
17294 F:      arch/arm/mach-s3c/bast-irq.c
17295 F:      arch/arm/mach-s3c/mach-bast.c
17296
17297 SIOX
17298 M:      Thorsten Scherer <t.scherer@eckelmann.de>
17299 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17300 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
17301 S:      Supported
17302 F:      drivers/gpio/gpio-siox.c
17303 F:      drivers/siox/*
17304 F:      include/trace/events/siox.h
17305
17306 SIPHASH PRF ROUTINES
17307 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17308 S:      Maintained
17309 F:      include/linux/siphash.h
17310 F:      lib/siphash.c
17311 F:      lib/test_siphash.c
17312
17313 SIS 190 ETHERNET DRIVER
17314 M:      Francois Romieu <romieu@fr.zoreil.com>
17315 L:      netdev@vger.kernel.org
17316 S:      Maintained
17317 F:      drivers/net/ethernet/sis/sis190.c
17318
17319 SIS 900/7016 FAST ETHERNET DRIVER
17320 M:      Daniele Venzano <venza@brownhat.org>
17321 L:      netdev@vger.kernel.org
17322 S:      Maintained
17323 W:      http://www.brownhat.org/sis900.html
17324 F:      drivers/net/ethernet/sis/sis900.*
17325
17326 SIS FRAMEBUFFER DRIVER
17327 M:      Thomas Winischhofer <thomas@winischhofer.net>
17328 S:      Maintained
17329 W:      http://www.winischhofer.net/linuxsisvga.shtml
17330 F:      Documentation/fb/sisfb.rst
17331 F:      drivers/video/fbdev/sis/
17332 F:      include/video/sisfb.h
17333
17334 SIS I2C TOUCHSCREEN DRIVER
17335 M:      Mika Penttilä <mika.penttila@nextfour.com>
17336 L:      linux-input@vger.kernel.org
17337 S:      Maintained
17338 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
17339 F:      drivers/input/touchscreen/sis_i2c.c
17340
17341 SIS USB2VGA DRIVER
17342 M:      Thomas Winischhofer <thomas@winischhofer.net>
17343 S:      Maintained
17344 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
17345 F:      drivers/usb/misc/sisusbvga/
17346
17347 SLAB ALLOCATOR
17348 M:      Christoph Lameter <cl@linux.com>
17349 M:      Pekka Enberg <penberg@kernel.org>
17350 M:      David Rientjes <rientjes@google.com>
17351 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
17352 M:      Andrew Morton <akpm@linux-foundation.org>
17353 M:      Vlastimil Babka <vbabka@suse.cz>
17354 L:      linux-mm@kvack.org
17355 S:      Maintained
17356 F:      include/linux/sl?b*.h
17357 F:      mm/sl?b*
17358
17359 SLEEPABLE READ-COPY UPDATE (SRCU)
17360 M:      Lai Jiangshan <jiangshanlai@gmail.com>
17361 M:      "Paul E. McKenney" <paulmck@kernel.org>
17362 M:      Josh Triplett <josh@joshtriplett.org>
17363 R:      Steven Rostedt <rostedt@goodmis.org>
17364 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17365 L:      rcu@vger.kernel.org
17366 S:      Supported
17367 W:      http://www.rdrop.com/users/paulmck/RCU/
17368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17369 F:      include/linux/srcu*.h
17370 F:      kernel/rcu/srcu*.c
17371
17372 SMACK SECURITY MODULE
17373 M:      Casey Schaufler <casey@schaufler-ca.com>
17374 L:      linux-security-module@vger.kernel.org
17375 S:      Maintained
17376 W:      http://schaufler-ca.com
17377 T:      git git://github.com/cschaufler/smack-next
17378 F:      Documentation/admin-guide/LSM/Smack.rst
17379 F:      security/smack/
17380
17381 SMC91x ETHERNET DRIVER
17382 M:      Nicolas Pitre <nico@fluxnic.net>
17383 S:      Odd Fixes
17384 F:      drivers/net/ethernet/smsc/smc91x.*
17385
17386 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
17387 M:      Mark Rutland <mark.rutland@arm.com>
17388 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
17389 M:      Sudeep Holla <sudeep.holla@arm.com>
17390 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17391 S:      Maintained
17392 F:      drivers/firmware/smccc/
17393 F:      include/linux/arm-smccc.h
17394
17395 SMM665 HARDWARE MONITOR DRIVER
17396 M:      Guenter Roeck <linux@roeck-us.net>
17397 L:      linux-hwmon@vger.kernel.org
17398 S:      Maintained
17399 F:      Documentation/hwmon/smm665.rst
17400 F:      drivers/hwmon/smm665.c
17401
17402 SMSC EMC2103 HARDWARE MONITOR DRIVER
17403 M:      Steve Glendinning <steve.glendinning@shawell.net>
17404 L:      linux-hwmon@vger.kernel.org
17405 S:      Maintained
17406 F:      Documentation/hwmon/emc2103.rst
17407 F:      drivers/hwmon/emc2103.c
17408
17409 SMSC SCH5627 HARDWARE MONITOR DRIVER
17410 M:      Hans de Goede <hdegoede@redhat.com>
17411 L:      linux-hwmon@vger.kernel.org
17412 S:      Supported
17413 F:      Documentation/hwmon/sch5627.rst
17414 F:      drivers/hwmon/sch5627.c
17415
17416 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
17417 M:      Steve Glendinning <steve.glendinning@shawell.net>
17418 L:      linux-fbdev@vger.kernel.org
17419 S:      Maintained
17420 F:      drivers/video/fbdev/smscufx.c
17421
17422 SMSC47B397 HARDWARE MONITOR DRIVER
17423 M:      Jean Delvare <jdelvare@suse.com>
17424 L:      linux-hwmon@vger.kernel.org
17425 S:      Maintained
17426 F:      Documentation/hwmon/smsc47b397.rst
17427 F:      drivers/hwmon/smsc47b397.c
17428
17429 SMSC911x ETHERNET DRIVER
17430 M:      Steve Glendinning <steve.glendinning@shawell.net>
17431 L:      netdev@vger.kernel.org
17432 S:      Maintained
17433 F:      drivers/net/ethernet/smsc/smsc911x.*
17434 F:      include/linux/smsc911x.h
17435
17436 SMSC9420 PCI ETHERNET DRIVER
17437 M:      Steve Glendinning <steve.glendinning@shawell.net>
17438 L:      netdev@vger.kernel.org
17439 S:      Maintained
17440 F:      drivers/net/ethernet/smsc/smsc9420.*
17441
17442 SOCIONEXT (SNI) AVE NETWORK DRIVER
17443 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
17444 L:      netdev@vger.kernel.org
17445 S:      Maintained
17446 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
17447 F:      drivers/net/ethernet/socionext/sni_ave.c
17448
17449 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
17450 M:      Jassi Brar <jaswinder.singh@linaro.org>
17451 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
17452 L:      netdev@vger.kernel.org
17453 S:      Maintained
17454 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
17455 F:      drivers/net/ethernet/socionext/netsec.c
17456
17457 SOCIONEXT (SNI) Synquacer SPI DRIVER
17458 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
17459 M:      Jassi Brar <jaswinder.singh@linaro.org>
17460 L:      linux-spi@vger.kernel.org
17461 S:      Maintained
17462 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
17463 F:      drivers/spi/spi-synquacer.c
17464
17465 SOCIONEXT SYNQUACER I2C DRIVER
17466 M:      Ard Biesheuvel <ardb@kernel.org>
17467 L:      linux-i2c@vger.kernel.org
17468 S:      Maintained
17469 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
17470 F:      drivers/i2c/busses/i2c-synquacer.c
17471
17472 SOCIONEXT UNIPHIER SOUND DRIVER
17473 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17474 S:      Orphan
17475 F:      sound/soc/uniphier/
17476
17477 SOEKRIS NET48XX LED SUPPORT
17478 M:      Chris Boot <bootc@bootc.net>
17479 S:      Maintained
17480 F:      drivers/leds/leds-net48xx.c
17481
17482 SOFT-IWARP DRIVER (siw)
17483 M:      Bernard Metzler <bmt@zurich.ibm.com>
17484 L:      linux-rdma@vger.kernel.org
17485 S:      Supported
17486 F:      drivers/infiniband/sw/siw/
17487 F:      include/uapi/rdma/siw-abi.h
17488
17489 SOFT-ROCE DRIVER (rxe)
17490 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
17491 L:      linux-rdma@vger.kernel.org
17492 S:      Supported
17493 F:      drivers/infiniband/sw/rxe/
17494 F:      include/uapi/rdma/rdma_user_rxe.h
17495
17496 SOFTLOGIC 6x10 MPEG CODEC
17497 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17498 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17499 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17500 M:      Ismael Luceno <ismael@iodev.co.uk>
17501 L:      linux-media@vger.kernel.org
17502 S:      Supported
17503 F:      drivers/media/pci/solo6x10/
17504
17505 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
17506 M:      James Morse <james.morse@arm.com>
17507 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17508 S:      Maintained
17509 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
17510 F:      drivers/firmware/arm_sdei.c
17511 F:      include/linux/arm_sdei.h
17512 F:      include/uapi/linux/arm_sdei.h
17513
17514 SOFTWARE NODES
17515 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17516 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17517 L:      linux-acpi@vger.kernel.org
17518 S:      Maintained
17519 F:      drivers/base/swnode.c
17520
17521 SOFTWARE RAID (Multiple Disks) SUPPORT
17522 M:      Song Liu <song@kernel.org>
17523 L:      linux-raid@vger.kernel.org
17524 S:      Supported
17525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
17526 F:      drivers/md/Kconfig
17527 F:      drivers/md/Makefile
17528 F:      drivers/md/md*
17529 F:      drivers/md/raid*
17530 F:      include/linux/raid/
17531 F:      include/uapi/linux/raid/
17532
17533 SOLIDRUN CLEARFOG SUPPORT
17534 M:      Russell King <linux@armlinux.org.uk>
17535 S:      Maintained
17536 F:      arch/arm/boot/dts/armada-388-clearfog*
17537 F:      arch/arm/boot/dts/armada-38x-solidrun-*
17538
17539 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
17540 M:      Russell King <linux@armlinux.org.uk>
17541 S:      Maintained
17542 F:      arch/arm/boot/dts/imx6*-cubox-i*
17543 F:      arch/arm/boot/dts/imx6*-hummingboard*
17544 F:      arch/arm/boot/dts/imx6*-sr-*
17545
17546 SONIC NETWORK DRIVER
17547 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
17548 L:      netdev@vger.kernel.org
17549 S:      Maintained
17550 F:      drivers/net/ethernet/natsemi/sonic.*
17551
17552 SONICS SILICON BACKPLANE DRIVER (SSB)
17553 M:      Michael Buesch <m@bues.ch>
17554 L:      linux-wireless@vger.kernel.org
17555 S:      Maintained
17556 F:      drivers/ssb/
17557 F:      include/linux/ssb/
17558
17559 SONY IMX208 SENSOR DRIVER
17560 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17561 L:      linux-media@vger.kernel.org
17562 S:      Maintained
17563 T:      git git://linuxtv.org/media_tree.git
17564 F:      drivers/media/i2c/imx208.c
17565
17566 SONY IMX214 SENSOR DRIVER
17567 M:      Ricardo Ribalda <ribalda@kernel.org>
17568 L:      linux-media@vger.kernel.org
17569 S:      Maintained
17570 T:      git git://linuxtv.org/media_tree.git
17571 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
17572 F:      drivers/media/i2c/imx214.c
17573
17574 SONY IMX219 SENSOR DRIVER
17575 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
17576 L:      linux-media@vger.kernel.org
17577 S:      Maintained
17578 T:      git git://linuxtv.org/media_tree.git
17579 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
17580 F:      drivers/media/i2c/imx219.c
17581
17582 SONY IMX258 SENSOR DRIVER
17583 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17584 L:      linux-media@vger.kernel.org
17585 S:      Maintained
17586 T:      git git://linuxtv.org/media_tree.git
17587 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
17588 F:      drivers/media/i2c/imx258.c
17589
17590 SONY IMX274 SENSOR DRIVER
17591 M:      Leon Luo <leonl@leopardimaging.com>
17592 L:      linux-media@vger.kernel.org
17593 S:      Maintained
17594 T:      git git://linuxtv.org/media_tree.git
17595 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
17596 F:      drivers/media/i2c/imx274.c
17597
17598 SONY IMX290 SENSOR DRIVER
17599 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17600 L:      linux-media@vger.kernel.org
17601 S:      Maintained
17602 T:      git git://linuxtv.org/media_tree.git
17603 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
17604 F:      drivers/media/i2c/imx290.c
17605
17606 SONY IMX319 SENSOR DRIVER
17607 M:      Bingbu Cao <bingbu.cao@intel.com>
17608 L:      linux-media@vger.kernel.org
17609 S:      Maintained
17610 T:      git git://linuxtv.org/media_tree.git
17611 F:      drivers/media/i2c/imx319.c
17612
17613 SONY IMX334 SENSOR DRIVER
17614 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17615 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17616 L:      linux-media@vger.kernel.org
17617 S:      Maintained
17618 T:      git git://linuxtv.org/media_tree.git
17619 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
17620 F:      drivers/media/i2c/imx334.c
17621
17622 SONY IMX335 SENSOR DRIVER
17623 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17624 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17625 L:      linux-media@vger.kernel.org
17626 S:      Maintained
17627 T:      git git://linuxtv.org/media_tree.git
17628 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
17629 F:      drivers/media/i2c/imx335.c
17630
17631 SONY IMX355 SENSOR DRIVER
17632 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
17633 L:      linux-media@vger.kernel.org
17634 S:      Maintained
17635 T:      git git://linuxtv.org/media_tree.git
17636 F:      drivers/media/i2c/imx355.c
17637
17638 SONY IMX412 SENSOR DRIVER
17639 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17640 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17641 L:      linux-media@vger.kernel.org
17642 S:      Maintained
17643 T:      git git://linuxtv.org/media_tree.git
17644 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
17645 F:      drivers/media/i2c/imx412.c
17646
17647 SONY MEMORYSTICK SUBSYSTEM
17648 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17649 M:      Alex Dubov <oakad@yahoo.com>
17650 M:      Ulf Hansson <ulf.hansson@linaro.org>
17651 L:      linux-mmc@vger.kernel.org
17652 S:      Maintained
17653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
17654 F:      drivers/memstick/
17655 F:      include/linux/memstick.h
17656
17657 SONY VAIO CONTROL DEVICE DRIVER
17658 M:      Mattia Dongili <malattia@linux.it>
17659 L:      platform-driver-x86@vger.kernel.org
17660 S:      Maintained
17661 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
17662 F:      Documentation/admin-guide/laptops/sony-laptop.rst
17663 F:      drivers/char/sonypi.c
17664 F:      drivers/platform/x86/sony-laptop.c
17665 F:      include/linux/sony-laptop.h
17666
17667 SOUND
17668 M:      Jaroslav Kysela <perex@perex.cz>
17669 M:      Takashi Iwai <tiwai@suse.com>
17670 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17671 S:      Maintained
17672 W:      http://www.alsa-project.org/
17673 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
17674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17675 F:      Documentation/sound/
17676 F:      include/sound/
17677 F:      include/uapi/sound/
17678 F:      sound/
17679
17680 SOUND - COMPRESSED AUDIO
17681 M:      Vinod Koul <vkoul@kernel.org>
17682 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17683 S:      Supported
17684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17685 F:      Documentation/sound/designs/compress-offload.rst
17686 F:      include/sound/compress_driver.h
17687 F:      include/uapi/sound/compress_*
17688 F:      sound/core/compress_offload.c
17689 F:      sound/soc/soc-compress.c
17690
17691 SOUND - DMAENGINE HELPERS
17692 M:      Lars-Peter Clausen <lars@metafoo.de>
17693 S:      Supported
17694 F:      include/sound/dmaengine_pcm.h
17695 F:      sound/core/pcm_dmaengine.c
17696 F:      sound/soc/soc-generic-dmaengine-pcm.c
17697
17698 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
17699 M:      Liam Girdwood <lgirdwood@gmail.com>
17700 M:      Mark Brown <broonie@kernel.org>
17701 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17702 S:      Supported
17703 W:      http://alsa-project.org/main/index.php/ASoC
17704 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
17705 F:      Documentation/devicetree/bindings/sound/
17706 F:      Documentation/sound/soc/
17707 F:      include/dt-bindings/sound/
17708 F:      include/sound/soc*
17709 F:      sound/soc/
17710
17711 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
17712 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17713 M:      Liam Girdwood <lgirdwood@gmail.com>
17714 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
17715 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
17716 M:      Daniel Baluta <daniel.baluta@nxp.com>
17717 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
17718 S:      Supported
17719 W:      https://github.com/thesofproject/linux/
17720 F:      sound/soc/sof/
17721
17722 SOUNDWIRE SUBSYSTEM
17723 M:      Vinod Koul <vkoul@kernel.org>
17724 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
17725 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17726 R:      Sanyog Kale <sanyog.r.kale@intel.com>
17727 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17728 S:      Supported
17729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
17730 F:      Documentation/driver-api/soundwire/
17731 F:      drivers/soundwire/
17732 F:      include/linux/soundwire/
17733
17734 SP2 MEDIA DRIVER
17735 M:      Olli Salonen <olli.salonen@iki.fi>
17736 L:      linux-media@vger.kernel.org
17737 S:      Maintained
17738 W:      https://linuxtv.org
17739 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17740 F:      drivers/media/dvb-frontends/sp2*
17741
17742 SPARC + UltraSPARC (sparc/sparc64)
17743 M:      "David S. Miller" <davem@davemloft.net>
17744 L:      sparclinux@vger.kernel.org
17745 S:      Maintained
17746 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
17747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17749 F:      arch/sparc/
17750 F:      drivers/sbus/
17751
17752 SPARC SERIAL DRIVERS
17753 M:      "David S. Miller" <davem@davemloft.net>
17754 L:      sparclinux@vger.kernel.org
17755 S:      Maintained
17756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17758 F:      drivers/tty/serial/suncore.c
17759 F:      drivers/tty/serial/sunhv.c
17760 F:      drivers/tty/serial/sunsab.c
17761 F:      drivers/tty/serial/sunsab.h
17762 F:      drivers/tty/serial/sunsu.c
17763 F:      drivers/tty/serial/sunzilog.c
17764 F:      drivers/tty/serial/sunzilog.h
17765 F:      drivers/tty/vcc.c
17766 F:      include/linux/sunserialcore.h
17767
17768 SPARSE CHECKER
17769 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
17770 L:      linux-sparse@vger.kernel.org
17771 S:      Maintained
17772 W:      https://sparse.docs.kernel.org/
17773 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
17774 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
17775 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
17776 F:      include/linux/compiler.h
17777
17778 SPEAKUP CONSOLE SPEECH DRIVER
17779 M:      William Hubbs <w.d.hubbs@gmail.com>
17780 M:      Chris Brannon <chris@the-brannons.com>
17781 M:      Kirk Reiser <kirk@reisers.ca>
17782 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
17783 L:      speakup@linux-speakup.org
17784 S:      Odd Fixes
17785 W:      http://www.linux-speakup.org/
17786 W:      https://github.com/linux-speakup/speakup
17787 B:      https://github.com/linux-speakup/speakup/issues
17788 F:      drivers/accessibility/speakup/
17789
17790 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
17791 M:      Viresh Kumar <vireshk@kernel.org>
17792 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
17793 M:      soc@kernel.org
17794 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17795 S:      Maintained
17796 W:      http://www.st.com/spear
17797 F:      arch/arm/boot/dts/spear*
17798 F:      arch/arm/mach-spear/
17799 F:      drivers/clk/spear/
17800 F:      drivers/pinctrl/spear/
17801
17802 SPI NOR SUBSYSTEM
17803 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
17804 R:      Michael Walle <michael@walle.cc>
17805 R:      Pratyush Yadav <p.yadav@ti.com>
17806 L:      linux-mtd@lists.infradead.org
17807 S:      Maintained
17808 W:      http://www.linux-mtd.infradead.org/
17809 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
17810 C:      irc://irc.oftc.net/mtd
17811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
17812 F:      drivers/mtd/spi-nor/
17813 F:      include/linux/mtd/spi-nor.h
17814
17815 SPI SUBSYSTEM
17816 M:      Mark Brown <broonie@kernel.org>
17817 L:      linux-spi@vger.kernel.org
17818 S:      Maintained
17819 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
17820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
17821 F:      Documentation/devicetree/bindings/spi/
17822 F:      Documentation/spi/
17823 F:      drivers/spi/
17824 F:      include/linux/spi/
17825 F:      include/uapi/linux/spi/
17826 F:      tools/spi/
17827
17828 SPIDERNET NETWORK DRIVER for CELL
17829 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
17830 M:      Geoff Levand <geoff@infradead.org>
17831 L:      netdev@vger.kernel.org
17832 L:      linuxppc-dev@lists.ozlabs.org
17833 S:      Maintained
17834 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
17835 F:      drivers/net/ethernet/toshiba/spider_net*
17836
17837 SPMI SUBSYSTEM
17838 M:      Stephen Boyd <sboyd@kernel.org>
17839 L:      linux-kernel@vger.kernel.org
17840 S:      Maintained
17841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
17842 F:      Documentation/devicetree/bindings/spmi/
17843 F:      drivers/spmi/
17844 F:      include/dt-bindings/spmi/spmi.h
17845 F:      include/linux/spmi.h
17846 F:      include/trace/events/spmi.h
17847
17848 SPU FILE SYSTEM
17849 M:      Jeremy Kerr <jk@ozlabs.org>
17850 L:      linuxppc-dev@lists.ozlabs.org
17851 S:      Supported
17852 W:      http://www.ibm.com/developerworks/power/cell/
17853 F:      Documentation/filesystems/spufs/spufs.rst
17854 F:      arch/powerpc/platforms/cell/spufs/
17855
17856 SQUASHFS FILE SYSTEM
17857 M:      Phillip Lougher <phillip@squashfs.org.uk>
17858 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
17859 S:      Maintained
17860 W:      http://squashfs.org.uk
17861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
17862 F:      Documentation/filesystems/squashfs.rst
17863 F:      fs/squashfs/
17864
17865 SRM (Alpha) environment access
17866 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
17867 S:      Maintained
17868 F:      arch/alpha/kernel/srm_env.c
17869
17870 ST LSM6DSx IMU IIO DRIVER
17871 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
17872 L:      linux-iio@vger.kernel.org
17873 S:      Maintained
17874 W:      http://www.st.com/
17875 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
17876 F:      drivers/iio/imu/st_lsm6dsx/
17877
17878 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
17879 M:      Mickael Guene <mickael.guene@st.com>
17880 L:      linux-media@vger.kernel.org
17881 S:      Maintained
17882 T:      git git://linuxtv.org/media_tree.git
17883 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
17884 F:      drivers/media/i2c/st-mipid02.c
17885
17886 ST STM32 I2C/SMBUS DRIVER
17887 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
17888 M:      Alain Volmat <alain.volmat@foss.st.com>
17889 L:      linux-i2c@vger.kernel.org
17890 S:      Maintained
17891 F:      drivers/i2c/busses/i2c-stm32*
17892
17893 ST STM32 SPI DRIVER
17894 M:      Alain Volmat <alain.volmat@foss.st.com>
17895 L:      linux-spi@vger.kernel.org
17896 S:      Maintained
17897 F:      drivers/spi/spi-stm32.c
17898
17899 ST STPDDC60 DRIVER
17900 M:      Daniel Nilsson <daniel.nilsson@flex.com>
17901 L:      linux-hwmon@vger.kernel.org
17902 S:      Maintained
17903 F:      Documentation/hwmon/stpddc60.rst
17904 F:      drivers/hwmon/pmbus/stpddc60.c
17905
17906 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
17907 M:      Song Qiang <songqiang1304521@gmail.com>
17908 L:      linux-iio@vger.kernel.org
17909 S:      Maintained
17910 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
17911 F:      drivers/iio/proximity/vl53l0x-i2c.c
17912
17913 STABLE BRANCH
17914 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17915 M:      Sasha Levin <sashal@kernel.org>
17916 L:      stable@vger.kernel.org
17917 S:      Supported
17918 F:      Documentation/process/stable-kernel-rules.rst
17919
17920 STAGING - ATOMISP DRIVER
17921 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17922 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
17923 L:      linux-media@vger.kernel.org
17924 S:      Maintained
17925 F:      drivers/staging/media/atomisp/
17926
17927 STAGING - FIELDBUS SUBSYSTEM
17928 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17929 S:      Maintained
17930 F:      drivers/staging/fieldbus/*
17931 F:      drivers/staging/fieldbus/Documentation/
17932
17933 STAGING - HMS ANYBUS-S BUS
17934 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17935 S:      Maintained
17936 F:      drivers/staging/fieldbus/anybuss/
17937
17938 STAGING - INDUSTRIAL IO
17939 M:      Jonathan Cameron <jic23@kernel.org>
17940 L:      linux-iio@vger.kernel.org
17941 S:      Odd Fixes
17942 F:      Documentation/devicetree/bindings/staging/iio/
17943 F:      drivers/staging/iio/
17944
17945 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
17946 M:      Marc Dietrich <marvin24@gmx.de>
17947 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
17948 L:      linux-tegra@vger.kernel.org
17949 S:      Maintained
17950 F:      drivers/staging/nvec/
17951
17952 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
17953 M:      Jens Frederich <jfrederich@gmail.com>
17954 M:      Jon Nettleton <jon.nettleton@gmail.com>
17955 S:      Maintained
17956 W:      http://wiki.laptop.org/go/DCON
17957 F:      drivers/staging/olpc_dcon/
17958
17959 STAGING - REALTEK RTL8188EU DRIVERS
17960 M:      Larry Finger <Larry.Finger@lwfinger.net>
17961 M:      Phillip Potter <phil@philpotter.co.uk>
17962 S:      Supported
17963 F:      drivers/staging/r8188eu/
17964
17965 STAGING - REALTEK RTL8712U DRIVERS
17966 M:      Larry Finger <Larry.Finger@lwfinger.net>
17967 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
17968 S:      Odd Fixes
17969 F:      drivers/staging/rtl8712/
17970
17971 STAGING - SEPS525 LCD CONTROLLER DRIVERS
17972 M:      Michael Hennerich <michael.hennerich@analog.com>
17973 L:      linux-fbdev@vger.kernel.org
17974 S:      Supported
17975 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
17976 F:      drivers/staging/fbtft/fb_seps525.c
17977
17978 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
17979 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17980 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17981 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17982 L:      linux-fbdev@vger.kernel.org
17983 S:      Maintained
17984 F:      drivers/staging/sm750fb/
17985
17986 STAGING - VIA VT665X DRIVERS
17987 M:      Forest Bond <forest@alittletooquiet.net>
17988 S:      Odd Fixes
17989 F:      drivers/staging/vt665?/
17990
17991 STAGING SUBSYSTEM
17992 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17993 L:      linux-staging@lists.linux.dev
17994 S:      Supported
17995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
17996 F:      drivers/staging/
17997
17998 STARFIRE/DURALAN NETWORK DRIVER
17999 M:      Ion Badulescu <ionut@badula.org>
18000 S:      Odd Fixes
18001 F:      drivers/net/ethernet/adaptec/starfire*
18002
18003 STATIC BRANCH/CALL
18004 M:      Peter Zijlstra <peterz@infradead.org>
18005 M:      Josh Poimboeuf <jpoimboe@redhat.com>
18006 M:      Jason Baron <jbaron@akamai.com>
18007 R:      Steven Rostedt <rostedt@goodmis.org>
18008 R:      Ard Biesheuvel <ardb@kernel.org>
18009 S:      Supported
18010 F:      arch/*/include/asm/jump_label*.h
18011 F:      arch/*/include/asm/static_call*.h
18012 F:      arch/*/kernel/jump_label.c
18013 F:      arch/*/kernel/static_call.c
18014 F:      include/linux/jump_label*.h
18015 F:      include/linux/static_call*.h
18016 F:      kernel/jump_label.c
18017 F:      kernel/static_call.c
18018
18019 STI AUDIO (ASoC) DRIVERS
18020 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18021 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18022 S:      Maintained
18023 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
18024 F:      sound/soc/sti/
18025
18026 STI CEC DRIVER
18027 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
18028 S:      Maintained
18029 F:      Documentation/devicetree/bindings/media/stih-cec.txt
18030 F:      drivers/media/cec/platform/sti/
18031
18032 STK1160 USB VIDEO CAPTURE DRIVER
18033 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18034 L:      linux-media@vger.kernel.org
18035 S:      Maintained
18036 T:      git git://linuxtv.org/media_tree.git
18037 F:      drivers/media/usb/stk1160/
18038
18039 STM32 AUDIO (ASoC) DRIVERS
18040 M:      Olivier Moysan <olivier.moysan@foss.st.com>
18041 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18042 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18043 S:      Maintained
18044 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
18045 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
18046 F:      sound/soc/stm/
18047
18048 STM32 TIMER/LPTIMER DRIVERS
18049 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
18050 S:      Maintained
18051 F:      Documentation/ABI/testing/*timer-stm32
18052 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
18053 F:      drivers/*/stm32-*timer*
18054 F:      drivers/pwm/pwm-stm32*
18055 F:      include/linux/*/stm32-*tim*
18056
18057 STMMAC ETHERNET DRIVER
18058 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
18059 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
18060 M:      Jose Abreu <joabreu@synopsys.com>
18061 L:      netdev@vger.kernel.org
18062 S:      Supported
18063 W:      http://www.stlinux.com
18064 F:      Documentation/networking/device_drivers/ethernet/stmicro/
18065 F:      drivers/net/ethernet/stmicro/stmmac/
18066
18067 SUN3/3X
18068 M:      Sam Creasey <sammy@sammy.net>
18069 S:      Maintained
18070 W:      http://sammy.net/sun3/
18071 F:      arch/m68k/include/asm/sun3*
18072 F:      arch/m68k/kernel/*sun3*
18073 F:      arch/m68k/sun3*/
18074 F:      drivers/net/ethernet/i825xx/sun3*
18075
18076 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
18077 M:      Hans de Goede <hdegoede@redhat.com>
18078 L:      linux-input@vger.kernel.org
18079 S:      Maintained
18080 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
18081 F:      drivers/input/keyboard/sun4i-lradc-keys.c
18082
18083 SUNDANCE NETWORK DRIVER
18084 M:      Denis Kirjanov <kda@linux-powerpc.org>
18085 L:      netdev@vger.kernel.org
18086 S:      Maintained
18087 F:      drivers/net/ethernet/dlink/sundance.c
18088
18089 SUPERH
18090 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
18091 M:      Rich Felker <dalias@libc.org>
18092 L:      linux-sh@vger.kernel.org
18093 S:      Maintained
18094 Q:      http://patchwork.kernel.org/project/linux-sh/list/
18095 F:      Documentation/sh/
18096 F:      arch/sh/
18097 F:      drivers/sh/
18098
18099 SUSPEND TO RAM
18100 M:      "Rafael J. Wysocki" <rafael@kernel.org>
18101 M:      Len Brown <len.brown@intel.com>
18102 M:      Pavel Machek <pavel@ucw.cz>
18103 L:      linux-pm@vger.kernel.org
18104 S:      Supported
18105 B:      https://bugzilla.kernel.org
18106 F:      Documentation/power/
18107 F:      arch/x86/kernel/acpi/
18108 F:      drivers/base/power/
18109 F:      include/linux/freezer.h
18110 F:      include/linux/pm.h
18111 F:      include/linux/suspend.h
18112 F:      kernel/power/
18113
18114 SVGA HANDLING
18115 M:      Martin Mares <mj@ucw.cz>
18116 L:      linux-video@atrey.karlin.mff.cuni.cz
18117 S:      Maintained
18118 F:      Documentation/admin-guide/svga.rst
18119 F:      arch/x86/boot/video*
18120
18121 SWIOTLB SUBSYSTEM
18122 M:      Christoph Hellwig <hch@infradead.org>
18123 L:      iommu@lists.linux-foundation.org
18124 S:      Supported
18125 W:      http://git.infradead.org/users/hch/dma-mapping.git
18126 T:      git git://git.infradead.org/users/hch/dma-mapping.git
18127 F:      arch/*/kernel/pci-swiotlb.c
18128 F:      include/linux/swiotlb.h
18129 F:      kernel/dma/swiotlb.c
18130
18131 SWITCHDEV
18132 M:      Jiri Pirko <jiri@resnulli.us>
18133 M:      Ivan Vecera <ivecera@redhat.com>
18134 L:      netdev@vger.kernel.org
18135 S:      Supported
18136 F:      include/net/switchdev.h
18137 F:      net/switchdev/
18138
18139 SY8106A REGULATOR DRIVER
18140 M:      Icenowy Zheng <icenowy@aosc.io>
18141 S:      Maintained
18142 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
18143 F:      drivers/regulator/sy8106a-regulator.c
18144
18145 SYNC FILE FRAMEWORK
18146 M:      Sumit Semwal <sumit.semwal@linaro.org>
18147 R:      Gustavo Padovan <gustavo@padovan.org>
18148 L:      linux-media@vger.kernel.org
18149 L:      dri-devel@lists.freedesktop.org
18150 S:      Maintained
18151 T:      git git://anongit.freedesktop.org/drm/drm-misc
18152 F:      Documentation/driver-api/sync_file.rst
18153 F:      drivers/dma-buf/dma-fence*
18154 F:      drivers/dma-buf/sw_sync.c
18155 F:      drivers/dma-buf/sync_*
18156 F:      include/linux/sync_file.h
18157 F:      include/uapi/linux/sync_file.h
18158
18159 SYNOPSYS ARC ARCHITECTURE
18160 M:      Vineet Gupta <vgupta@kernel.org>
18161 L:      linux-snps-arc@lists.infradead.org
18162 S:      Supported
18163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
18164 F:      Documentation/devicetree/bindings/arc/*
18165 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
18166 F:      arch/arc/
18167 F:      drivers/clocksource/arc_timer.c
18168 F:      drivers/tty/serial/arc_uart.c
18169
18170 SYNOPSYS ARC HSDK SDP pll clock driver
18171 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18172 S:      Supported
18173 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
18174 F:      drivers/clk/clk-hsdk-pll.c
18175
18176 SYNOPSYS ARC SDP clock driver
18177 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18178 S:      Supported
18179 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
18180 F:      drivers/clk/axs10x/*
18181
18182 SYNOPSYS ARC SDP platform support
18183 M:      Alexey Brodkin <abrodkin@synopsys.com>
18184 S:      Supported
18185 F:      Documentation/devicetree/bindings/arc/axs10*
18186 F:      arch/arc/boot/dts/ax*
18187 F:      arch/arc/plat-axs10x
18188
18189 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
18190 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18191 S:      Supported
18192 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
18193 F:      drivers/reset/reset-axs10x.c
18194
18195 SYNOPSYS CREG GPIO DRIVER
18196 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18197 S:      Maintained
18198 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
18199 F:      drivers/gpio/gpio-creg-snps.c
18200
18201 SYNOPSYS DESIGNWARE 8250 UART DRIVER
18202 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18203 S:      Maintained
18204 F:      drivers/tty/serial/8250/8250_dw.c
18205 F:      drivers/tty/serial/8250/8250_dwlib.*
18206 F:      drivers/tty/serial/8250/8250_lpss.c
18207
18208 SYNOPSYS DESIGNWARE APB GPIO DRIVER
18209 M:      Hoan Tran <hoan@os.amperecomputing.com>
18210 M:      Serge Semin <fancer.lancer@gmail.com>
18211 L:      linux-gpio@vger.kernel.org
18212 S:      Maintained
18213 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
18214 F:      drivers/gpio/gpio-dwapb.c
18215
18216 SYNOPSYS DESIGNWARE APB SSI DRIVER
18217 M:      Serge Semin <fancer.lancer@gmail.com>
18218 L:      linux-spi@vger.kernel.org
18219 S:      Supported
18220 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
18221 F:      drivers/spi/spi-dw*
18222
18223 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
18224 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18225 S:      Maintained
18226 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
18227 F:      drivers/dma/dw-axi-dmac/
18228
18229 SYNOPSYS DESIGNWARE DMAC DRIVER
18230 M:      Viresh Kumar <vireshk@kernel.org>
18231 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18232 S:      Maintained
18233 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
18234 F:      drivers/dma/dw/
18235 F:      include/dt-bindings/dma/dw-dmac.h
18236 F:      include/linux/dma/dw.h
18237 F:      include/linux/platform_data/dma-dw.h
18238
18239 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
18240 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18241 L:      netdev@vger.kernel.org
18242 S:      Supported
18243 F:      drivers/net/ethernet/synopsys/
18244
18245 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
18246 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18247 L:      netdev@vger.kernel.org
18248 S:      Supported
18249 F:      drivers/net/pcs/pcs-xpcs.c
18250 F:      drivers/net/pcs/pcs-xpcs.h
18251 F:      include/linux/pcs/pcs-xpcs.h
18252
18253 SYNOPSYS DESIGNWARE I2C DRIVER
18254 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
18255 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18256 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
18257 L:      linux-i2c@vger.kernel.org
18258 S:      Maintained
18259 F:      drivers/i2c/busses/i2c-designware-*
18260
18261 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
18262 M:      Jaehoon Chung <jh80.chung@samsung.com>
18263 L:      linux-mmc@vger.kernel.org
18264 S:      Maintained
18265 F:      drivers/mmc/host/dw_mmc*
18266
18267 SYNOPSYS HSDK RESET CONTROLLER DRIVER
18268 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18269 S:      Supported
18270 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
18271 F:      drivers/reset/reset-hsdk.c
18272 F:      include/dt-bindings/reset/snps,hsdk-reset.h
18273
18274 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
18275 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
18276 M:      Manjunath M B <manjumb@synopsys.com>
18277 L:      linux-mmc@vger.kernel.org
18278 S:      Maintained
18279 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
18280
18281 SYSTEM CONFIGURATION (SYSCON)
18282 M:      Lee Jones <lee.jones@linaro.org>
18283 M:      Arnd Bergmann <arnd@arndb.de>
18284 S:      Supported
18285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
18286 F:      drivers/mfd/syscon.c
18287
18288 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
18289 M:      Sudeep Holla <sudeep.holla@arm.com>
18290 R:      Cristian Marussi <cristian.marussi@arm.com>
18291 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18292 S:      Maintained
18293 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
18294 F:      drivers/clk/clk-sc[mp]i.c
18295 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
18296 F:      drivers/firmware/arm_scmi/
18297 F:      drivers/firmware/arm_scpi.c
18298 F:      drivers/regulator/scmi-regulator.c
18299 F:      drivers/reset/reset-scmi.c
18300 F:      include/linux/sc[mp]i_protocol.h
18301 F:      include/trace/events/scmi.h
18302 F:      include/uapi/linux/virtio_scmi.h
18303
18304 SYSTEM RESET/SHUTDOWN DRIVERS
18305 M:      Sebastian Reichel <sre@kernel.org>
18306 L:      linux-pm@vger.kernel.org
18307 S:      Maintained
18308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
18309 F:      Documentation/devicetree/bindings/power/reset/
18310 F:      drivers/power/reset/
18311
18312 SYSTEM TRACE MODULE CLASS
18313 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
18314 S:      Maintained
18315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
18316 F:      Documentation/trace/stm.rst
18317 F:      drivers/hwtracing/stm/
18318 F:      include/linux/stm.h
18319 F:      include/uapi/linux/stm.h
18320
18321 SYSTEM76 ACPI DRIVER
18322 M:      Jeremy Soller <jeremy@system76.com>
18323 M:      System76 Product Development <productdev@system76.com>
18324 L:      platform-driver-x86@vger.kernel.org
18325 S:      Maintained
18326 F:      drivers/platform/x86/system76_acpi.c
18327
18328 SYSV FILESYSTEM
18329 M:      Christoph Hellwig <hch@infradead.org>
18330 S:      Maintained
18331 F:      Documentation/filesystems/sysv-fs.rst
18332 F:      fs/sysv/
18333 F:      include/linux/sysv_fs.h
18334
18335 TASKSTATS STATISTICS INTERFACE
18336 M:      Balbir Singh <bsingharora@gmail.com>
18337 S:      Maintained
18338 F:      Documentation/accounting/taskstats*
18339 F:      include/linux/taskstats*
18340 F:      kernel/taskstats.c
18341
18342 TC subsystem
18343 M:      Jamal Hadi Salim <jhs@mojatatu.com>
18344 M:      Cong Wang <xiyou.wangcong@gmail.com>
18345 M:      Jiri Pirko <jiri@resnulli.us>
18346 L:      netdev@vger.kernel.org
18347 S:      Maintained
18348 F:      include/net/pkt_cls.h
18349 F:      include/net/pkt_sched.h
18350 F:      include/net/tc_act/
18351 F:      include/uapi/linux/pkt_cls.h
18352 F:      include/uapi/linux/pkt_sched.h
18353 F:      include/uapi/linux/tc_act/
18354 F:      include/uapi/linux/tc_ematch/
18355 F:      net/sched/
18356
18357 TC90522 MEDIA DRIVER
18358 M:      Akihiro Tsukada <tskd08@gmail.com>
18359 L:      linux-media@vger.kernel.org
18360 S:      Odd Fixes
18361 F:      drivers/media/dvb-frontends/tc90522*
18362
18363 TCP LOW PRIORITY MODULE
18364 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
18365 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
18366 S:      Maintained
18367 W:      http://tcp-lp-mod.sourceforge.net/
18368 F:      net/ipv4/tcp_lp.c
18369
18370 TDA10071 MEDIA DRIVER
18371 M:      Antti Palosaari <crope@iki.fi>
18372 L:      linux-media@vger.kernel.org
18373 S:      Maintained
18374 W:      https://linuxtv.org
18375 W:      http://palosaari.fi/linux/
18376 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18377 T:      git git://linuxtv.org/anttip/media_tree.git
18378 F:      drivers/media/dvb-frontends/tda10071*
18379
18380 TDA18212 MEDIA DRIVER
18381 M:      Antti Palosaari <crope@iki.fi>
18382 L:      linux-media@vger.kernel.org
18383 S:      Maintained
18384 W:      https://linuxtv.org
18385 W:      http://palosaari.fi/linux/
18386 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18387 T:      git git://linuxtv.org/anttip/media_tree.git
18388 F:      drivers/media/tuners/tda18212*
18389
18390 TDA18218 MEDIA DRIVER
18391 M:      Antti Palosaari <crope@iki.fi>
18392 L:      linux-media@vger.kernel.org
18393 S:      Maintained
18394 W:      https://linuxtv.org
18395 W:      http://palosaari.fi/linux/
18396 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18397 T:      git git://linuxtv.org/anttip/media_tree.git
18398 F:      drivers/media/tuners/tda18218*
18399
18400 TDA18250 MEDIA DRIVER
18401 M:      Olli Salonen <olli.salonen@iki.fi>
18402 L:      linux-media@vger.kernel.org
18403 S:      Maintained
18404 W:      https://linuxtv.org
18405 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18406 T:      git git://linuxtv.org/media_tree.git
18407 F:      drivers/media/tuners/tda18250*
18408
18409 TDA18271 MEDIA DRIVER
18410 M:      Michael Krufky <mkrufky@linuxtv.org>
18411 L:      linux-media@vger.kernel.org
18412 S:      Maintained
18413 W:      https://linuxtv.org
18414 W:      http://github.com/mkrufky
18415 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18416 T:      git git://linuxtv.org/mkrufky/tuners.git
18417 F:      drivers/media/tuners/tda18271*
18418
18419 TDA1997x MEDIA DRIVER
18420 M:      Tim Harvey <tharvey@gateworks.com>
18421 L:      linux-media@vger.kernel.org
18422 S:      Maintained
18423 W:      https://linuxtv.org
18424 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18425 F:      drivers/media/i2c/tda1997x.*
18426
18427 TDA827x MEDIA DRIVER
18428 M:      Michael Krufky <mkrufky@linuxtv.org>
18429 L:      linux-media@vger.kernel.org
18430 S:      Maintained
18431 W:      https://linuxtv.org
18432 W:      http://github.com/mkrufky
18433 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18434 T:      git git://linuxtv.org/mkrufky/tuners.git
18435 F:      drivers/media/tuners/tda8290.*
18436
18437 TDA8290 MEDIA DRIVER
18438 M:      Michael Krufky <mkrufky@linuxtv.org>
18439 L:      linux-media@vger.kernel.org
18440 S:      Maintained
18441 W:      https://linuxtv.org
18442 W:      http://github.com/mkrufky
18443 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18444 T:      git git://linuxtv.org/mkrufky/tuners.git
18445 F:      drivers/media/tuners/tda8290.*
18446
18447 TDA9840 MEDIA DRIVER
18448 M:      Hans Verkuil <hverkuil@xs4all.nl>
18449 L:      linux-media@vger.kernel.org
18450 S:      Maintained
18451 W:      https://linuxtv.org
18452 T:      git git://linuxtv.org/media_tree.git
18453 F:      drivers/media/i2c/tda9840*
18454
18455 TEA5761 TUNER DRIVER
18456 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18457 L:      linux-media@vger.kernel.org
18458 S:      Odd fixes
18459 W:      https://linuxtv.org
18460 T:      git git://linuxtv.org/media_tree.git
18461 F:      drivers/media/tuners/tea5761.*
18462
18463 TEA5767 TUNER DRIVER
18464 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18465 L:      linux-media@vger.kernel.org
18466 S:      Maintained
18467 W:      https://linuxtv.org
18468 T:      git git://linuxtv.org/media_tree.git
18469 F:      drivers/media/tuners/tea5767.*
18470
18471 TEA6415C MEDIA DRIVER
18472 M:      Hans Verkuil <hverkuil@xs4all.nl>
18473 L:      linux-media@vger.kernel.org
18474 S:      Maintained
18475 W:      https://linuxtv.org
18476 T:      git git://linuxtv.org/media_tree.git
18477 F:      drivers/media/i2c/tea6415c*
18478
18479 TEA6420 MEDIA DRIVER
18480 M:      Hans Verkuil <hverkuil@xs4all.nl>
18481 L:      linux-media@vger.kernel.org
18482 S:      Maintained
18483 W:      https://linuxtv.org
18484 T:      git git://linuxtv.org/media_tree.git
18485 F:      drivers/media/i2c/tea6420*
18486
18487 TEAM DRIVER
18488 M:      Jiri Pirko <jiri@resnulli.us>
18489 L:      netdev@vger.kernel.org
18490 S:      Supported
18491 F:      drivers/net/team/
18492 F:      include/linux/if_team.h
18493 F:      include/uapi/linux/if_team.h
18494
18495 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
18496 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
18497 S:      Maintained
18498 F:      arch/x86/platform/ts5500/
18499
18500 TECHNOTREND USB IR RECEIVER
18501 M:      Sean Young <sean@mess.org>
18502 L:      linux-media@vger.kernel.org
18503 S:      Maintained
18504 F:      drivers/media/rc/ttusbir.c
18505
18506 TECHWELL TW9910 VIDEO DECODER
18507 L:      linux-media@vger.kernel.org
18508 S:      Orphan
18509 F:      drivers/media/i2c/tw9910.c
18510 F:      include/media/i2c/tw9910.h
18511
18512 TEE SUBSYSTEM
18513 M:      Jens Wiklander <jens.wiklander@linaro.org>
18514 R:      Sumit Garg <sumit.garg@linaro.org>
18515 L:      op-tee@lists.trustedfirmware.org
18516 S:      Maintained
18517 F:      Documentation/staging/tee.rst
18518 F:      drivers/tee/
18519 F:      include/linux/tee_drv.h
18520 F:      include/uapi/linux/tee.h
18521
18522 TEGRA ARCHITECTURE SUPPORT
18523 M:      Thierry Reding <thierry.reding@gmail.com>
18524 M:      Jonathan Hunter <jonathanh@nvidia.com>
18525 L:      linux-tegra@vger.kernel.org
18526 S:      Supported
18527 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
18528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
18529 N:      [^a-z]tegra
18530
18531 TEGRA CLOCK DRIVER
18532 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
18533 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
18534 S:      Supported
18535 F:      drivers/clk/tegra/
18536
18537 TEGRA DMA DRIVERS
18538 M:      Laxman Dewangan <ldewangan@nvidia.com>
18539 M:      Jon Hunter <jonathanh@nvidia.com>
18540 S:      Supported
18541 F:      drivers/dma/tegra*
18542
18543 TEGRA I2C DRIVER
18544 M:      Laxman Dewangan <ldewangan@nvidia.com>
18545 R:      Dmitry Osipenko <digetx@gmail.com>
18546 S:      Supported
18547 F:      drivers/i2c/busses/i2c-tegra.c
18548
18549 TEGRA IOMMU DRIVERS
18550 M:      Thierry Reding <thierry.reding@gmail.com>
18551 R:      Krishna Reddy <vdumpa@nvidia.com>
18552 L:      linux-tegra@vger.kernel.org
18553 S:      Supported
18554 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
18555 F:      drivers/iommu/tegra*
18556
18557 TEGRA KBC DRIVER
18558 M:      Laxman Dewangan <ldewangan@nvidia.com>
18559 S:      Supported
18560 F:      drivers/input/keyboard/tegra-kbc.c
18561
18562 TEGRA NAND DRIVER
18563 M:      Stefan Agner <stefan@agner.ch>
18564 M:      Lucas Stach <dev@lynxeye.de>
18565 S:      Maintained
18566 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
18567 F:      drivers/mtd/nand/raw/tegra_nand.c
18568
18569 TEGRA PWM DRIVER
18570 M:      Thierry Reding <thierry.reding@gmail.com>
18571 S:      Supported
18572 F:      drivers/pwm/pwm-tegra.c
18573
18574 TEGRA SERIAL DRIVER
18575 M:      Laxman Dewangan <ldewangan@nvidia.com>
18576 S:      Supported
18577 F:      drivers/tty/serial/serial-tegra.c
18578
18579 TEGRA SPI DRIVER
18580 M:      Laxman Dewangan <ldewangan@nvidia.com>
18581 S:      Supported
18582 F:      drivers/spi/spi-tegra*
18583
18584 TEGRA QUAD SPI DRIVER
18585 M:      Thierry Reding <thierry.reding@gmail.com>
18586 M:      Jonathan Hunter <jonathanh@nvidia.com>
18587 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18588 L:      linux-tegra@vger.kernel.org
18589 S:      Maintained
18590 F:      drivers/spi/spi-tegra210-quad.c
18591
18592 TEGRA VIDEO DRIVER
18593 M:      Thierry Reding <thierry.reding@gmail.com>
18594 M:      Jonathan Hunter <jonathanh@nvidia.com>
18595 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18596 L:      linux-media@vger.kernel.org
18597 L:      linux-tegra@vger.kernel.org
18598 S:      Maintained
18599 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
18600 F:      drivers/staging/media/tegra-video/
18601
18602 TEGRA XUSB PADCTL DRIVER
18603 M:      JC Kuo <jckuo@nvidia.com>
18604 S:      Supported
18605 F:      drivers/phy/tegra/xusb*
18606
18607 TEHUTI ETHERNET DRIVER
18608 M:      Andy Gospodarek <andy@greyhouse.net>
18609 L:      netdev@vger.kernel.org
18610 S:      Supported
18611 F:      drivers/net/ethernet/tehuti/*
18612
18613 TELECOM CLOCK DRIVER FOR MCPL0010
18614 M:      Mark Gross <markgross@kernel.org>
18615 S:      Supported
18616 F:      drivers/char/tlclk.c
18617
18618 TEMPO SEMICONDUCTOR DRIVERS
18619 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
18620 S:      Maintained
18621 F:      Documentation/devicetree/bindings/sound/tscs*.txt
18622 F:      sound/soc/codecs/tscs*.c
18623 F:      sound/soc/codecs/tscs*.h
18624
18625 TENSILICA XTENSA PORT (xtensa)
18626 M:      Chris Zankel <chris@zankel.net>
18627 M:      Max Filippov <jcmvbkbc@gmail.com>
18628 L:      linux-xtensa@linux-xtensa.org
18629 S:      Maintained
18630 T:      git git://github.com/czankel/xtensa-linux.git
18631 F:      arch/xtensa/
18632 F:      drivers/irqchip/irq-xtensa-*
18633
18634 TEXAS INSTRUMENTS ASoC DRIVERS
18635 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18636 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18637 S:      Maintained
18638 F:      sound/soc/ti/
18639
18640 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
18641 M:      Ricardo Ribalda <ribalda@kernel.org>
18642 L:      linux-iio@vger.kernel.org
18643 S:      Supported
18644 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
18645 F:      drivers/iio/dac/ti-dac7612.c
18646
18647 TEXAS INSTRUMENTS DMA DRIVERS
18648 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18649 L:      dmaengine@vger.kernel.org
18650 S:      Maintained
18651 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
18652 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
18653 F:      Documentation/devicetree/bindings/dma/ti/
18654 F:      drivers/dma/ti/
18655 X:      drivers/dma/ti/cppi41.c
18656 F:      include/linux/dma/k3-udma-glue.h
18657 F:      include/linux/dma/ti-cppi5.h
18658 F:      include/linux/dma/k3-psil.h
18659
18660 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
18661 M:      Nishanth Menon <nm@ti.com>
18662 M:      Tero Kristo <kristo@kernel.org>
18663 M:      Santosh Shilimkar <ssantosh@kernel.org>
18664 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18665 S:      Maintained
18666 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
18667 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
18668 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
18669 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
18670 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
18671 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
18672 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
18673 F:      drivers/clk/keystone/sci-clk.c
18674 F:      drivers/firmware/ti_sci*
18675 F:      drivers/irqchip/irq-ti-sci-inta.c
18676 F:      drivers/irqchip/irq-ti-sci-intr.c
18677 F:      drivers/reset/reset-ti-sci.c
18678 F:      drivers/soc/ti/ti_sci_inta_msi.c
18679 F:      drivers/soc/ti/ti_sci_pm_domains.c
18680 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
18681 F:      include/linux/soc/ti/ti_sci_inta_msi.h
18682 F:      include/linux/soc/ti/ti_sci_protocol.h
18683
18684 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
18685 M:      Robert Marko <robert.marko@sartura.hr>
18686 M:      Luka Perkov <luka.perkov@sartura.hr>
18687 L:      linux-hwmon@vger.kernel.org
18688 S:      Maintained
18689 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
18690 F:      Documentation/hwmon/tps23861.rst
18691 F:      drivers/hwmon/tps23861.c
18692
18693 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
18694 M:      Puranjay Mohan <puranjay12@gmail.com>
18695 L:      linux-iio@vger.kernel.org
18696 S:      Supported
18697 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
18698 F:      drivers/iio/temperature/tmp117.c
18699
18700 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
18701 M:      Hans Verkuil <hverkuil@xs4all.nl>
18702 L:      linux-media@vger.kernel.org
18703 S:      Maintained
18704 W:      https://linuxtv.org
18705 T:      git git://linuxtv.org/media_tree.git
18706 F:      drivers/media/radio/radio-raremono.c
18707
18708 THERMAL
18709 M:      Rafael J. Wysocki <rafael@kernel.org>
18710 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18711 R:      Amit Kucheria <amitk@kernel.org>
18712 R:      Zhang Rui <rui.zhang@intel.com>
18713 L:      linux-pm@vger.kernel.org
18714 S:      Supported
18715 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
18717 F:      Documentation/ABI/testing/sysfs-class-thermal
18718 F:      Documentation/devicetree/bindings/thermal/
18719 F:      Documentation/driver-api/thermal/
18720 F:      drivers/thermal/
18721 F:      include/linux/cpu_cooling.h
18722 F:      include/linux/thermal.h
18723 F:      include/uapi/linux/thermal.h
18724 F:      tools/thermal/
18725
18726 THERMAL DRIVER FOR AMLOGIC SOCS
18727 M:      Guillaume La Roque <glaroque@baylibre.com>
18728 L:      linux-pm@vger.kernel.org
18729 L:      linux-amlogic@lists.infradead.org
18730 S:      Supported
18731 W:      http://linux-meson.com/
18732 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
18733 F:      drivers/thermal/amlogic_thermal.c
18734
18735 THERMAL/CPU_COOLING
18736 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
18737 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18738 M:      Viresh Kumar <viresh.kumar@linaro.org>
18739 R:      Lukasz Luba <lukasz.luba@arm.com>
18740 L:      linux-pm@vger.kernel.org
18741 S:      Supported
18742 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
18743 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
18744 F:      drivers/thermal/cpufreq_cooling.c
18745 F:      drivers/thermal/cpuidle_cooling.c
18746 F:      include/linux/cpu_cooling.h
18747
18748 THERMAL/POWER_ALLOCATOR
18749 M:      Lukasz Luba <lukasz.luba@arm.com>
18750 L:      linux-pm@vger.kernel.org
18751 S:      Maintained
18752 F:      Documentation/driver-api/thermal/power_allocator.rst
18753 F:      drivers/thermal/gov_power_allocator.c
18754 F:      include/trace/events/thermal_power_allocator.h
18755
18756 THINKPAD ACPI EXTRAS DRIVER
18757 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
18758 L:      ibm-acpi-devel@lists.sourceforge.net
18759 L:      platform-driver-x86@vger.kernel.org
18760 S:      Maintained
18761 W:      http://ibm-acpi.sourceforge.net
18762 W:      http://thinkwiki.org/wiki/Ibm-acpi
18763 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
18764 F:      drivers/platform/x86/thinkpad_acpi.c
18765
18766 THINKPAD LMI DRIVER
18767 M:      Mark Pearson <markpearson@lenovo.com>
18768 L:      platform-driver-x86@vger.kernel.org
18769 S:      Maintained
18770 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
18771 F:      drivers/platform/x86/think-lmi.?
18772
18773 THUNDERBOLT DMA TRAFFIC TEST DRIVER
18774 M:      Isaac Hazan <isaac.hazan@intel.com>
18775 L:      linux-usb@vger.kernel.org
18776 S:      Maintained
18777 F:      drivers/thunderbolt/dma_test.c
18778
18779 THUNDERBOLT DRIVER
18780 M:      Andreas Noever <andreas.noever@gmail.com>
18781 M:      Michael Jamet <michael.jamet@intel.com>
18782 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18783 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18784 L:      linux-usb@vger.kernel.org
18785 S:      Maintained
18786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
18787 F:      Documentation/admin-guide/thunderbolt.rst
18788 F:      drivers/thunderbolt/
18789 F:      include/linux/thunderbolt.h
18790
18791 THUNDERBOLT NETWORK DRIVER
18792 M:      Michael Jamet <michael.jamet@intel.com>
18793 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18794 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18795 L:      netdev@vger.kernel.org
18796 S:      Maintained
18797 F:      drivers/net/thunderbolt.c
18798
18799 THUNDERX GPIO DRIVER
18800 M:      Robert Richter <rric@kernel.org>
18801 S:      Odd Fixes
18802 F:      drivers/gpio/gpio-thunderx.c
18803
18804 TI ADS131E0X ADC SERIES DRIVER
18805 M:      Tomislav Denis <tomislav.denis@avl.com>
18806 L:      linux-iio@vger.kernel.org
18807 S:      Maintained
18808 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
18809 F:      drivers/iio/adc/ti-ads131e08.c
18810
18811 TI AM437X VPFE DRIVER
18812 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18813 L:      linux-media@vger.kernel.org
18814 S:      Maintained
18815 W:      https://linuxtv.org
18816 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18817 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18818 F:      drivers/media/platform/am437x/
18819
18820 TI BANDGAP AND THERMAL DRIVER
18821 M:      Eduardo Valentin <edubezval@gmail.com>
18822 M:      Keerthy <j-keerthy@ti.com>
18823 L:      linux-pm@vger.kernel.org
18824 L:      linux-omap@vger.kernel.org
18825 S:      Maintained
18826 F:      drivers/thermal/ti-soc-thermal/
18827
18828 TI BQ27XXX POWER SUPPLY DRIVER
18829 F:      drivers/power/supply/bq27xxx_battery.c
18830 F:      drivers/power/supply/bq27xxx_battery_i2c.c
18831 F:      include/linux/power/bq27xxx_battery.h
18832
18833 TI CDCE706 CLOCK DRIVER
18834 M:      Max Filippov <jcmvbkbc@gmail.com>
18835 S:      Maintained
18836 F:      drivers/clk/clk-cdce706.c
18837
18838 TI CLOCK DRIVER
18839 M:      Tero Kristo <kristo@kernel.org>
18840 L:      linux-omap@vger.kernel.org
18841 S:      Odd Fixes
18842 F:      drivers/clk/ti/
18843 F:      include/linux/clk/ti.h
18844
18845 TI DAVINCI MACHINE SUPPORT
18846 M:      Sekhar Nori <nsekhar@ti.com>
18847 R:      Bartosz Golaszewski <brgl@bgdev.pl>
18848 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18849 S:      Supported
18850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
18851 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
18852 F:      arch/arm/boot/dts/da850*
18853 F:      arch/arm/mach-davinci/
18854 F:      drivers/i2c/busses/i2c-davinci.c
18855
18856 TI DAVINCI SERIES CLOCK DRIVER
18857 M:      David Lechner <david@lechnology.com>
18858 R:      Sekhar Nori <nsekhar@ti.com>
18859 S:      Maintained
18860 F:      Documentation/devicetree/bindings/clock/ti/davinci/
18861 F:      drivers/clk/davinci/
18862
18863 TI DAVINCI SERIES GPIO DRIVER
18864 M:      Keerthy <j-keerthy@ti.com>
18865 L:      linux-gpio@vger.kernel.org
18866 S:      Maintained
18867 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
18868 F:      drivers/gpio/gpio-davinci.c
18869
18870 TI DAVINCI SERIES MEDIA DRIVER
18871 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18872 L:      linux-media@vger.kernel.org
18873 S:      Maintained
18874 W:      https://linuxtv.org
18875 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18876 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18877 F:      drivers/media/platform/davinci/
18878 F:      include/media/davinci/
18879
18880 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
18881 R:      David Lechner <david@lechnology.com>
18882 L:      linux-iio@vger.kernel.org
18883 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
18884 F:      drivers/counter/ti-eqep.c
18885
18886 TI ETHERNET SWITCH DRIVER (CPSW)
18887 R:      Grygorii Strashko <grygorii.strashko@ti.com>
18888 L:      linux-omap@vger.kernel.org
18889 L:      netdev@vger.kernel.org
18890 S:      Maintained
18891 F:      drivers/net/ethernet/ti/cpsw*
18892 F:      drivers/net/ethernet/ti/davinci*
18893
18894 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
18895 M:      Alex Dubov <oakad@yahoo.com>
18896 S:      Maintained
18897 W:      http://tifmxx.berlios.de/
18898 F:      drivers/memstick/host/tifm_ms.c
18899 F:      drivers/misc/tifm*
18900 F:      drivers/mmc/host/tifm_sd.c
18901 F:      include/linux/tifm.h
18902
18903 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
18904 M:      Santosh Shilimkar <ssantosh@kernel.org>
18905 L:      linux-kernel@vger.kernel.org
18906 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18907 S:      Maintained
18908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
18909 F:      drivers/soc/ti/*
18910
18911 TI LM49xxx FAMILY ASoC CODEC DRIVERS
18912 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
18913 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
18914 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18915 S:      Maintained
18916 F:      sound/soc/codecs/isabelle*
18917 F:      sound/soc/codecs/lm49453*
18918
18919 TI PCM3060 ASoC CODEC DRIVER
18920 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
18921 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18922 S:      Maintained
18923 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
18924 F:      sound/soc/codecs/pcm3060*
18925
18926 TI TAS571X FAMILY ASoC CODEC DRIVER
18927 M:      Kevin Cernekee <cernekee@chromium.org>
18928 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18929 S:      Odd Fixes
18930 F:      sound/soc/codecs/tas571x*
18931
18932 TI TRF7970A NFC DRIVER
18933 M:      Mark Greer <mgreer@animalcreek.com>
18934 L:      linux-wireless@vger.kernel.org
18935 L:      linux-nfc@lists.01.org (subscribers-only)
18936 S:      Supported
18937 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
18938 F:      drivers/nfc/trf7970a.c
18939
18940 TI TSC2046 ADC DRIVER
18941 M:      Oleksij Rempel <o.rempel@pengutronix.de>
18942 R:      kernel@pengutronix.de
18943 L:      linux-iio@vger.kernel.org
18944 S:      Maintained
18945 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
18946 F:      drivers/iio/adc/ti-tsc2046.c
18947
18948 TI TWL4030 SERIES SOC CODEC DRIVER
18949 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18950 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18951 S:      Maintained
18952 F:      sound/soc/codecs/twl4030*
18953
18954 TI VPE/CAL DRIVERS
18955 M:      Benoit Parrot <bparrot@ti.com>
18956 L:      linux-media@vger.kernel.org
18957 S:      Maintained
18958 W:      http://linuxtv.org/
18959 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18960 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
18961 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
18962 F:      drivers/media/platform/ti-vpe/
18963
18964 TI WILINK WIRELESS DRIVERS
18965 L:      linux-wireless@vger.kernel.org
18966 S:      Orphan
18967 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
18968 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
18969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
18970 F:      drivers/net/wireless/ti/
18971 F:      include/linux/wl12xx.h
18972
18973 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
18974 M:      John Stultz <john.stultz@linaro.org>
18975 M:      Thomas Gleixner <tglx@linutronix.de>
18976 R:      Stephen Boyd <sboyd@kernel.org>
18977 L:      linux-kernel@vger.kernel.org
18978 S:      Supported
18979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
18980 F:      include/linux/clocksource.h
18981 F:      include/linux/time.h
18982 F:      include/linux/timex.h
18983 F:      include/uapi/linux/time.h
18984 F:      include/uapi/linux/timex.h
18985 F:      kernel/time/alarmtimer.c
18986 F:      kernel/time/clocksource.c
18987 F:      kernel/time/ntp.c
18988 F:      kernel/time/time*.c
18989 F:      tools/testing/selftests/timers/
18990
18991 TIPC NETWORK LAYER
18992 M:      Jon Maloy <jmaloy@redhat.com>
18993 M:      Ying Xue <ying.xue@windriver.com>
18994 L:      netdev@vger.kernel.org (core kernel code)
18995 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
18996 S:      Maintained
18997 W:      http://tipc.sourceforge.net/
18998 F:      include/uapi/linux/tipc*.h
18999 F:      net/tipc/
19000
19001 TLAN NETWORK DRIVER
19002 M:      Samuel Chessman <chessman@tux.org>
19003 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
19004 S:      Maintained
19005 W:      http://sourceforge.net/projects/tlan/
19006 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
19007 F:      drivers/net/ethernet/ti/tlan.*
19008
19009 TM6000 VIDEO4LINUX DRIVER
19010 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19011 L:      linux-media@vger.kernel.org
19012 S:      Odd fixes
19013 W:      https://linuxtv.org
19014 T:      git git://linuxtv.org/media_tree.git
19015 F:      Documentation/admin-guide/media/tm6000*
19016 F:      drivers/media/usb/tm6000/
19017
19018 TMIO/SDHI MMC DRIVER
19019 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
19020 L:      linux-mmc@vger.kernel.org
19021 S:      Supported
19022 F:      drivers/mmc/host/renesas_sdhi*
19023 F:      drivers/mmc/host/tmio_mmc*
19024 F:      include/linux/mfd/tmio.h
19025
19026 TMP401 HARDWARE MONITOR DRIVER
19027 M:      Guenter Roeck <linux@roeck-us.net>
19028 L:      linux-hwmon@vger.kernel.org
19029 S:      Maintained
19030 F:      Documentation/hwmon/tmp401.rst
19031 F:      drivers/hwmon/tmp401.c
19032
19033 TMP513 HARDWARE MONITOR DRIVER
19034 M:      Eric Tremblay <etremblay@distech-controls.com>
19035 L:      linux-hwmon@vger.kernel.org
19036 S:      Maintained
19037 F:      Documentation/hwmon/tmp513.rst
19038 F:      drivers/hwmon/tmp513.c
19039
19040 TMPFS (SHMEM FILESYSTEM)
19041 M:      Hugh Dickins <hughd@google.com>
19042 L:      linux-mm@kvack.org
19043 S:      Maintained
19044 F:      include/linux/shmem_fs.h
19045 F:      mm/shmem.c
19046
19047 TOMOYO SECURITY MODULE
19048 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
19049 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
19050 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
19051 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
19052 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
19053 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
19054 S:      Maintained
19055 W:      https://tomoyo.osdn.jp/
19056 F:      security/tomoyo/
19057
19058 TOPSTAR LAPTOP EXTRAS DRIVER
19059 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
19060 L:      platform-driver-x86@vger.kernel.org
19061 S:      Maintained
19062 F:      drivers/platform/x86/topstar-laptop.c
19063
19064 TORTURE-TEST MODULES
19065 M:      Davidlohr Bueso <dave@stgolabs.net>
19066 M:      "Paul E. McKenney" <paulmck@kernel.org>
19067 M:      Josh Triplett <josh@joshtriplett.org>
19068 L:      linux-kernel@vger.kernel.org
19069 S:      Supported
19070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19071 F:      Documentation/RCU/torture.rst
19072 F:      kernel/locking/locktorture.c
19073 F:      kernel/rcu/rcuscale.c
19074 F:      kernel/rcu/rcutorture.c
19075 F:      kernel/rcu/refscale.c
19076 F:      kernel/torture.c
19077
19078 TOSHIBA ACPI EXTRAS DRIVER
19079 M:      Azael Avalos <coproscefalo@gmail.com>
19080 L:      platform-driver-x86@vger.kernel.org
19081 S:      Maintained
19082 F:      drivers/platform/x86/toshiba_acpi.c
19083
19084 TOSHIBA BLUETOOTH DRIVER
19085 M:      Azael Avalos <coproscefalo@gmail.com>
19086 L:      platform-driver-x86@vger.kernel.org
19087 S:      Maintained
19088 F:      drivers/platform/x86/toshiba_bluetooth.c
19089
19090 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
19091 M:      Azael Avalos <coproscefalo@gmail.com>
19092 L:      platform-driver-x86@vger.kernel.org
19093 S:      Maintained
19094 F:      drivers/platform/x86/toshiba_haps.c
19095
19096 TOSHIBA SMM DRIVER
19097 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
19098 S:      Maintained
19099 W:      http://www.buzzard.org.uk/toshiba/
19100 F:      drivers/char/toshiba.c
19101 F:      include/linux/toshiba.h
19102 F:      include/uapi/linux/toshiba.h
19103
19104 TOSHIBA TC358743 DRIVER
19105 M:      Mats Randgaard <matrandg@cisco.com>
19106 L:      linux-media@vger.kernel.org
19107 S:      Maintained
19108 F:      drivers/media/i2c/tc358743*
19109 F:      include/media/i2c/tc358743.h
19110
19111 TOSHIBA WMI HOTKEYS DRIVER
19112 M:      Azael Avalos <coproscefalo@gmail.com>
19113 L:      platform-driver-x86@vger.kernel.org
19114 S:      Maintained
19115 F:      drivers/platform/x86/toshiba-wmi.c
19116
19117 TPM DEVICE DRIVER
19118 M:      Peter Huewe <peterhuewe@gmx.de>
19119 M:      Jarkko Sakkinen <jarkko@kernel.org>
19120 R:      Jason Gunthorpe <jgg@ziepe.ca>
19121 L:      linux-integrity@vger.kernel.org
19122 S:      Maintained
19123 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
19124 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
19125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
19126 F:      drivers/char/tpm/
19127
19128 TRACING
19129 M:      Steven Rostedt <rostedt@goodmis.org>
19130 M:      Ingo Molnar <mingo@redhat.com>
19131 S:      Maintained
19132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
19133 F:      Documentation/trace/ftrace.rst
19134 F:      arch/*/*/*/ftrace.h
19135 F:      arch/*/kernel/ftrace.c
19136 F:      fs/tracefs/
19137 F:      include/*/ftrace.h
19138 F:      include/linux/trace*.h
19139 F:      include/trace/
19140 F:      kernel/trace/
19141 F:      tools/testing/selftests/ftrace/
19142
19143 TRACING MMIO ACCESSES (MMIOTRACE)
19144 M:      Steven Rostedt <rostedt@goodmis.org>
19145 M:      Ingo Molnar <mingo@kernel.org>
19146 R:      Karol Herbst <karolherbst@gmail.com>
19147 R:      Pekka Paalanen <ppaalanen@gmail.com>
19148 L:      linux-kernel@vger.kernel.org
19149 L:      nouveau@lists.freedesktop.org
19150 S:      Maintained
19151 F:      arch/x86/mm/kmmio.c
19152 F:      arch/x86/mm/mmio-mod.c
19153 F:      arch/x86/mm/testmmiotrace.c
19154 F:      include/linux/mmiotrace.h
19155 F:      kernel/trace/trace_mmiotrace.c
19156
19157 TRACING OS NOISE / LATENCY TRACERS
19158 M:      Steven Rostedt <rostedt@goodmis.org>
19159 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
19160 S:      Maintained
19161 F:      kernel/trace/trace_osnoise.c
19162 F:      include/trace/events/osnoise.h
19163 F:      kernel/trace/trace_hwlat.c
19164 F:      kernel/trace/trace_irqsoff.c
19165 F:      kernel/trace/trace_sched_wakeup.c
19166 F:      Documentation/trace/osnoise-tracer.rst
19167 F:      Documentation/trace/timerlat-tracer.rst
19168 F:      Documentation/trace/hwlat_detector.rst
19169 F:      arch/*/kernel/trace.c
19170
19171 TRADITIONAL CHINESE DOCUMENTATION
19172 M:      Hu Haowen <src.res@email.cn>
19173 L:      linux-doc-tw-discuss@lists.sourceforge.net
19174 S:      Maintained
19175 W:      https://github.com/srcres258/linux-doc
19176 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
19177 F:      Documentation/translations/zh_TW/
19178
19179 TRIVIAL PATCHES
19180 M:      Jiri Kosina <trivial@kernel.org>
19181 S:      Maintained
19182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
19183 K:      ^Subject:.*(?i)trivial
19184
19185 TTY LAYER
19186 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19187 M:      Jiri Slaby <jirislaby@kernel.org>
19188 S:      Supported
19189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
19190 F:      Documentation/driver-api/serial/
19191 F:      drivers/tty/
19192 F:      drivers/tty/serial/serial_core.c
19193 F:      include/linux/selection.h
19194 F:      include/linux/serial.h
19195 F:      include/linux/serial_core.h
19196 F:      include/linux/sysrq.h
19197 F:      include/linux/tty*.h
19198 F:      include/linux/vt.h
19199 F:      include/linux/vt_*.h
19200 F:      include/uapi/linux/serial.h
19201 F:      include/uapi/linux/serial_core.h
19202 F:      include/uapi/linux/tty.h
19203
19204 TUA9001 MEDIA DRIVER
19205 M:      Antti Palosaari <crope@iki.fi>
19206 L:      linux-media@vger.kernel.org
19207 S:      Maintained
19208 W:      https://linuxtv.org
19209 W:      http://palosaari.fi/linux/
19210 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19211 T:      git git://linuxtv.org/anttip/media_tree.git
19212 F:      drivers/media/tuners/tua9001*
19213
19214 TULIP NETWORK DRIVERS
19215 L:      netdev@vger.kernel.org
19216 L:      linux-parisc@vger.kernel.org
19217 S:      Orphan
19218 F:      drivers/net/ethernet/dec/tulip/
19219
19220 TUN/TAP driver
19221 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
19222 S:      Maintained
19223 W:      http://vtun.sourceforge.net/tun
19224 F:      Documentation/networking/tuntap.rst
19225 F:      arch/um/os-Linux/drivers/
19226
19227 TURBOCHANNEL SUBSYSTEM
19228 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
19229 M:      Ralf Baechle <ralf@linux-mips.org>
19230 L:      linux-mips@vger.kernel.org
19231 S:      Maintained
19232 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
19233 F:      drivers/tc/
19234 F:      include/linux/tc.h
19235
19236 TURBOSTAT UTILITY
19237 M:      "Len Brown" <lenb@kernel.org>
19238 L:      linux-pm@vger.kernel.org
19239 S:      Supported
19240 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19241 B:      https://bugzilla.kernel.org
19242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
19243 F:      tools/power/x86/turbostat/
19244
19245 TW5864 VIDEO4LINUX DRIVER
19246 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19247 M:      Anton Sviridenko <anton@corp.bluecherry.net>
19248 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
19249 M:      Andrey Utkin <andrey_utkin@fastmail.com>
19250 L:      linux-media@vger.kernel.org
19251 S:      Supported
19252 F:      drivers/media/pci/tw5864/
19253
19254 TW68 VIDEO4LINUX DRIVER
19255 M:      Hans Verkuil <hverkuil@xs4all.nl>
19256 L:      linux-media@vger.kernel.org
19257 S:      Odd Fixes
19258 W:      https://linuxtv.org
19259 T:      git git://linuxtv.org/media_tree.git
19260 F:      drivers/media/pci/tw68/
19261
19262 TW686X VIDEO4LINUX DRIVER
19263 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19264 L:      linux-media@vger.kernel.org
19265 S:      Maintained
19266 W:      http://linuxtv.org
19267 T:      git git://linuxtv.org/media_tree.git
19268 F:      drivers/media/pci/tw686x/
19269
19270 UACCE ACCELERATOR FRAMEWORK
19271 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
19272 M:      Zhou Wang <wangzhou1@hisilicon.com>
19273 L:      linux-accelerators@lists.ozlabs.org
19274 L:      linux-kernel@vger.kernel.org
19275 S:      Maintained
19276 F:      Documentation/ABI/testing/sysfs-driver-uacce
19277 F:      Documentation/misc-devices/uacce.rst
19278 F:      drivers/misc/uacce/
19279 F:      include/linux/uacce.h
19280 F:      include/uapi/misc/uacce/
19281
19282 UBI FILE SYSTEM (UBIFS)
19283 M:      Richard Weinberger <richard@nod.at>
19284 L:      linux-mtd@lists.infradead.org
19285 S:      Supported
19286 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
19287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19289 F:      Documentation/filesystems/ubifs-authentication.rst
19290 F:      Documentation/filesystems/ubifs.rst
19291 F:      fs/ubifs/
19292
19293 UCLINUX (M68KNOMMU AND COLDFIRE)
19294 M:      Greg Ungerer <gerg@linux-m68k.org>
19295 L:      linux-m68k@lists.linux-m68k.org
19296 L:      uclinux-dev@uclinux.org  (subscribers-only)
19297 S:      Maintained
19298 W:      http://www.linux-m68k.org/
19299 W:      http://www.uclinux.org/
19300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
19301 F:      arch/m68k/*/*_no.*
19302 F:      arch/m68k/68*/
19303 F:      arch/m68k/coldfire/
19304 F:      arch/m68k/include/asm/*_no.*
19305
19306 UDF FILESYSTEM
19307 M:      Jan Kara <jack@suse.com>
19308 S:      Maintained
19309 F:      Documentation/filesystems/udf.rst
19310 F:      fs/udf/
19311
19312 UDRAW TABLET
19313 M:      Bastien Nocera <hadess@hadess.net>
19314 L:      linux-input@vger.kernel.org
19315 S:      Maintained
19316 F:      drivers/hid/hid-udraw-ps3.c
19317
19318 UFS FILESYSTEM
19319 M:      Evgeniy Dushistov <dushistov@mail.ru>
19320 S:      Maintained
19321 F:      Documentation/admin-guide/ufs.rst
19322 F:      fs/ufs/
19323
19324 UHID USERSPACE HID IO DRIVER
19325 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19326 L:      linux-input@vger.kernel.org
19327 S:      Maintained
19328 F:      drivers/hid/uhid.c
19329 F:      include/uapi/linux/uhid.h
19330
19331 ULPI BUS
19332 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19333 L:      linux-usb@vger.kernel.org
19334 S:      Maintained
19335 F:      drivers/usb/common/ulpi.c
19336 F:      include/linux/ulpi/
19337
19338 UNICODE SUBSYSTEM
19339 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
19340 L:      linux-fsdevel@vger.kernel.org
19341 S:      Supported
19342 F:      fs/unicode/
19343
19344 UNIFDEF
19345 M:      Tony Finch <dot@dotat.at>
19346 S:      Maintained
19347 W:      http://dotat.at/prog/unifdef
19348 F:      scripts/unifdef.c
19349
19350 UNIFORM CDROM DRIVER
19351 M:      Phillip Potter <phil@philpotter.co.uk>
19352 S:      Maintained
19353 F:      Documentation/cdrom/
19354 F:      drivers/cdrom/cdrom.c
19355 F:      include/linux/cdrom.h
19356 F:      include/uapi/linux/cdrom.h
19357
19358 UNISYS S-PAR DRIVERS
19359 M:      David Kershner <david.kershner@unisys.com>
19360 L:      sparmaintainer@unisys.com (Unisys internal)
19361 S:      Supported
19362 F:      drivers/staging/unisys/
19363 F:      drivers/visorbus/
19364 F:      include/linux/visorbus.h
19365
19366 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
19367 R:      Alim Akhtar <alim.akhtar@samsung.com>
19368 R:      Avri Altman <avri.altman@wdc.com>
19369 L:      linux-scsi@vger.kernel.org
19370 S:      Supported
19371 F:      Documentation/scsi/ufs.rst
19372 F:      drivers/scsi/ufs/
19373
19374 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
19375 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
19376 L:      linux-scsi@vger.kernel.org
19377 S:      Supported
19378 F:      drivers/scsi/ufs/*dwc*
19379
19380 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
19381 M:      Stanley Chu <stanley.chu@mediatek.com>
19382 L:      linux-scsi@vger.kernel.org
19383 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
19384 S:      Maintained
19385 F:      drivers/scsi/ufs/ufs-mediatek*
19386
19387 UNSORTED BLOCK IMAGES (UBI)
19388 M:      Richard Weinberger <richard@nod.at>
19389 L:      linux-mtd@lists.infradead.org
19390 S:      Supported
19391 W:      http://www.linux-mtd.infradead.org/
19392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19394 F:      drivers/mtd/ubi/
19395 F:      include/linux/mtd/ubi.h
19396 F:      include/uapi/mtd/ubi-user.h
19397
19398 USB "USBNET" DRIVER FRAMEWORK
19399 M:      Oliver Neukum <oneukum@suse.com>
19400 L:      netdev@vger.kernel.org
19401 S:      Maintained
19402 W:      http://www.linux-usb.org/usbnet
19403 F:      drivers/net/usb/usbnet.c
19404 F:      include/linux/usb/usbnet.h
19405
19406 USB ACM DRIVER
19407 M:      Oliver Neukum <oneukum@suse.com>
19408 L:      linux-usb@vger.kernel.org
19409 S:      Maintained
19410 F:      Documentation/usb/acm.rst
19411 F:      drivers/usb/class/cdc-acm.*
19412
19413 USB APPLE MFI FASTCHARGE DRIVER
19414 M:      Bastien Nocera <hadess@hadess.net>
19415 L:      linux-usb@vger.kernel.org
19416 S:      Maintained
19417 F:      drivers/usb/misc/apple-mfi-fastcharge.c
19418
19419 USB AR5523 WIRELESS DRIVER
19420 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
19421 L:      linux-wireless@vger.kernel.org
19422 S:      Maintained
19423 F:      drivers/net/wireless/ath/ar5523/
19424
19425 USB ATTACHED SCSI
19426 M:      Oliver Neukum <oneukum@suse.com>
19427 L:      linux-usb@vger.kernel.org
19428 L:      linux-scsi@vger.kernel.org
19429 S:      Maintained
19430 F:      drivers/usb/storage/uas.c
19431
19432 USB CDC ETHERNET DRIVER
19433 M:      Oliver Neukum <oliver@neukum.org>
19434 L:      linux-usb@vger.kernel.org
19435 S:      Maintained
19436 F:      drivers/net/usb/cdc_*.c
19437 F:      include/uapi/linux/usb/cdc.h
19438
19439 USB CHAOSKEY DRIVER
19440 M:      Keith Packard <keithp@keithp.com>
19441 L:      linux-usb@vger.kernel.org
19442 S:      Maintained
19443 F:      drivers/usb/misc/chaoskey.c
19444
19445 USB CYPRESS C67X00 DRIVER
19446 L:      linux-usb@vger.kernel.org
19447 S:      Orphan
19448 F:      drivers/usb/c67x00/
19449
19450 USB DAVICOM DM9601 DRIVER
19451 M:      Peter Korsgaard <peter@korsgaard.com>
19452 L:      netdev@vger.kernel.org
19453 S:      Maintained
19454 W:      http://www.linux-usb.org/usbnet
19455 F:      drivers/net/usb/dm9601.c
19456
19457 USB EHCI DRIVER
19458 M:      Alan Stern <stern@rowland.harvard.edu>
19459 L:      linux-usb@vger.kernel.org
19460 S:      Maintained
19461 F:      Documentation/usb/ehci.rst
19462 F:      drivers/usb/host/ehci*
19463
19464 USB GADGET/PERIPHERAL SUBSYSTEM
19465 M:      Felipe Balbi <balbi@kernel.org>
19466 L:      linux-usb@vger.kernel.org
19467 S:      Maintained
19468 W:      http://www.linux-usb.org/gadget
19469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19470 F:      drivers/usb/gadget/
19471 F:      include/linux/usb/gadget*
19472
19473 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
19474 M:      Jiri Kosina <jikos@kernel.org>
19475 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
19476 L:      linux-usb@vger.kernel.org
19477 S:      Maintained
19478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
19479 F:      Documentation/hid/hiddev.rst
19480 F:      drivers/hid/usbhid/
19481
19482 USB INTEL XHCI ROLE MUX DRIVER
19483 M:      Hans de Goede <hdegoede@redhat.com>
19484 L:      linux-usb@vger.kernel.org
19485 S:      Maintained
19486 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
19487
19488 USB IP DRIVER FOR HISILICON KIRIN 960
19489 M:      Yu Chen <chenyu56@huawei.com>
19490 M:      Binghui Wang <wangbinghui@hisilicon.com>
19491 L:      linux-usb@vger.kernel.org
19492 S:      Maintained
19493 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
19494 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
19495
19496 USB IP DRIVER FOR HISILICON KIRIN 970
19497 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19498 L:      linux-usb@vger.kernel.org
19499 S:      Maintained
19500 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
19501 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
19502
19503 USB ISP116X DRIVER
19504 M:      Olav Kongas <ok@artecdesign.ee>
19505 L:      linux-usb@vger.kernel.org
19506 S:      Maintained
19507 F:      drivers/usb/host/isp116x*
19508 F:      include/linux/usb/isp116x.h
19509
19510 USB ISP1760 DRIVER
19511 M:      Rui Miguel Silva <rui.silva@linaro.org>
19512 L:      linux-usb@vger.kernel.org
19513 S:      Maintained
19514 F:      drivers/usb/isp1760/*
19515 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
19516
19517 USB LAN78XX ETHERNET DRIVER
19518 M:      Woojung Huh <woojung.huh@microchip.com>
19519 M:      UNGLinuxDriver@microchip.com
19520 L:      netdev@vger.kernel.org
19521 S:      Maintained
19522 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
19523 F:      drivers/net/usb/lan78xx.*
19524 F:      include/dt-bindings/net/microchip-lan78xx.h
19525
19526 USB MASS STORAGE DRIVER
19527 M:      Alan Stern <stern@rowland.harvard.edu>
19528 L:      linux-usb@vger.kernel.org
19529 L:      usb-storage@lists.one-eyed-alien.net
19530 S:      Maintained
19531 F:      drivers/usb/storage/
19532
19533 USB MIDI DRIVER
19534 M:      Clemens Ladisch <clemens@ladisch.de>
19535 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19536 S:      Maintained
19537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19538 F:      sound/usb/midi.*
19539
19540 USB NETWORKING DRIVERS
19541 L:      linux-usb@vger.kernel.org
19542 S:      Odd Fixes
19543 F:      drivers/net/usb/
19544
19545 USB OHCI DRIVER
19546 M:      Alan Stern <stern@rowland.harvard.edu>
19547 L:      linux-usb@vger.kernel.org
19548 S:      Maintained
19549 F:      Documentation/usb/ohci.rst
19550 F:      drivers/usb/host/ohci*
19551
19552 USB OTG FSM (Finite State Machine)
19553 M:      Peter Chen <peter.chen@kernel.org>
19554 L:      linux-usb@vger.kernel.org
19555 S:      Maintained
19556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
19557 F:      drivers/usb/common/usb-otg-fsm.c
19558
19559 USB OVER IP DRIVER
19560 M:      Valentina Manea <valentina.manea.m@gmail.com>
19561 M:      Shuah Khan <shuah@kernel.org>
19562 M:      Shuah Khan <skhan@linuxfoundation.org>
19563 L:      linux-usb@vger.kernel.org
19564 S:      Maintained
19565 F:      Documentation/usb/usbip_protocol.rst
19566 F:      drivers/usb/usbip/
19567 F:      tools/testing/selftests/drivers/usb/usbip/
19568 F:      tools/usb/usbip/
19569
19570 USB PEGASUS DRIVER
19571 M:      Petko Manolov <petkan@nucleusys.com>
19572 L:      linux-usb@vger.kernel.org
19573 L:      netdev@vger.kernel.org
19574 S:      Maintained
19575 W:      https://github.com/petkan/pegasus
19576 T:      git git://github.com/petkan/pegasus.git
19577 F:      drivers/net/usb/pegasus.*
19578
19579 USB PHY LAYER
19580 M:      Felipe Balbi <balbi@kernel.org>
19581 L:      linux-usb@vger.kernel.org
19582 S:      Maintained
19583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19584 F:      drivers/usb/phy/
19585
19586 USB PRINTER DRIVER (usblp)
19587 M:      Pete Zaitcev <zaitcev@redhat.com>
19588 L:      linux-usb@vger.kernel.org
19589 S:      Supported
19590 F:      drivers/usb/class/usblp.c
19591
19592 USB RAW GADGET DRIVER
19593 R:      Andrey Konovalov <andreyknvl@gmail.com>
19594 L:      linux-usb@vger.kernel.org
19595 S:      Maintained
19596 F:      Documentation/usb/raw-gadget.rst
19597 F:      drivers/usb/gadget/legacy/raw_gadget.c
19598 F:      include/uapi/linux/usb/raw_gadget.h
19599
19600 USB QMI WWAN NETWORK DRIVER
19601 M:      Bjørn Mork <bjorn@mork.no>
19602 L:      netdev@vger.kernel.org
19603 S:      Maintained
19604 F:      Documentation/ABI/testing/sysfs-class-net-qmi
19605 F:      drivers/net/usb/qmi_wwan.c
19606
19607 USB RTL8150 DRIVER
19608 M:      Petko Manolov <petkan@nucleusys.com>
19609 L:      linux-usb@vger.kernel.org
19610 L:      netdev@vger.kernel.org
19611 S:      Maintained
19612 W:      https://github.com/petkan/rtl8150
19613 T:      git git://github.com/petkan/rtl8150.git
19614 F:      drivers/net/usb/rtl8150.c
19615
19616 USB SERIAL SUBSYSTEM
19617 M:      Johan Hovold <johan@kernel.org>
19618 L:      linux-usb@vger.kernel.org
19619 S:      Maintained
19620 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
19621 F:      Documentation/usb/usb-serial.rst
19622 F:      drivers/usb/serial/
19623 F:      include/linux/usb/serial.h
19624
19625 USB SMSC75XX ETHERNET DRIVER
19626 M:      Steve Glendinning <steve.glendinning@shawell.net>
19627 L:      netdev@vger.kernel.org
19628 S:      Maintained
19629 F:      drivers/net/usb/smsc75xx.*
19630
19631 USB SMSC95XX ETHERNET DRIVER
19632 M:      Steve Glendinning <steve.glendinning@shawell.net>
19633 M:      UNGLinuxDriver@microchip.com
19634 L:      netdev@vger.kernel.org
19635 S:      Maintained
19636 F:      drivers/net/usb/smsc95xx.*
19637
19638 USB SUBSYSTEM
19639 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19640 L:      linux-usb@vger.kernel.org
19641 S:      Supported
19642 W:      http://www.linux-usb.org
19643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
19644 F:      Documentation/devicetree/bindings/usb/
19645 F:      Documentation/usb/
19646 F:      drivers/usb/
19647 F:      include/linux/usb.h
19648 F:      include/linux/usb/
19649
19650 USB TYPEC BUS FOR ALTERNATE MODES
19651 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19652 L:      linux-usb@vger.kernel.org
19653 S:      Maintained
19654 F:      Documentation/ABI/testing/sysfs-bus-typec
19655 F:      Documentation/driver-api/usb/typec_bus.rst
19656 F:      drivers/usb/typec/altmodes/
19657 F:      include/linux/usb/typec_altmode.h
19658
19659 USB TYPEC CLASS
19660 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19661 L:      linux-usb@vger.kernel.org
19662 S:      Maintained
19663 F:      Documentation/ABI/testing/sysfs-class-typec
19664 F:      Documentation/driver-api/usb/typec.rst
19665 F:      drivers/usb/typec/
19666 F:      include/linux/usb/typec.h
19667
19668 USB TYPEC INTEL PMC MUX DRIVER
19669 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19670 L:      linux-usb@vger.kernel.org
19671 S:      Maintained
19672 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
19673 F:      drivers/usb/typec/mux/intel_pmc_mux.c
19674
19675 USB TYPEC PI3USB30532 MUX DRIVER
19676 M:      Hans de Goede <hdegoede@redhat.com>
19677 L:      linux-usb@vger.kernel.org
19678 S:      Maintained
19679 F:      drivers/usb/typec/mux/pi3usb30532.c
19680
19681 USB TYPEC PORT CONTROLLER DRIVERS
19682 M:      Guenter Roeck <linux@roeck-us.net>
19683 L:      linux-usb@vger.kernel.org
19684 S:      Maintained
19685 F:      drivers/usb/typec/tcpm/
19686
19687 USB UHCI DRIVER
19688 M:      Alan Stern <stern@rowland.harvard.edu>
19689 L:      linux-usb@vger.kernel.org
19690 S:      Maintained
19691 F:      drivers/usb/host/uhci*
19692
19693 USB VIDEO CLASS
19694 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19695 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
19696 L:      linux-media@vger.kernel.org
19697 S:      Maintained
19698 W:      http://www.ideasonboard.org/uvc/
19699 T:      git git://linuxtv.org/media_tree.git
19700 F:      drivers/media/usb/uvc/
19701 F:      include/uapi/linux/uvcvideo.h
19702
19703 USB WEBCAM GADGET
19704 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19705 L:      linux-usb@vger.kernel.org
19706 S:      Maintained
19707 F:      drivers/usb/gadget/function/*uvc*
19708 F:      drivers/usb/gadget/legacy/webcam.c
19709 F:      include/uapi/linux/usb/g_uvc.h
19710
19711 USB WIRELESS RNDIS DRIVER (rndis_wlan)
19712 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
19713 L:      linux-wireless@vger.kernel.org
19714 S:      Maintained
19715 F:      drivers/net/wireless/rndis_wlan.c
19716
19717 USB XHCI DRIVER
19718 M:      Mathias Nyman <mathias.nyman@intel.com>
19719 L:      linux-usb@vger.kernel.org
19720 S:      Supported
19721 F:      drivers/usb/host/pci-quirks*
19722 F:      drivers/usb/host/xhci*
19723
19724 USB ZD1201 DRIVER
19725 L:      linux-wireless@vger.kernel.org
19726 S:      Orphan
19727 W:      http://linux-lc100020.sourceforge.net
19728 F:      drivers/net/wireless/zydas/zd1201.*
19729
19730 USB ZR364XX DRIVER
19731 M:      Antoine Jacquet <royale@zerezo.com>
19732 L:      linux-usb@vger.kernel.org
19733 L:      linux-media@vger.kernel.org
19734 S:      Maintained
19735 W:      http://royale.zerezo.com/zr364xx/
19736 T:      git git://linuxtv.org/media_tree.git
19737 F:      Documentation/admin-guide/media/zr364xx*
19738 F:      drivers/media/usb/zr364xx/
19739
19740 USER-MODE LINUX (UML)
19741 M:      Jeff Dike <jdike@addtoit.com>
19742 M:      Richard Weinberger <richard@nod.at>
19743 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
19744 L:      linux-um@lists.infradead.org
19745 S:      Maintained
19746 W:      http://user-mode-linux.sourceforge.net
19747 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
19748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
19749 F:      Documentation/virt/uml/
19750 F:      arch/um/
19751 F:      arch/x86/um/
19752 F:      fs/hostfs/
19753
19754 USERSPACE COPYIN/COPYOUT (UIOVEC)
19755 M:      Alexander Viro <viro@zeniv.linux.org.uk>
19756 S:      Maintained
19757 F:      include/linux/uio.h
19758 F:      lib/iov_iter.c
19759
19760 USERSPACE DMA BUFFER DRIVER
19761 M:      Gerd Hoffmann <kraxel@redhat.com>
19762 L:      dri-devel@lists.freedesktop.org
19763 S:      Maintained
19764 T:      git git://anongit.freedesktop.org/drm/drm-misc
19765 F:      drivers/dma-buf/udmabuf.c
19766 F:      include/uapi/linux/udmabuf.h
19767
19768 USERSPACE I/O (UIO)
19769 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19770 S:      Maintained
19771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19772 F:      Documentation/driver-api/uio-howto.rst
19773 F:      drivers/uio/
19774 F:      include/linux/uio_driver.h
19775
19776 UTIL-LINUX PACKAGE
19777 M:      Karel Zak <kzak@redhat.com>
19778 L:      util-linux@vger.kernel.org
19779 S:      Maintained
19780 W:      http://en.wikipedia.org/wiki/Util-linux
19781 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
19782
19783 UUID HELPERS
19784 M:      Christoph Hellwig <hch@lst.de>
19785 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19786 L:      linux-kernel@vger.kernel.org
19787 S:      Maintained
19788 T:      git git://git.infradead.org/users/hch/uuid.git
19789 F:      include/linux/uuid.h
19790 F:      include/uapi/linux/uuid.h
19791 F:      lib/test_uuid.c
19792 F:      lib/uuid.c
19793
19794 UV SYSFS DRIVER
19795 M:      Justin Ernst <justin.ernst@hpe.com>
19796 L:      platform-driver-x86@vger.kernel.org
19797 S:      Maintained
19798 F:      drivers/platform/x86/uv_sysfs.c
19799
19800 UVESAFB DRIVER
19801 M:      Michal Januszewski <spock@gentoo.org>
19802 L:      linux-fbdev@vger.kernel.org
19803 S:      Maintained
19804 W:      https://github.com/mjanusz/v86d
19805 F:      Documentation/fb/uvesafb.rst
19806 F:      drivers/video/fbdev/uvesafb.*
19807
19808 Ux500 CLOCK DRIVERS
19809 M:      Ulf Hansson <ulf.hansson@linaro.org>
19810 L:      linux-clk@vger.kernel.org
19811 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19812 S:      Maintained
19813 F:      drivers/clk/ux500/
19814
19815 VF610 NAND DRIVER
19816 M:      Stefan Agner <stefan@agner.ch>
19817 L:      linux-mtd@lists.infradead.org
19818 S:      Supported
19819 F:      drivers/mtd/nand/raw/vf610_nfc.c
19820
19821 VFAT/FAT/MSDOS FILESYSTEM
19822 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
19823 S:      Maintained
19824 F:      Documentation/filesystems/vfat.rst
19825 F:      fs/fat/
19826
19827 VFIO DRIVER
19828 M:      Alex Williamson <alex.williamson@redhat.com>
19829 R:      Cornelia Huck <cohuck@redhat.com>
19830 L:      kvm@vger.kernel.org
19831 S:      Maintained
19832 T:      git git://github.com/awilliam/linux-vfio.git
19833 F:      Documentation/driver-api/vfio.rst
19834 F:      drivers/vfio/
19835 F:      include/linux/vfio.h
19836 F:      include/linux/vfio_pci_core.h
19837 F:      include/uapi/linux/vfio.h
19838
19839 VFIO FSL-MC DRIVER
19840 M:      Diana Craciun <diana.craciun@oss.nxp.com>
19841 L:      kvm@vger.kernel.org
19842 S:      Maintained
19843 F:      drivers/vfio/fsl-mc/
19844
19845 VFIO MEDIATED DEVICE DRIVERS
19846 M:      Kirti Wankhede <kwankhede@nvidia.com>
19847 L:      kvm@vger.kernel.org
19848 S:      Maintained
19849 F:      Documentation/driver-api/vfio-mediated-device.rst
19850 F:      drivers/vfio/mdev/
19851 F:      include/linux/mdev.h
19852 F:      samples/vfio-mdev/
19853
19854 VFIO PLATFORM DRIVER
19855 M:      Eric Auger <eric.auger@redhat.com>
19856 L:      kvm@vger.kernel.org
19857 S:      Maintained
19858 F:      drivers/vfio/platform/
19859
19860 VGA_SWITCHEROO
19861 R:      Lukas Wunner <lukas@wunner.de>
19862 S:      Maintained
19863 T:      git git://anongit.freedesktop.org/drm/drm-misc
19864 F:      Documentation/gpu/vga-switcheroo.rst
19865 F:      drivers/gpu/vga/vga_switcheroo.c
19866 F:      include/linux/vga_switcheroo.h
19867
19868 VIA RHINE NETWORK DRIVER
19869 S:      Maintained
19870 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
19871 F:      drivers/net/ethernet/via/via-rhine.c
19872
19873 VIA SD/MMC CARD CONTROLLER DRIVER
19874 M:      Bruce Chang <brucechang@via.com.tw>
19875 M:      Harald Welte <HaraldWelte@viatech.com>
19876 S:      Maintained
19877 F:      drivers/mmc/host/via-sdmmc.c
19878
19879 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
19880 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
19881 L:      linux-fbdev@vger.kernel.org
19882 S:      Maintained
19883 F:      drivers/video/fbdev/via/
19884 F:      include/linux/via-core.h
19885 F:      include/linux/via-gpio.h
19886 F:      include/linux/via_i2c.h
19887
19888 VIA VELOCITY NETWORK DRIVER
19889 M:      Francois Romieu <romieu@fr.zoreil.com>
19890 L:      netdev@vger.kernel.org
19891 S:      Maintained
19892 F:      drivers/net/ethernet/via/via-velocity.*
19893
19894 VICODEC VIRTUAL CODEC DRIVER
19895 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
19896 L:      linux-media@vger.kernel.org
19897 S:      Maintained
19898 W:      https://linuxtv.org
19899 T:      git git://linuxtv.org/media_tree.git
19900 F:      drivers/media/test-drivers/vicodec/*
19901
19902 VIDEO I2C POLLING DRIVER
19903 M:      Matt Ranostay <matt.ranostay@konsulko.com>
19904 L:      linux-media@vger.kernel.org
19905 S:      Maintained
19906 F:      drivers/media/i2c/video-i2c.c
19907
19908 VIDEO MULTIPLEXER DRIVER
19909 M:      Philipp Zabel <p.zabel@pengutronix.de>
19910 L:      linux-media@vger.kernel.org
19911 S:      Maintained
19912 F:      drivers/media/platform/video-mux.c
19913
19914 VIDEOBUF2 FRAMEWORK
19915 M:      Tomasz Figa <tfiga@chromium.org>
19916 M:      Marek Szyprowski <m.szyprowski@samsung.com>
19917 L:      linux-media@vger.kernel.org
19918 S:      Maintained
19919 F:      drivers/media/common/videobuf2/*
19920 F:      include/media/videobuf2-*
19921
19922 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
19923 M:      Helen Koike <helen.koike@collabora.com>
19924 R:      Shuah Khan <skhan@linuxfoundation.org>
19925 L:      linux-media@vger.kernel.org
19926 S:      Maintained
19927 W:      https://linuxtv.org
19928 T:      git git://linuxtv.org/media_tree.git
19929 F:      drivers/media/test-drivers/vimc/*
19930
19931 VIRT LIB
19932 M:      Alex Williamson <alex.williamson@redhat.com>
19933 M:      Paolo Bonzini <pbonzini@redhat.com>
19934 L:      kvm@vger.kernel.org
19935 S:      Supported
19936 F:      virt/lib/
19937
19938 VIRTIO AND VHOST VSOCK DRIVER
19939 M:      Stefan Hajnoczi <stefanha@redhat.com>
19940 M:      Stefano Garzarella <sgarzare@redhat.com>
19941 L:      kvm@vger.kernel.org
19942 L:      virtualization@lists.linux-foundation.org
19943 L:      netdev@vger.kernel.org
19944 S:      Maintained
19945 F:      drivers/vhost/vsock.c
19946 F:      include/linux/virtio_vsock.h
19947 F:      include/uapi/linux/virtio_vsock.h
19948 F:      net/vmw_vsock/virtio_transport.c
19949 F:      net/vmw_vsock/virtio_transport_common.c
19950
19951 VIRTIO BLOCK AND SCSI DRIVERS
19952 M:      "Michael S. Tsirkin" <mst@redhat.com>
19953 M:      Jason Wang <jasowang@redhat.com>
19954 R:      Paolo Bonzini <pbonzini@redhat.com>
19955 R:      Stefan Hajnoczi <stefanha@redhat.com>
19956 L:      virtualization@lists.linux-foundation.org
19957 S:      Maintained
19958 F:      drivers/block/virtio_blk.c
19959 F:      drivers/scsi/virtio_scsi.c
19960 F:      drivers/vhost/scsi.c
19961 F:      include/uapi/linux/virtio_blk.h
19962 F:      include/uapi/linux/virtio_scsi.h
19963
19964 VIRTIO CONSOLE DRIVER
19965 M:      Amit Shah <amit@kernel.org>
19966 L:      virtualization@lists.linux-foundation.org
19967 S:      Maintained
19968 F:      drivers/char/virtio_console.c
19969 F:      include/linux/virtio_console.h
19970 F:      include/uapi/linux/virtio_console.h
19971
19972 VIRTIO CORE AND NET DRIVERS
19973 M:      "Michael S. Tsirkin" <mst@redhat.com>
19974 M:      Jason Wang <jasowang@redhat.com>
19975 L:      virtualization@lists.linux-foundation.org
19976 S:      Maintained
19977 F:      Documentation/devicetree/bindings/virtio/
19978 F:      drivers/block/virtio_blk.c
19979 F:      drivers/crypto/virtio/
19980 F:      drivers/net/virtio_net.c
19981 F:      drivers/vdpa/
19982 F:      drivers/virtio/
19983 F:      include/linux/vdpa.h
19984 F:      include/linux/virtio*.h
19985 F:      include/uapi/linux/virtio_*.h
19986 F:      tools/virtio/
19987
19988 VIRTIO BALLOON
19989 M:      "Michael S. Tsirkin" <mst@redhat.com>
19990 M:      David Hildenbrand <david@redhat.com>
19991 L:      virtualization@lists.linux-foundation.org
19992 S:      Maintained
19993 F:      drivers/virtio/virtio_balloon.c
19994 F:      include/uapi/linux/virtio_balloon.h
19995 F:      include/linux/balloon_compaction.h
19996 F:      mm/balloon_compaction.c
19997
19998 VIRTIO CRYPTO DRIVER
19999 M:      Gonglei <arei.gonglei@huawei.com>
20000 L:      virtualization@lists.linux-foundation.org
20001 L:      linux-crypto@vger.kernel.org
20002 S:      Maintained
20003 F:      drivers/crypto/virtio/
20004 F:      include/uapi/linux/virtio_crypto.h
20005
20006 VIRTIO DRIVERS FOR S390
20007 M:      Cornelia Huck <cohuck@redhat.com>
20008 M:      Halil Pasic <pasic@linux.ibm.com>
20009 L:      linux-s390@vger.kernel.org
20010 L:      virtualization@lists.linux-foundation.org
20011 L:      kvm@vger.kernel.org
20012 S:      Supported
20013 F:      arch/s390/include/uapi/asm/virtio-ccw.h
20014 F:      drivers/s390/virtio/
20015
20016 VIRTIO FILE SYSTEM
20017 M:      Vivek Goyal <vgoyal@redhat.com>
20018 M:      Stefan Hajnoczi <stefanha@redhat.com>
20019 M:      Miklos Szeredi <miklos@szeredi.hu>
20020 L:      virtualization@lists.linux-foundation.org
20021 L:      linux-fsdevel@vger.kernel.org
20022 S:      Supported
20023 W:      https://virtio-fs.gitlab.io/
20024 F:      Documentation/filesystems/virtiofs.rst
20025 F:      fs/fuse/virtio_fs.c
20026 F:      include/uapi/linux/virtio_fs.h
20027
20028 VIRTIO GPIO DRIVER
20029 M:      Enrico Weigelt, metux IT consult <info@metux.net>
20030 M:      Viresh Kumar <vireshk@kernel.org>
20031 L:      linux-gpio@vger.kernel.org
20032 L:      virtualization@lists.linux-foundation.org
20033 S:      Maintained
20034 F:      drivers/gpio/gpio-virtio.c
20035 F:      include/uapi/linux/virtio_gpio.h
20036
20037 VIRTIO GPU DRIVER
20038 M:      David Airlie <airlied@linux.ie>
20039 M:      Gerd Hoffmann <kraxel@redhat.com>
20040 L:      dri-devel@lists.freedesktop.org
20041 L:      virtualization@lists.linux-foundation.org
20042 S:      Maintained
20043 T:      git git://anongit.freedesktop.org/drm/drm-misc
20044 F:      drivers/gpu/drm/virtio/
20045 F:      include/uapi/linux/virtio_gpu.h
20046
20047 VIRTIO HOST (VHOST)
20048 M:      "Michael S. Tsirkin" <mst@redhat.com>
20049 M:      Jason Wang <jasowang@redhat.com>
20050 L:      kvm@vger.kernel.org
20051 L:      virtualization@lists.linux-foundation.org
20052 L:      netdev@vger.kernel.org
20053 S:      Maintained
20054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
20055 F:      drivers/vhost/
20056 F:      include/linux/vhost_iotlb.h
20057 F:      include/uapi/linux/vhost.h
20058
20059 VIRTIO INPUT DRIVER
20060 M:      Gerd Hoffmann <kraxel@redhat.com>
20061 S:      Maintained
20062 F:      drivers/virtio/virtio_input.c
20063 F:      include/uapi/linux/virtio_input.h
20064
20065 VIRTIO IOMMU DRIVER
20066 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
20067 L:      virtualization@lists.linux-foundation.org
20068 S:      Maintained
20069 F:      drivers/iommu/virtio-iommu.c
20070 F:      include/uapi/linux/virtio_iommu.h
20071
20072 VIRTIO MEM DRIVER
20073 M:      David Hildenbrand <david@redhat.com>
20074 L:      virtualization@lists.linux-foundation.org
20075 S:      Maintained
20076 W:      https://virtio-mem.gitlab.io/
20077 F:      drivers/virtio/virtio_mem.c
20078 F:      include/uapi/linux/virtio_mem.h
20079
20080 VIRTIO SOUND DRIVER
20081 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
20082 M:      "Michael S. Tsirkin" <mst@redhat.com>
20083 L:      virtualization@lists.linux-foundation.org
20084 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20085 S:      Maintained
20086 F:      include/uapi/linux/virtio_snd.h
20087 F:      sound/virtio/*
20088
20089 VIRTIO I2C DRIVER
20090 M:      Jie Deng <jie.deng@intel.com>
20091 M:      Viresh Kumar <viresh.kumar@linaro.org>
20092 L:      linux-i2c@vger.kernel.org
20093 L:      virtualization@lists.linux-foundation.org
20094 S:      Maintained
20095 F:      drivers/i2c/busses/i2c-virtio.c
20096 F:      include/uapi/linux/virtio_i2c.h
20097
20098 VIRTIO PMEM DRIVER
20099 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
20100 L:      virtualization@lists.linux-foundation.org
20101 S:      Maintained
20102 F:      drivers/nvdimm/virtio_pmem.c
20103 F:      drivers/nvdimm/nd_virtio.c
20104
20105 VIRTUAL BOX GUEST DEVICE DRIVER
20106 M:      Hans de Goede <hdegoede@redhat.com>
20107 M:      Arnd Bergmann <arnd@arndb.de>
20108 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20109 S:      Maintained
20110 F:      drivers/virt/vboxguest/
20111 F:      include/linux/vbox_utils.h
20112 F:      include/uapi/linux/vbox*.h
20113
20114 VIRTUAL BOX SHARED FOLDER VFS DRIVER
20115 M:      Hans de Goede <hdegoede@redhat.com>
20116 L:      linux-fsdevel@vger.kernel.org
20117 S:      Maintained
20118 F:      fs/vboxsf/*
20119
20120 VIRTUAL SERIO DEVICE DRIVER
20121 M:      Stephen Chandler Paul <thatslyude@gmail.com>
20122 S:      Maintained
20123 F:      drivers/input/serio/userio.c
20124 F:      include/uapi/linux/userio.h
20125
20126 VIVID VIRTUAL VIDEO DRIVER
20127 M:      Hans Verkuil <hverkuil@xs4all.nl>
20128 L:      linux-media@vger.kernel.org
20129 S:      Maintained
20130 W:      https://linuxtv.org
20131 T:      git git://linuxtv.org/media_tree.git
20132 F:      drivers/media/test-drivers/vivid/*
20133
20134 VIDTV VIRTUAL DIGITAL TV DRIVER
20135 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
20136 L:      linux-media@vger.kernel.org
20137 S:      Maintained
20138 W:      https://linuxtv.org
20139 T:      git git://linuxtv.org/media_tree.git
20140 F:      drivers/media/test-drivers/vidtv/*
20141
20142 VLYNQ BUS
20143 M:      Florian Fainelli <f.fainelli@gmail.com>
20144 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
20145 S:      Maintained
20146 F:      drivers/vlynq/vlynq.c
20147 F:      include/linux/vlynq.h
20148
20149 VME SUBSYSTEM
20150 M:      Martyn Welch <martyn@welchs.me.uk>
20151 M:      Manohar Vanga <manohar.vanga@gmail.com>
20152 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20153 L:      linux-kernel@vger.kernel.org
20154 S:      Maintained
20155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20156 F:      Documentation/driver-api/vme.rst
20157 F:      drivers/staging/vme/
20158 F:      drivers/vme/
20159 F:      include/linux/vme*
20160
20161 VM SOCKETS (AF_VSOCK)
20162 M:      Stefano Garzarella <sgarzare@redhat.com>
20163 L:      virtualization@lists.linux-foundation.org
20164 L:      netdev@vger.kernel.org
20165 S:      Maintained
20166 F:      drivers/net/vsockmon.c
20167 F:      include/net/af_vsock.h
20168 F:      include/uapi/linux/vm_sockets.h
20169 F:      include/uapi/linux/vm_sockets_diag.h
20170 F:      include/uapi/linux/vsockmon.h
20171 F:      net/vmw_vsock/
20172 F:      tools/testing/vsock/
20173
20174 VMWARE BALLOON DRIVER
20175 M:      Nadav Amit <namit@vmware.com>
20176 M:      "VMware, Inc." <pv-drivers@vmware.com>
20177 L:      linux-kernel@vger.kernel.org
20178 S:      Maintained
20179 F:      drivers/misc/vmw_balloon.c
20180
20181 VMWARE HYPERVISOR INTERFACE
20182 M:      Deep Shah <sdeep@vmware.com>
20183 M:      "VMware, Inc." <pv-drivers@vmware.com>
20184 L:      virtualization@lists.linux-foundation.org
20185 S:      Supported
20186 F:      arch/x86/include/asm/vmware.h
20187 F:      arch/x86/kernel/cpu/vmware.c
20188
20189 VMWARE PVRDMA DRIVER
20190 M:      Adit Ranadive <aditr@vmware.com>
20191 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20192 L:      linux-rdma@vger.kernel.org
20193 S:      Maintained
20194 F:      drivers/infiniband/hw/vmw_pvrdma/
20195
20196 VMware PVSCSI driver
20197 M:      Vishal Bhakta <vbhakta@vmware.com>
20198 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20199 L:      linux-scsi@vger.kernel.org
20200 S:      Maintained
20201 F:      drivers/scsi/vmw_pvscsi.c
20202 F:      drivers/scsi/vmw_pvscsi.h
20203
20204 VMWARE VIRTUAL PTP CLOCK DRIVER
20205 M:      Vivek Thampi <vithampi@vmware.com>
20206 M:      "VMware, Inc." <pv-drivers@vmware.com>
20207 L:      netdev@vger.kernel.org
20208 S:      Supported
20209 F:      drivers/ptp/ptp_vmw.c
20210
20211 VMWARE VMCI DRIVER
20212 M:      Jorgen Hansen <jhansen@vmware.com>
20213 M:      Vishnu Dasa <vdasa@vmware.com>
20214 L:      linux-kernel@vger.kernel.org
20215 L:      pv-drivers@vmware.com (private)
20216 S:      Maintained
20217 F:      drivers/misc/vmw_vmci/
20218
20219 VMWARE VMMOUSE SUBDRIVER
20220 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
20221 M:      "VMware, Inc." <pv-drivers@vmware.com>
20222 L:      linux-input@vger.kernel.org
20223 S:      Maintained
20224 F:      drivers/input/mouse/vmmouse.c
20225 F:      drivers/input/mouse/vmmouse.h
20226
20227 VMWARE VMXNET3 ETHERNET DRIVER
20228 M:      Ronak Doshi <doshir@vmware.com>
20229 M:      pv-drivers@vmware.com
20230 L:      netdev@vger.kernel.org
20231 S:      Maintained
20232 F:      drivers/net/vmxnet3/
20233
20234 VOCORE VOCORE2 BOARD
20235 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
20236 L:      linux-mips@vger.kernel.org
20237 S:      Maintained
20238 F:      arch/mips/boot/dts/ralink/vocore2.dts
20239
20240 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
20241 M:      Liam Girdwood <lgirdwood@gmail.com>
20242 M:      Mark Brown <broonie@kernel.org>
20243 L:      linux-kernel@vger.kernel.org
20244 S:      Supported
20245 W:      http://www.slimlogic.co.uk/?p=48
20246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
20247 F:      Documentation/devicetree/bindings/regulator/
20248 F:      Documentation/power/regulator/
20249 F:      drivers/regulator/
20250 F:      include/dt-bindings/regulator/
20251 F:      include/linux/regulator/
20252 K:      regulator_get_optional
20253
20254 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
20255 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
20256 F:      drivers/regulator/irq_helpers.c
20257
20258 VRF
20259 M:      David Ahern <dsahern@kernel.org>
20260 L:      netdev@vger.kernel.org
20261 S:      Maintained
20262 F:      Documentation/networking/vrf.rst
20263 F:      drivers/net/vrf.c
20264
20265 VSPRINTF
20266 M:      Petr Mladek <pmladek@suse.com>
20267 M:      Steven Rostedt <rostedt@goodmis.org>
20268 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
20269 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20270 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
20271 S:      Maintained
20272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
20273 F:      Documentation/core-api/printk-formats.rst
20274 F:      lib/test_printf.c
20275 F:      lib/test_scanf.c
20276 F:      lib/vsprintf.c
20277
20278 VT1211 HARDWARE MONITOR DRIVER
20279 M:      Juerg Haefliger <juergh@gmail.com>
20280 L:      linux-hwmon@vger.kernel.org
20281 S:      Maintained
20282 F:      Documentation/hwmon/vt1211.rst
20283 F:      drivers/hwmon/vt1211.c
20284
20285 VT8231 HARDWARE MONITOR DRIVER
20286 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
20287 L:      linux-hwmon@vger.kernel.org
20288 S:      Maintained
20289 F:      drivers/hwmon/vt8231.c
20290
20291 VUB300 USB to SDIO/SD/MMC bridge chip
20292 L:      linux-mmc@vger.kernel.org
20293 S:      Orphan
20294 F:      drivers/mmc/host/vub300.c
20295
20296 W1 DALLAS'S 1-WIRE BUS
20297 M:      Evgeniy Polyakov <zbr@ioremap.net>
20298 S:      Maintained
20299 F:      Documentation/devicetree/bindings/w1/
20300 F:      Documentation/w1/
20301 F:      drivers/w1/
20302 F:      include/linux/w1.h
20303
20304 W83791D HARDWARE MONITORING DRIVER
20305 M:      Marc Hulsman <m.hulsman@tudelft.nl>
20306 L:      linux-hwmon@vger.kernel.org
20307 S:      Maintained
20308 F:      Documentation/hwmon/w83791d.rst
20309 F:      drivers/hwmon/w83791d.c
20310
20311 W83793 HARDWARE MONITORING DRIVER
20312 M:      Rudolf Marek <r.marek@assembler.cz>
20313 L:      linux-hwmon@vger.kernel.org
20314 S:      Maintained
20315 F:      Documentation/hwmon/w83793.rst
20316 F:      drivers/hwmon/w83793.c
20317
20318 W83795 HARDWARE MONITORING DRIVER
20319 M:      Jean Delvare <jdelvare@suse.com>
20320 L:      linux-hwmon@vger.kernel.org
20321 S:      Maintained
20322 F:      drivers/hwmon/w83795.c
20323
20324 W83L51xD SD/MMC CARD INTERFACE DRIVER
20325 M:      Pierre Ossman <pierre@ossman.eu>
20326 S:      Maintained
20327 F:      drivers/mmc/host/wbsd.*
20328
20329 WACOM PROTOCOL 4 SERIAL TABLETS
20330 M:      Julian Squires <julian@cipht.net>
20331 M:      Hans de Goede <hdegoede@redhat.com>
20332 L:      linux-input@vger.kernel.org
20333 S:      Maintained
20334 F:      drivers/input/tablet/wacom_serial4.c
20335
20336 WATCHDOG DEVICE DRIVERS
20337 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
20338 M:      Guenter Roeck <linux@roeck-us.net>
20339 L:      linux-watchdog@vger.kernel.org
20340 S:      Maintained
20341 W:      http://www.linux-watchdog.org/
20342 T:      git git://www.linux-watchdog.org/linux-watchdog.git
20343 F:      Documentation/devicetree/bindings/watchdog/
20344 F:      Documentation/watchdog/
20345 F:      drivers/watchdog/
20346 F:      include/linux/watchdog.h
20347 F:      include/uapi/linux/watchdog.h
20348
20349 WHISKEYCOVE PMIC GPIO DRIVER
20350 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
20351 L:      linux-gpio@vger.kernel.org
20352 S:      Maintained
20353 F:      drivers/gpio/gpio-wcove.c
20354
20355 WHWAVE RTC DRIVER
20356 M:      Dianlong Li <long17.cool@163.com>
20357 L:      linux-rtc@vger.kernel.org
20358 S:      Maintained
20359 F:      drivers/rtc/rtc-sd3078.c
20360
20361 WIIMOTE HID DRIVER
20362 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20363 L:      linux-input@vger.kernel.org
20364 S:      Maintained
20365 F:      drivers/hid/hid-wiimote*
20366
20367 WILOCITY WIL6210 WIRELESS DRIVER
20368 M:      Maya Erez <merez@codeaurora.org>
20369 L:      linux-wireless@vger.kernel.org
20370 L:      wil6210@qti.qualcomm.com
20371 S:      Supported
20372 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
20373 F:      drivers/net/wireless/ath/wil6210/
20374
20375 WINBOND CIR DRIVER
20376 M:      David Härdeman <david@hardeman.nu>
20377 S:      Maintained
20378 F:      drivers/media/rc/winbond-cir.c
20379
20380 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
20381 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20382 L:      linux-watchdog@vger.kernel.org
20383 S:      Maintained
20384 F:      drivers/watchdog/ebc-c384_wdt.c
20385
20386 WINSYSTEMS WS16C48 GPIO DRIVER
20387 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20388 L:      linux-gpio@vger.kernel.org
20389 S:      Maintained
20390 F:      drivers/gpio/gpio-ws16c48.c
20391
20392 WIREGUARD SECURE NETWORK TUNNEL
20393 M:      Jason A. Donenfeld <Jason@zx2c4.com>
20394 L:      wireguard@lists.zx2c4.com
20395 L:      netdev@vger.kernel.org
20396 S:      Maintained
20397 F:      drivers/net/wireguard/
20398 F:      tools/testing/selftests/wireguard/
20399
20400 WISTRON LAPTOP BUTTON DRIVER
20401 M:      Miloslav Trmac <mitr@volny.cz>
20402 S:      Maintained
20403 F:      drivers/input/misc/wistron_btns.c
20404
20405 WL3501 WIRELESS PCMCIA CARD DRIVER
20406 L:      linux-wireless@vger.kernel.org
20407 S:      Odd fixes
20408 F:      drivers/net/wireless/wl3501*
20409
20410 WOLFSON MICROELECTRONICS DRIVERS
20411 L:      patches@opensource.cirrus.com
20412 S:      Supported
20413 W:      https://github.com/CirrusLogic/linux-drivers/wiki
20414 T:      git https://github.com/CirrusLogic/linux-drivers.git
20415 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
20416 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
20417 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
20418 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
20419 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
20420 F:      Documentation/devicetree/bindings/sound/wm*
20421 F:      Documentation/hwmon/wm83??.rst
20422 F:      arch/arm/mach-s3c/mach-crag6410*
20423 F:      drivers/clk/clk-wm83*.c
20424 F:      drivers/gpio/gpio-*wm*.c
20425 F:      drivers/gpio/gpio-arizona.c
20426 F:      drivers/hwmon/wm83??-hwmon.c
20427 F:      drivers/input/misc/wm831x-on.c
20428 F:      drivers/input/touchscreen/wm831x-ts.c
20429 F:      drivers/input/touchscreen/wm97*.c
20430 F:      drivers/leds/leds-wm83*.c
20431 F:      drivers/mfd/arizona*
20432 F:      drivers/mfd/cs47l24*
20433 F:      drivers/mfd/wm*.c
20434 F:      drivers/power/supply/wm83*.c
20435 F:      drivers/regulator/arizona*
20436 F:      drivers/regulator/wm8*.c
20437 F:      drivers/rtc/rtc-wm83*.c
20438 F:      drivers/video/backlight/wm83*_bl.c
20439 F:      drivers/watchdog/wm83*_wdt.c
20440 F:      include/linux/mfd/arizona/
20441 F:      include/linux/mfd/wm831x/
20442 F:      include/linux/mfd/wm8350/
20443 F:      include/linux/mfd/wm8400*
20444 F:      include/linux/regulator/arizona*
20445 F:      include/linux/wm97xx.h
20446 F:      include/sound/wm????.h
20447 F:      sound/soc/codecs/arizona*
20448 F:      sound/soc/codecs/cs47l24*
20449 F:      sound/soc/codecs/wm*
20450
20451 WORKQUEUE
20452 M:      Tejun Heo <tj@kernel.org>
20453 R:      Lai Jiangshan <jiangshanlai@gmail.com>
20454 S:      Maintained
20455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
20456 F:      Documentation/core-api/workqueue.rst
20457 F:      include/linux/workqueue.h
20458 F:      kernel/workqueue.c
20459
20460 WWAN DRIVERS
20461 M:      Loic Poulain <loic.poulain@linaro.org>
20462 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
20463 R:      Johannes Berg <johannes@sipsolutions.net>
20464 L:      netdev@vger.kernel.org
20465 S:      Maintained
20466 F:      drivers/net/wwan/
20467 F:      include/linux/wwan.h
20468 F:      include/uapi/linux/wwan.h
20469
20470 X-POWERS AXP288 PMIC DRIVERS
20471 M:      Hans de Goede <hdegoede@redhat.com>
20472 S:      Maintained
20473 F:      drivers/acpi/pmic/intel_pmic_xpower.c
20474 N:      axp288
20475
20476 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
20477 M:      Chen-Yu Tsai <wens@csie.org>
20478 L:      linux-kernel@vger.kernel.org
20479 S:      Maintained
20480 N:      axp[128]
20481
20482 X.25 STACK
20483 M:      Martin Schiller <ms@dev.tdt.de>
20484 L:      linux-x25@vger.kernel.org
20485 S:      Maintained
20486 F:      Documentation/networking/lapb-module.rst
20487 F:      Documentation/networking/x25*
20488 F:      drivers/net/wan/hdlc_x25.c
20489 F:      drivers/net/wan/lapbether.c
20490 F:      include/*/lapb.h
20491 F:      include/net/x25*
20492 F:      include/uapi/linux/x25.h
20493 F:      net/lapb/
20494 F:      net/x25/
20495
20496 X86 ARCHITECTURE (32-BIT AND 64-BIT)
20497 M:      Thomas Gleixner <tglx@linutronix.de>
20498 M:      Ingo Molnar <mingo@redhat.com>
20499 M:      Borislav Petkov <bp@alien8.de>
20500 M:      Dave Hansen <dave.hansen@linux.intel.com>
20501 M:      x86@kernel.org
20502 R:      "H. Peter Anvin" <hpa@zytor.com>
20503 L:      linux-kernel@vger.kernel.org
20504 S:      Maintained
20505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20506 F:      Documentation/devicetree/bindings/x86/
20507 F:      Documentation/x86/
20508 F:      arch/x86/
20509
20510 X86 ENTRY CODE
20511 M:      Andy Lutomirski <luto@kernel.org>
20512 L:      linux-kernel@vger.kernel.org
20513 S:      Maintained
20514 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
20515 F:      arch/x86/entry/
20516
20517 X86 MCE INFRASTRUCTURE
20518 M:      Tony Luck <tony.luck@intel.com>
20519 M:      Borislav Petkov <bp@alien8.de>
20520 L:      linux-edac@vger.kernel.org
20521 S:      Maintained
20522 F:      arch/x86/kernel/cpu/mce/*
20523
20524 X86 MICROCODE UPDATE SUPPORT
20525 M:      Borislav Petkov <bp@alien8.de>
20526 S:      Maintained
20527 F:      arch/x86/kernel/cpu/microcode/*
20528
20529 X86 MM
20530 M:      Dave Hansen <dave.hansen@linux.intel.com>
20531 M:      Andy Lutomirski <luto@kernel.org>
20532 M:      Peter Zijlstra <peterz@infradead.org>
20533 L:      linux-kernel@vger.kernel.org
20534 S:      Maintained
20535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
20536 F:      arch/x86/mm/
20537
20538 X86 PLATFORM DRIVERS
20539 M:      Hans de Goede <hdegoede@redhat.com>
20540 M:      Mark Gross <markgross@kernel.org>
20541 L:      platform-driver-x86@vger.kernel.org
20542 S:      Maintained
20543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
20544 F:      drivers/platform/olpc/
20545 F:      drivers/platform/x86/
20546
20547 X86 PLATFORM DRIVERS - ARCH
20548 R:      Darren Hart <dvhart@infradead.org>
20549 R:      Andy Shevchenko <andy@infradead.org>
20550 L:      platform-driver-x86@vger.kernel.org
20551 L:      x86@kernel.org
20552 S:      Maintained
20553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20554 F:      arch/x86/platform
20555
20556 X86 PLATFORM UV HPE SUPERDOME FLEX
20557 M:      Steve Wahl <steve.wahl@hpe.com>
20558 R:      Mike Travis <mike.travis@hpe.com>
20559 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
20560 R:      Russ Anderson <russ.anderson@hpe.com>
20561 S:      Supported
20562 F:      arch/x86/include/asm/uv/
20563 F:      arch/x86/kernel/apic/x2apic_uv_x.c
20564 F:      arch/x86/platform/uv/
20565
20566 X86 VDSO
20567 M:      Andy Lutomirski <luto@kernel.org>
20568 L:      linux-kernel@vger.kernel.org
20569 S:      Maintained
20570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
20571 F:      arch/x86/entry/vdso/
20572
20573 XARRAY
20574 M:      Matthew Wilcox <willy@infradead.org>
20575 L:      linux-fsdevel@vger.kernel.org
20576 S:      Supported
20577 F:      Documentation/core-api/xarray.rst
20578 F:      include/linux/idr.h
20579 F:      include/linux/xarray.h
20580 F:      lib/idr.c
20581 F:      lib/xarray.c
20582 F:      tools/testing/radix-tree
20583
20584 XBOX DVD IR REMOTE
20585 M:      Benjamin Valentin <benpicco@googlemail.com>
20586 S:      Maintained
20587 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
20588 F:      drivers/media/rc/xbox_remote.c
20589
20590 XC2028/3028 TUNER DRIVER
20591 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20592 L:      linux-media@vger.kernel.org
20593 S:      Maintained
20594 W:      https://linuxtv.org
20595 T:      git git://linuxtv.org/media_tree.git
20596 F:      drivers/media/tuners/tuner-xc2028.*
20597
20598 XDP (eXpress Data Path)
20599 M:      Alexei Starovoitov <ast@kernel.org>
20600 M:      Daniel Borkmann <daniel@iogearbox.net>
20601 M:      David S. Miller <davem@davemloft.net>
20602 M:      Jakub Kicinski <kuba@kernel.org>
20603 M:      Jesper Dangaard Brouer <hawk@kernel.org>
20604 M:      John Fastabend <john.fastabend@gmail.com>
20605 L:      netdev@vger.kernel.org
20606 L:      bpf@vger.kernel.org
20607 S:      Supported
20608 F:      include/net/xdp.h
20609 F:      include/net/xdp_priv.h
20610 F:      include/trace/events/xdp.h
20611 F:      kernel/bpf/cpumap.c
20612 F:      kernel/bpf/devmap.c
20613 F:      net/core/xdp.c
20614 F:      samples/bpf/xdp*
20615 F:      tools/testing/selftests/bpf/*xdp*
20616 F:      tools/testing/selftests/bpf/*/*xdp*
20617 F:      drivers/net/ethernet/*/*/*/*/*xdp*
20618 F:      drivers/net/ethernet/*/*/*xdp*
20619 K:      (?:\b|_)xdp(?:\b|_)
20620
20621 XDP SOCKETS (AF_XDP)
20622 M:      Björn Töpel <bjorn@kernel.org>
20623 M:      Magnus Karlsson <magnus.karlsson@intel.com>
20624 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
20625 L:      netdev@vger.kernel.org
20626 L:      bpf@vger.kernel.org
20627 S:      Maintained
20628 F:      Documentation/networking/af_xdp.rst
20629 F:      include/net/xdp_sock*
20630 F:      include/net/xsk_buff_pool.h
20631 F:      include/uapi/linux/if_xdp.h
20632 F:      include/uapi/linux/xdp_diag.h
20633 F:      include/net/netns/xdp.h
20634 F:      net/xdp/
20635 F:      samples/bpf/xdpsock*
20636 F:      tools/lib/bpf/xsk*
20637
20638 XEN BLOCK SUBSYSTEM
20639 M:      Roger Pau Monné <roger.pau@citrix.com>
20640 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20641 S:      Supported
20642 F:      drivers/block/xen*
20643 F:      drivers/block/xen-blkback/*
20644
20645 XEN HYPERVISOR ARM
20646 M:      Stefano Stabellini <sstabellini@kernel.org>
20647 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20648 S:      Maintained
20649 F:      arch/arm/include/asm/xen/
20650 F:      arch/arm/xen/
20651
20652 XEN HYPERVISOR ARM64
20653 M:      Stefano Stabellini <sstabellini@kernel.org>
20654 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20655 S:      Maintained
20656 F:      arch/arm64/include/asm/xen/
20657 F:      arch/arm64/xen/
20658
20659 XEN HYPERVISOR INTERFACE
20660 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
20661 M:      Juergen Gross <jgross@suse.com>
20662 R:      Stefano Stabellini <sstabellini@kernel.org>
20663 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20664 S:      Supported
20665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
20666 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
20667 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
20668 F:      arch/x86/include/asm/pvclock-abi.h
20669 F:      arch/x86/include/asm/xen/
20670 F:      arch/x86/platform/pvh/
20671 F:      arch/x86/xen/
20672 F:      drivers/*/xen-*front.c
20673 F:      drivers/xen/
20674 F:      include/uapi/xen/
20675 F:      include/xen/
20676
20677 XEN NETWORK BACKEND DRIVER
20678 M:      Wei Liu <wei.liu@kernel.org>
20679 M:      Paul Durrant <paul@xen.org>
20680 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20681 L:      netdev@vger.kernel.org
20682 S:      Supported
20683 F:      drivers/net/xen-netback/*
20684
20685 XEN PCI SUBSYSTEM
20686 M:      Juergen Gross <jgross@suse.com>
20687 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20688 S:      Supported
20689 F:      arch/x86/pci/*xen*
20690 F:      drivers/pci/*xen*
20691
20692 XEN PVSCSI DRIVERS
20693 M:      Juergen Gross <jgross@suse.com>
20694 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20695 L:      linux-scsi@vger.kernel.org
20696 S:      Supported
20697 F:      drivers/scsi/xen-scsifront.c
20698 F:      drivers/xen/xen-scsiback.c
20699 F:      include/xen/interface/io/vscsiif.h
20700
20701 XEN SOUND FRONTEND DRIVER
20702 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
20703 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20704 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20705 S:      Supported
20706 F:      sound/xen/*
20707
20708 XEN SWIOTLB SUBSYSTEM
20709 M:      Juergen Gross <jgross@suse.com>
20710 M:      Stefano Stabellini <sstabellini@kernel.org>
20711 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20712 L:      iommu@lists.linux-foundation.org
20713 S:      Supported
20714 F:      arch/x86/xen/*swiotlb*
20715 F:      drivers/xen/*swiotlb*
20716
20717 XFS FILESYSTEM
20718 C:      irc://irc.oftc.net/xfs
20719 M:      Darrick J. Wong <djwong@kernel.org>
20720 M:      linux-xfs@vger.kernel.org
20721 L:      linux-xfs@vger.kernel.org
20722 S:      Supported
20723 W:      http://xfs.org/
20724 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
20725 F:      Documentation/ABI/testing/sysfs-fs-xfs
20726 F:      Documentation/admin-guide/xfs.rst
20727 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
20728 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
20729 F:      fs/xfs/
20730 F:      include/uapi/linux/dqblk_xfs.h
20731 F:      include/uapi/linux/fsmap.h
20732
20733 XILINX AXI ETHERNET DRIVER
20734 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
20735 S:      Maintained
20736 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
20737
20738 XILINX CAN DRIVER
20739 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
20740 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
20741 L:      linux-can@vger.kernel.org
20742 S:      Maintained
20743 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
20744 F:      drivers/net/can/xilinx_can.c
20745
20746 XILINX GPIO DRIVER
20747 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
20748 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
20749 R:      Michal Simek <michal.simek@xilinx.com>
20750 S:      Maintained
20751 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
20752 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
20753 F:      drivers/gpio/gpio-xilinx.c
20754 F:      drivers/gpio/gpio-zynq.c
20755
20756 XILINX SD-FEC IP CORES
20757 M:      Derek Kiernan <derek.kiernan@xilinx.com>
20758 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
20759 S:      Maintained
20760 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
20761 F:      Documentation/misc-devices/xilinx_sdfec.rst
20762 F:      drivers/misc/Kconfig
20763 F:      drivers/misc/Makefile
20764 F:      drivers/misc/xilinx_sdfec.c
20765 F:      include/uapi/misc/xilinx_sdfec.h
20766
20767 XILINX UARTLITE SERIAL DRIVER
20768 M:      Peter Korsgaard <jacmet@sunsite.dk>
20769 L:      linux-serial@vger.kernel.org
20770 S:      Maintained
20771 F:      drivers/tty/serial/uartlite.c
20772
20773 XILINX VIDEO IP CORES
20774 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20775 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20776 L:      linux-media@vger.kernel.org
20777 S:      Supported
20778 T:      git git://linuxtv.org/media_tree.git
20779 F:      Documentation/devicetree/bindings/media/xilinx/
20780 F:      drivers/media/platform/xilinx/
20781 F:      include/uapi/linux/xilinx-v4l2-controls.h
20782
20783 XILINX ZYNQMP DPDMA DRIVER
20784 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20785 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20786 L:      dmaengine@vger.kernel.org
20787 S:      Supported
20788 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
20789 F:      drivers/dma/xilinx/xilinx_dpdma.c
20790 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
20791
20792 XILINX ZYNQMP PSGTR PHY DRIVER
20793 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
20794 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20795 L:      linux-kernel@vger.kernel.org
20796 S:      Supported
20797 T:      git https://github.com/Xilinx/linux-xlnx.git
20798 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
20799 F:      drivers/phy/xilinx/phy-zynqmp.c
20800
20801 XILLYBUS DRIVER
20802 M:      Eli Billauer <eli.billauer@gmail.com>
20803 L:      linux-kernel@vger.kernel.org
20804 S:      Supported
20805 F:      drivers/char/xillybus/
20806
20807 XLP9XX I2C DRIVER
20808 M:      George Cherian <gcherian@marvell.com>
20809 L:      linux-i2c@vger.kernel.org
20810 S:      Supported
20811 W:      http://www.marvell.com
20812 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
20813 F:      drivers/i2c/busses/i2c-xlp9xx.c
20814
20815 XRA1403 GPIO EXPANDER
20816 M:      Nandor Han <nandor.han@ge.com>
20817 M:      Semi Malinen <semi.malinen@ge.com>
20818 L:      linux-gpio@vger.kernel.org
20819 S:      Maintained
20820 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
20821 F:      drivers/gpio/gpio-xra1403.c
20822
20823 XTENSA XTFPGA PLATFORM SUPPORT
20824 M:      Max Filippov <jcmvbkbc@gmail.com>
20825 L:      linux-xtensa@linux-xtensa.org
20826 S:      Maintained
20827 F:      drivers/spi/spi-xtensa-xtfpga.c
20828 F:      sound/soc/xtensa/xtfpga-i2s.c
20829
20830 YAM DRIVER FOR AX.25
20831 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
20832 L:      linux-hams@vger.kernel.org
20833 S:      Maintained
20834 F:      drivers/net/hamradio/yam*
20835 F:      include/linux/yam.h
20836
20837 YAMA SECURITY MODULE
20838 M:      Kees Cook <keescook@chromium.org>
20839 S:      Supported
20840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
20841 F:      Documentation/admin-guide/LSM/Yama.rst
20842 F:      security/yama/
20843
20844 YEALINK PHONE DRIVER
20845 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
20846 L:      usbb2k-api-dev@nongnu.org
20847 S:      Maintained
20848 F:      Documentation/input/devices/yealink.rst
20849 F:      drivers/input/misc/yealink.*
20850
20851 Z8530 DRIVER FOR AX.25
20852 M:      Joerg Reuter <jreuter@yaina.de>
20853 L:      linux-hams@vger.kernel.org
20854 S:      Maintained
20855 W:      http://yaina.de/jreuter/
20856 W:      http://www.qsl.net/dl1bke/
20857 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
20858 F:      drivers/net/hamradio/*scc.c
20859 F:      drivers/net/hamradio/z8530.h
20860
20861 ZBUD COMPRESSED PAGE ALLOCATOR
20862 M:      Seth Jennings <sjenning@redhat.com>
20863 M:      Dan Streetman <ddstreet@ieee.org>
20864 L:      linux-mm@kvack.org
20865 S:      Maintained
20866 F:      mm/zbud.c
20867
20868 ZD1211RW WIRELESS DRIVER
20869 M:      Ulrich Kunitz <kune@deine-taler.de>
20870 L:      linux-wireless@vger.kernel.org
20871 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
20872 S:      Maintained
20873 W:      http://zd1211.ath.cx/wiki/DriverRewrite
20874 F:      drivers/net/wireless/zydas/zd1211rw/
20875
20876 ZD1301 MEDIA DRIVER
20877 M:      Antti Palosaari <crope@iki.fi>
20878 L:      linux-media@vger.kernel.org
20879 S:      Maintained
20880 W:      https://linuxtv.org/
20881 W:      http://palosaari.fi/linux/
20882 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20883 F:      drivers/media/usb/dvb-usb-v2/zd1301*
20884
20885 ZD1301_DEMOD MEDIA DRIVER
20886 M:      Antti Palosaari <crope@iki.fi>
20887 L:      linux-media@vger.kernel.org
20888 S:      Maintained
20889 W:      https://linuxtv.org/
20890 W:      http://palosaari.fi/linux/
20891 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20892 F:      drivers/media/dvb-frontends/zd1301_demod*
20893
20894 ZHAOXIN PROCESSOR SUPPORT
20895 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
20896 L:      linux-kernel@vger.kernel.org
20897 S:      Maintained
20898 F:      arch/x86/kernel/cpu/zhaoxin.c
20899
20900 ZONEFS FILESYSTEM
20901 M:      Damien Le Moal <damien.lemoal@wdc.com>
20902 M:      Naohiro Aota <naohiro.aota@wdc.com>
20903 R:      Johannes Thumshirn <jth@kernel.org>
20904 L:      linux-fsdevel@vger.kernel.org
20905 S:      Maintained
20906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
20907 F:      Documentation/filesystems/zonefs.rst
20908 F:      fs/zonefs/
20909
20910 ZPOOL COMPRESSED PAGE STORAGE API
20911 M:      Dan Streetman <ddstreet@ieee.org>
20912 L:      linux-mm@kvack.org
20913 S:      Maintained
20914 F:      include/linux/zpool.h
20915 F:      mm/zpool.c
20916
20917 ZR36067 VIDEO FOR LINUX DRIVER
20918 M:      Corentin Labbe <clabbe@baylibre.com>
20919 L:      mjpeg-users@lists.sourceforge.net
20920 L:      linux-media@vger.kernel.org
20921 S:      Maintained
20922 W:      http://mjpeg.sourceforge.net/driver-zoran/
20923 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20924 F:      Documentation/driver-api/media/drivers/zoran.rst
20925 F:      drivers/staging/media/zoran/
20926
20927 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
20928 M:      Minchan Kim <minchan@kernel.org>
20929 M:      Nitin Gupta <ngupta@vflare.org>
20930 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20931 L:      linux-kernel@vger.kernel.org
20932 S:      Maintained
20933 F:      Documentation/admin-guide/blockdev/zram.rst
20934 F:      drivers/block/zram/
20935
20936 ZS DECSTATION Z85C30 SERIAL DRIVER
20937 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
20938 S:      Maintained
20939 F:      drivers/tty/serial/zs.*
20940
20941 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
20942 M:      Minchan Kim <minchan@kernel.org>
20943 M:      Nitin Gupta <ngupta@vflare.org>
20944 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20945 L:      linux-mm@kvack.org
20946 S:      Maintained
20947 F:      Documentation/vm/zsmalloc.rst
20948 F:      include/linux/zsmalloc.h
20949 F:      mm/zsmalloc.c
20950
20951 ZSWAP COMPRESSED SWAP CACHING
20952 M:      Seth Jennings <sjenning@redhat.com>
20953 M:      Dan Streetman <ddstreet@ieee.org>
20954 M:      Vitaly Wool <vitaly.wool@konsulko.com>
20955 L:      linux-mm@kvack.org
20956 S:      Maintained
20957 F:      mm/zswap.c
20958
20959 THE REST
20960 M:      Linus Torvalds <torvalds@linux-foundation.org>
20961 L:      linux-kernel@vger.kernel.org
20962 S:      Buried alive in reporters
20963 Q:      http://patchwork.kernel.org/project/LKML/list/
20964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
20965 F:      *
20966 F:      */